main {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: auto;
  grid-gap: 1.4rem;
  margin: 1.4rem;
}

img {
  width: 65%;
  -o-object-fit: cover;
  object-fit: cover;
  align-items: center;
  max-height: fit-content;
}

#main-section {
  grid-row: 1 / span 1;
  grid-column-start: 1;
  grid-column-end: 3;
  margin-top: 5%;
  margin-right: 10%;
  font-size: 140%;
  width: 100%;
}


.sub-section {
  /* default section style */
  text-align: left;
  display: grid;
  grid-gap: 1.4rem;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  grid-column-end: 6;
  grid-column: 4 / span 3;
  grid-row: 2;
  margin-left: 5%;
  margin-bottom: 2%;
}

.sub-section-projet {
  /* default section style */
  text-align: left;
  display: grid;
  grid-gap: 1.4rem;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  grid-column: 1;
  grid-column-end: 6;
  grid-row: 2;
  margin-bottom: 2%;
}

#image-exemple {
  grid-row: 2 / span 1;
  grid-column-start: 1;
  grid-column-end: 4;
}

#image-accueil {
  overflow: hidden;
  width: auto;
  height: auto;
}


#bandeau {
  background-color: #E45D50;
  grid-row: 3 / span 1;
  grid-column-start: 1;
  grid-column-end: 4;
}

.wrapper {
  width: 100%;
  display: flex;
  animation: slide 16s infinite;

}


.offre {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  margin-right: 5px;
}

.offre>h2 {
  margin: 0;
}

.offre>p {
  margin: 0;
}

#project-section {
  display: flex;
  grid-column: span 2;
  grid-column-start: 1;
  grid-column-end: 2;
}

/* Project page */

#titre-1 {
  grid-row: 1 / span 1;
  grid-column-start: 1;
  grid-column-end: 3;
}

#texte {
  grid-row: 2 / span 1;
  grid-column: 4 / span 3;
  margin-bottom: 2%;
}

#images {
  grid-row: 2 / span 1;
  grid-column-start: 1;
  grid-column-end: 4;
  margin-bottom: 2%;
  display: flex;
}


/* Qui sommes nous page */

#team>.membre {
  grid-column: 1 / span 5;
}

#team .membre-content {
  display: flex;
}

#team .membre-content>.text {
  width: 39%;
  display: inline-block;
}

#team .membre-content>.picture {
  width: 60%;
  text-align: center;
  display: inline-block;
}

#team>.membre b {
  display: block;
}

#team .membre-content img {
  width: 80%;
}

/* Accordion styles */
.membre input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  height: 50px;
  width: 100%;
  z-index: 1;
  opacity: 0;
}

.membre input[type=checkbox]:checked~.membre-content * {
  position: absolute;
  margin-top: 0;
  height: 0;
  max-height: 0;
  opacity: 0;
  z-index: -1;
}

.membre input[type=checkbox]:checked~.membre-content * {
  height: 0;
  max-height: 0;
  margin: 0;
}

.membre h2:after {
  content: "❯";
  position: absolute;
  width: 3px;
  height: 9px;
}

/* Footer */

footer {
  grid-column-start: 1;
  grid-column-end: 3;
  margin-right: 20%;
  margin-top: 5%;
}

footer img {
  display: inline-block;
  margin-bottom: -2%;
  width: 35%;
}