/* PAGE D'ACCUEIL */
article {
  position: relative;
  padding-bottom: 40px;
}
body {
  background-color: var(--header-bg);
}
footer {
  background-color: var(--header-bg);
}
/* RDV SECTION */
.rdv-section {
  background-color: var(--header-bg);
  padding: 30px 0;
}

.rdv-section strong {
  font-family: "Oxygen", sans-serif;
}
.rdv-section p:first-child {
  padding: 5px;
}

/* trois-articles */
.trois-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trois-articles article {
  margin: 0;
  padding: 0;
  padding-bottom: 50px;
}
.trois-articles article p {
  text-align: justify;
}
.trois-articles article:first-child {
  background-color: var(--accueil-enfant-ado-bg);
}
.trois-articles article:nth-child(2) {
  background-color: var(--nav-bg);
}

.trois-articles article:nth-child(3) {
  background-color: var(--accueil-adulte-bg);
}

.me-connaitre {
  padding: 30px;
  background-color: var(--header-bg);
}

.container-description-photo {
  display: flex;
  margin: 20px auto;
  align-items: flex-start;
  max-width: 950px;
}
.me-connaitre h2 {
  font-family: "Oooh Baby", cursive;
  font-weight: lighter;
  font-size: 2.8em;
}
.me-connaitre h3 {
  font-style: italic;
  font-weight: lighter;
  margin-top: -10px;
}
.me-connaitre p {
  padding: 10px;
  text-align: justify;
}
.me-connaitre p:nth-child(3) {
  text-align: end;
}
.me-connaitre img {
  width: 230px;
}
.me-connaitre .en-savoir-plus {
  position: inherit;
}
.contact {
  display: flex;
  align-items: center;
  background-color: var(--black-light-color);
  color: var(--beige-color);
  height: 450px;
}
.contact * {
  color: var(--beige-color);
  font-family: "Oxygen", sans-serif;
}
.contact h3 {
  font-family: "Diphylleia";
}

.contact .map {
  width: 100%;
  height: 80%;
  margin-right: 55px;
}
.contact article {
  padding: 0 60px;
  margin: inherit;
}
.contact article ul * {
  margin: 0 auto;
}
.contact article h3 {
  padding: 25px;
  white-space: nowrap;
}
.contact article li {
  padding: 10px;
}

.contact article li a {
  font-size: 1.2em;
}

.map iframe {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 1030px) {
  .container-p-img img {
    margin-right: 0;
  }

  .contact {
    flex-direction: column;
    height: auto;
  }
  .contact .map {
    width: 100%;
    height: 300px;
  }
}

@media only screen and (max-width: 768px) {
  .trois-articles {
    display: flex;
    flex-direction: column;
  }
  .container-description-photo img {
    display: none;
  }
  .contact article h3 {
    font-size: 1.5em;
    padding: 0;
  }
  .contact article li a {
    font-size: inherit;
  }

  .me-connaitre {
    padding: 0;
    padding-bottom: 20px;
  }
  .contact .map {
    margin: 0;
    margin-bottom: 15px;
  }
}
