:root {
  --mainFont: "Inter", sans-serif;
  --white: #fff;
  --black: #242424;
  --blue: #39BED9;
  --blue-dark: #1BA0BB;
  --red: #D90026;
  --default-transition: all 0.2s;
  --color-transition: color 0.2s;
  --iti-path-flags-1x:url("../images/flags.webp") !important;
  --iti-path-flags-2x:url("../images/flags@2x.webp") !important;
  --iti-path-globe-1x:url("../images/globe.webp") !important;
  --iti-path-globe-2x:url("../images/globe@2x.webp") !important;
  --iti-spacer-horizontal: 20px;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Light.woff2") format("woff2"), url("../fonts/Inter-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2"), url("../fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2"), url("../fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2"), url("../fonts/Inter-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

ul,
ol {
  list-style: none;
}

body,
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

input,
select,
textarea {
  appearance: none;
  border: none;
  outline: none;
}

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

body {
  font-family: var(--mainFont);
  font-size: 1rem;
  line-height: 1.25;
  color: var(--black);
  background: var(--white);
  min-width: 320px;
}
body.body--no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

a {
  transition: var(--color-transition);
}

button {
  transition: var(--default-transition);
}

path,
circle {
  transition: var(--default-transition);
}

svg {
  width: 100%;
  height: auto;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  color: #000;
  font-size: 14px;
  border: 1px solid #fff;
  transition: border 0.2s;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder {
  color: #747474;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  border-color: #000;
}
input[type=text].--error, input[type=text].wpcf7-not-valid,
input[type=email].--error,
input[type=email].wpcf7-not-valid,
input[type=tel].--error,
input[type=tel].wpcf7-not-valid,
textarea.--error,
textarea.wpcf7-not-valid {
  color: var(--red);
  border-color: var(--red);
}
input[type=text].--error::placeholder, input[type=text].wpcf7-not-valid::placeholder,
input[type=email].--error::placeholder,
input[type=email].wpcf7-not-valid::placeholder,
input[type=tel].--error::placeholder,
input[type=tel].wpcf7-not-valid::placeholder,
textarea.--error::placeholder,
textarea.wpcf7-not-valid::placeholder {
  color: var(--red);
}

.wpcf7-not-valid {
  color: var(--red);
  border-color: var(--red);
}
.wpcf7-not-valid::placeholder {
  color: var(--red);
}

input[type=text],
input[type=email],
input[type=tel] {
  height: 56px;
  padding: 0 20px;
}

textarea {
  height: 120px;
  resize: vertical;
  min-height: 50px;
  max-height: 250px;
  padding: 12px 20px;
}

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrapper {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

main {
  padding-top: 104px;
}

section {
  margin-bottom: 120px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  transition: var(--default-transition);
  padding: 0 50px;
  border-radius: 13px;
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  height: 56px;
  cursor: pointer;
  white-space: nowrap;
  background-image: linear-gradient(89deg, #5FA4FF 13.465%, #E598F9 46.67%, #E598F9 53.33%, #4186E1 86.67%);
  background-size: 200% 100%;
  background-position: 0% 0%;
  transition: background-position 0.6s ease, background-color 0.3s, opacity 0.3s, color 0.3s;
}
.button:hover {
  background-position: 100% 0%;
}
.button.--disabled {
  pointer-events: none;
  background: #C4C4C4;
}
.button.--bordered {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.5px;
  padding: 0 52px;
  border-radius: 14px;
  border: 1px solid var(--blue);
  color: var(--blue);
  background: var(--white);
}
.button.--bordered:hover {
  background: var(--blue);
  color: var(--white);
}
.button.--bordered:hover path {
  fill: #fff;
}
.button.--bordered:active {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}
.button.--big {
  height: 67px;
}
.button.--blue-gradient {
  background-image: linear-gradient(89deg, #5FA4FF 13.465%, #39BED9 46.67%, #39BED9 53.33%, #4186E1 86.67%);
}
.button .icon {
  display: inline-flex;
  flex-shrink: 0;
}

.ttl-1 {
  text-align: center;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: capitalize;
  margin-bottom: 36px;
}

.ttl-2 {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: capitalize;
  margin-bottom: 24px;
}

.subttl {
  margin: 0 auto 60px;
  max-width: 760px;
  color: #747474;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5; /* 150% */
}
.subttl b,
.subttl strong {
  font-weight: 500;
  color: #242424;
}
.subttl p:not(:last-child) {
  margin-bottom: 20px;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  user-select: none;
  cursor: pointer;
}
.custom-checkbox.--error .custom-checkbox-label {
  color: var(--red);
}
.custom-checkbox.--error .custom-checkbox-label a {
  color: var(--red);
}
.custom-checkbox.--error .custom-checkbox-icon {
  border-color: var(--red);
}
.custom-checkbox.active .custom-checkbox-icon {
  background-color: #39BED9;
  border-color: #39BED9;
  background-image: url("../images/icons/white-check-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.custom-checkbox input,
.custom-checkbox .wpcf7-form-control-wrap {
  position: absolute;
  z-index: -9;
  visibility: hidden;
}
.custom-checkbox input[type=checkbox]:checked + .custom-checkbox-icon {
  background-color: #39BED9;
  border-color: #39BED9;
  background-image: url("../images/icons/white-check-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.custom-checkbox .custom-checkbox-icon {
  width: 18px;
  height: 18px;
  border: 1px solid #000;
  border-radius: 2px;
  background-color: #fff;
  position: relative;
}
.custom-checkbox .custom-checkbox-label {
  font-size: 14px;
  line-height: 1.3;
  color: #242424;
}
.custom-checkbox .custom-checkbox-label a {
  color: var(--blue);
}
.custom-checkbox .custom-checkbox-label a:hover {
  color: #1BA0BB;
}

.splide__arrow {
  width: 56px;
  height: 56px;
  background-color: #8bbdec;
  border-radius: 50%;
  opacity: 1;
  background-image: url("../images/icons/right-white-arr.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.splide__arrow:disabled {
  opacity: 0;
}
.splide__arrow svg {
  display: none;
}
.splide__arrow--next {
  right: -86px;
}
.splide__arrow--prev {
  left: -86px;
  transform: translateY(-50%) rotate(180deg);
  opacity: 1;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: none;
}

[data-aos=fade-up] {
  transform: translate3d(0, 40px, 0);
}

.--hidden {
  display: none;
}

.disable-link {
  pointer-events: none;
}

.mw310 {
  max-width: 310px;
}

@media (max-width: 1200px) {
  section {
    margin-bottom: 100px;
  }
}
@media (max-width: 920px) {
  section {
    margin-bottom: 80px;
  }
  .button {
    padding: 0 30px;
  }
}
@media (max-width: 580px) {
  .ttl-2 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.25;
  }
  .subttl {
    margin-bottom: 40px;
    font-size: 16px;
  }
  .button {
    padding: 0 24px;
  }
  .button.--big {
    height: 56px;
  }
}
@media (max-width: 374px) {
  section {
    margin-bottom: 60px;
  }
}
.hero-inner {
  padding-top: 96px;
}
.hero-inner.--mb60 {
  margin-bottom: 60px;
}
.hero-inner.--center .ttl-2,
.hero-inner.--center .subttl {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
.hero-inner .ttl-2,
.hero-inner .subttl {
  text-align: left;
  max-width: 800px;
}
.hero-inner .ttl-2 {
  margin-bottom: 36px;
}
.hero-inner h1.ttl-2 {
  font-size: 64px;
}
.hero-inner .subttl {
  margin: 0;
}
.hero-inner__reviews {
  margin-top: 40px;
}

.video-block__item {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 40px;
  overflow: hidden;
}
.video-block__item-cover {
  width: 100%;
  height: 100%;
}
.video-block__item-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-block__item-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  cursor: pointer;
  transition: all 0.3s;
}
.video-block__item-btn:hover {
  filter: brightness(0.92);
}
.video-block__item-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.video-block__item-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  border-radius: 40px;
}

.big-photo-block__image {
  aspect-ratio: 16/10;
  border-radius: 40px;
  overflow: hidden;
}
.big-photo-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.big-form__wrapper,
.prices-table__wrapper {
  position: relative;
  background-color: #eff6fc;
  padding: 70px 20px;
}
.big-form__wrapper:before, .big-form__wrapper:after,
.prices-table__wrapper:before,
.prices-table__wrapper:after {
  content: "";
  width: 100%;
  height: 50px;
  background-image: url("../images/form-top-figure.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
}
.big-form__wrapper:before,
.prices-table__wrapper:before {
  top: -50px;
}
.big-form__wrapper:after,
.prices-table__wrapper:after {
  bottom: -50px;
  transform: rotate(180deg);
}

.big-form {
  padding: 50px 0;
}
.big-form__h2 {
  font-size: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.big-form__container {
  margin: 60px auto 0;
  width: 780px;
  max-width: 100%;
}
.big-form__container form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.big-form__input {
  width: 100%;
}
.big-form__input.--w50 {
  width: calc(50% - 10px);
}
.big-form__input.--calendar {
  position: relative;
}
.big-form__input.--calendar:before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 20px;
  top: 16px;
  background-image: url("../images/icons/calendar-icon.svg");
  background-repeat: no-repeat;
}
.big-form__input.--calendar input {
  padding-left: 54px;
}
.big-form__checkbox {
  width: 100%;
  display: flex;
  justify-content: center;
}
.big-form__checkbox .custom-checkbox {
  margin-bottom: 0;
}
.big-form__submit {
  width: 100%;
}
.big-form__submit input,
.big-form__submit .button {
  width: 100%;
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.big-form__submit .btn-spinner {
  display: none;
  width: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.5) 30%, rgba(0, 0, 0, 0) 0 70%, rgb(255, 255, 255) 0) 50%/8% 100%, linear-gradient(90deg, rgba(255, 255, 255, 0.25) 30%, rgba(0, 0, 0, 0) 0 70%, rgba(255, 255, 255, 0.75) 0) 50%/100% 8%;
  background-repeat: no-repeat;
  animation: spinner 1s infinite steps(12);
}
.big-form__submit .btn-spinner::before, .big-form__submit .btn-spinner::after {
  content: "";
  grid-area: 1/1;
  border-radius: 50%;
  background: inherit;
  opacity: 0.915;
  transform: rotate(30deg);
}
.big-form__submit .btn-spinner::after {
  opacity: 0.83;
  transform: rotate(60deg);
}

@keyframes spinner {
  100% {
    transform: rotate(1turn);
  }
}
.wpcf7-form.submitting .btn-spinner {
  display: grid;
}

.before-after-block {
  margin-bottom: 60px;
}
.before-after-block .hero__before-after-slider {
  width: 780px;
  max-width: 100%;
  margin: 0 auto;
}

.treatment-details__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.treatment-details__h2 {
  font-size: 36px;
}
.treatment-details__h2, .treatment-details__descr {
  text-align: left;
}
.treatment-details__left {
  padding-top: 60px;
  max-width: 530px;
}
.treatment-details__right {
  padding: 50px 0;
  position: relative;
}
.treatment-details__right:before, .treatment-details__right:after {
  content: "";
  width: 100%;
  height: 50px;
  left: 0;
  position: absolute;
  background-image: url("../images/doctor-info-figure.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.treatment-details__right:before {
  top: 0;
}
.treatment-details__right:after {
  bottom: 0;
  transform: rotate(180deg);
}
.treatment-details__right-wrap {
  background-color: #eff6ff;
  height: 100%;
  padding: 70px 85px;
}
.treatment-details__items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.treatment-details__item {
  display: flex;
  gap: 20px;
}
.treatment-details__item.--align-center {
  align-items: center;
}
.treatment-details__item-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.treatment-details__item-icon img {
  width: auto;
}
.treatment-details__item-text-ttl {
  color: #242424;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4; /* 140% */
  letter-spacing: -0.5px;
}
.treatment-details__item-text-descr {
  margin-top: 4px;
}

.image-block.--mb60 {
  margin-bottom: 60px;
}
.image-block__wrap {
  width: 100%;
  max-width: 100%;
  margin: auto;
  border-radius: 40px;
  overflow: hidden;
}
.image-block__wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alternating-blocks__rows.--reverse .alternating-blocks__row:nth-child(2n-1) {
  flex-direction: row-reverse;
}
.alternating-blocks__rows.--reverse .alternating-blocks__row:nth-child(2n) {
  flex-direction: row;
}
.alternating-blocks__row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.alternating-blocks__row:not(:last-child) {
  margin-bottom: 120px;
}
.alternating-blocks__row:nth-child(2n) {
  flex-direction: row-reverse;
}
.alternating-blocks__row-img {
  width: calc(50% - 10px);
}
.alternating-blocks__row-text {
  width: calc(50% - 70px);
}
.alternating-blocks__row-ttl {
  margin-bottom: 26px;
  color: #202020;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15; /* 113.333% */
  text-transform: capitalize;
}
.alternating-blocks__row-cont p {
  margin-bottom: 20px;
  color: #747474;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5; /* 150% */
}
.alternating-blocks__row-cont p:last-child {
  margin-bottom: 0;
}
.alternating-blocks__row-cont ul {
  margin: 20px 0;
}
.alternating-blocks__row-cont ul li {
  padding-left: 52px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4; /* 140% */
  letter-spacing: -0.5px;
  position: relative;
}
.alternating-blocks__row-cont ul li:not(:last-child) {
  margin-bottom: 30px;
}
.alternating-blocks__row-cont ul li:before {
  content: "";
  background-image: url("../images/icons/list-check-blue-circle.svg");
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-size: contain;
}
.alternating-blocks__row-btn {
  margin-top: 30px;
}
.alternating-blocks__row-btn .button {
  padding: 0 30px;
}
.alternating-blocks .promo-line {
  margin: 20px 0;
  width: 100%;
  border-radius: 16px;
  background: #EFF6FC;
  padding: 20px;
  text-align: center;
  font-size: 20px;
  line-height: 1.5; /* 150% */
  font-weight: 300;
}
.alternating-blocks .promo-line b,
.alternating-blocks .promo-line strong {
  font-weight: 600;
  color: var(--blue);
}

.links-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.links-list__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7; /* 171.429% */
  letter-spacing: -0.5px;
  text-decoration: underline;
}
.links-list__item svg {
  width: 24px;
  height: 24px;
}
.links-list__item:hover {
  text-decoration: none;
  color: var(--black) !important;
}
.links-list__item:hover path {
  fill: var(--black);
}

.tabs__controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 700px;
  margin: 0 auto 60px;
}
@media (max-width: 580px) {
  .tabs__controls {
    display: none;
  }
}
.tabs__control {
  background: #EFF6FF;
  border: none;
  padding: 0 20px;
  height: 40px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7; /* 171.429% */
  letter-spacing: -0.5px;
}
.tabs__control.--active {
  background-color: var(--blue);
  color: #fff;
}
.tabs__control:hover:not(.--active) {
  background-color: #dcebff;
}
.tabs__panels {
  position: relative;
}
.tabs__panel {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.2s;
}
.tabs__panel.--active {
  opacity: 1;
  visibility: visible;
  position: relative;
}
@media (max-width: 580px) {
  .tabs__panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transition: none;
    margin-bottom: 10px;
  }
}
.tabs__heading {
  display: none;
}
@media (max-width: 580px) {
  .tabs__heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 36px 20px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    background-color: #EFF6FF;
    cursor: pointer;
    position: relative;
  }
  .tabs__heading::after {
    content: "";
    transition: all 0.2s;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("../images/icons/arr-down-black.svg");
  }
  .tabs__heading.--open {
    color: #fff;
    background-color: #39bed9;
  }
  .tabs__heading.--open::after {
    transform: translateY(-50%) rotate(180deg);
    filter: brightness(100);
  }
}
@media (max-width: 580px) {
  .tabs__inner {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s;
  }
}

.text-page .blog-article__content h3 {
  font-size: 20px;
}

@media (max-width: 1200px) {
  .hero-inner {
    padding-top: 60px;
  }
  .hero-inner h1.ttl-2 {
    font-size: 48px;
  }
  .photo-gallery__wrap.--col3 {
    padding-top: 50px;
  }
  .treatment-details__right-wrap {
    padding: 50px;
  }
}
@media (max-width: 920px) {
  .alternating-blocks__row-img {
    width: calc(50% - 20px);
  }
  .alternating-blocks__row-text {
    width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .big-form__wrapper:before, .big-form__wrapper:after,
  .prices-table__wrapper:before,
  .prices-table__wrapper:after {
    background-image: url("../images/form-top-figure-mob.webp");
  }
  .treatment-details__wrap {
    display: block;
    max-width: 100%;
    margin: 0 auto;
  }
  .treatment-details__left {
    margin-bottom: 60px;
    padding-top: 0;
  }
  .treatment-details__right-wrap {
    padding: 20px 40px;
  }
  .alternating-blocks__row {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .alternating-blocks__row:nth-child(2n) {
    flex-direction: column;
  }
  .alternating-blocks__row-img {
    width: 480px;
    max-width: 100%;
    margin: 0 auto 40px;
  }
  .alternating-blocks__row-text {
    width: 100%;
  }
}
@media (max-width: 580px) {
  .hero-inner {
    padding-top: 30px;
    margin-bottom: 40px;
  }
  .hero-inner.--center .ttl-2, .hero-inner.--center .subttl {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .hero-inner .ttl-2 {
    margin-bottom: 20px;
  }
  .hero-inner h1.ttl-2 {
    font-size: 40px;
  }
  .hero-inner.--mb60 {
    margin-bottom: 30px;
  }
  .video-block__item {
    border-radius: 20px;
  }
  .video-block__item-btn {
    width: 46px;
  }
  .big-photo-block__image {
    border-radius: 20px;
  }
  .photo-gallery.--col3 {
    padding-bottom: 140px;
  }
  .photo-gallery__wrap.--col3 {
    padding-top: 20px;
  }
  .big-form .wrapper {
    padding: 0;
  }
  .big-form__wrapper {
    padding: 10px 20px;
  }
  .big-form__input.--w50 {
    width: 100%;
  }
  .before-after-block {
    margin-top: 0;
    margin-bottom: 30px;
  }
  .treatment-details__h2 {
    font-size: 28px;
  }
  .treatment-details__right-wrap {
    padding: 30px 20px;
  }
  .treatment-details__right {
    padding: 30px 0;
    margin: 0 -20px;
  }
  .treatment-details__right:before, .treatment-details__right:after {
    height: 30px;
  }
  .alternating-blocks__row-cont p {
    font-size: 16px;
  }
  .alternating-blocks__row-ttl {
    margin-bottom: 20px;
  }
  .image-block__wrap {
    border-radius: 20px;
  }
  .image-block.--mb60 {
    margin-bottom: 30px;
  }
}
.modals-wrapper {
  display: none;
}

.modal {
  padding: 60px;
  background-color: #fff;
  border-radius: 40px;
}
@media (max-width: 580px) {
  .modal {
    padding: 30px;
    border-radius: 20px;
  }
}
.modal--info {
  width: 556px;
  max-width: 100%;
  text-align: center;
}
.modal__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background-color: #eff6fc;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.modal__icon.--error {
  background-color: #fbe5e9;
}
.modal__t1 {
  margin-bottom: 14px;
  color: #242424;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15; /* 113.333% */
}
.modal__t2 {
  margin-bottom: 20px;
  color: #747474;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5; /* 150% */
}
.modal__btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.modal__btn {
  min-width: 200px;
  max-width: 50%;
}
.modal__btn.--bordered {
  font-size: 18px;
}

.success-modal .f-button[data-fancybox-close],
.error-modal .f-button[data-fancybox-close] {
  display: none;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 12;
  background: var(--white);
  padding: 24px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--default-transition);
}
.header.fixed {
  padding: 15px 44px;
  box-shadow: 0px 4px 27px 0px rgba(0, 0, 0, 0.05);
}
.header__hamb, .header__dropdown {
  display: none;
}
.header__logo {
  max-width: 227px;
}
.header__logo-link {
  display: block;
}
.header__center {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -0.5px;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__nav-list > li {
  position: relative;
}
.header__nav-list > li:hover > ul {
  opacity: 1;
  visibility: visible;
}
.header__nav-list > li > a:hover {
  color: var(--blue);
}
.header__nav-list > li > ul,
.header__nav-list > li > ul > li > ul {
  background: #FFF;
  box-shadow: 0px 4px 30px 0px rgba(36, 36, 36, 0.1);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  width: max-content;
  min-width: 245px;
}
.header__nav-list > li > ul {
  position: absolute;
  top: -25px;
  left: -30px;
  border-radius: 14px;
  z-index: 6;
}
.header__nav-list > li > ul > li.menu-item-has-children > a {
  position: relative;
  padding-right: 38px;
}
.header__nav-list > li > ul > li.menu-item-has-children > a:before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background-image: url("../images/icons/arr-down-black.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.header__nav-list > li > ul > li > a {
  position: relative;
}
.header__nav-list > li > ul > li > a:after {
  content: "";
  width: 20px;
  height: 100%;
  position: absolute;
  right: -20px;
  top: 0;
  display: none;
}
.header__nav-list > li > ul > li:hover:not(:first-child) > a {
  background-color: #e1f5f9;
}
.header__nav-list > li > ul > li:hover:not(:first-child) > a:after {
  display: block;
}
.header__nav-list > li > ul > li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.header__nav-list > li > ul > li:first-child a {
  color: #747474;
  pointer-events: none;
}
.header__nav-list > li > ul > li > ul {
  height: 100%;
  overflow: auto;
  position: absolute;
  top: 0;
  left: calc(100% - 20px);
  background-color: #fff;
  padding: 20px;
  box-shadow: 30px 4px 30px 0px rgba(36, 36, 36, 0.1);
  transform: translateX(-10px);
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
}
.header__nav-list > li > ul li a {
  color: #242424;
  font-size: 16px;
  line-height: 2;
  letter-spacing: -0.5px;
  padding: 4px 10px;
  border-radius: 4px;
  display: block;
  white-space: nowrap;
  transition: all 0.3s;
}
.header__nav-list > li > ul li a:hover {
  background-color: #e1f5f9;
}
.header__nav-list > .menu-item-has-children, .header__nav-list > .current-menu-ancestor {
  padding-right: 24px;
  position: relative;
}
.header__nav-list > .menu-item-has-children:after, .header__nav-list > .current-menu-ancestor:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
  background-image: url("../images/icons/arr-down-black.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: var(--default-transition);
}
.header__nav-list .current-menu-item > a,
.header__nav-list .current-menu-ancestor > a,
.header__nav-list .current-menu-parent > a,
.header__nav-list .current_page_parent > a {
  color: var(--blue);
}
.header__nav-list .current-menu-item.menu-item-has-children:after,
.header__nav-list .current-menu-ancestor.menu-item-has-children:after,
.header__nav-list .current-menu-parent.menu-item-has-children:after,
.header__nav-list .current_page_parent.menu-item-has-children:after {
  background-image: url("../images/icons/arr-down-blue.svg");
}
.header__langs {
  position: relative;
}
.header__langs:hover .header__langs-dropdown {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.header__langs-active {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 9px;
}
.header__langs-dropdown {
  position: absolute;
  top: -15px;
  left: 0;
  background: var(--white);
  box-shadow: 0px 4px 30px 0px rgba(36, 36, 36, 0.1);
  border-radius: 16px;
  padding: 20px;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: var(--default-transition);
}
.header__langs-item {
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--default-transition);
}
.header__langs-item.active, .header__langs-item:hover {
  background: #E1F5F9;
  color: #39bed9;
  border-radius: 8px;
}

@media (max-width: 1200px) {
  .header {
    padding: 20px;
  }
  .header.fixed {
    padding: 10px 20px;
  }
  .header__logo {
    height: 40px;
    width: 180px;
  }
  .header__nav-list, .header__center {
    gap: 12px;
  }
  .header .button.--bordered {
    padding: 0 30px;
    height: 48px;
  }
  .header__langs, .header__nav-list {
    font-size: 14px;
  }
  .header__nav-list .menu-item-has-children {
    padding-right: 18px;
  }
  .header__nav-list .menu-item-has-children:after {
    width: 14px;
    height: 14px;
  }
  .header__langs-dropdown {
    padding: 12px;
  }
}
@media (max-width: 920px) {
  .header__logo {
    width: 120px;
    height: 26px;
  }
  .header .button.--bordered {
    padding: 0 20px;
    height: 42px;
    border-radius: 8px;
    letter-spacing: 0;
    font-size: 14px;
  }
  .header__langs, .header__nav-list {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .header__center {
    display: none;
  }
  .header__logo {
    width: 154px;
    height: auto;
  }
  .header__hamb {
    display: block;
    width: 44px;
    height: 44px;
    position: relative;
  }
  .header__hamb.active span:nth-child(1) {
    transform: rotate(-45deg);
    top: 22px;
  }
  .header__hamb.active span:nth-child(2) {
    transform: translateX(-20px);
    opacity: 0;
  }
  .header__hamb.active span:nth-child(3) {
    transform: rotate(45deg);
    top: 22px;
  }
  .header__hamb span {
    background-color: #000;
    height: 2px;
    border-radius: 2px;
    position: absolute;
    display: block;
    left: 10px;
    transition: all 0.2s;
  }
  .header__hamb span:nth-child(1), .header__hamb span:nth-child(3) {
    width: 24px;
  }
  .header__hamb span:nth-child(1) {
    top: 13px;
  }
  .header__hamb span:nth-child(2) {
    width: 18px;
    top: 21px;
  }
  .header__hamb span:nth-child(3) {
    top: 29px;
  }
  .header__cta.button.--bordered {
    display: block;
    padding: 0;
    font-size: 0;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background-image: url("../images/icons/phonecall-icon.svg");
    background-repeat: no-repeat;
    background-position: center;
  }
  .header__cta.button.--bordered:hover {
    background-color: #fff;
  }
  .header__dropdown {
    display: flex;
    flex-direction: column;
    padding: 0 40px 70px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 11;
    background-color: #fff;
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
    transform: translateY(-100%);
    visibility: hidden;
    transition: all 0.3s;
  }
  .header__dropdown.active {
    visibility: visible;
    transform: translateY(0);
  }
  .header__dropdown-wrap {
    overflow: auto;
    padding-top: 124px;
    scrollbar-width: none;
  }
  .header__dropdown-wrap::-webkit-scrollbar {
    display: none;
  }
  .header__dropdown-socs {
    position: absolute;
    width: 100%;
    bottom: 35px;
    left: 0;
    padding: 0 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  .header__dropdown-socs a {
    width: 24px;
  }
  .header__dropdown-nav {
    margin-bottom: 30px;
  }
  .header__dropdown-nav-list li.menu-item-earth a {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding-right: 0;
  }
  .header__dropdown-nav-list li.menu-item-has-children > a {
    position: relative;
  }
  .header__dropdown-nav-list li.menu-item-has-children > a:after {
    content: "";
    width: 16px;
    height: 16px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("../images/icons/dropdown-icon.svg");
    background-repeat: no-repeat;
    transition: all 0.2s;
  }
  .header__dropdown-nav-list li.menu-item-has-children.active > a {
    color: var(--blue);
  }
  .header__dropdown-nav-list li.menu-item-has-children.active > a:after {
    background-image: url("../images/icons/dropdown-icon-blue.svg");
    transform: translateY(-50%) rotate(180deg);
  }
  .header__dropdown-nav-list li.menu-item-has-children.active > ul {
    height: auto;
    padding-top: 16px;
  }
  .header__dropdown-nav-list li.menu-item-has-children > ul {
    height: 0;
    overflow: hidden;
  }
  .header__dropdown-nav-list li.menu-item-has-children > ul > li:first-child {
    display: none;
  }
  .header__dropdown-nav-list > li {
    margin-bottom: 20px;
  }
  .header__dropdown-nav-list > li:last-child {
    margin-bottom: 0;
  }
  .header__dropdown-nav-list > li > a {
    color: #242424;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.5px;
    text-transform: capitalize;
    padding-right: 20px;
    display: block;
    position: relative;
  }
  .header__dropdown-nav-list > li > ul .menu-item-has-children.active > a {
    color: var(--blue);
  }
  .header__dropdown-nav-list > li > ul .menu-item-has-children.active > a:after {
    transform: rotate(180deg);
  }
  .header__dropdown-nav-list > li > ul .menu-item-has-children.active > ul {
    padding-top: 14px;
  }
  .header__dropdown-nav-list > li > ul .menu-item-has-children > a {
    display: flex;
    align-items: center;
  }
  .header__dropdown-nav-list > li > ul .menu-item-has-children > a:after {
    position: static;
    transform: none;
    margin-left: 10px;
  }
  .header__dropdown-nav-list > li > ul li {
    margin-bottom: 14px;
  }
  .header__dropdown-nav-list > li > ul li:last-child {
    margin-bottom: 0;
  }
  .header__dropdown-nav-list > li > ul a {
    color: #242424;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5; /* 150% */
    letter-spacing: -0.5px;
  }
  .header__mob-langs {
    display: flex;
    gap: 10px;
  }
  .header__mob-langs-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 5px;
    color: #747474;
    font-size: 16px;
    line-height: 1.5; /* 150% */
    letter-spacing: -0.5px;
  }
  .header__mob-langs-item.active {
    background-color: #e0edf9;
    color: #000;
  }
}
.footer {
  padding-top: 120px;
  position: relative;
  background-color: #eff6fc;
  overflow: hidden;
}
.footer:before {
  content: "";
  width: 100%;
  height: 120px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/footer-bg.webp");
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.footer__cols {
  display: flex;
  justify-content: space-between;
  margin-bottom: 52px;
}
.footer__menu:not(:last-child) {
  margin-bottom: 40px;
}
.footer__menu.folding-menu .open {
  margin-bottom: 16px;
}
.footer__menu-ttl {
  color: #242424;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3; /* 128.571% */
  margin-bottom: 16px;
}
@media (max-width: 580px) {
  .footer__menu-ttl {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.footer__menu-ttl.open .arrow {
  transform: rotate(90deg);
  display: none;
}
@media (max-width: 580px) {
  .footer__menu-ttl.open .arrow {
    display: block;
  }
}
.footer__menu-ttl .arrow {
  width: 16px;
  height: 16px;
  background-image: url("../images/icons/right-arr.svg");
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 6px;
  transition: all 0.2s;
}
.footer__menu-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__menu-wrap a {
  color: #242424;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3; /* 128.571% */
}
.footer__menu-wrap a:hover {
  color: var(--blue);
}
.footer__sert {
  width: 112px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.footer__bot1 {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #C4C4C4;
}
.footer__bot1-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.footer__bot1-menu p {
  font-size: 14px;
  font-weight: 300;
  line-height: 2.15; /* 214.286% */
}
.footer__bot1-menu a:hover {
  color: var(--blue);
}
.footer__bot1-logos {
  display: flex;
  gap: 8px;
}
.footer__bot1-logos a {
  width: 24px;
  transition: all 0.3s;
}
.footer__bot1-logos a:hover {
  opacity: 0.7;
}
.footer__bot2 {
  padding: 30px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
  text-align: center;
}

.home-form {
  display: block;
  height: 1px;
}

@media (max-width: 1200px) {
  .footer__bot1 {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 920px) {
  .footer__col {
    max-width: 25%;
  }
}
@media (max-width: 767px) {
  .footer__cols {
    flex-wrap: wrap;
    margin-bottom: 10px;
  }
  .footer__col {
    width: 50%;
    max-width: initial;
    margin-bottom: 30px;
  }
  .footer__bot1 {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .footer__bot1-menu {
    gap: 10px;
  }
  .footer__bot1-menu p {
    line-height: 1.3;
    display: block;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 580px) {
  .footer {
    margin-top: 80px;
    padding-top: 80px;
  }
  .footer:before {
    top: 0;
    height: 50px;
    background-image: url("../images/form-top-figure-mob.webp");
    background-size: 100% 100%;
  }
  .footer__col {
    width: 100%;
    text-align: center;
  }
  .footer__sert {
    margin: auto;
  }
}
.hero {
  padding-top: 64px;
  margin-bottom: 134px;
}
.hero .wrapper {
  display: flex;
  justify-content: space-between;
}
.hero__left {
  padding-top: 106px;
  width: 480px;
  max-width: 45%;
}
.hero__right {
  max-width: 55%;
  width: 636px;
}
.hero__title {
  color: #242424;
  font-size: 96px;
  font-weight: 700;
  line-height: 1.06;
  margin-bottom: 40px;
}
.hero__cta-wrapper {
  position: fixed;
  z-index: 9;
  transition: opacity 0.3s;
}
.hero__cta-wrapper:hover .hero__cta-clone {
  opacity: 0 !important;
}
.hero__cta-wrapper:hover .hero__cta-buttons {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hero__cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 320px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s;
}
.hero__cta-buttons .button {
  width: 100%;
}
.hero__cta-clone {
  position: fixed;
  z-index: 19;
  min-width: 64px;
  min-height: 64px;
  pointer-events: none;
}
.hero__cta-clone.active {
  padding: 0;
  font-size: 0;
  border-radius: 50%;
  gap: 0;
}
.hero__cta-clone.no-animation-on-load {
  transition: none !important;
}
.hero__cta-wrap {
  margin-bottom: 44px;
  position: relative;
  min-height: 56px;
}
.hero__reviews {
  display: flex;
  gap: 10px;
}
.hero__reviews-photos {
  /*width: 144px;*/
  height: 48px;
}
.hero__reviews-photos img {
  max-height: 100%;
}
.hero__reviews-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}
.hero__reviews-title {
  color: #9D9D9D;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.33;
}
.hero__before-after-slider {
  position: relative;
  width: 100%;
  max-width: 636px;
  overflow: hidden;
  user-select: none;
}
.hero__before-after-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__before-image, .hero__after-image {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__before-image .--mob, .hero__after-image .--mob {
  display: none;
}
.hero__after-image {
  position: absolute;
  clip-path: inset(0 50% 0 0);
}
.hero__slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, white 50%, transparent 100%);
  cursor: ew-resize;
  transform: translateX(-50%);
  z-index: 10;
}
.hero__slider-handle::before {
  content: "";
  position: absolute;
  top: 70%;
  left: 50%;
  width: 56px;
  height: 56px;
  background-color: #fff;
  background-image: url("../images/icons/before-after-icon.svg");
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hero-services .wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hero-services__item {
  position: relative;
}
.hero-services__item-icon {
  position: absolute;
  top: 16px;
  right: 13px;
  width: 56px;
  height: 56px;
  background-color: #fff;
  padding: 16px;
  border-radius: 50%;
}
.hero-services__item-title {
  color: #242424;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4; /* 140% */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 36px 30px;
}

.implant-teeth {
  margin-bottom: 150px;
}
.implant-teeth__wrapper {
  background-color: #eff6ff;
  padding: 100px 111px;
  border-radius: 40px;
}
.implant-teeth__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 380px;
  margin: 0 auto 40px;
}
.implant-teeth__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 8px;
  color: #000;
  text-align: center;
  font-size: 14px;
  line-height: 1.4; /* 142.857% */
}
.implant-teeth__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.implant-teeth__left, .implant-teeth__right {
  width: 50%;
}
.implant-teeth__left {
  padding-right: 45px;
  position: relative;
}
.implant-teeth__right {
  background-color: #fff;
  padding: 20px 50px 30px;
  position: relative;
  margin: 100px auto 50px;
}
.implant-teeth__right:before, .implant-teeth__right:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url("../images/implant-teeth-top-figure.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.implant-teeth__right:before {
  top: -49px;
}
.implant-teeth__right:after {
  bottom: -49px;
  transform: rotate(180deg);
}
.implant-teeth__right-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 52px;
  text-align: center;
}
.implant-teeth__right-implat-list {
  min-height: 204px;
  padding-bottom: 30px;
}
.implant-teeth__right-implat-list.--empty {
  display: flex;
  align-items: center;
  justify-content: center;
}
.implant-teeth__right-implat-list.--empty .implant-teeth__right-implat-list-item {
  opacity: 0.3;
}
.implant-teeth__right-implat-list-item {
  display: flex;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5; /* 150% */
}
.implant-teeth__right-implat-list-item:last-child {
  margin-bottom: 0;
}
.implant-teeth__right-implat-list-item img {
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.implant-teeth__right-implat-list-item span {
  padding-top: 4px;
  display: inline-block;
}
.implant-teeth__right-btn {
  width: 100%;
}
.implant-teeth__model {
  width: 333px;
  margin: 0 auto;
  position: relative;
}
.implant-teeth__model-dots, .implant-teeth__model-blue-teeth {
  position: absolute;
  top: 0;
  left: 0;
}
.implant-teeth__model-blue-teeth path {
  opacity: 0;
}
.implant-teeth__model-blue-teeth path.active {
  opacity: 1;
}
.implant-teeth__model-dots circle:not(.big-dot) {
  pointer-events: none;
}
.implant-teeth__model-dots .big-dot {
  cursor: pointer;
}
.implant-teeth__model-dots .big-dot.active {
  opacity: 0;
}
.implant-teeth__model-dots .big-dot.active + circle {
  opacity: 0;
}
.implant-teeth__popup-btn {
  display: none;
  position: absolute;
  top: -20px;
  left: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #fff;
  align-items: center;
  justify-content: center;
}
.implant-teeth__popup-btn .icon {
  width: 24px;
}
.implant-teeth__popup-btn .num {
  position: absolute;
  top: 8px;
  right: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d90026;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  width: 20px;
  height: 20px;
}
@media (max-width: 730px) {
  .implant-teeth__popup-btn {
    display: flex;
  }
}
.implant-teeth__mob-checkbox {
  position: absolute;
  top: calc(50% + 3px);
  left: 0;
  width: 100%;
}
.implant-teeth__close-popup {
  position: absolute;
  top: 20px;
  right: 20px;
  display: none;
}
.implant-teeth__mob-checkbox {
  display: none;
}

.services {
  padding-bottom: 240px;
  overflow: hidden;
  margin-bottom: 0;
}
.services .ttl-2 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.services__wrap {
  width: 686px;
  height: 686px;
  position: relative;
  margin: 0 auto;
}
.services__bg-image, .services__circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.services__circle {
  border-radius: 50%;
  border: 1px solid #ECECEC;
}
.services__bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("../images/services/Diseno-de-sonrisa.webp");
  transition: all 0.5s;
}
.services__items.--6-items .services__item {
  left: auto;
  right: auto;
}
.services__items.--6-items .services__item.--1 .services__item-main, .services__items.--6-items .services__item.--2 .services__item-main, .services__items.--6-items .services__item.--3 .services__item-main {
  background-image: url("../images/services-label-right.svg");
}
.services__items.--6-items .services__item.--4 .services__item-main, .services__items.--6-items .services__item.--5 .services__item-main, .services__items.--6-items .services__item.--6 .services__item-main {
  background-image: url("../images/services-label-left.svg");
  flex-direction: row-reverse;
}
.services__items.--6-items .services__item.--1 {
  top: 60px;
  right: -81px;
}
.services__items.--6-items .services__item.--2 {
  top: 315px;
  right: -167px;
}
.services__items.--6-items .services__item.--3 {
  top: 580px;
  right: -81px;
}
.services__items.--6-items .services__item.--4 {
  top: 580px;
  left: -81px;
}
.services__items.--6-items .services__item.--5 {
  top: 315px;
  left: -167px;
}
.services__items.--6-items .services__item.--6 {
  top: 60px;
  left: -81px;
}
.services__items:not(.--6-items) .services__item.--6 .services__item-main {
  background-image: url("../images/services-label-bot.svg");
  width: 190px;
  height: 124px;
  flex-direction: column;
  gap: 12px;
}
.services__items:not(.--6-items) .services__item.--6 .services__item-main-title {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services__item {
  position: absolute;
}
.services__item.--1 .services__item-main, .services__item.--2 .services__item-main, .services__item.--3 .services__item-main, .services__item.--4 .services__item-main, .services__item.--5 .services__item-main {
  background-image: url("../images/services-label-right.svg");
}
.services__item.--7 .services__item-main, .services__item.--8 .services__item-main, .services__item.--9 .services__item-main, .services__item.--10 .services__item-main, .services__item.--11 .services__item-main {
  background-image: url("../images/services-label-left.svg");
  flex-direction: row-reverse;
}
.services__item.--1 {
  top: 10px;
  left: 483px;
}
.services__item.--2 {
  top: 148px;
  left: 615px;
}
.services__item.--3 {
  top: 310px;
  left: 659px;
}
.services__item.--4 {
  top: 469px;
  left: 615px;
}
.services__item.--5 {
  top: 604px;
  left: 495px;
}
.services__item.--6 {
  top: 665px;
  left: 250px;
}
.services__item.--7 {
  top: 604px;
  left: -62px;
}
.services__item.--8 {
  top: 469px;
  left: -175px;
}
.services__item.--9 {
  top: 310px;
  left: -217px;
}
.services__item.--10 {
  top: 148px;
  left: -170px;
}
.services__item.--11 {
  top: 10px;
  left: -54px;
}
.services__item.active {
  z-index: 9;
}
.services__item.active .services__item-popup {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}
.services__item-main {
  width: 240px;
  height: 56px;
  display: flex;
  align-items: center;
  background-image: url("../images/services-label-right.svg");
  background-repeat: no-repeat;
  cursor: pointer;
}
.services__item-main-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.services__item-main-icon img {
  width: 32px;
}
.services__item-main-title {
  width: 100%;
  text-align: center;
  color: #242424;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: -0.5px;
}
.services__item-popup {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% + 20px));
  width: 326px;
  background-color: #e1f5f9;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.services__item-popup-title {
  color: #242424;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px; /* 150% */
  letter-spacing: -0.5px;
}
.services__item-popup-description {
  color: #000;
  font-size: 14px;
  line-height: 24px; /* 171.429% */
  letter-spacing: -0.5px;
}
.services__item-popup-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 24px; /* 171.429% */
  letter-spacing: -0.5px;
  transition: all 0.3s;
}
.services__item-popup-btn .icon {
  width: 24px;
  height: 24px;
}
.services__item-popup-btn:hover {
  opacity: 0.5;
}
.services__item-popup-close {
  position: absolute;
  cursor: pointer;
  top: 20px;
  right: 20px;
  background-image: url("../images/icons/close-black-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 24px;
  z-index: 3;
  transition: all 0.3s;
}
.services__item-popup-close:hover {
  opacity: 0.7;
  transform: scale(1.2);
}
.services__mob-info {
  display: none;
}

.blue-banner__wrapper {
  background-color: #EFF6FF;
  border-radius: 40px;
  padding: 92px 100px 96px;
  display: flex;
}
.blue-banner__left {
  width: 60%;
  padding-top: 20px;
  padding-right: 20px;
}
.blue-banner__left-title {
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1; /* 108.333% */
}
.blue-banner__right {
  width: 40%;
}

.photo-gallery {
  max-width: 100vw;
  overflow: hidden;
  padding-bottom: 200px;
}
.photo-gallery.--col3 {
  padding-bottom: 120px;
}
.photo-gallery__h2, .photo-gallery__h3 {
  width: 580px;
  max-width: 100%;
}
.photo-gallery__h2 {
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
}
.photo-gallery__h3 {
  color: #747474;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5; /* 150% */
}
.photo-gallery .wrapper {
  margin-bottom: 120px;
}
.photo-gallery__wrap {
  width: 1580px;
  display: flex;
  gap: 20px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.photo-gallery__wrap.--col3 .photo-gallery__col {
  width: 33.33%;
}
.photo-gallery__wrap.--col3 .photo-gallery__col:nth-child(2) {
  margin-top: -100px;
}
.photo-gallery__col {
  width: 380px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.photo-gallery__col:nth-child(2) {
  margin-top: 56px;
}
.photo-gallery__col:nth-child(3) {
  margin-top: -268px;
}
.photo-gallery__col:nth-child(4) {
  margin-top: -413px;
}
.photo-gallery__item {
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}
.photo-gallery__item.--circle {
  border-radius: 50%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.photo-gallery__item.--circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-gallery__item .play-video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}
.photo-gallery__item .play-video-btn:hover {
  filter: saturate(2);
}

.testimonials {
  overflow: hidden;
  width: 100%;
}
.testimonials .ttl-2 {
  margin-bottom: 60px;
}
.testimonials__slider {
  width: 100%;
}
.testimonials__slider .splide__track {
  overflow: visible;
}
.testimonials .testimonial-card {
  background-color: #e9f8fc;
  border-radius: 40px;
  padding: 40px;
  width: 480px;
}
.testimonials .testimonial-card__text {
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
}
.testimonials .testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonials .testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonials .testimonial-card__avatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.testimonials .testimonial-card__name {
  font-size: 14px;
  font-weight: 500;
}
.testimonials .testimonial-card__stars {
  display: flex;
  gap: 6px;
}
.testimonials .testimonial-card__stars-item {
  width: 16px;
}
.testimonials .video-slide {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  width: 580px;
  height: 380px;
}
.testimonials .video-slide__image {
  width: 100%;
  height: 100%;
  position: relative;
}
.testimonials .video-slide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.testimonials .video-slide__image:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 25%, rgba(255, 255, 255, 0) 100%);
}
.testimonials .video-slide__button {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  cursor: pointer;
  transition: all 0.3s;
}
.testimonials .video-slide__button:hover {
  filter: saturate(2);
}
.testimonials .video-slide__button img {
  width: 100%;
}
.testimonials .video-slide__caption {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  padding: 32px 40px;
  color: #FFF;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.15;
  width: 100%;
}

.our-team {
  max-width: 100vw;
  overflow: hidden;
}
.our-team__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.our-team__top .ttl-2,
.our-team__top .subttl {
  text-align: left;
}
.our-team__top .subttl {
  margin-bottom: 0;
}
.our-team__top-left {
  max-width: 680px;
}
.our-team__top-right .button .icon {
  width: 20px;
}
.our-team__slider {
  width: 100%;
}
.our-team__slider .splide__track {
  overflow: visible;
}
.our-team__slide {
  display: block;
  width: 380px;
  max-width: 100%;
  aspect-ratio: 38/56;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  will-change: transform;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}
.our-team__slide-photo {
  width: 100%;
  height: 100%;
}
.our-team__slide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.our-team__slide-gradient {
  width: 360px;
  height: 360px;
  position: absolute;
  left: -120px;
  bottom: -130px;
  border-radius: 50%;
  background: #E1F5F9;
  filter: blur(50px);
  will-change: transform;
}
.our-team__slide-text {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 36px 40px;
  max-width: 280px;
  will-change: transform;
}
.our-team__slide-name {
  color: #202020;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15; /* 113.333% */
  margin-bottom: 8px;
}
.our-team__slide-position {
  color: #242424;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25; /* 125% */
  text-transform: capitalize;
}
.our-team__btn-mob {
  display: none;
}

.principal__top {
  margin-bottom: 60px;
}
.principal__item-big {
  width: 100%;
  height: 575px;
  border-radius: 40px;
  background-image: url("../images/principal-bg.webp");
  background-size: cover;
  background-position: center;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 20px;
}
.principal__item-big-ttl {
  font-size: 30px;
  line-height: 1.15; /* 113.333% */
  font-weight: 700;
}
.principal__item-big-bot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.principal__item-big-left {
  max-width: 560px;
  padding-right: 30px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2; /* 120% */
}
.principal__item-big-left .icon {
  width: 24px;
  display: inline-block;
  margin-bottom: -3px;
}
.principal__item-big-left .map-link {
  font-weight: 400;
}
.principal__item-big-left .map-link span:not(.icon) {
  text-decoration: underline;
}
.principal__item-big-left .map-link:hover span:not(.icon) {
  text-decoration: none;
}
.principal__item-big-right {
  max-width: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 14px;
  line-height: 1.3;
}
.principal__item-big-right a:hover {
  color: var(--blue);
}
.principal__items {
  visibility: visible;
}
.principal__items .splide__track {
  overflow: visible;
}
.principal__items .splide__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.principal__item {
  border-radius: 40px;
  padding: 30px 40px;
  background-color: #eff6fc;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 283px;
}
.principal__item-ttl {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}
.principal__item-contacts {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.principal__item-contacts a {
  font-size: 14px;
  line-height: 1.3;
}
.principal__item-contacts a:hover {
  color: var(--blue);
}
.principal__item-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7; /* 171.429% */
  letter-spacing: -0.5px;
  text-decoration: underline;
}
.principal__item-link:hover {
  text-decoration: none;
}
.principal__item-link .icon {
  width: 24px;
  display: inline-block;
  margin-right: 6px;
}
.principal .splide__slide:nth-child(7n-5) .principal__item, .principal .splide__slide:nth-child(7n-3) .principal__item {
  background-color: #dee0f7;
}
.principal .splide__slide:nth-child(5n-2) .principal__item, .principal .splide__slide:nth-child(5n) .principal__item {
  background-color: #E1F5F9;
}

.fancybox__slide .f-button[data-fancybox-close] {
  right: -10px;
  top: -10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #565656;
  background-image: url("../images/icons/close-light-grey.svg");
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
}
@media (max-width: 1080px) {
  .fancybox__slide .f-button[data-fancybox-close] {
    right: 0;
    top: -16px;
  }
}
.fancybox__slide .f-button[data-fancybox-close]:hover {
  background-color: #333;
}
.fancybox__slide .f-button[data-fancybox-close] svg {
  display: none;
}

.fixed-btns {
  position: fixed;
  right: 44px;
  bottom: 44px;
  z-index: 9;
  display: flex;
  gap: 12px;
}
.fixed-btns__item {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
.fixed-btns__item img {
  width: 24px;
}
.fixed-btns__item.--whatsapp {
  background-color: #39ae41;
}
.fixed-btns__item.--whatsapp:hover {
  background-color: #57CC5F;
}
.fixed-btns__item.--chat {
  background-color: #39bed9;
}
.fixed-btns__item.--chat:hover {
  background-color: #57DCF7;
}

.grecaptcha-badge {
  display: none;
}

@media (max-width: 1370px) {
  .splide__arrow--next {
    right: 20px;
  }
  .splide__arrow--prev {
    left: 20px;
  }
}
@media (max-width: 1200px) {
  main {
    padding-top: 88px;
  }
  .hero {
    padding-top: 30px;
    margin-bottom: 80px;
  }
  .hero__title {
    font-size: 76px;
  }
  .hero-services__item-bg svg {
    height: auto;
  }
  .hero-services__item-title {
    padding: 20px;
    font-size: 18px;
  }
  .hero-services__item-icon {
    top: 10px;
    right: 10px;
    width: 46px;
    height: 46px;
    padding: 12px;
  }
  .implant-teeth {
    margin-bottom: 100px;
  }
  .implant-teeth__wrapper {
    padding: 100px 50px;
  }
  .services {
    padding-bottom: 80px;
  }
  .services__wrap {
    transform: scale(0.75);
  }
  .services__wrap-anim {
    margin: -60px auto 0;
  }
  .blue-banner__wrapper {
    padding: 80px 60px;
  }
  .photo-gallery {
    padding-bottom: 250px;
  }
  .photo-gallery .wrapper {
    margin-bottom: 40px;
  }
  .photo-gallery__wrap {
    width: 1100px;
  }
  .photo-gallery__h2, .photo-gallery__h3 {
    max-width: 50%;
    padding-right: 20px;
  }
  .testimonials .testimonial-card__text {
    font-size: 26px;
  }
  .our-team__top-left {
    padding-right: 20px;
  }
  .our-team__slide-text {
    padding: 24px;
  }
  .our-team__slide-name {
    font-size: 28px;
  }
}
@media (max-width: 920px) {
  main {
    padding-top: 84px;
  }
  .hero__title {
    font-size: 60px;
  }
  .hero__left {
    padding-top: 70px;
  }
  .hero-services__item-title {
    font-size: 16px;
    padding: 16px;
  }
  .hero-services .wrapper {
    gap: 10px;
  }
  .implant-teeth {
    margin-bottom: 80px;
  }
  .implant-teeth__wrapper {
    padding: 60px 30px;
  }
  .implant-teeth__right {
    padding: 20px 30px;
  }
  .photo-gallery__item .play-video-btn {
    width: 60px;
  }
  .services__wrap {
    transform: scale(0.65);
    aspect-ratio: 100/65;
  }
  .services__wrap-anim {
    margin: -80px auto;
  }
  .blue-banner__wrapper {
    padding: 60px 40px;
  }
  .blue-banner__left-title {
    font-size: 38px;
  }
  .photo-gallery__h2 {
    font-size: 42px;
  }
  .our-team__slide {
    width: 100%;
  }
  .principal__items .splide__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero__reviews-photos {
    /*width: 120px;*/
    height: 40px;
  }
}
@media (max-width: 820px) {
  .implant-teeth__model {
    width: 300px;
  }
  .photo-gallery__h3 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .hero .wrapper {
    flex-direction: column-reverse;
  }
  .hero__title {
    text-align: center;
  }
  .hero__right {
    max-width: 550px;
    margin: 0 auto;
  }
  .hero__left {
    max-width: 450px;
    margin: 0 auto;
    padding-top: 40px;
  }
  .hero__cta:not(.hero__cta-clone) {
    width: 340px;
    max-width: 100%;
  }
  .hero__cta-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }
  .hero__reviews-photos {
    height: 42px;
  }
  .hero__reviews:not(.hero-inner__reviews) {
    justify-content: center;
  }
  .hero-services .wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-services__item {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 30px;
    border-radius: 20px;
  }
  .hero-services__item-bg {
    display: none;
  }
  .hero-services__item:nth-child(1) {
    background-color: #E0EDF9;
  }
  .hero-services__item:nth-child(2) {
    background-color: #DEE0F7;
  }
  .hero-services__item:nth-child(3) {
    background-color: #E1F5F9;
  }
  .hero-services__item:nth-child(4) {
    background-color: #EFF6FF;
  }
  .hero-services__item-icon, .hero-services__item-title {
    position: static;
  }
  .hero-services__item-icon {
    width: 56px;
    height: 56px;
    padding: 16px;
    flex-shrink: 0;
  }
  .hero-services__item-title {
    padding: 0;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.5px;
    padding-right: 10px;
  }
  .services__wrap {
    transform: scale(1);
    aspect-ratio: auto;
    width: 450px;
    height: 450px;
    margin-bottom: 50px;
  }
  .services__wrap-anim {
    margin: 0 auto;
  }
  .services__item {
    border-radius: 50%;
  }
  .services__item.active .services__item-main-icon {
    transform: rotate(45deg);
    background-color: var(--blue);
  }
  .services__item.--1 {
    left: auto;
    right: 130px;
    top: 0;
  }
  .services__item.--2 {
    left: auto;
    right: 34px;
    top: 67px;
  }
  .services__item.--3 {
    left: auto;
    right: -14px;
    top: 180px;
  }
  .services__item.--4 {
    left: auto;
    right: 6px;
    top: 306px;
  }
  .services__item.--5 {
    left: auto;
    right: 83px;
    top: 395px;
  }
  .services__item.--6 {
    left: 209px;
    right: auto;
    top: 435px;
  }
  .services__item.--6 .services__item-main {
    width: 32px !important;
    height: 32px !important;
    display: block !important;
  }
  .services__item.--6 .services__item-main-title {
    display: none !important;
  }
  .services__item.--7 {
    left: 83px;
    top: 395px;
  }
  .services__item.--8 {
    left: 6px;
    top: 306px;
  }
  .services__item.--9 {
    left: -14px;
    top: 180px;
  }
  .services__item.--10 {
    left: 34px;
    top: 67px;
  }
  .services__item.--11 {
    left: 130px;
    top: 0;
  }
  .services__item .services__item-popup {
    display: none;
  }
  .services__item-main {
    width: 32px;
    height: 32px;
    background-image: none !important;
  }
  .services__item-main-title {
    display: none;
  }
  .services__item-main-icon {
    width: 100%;
    height: 100%;
    background-image: url("../images/icons/plus-white.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-color: #000;
    border-radius: 50%;
    transition: all 0.3s;
  }
  .services__item-main-icon img {
    display: none;
  }
  .services__mob-info {
    display: block;
    max-width: 450px;
    margin: 0 auto;
  }
  .services__mob-info-ttl {
    margin-bottom: 14px;
    border-radius: 60px;
    background-color: #f5f5f5;
    padding: 10px;
    color: #242424;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 2; /* 200% */
  }
  .services__mob-info-descr {
    background-color: #e1f5f9;
    padding: 20px;
    border-radius: 20px;
  }
  .services__mob-info-descr .services__item-popup-description {
    margin-bottom: 10px;
  }
  .blue-banner__wrapper {
    flex-direction: column-reverse;
  }
  .blue-banner__left, .blue-banner__right {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
  }
  .blue-banner__left-title {
    max-width: 520px;
    margin-bottom: 15px;
  }
  .blue-banner__right {
    margin-bottom: 15px;
  }
  .blue-banner__image {
    width: 230px;
  }
  .photo-gallery {
    padding-bottom: 280px;
    margin-bottom: 0;
  }
  .photo-gallery .wrapper {
    margin-bottom: 50px;
  }
  .photo-gallery .play-video-btn {
    width: 48px;
  }
  .photo-gallery__h2, .photo-gallery__h3 {
    max-width: 100%;
  }
  .photo-gallery__wrap {
    width: 760px;
    gap: 10px;
  }
  .photo-gallery__item {
    border-radius: 20px;
  }
  .photo-gallery__col {
    gap: 10px;
  }
  .photo-gallery__col:nth-child(2) {
    margin-top: -50px;
  }
  .photo-gallery__col:nth-child(3) {
    margin-top: -20px;
  }
  .photo-gallery__col:nth-child(4) {
    margin-top: -120px;
  }
  .testimonials .testimonial-card {
    width: 335px;
    padding: 20px;
    border-radius: 20px;
  }
  .testimonials .testimonial-card__text {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.25;
  }
  .testimonials .video-slide {
    width: 335px;
    height: auto;
    aspect-ratio: 58/38;
    border-radius: 20px;
  }
  .testimonials .video-slide__caption {
    font-size: 20px;
    padding: 20px;
  }
  .testimonials .video-slide__button {
    width: 48px;
  }
  .testimonials__slider {
    padding-bottom: 28px;
  }
  .splide__pagination {
    bottom: 0px;
    gap: 8px;
  }
  .splide__pagination__page {
    margin: 0;
    opacity: 1;
    width: 8px;
    height: 8px;
    background-color: #e1e1e1;
  }
  .splide__pagination__page.is-active {
    background-color: var(--blue);
    transform: scale(1);
  }
  .our-team__top {
    flex-wrap: wrap;
  }
  .our-team__top-left {
    max-width: 100%;
  }
  .our-team__top-right .button {
    display: none;
  }
  .our-team__btn-mob {
    display: flex;
    justify-content: center;
  }
  .our-team__btn-mob .button {
    width: 350px;
    max-width: 100%;
  }
  .our-team__slide {
    border-radius: 20px;
  }
  .our-team__slider {
    padding-bottom: 28px;
    margin-bottom: 30px;
  }
  .principal__top {
    margin-bottom: 40px;
  }
  .principal__item {
    border-radius: 20px;
  }
  .principal__item-big {
    border-radius: 20px;
  }
  .principal__item-big-bot {
    flex-wrap: wrap;
  }
  .principal__item-big-left {
    padding-right: 0;
    margin-bottom: 50px;
  }
  .principal__item-big-right {
    max-width: 100%;
  }
  .fixed-btns {
    right: 20px;
    bottom: 20px;
    flex-direction: column;
  }
  .services__items.--6-items .services__item.--1 {
    top: 93px;
    right: -5px;
  }
  .services__items.--6-items .services__item.--2 {
    top: 183px;
    right: 16px;
  }
  .services__items.--6-items .services__item.--3 {
    top: 236px;
    right: 102px;
  }
  .services__items.--6-items .services__item.--4 {
    top: 236px;
    left: 102px;
  }
  .services__items.--6-items .services__item.--5 {
    top: 183px;
    left: 16px;
  }
  .services__items.--6-items .services__item.--6 {
    top: 93px;
    left: -5px;
  }
}
@media (max-width: 730px) {
  .implant-teeth {
    margin-bottom: 80px;
  }
  .implant-teeth__main {
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  .implant-teeth__left {
    padding-right: 0;
    margin-bottom: 40px;
    width: auto;
  }
  .implant-teeth__right {
    position: absolute;
    top: -20px;
    left: calc(50% - 220px);
    width: 440px;
    margin: 0;
    padding: 60px 20px 20px;
    border-radius: 20px;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(20px) !important;
    transition: all 0.3s ease-in-out !important;
    transition-delay: 0s !important;
  }
  .implant-teeth__right.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }
  .implant-teeth__right:before, .implant-teeth__right:after,
  .implant-teeth__right .implant-teeth__right-checkbox {
    display: none;
  }
  .implant-teeth__close-popup, .implant-teeth__mob-checkbox {
    display: block;
  }
}
@media (max-width: 580px) {
  .hero {
    padding-top: 0;
    margin-bottom: 60px;
  }
  .hero__right, .hero__left {
    max-width: 100%;
  }
  .hero__left {
    padding-top: 20px;
  }
  .hero__title {
    font-size: 48px;
  }
  .hero__cta-buttons {
    width: 280px;
  }
  .hero .hero__before-image img,
  .hero .hero__after-image img {
    display: none;
  }
  .hero .hero__before-image img.--mob,
  .hero .hero__after-image img.--mob {
    display: block;
  }
  .hero__slider-handle::before {
    top: 82%;
  }
  .hero-services .wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .principal {
    margin-bottom: 80px;
  }
  .principal__items {
    max-width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 0 20px;
    overflow: hidden;
  }
  .principal__items--slider {
    padding-bottom: 28px;
  }
  .principal__items .splide__list {
    display: flex;
    gap: 0;
  }
  .principal__item-big {
    padding: 40px 20px 35px;
    height: auto;
    position: relative;
    overflow: hidden;
  }
  .principal__item-big-ttl {
    margin-bottom: 75px;
  }
  .principal__item-big-ttl, .principal__item-big-bot {
    position: relative;
    z-index: 3;
  }
  .principal__item-big:before {
    content: "";
    display: block;
    width: 450px;
    height: 450px;
    position: absolute;
    left: -80px;
    bottom: -50px;
    border-radius: 50%;
    background: #E1F5F9;
    filter: blur(50px);
    will-change: transform;
  }
  .implant-teeth .wrapper {
    padding: 0;
  }
  .implant-teeth__wrapper {
    padding: 60px 20px;
    border-radius: 20px;
  }
  .implant-teeth .ttl-2 {
    max-width: 280px;
    margin: 0 auto 20px;
  }
  .implant-teeth__item {
    padding: 0 2px;
  }
  .implant-teeth__right {
    max-width: 100%;
    width: 100%;
    left: 0;
  }
  .implant-teeth__right-title {
    margin-bottom: 30px;
    font-size: 20px;
    text-align: center;
  }
  .implant-teeth__right-implat-list {
    min-height: 140px;
  }
  .services__wrap {
    width: 326px;
    height: 326px;
  }
  .services__circle {
    -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0));
    mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0));
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
  .services__item.--1 {
    top: 3px;
    right: 65px;
  }
  .services__item.--2 {
    top: 65px;
    right: 5px;
  }
  .services__item.--3 {
    top: 140px;
    right: -5px;
  }
  .services__item.--4 {
    top: 211px;
    right: 15px;
  }
  .services__item.--5 {
    top: 274px;
    right: 75px;
  }
  .services__item.--6 {
    top: 294px;
    left: 147px;
  }
  .services__item.--7 {
    top: 274px;
    left: 75px;
  }
  .services__item.--8 {
    top: 211px;
    left: 15px;
  }
  .services__item.--9 {
    top: 140px;
    left: -5px;
  }
  .services__item.--10 {
    top: 65px;
    left: 5px;
  }
  .services__item.--11 {
    top: 3px;
    left: 65px;
  }
  .blue-banner {
    margin-bottom: 80px;
  }
  .blue-banner__wrapper {
    position: relative;
    border-radius: 0;
    padding: 10px 20px 30px;
  }
  .blue-banner__wrapper:before, .blue-banner__wrapper:after {
    content: "";
    width: 100%;
    height: 30px;
    position: absolute;
    left: 0;
    background-image: url("../images/blue-top-figure-mob.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .blue-banner__wrapper:before {
    top: -30px;
  }
  .blue-banner__wrapper:after {
    bottom: -30px;
    transform: rotate(180deg);
  }
  .blue-banner__image {
    width: 140px;
  }
  .blue-banner__left-title {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 13px;
  }
  .photo-gallery {
    padding-bottom: 140px;
  }
  .photo-gallery__h2 {
    font-size: 32px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25; /* 125% */
    padding-right: 0;
  }
  .photo-gallery__h3 {
    padding-right: 0;
    font-size: 16px;
    line-height: 1.5;
  }
  .photo-gallery__wrap {
    width: 470px;
  }
  .photo-gallery__col:nth-child(4) {
    display: none;
  }
  .testimonials .ttl-2 {
    margin-bottom: 40px;
  }
  .our-team__top {
    margin-bottom: 40px;
  }
  .our-team__top-left {
    padding-right: 0;
  }
}
@media (max-width: 374px) {
  .services__wrap {
    transform: translateX(-50%) scale(0.9);
    margin-bottom: 20px;
    left: 50%;
  }
}
.our-team-block__slider {
  visibility: visible;
}
.our-team-block__slider.splide.is-initialized:not(.is-active) .splide__list {
  display: grid;
}
.our-team-block__slider .splide__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.our-team-block .our-team__slide {
  width: auto;
  display: block;
}

@media (max-width: 920px) {
  .our-team-block__slider .splide__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .our-team-block .our-team__slide {
    border-radius: 20px;
  }
}
@media (max-width: 580px) {
  .our-team-block__slider {
    padding-bottom: 30px;
  }
  .our-team-block__slider.splide.is-initialized:not(.is-active) .splide__list {
    display: flex;
  }
  .our-team-block__slider .splide__list {
    display: flex;
    gap: 0;
  }
}
.hero-doctor {
  padding-top: 58px;
}
.hero-doctor .ttl-2 {
  text-align: left;
  font-size: 64px;
}
.hero-doctor .subttl {
  text-align: left;
  margin-left: 0;
}
@media (max-width: 720px) {
  .hero-doctor .subttl {
    margin-bottom: 0;
  }
}
.hero-doctor .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.hero-doctor__photo {
  position: relative;
  aspect-ratio: 636/575;
  width: 54%;
  max-width: 636px;
}
@media (max-width: 720px) {
  .hero-doctor__photo {
    width: 100%;
    margin: 0 auto;
  }
}
.hero-doctor__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: url(#doctor-clip);
}
.hero-doctor__photo .svg-mask {
  width: 0;
  height: 0;
}
.hero-doctor__info {
  width: 46%;
  padding-right: 60px;
  padding-top: 38px;
}
@media (max-width: 720px) {
  .hero-doctor__info {
    width: 100%;
    padding: 0;
    margin-bottom: 28px;
  }
}

.doctor-advant__ttl {
  max-width: 380px;
  margin: 0 auto 66px;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15; /* 113.333% */
}
@media (max-width: 580px) {
  .doctor-advant__ttl {
    margin-bottom: 40px;
  }
}
.doctor-advant__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .doctor-advant__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .doctor-advant__items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.doctor-advant__item {
  padding: 30px 40px;
  border-radius: 40px;
  background-color: #eff6ff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 248px;
}
.doctor-advant__item-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #8BBDEC;
  margin-bottom: 20px;
}
.doctor-advant__item-icon img {
  width: auto;
}
.doctor-advant__item-text {
  color: #242424;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4; /* 140% */
  letter-spacing: -0.5px;
}

.doctor-timeline {
  padding-bottom: 30px;
}
.doctor-timeline .ttl-2 {
  margin-bottom: 80px;
}
.doctor-timeline__wrap {
  margin: 0 auto;
  width: 56px;
  position: relative;
}
.doctor-timeline__wrap:before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  background-color: #ececec;
}
.doctor-timeline__item {
  width: 56px;
  height: 56px;
  margin-bottom: 92px;
  position: relative;
  font-size: 16px;
  line-height: 1.25; /* 125% */
  letter-spacing: -0.5px;
}
.doctor-timeline__item:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .doctor-timeline__item:nth-child(2n-1) .doctor-timeline__item-year {
    padding-left: 0;
    padding-right: 44px;
    left: auto;
    right: 0;
    background-image: url("../images/timeline-label-left.svg");
  }
  .doctor-timeline__item:nth-child(2n-1) .doctor-timeline__item-year:after {
    left: auto;
    right: 12px;
  }
  .doctor-timeline__item:nth-child(2n-1) .doctor-timeline__item-description {
    right: auto;
    left: 66px;
  }
}
.doctor-timeline__item-year {
  position: absolute;
  width: 250px;
  height: 56px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 44px;
  color: #242424;
  font-weight: 500;
  border-radius: 30px;
  background-image: url("../images/timeline-label-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.doctor-timeline__item-year:after {
  content: "";
  width: 32px;
  height: 32px;
  left: 12px;
  top: 12px;
  position: absolute;
  background-color: #242424;
  border-radius: 50%;
}
.doctor-timeline__item-description {
  width: 388px;
  border-radius: 20px;
  background: #E1F5F9;
  padding: 20px;
  position: absolute;
  top: 0;
  right: 66px;
}

@media (max-width: 1200px) {
  .doctor-info__block-inner {
    padding: 70px 40px;
  }
}
@media (max-width: 920px) {
  .hero-doctor {
    padding-top: 20px;
  }
  .hero-doctor .ttl-2 {
    font-size: 46px;
  }
  .hero-doctor .subttl {
    font-size: 18px;
  }
  .hero-doctor__info {
    padding-right: 10px;
  }
  .doctor-timeline__item {
    margin-bottom: 110px;
  }
  .doctor-timeline__item-description {
    width: 320px;
  }
}
@media (max-width: 767px) {
  .doctor-timeline__wrap {
    width: 500px;
    max-width: 100%;
  }
  .doctor-timeline__wrap:before {
    left: 28px;
  }
  .doctor-timeline__item {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .doctor-timeline__item-year {
    position: relative;
    margin-bottom: 10px;
    z-index: 3;
    top: 0;
    left: 0;
  }
  .doctor-timeline__item-description {
    position: relative;
    left: 0;
    top: 0;
    margin-left: 48px;
    width: calc(100% - 48px);
  }
  .doctor-timeline__item:last-child .doctor-timeline__item-description {
    position: relative;
  }
  .doctor-timeline__item:last-child .doctor-timeline__item-description:before {
    content: "";
    height: calc(100% + 20px);
    width: 40px;
    background-color: #fff;
    position: absolute;
    left: -40px;
    bottom: 0;
  }
}
@media (max-width: 580px) {
  .hero-doctor .ttl-2 {
    font-size: 40px;
  }
  .doctor-info__block {
    padding: 30px 0;
    margin: 0 -20px;
  }
  .doctor-info__block-item-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
  }
  .doctor-info__block:before, .doctor-info__block:after {
    height: 30px;
  }
}
.blog-hero {
  padding-top: 93px;
}
.blog-hero__title {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
}
.blog-hero__search {
  max-width: 580px;
  margin: 0 auto 60px;
}
.blog-hero__search-form {
  width: 100%;
}
.blog-hero__search-form input {
  width: 100%;
  padding: 0 20px 0 50px;
  border: 1px solid #E1E1E1;
  border-radius: 10px;
  font-size: 16px;
  background-image: url("../images/icons/search-icon.svg");
  background-repeat: no-repeat;
  background-position: left 20px center;
}
.blog-hero__tags-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.blog-hero__tags-link {
  display: inline-flex;
  align-items: center;
  height: 44px;
  gap: 16px;
  padding: 0 12px 0 20px;
  background-color: #EFF6FF;
  border-radius: 30px;
  color: #242424;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-transform: capitalize;
  transition: background-color 0.2s;
}
.blog-hero__tags-link:hover {
  background-color: #dcebff;
}
.blog-hero__tags-link.--active {
  background-color: var(--blue);
  color: #fff;
}
.blog-hero__tags-link.--active path {
  fill: #fff;
}
.blog-hero__tags-link svg {
  width: 24px;
  height: 24px;
}

.blog-recent {
  overflow: hidden;
  width: 100%;
  margin-bottom: 60px;
}
.blog-recent.--search-results .blog-recent__title {
  margin-bottom: 26px;
}
.blog-recent.--nothing-found {
  margin-bottom: 120px;
}
.blog-recent .search-results-info {
  text-align: center;
  color: #747474;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7; /* 171.429% */
}
.blog-recent__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}
.blog-recent .splide__track {
  overflow: visible;
}
.blog-recent__card {
  background: #fff;
  border-radius: 16px;
  transition: transform 0.3s;
}
.blog-recent__card:hover .blog-recent__card-img img {
  transform: scale(1.05);
  transition: all 2s;
}
.blog-recent__card:hover .blog-recent__card-link {
  color: var(--blue);
}
.blog-recent__card:hover .blog-recent__card-link path {
  fill: var(--blue);
}
.blog-recent__card-img {
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 28/18;
  border-radius: 20px;
  overflow: hidden;
}
.blog-recent__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.5s;
  transform: translateZ(0);
}
.blog-recent__card-title {
  margin-bottom: 10px;
  color: #202020;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4; /* 140% */
  text-transform: capitalize;
}
.blog-recent__card-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #242424;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7; /* 171.429% */
  letter-spacing: -0.5px;
  transition: all 0.3s;
}
.blog-recent__card-link svg {
  width: 24px;
  height: 24px;
}

.blog-grid__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 20px;
  margin-bottom: 60px;
}
.blog-grid__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.blog-grid__item.--fullsize {
  grid-column: 1/-1;
}
.blog-grid__item.--fullsize .blog-grid__meta,
.blog-grid__item.--fullsize .blog-grid__title,
.blog-grid__item.--fullsize .blog-grid__excerpt {
  max-width: 880px;
}
.blog-grid__image {
  aspect-ratio: 6/4;
  margin-bottom: 20px;
  border-radius: 40px;
  overflow: hidden;
}
.blog-grid__image:hover img {
  transform: scale(1.05);
  transition: all 2s;
}
.blog-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
  transform: translateZ(0);
  transition: all 0.5s;
}
.blog-grid__meta {
  color: #747474;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 10px;
  display: inline-flex;
  flex-wrap: wrap;
  max-width: 540px;
  gap: 4px 0;
}
.blog-grid__meta .dot {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  position: relative;
}
.blog-grid__meta .dot:before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #d9d9d9;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.blog-grid__title {
  max-width: 540px;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15; /* 116.667% */
  text-transform: capitalize;
}
.blog-grid__title a:hover {
  color: var(--blue);
}
.blog-grid__excerpt {
  max-width: 540px;
  margin-bottom: 20px;
  color: #747474;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5; /* 150% */
}
.blog-grid__readmore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #242424;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7; /* 171.429% */
  letter-spacing: -0.5px;
  transition: all 0.3s;
}
.blog-grid__readmore:hover {
  color: var(--blue);
}
.blog-grid__readmore:hover path {
  fill: var(--blue);
}
.blog-grid__readmore svg {
  width: 24px;
  height: 24px;
}
.blog-grid__loadmore {
  text-align: center;
}

