@import url(../css/base.css);
@import url(../css/fonts.css);
:root {
  --trans: all 0.2s ease-out;
  --color_black: #1d1b16;
  --color_white: #ffffff;
  --color_green1: #829ea1;
  --color_green2: #577b7b;
}

.white-bg .header-container p,
.white-bg .header-container span,
.white-bg .header-container a {
  color: var(--color_green1) !important;
}
.white-bg .header-container .header-logo a .logo {
  background-color: var(--color_green1);
}
.white-bg .header-container .header-logo a .logo-img {
  filter: brightness(0) saturate(100%) invert(60%) sepia(12%) saturate(450%) hue-rotate(160deg) brightness(95%) contrast(94%);
}
.white-bg .header-container .burger .line {
  background-color: var(--color_green2);
}

.header-container {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: transparent;
  padding: 19px 48px;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 63px;
}
.header-container .header-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.header-container .header-logo a .logo {
  width: 67px;
  height: 36px;
  -webkit-mask-image: url("/assets/img/logo.png");
          mask-image: url("/assets/img/logo.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--color_white);
}
.header-container .header-logo a .logo-img {
  width: 67px;
  height: 36px;
  display: block;
  object-fit: contain;
}
.header-container .header-logo a span {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 3%;
  text-align: center;
  color: var(--color_white);
}
.header-container .header-menu {
  margin-left: auto;
}
.header-container .header-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  max-width: 521px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-container .header-lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-container .lang-switcher {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-container .lang-switcher .pll-parent-item a {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: var(--color_white);
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.header-container .lang-switcher .pll-parent-item a:hover {
  opacity: 0.7;
}
.header-container .header-link {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: var(--color_white);
}
.header-container .burger {
  display: none;
  border: none;
  cursor: pointer;
  width: 35.47px;
  margin-left: auto;
  background: transparent;
}
.header-container .burger .line {
  width: 100%;
  height: 3px;
  background-color: var(--color_white);
}
.header-container .burger .line:first-child {
  margin-bottom: 6px;
}

.lang-toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  gap: 12px;
}
.lang-toggle .lang {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: right;
  text-transform: uppercase;
  color: var(--color_white);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.lang-toggle .slider {
  position: relative;
  width: 53.71px;
  height: 27.1px;
  background: var(--color_green2);
  border-radius: 13.55px;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.lang-toggle .slider::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 23.45px;
  height: 22.71px;
  background: #fff;
  border-radius: 13.55px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.lang-toggle input[type=checkbox] {
  display: none;
}

input[type=checkbox]:checked + .slider::before {
  -webkit-transform: translateX(26.26px);
          transform: translateX(26.26px);
}

.header-mobile-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: -100%;
  background: var(--color_white);
  padding: 23px 21px;
  z-index: 999;
  -webkit-transition: var(--trans);
  transition: var(--trans);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-mobile-container .header-close {
  background: transparent;
  border: none;
  cursor: pointer;
  margin-bottom: 43.88px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.header-mobile-container .header-close svg {
  width: 27.12px;
}
.header-mobile-container .header-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7px;
}
.header-mobile-container .header-logo a .logo {
  width: 67px;
  height: 36px;
  -webkit-mask-image: url("/assets/img/logo.png");
          mask-image: url("/assets/img/logo.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--color_green2);
}
.header-mobile-container .header-logo a .logo-img {
  width: 67px;
  height: 36px;
  display: block;
  object-fit: contain;
}
.header-mobile-container .header-logo a span {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 3%;
  text-align: center;
  color: var(--color_green2);
}
.header-mobile-container .header-menu {
  margin-top: 40px;
  margin-bottom: 63px;
}
.header-mobile-container .header-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 63px;
}
.header-mobile-container .header-lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-mobile-container .lang-switcher {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-mobile-container .lang-switcher .pll-parent-item a {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: var(--color_green2);
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.header-mobile-container .lang-switcher .pll-parent-item a:hover {
  opacity: 0.7;
}
.header-mobile-container .header-link {
  font-family: "Inter";
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: var(--color_green2);
}
.header-mobile-container .lang-toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.header-mobile-container .lang-toggle .lang {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: right;
  text-transform: uppercase;
  color: var(--color_green2);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.header-mobile-container .lang-toggle .slider {
  position: relative;
  width: 53.71px;
  height: 27.1px;
  background: var(--color_green2);
  border-radius: 13.55px;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.header-mobile-container .lang-toggle .slider::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 23.45px;
  height: 22.71px;
  background: #fff;
  border-radius: 13.55px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.header-mobile-container .lang-toggle input[type=checkbox] {
  display: none;
}
#langSwitchMobile:checked + .slider::before {
  -webkit-transform: translateX(26.26px);
          transform: translateX(26.26px);
}
.header-mobile-container.active {
  left: 0;
}

footer {
  padding: 20px 50px 0;
}

.footer-container {
  padding: 130px 15px 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 103px 40px;
  border-top: 1px solid var(--color_green2);
}
.footer-container .footer-left .footer-logo {
  margin-bottom: 8px;
}
.footer-container .footer-left .footer-logo img {
  max-width: 457px;
}
.footer-container .footer-left p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 145%;
  letter-spacing: -0.5%;
  vertical-align: middle;
  color: #a1a1a1;
}
.footer-container .footer-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer-container .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  min-width: 130px;
}
.footer-container .footer-links h5 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 145%;
  letter-spacing: -0.5%;
  vertical-align: middle;
  color: var(--color_black);
  margin-bottom: 16px;
}
.footer-container .footer-link {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 145%;
  letter-spacing: -0.5%;
  vertical-align: middle;
  color: #a1a1a1;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.footer-container .footer-bottom {
  width: 100%;
}
.footer-container .footer-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.footer-container .footer-social img {
  height: 24px;
  width: auto;
}

.hero {
  position: relative;
  height: 100svh;
  overflow: hidden;
  clip-path: inset(0);
}
.hero__bg {
  position: fixed;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  will-change: transform;
}
.hero .container_pd {
  height: 100%;
}
.hero__content {
  height: 100%;
  padding-bottom: 154px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-size: 130px;
  line-height: 117%;
  letter-spacing: -4px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--color_white);
}
.hero__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.hero__buttons .btn {
  min-width: 233px;
}
.hero__buttons .btn.primary {
  background-color: var(--color_green2);
  color: var(--color_white);
}
.hero__buttons .btn.secondary {
  backdrop-filter: blur(2px);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.1490196078);
  color: var(--color_white);
  padding: 10px 14px;
  outline: 0.5px solid rgba(254, 254, 229, 0.6705882353);
  outline-offset: -1px;
}

.specialist {
  padding: 50px 0;
}
.specialist .h2_title {
  text-align: center;
  margin-bottom: 30px;
}
.specialist__content {
  padding: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 90px 30px;
}
.specialist__content p {
  max-width: 295px;
}
.specialist__photo {
  overflow: hidden;
  border-radius: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.specialist__photo img {
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 609px;
  height: 100%;
  width: auto;
}

.numbers {
  padding: 100px 0;
}
.numbers__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 140px 40px;
}
.numbers__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.numbers__item .number {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 59px;
  line-height: 117%;
  letter-spacing: -3%;
  text-align: center;
  vertical-align: middle;
  color: var(--color_green1);
}
.numbers__item p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 117%;
  letter-spacing: -3%;
  text-align: center;
  vertical-align: middle;
  color: var(--color_black);
}

.services {
  padding: 50px 0;
}
.services .h2_title {
  text-align: center;
  margin-bottom: 46px;
}
.services .subtitle {
  text-align: center;
  line-height: 145%;
  color: rgba(0, 0, 0, 0.5490196078);
  margin-bottom: 46px;
}
.services__swiper {
  width: 100%;
  overflow: visible !important;
  margin-bottom: 46px;
}
.services .container {
  overflow: hidden;
}
.services .swiper-slide {
  max-width: 500px;
}
.services .swiper-slide:nth-child(odd) .service-card {
  background-color: var(--color_green2);
}
.services .swiper-slide:nth-child(even) .service-card {
  background-color: var(--color_green1);
}
.services .swiper-buttons {
  margin-top: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.services .btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.service-card {
  border-radius: 10px;
  padding: 38.5px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.service-card .h3_title {
  color: var(--color_white);
  margin-bottom: 30px;
  max-width: 380px;
}
.service-card__cost {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: var(--color_white);
}
.service-card__list {
  max-width: 410.5px;
  padding-left: 26px;
}
.service-card__list li {
  list-style-type: disc;
  color: #dbdbdb;
}

.feedback {
  padding: 100px 0;
}
.feedback__swiper {
  width: 100%;
}
.feedback .swiper-buttons {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
}
.feedback .swiper-button-prev,
.feedback .swiper-button-next {
  pointer-events: all;
}
.feedback__slide {
  padding: 0 60px;
}
.feedback__slide .quote-mark img {
  width: 86.71px;
}
.feedback__slide .quote-mark.up {
  margin-bottom: 46px;
}
.feedback__slide .quote-mark.down {
  margin-top: 46px;
  float: right;
}
.feedback__slide__content {
  max-width: 700px;
  margin: 0 auto;
}
.feedback__slide__content h3 {
  font-family: "Inter";
  font-weight: 600;
  font-size: 46px;
  line-height: 120%;
  letter-spacing: -2%;
  text-align: center;
  vertical-align: middle;
  color: var(--color_black);
  margin-bottom: 10px;
}
.feedback__slide__content p {
  max-width: 415px;
  margin: 0 auto;
  text-align: center;
}

.problems {
  background-position: center 20%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.problems h2 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 110%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--color_white);
  margin-bottom: 33.5px;
}
.problems__list {
  max-width: 932px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 46px;
}
.problems__list li {
  padding: 14px 32px;
  border-radius: 30px;
  border: 1px solid var(--color_white);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 110%;
  letter-spacing: -3%;
  text-align: center;
  color: var(--color_white);
  -webkit-transition: var(--trans) !important;
  transition: var(--trans) !important;
}
.problems .btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.videos {
  padding: 50px 0;
}
.videos__list {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}
.videos__swiper {
  overflow: visible !important;
}
.videos .swiper-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.videos .swiper-button-next,
.videos .swiper-button-prev {
  margin-top: 46px;
}
.videos .btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 46px auto 0;
}

.video-card {
  max-width: 255px;
}
.video-card__media {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 30px;
  overflow: hidden;
}
.video-card__preview {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-card .line {
  position: absolute;
  top: 14px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 74%;
  height: 3px;
  background: var(--color_white);
  border-radius: 2px;
  z-index: 2;
}
.video-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  -webkit-transition: var(--trans);
  transition: var(--trans);
  z-index: 1;
}
.video-card .play {
  font-size: 48px;
  color: var(--color_white);
  line-height: 1;
  cursor: pointer;
}
.video-card:hover .video-card__overlay {
  opacity: 1;
}

.certificates {
  padding: 50px 0;
}
.certificates .h2_title {
  text-align: center;
  margin-bottom: 46px;
}
.certificates__swiper {
  width: 100%;
  overflow: visible !important;
}
.certificates__swiper .swiper-wrapper {
  height: 351.5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.certificates__swiper .swiper-slide {
  width: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.certificates__swiper .swiper-slide img {
  max-height: 100%;
  width: auto;
}
.certificates__swiper .swiper-buttons {
  margin-top: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.contact {
  padding: 50px 0;
}
.contact__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 100px 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact .left {
  max-width: 385px;
}
.contact__photo {
  position: relative;
  -webkit-transform: rotate(-4deg);
          transform: rotate(-4deg);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 8px;
  overflow: hidden;
}
.contact__photo .photo {
  position: absolute;
  width: 92%;
  top: 3.8%;
  left: 50%;
  -webkit-transform: translate(-49.3%);
          transform: translate(-49.3%);
}
.contact .h3_title {
  margin-bottom: 30px;
  text-align: left;
}
.contact form {
  max-width: 404px;
}
.contact .input_box {
  margin-bottom: 13px;
}
.contact .btn {
  margin-top: 17px;
}

.frame-photo {
  position: relative;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 8px;
  overflow: hidden;
}
.frame-photo .photo {
  position: absolute;
  width: 92%;
  top: 3.8%;
  left: 50%;
  -webkit-transform: translate(-49.3%);
          transform: translate(-49.3%);
}

.blog {
  padding: 50px 0;
}
.blog .h2_title {
  text-align: center;
  margin-bottom: 46px;
}
.blog__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 46px 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.blog__list li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 min-content;
          flex: 1 1 min-content;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.blog .btn {
  display: block;
  margin: 46px auto 0;
  width: 233px;
}

.blog-card {
  display: block;
  -webkit-transition: var(--trans);
  transition: var(--trans);
  min-width: 287px;
  max-width: 336px;
}
.blog-card__photo {
  overflow: hidden;
  margin-bottom: 32px;
  border-radius: 10px;
}
.blog-card__photo img {
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-card__content h4 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: -2%;
  vertical-align: middle;
  color: var(--color_black);
  margin-bottom: 8px;
}
.blog-card__content p {
  line-height: 145%;
}
.blog-card.big {
  max-width: 411.22px;
}

.about {
  padding: 125px 0 50px;
}
.about h1 {
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 46px;
  line-height: 120%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-align: center;
  text-transform: uppercase;
  color: var(--color_black);
  margin-bottom: 50px;
}
.about .text {
  max-width: 450px;
  margin: 0 auto 50px;
  text-align: center;
}
.about__photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 48px 30px;
}
.about__photos .frame-photo {
  max-width: 354px;
}
.about__photos .frame-photo_1 {
  -webkit-transform: rotate(7.26deg);
          transform: rotate(7.26deg);
}
.about__photos .frame-photo_2 {
  -webkit-transform: rotate(-4.17deg);
          transform: rotate(-4.17deg);
}
.about__photos .frame-photo_3 {
  -webkit-transform: rotate(2.57deg);
          transform: rotate(2.57deg);
}

.blog-hero {
  padding: 90px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.blog-hero h1 {
  font-family: "EB Garamond", serif;
  font-weight: 500;
  font-size: 59px;
  line-height: 117%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: var(--color_white);
}

.service-info {
  padding: 195px 0 120px;
}
.service-info h1 {
  font-family: "Inter";
  font-weight: 700;
  font-size: 64px;
  line-height: 110%;
  letter-spacing: -2.5%;
  vertical-align: middle;
  color: var(--color_black);
  margin-bottom: 80px;
}
.service-info__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px 200px;
}
.service-info__flex .left,
.service-info__flex .right {
  max-width: 500px;
}
.service-info__photo {
  overflow: hidden;
  border-radius: 10px;
  min-width: 351px;
}
.service-info__photo img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.service-info__content {
  max-width: 400px;
}
.service-info__content h2 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
  letter-spacing: -2%;
  vertical-align: middle;
  color: var(--color_black);
  margin-bottom: 24px;
}
.service-info__content .text {
  color: rgba(0, 0, 0, 0.5490196078);
  line-height: 145%;
}

.service-pricing {
  padding: 120px 0;
}
.service-pricing__item {
  max-width: 1040px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1490196078);
  margin: 0 auto;
  padding-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.service-pricing__item:not(:last-child) {
  margin-bottom: 24px;
}
.service-pricing__item h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 120%;
  letter-spacing: -2%;
  vertical-align: middle;
  color: var(--color_black);
  padding-top: 4.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0px 11px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.service-pricing__item .price {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 145%;
  letter-spacing: -0.5%;
  text-align: right;
  vertical-align: middle;
  color: rgba(0, 0, 0, 0.5490196078);
}

.blog-content {
  padding: 155px 0 80px;
}
.blog-content .date {
  line-height: 145%;
  color: rgba(0, 0, 0, 0.5490196078);
  margin-bottom: 32px;
  text-align: center;
}
.blog-content h1 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 110%;
  letter-spacing: -2.5%;
  text-align: center;
  vertical-align: middle;
  color: var(--color_black);
  margin-bottom: 16px;
}
.blog-content .subtitle {
  line-height: 145%;
  color: rgba(0, 0, 0, 0.5490196078);
  margin-bottom: 80px;
  text-align: center;
}
.blog-content__photo {
  overflow: hidden;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 auto 120px;
  max-height: 533px;
  min-width: 375px;
}
.blog-content__photo img {
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-content__text {
  max-width: 800px;
  margin: 0 auto;
}
.blog-content__text h4 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -2%;
  vertical-align: middle;
  color: var(--color_black);
  margin-bottom: 16px;
}
.blog-content__text .text {
  font-weight: 500;
  line-height: 145%;
  color: rgba(0, 0, 0, 0.5490196078);
}
.blog-content__text:not(:last-child) {
  margin-bottom: 48px;
}

.quote {
  padding: 80px 0;
}
.quote__text {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 130%;
  letter-spacing: -2%;
  text-align: center;
  vertical-align: middle;
  max-width: 800px;
  margin: 0 auto 48px;
}
.quote__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.quote__photo {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
}
.quote__photo img {
  -o-object-fit: cover;
     object-fit: cover;
}
.quote__author {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.quote__author .name {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: -1.5%;
  color: var(--color_black);
}
.quote__author .job {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 145%;
  letter-spacing: -0.5%;
  vertical-align: middle;
  color: rgba(0, 0, 0, 0.5490196078);
}

@media (max-width: 1150px) {
  .header-container {
    padding: 19px 32px;
    gap: 40px;
  }
  .header-container .header-menu-list {
    gap: 20px;
  }
}
@media (max-width: 1020px) {
  .header-container {
    padding: 24px 32px;
  }
  .header-container .header-logo,
  .header-container .header-menu,
  .header-container .header-lang {
    display: none;
  }
  .header-container .burger {
    display: block;
  }
  footer {
    padding: 20px 44px 0;
  }
  .footer-container {
    padding: 130px 0 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 45px;
  }
  .footer-container .footer-left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .footer-container .footer-bottom {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer-container .footer-right {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .footer-container .footer-link h5 {
    margin-bottom: 24px;
  }
  .footer-container .footer-socials {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 2px 0;
    margin-bottom: 75px;
    max-width: 450px;
  }
  .footer-container .footer-social img {
    height: 53px;
  }
  .hero__content {
    padding-bottom: 115px;
  }
  .hero h1 {
    font-size: 70px;
  }
  .specialist {
    padding: 50px 0 90px;
  }
  .specialist .h2_title {
    margin-bottom: 120px;
  }
  .specialist__content {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .specialist__content p {
    text-align: center;
  }
  .specialist__photo {
    min-width: 351px;
  }
  .specialist__photo img {
    width: 100%;
    max-height: 550px;
  }
  .numbers {
    padding: 50px 0;
  }
  .numbers__content {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .service-card {
    padding: 50px 32px 60px;
    gap: 30px;
    min-width: 349px;
  }
  .service-card .h3_title {
    margin-bottom: 20px;
  }
  .problems {
    height: unset;
    padding: 90px 0;
    background-position: center;
  }
  .problems h2 {
    margin-bottom: 40px;
  }
  .problems__list .tolong {
    padding: 14px 15px;
  }
  .blog-card.big {
    max-width: 336px;
  }
  .about {
    padding-top: 111px;
  }
  .about .text {
    padding: 0 10px;
    margin-bottom: 64px;
  }
  .about__photos {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .blog-hero {
    padding: 148px 0;
  }
  .service-info {
    padding-top: 111px;
  }
  .service-info h1 {
    margin-bottom: 60px;
    text-align: center;
  }
  .service-info__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .service-pricing {
    padding: 60px 0 100px;
  }
  .service-pricing__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .service-pricing__item h3 {
    padding: 0;
    text-align: center;
  }
  .blog-content {
    padding-top: 141px;
  }
  .blog-content h1 {
    font-size: 40px;
  }
  .blog-content .subtitle {
    margin-bottom: 60px;
  }
  .blog .h2_title.mobile-small {
    font-size: 32px;
  }
}
@media (max-width: 800px) {
  .hero {
    height: 100svh;
  }
  .feedback {
    padding: 100px 0 50px;
  }
  .feedback__swiper {
    overflow: visible !important;
  }
  .feedback .swiper-buttons {
    position: static;
    -webkit-transform: none;
            transform: none;
    margin-top: 60px;
  }
  .feedback__slide {
    padding: 0;
  }
  .feedback__slide .quote-mark.up {
    margin-bottom: 60px;
  }
  .feedback__slide .quote-mark.down {
    margin-top: 60px;
  }
  .feedback__slide__content h3 {
    font-size: 34px;
  }
  .videos__list {
    gap: unset;
  }
  .contact__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact .btn {
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  .quote__text {
    font-size: 24px;
  }
}
@media (max-width: 750px) {
  .blog__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 500px) {
  .numbers__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .services__swiper {
    min-width: 349px;
    margin: 0 -18px 46px;
  }
  .services__swiper .swiper-buttons,
  .videos__swiper .swiper-buttons {
    padding: 0 18px;
  }
  .videos__swiper {
    margin: 0 -18px;
  }
  .blog-content__photo {
    margin: 0 -32px 120px;
  }
}
.preloader {
  --blur: 16px;
  --overlay: rgba(240, 245, 250, 0.9);
  --bar-bg: rgba(130, 158, 161, 0.3);
  --bar-fill: rgba(87, 123, 123, 0.85);
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--overlay);
  backdrop-filter: blur(var(--blur)) saturate(110%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(110%);
  -webkit-transition: opacity 0.6s ease, backdrop-filter 0.6s ease;
  transition: opacity 0.6s ease, backdrop-filter 0.6s ease;
}

.preloader__inner {
  width: min(820px, 88vw);
  height: 100svh !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.preloader__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.preloader__logo p {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--color_green2);
}
.preloader__logo .logo {
  width: 80px;
  height: 43px;
  -webkit-mask-image: url("/assets/img/logo.png");
          mask-image: url("/assets/img/logo.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--color_green2);
}

.preloader__logo img {
  width: 80px;
  height: auto;
  -webkit-filter: invert(1);
          filter: invert(1);
}

.preloader__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.preloader__bar {
  width: min(460px, 78vw);
  height: 6px;
  background: var(--bar-bg);
  position: relative;
  overflow: hidden;
  border-radius: 999px;
}

.preloader__bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: var(--bar-fill);
  -webkit-transform: scaleX(var(--p, 0));
          transform: scaleX(var(--p, 0));
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  will-change: transform;
  border-radius: 999px;
}

.preloader__percent {
  color: var(--color_black);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(16px, 2.8vw, 22px);
  font-weight: 700;
  line-height: 1;
  text-shadow: none;
}

.preloader__status {
  opacity: 0.85;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.14px;
  color: var(--color_black);
}

.preloader--done {
  opacity: 0;
  backdrop-filter: blur(0px) saturate(100%);
  -webkit-backdrop-filter: blur(0px) saturate(100%);
}

.preloader--done::before {
  opacity: 0;
}

/* Mobile */
@media (max-width: 560px) {
  .preloader__inner {
    width: min(420px, 92vw);
    height: min(86vh, 640px);
  }
  .preloader::before {
    inset: 8px;
  }
  .preloader__logo img {
    width: 88px;
  }
  .preloader__bar {
    width: min(300px, 78vw);
  }
}