:root {
  /* Color */
  --color-black: #465868;
  --black-hover: #2a7ab7;
  /* Size */
  --header-height: 70px;
}

@font-face {
  font-family: "Nordeco";
  src: url("../fonts/Nordeco-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Nordeco", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: var(--color-black);
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

.main {
  position: relative;
}

img {
  max-width: 100%;
  display: block;
}

a {
  font-family: inherit;
  text-decoration: none;
  color: inherit;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 400;
  letter-spacing: 3px;
}

h1 {
  line-height: 52px;
  font-size: calc(28px + 0.8333333333vw);
}

h2 {
  line-height: 42px;
  font-size: calc(20px + 0.8333333333vw);
}

h3 {
  font-size: 26px;
  line-height: 32px;
  font-size: calc(16px + 0.5208333333vw);
}

h4 {
  line-height: 28px;
  font-size: calc(16px + 0.2083333333vw);
}

h5 {
  font-weight: 400;
}

h6 {
  font-style: italic;
  font-weight: 400;
}

p {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
}
p,
h1,
h2,
h3,
h4,
h5,
h6,
div,
span,
ul,
ul li {
  cursor: default;
}
a,
.link,
a p,
a div,
a h2,
a h3,
a h4,
a span,
button,
button h3 {
  cursor: pointer !important;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  margin: 0;
  outline: none;
}

input,
textarea {
  padding: 0;
  outline: none;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

input:focus:-moz-placeholder,
textarea:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

input:focus:-ms-input-placeholder,
textarea:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.is-hidden {
  display: none !important;
}

.error {
  border: 2px #ff4019 solid !important;
}

.visually-hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
}

.container {
  max-width: 1760px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

.section {
  padding-top: var(--header-height);
}

.link {
  border-radius: 30px;
  background: #5d9fd1;
}

.link a {
  text-align: center;
  display: block;
  padding: 17px 0 16px;
}

/******** Slider an about page *********/
.slick-arrow {
  position: absolute;
  bottom: -66px;
  font-size: 0;
  z-index: 10;
  width: 28px;
  height: 28px;
  border: 1px solid #1c69a3;
  border-radius: 100%;
}

.slick-prev {
  left: 28px;
  transform: translateX(-100%);
  background: url("../img/svg/arrow-prev.svg") no-repeat center center;
}

.slick-next {
  left: 43px;
  transform: translateX(100%);
  background: url("../img/svg/arrow-next.svg") no-repeat center center;
}

.slick-dots {
  position: absolute;
  bottom: 0;
  left: 60%;
  transform: translateX(-50%);
  display: flex;
  max-width: 100px;
  width: 100%;
  padding-left: 14px;
  padding-right: 14px;
}

.slick-dots li {
  font-size: 10px;
  line-height: 12px;
  padding: 5px 4px;
  display: flex;
  height: 39px;
  align-items: center;
}

.slick-dots .slick-active {
  font-size: 14px;
  line-height: 16px;
}

.error-page {
  max-width: 1730px;
  text-align: center;
}
.error404 {
  min-height: 100vh;
}
.error404 main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
}
.error404 .footer {
  padding-bottom: 0;
}
.error-page .link {
  margin: 0 auto;
}
.error-page .link a {
  color: #fff;
}

body.preloader-start .header {
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-name: preloader-finish;
  animation-name: preloader-finish;
}

.privacy-policy a {
  text-decoration: underline;
}

.privacy-policy a:hover {
  font-weight: 600;
}

.privacy-policy .header a {
  text-decoration: none;
}

.privacy-policy .header a:hover {
  font-weight: 400;
}

.header {
  position: fixed;
  z-index: 100;
  color: var(--color-black);
  top: 0;
  left: 0;
  width: 100%;
  opacity: 1;
  background-color: #fff;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: header-down;
  animation-name: header-down;
}

.header__container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: var(--header-height);
}

.header__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 20px;
  margin-left: 30px;
  flex-shrink: 0;
}

.header__logo--mobile {
  display: none;
}

.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

@-webkit-keyframes header-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes header-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

@-webkit-keyframes preloader-finish {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  80% {
    opacity: 1;
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes preloader-finish {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }

  80% {
    opacity: 1;
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.burger {
  display: none;
  font-size: 15px;
  line-height: 18px;
  text-transform: uppercase;
}

.dropdown-menu {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  background: linear-gradient(215.94deg, #1473ba -36.13%, #206396 113.74%);
  margin-top: var(--header-height);
  max-width: 197px;
  width: 100%;
  height: calc(100% - var(--header-height));
  padding-top: 50px;
  border-radius: 20px 0 0 20px;
}

.dropdown-menu li {
  font-size: 15px;
  line-height: 18px;
  color: #ffffff;
  margin-bottom: 50px;
  padding-left: 30%;
}

.dropdown-menu.active {
  transform: translateX(0);
}

.header-right {
  display: flex;
  flex-shrink: 0;
  padding-left: 20px;
}

.header-right a {
  position: relative;
  padding-left: 40px;
  height: 28px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 20px;
}

.header-right a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  display: block;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: contain;
}

.header-right__phone {
  /*display: none!important;*/
}

.header-right__location span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  width: 0;
  opacity: 0;
  /*white-space: nowrap;*/
  transition: all 0.3s ease-in-out;
  max-width: 166px;
  max-height: 32px;
  height: 32px;
  overflow: hidden;
}

.header-right__location:hover span {
  width: 166px;
  opacity: 1;
  color: #465868;
}

.header-right__location:hover::before {
  background-image: url("../img/svg/location-hover.svg");
}

.header-right__location::before {
  background-image: url("../img/svg/location.svg");
}

.header-right__date:hover::before {
  background-image: url("../img/svg/date-hover.svg");
}

.header-right__date::before {
  background-image: url("../img/svg/date.svg");
}

.header-right__phone span {
  width: 0;
  opacity: 0;
  white-space: nowrap;
  transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.header-right__phone:hover span {
  width: 100px;
  opacity: 1;
}

.header-right__phone::before {
  background-image: url("../img/svg/tel.svg");
}

.main-menu {
  display: flex;
  max-width: 900px;
  width: 100%;
  justify-content: space-between;
}

.main-menu li a {
  position: relative;
}

.main-menu li a:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  border-radius: 50%;
  border: 1px solid #dae5ee;
  z-index: -1;
}

.main-menu li a:hover:after {
  width: 33px;
  height: 33px;
}

body.preloader-start .welcome {
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-name: welcome-down-2;
  animation-name: welcome-down-2;
}

.welcome {
  position: relative;
  overflow-x: hidden;
  margin-top: var(--header-height);
  z-index: 1;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: welcome-down;
  animation-name: welcome-down;
  display: none;
}

.welcome .vimeo {
  width: 100%;
  max-width: 1730px;
  position: relative;
  background-repeat: repeat;
  background-position: center top;
  background-size: cover;
  top: 0;
  left: 0;
  padding-bottom: 51%;
  margin: 0 auto;
  border-radius: 30px;
}

.welcome .vimeo__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  border-radius: 30px;
  pointer-events: none;
}

.welcome .vimeo__iframe::after {
  content: "";
  width: 100%;
  display: block;
  position: relative;
  z-index: 200;
  top: 0;
  left: 0;
}

.welcome .vimeo__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  background: url("../img/svg/play.svg") no-repeat center center/contain;
  z-index: 201;
  display: none;
}