@media (max-width: 920px) {
  .blog-recent__slider {
    padding-right: 40px;
  }
  .blog-grid__image img {
    border-radius: 20px;
  }
  .blog-grid__title {
    font-size: 28px;
  }
  .blog-grid__excerpt {
    font-size: 18px;
  }
  .blog-grid__items {
    gap: 40px 20px;
  }
}
@media (max-width: 767px) {
  .blog-grid__title {
    font-size: 22px;
  }
  .blog-grid__excerpt {
    font-size: 16px;
  }
}
@media (max-width: 580px) {
  .blog-hero {
    padding-top: 0;
    margin-bottom: 60px;
  }
  .blog-hero__title {
    text-align: left;
    font-size: 40px;
    margin-bottom: 20px;
  }
  .blog-hero__search {
    margin-bottom: 30px;
  }
  .blog-recent {
    margin-bottom: 60px;
  }
  .blog-recent__title {
    text-align: left;
  }
  .blog-grid__items {
    grid-template-columns: 1fr;
  }
  .blog-grid__title {
    font-size: 32px;
  }
  .blog-hero__tags-list {
    flex-wrap: nowrap;
    overflow: auto;
    scrollbar-width: none;
    justify-content: flex-start;
    padding: 0 20px;
    margin: 0 -20px;
    scrollbar-width: none;
  }
  .blog-hero__tags-list::-webkit-scrollbar {
    display: none;
  }
  .blog-hero__tags-link {
    white-space: nowrap;
  }
}
.blog-article {
  padding-top: 96px;
}
.blog-article__header {
  text-align: center;
  margin-bottom: 40px;
}
.blog-article__title {
  text-transform: capitalize;
  margin-bottom: 60px;
}
.blog-article__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  color: #747474;
  gap: 6px;
  margin-bottom: 20px;
}
.blog-article__meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #D9D9D9;
}
.blog-article__image {
  max-width: 980px;
  margin: 0 auto 60px;
  aspect-ratio: 98/64;
}
.blog-article__image img {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  display: block;
  object-fit: cover;
}
.blog-article__content {
  max-width: 780px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
}
.blog-article__content p {
  margin-bottom: 20px;
  color: #747474;
}
.blog-article__content p:last-child {
  margin-bottom: 0;
}
.blog-article__content p b,
.blog-article__content p strong {
  font-weight: 600;
}
.blog-article__content a {
  color: var(--blue);
  font-weight: 500;
}
.blog-article__content a:hover {
  color: var(--blue-dark);
}
.blog-article__content h2 {
  margin: 120px 0 40px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15; /* 116.667% */
}
.blog-article__content h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}
.blog-article__content h3:first-child {
  margin-top: 0;
}
.blog-article__content h3:nth-child(2) {
  margin-top: 20px;
}
.blog-article__content ul,
.blog-article__content ol {
  margin: 20px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-article__content ul li,
.blog-article__content ol li {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5; /* 150% */
}
.blog-article__content ol {
  list-style-type: decimal;
  margin-left: 24px;
}
.blog-article__socs {
  width: 50px;
  position: absolute;
  top: 0;
  left: -100px;
}
.blog-article__socs-ttl {
  margin-bottom: 10px;
  color: #C4C4C4;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4; /* 142.857% */
}
.blog-article__socs-item {
  margin-bottom: 8px;
  width: 32px;
  height: 32px;
  display: block;
  transition: all 0.2s;
}
.blog-article__socs-item:hover {
  opacity: 0.7;
}

.blog-article-nav {
  margin-bottom: 100px;
}
.blog-article-nav__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 980px;
  margin: 0 auto;
}
.blog-article-nav__item {
  width: calc(50% - 10px);
}
.blog-article-nav__item:hover .blog-article-nav__image img {
  transform: scale(1.05);
  transition: all 2s;
}
.blog-article-nav__item.--next .blog-article-nav__label {
  justify-content: flex-end;
}
.blog-article-nav__item.--next .blog-article-nav__label .icon {
  transform: rotate(180deg);
}
.blog-article-nav__label {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 8px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5; /* 150% */
  transition: all 0.3s;
}
.blog-article-nav__label svg {
  width: 24px;
  height: 24px;
}
.blog-article-nav__post {
  transition: all 0.3s;
}
.blog-article-nav__image {
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 28/18;
}
.blog-article-nav__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  transition: all 0.5s;
}
.blog-article-nav__title {
  max-width: 400px;
  color: #202020;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4; /* 140% */
  text-transform: capitalize;
}

