/****** H O M E ******/
.banner {
  position: relative;
  height: 100vh;
  max-height: 850px;
  min-height: 400px;
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #fff;
}
.banner::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(255, 255, 255) 45%, rgba(255, 255, 255, 0) 67%);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.banner .background_img {
  position: absolute;
  right: 0;
  width: 70%;
  height: 100%;
  background: url(../images/banner_kine_vanbelle.jpg) right center/cover no-repeat #fff;
  padding: 100px 80px;
}
.banner .content {
  margin: 0 10vw;
  padding-bottom: 80px;
  z-index: 80;
}
.banner .nom {
  font: 600 35px/40px "Zeyada";
  letter-spacing: 0.3px;
  color: #1f2e6d;
}
.banner .titre {
  color: #1f2e6d;
}
.banner .titre span {
  display: block;
  font-size: 30px;
  line-height: 40px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 400;
}

@media (max-width: 1200px) {
  .banner {
    max-height: 700px;
    min-height: 380px;
    width: 100%;
  }
  .banner .background_img {
    width: 90%;
  }
  .banner .content {
    margin: 0 8vw;
    padding-bottom: 0;
  }
  .banner .titre span {
    font-size: 22px;
    line-height: 38px;
  }
}
@media (max-width: 1000px) {
  .banner {
    height: 80vh;
    max-height: 750px;
    min-height: 350px;
  }
  .banner .content {
    margin: 0 10vw;
    z-index: 80;
  }
}
@media (max-width: 700px) {
  .banner {
    height: auto;
    max-height: inherit;
    min-height: inherit;
    flex-direction: column;
    align-items: center;
    align-items: center;
  }
  .banner::after {
    display: none;
  }
  .banner .background_img {
    position: relative;
    right: 0;
    width: 100%;
    padding: 0;
    height: 85vw;
  }
  .banner .content {
    margin: 15px 5vw 30px;
    text-align: center;
  }
  .banner .nom {
    font: 600 22px/32px "Zeyada";
  }
  .banner .titre {
    font-size: 32px;
    line-height: 36px;
  }
  .banner .titre span {
    font-size: 18px;
    line-height: 30px;
  }
}
.infos {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 0px 30px 5px rgba(7, 110, 189, 0.2);
  border-radius: 15px;
  padding: 40px 60px;
  margin-top: -100px;
}

@media (max-width: 1200px) {
  .infos {
    grid-gap: 35px;
    padding: 30px 40px;
    margin-top: -80px;
  }
}
@media (max-width: 1000px) {
  .infos {
    border-radius: 10px;
    padding: 30px 40px;
    margin-top: 70px;
  }
}
@media (max-width: 860px) {
  .infos {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    border-radius: 10px;
    padding: 30px 40px;
    margin-top: 50px;
  }
  .infos .horaires {
    grid-area: 1/2;
  }
}
@media (max-width: 700px) {
  .infos {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    border-radius: 8px;
    padding: 30px 30px;
    margin-top: 0;
  }
  .infos .horaires {
    grid-area: auto;
  }
}
.specialites {
  margin: 120px auto;
}
.specialites .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 80px;
  padding: 40px 60px;
}
.specialites .grid p {
  font-size: 14px;
}
.specialites .sous_titre {
  position: relative;
  padding-left: 30px;
}
.specialites .sous_titre:before {
  content: "";
  width: 50px;
  height: 50px;
  background-color: #4585c6;
  border-radius: 50%;
  opacity: 0.2;
  display: block;
  position: absolute;
  top: calc(0% - 25px);
  left: 0;
}

@media (max-width: 1200px) {
  .specialites {
    margin: 80px auto;
  }
  .specialites .grid {
    grid-gap: 60px;
    padding: 30px 50px;
  }
}
@media (max-width: 1000px) {
  .specialites {
    margin: 80px auto;
  }
  .specialites .grid {
    grid-template-columns: 1fr;
    grid-gap: 40px;
    padding: 30px 50px;
  }
}
@media (max-width: 700px) {
  .specialites {
    margin: 40px auto;
  }
  .specialites .grid {
    margin-top: 35px;
    grid-gap: 30px;
    padding: 0;
  }
}
.grid_custom {
  position: relative;
  margin: 120px auto 380px;
  display: grid;
  grid-template-columns: 1fr 40%;
  grid-gap: 80px;
  /* align-items: center; */
}
.grid_custom .texte {
  padding-left: 60px;
}
.grid_custom .texte ul {
  padding-left: 60px;
}
.grid_custom .sous_titre {
  padding-left: 30px;
}
.grid_custom .photos {
  position: relative;
}
.grid_custom .photos img {
  border-radius: 15px;
}
.grid_custom .photos .img.horizontal {
  position: absolute;
  top: calc(100% - 70px);
  right: 70%;
  max-width: 520px;
  z-index: -1;
}
.grid_custom .photos .img.vertical {
  max-width: 87%;
  z-index: -1;
}

@media (max-width: 1200px) {
  .grid_custom .photos .img.vertical {
    max-width: 100%;
  }
}
@media (max-width: 1000px) {
  .grid_custom {
    margin: 90px auto 290px;
    grid-template-columns: 1fr 45%;
    grid-gap: 50px;
  }
  .grid_custom .texte {
    padding-left: 0;
  }
  .grid_custom .texte ul {
    padding-left: 0;
  }
  .grid_custom .sous_titre {
    padding-left: 0;
  }
  .grid_custom .photos .img.horizontal {
    top: calc(100% - 40px);
    right: 30%;
    max-width: inherit;
    width: 120%;
    z-index: 1;
  }
  .grid_custom .photos img {
    display: block;
    width: 100%;
    height: auto;
  }
}
@media (max-width: 850px) {
  .grid_custom {
    margin: 60px auto 120px;
  }
  .grid_custom .photos .img.horizontal {
    position: relative;
    top: 20px;
    right: 50%;
  }
}
@media (max-width: 700px) {
  .grid_custom {
    margin: 40px auto 40px;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .grid_custom .photos {
    grid-area: 1;
  }
  .grid_custom .photos .img.horizontal {
    width: 100%;
    top: inherit;
    right: inherit;
    margin-top: 15px;
  }
}/*# sourceMappingURL=home.css.map */