.welcome .vimeo .sound {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: url(../img/soundoff.png) no-repeat center;
  cursor: pointer;
  pointer-events: auto;
  z-index: 219;
}

.welcome .vimeo .active {
  background: url(../img/soundon.png) no-repeat center;
}

@-webkit-keyframes welcome-down {
  0% {
    transform: translateY(-5%);
    z-index: 100;
  }

  100% {
    transform: translateY(0);
    z-index: 1;
  }
}

@keyframes welcome-down {
  0% {
    transform: translateY(-5%);
    z-index: 100;
  }

  100% {
    transform: translateY(0);
    z-index: 1;
  }
}

@-webkit-keyframes welcome-down-2 {
  0% {
    opacity: 0;
    transform: translateY(-5%);
  }

  60% {
    opacity: 0;
  }

  80% {
    opacity: 1;
    transform: translateY(-5%);
    z-index: 100;
  }

  100% {
    transform: translateY(0);
    z-index: 1;
  }
}

@keyframes welcome-down-2 {
  0% {
    opacity: 0;
    transform: translateY(-5%);
  }

  60% {
    opacity: 0;
  }

  80% {
    opacity: 1;
    transform: translateY(-5%);
    z-index: 100;
  }

  100% {
    transform: translateY(0);
    z-index: 1;
  }
}

.bienvenue {
  padding-top: 75px;
}

.bienvenue__container {
  border: 1px solid #c1d3e2;
  border-radius: 20px;
  padding-top: 58px;
  max-width: 1730px;
  padding-left: 60px;
  padding-right: 60px;
  padding-bottom: 62px;
}

.bienvenue__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}

.bienvenue__left {
  position: relative;
  padding-left: 300px;
  padding-top: 33px;
  width: 50%;
}

.bienvenue__left::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 200px;
  height: 200px;
  background: url("../img/bienvenue-logo-min.png") no-repeat center center;
  background-size: cover;
}

.bienvenue__subtitle {
  margin-bottom: 8px;
  color: #1c69a2;
  font-weight: 400;
  font-size: 36px;
  line-height: 42px;
  letter-spacing: 0.08em;
}

.bienvenue__title {
  color: #1c69a2;
}

.bienvenue__right {
  width: 41%;
  max-width: 615px;
  padding-top: 85px;
}

.bienvenue-links {
  display: flex;
  margin-bottom: 13px;
}

.bienvenue__right a {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1px;
  position: relative;
  display: block;
  padding-left: 45px;
  max-width: 345px;
  margin-bottom: 20px;
}

.bienvenue-right_text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #465868;
}

.bienvenue-right_text span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1px;
}

.bienvenue-right_text .bienvenue-right_text-address {
  display: inline;
  padding-left: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1px;
}

.bienvenue__right a::before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-size: contain;
}

.bienvenue__address::before {
  background-image: url("../img/svg/marker.svg");
}

.bienvenue__tel::before {
  background-image: url("../img/svg/tel.svg");
}

/*.bienvenue__tel {*/
/*  display: none!important;*/
/*}*/

.bienvenue__bottom {
  background-repeat: repeat;
  background-position: center top;
  background-size: cover;
  padding: 25px 40px;
  border-radius: 20px;
}

.bienvenue__bottom-block {
  display: flex;
  justify-content: flex-end;
}

.bienvenue__text {
  background: linear-gradient(215.94deg, #1473ba -36.13%, #206396 113.74%);
  opacity: 0.6;
  border-radius: 20px;
  max-width: 750px;
  width: 100%;
  padding: 60px 125px 25px 130px;
  color: #fff;
}

.dentiste {
  padding-top: 30px;
}

.dentiste__container {
  background: #dae5ee;
  border-radius: 20px;
  padding: 70px 60px 65px;
  max-width: 1730px;
  overflow: hidden;
}

.dentiste__top {
  position: relative;
  padding-bottom: 60px;
  margin-bottom: 50px;
}

.dentiste__top-img {
  position: absolute;
  right: 0;
  transform: translateX(0);
  height: 100%;
  top: 0;
  border-radius: 20px;
}

.dentiste__top-img.aos-animate {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease-in-out;
}

.dentiste__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: 170px;
}