@media (max-width: 1200px) {
  .blog-article__socs {
    left: -80px;
  }
}
@media (max-width: 980px) {
  .blog-article {
    padding-top: 50px;
  }
  .blog-article__socs {
    position: static;
    margin-top: 30px;
    width: auto;
  }
  .blog-article__socs-list {
    display: flex;
    gap: 8px;
  }
}
@media (max-width: 767px) {
  .blog-article__title {
    font-size: 48px;
    margin-bottom: 26px;
  }
}
@media (max-width: 580px) {
  .blog-article {
    margin-bottom: 60px;
    padding-top: 0;
  }
  .blog-article__title {
    font-size: 40px;
    text-align: left;
    margin-bottom: 20px;
  }
  .blog-article__image {
    margin-bottom: 20px;
  }
  .blog-article__content h2 {
    margin: 60px 0 30px;
    font-size: 36px;
    line-height: 1.25;
  }
  .blog-article__content h3,
  .blog-article__content p {
    font-size: 16px;
  }
  .blog-article__content ol li, .blog-article__content ul li {
    font-size: 16px;
  }
  .blog-article-nav {
    margin-bottom: 80px;
  }
  .blog-article-nav__item {
    width: calc(50% - 7px);
  }
  .blog-article-nav__label {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .blog-article-nav__image {
    border-radius: 10px;
  }
  .blog-article-nav__title {
    font-size: 18px;
  }
}
.features-grid__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px 0;
}
.features-grid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.features-grid__item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid #8BBDEC;
}
.features-grid__item-text {
  max-width: 170px;
  padding: 0 5px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2; /* 120% */
}

