.container {
  display: flex;
  flex-direction: column;
}
.container h2 {
  color: #768698;
}

.congeMat {
  background-color: #c28788;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 1% 0;
}
.congeMat p {
  padding: 10%;
  text-align: center;
  line-height: 2.5;
  font-size: 20px;
  color: white;
}

.mathildeContainer {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  padding-top: 50px;
  margin: 10% 0;
  gap: 20px;
}
.mathildeContainer h1 {
  color: #768698;
}
.mathildeContainer .img {
  width: 50%;
  text-align: end;
}
.mathildeContainer .img .firstimage {
  width: 100%;
  max-width: 720px;
}
.mathildeContainer .petitefleur {
  position: absolute;
  width: 10%;
  bottom: -5%;
  right: 0;
}
.mathildeContainer .text-block {
  width: 50%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
}
.mathildeContainer .text-block p {
  padding-bottom: 5%;
}
.mathildeContainer .text-block button {
  width: 220px;
}

.aproposContainer {
  display: flex;
  min-height: 100vh;
  align-items: center;
}
.aproposContainer .text {
  width: 50%;
  padding: 10%;
}
.aproposContainer a {
  text-decoration: none;
  color: inherit;
}
.aproposContainer a:visited {
  color: inherit;
}
.aproposContainer .imgComposition {
  background-repeat: no-repeat;
  background-image: url(../img/home/backgroundAPropos.png);
  background-size: contain;
  background-position-x: center;
  width: 50%;
  min-height: 100vh;
  position: relative;
}
.aproposContainer .imgComposition img {
  position: absolute;
  width: 50%;
}
.aproposContainer .imgComposition .composition1 {
  top: 0vh;
  left: 20%;
  margin-left: -50%;
}
.aproposContainer .imgComposition .composition2 {
  left: 40%;
  top: 40%;
  margin-top: 30%;
}
.aproposContainer .imgComposition .composition3 {
  top: 70%;
  left: 25%;
  width: 30%;
}