.dentiste-item {
  width: 37%;
  position: relative;
  font-size: 36px;
  line-height: 42px;
  letter-spacing: 1px;
  background: linear-gradient(215.94deg, #1473ba -36.13%, #206396 113.74%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  padding-top: 14%;
}

.dentiste-item::before {
  content: "";
  display: block;
  position: absolute;
  top: 32%;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  width: 80px;
  height: 80px;
}

.dentiste-item:first-child::before {
  background-image: url("../img/svg/dentiste-1.svg");
}

.dentiste-item:nth-child(2) {
  -webkit-text-fill-color: #fff;
  text-fill-color: #fff;
}

.dentiste-item:nth-child(2)::before {
  background-image: url("../img/svg/dentiste-2.svg");
}

.dentiste-item:nth-child(3)::before {
  background-image: url("../img/svg/dentiste-3.svg");
}

.dentiste-item:nth-child(4) {
  text-fill-color: #fff;
  -webkit-text-fill-color: #fff;
}

.dentiste-item:nth-child(4)::before {
  background-image: url("../img/svg/dentiste-4.svg");
}

.dentiste__bottom {
  background: #eff3f6;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  background-image: url("../img/svg/dentiste.svg");
  background-repeat: no-repeat;
  background-position: 98% 96%;
  overflow: hidden;
}

.dentiste__bottom-img {
  width: 54%;
  transform: translateX(0);
}

.dentiste__bottom-img.aos-animate {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease-in-out;
}

.dentiste__content {
  max-width: 503px;
  width: 100%;
  padding: 30px 0 0px;
}

.dentiste__title {
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.dentiste__text {
  max-width: 360px;
}

.equipe {
  padding-top: 30px;
}
@media only screen and (max-width: 992px) {
  .equipe {
    padding-top: 60px;
  }
}
.equipe__container {
  display: flex;
}

.equipe__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url("../img/svg/equipe.svg") no-repeat left top;
  width: 43%;
  padding-left: 13%;
}

.equipe__title {
  background: linear-gradient(215.94deg, #1473ba -36.13%, #206396 113.74%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 20px;
}

.equipe__text {
  max-width: 360px;
}

.equipe__right {
  padding-top: 165px;
  padding-bottom: 120px;
  width: 57%;
}

.equipe__list {
  display: flex;
  flex-wrap: wrap;
}

.equipe-item {
  margin-right: 12%;
  margin-bottom: 70px;
  width: 30%;
}

.equipe-item__img {
  margin-bottom: 20px;
  max-width: 290px;
  padding-top: 100%;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
}

.equipe-item__img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.equipe-item__link {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  max-width: 230px;
  width: 100%;
  font-size: 16px;
  line-height: 20px;
  padding: 15px 0;
  text-align: center;
  background: #5d9fd1;
  border-radius: 30px;
  color: #fff;
  display: none;
}

.equipe-item__link.mobile {
  display: none;
}

.equipe-item__title {
  background: linear-gradient(215.94deg, #1473ba -36.13%, #206396 113.74%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 13px;
}

.equipe-item__pos {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 2px;
}

.assistant__list {
  /*display: flex;*/
  display: none;
  flex-wrap: wrap;
}

.assistant-item {
  margin-right: 4%;
  margin-bottom: 30px;
  width: 22%;
}

.assistant-item__img {
  margin-bottom: 20px;
  max-width: 220px;
  padding-top: 100%;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
}

.assistant-item__img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.assistant-item__title {
  background: linear-gradient(215.94deg, #1473ba -36.13%, #206396 113.74%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 8px;
}

.assistant-item__pos {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
}

.rendez {
  padding-top: 45px;
  padding-bottom: 100px;
}

.rendez__container {
  background: linear-gradient(215.94deg, #1473ba -36.13%, #206396 113.74%);
  border-radius: 20px;
  padding: 0 65px;
  max-width: 1730px;
  padding-top: 86px;
  padding-bottom: 60px;
}

.rendez__top {
  margin-bottom: 130px;
  position: relative;
  display: flex;
}

.rendez__img {
  max-width: 130px;
  width: 100%;
  margin-right: 30px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.rendez__img::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(28, 105, 163, 0.5);
}

.rendez__img--1 {
  max-width: 105px;
  background-position-x: -100px;
  transition: background-position 0.3s ease-in-out;
}

.rendez__img--1::before {
  background: rgba(28, 105, 163, 0.8);
}

.rendez__img--3 {
  margin-left: 30px;
}

.rendez__img--4 {
  max-width: 105px;
  margin-right: 0;
}

.rendez__img--4::before {
  background: rgba(28, 105, 163, 0.8);
}

.rendez-item__img {
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.rendez-item__img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.rendez-slider {
  max-width: 1010px;
  width: 65%;
}

.rendez__bottom {
  background: #2a7ab7;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  padding: 100px 120px 65px;
}

.rendez__left {
  color: #fff;
  width: 420px;
  padding-top: 90px;
  padding-left: 45px;
}

.rendez__title {
  margin-bottom: 40px;
}

.rendez__text {
  max-width: 360px;
  margin-bottom: 80px;
}

.rendez__counter {
  color: #fff;
  position: absolute;
  bottom: -66px;
  left: 30%;
  font-size: 20px;
  line-height: 28px;
}

.rendez-start {
  padding-right: 10px;
}

.rendez .slick-arrow {
  border: 1px solid #fff;
}

.rendez .slick-next {
  background: url("../img/svg/arrow-next-white.svg") no-repeat center center;
}

.rendez .slick-prev {
  background: url("../img/svg/arrow-prev-white.svg") no-repeat center center;
}

.rendez .slick-track {
  padding-bottom: 90px;
}

.rendez .slick-list {
  margin-bottom: -90px;
}

.technologies {
  padding-top: 100px;
}

.technologies__container {
  max-width: 1300px;
}

.technologies__title {
  margin-bottom: 30px;
  color: #3e5f7c;
}

.technologies-item {
  display: flex;
  background: #eff3f6;
  border-radius: 20px;
  margin-bottom: 35px;
}

.technologies-item__img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding-top: 28%;
  flex: 0 1 64%;
  cursor: default;
}

.technologies-item__img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.technologies-item__right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: 30px;
}

.technologies-item__content {
  max-width: 490px;
}

.technologies-item__title {
  color: #3e5f7c;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.sourire {
  margin-top: 200px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  display: none;
}

.sourire__container {
  padding-top: 293px;
  padding-bottom: 200px;
  max-width: 1300px;
  display: flex;
}

.sourire__left {
  padding-top: 75px;
  width: 51%;
}

.sourire__right {
  width: 620px;
  overflow: hidden;
  border-radius: 20px;
}

.sourire__title {
  margin-bottom: 32px;
  color: #3e5f7c;
}

.sourire__text {
  color: #465868;
  max-width: 490px;
  margin-bottom: 35px;
}

.sourire__link {
  max-width: 230px;
  width: 100%;
  background: #5d9fd1;
  border-radius: 30px;
  display: block;
  color: #fff;
  padding: 17px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.twentytwenty-handle {
  border: none;
  box-shadow: none;
  top: 70%;
}

.twentytwenty-left-arrow {
  border: none;
  width: 28px;
  height: 28px;
  left: -15px;
  background: url(../img/svg/sourire-before.svg) no-repeat center center/contain;
}

.twentytwenty-right-arrow {
  border: none;
  width: 28px;
  height: 28px;
  right: -15px;
  background: url(../img/svg/sourire-after.svg) no-repeat center center/contain;
}

.twentytwenty-horizontal .twentytwenty-handle:before {
  height: 340px;
  top: auto;
  bottom: 0;
}

.twentytwenty-horizontal .twentytwenty-after-label:before,
.twentytwenty-horizontal .twentytwenty-before-label:before {
  display: none;
}

.twentytwenty-horizontal .twentytwenty-handle:after {
  top: 0;
}

.twentytwenty-overlay:hover {
  background: none;
}

.parcours {
  padding-bottom: 100px;
  background: linear-gradient(
    0deg,
    rgba(239, 243, 246, 0) 0%,
    rgba(239, 243, 246, 0.2) 54.32%
  );
}

.parcours__container {
  border: 1px solid #c1d3e2;
  border-radius: 20px;
  padding: 93px 80px 30px 80px;
}

.parcours__title {
  color: #3e5f7c;
  margin-bottom: 70px;
  text-align: center;
}

.parcours__list {
  counter-reset: item;
  display: flex;
  flex-wrap: nowrap;
}

.parcours-item {
  padding: 70px 0 75px 67px;
  width: 20%;
  color: #465868;
  position: relative;
}

.parcours-item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -25px;
  right: 0;
  bottom: 0;
  border: 1px solid #c1d3e2;
  background: #eff3f6;
  border-radius: 100%;
  width: 360px;
  height: 360px;
}

.parcours-item__title {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 15px;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 60px;
  position: relative;
}

.parcours-item__title::before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  line-height: 32px;
  color: currentColor;
  width: 50px;
  height: 50px;
  background: #dae5ee;
  border-radius: 100%;
}

.parcours-item__text {
  font-size: 14px;
  line-height: 26px;
  max-width: 210px;
  position: relative;
  max-height: 200px;
  overflow-y: auto;
}

.traitements {
  padding-top: 140px;
  text-align: center;
}

.traitements__wrap {
  padding-top: 30px;
  padding-bottom: 10px;
  padding-right: 35px;
  display: flex;
  justify-content: flex-end;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.traitements__title {
  margin-bottom: 33px;
}

.accordion {
  display: flex;
  flex-direction: column;
  flex: 0 1 750px;
}

.accordion-item {
  margin-bottom: 16px;
  background: #fafafa;
  opacity: 0.7;
  border-radius: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}
/* .accordion-item h3 {
  position: relative;
}
.accordion-item:not(.active) h3:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  left: 20%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
  border-radius: 50%;
  border: 1px solid #dae5ee;
  z-index: -1;
}
.accordion-item:not(.active):hover h3:after {
  width: 33px;
  height: 33px;
} */
.accordion-item h3 span {
  position: relative;
  display: inline-block;
  /* width: auto; */
  transition: 0.3s ease;
  cursor: pointer;
}
.accordion-item h3 span:after {
  content: "";
  width: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #3e5f7c;
  height: 1px;
  transition: 0.5s;
}

.accordion-item:hover h3 span {
  text-transform: uppercase;
}

.accordion-item:hover h3 span:after {
  width: 100%;
}

.accordion-item__control {
  /* text-align: left; */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0 10px;
}

.accordion-item__title {
  font-size: 26px;
  line-height: 32px;
  max-width: 450px;
  width: 100%;
  display: flex;
  align-items: center;
  text-align: left;
  letter-spacing: 2px;
  margin: 0 auto;
}

.accordion-item__photo {
  display: none;
}

.accordion-item__content {
  display: none;
  max-width: 450px;
  margin: 0 auto;
  transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out,
    padding 0.3s ease-in-out;
}

.accordion-item__content ul li {
  font-size: 20px;
  line-height: 28px;
  text-align: left;
  position: relative;
  padding-left: 40px;
  letter-spacing: 2px;
}

.accordion-item__content ul li:before {
  position: absolute;
  content: "";
  top: 11px;
  right: 0;
  left: 0;
  /* transform: translateY(-50%); */
  bottom: 0;
  width: 5px;
  height: 5px;
  background: linear-gradient(215.94deg, #1473ba -36.13%, #206396 113.74%);
  border-radius: 100%;
}

.accordion-item__icon {
  background: url("../img/svg/arrow-next.svg") no-repeat center center/contain;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease-in-out;
}

.accordion-item.open {
  background: #ffffff;
  opacity: 0.9;
}

.accordion-item.open .accordion-item__content {
  opacity: 1;
  padding-bottom: 40px;
}

.accordion-item.open .accordion-item__title {
  height: 110px;
}

.accordion-item.open .accordion-item__icon {
  transform: rotate(45deg);
}

.conseils {
  padding-top: 100px;
  padding-bottom: 50px;
}

.conseils__container {
  max-width: 1790px;
}

.conseils__wrap {
  max-width: 1550px;
  margin-left: auto;
  position: relative;
}

.conseils-slider {
  margin-bottom: 55px;
}

.conseils__title {
  color: #3e5f7c;
  margin-bottom: 70px;
  padding-left: 20px;
}

.conseils__counter {
  position: absolute;
  bottom: -80px;
  left: 220px;
  font-size: 20px;
  line-height: 28px;
  background: linear-gradient(215.94deg, #1473ba -36.13%, #206396 113.74%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.conseils-start {
  padding-right: 10px;
}

.conseils-item {
  padding-left: 20px;
}

.conseils-item__img {
  position: relative;
  padding-bottom: 73%;
  margin-bottom: 32px;
  border-radius: 20px;
  overflow: hidden;
}

.conseils-item__img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.conseils-item__title {
  display: block;
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 32px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 576px) {
  .conseils-item__title {
    font-size: 18px;
  }
  .conseils-item__img {
    margin-bottom: 17px;
  }
}

.conseils-item__title:after {
  content: "";
  width: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #3e5f7c;
  height: 1px;
  transition: 0.5s;
}

.conseils-item__title:hover {
  text-transform: uppercase;
}

.conseils-item__title:hover:after {
  width: 100%;
}

.conseils .video {
  position: relative;
  display: block;
}

.conseils .video:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  background: url("../img/svg/play.svg") no-repeat center center/contain;
  z-index: 201;
}

.conseils .slick-prev {
  left: 63px;
}

.conseils .slick-arrow {
  bottom: -80px;
}

.conseils .slick-next {
  left: 80px;
}

.laboratoire {
  padding-top: 50px;
}

.laboratoire__container {
  max-width: 1730px;
  padding-top: 21%;
  padding-bottom: 120px;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.laboratoire__content {
  max-width: 1270px;
  padding-left: max(15px, (100% - 1270px) / 2);
}

.laboratoire__title {
  position: relative;
  padding-top: 50px;
  margin-bottom: 38px;
}

.laboratoire__title::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  background: url("../img/svg/flag.svg") no-repeat center top/contain;
}

.laboratoire__text {
  max-width: 490px;
}

.acces {
  margin-top: -20px;
}

.acces__container {
  background: #1e679e;
  border-radius: 20px 20px 0 0;
  color: #fff;
  max-width: 1730px;
  padding-top: 155px;
}

.acces__wrap {
  padding-left: max(15px, (100% - 1270px) / 2);
}

.acces__title {
  margin-bottom: 40px;
}

.acces__sides {
  display: flex;
  justify-content: space-between;
}

.acces__left {
  width: 100%;
  max-width: 620px;
  padding-bottom: 200px;
}

/* ======================R */
.acces__left-wrap {
  max-width: 621px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.acces__left-block:nth-child(2) p:first-child {
  font-family: inherit;
}

.acces__left-block:first-child {
  max-width: 313px;
}

.acces__left-block:nth-child(2) {
  max-width: 245px;
}

.acces__soc--parking p:first-child {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}

.acces__soc--parking {
  /*width: 262px;*/
  width: 280px;
}

.acces__soc--parking p:last-child {
  font-size: 14px;
  line-height: 25px;
  margin-top: 5px;
  font-weight: 400;
}

.acces__soc--parking::before {
  background-image: url(../img/svg/acces-parking.svg);
}

.acces__soc--parking:hover::before {
  background-image: url(../img/svg/acces-parking-hover.svg);
}

/* ==================================R */
.acces__right {
  margin-top: -140px;
  background: url("../img/svg/acces-bg.svg") no-repeat left top/contain;
  width: 39%;
  /* padding-top: 29%; */
  padding-top: 36%;
  padding-bottom: 40px;
}

.acces__right-title {
  margin-bottom: 30px;
}

.acces__right-text {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.acces__soc {
  padding-left: 45px;
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 1.5px;
  max-width: 300px;
  margin-bottom: 20px;
}

.acces__soc::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.acces__soc--marker::before {
  background-image: url("../img/svg/acces-marker.svg");
}

.acces__soc--phone {
  margin-bottom: 65px;
  /*display: none;*/
}

.acces__soc--phone::before {
  background-image: url("../img/svg/acces-phone.svg");
}

.acces__soc--date {
  margin-bottom: 5px;
}

.acces__soc--date::before {
  background-image: url("../img/svg/acces-date.svg");
}

.acces__list {
  padding-left: 45px;
}

.acces-item {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #8ebadb;
}

.acces-item.active {
  color: #fff;
}

.acces-item__day {
  display: inline-block;
  min-width: 110px;
}

.acces__link {
  max-width: 230px;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #5d9fd1;
  border-radius: 30px;
  letter-spacing: 2px;
  margin-top: auto;
  margin-bottom: 10px;
}

.acces__bottom {
  display: flex;
  justify-content: space-between;
  margin-bottom: 55px;
}

.acces__map {
  position: relative;
}

.acces__form {
  max-width: 490px;
}

.acces__form input {
  background: transparent;
  border: none;
  color: #fff;
  display: flex;
  height: 60px;
  width: 100%;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 15px;
}

.acces__form input::-moz-placeholder {
  color: #fff;
}

.acces__form input::placeholder {
  color: #fff;
}

.acces__form input[type="submit"] {
  border: none;
  width: 230px;
  height: 50px;
  background: #5d9fd1;
  border-radius: 30px;
  display: flex;
  justify-content: center;
}

.acces__form textarea {
  background: transparent;
  border: none;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  width: 100%;
  border-bottom: 1px solid #ffffff;
  color: #fff;
  height: 80px;
  /*margin-bottom: 65px;*/
  margin-top: 20px;
}

.acces__form textarea::-moz-placeholder {
  color: #fff;
}

.acces__form textarea::placeholder {
  color: #fff;
}

.acces__form input[type="submit"] {
  margin-top: 65px;
}

#map {
  position: absolute;
  height: 250px;
  width: 620px;
  border-radius: 20px;
}

.footer {
  padding-bottom: 76px;
}

.footer__container {
  margin-top: -1px;
  background: #1e679e;
  border-radius: 0 0 20px 20px;
  color: #fff;
  max-width: 1730px;
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 62px;
  padding-left: 65px;
}

.footer__img {
  margin-right: 13.5%;
}

.footer__content {
  padding-top: 15px;
}

.footer__content p {
  font-weight: 300;
  font-size: 14px;
  line-height: 28px;
  margin-bottom: 5px;
}

.modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  background: rgba(28, 105, 162, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.modal-overlay--visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.modal {
  max-width: 1270px;
  width: 100%;
  padding: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  position: relative;
}

.modal--visible {
  display: block;
}

.modal__close {
  position: absolute;
  right: 25px;
  top: 0;
  color: #fff;
  padding-right: 30px;
  font-size: 16px;
  line-height: 20px;
}

.modal__close::before {
  position: absolute;
  content: "";
  top: calc(50% - 1px);
  right: 0;
  width: 12px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.modal__close::after {
  position: absolute;
  content: "";
  top: calc(50% - 1px);
  right: 0;
  width: 12px;
  height: 2px;
  background: currentColor;
  transform: rotate(-45deg);
}

.modal .vimeo {
  height: 0;
  padding-bottom: 56.5%;
  position: relative;
  margin-top: 16px;
}

.modal .vimeo__iframe {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 20px;
}

.modal .sound {
  position: absolute;
  bottom: 10%;
  left: 7%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: url(../img/soundoff.png) no-repeat center;
  cursor: pointer;
  pointer-events: auto;
  z-index: 219;
}

.modal .active {
  background: url(../img/soundon.png) no-repeat center;
}

.post-template-default .footer__container {
  padding-bottom: 25px;
  padding-top: 25px;
}

.single-page {
  padding-top: var(--header-height);
  padding-bottom: 180px;
}

.single-page__container {
  background: url("../img/svg/single-logo.svg") no-repeat bottom right;
}

.single-page h1,
.single-page h2,
.single-page h3,
.single-page h4,
.single-page h5,
.single-page h6 {
  margin-top: 45px;
  margin-bottom: 20px;
  letter-spacing: 2.5px;
}

.single-page h1 + h2,
.single-page h1 + h3,
.single-page h1 + h4,
.single-page h1 + h5,
.single-page h1 + h6,
.single-page h2 + h1,
.single-page h2 + h3,
.single-page h2 + h4,
.single-page h2 + h5,
.single-page h2 + h6,
.single-page h3 + h1,
.single-page h3 + h2,
.single-page h3 + h4,
.single-page h3 + h5,
.single-page h3 + h6,
.single-page h4 + h1,
.single-page h4 + h2,
.single-page h4 + h3,
.single-page h4 + h5,
.single-page h4 + h6,
.single-page h5 + h1,
.single-page h5 + h2,
.single-page h5 + h3,
.single-page h5 + h4,
.single-page h5 + h6,
.single-page h6 + h1,
.single-page h6 + h2,
.single-page h6 + h3,
.single-page h6 + h4,
.single-page h6 + h5 {
  margin-top: 20px;
}

.single-page img {
  margin-top: 50px;
  margin-bottom: 67px;
  /* =================R */
  object-fit: cover;
  border-radius: 27px;
}

.single-page ul {
  margin-bottom: 30px;
}

.single-page ul li {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  text-align: left;
  position: relative;
  padding-left: 20px;
}

.single-page ul li:before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  bottom: 0;
  width: 5px;
  height: 5px;
  background: linear-gradient(215.94deg, #1473ba -36.13%, #206396 113.74%);
  border-radius: 100%;
}

.single-page__wrap {
  max-width: 1010px;
  margin: 0 auto;
}

.single-page__img {
  margin-bottom: 30px;
  /* ==================R */
  max-width: 1010px;
  margin: 0 auto;
}

.single-page__content {
  max-width: 1010px;
  margin: 0 auto;
  text-align: justify;
}

.single-page p {
  margin-bottom: 25px;
}

.single-page__link {
  max-width: 286px;
  width: 100%;
  height: 50px;
  color: #fff;
  border-radius: 30px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.single-page__footer {
  display: none;
}

.single__footer {
  display: none;
  margin-left: auto;
  margin-right: 13%;
  min-width: 305px;
}

.single .single__footer {
  display: block;
}

.single .single__content {
  display: none;
}

.breadcrumbs {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #1a6ba8;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}

.breadcrumbs__btn {
  display: block;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  border: 1px solid #1c69a3;
  border-radius: 100%;
  background: url(../img/svg/arrow-prev.svg) no-repeat center center;
}

.breadcrumbs span {
  color: var(--color-black);
  padding-left: 12px;
  padding-right: 12px;
}

.breadcrumbs span.breadcrumbs__last {
  color: #1a6ba8;
  text-decoration: underline;
}

@media screen and (max-width: 992px) {
  .breadcrumbs__btn {
    position: absolute;
    top: -5%;
    left: 0;
  }

  .breadcrumbs {
    position: relative;
    padding-left: 30px;
    flex-wrap: wrap;
  }
}

/* Media for hover and animation */
@media screen and (min-width: 992px) {
  .link {
    position: relative;
    overflow: hidden;
    width: 360px;
    height: 50px;
  }

  .link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    background-color: #fff;
    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out;
    z-index: 0;
  }

  .link a {
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    transition: color 0.5s ease-in-out;
  }

  .link a span {
    display: block;
  }

  .link__up {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.5s ease-in-out;
  }

  .link__down {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(40px) translateX(-50%);
    transition: transform 0.5s ease-in-out;
  }

  .link:hover a {
    color: #1b6aa6;
  }

  .link:hover a .link__up {
    transform: translateY(-50px) translateX(-50%);
  }

  .link:hover a .link__down {
    transform: translateY(-50%) translateX(-50%);
  }

  .link:hover::before {
    transform: translateX(0);
  }

  .bienvenue__right a {
    transition: 0.3s ease-in-out;
  }

  .bienvenue__right a:hover {
    color: var(--black-hover);
  }

  .bienvenue__right a:hover.bienvenue__tel::before {
    background-image: url(../img/svg/tel-hover.svg);
  }

  .bienvenue__right a:hover.bienvenue__address::before {
    background-image: url(../img/svg/marker-hover.svg);
  }

  .bienvenue__title {
    line-height: 52px;
  }

  .bienvenue__title div {
    height: 52px;
  }

  .bienvenue__subtitle {
    line-height: 42px;
  }

  .bienvenue__subtitle div {
    height: 42px;
  }

  .bienvenue__text {
    line-height: 30px;
  }

  .bienvenue__text div {
    height: 30px;
  }

  .bienvenue__text p {
    margin-bottom: 28px;
  }

  .bienvenue__title div,
  .bienvenue__subtitle div,
  .bienvenue__text--top div,
  .bienvenue__text--bottom div {
    position: relative;
    overflow: hidden;
  }

  .bienvenue__title span,
  .bienvenue__subtitle span,
  .bienvenue__text--top span,
  .bienvenue__text--bottom span {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(100%);
    transition: all 1s ease-in-out;
  }

  .bienvenue__title.aos-animate span,
  .bienvenue__subtitle.aos-animate span,
  .bienvenue__text--top.aos-animate span,
  .bienvenue__text--bottom.aos-animate span {
    opacity: 1;
    transform: translateY(0);
  }

  .rendez .slick-next:hover {
    background: url("../img/svg/arrow-next-hover.svg") no-repeat center center;
  }

  .rendez .slick-prev:hover {
    background: url("../img/svg/arrow-prev-hover.svg") no-repeat center center;
  }

  .equipe-item__img img {
    transition: opacity 0.3s ease-in-out;
  }

  .equipe-item__link {
    transition: bottom 0.3s ease-in-out;
  }

  .equipe-item:hover .equipe-item__img img {
    opacity: 0.16;
  }

  .equipe-item:hover .equipe-item__link {
    bottom: 50%;
  }

  .technologies-item {
    cursor: pointer;
  }

  .technologies-item__img {
    transition: all 0.3s ease-in-out;
  }

  .technologies-item:hover {
    background: #dae5ee;
  }

  .technologies-item:hover .technologies-item__img {
    flex: 0 1 98%;
  }

  .sourire__link {
    transition: background-color 0.3s ease-in-out;
  }

  .sourire__link:hover {
    background-color: rgb(20, 115, 186);
  }

  .parcours-item {
    cursor: pointer;
    transition: color 0.3s ease-in-out;
  }

  .parcours-item:before {
    transition: background-color 0.3s ease-in-out;
  }

  .parcours-item__title:before {
    transition: background-color 0.3s ease-in-out;
  }

  .parcours-item:hover {
    color: #fff;
    z-index: 10;
  }

  .parcours-item:hover:before {
    background: #1d68a1;
  }

  .parcours-item:hover .parcours-item__title:before {
    background: #2a7ab7;
  }

  .menu-item {
    transition: color 0.3s ease-in-out;
  }

  .header-right__phone:hover::before {
    background-image: url(../img/svg/tel-hover.svg);
  }

  .dentiste__top-img {
    transform: translateX(-220%);
    opacity: 0;
  }

  .dentiste__bottom-img {
    opacity: 0;
    transform: translateX(-110%);
  }

  .dentiste-item {
    cursor: pointer;
  }

  .dentiste-item::before {
    transition: transform 0.3s ease-in-out;
  }

  .dentiste-item:hover::before {
    transform: scale(1.25);
  }

  .acces__soc--marker {
    transition: color 0.3s ease-in-out;
  }

  .acces__soc--marker:hover {
    color: #8ebadb;
  }

  .acces__soc--marker:hover:before {
    background-image: url(../img/svg/acces-marker-hover.svg);
  }

  .acces__soc--phone {
    transition: color 0.3s ease-in-out;
  }

  .acces__soc--phone:hover {
    color: #8ebadb;
  }

  .acces__soc--parking:hover a p {
    color: #8ebadb;
  }

  .acces__soc--phone:hover:before {
    background-image: url(../img/svg/acces-tel-hover.svg);
  }

  .acces__link {
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  }

  .acces__link:hover {
    color: var(--black-hover);
    background: #fff;
  }

  .acces__form input {
    cursor: pointer;
  }

  .acces__form input::-moz-placeholder {
    -moz-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
  }

  .acces__form input::placeholder {
    transition: color 0.3s ease-in-out;
  }

  .acces__form input:hover::-moz-placeholder {
    color: #5d9fd1;
  }

  .acces__form input:hover::placeholder {
    color: #5d9fd1;
  }

  .acces__form input[type="submit"] {
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  }

  .acces__form input[type="submit"]:hover {
    color: #5d9fd1;
    background: #fff;
  }

  .acces__form textarea {
    cursor: pointer;
  }

  .acces__form textarea::-moz-placeholder {
    -moz-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
  }

  .acces__form textarea::placeholder {
    transition: color 0.3s ease-in-out;
  }

  .acces__form textarea:hover::-moz-placeholder {
    color: #5d9fd1;
  }

  .acces__form textarea:hover::placeholder {
    color: #5d9fd1;
  }

  .acces__form input,
  .acces__form textarea {
    border-radius: 0;
  }

  /* =================R */
  /* .acces__bottom{
    flex-direction: row;
  }
  .acces__link{
    margin-top: 0;
  } */

  /* ===================== */
  .footer__content a {
    transition: color 0.3s ease-in-out;
  }

  .footer__content a:hover {
    color: #5d9fd1;
  }

  .conseils .slick-next:hover {
    background: url(../img/svg/video-arrow-next-hover.svg) no-repeat center
      center;
  }

  .conseils .slick-prev:hover {
    background: url(../img/svg/video-arrow-prev-hover.svg) no-repeat center
      center;
  }

  .conseils .video {
    cursor: pointer;
  }

  .conseils-item__img img {
    transition: transform 0.3s ease-in-out;
  }

  .conseils-item__img:hover img {
    transform: scale(1.2);
  }

  .accordion-item__content ul li a {
    cursor: pointer;
    transition: color 0.3s ease;
  }

  .accordion-item__content ul li:hover a {
    color: var(--black-hover);
  }

  .breadcrumbs__btn:hover {
    background: url(../img/svg/video-arrow-prev-hover.svg) no-repeat center
      center;
  }

  .breadcrumbs span {
    transition: 0.3s ease-in-out;
  }

  .breadcrumbs span:hover {
    color: #1a6ba8;
  }

  .single-page__link {
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  }

  .single-page__link:hover {
    background: #fff;
    color: #1b6aa6;
  }
}

@media screen and (max-width: 1880px) {
  .welcome .vimeo {
    max-width: 100%;
    padding-bottom: 56%;
  }
}

@media screen and (max-width: 1600px) {
  .header__logo {
    margin-left: 0;
  }

  .header-right .header-right__phone {
    margin-right: 0;
  }

  .parcours-item {
    width: 33.33%;
    margin-bottom: 20px;
  }

  .conseils__container {
    padding-left: 0;
  }
}

@media screen and (max-width: 1460px) {
  .parcours__container {
    padding: 93px 100px 30px 50px;
  }

  .parcours-item:first-child {
    z-index: 5;
  }

  .parcours-item:nth-child(2) {
    z-index: 4;
  }

  .parcours-item:nth-child(3) {
    z-index: 3;
  }

  .parcours-item:nth-child(4) {
    z-index: 2;
  }

  .parcours-item:nth-child(5) {
    z-index: 1;
  }

  .parcours-item {
    padding-left: 87px;
  }

  .parcours-item__text::-webkit-scrollbar {
    width: 2px;
  }

  /* Handle */
  .parcours-item__text::-webkit-scrollbar-thumb {
    background: #dae5ee;
    border-radius: 5px;
  }

  .parcours-item:hover {
    z-index: 30;
  }
}

@media screen and (max-width: 1415px) {
  .parcours__container {
    padding: 93px 80px 30px 80px;
  }

  .parcours__list {
    flex-wrap: wrap;
  }

  .parcours-item {
    padding-left: 67px;
  }
}

@media screen and (max-width: 1366px) {
  .bienvenue__left {
    max-width: 675px;
    width: 100%;
    padding-left: 230px;
  }

  .bienvenue__right {
    /*max-width: 320px;*/
    padding-top: 45px;
    width: 100%;
  }

  .bienvenue-links {
    flex-direction: column;
  }

  .dentiste-item {
    width: 48%;
    font-size: 32px;
    line-height: 36px;
  }

  .dentiste-item:before {
    top: 24%;
  }

  .dentiste__top-img {
    height: auto;
    width: 56%;
  }

  .dentiste__list {
    padding-left: 0;
  }

  .dentiste__content {
    max-width: 100%;
    width: 43%;
  }

  .equipe__left {
    padding-left: 60px;
    max-width: 460px;
    width: 100%;
  }

  .equipe__list {
    justify-content: space-between;
  }

  .equipe-item {
    width: 45%;
    margin-right: 0;
  }

  .equipe-item__img {
    max-width: 340px;
  }

  .assistant__list {
    justify-content: space-between;
  }

  .assistant-item {
    width: 29%;
    margin-right: 0;
  }

  .rendez__bottom {
    padding: 50px 30px;
  }

  .rendez__left {
    padding-top: 25px;
    padding-left: 0;
  }

  .conseils {
    padding-top: 90px;
  }

  .laboratoire {
    padding-top: 50px;
  }

  .rendez__img {
    margin-right: 15px;
  }

  .rendez__img--3 {
    margin-left: 15px;
  }

  .single-page .attachment-post-thumbnail {
    height: 36vh;
  }

  .laboratoire__container {
    background-attachment: initial;
  }
}

@media screen and (max-width: 1140px) {
  .acces__container {
    padding-top: 90px;
  }

  .acces__right {
    padding-top: 15%;
  }

  .acces__left {
    max-width: 550px;
  }

  /* =======================R */
  .acces__bottom {
    flex-direction: column;
  }

  .acces__link {
    margin-top: 65px;
  }

  .acces__soc--parking {
    width: auto;
  }

  /* ======================R */
  #map {
    width: 550px;
  }

  .rendez__img {
    display: none;
  }

  .rendez-slider {
    width: 100%;
  }

  .equipe__right {
    padding-top: 70px;
    padding-bottom: 20px;
  }

  .technologies {
    padding-top: 80px;
  }

  .sourire {
    margin-top: 100px;
  }

  .sourire__container {
    padding-bottom: 80px;
  }

  .single-page .attachment-post-thumbnail {
    height: 34vh;
  }

  .footer__img {
    margin-top: 30px;
  }
}

/* Media queries */
@media screen and (max-width: 992px) {
  .main-menu {
    display: none;
  }

  .burger {
    display: block;
  }

  .bienvenue__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .bienvenue__top {
    display: block;
  }

  .bienvenue-links {
    flex-direction: column;
  }

  .bienvenue__text {
    max-width: 100%;
    padding: 30px 50px;
  }

  .bienvenue__right {
    padding-top: 80px;
  }

  .dentiste__container {
    padding-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .dentiste__top {
    padding-bottom: 0;
  }

  .dentiste__top-img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .dentiste__list {
    padding-left: 0;
    padding-top: 30px;
    padding-bottom: 30px;
    display: block;
    padding-left: 40px;
  }

  .dentiste-item {
    width: 100%;
    padding-top: 100px;
    -webkit-text-fill-color: #fff;
    text-fill-color: #fff;
    margin-bottom: 20px;
  }

  .bienvenue__right a {
    padding-left: 38px;
  }

  .dentiste-item::before {
    top: 10px;
  }

  .dentiste__bottom {
    padding-left: 15px;
    padding-right: 15px;
    display: block;
  }

  .dentiste__bottom-img {
    width: 100%;
  }

  .dentiste__bottom-img img {
    margin: 0 auto;
  }

  .dentiste__content {
    width: 100%;
  }

  .equipe__container {
    display: block;
  }

  .equipe__left {
    background-position: right top;
    background-size: contain;
    max-width: 100%;
  }

  .equipe__right {
    padding-top: 30px;
    width: 100%;
  }

  .equipe-item__img {
    max-width: 100%;
  }

  .equipe-item__pos {
    font-size: 16px;
    line-height: 24px;
  }

  .assistant-item__img {
    max-width: 100%;
  }

  .assistant-item__pos {
    font-size: 14px;
  }

  .rendez__container {
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .rendez__bottom {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
  }

  .rendez__left {
    flex-shrink: 0;
    padding-top: 0;
    max-width: 320px;
  }

  .technologies {
    padding-top: 50px;
  }

  .sourire {
    margin-top: 80px;
    background-position-x: left;
  }

  .sourire__container {
    display: block;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .sourire__left {
    width: 100%;
    margin-bottom: 30px;
  }

  .sourire__right {
    margin: 0 auto;
  }

  .traitements {
    padding-top: 40px;
  }

  .traitements__wrap {
    padding-left: 35px;
  }

  .parcours__container {
    padding-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .parcours__list {
    justify-content: center;
  }

  .parcours-item {
    width: 34%;
    min-height: 325px;
  }

  .accordion-item {
    padding-left: 20px;
  }

  .accordion-item__title {
    font-size: 22px;
  }

  .accordion-item ul li {
    font-size: 18px;
  }

  .acces__sides {
    display: block;
  }

  .acces__container {
    padding-top: 40px;
  }

  .acces__wrap {
    padding-left: 0;
  }

  .acces__left {
    max-width: 100%;
    padding-bottom: 280px;
  }

  .acces__right {
    margin-top: 0;
    max-width: 100%;
    width: 100%;
    background-position-x: right;
    background-size: 50%;
  }

  .acces__soc {
    padding-left: 38px;
  }

  .parcours {
    padding-bottom: 60px;
  }

  #map {
    left: 50%;
    transform: translateX(-50%);
  }

  .conseils {
    padding-top: 0;
  }

  .conseils__title {
    margin-bottom: 50px;
  }

  .single-page .attachment-post-thumbnail {
    height: 28vh;
  }
}

@media screen and (max-width: 768px) {
  .header-right__phone span {
    display: none;
  }

  .header-right__location span {
    display: none;
  }

  .equipe-item__title {
    min-height: 40px;
    line-height: 1.2;
  }

  .rendez__text {
    margin-bottom: 30px;
  }

  .rendez-item__img {
    padding-bottom: 70%;
    height: 0;
  }

  .equipe-item__link.mobile {
    position: static;
    width: 100%;
    /*display: block;*/
    transform: none;
  }

  h1 {
    font-size: calc(24px + 27.2 * (100vw - 320px) / 1920);
    line-height: 40px;
  }

  h2 {
    font-size: calc(22px + 27.2 * (100vw - 320px) / 1920);
    line-height: 24px;
  }

  h3 {
    font-size: calc(20px + 22 * (100vw - 320px) / 1920);
    line-height: 20px;
  }

  h4 {
    font-size: calc(13px + 17 * (100vw - 320px) / 1920);
    line-height: 18px;
  }

  .bienvenue__left {
    padding-left: 0;
    padding-top: 230px;
  }

  .bienvenue__right {
    padding-top: 20px;
  }

  .equite-item__pos {
    font-size: 16px;
    line-height: 22px;
  }

  .rendez__bottom {
    display: block;
  }

  .rendez__left {
    width: 100%;
    max-width: 100%;
  }

  .technologies-item__right {
    padding: 10px;
  }

  .technologies-item__title {
    margin-bottom: 10px;
  }

  .technologies-item__text {
    font-size: 14px;
    line-height: 24px;
  }

  .technologies-item__img {
    border-radius: 10px;
  }

  .parcours__list {
    justify-content: flex-start;
  }

  .parcours-item {
    /*width: 275px;*/
    width: 33.3%;
    padding: 40px 20px 75px 40px;
  }

  .parcours-item:before {
    width: 275px;
    height: 275px;
    /* ======================R */
    left: 0;
  }

  .parcours__container {
    overflow: hidden;
  }

  .parcours-item__text {
    max-height: 101px;
  }

  .parcours-item__text::-webkit-scrollbar {
    width: 3px;
  }

  /* Handle */
  .parcours-item__text::-webkit-scrollbar-thumb {
    background: #dae5ee;
    border-radius: 5px;
  }

  .sourire__right {
    width: 500px;
  }

  .single-page .attachment-post-thumbnail {
    height: 21vh;
  }

  .footer {
    padding-bottom: 25px;
  }
}

@media screen and (max-width: 576px) {
  h1 {
    line-height: 30px;
  }

  .bienvenue__subtitle {
    font-size: 24px;
  }

  .equipe-item__title {
    min-height: 40px;
    text-align: center;
  }

  .header__logo {
    margin-left: 0;
  }

  .header__logo--mobile {
    display: block;
  }

  .header__logo--desktop {
    display: none;
  }

  .header-right__date span {
    display: none;
  }

  .bienvenue {
    padding-top: 30px;
  }

  .bienvenue__container {
    padding-top: 20px;
  }

  .bienvenue__top {
    margin-bottom: 30px;
  }

  .bienvenue__right {
    flex-direction: column;
  }

  .bienvenue__bottom {
    padding: 0;
  }

  .bienvenue__left::before {
    left: 50%;
    transform: translateX(-50%);
    display: none;
  }

  .bienvenue__left {
    padding-top: 70px;
  }

  .bienvenue__text {
    padding: 20px;
    font-size: 14px;
  }

  .dentiste__container {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .dentiste__list {
    padding-left: 15px;
  }

  .dentiste-item {
    font-size: 24px;
    line-height: 30px;
  }

  .assistant-item__pos {
    font-size: 12px;
    text-align: center;
  }

  .equipe-item__pos {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
  }

  .assistant-item__title {
    text-align: center;
  }

  /* ====================R */
  .rendez {
    padding-bottom: 0;
  }

  .technologies-item {
    background: transparent;
    display: block;
  }

  .technologies-item__content {
    max-width: 100%;
  }

  .technologies-item__right {
    padding: 20px 0;
  }

  .technologies-item__img {
    padding-top: 58%;
  }

  .sourire {
    margin-top: 40px;
    /* =================R */
    background-position: 22% top;
    background-size: cover;
  }

  .sourire__container {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .sourire__left {
    padding-top: 30px;
  }

  .sourire__title {
    margin-bottom: 10px;
  }

  .sourire__right {
    width: 290px;
  }

  .parcours__container {
    padding-left: 0;
    padding-right: 0;
  }

  .parcours__list {
    padding-left: 15px;
    padding-right: 15px;
  }

  .parcours-item {
    width: 100%;
    padding: 20% 15%;
  }

  .parcours-item__text {
    max-width: 350px;
    max-height: 156px;
  }

  .parcours-item:not(:first-of-type) {
    margin-top: -45px;
  }

  .parcours-item:before {
    width: 100%;
    padding-top: 100%;
  }

  /* ==============================R */
  .parcours-item__title {
    /*margin-bottom: 0;*/
    height: 43px;
  }

  .traitements {
    padding-top: calc(100% - 320px);
  }

  .traitements__wrap {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 0;
    /* ===================================R */
    background-image: none !important;
  }
  .accordion-item__control {
    padding-top: 0;
  }
  .traitements__title {
    margin-bottom: 30px;
  }
  .accordion-item {
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 10px;
  }

  .accordion-item__title {
    font-size: 18px;
  }

  .accordion-item.open .accordion-item__title {
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .accordion-item ul li {
    font-size: 16px;
  }

  .accordion-item__content {
    padding-left: 10px;
  }

  .accordion-item__content ul li {
    padding-left: 20px;
  }

  /* ===============================R */
  /* .traitements {
    background: #FAFAFA;
  }*/

  .accordion {
    /*background: #FAFAFA;*/
  }

  .accordion-item {
    opacity: 1;
    background: transparent;
  }

  .accordion-item__photo {
    display: block;
  }

  .accordion-item__control {
    flex-direction: column;
  }

  .accordion-item__content {
    display: block;
  }

  /* ===========================R */
  .acces__list {
    padding-left: 19px;
  }

  .acces-item {
    font-size: 14px;
  }

  .acces-item__day {
    min-width: 77px;
  }

  #map {
    width: 100%;
    border-radius: 10px;
  }

  .acces__bottom {
    display: block;
  }

  .acces__list {
    margin-bottom: 30px;
  }

  /* ==================R */
  .acces__left-wrap {
    flex-direction: column;
    margin-bottom: 65px;
  }

  .acces__soc--phone {
    margin-bottom: 20px;
  }

  .footer__container {
    padding-left: 15px;
    padding-right: 15px;
    display: block;
    /* padding-top: 0; */
    /* ====================R */
    padding-top: 0;
    padding-bottom: 32px;
  }

  /* ==============R */
  .footer__content {
    padding: 15px;
  }

  .footer__img {
    width: 50%;
    margin: 0 auto;
    display: block;
    padding-top: 5px;
  }

  .rendez__counter {
    left: auto;
    right: 0;
  }

  /* single-page */
  .single-page {
    padding-bottom: 50px;
  }

  .breadcrumbs {
    margin-bottom: 30px;
  }

  .single-page .attachment-post-thumbnail {
    height: 19vh;
    margin: 15px 0 15px;
  }
}

@media screen and (max-width: 390px) {
  /* ================================R */
  .parcours-item {
    padding: 9% 0 0 21%;
  }

  .parcours-item__text {
    max-width: 220px;
  }
}
