@import url(config.css);

.container {
    height: 125vh;
    width: 98vw;
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 15px;
    margin: 15px;
}

.container .modules {
    grid-row: span 1;
    grid-column: span 5;
    border: 3px solid black;
}

.graphiste h1 {
    padding: 18px;
    color: #F58BBD;
    margin-top: 150px;
}

.graphiste img {
    width: 90%;
}

.graphiste .Description {
    padding-bottom: 25px;
}

.ig,
.ig div {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.ig div {
    gap: 1rem !important;
}

.ig div p {
    padding: 0;
}

.ig div a {
    width: fit-content;
}

.ig-link {
    color: #000;
}

.interactivemediadesigner h1 {
    padding: 18px;
    color: #E01B1D;
}

.filiere-centre {
    display: grid;
    margin-top: 50px;
    grid-template-columns: 786px 786px 1fr;
    padding: 0 0 3rem 0;
}

.accordion {
    background-color: #FFFFFF;
    color: #000;
    cursor: pointer;
    padding-left: 18px;
    padding-top: 11px;
    padding-bottom: 11px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    line-height: 18px;
}

.accordion:before {
    content: '\02795';
    /* Unicode character for "plus" sign (+) */
    font-size: 18px;
    color: black;
    float: left;
}

.active:before {
    content: "\2796";
    /* Unicode character for "minus" sign (-) */
}

.arrowDecorationListe {
    padding-left: 18px;
}

#Brochure-Inscription {
    margin-left: 12px;
    display: flex;
    flex-direction: column;
    width: fit-content;
    gap: 1em;
    min-height: 200px;
}


.dl-icon {
    float: right !important;
    width: 1.5rem !important;
}

.btn {
    background-color: #000;
    /* black */
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    padding: .5rem 1rem;
}

.btn #btnIg {
    background-color: #000;
    /* black */
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    padding: .5rem 1rem;
}

.accordion h3 {
    font-size: 19px;
    padding-bottom: 0;
}

.active,
.accordion:hover {
    background-color: #FFFFFF;
}
/*
.panel {
    padding: 0px;
    padding-left: 20px;
    background-color: white;
    overflow: hidden;
    opacity: 0;
}*/

.panel {
  background-color: white;
  max-height: 0;
  padding-left: 15px;
  overflow: hidden;
  padding-top: 0px;
  transition: 0.4s ease-in-out;
  opacity: 0;
  margin-bottom: 8px;
}

.panel ul{
    padding-left: 20px;
}

.gallery img {
    max-width: 100%;
}


.panel.show {
  opacity: 1;
  max-height: 500px;
}

/* - - - - - - - - - - - - - - - - - - - */
/* MISE EN PAGE */

.gallery figure {
    box-sizing: border-box;
    margin: 0;
    width: 33%;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* - - - - - - - - - - - - - - - - - - - */
/* LEGENDES */
/* base pour positonnement */

.gallery {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

@media screen and (max-width: 576px){
  .gallery {

      flex-direction: column;
  } 
  .gallery figure {
    position: relative;
    width: 100%;
  }
}

/* positon des legendes*/
.gallery figcaption {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  text-align: center;
  display: none;
  font-size: 2rem;
  transform: translate(-50%,-50%);
}


/* legendes affichent en hover */
.gallery figure:hover figcaption {
    display: block;
}

.gallery figure img {
    transition: all 0.5s ease-in-out;
}

.gallery figure:hover img {
    filter: blur(10px);
    opacity: 0.5;
}


@media screen and (max-width:576px) {
    .filiere-centre {
        grid-template-columns: auto !important;
        margin-top: 0px;
    }

    #Brochure-Inscription {
        min-height: auto;
    }


}