.naturopathie {
  padding-top: 10vh;
  padding-bottom: 10%;
  display: flex;
}
.naturopathie .left,
.naturopathie .right {
  width: 50%;
  flex: 1 1 auto;
}
.naturopathie .left h2 {
  color: #c28788;
  padding-bottom: 5%;
}
.naturopathie .left p {
  padding: 2% 0;
}
.naturopathie .left p span {
  font-weight: bolder;
}
.naturopathie .left .text {
  font-size: 15px;
  padding: 8px 12px;
  bottom: 8px;
  margin: auto;
  width: 60%;
}
.naturopathie .left .text p {
  text-align: justify;
}
.naturopathie .right .subNaturopathie {
  background-color: #c28788;
  position: relative;
  height: 60vh;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.naturopathie .right img {
  max-width: 350px;
  position: absolute;
}
.naturopathie .right .naturoImg1 {
  top: -10%;
  right: 10%;
  margin-top: 50%;
}
.naturopathie .right .naturoImg2 {
  bottom: 10%;
  left: 10%;
  margin-bottom: 15%;
}

.accompagnements {
  min-height: 70vh;
  display: flex;
  flex-wrap: wrap;
}
.accompagnements h2 {
  color: #768698;
}
.accompagnements a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.accompagnements .left,
.accompagnements .right {
  display: flex;
  justify-content: center;
}
.accompagnements .left {
  position: relative;
  flex: 2 1 auto;
  display: flex;
  justify-content: flex-start;
}
.accompagnements .left .subBackgroundAccompagnements {
  position: absolute;
  z-index: -2;
  background-color: #768698;
  width: 90%;
  bottom: 25%;
  height: 50%;
}
.accompagnements .left img {
  position: absolute;
  border-radius: 5px;
}
.accompagnements .left img.accompagnementImg1 {
  bottom: 45%;
  left: 30%;
  margin-left: 15%;
}
.accompagnements .left img.accompagnementImg2 {
  z-index: 1;
  top: 40%;
  left: 5%;
  margin-top: 15%;
}
.accompagnements .right {
  flex-direction: row;
  align-items: stretch;
  flex: 1 1 300px;
}
.accompagnements .right .text {
  max-width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.accompagnements .right .text h2,
.accompagnements .right .text p,
.accompagnements .right .text a {
  margin: 0 5%;
  padding: 15px 0;
}
.accompagnements .right .text a {
  max-width: 250px;
}

.avisContainer .backgroundAvis {
  background-color: #F3EEE4;
}

.instaContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 2%;
  min-height: 60vh;
  margin: 5% 0;
}
.instaContainer h2 {
  color: #768698;
}
.instaContainer .instaMobile {
  display: none;
}
.instaContainer .postinsta {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  min-height: 50vh;
}
.instaContainer .onepost {
  text-align: center;
}
.instaContainer .post {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  max-width: 300px;
}
.instaContainer .post .onepost img {
  max-width: 100%;
  transition: 500ms;
}
.instaContainer .post .imgHover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.instaContainer .post:hover .imgHover {
  opacity: 1;
}
.instaContainer .post:hover .onepost {
  opacity: 50%;
}

@media screen and (min-width: 601px) and (max-width: 64em) {
  .aproposContainer .text {
    width: 50%;
    padding: 5%;
  }
  .aproposContainer .imgComposition {
    min-height: 75vh;
  }
  .naturopathie .left .text {
    margin-left: 5%;
    width: 90%;
  }
  .naturopathie .right img {
    max-width: 285px;
  }
  .naturopathie .right .naturoImg1 {
    top: -20%;
    right: 5%;
  }
  .naturopathie .right .naturoImg2 {
    bottom: 20%;
    left: 5%;
  }
}
/* SMALL SCREEN */
@media only screen and (max-width: 1050px) {
  .container {
    align-items: center;
  }
  .mathildeContainer {
    flex-direction: column;
    margin-top: 0;
  }
  .mathildeContainer .img {
    width: 80%;
  }
  .mathildeContainer .text-block {
    width: 80%;
    order: 2;
    align-items: center;
  }
  .mathildeContainer .text-block h1 {
    font-size: 25px;
    padding: 5%;
    text-align: center;
  }
  .mathildeContainer .text-block p {
    text-align: center;
  }
  .mathildeContainer .text-block button {
    margin-top: 5%;
  }
  .mathildeContainer img {
    order: 1;
  }
  .mathildeContainer .petitefleur {
    width: 20%;
    top: 25%;
  }
  .aproposContainer {
    flex-direction: column;
  }
  .aproposContainer .imgComposition,
  .aproposContainer .text {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .aproposContainer .imgComposition {
    order: 1;
    min-height: 60vh;
  }
  .aproposContainer .text {
    order: 2;
  }
  .naturopathie {
    flex-direction: column;
    padding-top: 0;
  }
  .naturopathie .reduceSize {
    height: 15vh !important;
    transition: height 2s ease-out;
  }
  .naturopathie .left,
  .naturopathie .right {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .naturopathie .left {
    order: 2;
  }
  .naturopathie .left .text {
    width: 85%;
  }
  .naturopathie .right {
    order: 1;
    display: flex;
    flex-direction: column;
    height: 50vh;
  }
  .naturopathie .right .subNaturopathie {
    height: 15vh;
    border-radius: 5px;
    width: 75%;
  }
  .naturopathie .right img {
    max-width: 150px;
    border-radius: 5px;
  }
  .naturopathie .right .naturoImg2 {
    left: 10%;
    bottom: -20%;
  }
  .naturopathie .right .naturoImg1 {
    right: 10%;
    top: -20%;
    margin-top: 20%;
  }
  .accompagnements {
    flex-direction: column;
    min-height: 100vh;
  }
  .accompagnements .left {
    justify-content: center;
    min-height: 35vh;
    margin-bottom: 15%;
  }
  .accompagnements .left img {
    max-width: 45%;
  }
  .accompagnements .left img.accompagnementImg2 {
    top: 50%;
    left: 20%;
  }
  .accompagnements .left img.accompagnementImg1 {
    bottom: 35%;
    left: 35%;
  }
  .accompagnements .left .subBackgroundAccompagnements {
    height: 35%;
    border-radius: 5px;
    width: 75%;
  }
  .accompagnements .right .text {
    align-items: center;
  }
  .accompagnements .right .text a {
    width: 150px;
  }
  .instaContainer {
    margin: 20% 0;
  }
  .instaContainer h2 {
    text-align: center;
  }
  .instaContainer .postinsta {
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .instaContainer .post {
    max-width: 180px;
  }
}

/*# sourceMappingURL=index.css.map */