@media (max-width: 580px) {
  .features-grid__items {
    gap: 64px 0;
    grid-template-columns: repeat(2, 1fr);
  }
}
.advant-blocks__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.advant-blocks__item {
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #eff6fc;
  padding: 30px 40px;
  min-height: 283px;
}
.advant-blocks__item:nth-child(2n) {
  background-color: #dee0f7;
}
.advant-blocks__item:nth-child(2n+1):not(:nth-child(4n+1)) {
  background-color: #E1F5F9;
}
.advant-blocks__item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.advant-blocks__item-top-text {
  padding-right: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2; /* 120% */
}
.advant-blocks__item-top-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #fff;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.advant-blocks__item-descr {
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 14px;
}
.advant-blocks__item-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7; /* 171.429% */
  letter-spacing: -0.5px;
}
.advant-blocks__item-link svg {
  width: 24px;
  height: 24px;
}

.prices-table__h2 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.prices-table__subttl {
  margin-bottom: 40px;
}
.prices-table__container {
  padding: 50px 0;
}
.prices-table__wrapper {
  padding: 70px 100px;
}
.prices-table__head {
  margin-bottom: 30px;
}
.prices-table__th {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4; /* 140% */
  letter-spacing: -0.5px;
}
.prices-table__tr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #D1D8DE;
}
.prices-table__tr:last-child {
  border-bottom: none;
}
.prices-table__td:nth-child(1), .prices-table__th:nth-child(1) {
  width: 55%;
}
.prices-table__td:nth-child(2), .prices-table__th:nth-child(2) {
  width: 25%;
}
.prices-table__td:nth-child(3), .prices-table__th:nth-child(3) {
  width: 30%;
}
.prices-table__td {
  padding: 10px 0;
}
.prices-table__td:nth-child(1) {
  color: #747474;
  font-size: 16px;
  line-height: 1.5; /* 150% */
  letter-spacing: -0.5px;
  padding-right: 20px;
}
.prices-table__td:nth-child(1) p {
  max-width: 300px;
}
.prices-table__td:nth-child(3) {
  color: #242424;
  line-height: 1.5; /* 150% */
  letter-spacing: -0.5px;
}
.prices-table__td .price-old {
  color: #747474;
  font-size: 14px;
  line-height: 1.3;
  text-decoration-line: line-through;
}
.prices-table__td .price-new {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.company-logos__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.company-logos__item {
  border-radius: 40px;
  border: 1px solid #E1E1E1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 283px;
}
.company-logos__item img {
  max-width: 160px;
}

@media (max-width: 980px) {
  .advant-blocks__items {
    gap: 10px;
  }
  .advant-blocks__item {
    padding: 20px;
    border-radius: 20px;
  }
  .prices-table__wrapper {
    padding: 40px;
  }
  .company-logos__item {
    min-height: 240px;
    border-radius: 20px;
  }
}
@media (max-width: 980px) and (min-width: 768px) {
  .advant-blocks__item-top-icon {
    width: 48px;
    height: 48px;
  }
  .advant-blocks__item-top-icon img {
    width: 28px;
  }
}
@media (max-width: 767px) {
  .advant-blocks__items {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .prices-table__wrapper {
    padding: 10px 20px;
  }
}
@media (max-width: 580px) {
  .prices-table__container {
    margin: 30px 0;
  }
  .prices-table__td:nth-child(1),
  .prices-table__td:nth-child(3),
  .prices-table__th:nth-child(1),
  .prices-table__th:nth-child(3) {
    width: 36%;
  }
  .prices-table__td:nth-child(2),
  .prices-table__th:nth-child(2) {
    width: 28%;
  }
  .company-logos__item {
    min-height: 120px;
  }
  .company-logos__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .company-logos__items img {
    max-width: 108px;
  }
}
.page-404 {
  margin-bottom: 0;
}
.page-404__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 100px);
  padding: 100px 0;
}
@media (max-width: 580px) {
  .page-404__wrap {
    min-height: 60vh;
  }
}
.page-404__img {
  margin-bottom: 60px;
}
.page-404__t1 {
  margin-bottom: 40px;
  color: #747474;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5; /* 150% */
  text-align: center;
}