* {
  padding: 0;
  margin: 0;
  border: none;
}
*,
*::after,
*::before {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
a,
a:link,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
aside,
footer,
header,
main,
nav,
section {
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}
ul,
ul li {
  list-style: none;
}
img {
  vertical-align: top;
}
img,
svg {
  max-width: 100%;
  height: auto;
}
address {
  font-style: normal;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: rgba(0, 0, 0, 0);
}
input::-ms-clear {
  display: none;
}
button,
input[type="submit"] {
  display: inline-block;
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0);
  background: 0 0;
  cursor: pointer;
}
button:active,
button:focus,
input:active,
input:focus {
  outline: 0;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
label {
  cursor: pointer;
}
legend {
  display: block;
}
:root {
  --black-color: #000000;
  --grey-color: #707070;
  --red-color: #f1573d;
  --white-color: #ffffff;
}
body,
html {
  height: 100%;
  font-family: Parkinsans, sans-serif;
  font-weight: 400;
}

body {
  overflow-x: hidden;
}

.wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.wrapper-container {
  flex: 1 1 auto;
}
[class*="__container"] {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
.btn {
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
}
.btn:hover {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.btn-number {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  padding: 5px 15px 5px 5px;
  border-radius: 24px;
  transition: 0.3s ease-in-out;
}
.btn-number:hover {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.btn-number a,
.btn-number span {
  color: var(--black-color);
  font-size: 14px;
  font-weight: 500;
}
.btn-number__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 100%;
  min-width: 38px;
  border-radius: 100px;
  padding: 9px;
  font-size: 16px;
  background-color: #003153;
  position: relative;
}
.btn-number__icon * {
  color: var(--white-color);
}
.btn-contact {
  background: linear-gradient(135deg, #0d2338, #193c56);
  color: var(--white-color);
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.btn-contact2 {
  color: var(--black-color);
  border-radius: 24px;
  border: 1px solid #4d5a89;
  background-color: #9fb8cf;
}
.btn-learn-more {
  background-color: #fff;
  transition: 0.3s ease-in-out;
  font-size: 14px;
  font-weight: 500;
  border-radius: 24px;
  line-height: 18px;
  color: var(--black-color);
}
.btn-learn-more:hover {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.leaf {
  --translateY: 0px;
  --rotate: 0deg;
  -webkit-transform: translateY(var(--translateY)) rotate(var(--rotate));
  transform: translateY(var(--translateY)) rotate(var(--rotate));
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition:
    transform 0.1s linear,
    -webkit-transform 0.1s linear;
  will-change: transform;
  z-index: 9;
}
p,
span {
  font-family: Outfit, sans-serif;
}
.floating-whatsapp {
  position: fixed;
  right: 30px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 9999;
}
.floating-whatsapp .floating-whatsapp__btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  border: 1px solid #4d5a89;
  background-color: #4d5a89;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  -webkit-transform: translateY(20px) scale(0.8);
  transform: translateY(20px) scale(0.8);
  transition:
    all 0.5s ease,
    -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    all 0.5s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    all 0.5s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.floating-whatsapp .floating-whatsapp__btn:hover i {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}
.floating-whatsapp .floating-whatsapp__btn img {
  width: 23px;
  height: 23px;
}
.floating-whatsapp .floating-whatsapp__btn i {
  color: #fff;
  font-size: 25px;
  transition: all 0.2s ease-in-out;
}
.floating-whatsapp .floating-whatsapp__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(0, 49, 83, 0.35);
  z-index: -1;
  opacity: 0;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.floating-whatsapp .floating-whatsapp__close {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: #f2f2f7;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  -webkit-transform: translateY(25px);
  transform: translateY(25px);
  transition: all 0.4s ease ease;
  z-index: 999;
  pointer-events: none;
}
.floating-whatsapp .floating-whatsapp__close img {
  width: 16px;
  height: 16px;
}
.floating-whatsapp.show .floating-whatsapp__btn {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  pointer-events: auto;
  -webkit-animation: bounce 0.75s ease 0.15s;
  animation: bounce 0.75s ease 0.15s;
}
.floating-whatsapp.show .floating-whatsapp__btn::before {
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
  opacity: 1;
}
.floating-whatsapp.show .floating-whatsapp__close {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 2s;
}
.floating-whatsapp.show .floating-whatsapp__close:hover {
  width: 28px;
  height: 28px;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.55;
  }
  70% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.55;
  }
  70% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(-14px);
    transform: translateY(-14px);
  }
  45% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  65% {
    -webkit-transform: translateY(-7px);
    transform: translateY(-7px);
  }
  85% {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    -webkit-transform: translateY(-14px);
    transform: translateY(-14px);
  }
  45% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  65% {
    -webkit-transform: translateY(-7px);
    transform: translateY(-7px);
  }
  85% {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.before-after-dot,
.reviews-dot {
  display: inline-flex;
  width: 8px;
  height: 8px;
  background: #d5dbe8;
  opacity: 1;
  transition: 0.3s;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 2.5px;
}
.before-after-dot.active,
.reviews-dot.active {
  width: 18px;
  border-radius: 10px;
  background: #4f8ef7;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 0);
  top: var(--swiper-pagination-top, 0);
  left: 0;
  width: 100%;
}
.before-after__next,
.before-after__prev,
.reviews__next,
.reviews__prev {
  transition: 0.3s;
}
.before-after__next.is-disabled,
.before-after__prev.is-disabled,
.reviews__next.is-disabled,
.reviews__prev.is-disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}
.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}
.pages .leafs {
  display: flex;
  justify-content: center;
  height: 150px;
  position: relative;
}
.pages .leafs .leaf-1 {
  position: absolute;
  bottom: 0;
  left: 42%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  width: 90px;
}
.pages .leafs .leaf-2 {
  position: absolute;
  bottom: 40%;
  width: 45px;
  left: 48%;
}
.pages .leafs .leaf-3 {
  position: absolute;
  top: 80%;
  width: 60px;
  left: 52%;
}
.contact-page .contacts.contacts-first {
  padding: 100px 0 0 0;
}
.contact-page .contacts.contacts-first .contacts__top {
  margin-bottom: 0;
}
.faq-page .faq__left {
  position: sticky;
  top: 50px;
}
@font-face {
  font-family: AvenirLTProBlack;
  font-display: swap;
  src: url(../fonts/AvenirLTProBlack.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: GothamPro;
  font-display: swap;
  src: url(../fonts/GothamPro-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: GothamPro;
  font-display: swap;
  src: url(../fonts/GothamPro-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: GothamPro;
  font-display: swap;
  src: url(../fonts/GothamPro-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: icons;
  src: url(../fonts/icons.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
[class*=" _icon-"]::before,
[class^="_icon-"]::before {
  font-family: icons !important;
  speak: never;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
._icon-arrow:before {
  content: "";
  color: #707070;
}
._icon-search:before {
  content: "";
  color: #707070;
}
._icon-close:before {
  content: "";
  color: #707070;
}
._icon-destination:before {
  content: "";
  color: #707070;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    -webkit-transform 0.35s ease;
  transition:
    transform 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;
  transition:
    transform 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    -webkit-transform 0.35s ease;
}
.header.header--hidden {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.header.header--visible {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}
.header__blocks {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.header__left {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header .logo img {
  width: 100px;
  height: 100px;
}
.header .btns {
  display: flex;
  gap: 20px;
}
.menu__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.menu__item {
  position: relative;
}
.menu__item:hover a {
  color: #0a6cb6;
}
.menu__item:hover .menu__dropdown a {
  color: var(--black-color);
}
.menu__item a {
  color: var(--black-color);
  font-size: 16px;
  font-weight: 500;
  font-family: Outfit, sans-serif;
  padding: 0 0 10px 0;
}
.menu__item.current > a {
  color: #0047ab;
}
.menu__item.current > a i {
  color: #0047ab;
}
.menu__item.active .menu__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.3s ease-in-out,
    visibility 0s;
}
.menu__link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu__link i {
  font-size: 13px;
  line-height: 100%;
  height: 9px;
}
.menu__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: #fff;
  border: 1px solid #0047ab;
  border-radius: 16px;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}
.menu__dropdown li {
  position: relative;
  width: 100%;
}
.menu__dropdown li:only-child > a {
  border-radius: 16px;
}
.menu__dropdown li:first-child:not(:only-child) > a {
  border-radius: 16px 16px 0 0;
}
.menu__dropdown li:last-child:not(:only-child) > a {
  border-radius: 0 0 16px 16px;
}
.menu__dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 13px 20px;
  overflow: hidden;
  white-space: nowrap;
  color: var(--black-color);
  font-size: 14px;
  font-weight: 400;
}
.menu__dropdown a i {
  font-size: 12px;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition:
    transform 0.2s ease,
    -webkit-transform 0.2s ease;
}
.menu__dropdown a:hover {
  background: #9fb8cf;
}
.menu__dropdown a:hover i {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}
.menu__item.active > .menu__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.menu__dropdown-item {
  position: relative;
}
.menu .dropdown-right {
  position: absolute;
  top: -1px;
  left: calc(100% + 0px);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: #fff;
  border: 1px solid #0047ab;
  border-radius: 16px;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
  overflow: hidden;
  z-index: 100;
}
.menu .dropdown-right li {
  width: 100%;
}
.menu .dropdown-right li:hover {
  background: #9fb8cf;
}
.menu .dropdown-right a {
  display: block;
  padding: 13px 20px;
  white-space: nowrap;
  color: var(--black-color);
  font-size: 14px;
  font-weight: 400;
}
.menu__dropdown-item:hover > .dropdown-right {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}
.menu-wrapper .logo.show-mob {
  display: none;
}
.open-menu {
  display: none;
}
.close-menu {
  display: none;
}
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
  z-index: 998;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.footer {
  margin: 0 30px 47px 30px !important;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(180deg, #9fb8cf 60%, #fff 100%);
  border-radius: 33px;
  clip-path: polygon(
    32.2492676px 0,
    calc(100% - 29.883191px) 14.1670774px,
    calc(100% - 29.883191px) 14.1670774px,
    calc(100% - 24.96109729px) 14.87537046px,
    calc(100% - 20.31945472px) 16.29591632px,
    calc(100% - 16.01424199px) 18.36886116px,
    calc(100% - 12.1014378px) 21.03435113px,
    calc(100% - 8.63702087px) 24.23253242px,
    calc(100% - 5.67696992px) 27.9035512px,
    calc(100% - 3.27726365px) 31.98755362px,
    calc(100% - 1.49388076px) 36.42468587px,
    calc(100% - 0.38279998px) 41.1550941px,
    100% 46.1189245px,
    100% calc(100% - 32.02092px),
    100% calc(100% - 32.02092px),
    calc(100% - 0.41860061px) calc(100% - 26.8269604px),
    calc(100% - 1.63050344px) calc(100% - 21.89983258px),
    calc(100% - 3.56985995px) calc(100% - 17.30546357px),
    calc(100% - 6.1708216px) calc(100% - 13.10978045px),
    calc(100% - 9.36753988px) calc(100% - 9.37871025px),
    calc(100% - 13.09416624px) calc(100% - 6.17818003px),
    calc(100% - 17.28485217px) calc(100% - 3.57411685px),
    calc(100% - 21.87374912px) calc(100% - 1.63244774px),
    calc(100% - 26.79500858px) calc(100% - 0.41909978px),
    calc(100% - 31.982782px) 100%,
    31.9827822px 100%,
    31.9827822px 100%,
    26.79500879px calc(100% - 0.41909978px),
    21.87374934px calc(100% - 1.63244774px),
    17.28485237px calc(100% - 3.57411685px),
    13.09416641px calc(100% - 6.17818003px),
    9.36754001px calc(100% - 9.37871025px),
    6.1708217px calc(100% - 13.10978045px),
    3.56986001px calc(100% - 17.30546357px),
    1.63050347px calc(100% - 21.89983258px),
    0.41860062px calc(100% - 26.8269604px),
    0 calc(100% - 32.02092px),
    0 32.0209204px,
    0 32.0209204px,
    0.41860062px 26.82696079px,
    1.63050347px 21.89983293px,
    3.56986001px 17.30546389px,
    6.1708217px 13.10978071px,
    9.36754001px 9.37871045px,
    13.09416641px 6.17818017px,
    17.28485237px 3.57411693px,
    21.87374934px 1.63244779px,
    26.79500879px 0.41909979px,
    31.9827822px 0,
    31.9827822px 0,
    32.11152455px 0,
    32.2175794px 0,
    32.30094672px 0,
    32.36162654px 0,
    32.39961884px 0,
    32.41492362px 0,
    32.40754089px 0,
    32.37747064px 0,
    32.32471288px 0,
    32.2492676px 0
  );
}
.footer .leaf-2 {
  position: absolute;
  top: 0;
  width: 35px;
  left: 95%;
}
.footer .leaf-3 {
  position: absolute;
  top: 15%;
  width: 70px;
  left: 110%;
}
.footer__blocks {
  display: flex;
  flex-direction: column;
  gap: 62px;
  padding: 70px 0 86px 0;
}
.footer__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__wrap-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: end;
}
.footer .social__list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer .social__list .social__item {
  min-width: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in-out;
  overflow: hidden;
}
.footer .social__list .social__item:hover {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.footer .social__list .social__item * {
  color: #4c5a89;
  font-weight: 500;
  font-size: 18px;
}

.social__item a {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__top-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
}

.footer__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
}

.footer-menu__list {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  max-width: 420px;
  width: 100%;
  gap: 20px;
  row-gap: 15px;
  margin-top: 30px;
}

.footer-menu__list a {
  color: #0009;
  font-size: 16px;
  font-weight: 500;
  font-family: Outfit, sans-serif;
  transition: color 0.1s ease-in-out;
}

.footer-menu__list a:hover {
  color: #0a6cb6;
}

.footer .section-heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .section-heading p {
  color: #3b4b58;
}
.footer__below {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 600px;
  width: 100%;
}
.footer__below span {
  text-transform: uppercase;
  line-height: 20px;
  font-size: 12px;
}
.footer__below ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.footer__below ul li a {
  font-family: Outfit, sans-serif;
  font-weight: 300;
  line-height: 22px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
}
.footer .btn-number {
  background-color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.main {
  margin-top: 110px;
  padding: 0 20px;
}
.main__container-general {
  max-width: 1540px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 35px;
  padding: 0 20px;
}
.main__container-general::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #9fb8cf;
  content: "";
  z-index: -1;
}
.main .rating {
  position: absolute;
  bottom: -6px;
  right: 0;
}
.main .rating-block {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-40%, -50%);
  transform: translate(-40%, -50%);
  z-index: 9;
}
.main .rating-block .star {
  width: 25px;
  height: 25px;
  min-width: 25px;
}
.main .rating-block__top {
  display: flex;
  align-items: start;
  gap: 10px;
}
.main .rating-block__top * {
  font-family: Outfit, sans-serif;
  font-weight: 400;
  color: var(--black-color);
}
.main .rating-block__top-num {
  display: flex;
  gap: 8px;
  align-items: start;
}
.main .rating-block__top-info {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 5px;
}
.main .rating-block__top-info p {
  line-height: 18px;
  font-size: 13px;
  white-space: nowrap;
}
.main .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.main .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.main__blocks {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 20px 30px 0;
  position: relative;
  min-height: 720px;
}

.main__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: start;
  position: relative;
  width: 50%;
  padding: 70px 45px 50px 45px;
  background-color: #f5f7f8;
  clip-path: polygon(
    32.2492676px 0,
    calc(100% - 29.883191px) 14.1670774px,
    calc(100% - 29.883191px) 14.1670774px,
    calc(100% - 24.96109729px) 14.87537046px,
    calc(100% - 20.31945472px) 16.29591632px,
    calc(100% - 16.01424199px) 18.36886116px,
    calc(100% - 12.1014378px) 21.03435113px,
    calc(100% - 8.63702087px) 24.23253242px,
    calc(100% - 5.67696992px) 27.9035512px,
    calc(100% - 3.27726365px) 31.98755362px,
    calc(100% - 1.49388076px) 36.42468587px,
    calc(100% - 0.38279998px) 41.1550941px,
    100% 46.1189245px,
    100% calc(100% - 32.02092px),
    100% calc(100% - 32.02092px),
    calc(100% - 0.41860061px) calc(100% - 26.8269604px),
    calc(100% - 1.63050344px) calc(100% - 21.89983258px),
    calc(100% - 3.56985995px) calc(100% - 17.30546357px),
    calc(100% - 6.1708216px) calc(100% - 13.10978045px),
    calc(100% - 9.36753988px) calc(100% - 9.37871025px),
    calc(100% - 13.09416624px) calc(100% - 6.17818003px),
    calc(100% - 17.28485217px) calc(100% - 3.57411685px),
    calc(100% - 21.87374912px) calc(100% - 1.63244774px),
    calc(100% - 26.79500858px) calc(100% - 0.41909978px),
    calc(100% - 31.982782px) 100%,
    31.9827822px 100%,
    31.9827822px 100%,
    26.79500879px calc(100% - 0.41909978px),
    21.87374934px calc(100% - 1.63244774px),
    17.28485237px calc(100% - 3.57411685px),
    13.09416641px calc(100% - 6.17818003px),
    9.36754001px calc(100% - 9.37871025px),
    6.1708217px calc(100% - 13.10978045px),
    3.56986001px calc(100% - 17.30546357px),
    1.63050347px calc(100% - 21.89983258px),
    0.41860062px calc(100% - 26.8269604px),
    0 calc(100% - 32.02092px),
    0 32.0209204px,
    0 32.0209204px,
    0.41860062px 26.82696079px,
    1.63050347px 21.89983293px,
    3.56986001px 17.30546389px,
    6.1708217px 13.10978071px,
    9.36754001px 9.37871045px,
    13.09416641px 6.17818017px,
    17.28485237px 3.57411693px,
    21.87374934px 1.63244779px,
    26.79500879px 0.41909979px,
    31.9827822px 0,
    31.9827822px 0,
    32.11152455px 0,
    32.2175794px 0,
    32.30094672px 0,
    32.36162654px 0,
    32.39961884px 0,
    32.41492362px 0,
    32.40754089px 0,
    32.37747064px 0,
    32.32471288px 0,
    32.2492676px 0
  );
}
.main__content-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
  opacity: 0;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
  transition:
    opacity 0.6s ease-out,
    -webkit-transform 0.6s ease-out;
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out,
    -webkit-transform 0.6s ease-out;
}
.main__content-top.active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.main__content-top h1 {
  font-size: 45px;
  line-height: 55px;
  font-weight: 400;
}
.main__content-top p {
  font-size: 17px;
  line-height: 27px;
  color: rgba(0, 0, 0, 0.5);
}
.main .btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.main .btns a {
  min-width: 130px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  text-align: center;
}
.main .benefits {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  row-gap: 25px;
}
.main .benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main .benefits li span {
  font-size: 14px;
  font-family: Outfit, sans-serif;
  font-weight: 400;
}
.main .benefits .circle {
  min-width: 24px;
  width: 24px;
  height: 24px;
  background-color: #9fb8cf;
  display: flex;
  align-items: center;
  border-radius: 15px;
  justify-content: center;
}
.main .benefits .circle i {
  color: #fff;
  font-size: 12px;
}
.main .leaf-1 {
  position: absolute;
  top: 28%;
  left: 48%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 120px;
  rotate: -15deg;
}
.main .leaf-2 {
  position: absolute;
  top: 7%;
  width: 45px;
  left: 48%;
}
.main .leaf-3 {
  position: absolute;
  top: 45%;
  width: 70px;
  left: 55%;
}
.benefits {
  display: flex;
  align-items: center;
  gap: 40px;
}
.benefits li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.benefits li span {
  font-size: 14px;
  font-family: Outfit, sans-serif;
  font-weight: 400;
}
.benefits .circle {
  min-width: 24px;
  width: 24px;
  height: 24px;
  background-color: #9fb8cf;
  display: flex;
  align-items: center;
  border-radius: 15px;
  justify-content: center;
}
.benefits .circle i {
  color: #fff;
  font-size: 12px;
}
.btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.btns a {
  min-width: 130px;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  text-align: center;
}
.how-work {
  padding: 80px 0;
  opacity: 0;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  transition:
    opacity 0.7s ease,
    -webkit-transform 0.7s ease;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    -webkit-transform 0.7s ease;
}
.how-work.active {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.how-work__wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 40px;
  margin-top: 70px;
}
.how-work__item {
  text-align: center;
  opacity: 0;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
  transition:
    opacity 0.8s ease,
    -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.how-work__item.active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.how-work__icon {
  border: 1px solid #0047ab;
  width: 190px;
  height: 190px;
  margin: 0 auto 35px;
  border-radius: 50%;
  background: #adc1d8;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.how-work__icon img {
  max-width: 80px;
  display: block;
}
.how-work__icon .leaf-1 {
  position: absolute;
  top: 5px;
}
.how-work__icon .leaf-2 {
  position: absolute;
  top: 40px;
  right: -8px;
}
.how-work__icon .leaf-3 {
  position: absolute;
  width: 50px;
  top: 50%;
  right: -30px;
}
.how-work__title {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}
.how-work__text {
  max-width: 400px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.5019607843);
}
.how-work__arrow {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 90px;
  opacity: 0;
  transition:
    opacity 0.8s ease,
    -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.how-work__arrow.active {
  opacity: 1;
}
.how-work__arrow svg {
  display: block;
}
.section-heading {
  transition:
    opacity 1s ease,
    -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
}
.section-heading.active {
  opacity: 1;
}
.section-heading-center {
  text-align: center;
}
.section-heading__subtitle {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #264c95;
}
.section-heading .title *,
.section-heading .title p,
.section-heading .title,
.section-heading h1,
.section-heading h2,
.section-heading h3,
.section-heading h4,
.section-heading h5,
.section-heading h6 {
  font-size: 40px !important;
  font-weight: 400 !important;
  line-height: 48px !important;
}
.section-heading h1 {
  font-size: 46px;
  line-height: 55px;
}
.section-heading p {
  line-height: 24px;
  font-size: 16px;
  font-family: Outfit, sans-serif;
}
.services__blocks {
  padding: 80px 0;
}
.about {
  padding: 60px 0 0 0;
  position: relative;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
  transition:
    opacity 0.8s ease,
    -webkit-transform 0.8s ease;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    -webkit-transform 0.8s ease;
}
.about.active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.about .section-heading {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: start;
  margin-bottom: 20px;
}
.about__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  justify-content: space-between;
  align-items: start;
  background-color: #f5f7f8;
  padding: 60px 60px;
  border-radius: 32px;
}
.about__container {
  max-width: 1440px;
}
.about__content {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0;
}
.about__advantages {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 30px 0 0 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
  padding-bottom: 32px;
}
.about__advantage {
  display: flex;
  gap: 14px;
  align-items: center;
}
.about__advantage-icon {
  min-width: 48px;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.about__advantage-icon img {
  width: 25px;
  height: 25px;
}
.about__advantage-content {
  width: 107px;
}
.about__advantage h4 {
  font-size: 16px;
  line-height: 130%;
}
.about__advantage p {
  font-size: 14px;
  color: #6d7682;
  line-height: 1.5;
}
.about__advantage p strong {
  color: #0047ab;
}
.about__text {
  margin: 36px 0 0 0;
}
.about__text p {
  font-size: 16px;
  line-height: 1.8;
  color: #5b6672;
}
.about__text p:not(:last-child) {
  margin-bottom: 18px;
}
.about__gallery {
  position: relative;
}
.about__pictures {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about__pictures .pic {
  position: relative;
  width: 75%;
  aspect-ratio: 4/3;
  overflow: hidden;
  height: 100%;
}
.about__pictures .pic img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about__pictures .pic {
  clip-path: polygon(
    32.2492676px 0,
    calc(100% - 29.883191px) 0.16707739px,
    calc(100% - 29.883191px) 0.16707739px,
    calc(100% - 24.96109729px) 0.87537044px,
    calc(100% - 20.31945472px) 2.29591631px,
    calc(100% - 16.01424199px) 4.36886114px,
    calc(100% - 12.1014378px) 7.03435112px,
    calc(100% - 8.63702087px) 10.23253242px,
    calc(100% - 5.67696992px) 13.90355119px,
    calc(100% - 3.27726365px) 17.98755362px,
    calc(100% - 1.49388076px) 22.42468587px,
    calc(100% - 0.38279998px) 27.1550941px,
    100% 32.1189245px,
    100% calc(100% - 32.02092px),
    100% calc(100% - 32.02092px),
    calc(100% - 0.41860061px) calc(100% - 26.8269604px),
    calc(100% - 1.63050344px) calc(100% - 21.89983258px),
    calc(100% - 3.56985995px) calc(100% - 17.30546357px),
    calc(100% - 6.1708216px) calc(100% - 13.10978045px),
    calc(100% - 9.36753988px) calc(100% - 9.37871025px),
    calc(100% - 13.09416624px) calc(100% - 6.17818003px),
    calc(100% - 17.28485217px) calc(100% - 3.57411685px),
    calc(100% - 21.87374912px) calc(100% - 1.63244774px),
    calc(100% - 26.79500858px) calc(100% - 0.41909978px),
    calc(100% - 31.982782px) 100%,
    31.9827822px calc(100% - 14px),
    31.9827822px calc(100% - 14px),
    26.79500879px calc(100% - 14.41909978px),
    21.87374934px calc(100% - 15.63244774px),
    17.28485237px calc(100% - 17.57411685px),
    13.09416641px calc(100% - 20.17818003px),
    9.36754001px calc(100% - 23.37871025px),
    6.1708217px calc(100% - 27.10978045px),
    3.56986001px calc(100% - 31.30546357px),
    1.63050347px calc(100% - 35.89983258px),
    0.41860062px calc(100% - 40.8269604px),
    0 calc(100% - 46.02092px),
    0 32.0209204px,
    0 32.0209204px,
    0.41860062px 26.82696079px,
    1.63050347px 21.89983293px,
    3.56986001px 17.30546389px,
    6.1708217px 13.10978071px,
    9.36754001px 9.37871045px,
    13.09416641px 6.17818017px,
    17.28485237px 3.57411693px,
    21.87374934px 1.63244779px,
    26.79500879px 0.41909979px,
    31.9827822px 0,
    31.9827822px 0,
    32.11152455px 0,
    32.2175794px 0,
    32.30094672px 0,
    32.36162654px 0,
    32.39961884px 0,
    32.41492362px 0,
    32.40754089px 0,
    32.37747064px 0,
    32.32471288px 0,
    32.2492676px 0
  );
}

.about__pictures .pic:nth-child(odd) {
  align-self: flex-start;
}

.about__pictures .pic:nth-child(even) {
  align-self: flex-end;
}

.about__pictures .pic:nth-child(even) img {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.about__blob {
  position: absolute;
  border-radius: 50%;
  background: #edf7ff;
  -webkit-filter: blur(2px);
  filter: blur(2px);
}
.about__blob--top {
  width: 220px;
  height: 220px;
  top: 40px;
  left: 40px;
}
.about__blob--bottom {
  width: 280px;
  height: 280px;
  right: 0;
  bottom: 30px;
}
.about__card {
  position: absolute;
  left: 20%;
  top: 53%;
  -webkit-transform: translate(-70%, -50%);
  transform: translate(-70%, -50%);
  background: #fff;
  border-radius: 24px;
  padding: 15px 20px;
  display: flex;
  align-items: start;
  gap: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  z-index: 3;
  width: 200px;
}
.about__card h3 {
  font-size: 22px;
  font-weight: 500;
  color: #0a6cb6;
}
.about__card p {
  color: var(--black-color);
  font-size: 11px;
  font-weight: 500;
  line-height: 120%;
}
.about__card-icon img {
  min-width: 25px;
  margin-top: 5px;
}
.about__dots,
.about__sparkle {
  position: absolute;
  z-index: 4;
}
.about__sparkle--1 {
  top: 10px;
  right: 30px;
}
.about__sparkle--2 {
  bottom: 120px;
  left: 30px;
}
.about__dots {
  width: 80px;
  height: 110px;
  background-image: radial-gradient(
    rgba(10, 108, 182, 0.4431372549) 2px,
    transparent 2px
  );
  z-index: 0;
  background-size: 16px 16px;
}
.about__dots--top {
  top: 140px;
  right: -20px;
}
.about__dots--bottom {
  left: 0;
  bottom: 20px;
}
.about__bottom {
  padding-top: 35px;
  position: relative;
}
.about__bottom .arrow-long {
  position: absolute;
  top: 5px;
  right: -100px;
  -webkit-transform: rotate(150deg);
  transform: rotate(150deg);
  opacity: 0.8;
}
.about__stats {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about__stat {
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.about__stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #edf7ff;
  display: grid;
  place-items: center;
}
.about__stat h3 {
  font-size: 28px;
  margin-bottom: 4px;
}
.about__stat p {
  color: #6d7682;
  line-height: 1.5;
}
.why-us {
  position: relative;
  overflow: hidden;
  background: #59659a;
  padding: 140px 0 60px 0;
  margin: 0 20px;
  z-index: 1;
  margin-top: -60px;
  border-radius: 30px;
}
.why-us__container {
  position: relative;
}
.why-us__blocks {
  display: flex;
  flex-direction: column;
  gap: 55px;
}
.why-us .btns {
  display: flex;
  justify-content: center;
  align-items: center;
}
.why-us .btns .btn {
  z-index: 99;
}
.why-us .leaf {
  position: absolute;
}
.why-us .leaf-1 {
  top: 0;
  width: 80px;
  left: 75%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 80px;
}
.why-us .leaf-2 {
  top: 50px;
  width: 160px;
  left: 10%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 160px;
}
.why-us__content {
  display: flex;
  gap: 55px;
  flex-direction: column;
}
.why-us__leaf {
  position: absolute;
  pointer-events: none;
}
.why-us__leaf--left {
  left: 130px;
  top: -20px;
  width: 140px;
}
.why-us__leaf--right {
  right: 120px;
  top: -20px;
  width: 70px;
}
.why-us .section-heading {
  text-align: center;
}
.why-us .section-heading__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
}
.why-us .section-heading .title,
.why-us .section-heading h2,
.why-us .section-heading h3,
.why-us .section-heading h4,
.why-us .section-heading h5,
.why-us .section-heading h6 {
  color: #fff;
  max-width: 760px;
  margin: auto;
  font-weight: 400;
}
/* .why-us__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 70px;
} */

.why-us__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 70px;
}

.why-us__cards .why-card:nth-last-child(2):nth-child(4n + 1) {
  grid-column: 2;
}

.why-us__cards .why-card:last-child:nth-child(4n + 2) {
  grid-column: 3;
}

.why-us__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.why-card {
  background: #9fb8cf;
  border-radius: 34px;
  padding: 40px 20px 32px 20px;
  min-height: auto;
  display: flex;
  flex-direction: column;
  gap: 13px;
  opacity: 0;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
  transition:
    opacity 0.8s ease,
    -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-card__content {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.why-card.active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.why-card.active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.why-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: #fff;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 10px;
}

.why-card__icon i {
  color: #42a6c2;
  font-size: 28px;
  opacity: 0.8;
}

.why-card__icon img {
  opacity: 0.8;
}
.why-card ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.why-card ul li {
  position: relative;
  padding-left: 20px;
}
.why-card ul li:after {
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.6);
}
.why-card h2,
.why-card h3,
.why-card h4,
.why-card h5,
.why-card h6,
.why-card__title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  color: var(--black-color);
}
.why-card li,
.why-card p,
.why-card__text {
  color: rgba(0, 0, 0, 0.65);
  font-size: 16px;
  font-family: Outfit, sans-serif;
  font-weight: 300;
  line-height: 22px;
}
.why-card li strong,
.why-card p strong,
.why-card__text strong {
  font-weight: 500;
}
.contacts__item:nth-child(1),
.contacts__item:nth-child(2),
.why-card:nth-child(1),
.why-card:nth-child(2) {
  clip-path: polygon(
    32.2492676px 0,
    calc(100% - 29.883191px) 14.1670774px,
    calc(100% - 29.883191px) 14.1670774px,
    calc(100% - 24.96109729px) 14.87537046px,
    calc(100% - 20.31945472px) 16.29591632px,
    calc(100% - 16.01424199px) 18.36886116px,
    calc(100% - 12.1014378px) 21.03435113px,
    calc(100% - 8.63702087px) 24.23253242px,
    calc(100% - 5.67696992px) 27.9035512px,
    calc(100% - 3.27726365px) 31.98755362px,
    calc(100% - 1.49388076px) 36.42468587px,
    calc(100% - 0.38279998px) 41.1550941px,
    100% 46.1189245px,
    100% calc(100% - 32.02092px),
    100% calc(100% - 32.02092px),
    calc(100% - 0.41860061px) calc(100% - 26.8269604px),
    calc(100% - 1.63050344px) calc(100% - 21.89983258px),
    calc(100% - 3.56985995px) calc(100% - 17.30546357px),
    calc(100% - 6.1708216px) calc(100% - 13.10978045px),
    calc(100% - 9.36753988px) calc(100% - 9.37871025px),
    calc(100% - 13.09416624px) calc(100% - 6.17818003px),
    calc(100% - 17.28485217px) calc(100% - 3.57411685px),
    calc(100% - 21.87374912px) calc(100% - 1.63244774px),
    calc(100% - 26.79500858px) calc(100% - 0.41909978px),
    calc(100% - 31.982782px) 100%,
    31.9827822px 100%,
    31.9827822px 100%,
    26.79500879px calc(100% - 0.41909978px),
    21.87374934px calc(100% - 1.63244774px),
    17.28485237px calc(100% - 3.57411685px),
    13.09416641px calc(100% - 6.17818003px),
    9.36754001px calc(100% - 9.37871025px),
    6.1708217px calc(100% - 13.10978045px),
    3.56986001px calc(100% - 17.30546357px),
    1.63050347px calc(100% - 21.89983258px),
    0.41860062px calc(100% - 26.8269604px),
    0 calc(100% - 32.02092px),
    0 32.0209204px,
    0 32.0209204px,
    0.41860062px 26.82696079px,
    1.63050347px 21.89983293px,
    3.56986001px 17.30546389px,
    6.1708217px 13.10978071px,
    9.36754001px 9.37871045px,
    13.09416641px 6.17818017px,
    17.28485237px 3.57411693px,
    21.87374934px 1.63244779px,
    26.79500879px 0.41909979px,
    31.9827822px 0,
    31.9827822px 0,
    32.11152455px 0,
    32.2175794px 0,
    32.30094672px 0,
    32.36162654px 0,
    32.39961884px 0,
    32.41492362px 0,
    32.40754089px 0,
    32.37747064px 0,
    32.32471288px 0,
    32.2492676px 0
  );
}
.contacts__item:nth-child(3),
.contacts__item:nth-child(4),
.why-card:nth-child(3),
.why-card:nth-child(4) {
  clip-path: polygon(
    32.2492676px 13.8329226px,
    calc(100% - 29.883191px) 0,
    calc(100% - 29.883191px) 0,
    calc(100% - 24.96109729px) 0.70829306px,
    calc(100% - 20.31945472px) 2.12883892px,
    calc(100% - 16.01424199px) 4.20178375px,
    calc(100% - 12.1014378px) 6.86727374px,
    calc(100% - 8.63702087px) 10.06545503px,
    calc(100% - 5.67696992px) 13.73647382px,
    calc(100% - 3.27726365px) 17.82047625px,
    calc(100% - 1.49388076px) 22.25760852px,
    calc(100% - 0.38279998px) 26.98801678px,
    100% 31.9518472px,
    100% calc(100% - 32.187998px),
    100% calc(100% - 32.187998px),
    calc(100% - 0.41860061px) calc(100% - 26.99403837px),
    calc(100% - 1.63050344px) calc(100% - 22.06691047px),
    calc(100% - 3.56985995px) calc(100% - 17.47254136px),
    calc(100% - 6.1708216px) calc(100% - 13.2768581px),
    calc(100% - 9.36753988px) calc(100% - 9.54578775px),
    calc(100% - 13.09416624px) calc(100% - 6.34525738px),
    calc(100% - 17.28485217px) calc(100% - 3.74119406px),
    calc(100% - 21.87374912px) calc(100% - 1.79952485px),
    calc(100% - 26.79500858px) calc(100% - 0.58617681px),
    calc(100% - 31.982782px) calc(100% - 0.167077px),
    31.9827822px calc(100% - 0.167077px),
    31.9827822px calc(100% - 0.167077px),
    26.79500879px calc(100% - 0.58617681px),
    21.87374934px calc(100% - 1.79952485px),
    17.28485237px calc(100% - 3.74119406px),
    13.09416641px calc(100% - 6.34525738px),
    9.36754001px calc(100% - 9.54578775px),
    6.1708217px calc(100% - 13.2768581px),
    3.56986001px calc(100% - 17.47254136px),
    1.63050347px calc(100% - 22.06691047px),
    0.41860062px calc(100% - 26.99403837px),
    0 calc(100% - 32.187998px),
    0 45.853843px,
    0.41860062px 40.65988339px,
    1.63050347px 35.73275553px,
    3.56986001px 31.13838649px,
    6.1708217px 26.94270331px,
    9.36754001px 23.21163305px,
    13.09416641px 20.01110277px,
    17.28485237px 17.40703953px,
    21.87374934px 15.46537039px,
    26.79500879px 14.25202239px,
    31.9827822px 13.8329226px,
    31.9827822px 13.8329226px,
    32.11152455px 13.8329226px,
    32.2175794px 13.8329226px,
    32.30094672px 13.8329226px,
    32.36162654px 13.8329226px,
    32.39961884px 13.8329226px,
    32.41492362px 13.8329226px,
    32.40754089px 13.8329226px,
    32.37747064px 13.8329226px,
    32.32471288px 13.8329226px,
    32.2492676px 13.8329226px
  );
}
.stat {
  padding: 10px 20px;
}
.stat:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
.stat__number {
  color: #fff;
  font-size: 46px;
  font-weight: 400;
  line-height: 55px;
}
.stat__number span {
  font-size: 0.55em;
}
.stat__text {
  font-family: Outfit, sans-serif;
  color: #fff;
  line-height: 22px;
  font-size: 18px;
  max-width: 250px;
  font-weight: 300;
}
.services-sec__blocks {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 66px 0;
}
.services-sec .section-heading {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  text-align: start;
}
.services-sec__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 60px;
}
.services-sec__item {
  background-color: rgba(0, 0, 0, 0);
  background: linear-gradient(
    135deg,
    #fdeaf2 0,
    #f6e8fa 22%,
    #e9e9fd 48%,
    #d8ebfc 74%,
    #c7e8fb 100%
  );
  padding: 10px 12px 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 32px;
  opacity: 0;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
  transition:
    opacity 0.8s ease,
    -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.services-sec__item.active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.services-sec__pic {
  min-height: 240px !important;
  height: 240px;
  background-color: #fff;
  overflow: hidden;
  clip-path: polygon(
    32.2492676px 0,
    calc(100% - 29.883191px) 0.16707739px,
    calc(100% - 29.883191px) 0.16707739px,
    calc(100% - 24.96109729px) 0.87537044px,
    calc(100% - 20.31945472px) 2.29591631px,
    calc(100% - 16.01424199px) 4.36886114px,
    calc(100% - 12.1014378px) 7.03435112px,
    calc(100% - 8.63702087px) 10.23253242px,
    calc(100% - 5.67696992px) 13.90355119px,
    calc(100% - 3.27726365px) 17.98755362px,
    calc(100% - 1.49388076px) 22.42468587px,
    calc(100% - 0.38279998px) 27.1550941px,
    100% 32.1189245px,
    100% calc(100% - 32.02092px),
    100% calc(100% - 32.02092px),
    calc(100% - 0.41860061px) calc(100% - 26.8269604px),
    calc(100% - 1.63050344px) calc(100% - 21.89983258px),
    calc(100% - 3.56985995px) calc(100% - 17.30546357px),
    calc(100% - 6.1708216px) calc(100% - 13.10978045px),
    calc(100% - 9.36753988px) calc(100% - 9.37871025px),
    calc(100% - 13.09416624px) calc(100% - 6.17818003px),
    calc(100% - 17.28485217px) calc(100% - 3.57411685px),
    calc(100% - 21.87374912px) calc(100% - 1.63244774px),
    calc(100% - 26.79500858px) calc(100% - 0.41909978px),
    calc(100% - 31.982782px) 100%,
    31.9827822px calc(100% - 14px),
    31.9827822px calc(100% - 14px),
    26.79500879px calc(100% - 14.41909978px),
    21.87374934px calc(100% - 15.63244774px),
    17.28485237px calc(100% - 17.57411685px),
    13.09416641px calc(100% - 20.17818003px),
    9.36754001px calc(100% - 23.37871025px),
    6.1708217px calc(100% - 27.10978045px),
    3.56986001px calc(100% - 31.30546357px),
    1.63050347px calc(100% - 35.89983258px),
    0.41860062px calc(100% - 40.8269604px),
    0 calc(100% - 46.02092px),
    0 32.0209204px,
    0 32.0209204px,
    0.41860062px 26.82696079px,
    1.63050347px 21.89983293px,
    3.56986001px 17.30546389px,
    6.1708217px 13.10978071px,
    9.36754001px 9.37871045px,
    13.09416641px 6.17818017px,
    17.28485237px 3.57411693px,
    21.87374934px 1.63244779px,
    26.79500879px 0.41909979px,
    31.9827822px 0,
    31.9827822px 0,
    32.11152455px 0,
    32.2175794px 0,
    32.30094672px 0,
    32.36162654px 0,
    32.39961884px 0,
    32.41492362px 0,
    32.40754089px 0,
    32.37747064px 0,
    32.32471288px 0,
    32.2492676px 0
  );
}
.services-sec__pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.services-sec__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
  height: 100%;
  margin: 0 8px;
}
.services-sec__info-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.services-sec__info-top p {
  font-weight: 400;
  font-size: 14px;
  color: #607281;
  line-height: 22px;
  font-family: Outfit, sans-serif;
}
.services-sec .title {
  font-size: 24px;
  line-height: 32px;
  width: 180px;
}
.services-sec .btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 9px 8px 20px;
}
.services-sec .circle-arrow {
  height: 100%;
  color: #4d5a89;
  border-radius: 24px;
  border: 1px solid #4d5a89;
  background-color: #f5f7f8;
  height: 35px;
  min-width: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-sec .circle-arrow * {
  font-size: 13px;
}
.faq {
  padding: 100px 0;
}
.faq__blocks {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 60px;
  height: 100% !important;
}
.faq__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
  height: 100% !important;
  max-width: 400px;
  width: 100%;
}
.faq .section-heading {
  display: none;
}
.faq__details {
  min-height: 550px;
  padding: 24px 30px;
  border-radius: 33px;
  background-color: #003153;
  display: flex;
  flex-direction: column;
  gap: 23px;
  position: relative;
  overflow: hidden;
  flex-grow: 1;
}
.faq__details::after {
  position: absolute;
  height: 100%;
  width: 100%;
  content: "";
  background-image: url(../img/main/faq-design.webp);
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
}
.faq__details .pic {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 9;
}
.faq__details h2 {
  font-weight: 500;
  font-size: 32px;
  line-height: 116%;
  color: #fff;
  max-width: 200px;
  width: 100%;
  position: relative;
  z-index: 99;
}
.faq__details p {
  font-weight: 400;
  font-size: 16px;
  line-height: 116%;
  color: #fff;
  max-width: 180px;
  width: 100%;
  position: relative;
  z-index: 99;
  font-family: Outfit, sans-serif;
}
.faq__details p span {
  font-weight: 700;
  font-size: 16px;
  line-height: 116%;
  color: #fff;
}
.faq .phone {
  min-width: 67px;
  max-width: 67px;
  width: 67px;
  min-height: 67px;
  height: 67px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  position: relative;
  z-index: 99;
}
.faq .phone i {
  font-size: 25px;
  color: #003153;
}
.faq__title {
  border: 1px solid #e0e0e0;
  padding: 60px 20px 60px 32px;
  border-radius: 20px;
  position: relative;
  z-index: 99;
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
}
.faq__list {
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq__item {
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
  transition:
    opacity 0.8s ease,
    -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq__item.active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 32px 12px 40px;
  background-color: #f5f7f8;
  border-radius: 24px;
  cursor: pointer;
  padding: 25px 20px;
}
.faq__question p {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #1f2124;
}
.faq__question .plus {
  min-width: 34px;
  max-width: 34px;
  width: 34px;
  min-height: 34px;
  height: 34px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition:
    transform 0.35s ease,
    -webkit-transform 0.35s ease;
}
.faq__item--active .plus {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.faq__inner {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
.faq__answer {
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.631372549);
  max-width: 90%;
  padding: 25px 32px 10px 40px;
}

.faq__answer * {
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.631372549);
}

.contact-card {
  position: relative;
  max-width: 100%;
  border-radius: 32px;
  background: #fff;
  overflow: hidden;
  border: 1px solid #dcdce0;
  -webkit-filter: drop-shadow(0 18px 45px rgba(28, 42, 70, 0.08));
  filter: drop-shadow(0 18px 45px rgba(28, 42, 70, 0.08));
  clip-path: polygon(
    32.2492676px 0,
    calc(100% - 29.883191px) 14.1670774px,
    calc(100% - 24.96109729px) 14.87537046px,
    calc(100% - 20.31945472px) 16.29591632px,
    calc(100% - 16.01424199px) 18.36886116px,
    calc(100% - 12.1014378px) 21.03435113px,
    calc(100% - 8.63702087px) 24.23253242px,
    calc(100% - 5.67696992px) 27.9035512px,
    calc(100% - 3.27726365px) 31.98755362px,
    calc(100% - 1.49388076px) 36.42468587px,
    calc(100% - 0.38279998px) 41.1550941px,
    100% 46.1189245px,
    100% calc(100% - 32.02092px),
    calc(100% - 0.41860061px) calc(100% - 26.8269604px),
    calc(100% - 1.63050344px) calc(100% - 21.89983258px),
    calc(100% - 3.56985995px) calc(100% - 17.30546357px),
    calc(100% - 6.1708216px) calc(100% - 13.10978045px),
    calc(100% - 9.36753988px) calc(100% - 9.37871025px),
    calc(100% - 13.09416624px) calc(100% - 6.17818003px),
    calc(100% - 17.28485217px) calc(100% - 3.57411685px),
    calc(100% - 21.87374912px) calc(100% - 1.63244774px),
    calc(100% - 26.79500858px) calc(100% - 0.41909978px),
    calc(100% - 31.982782px) 100%,
    31.9827822px 100%,
    26.79500879px calc(100% - 0.41909978px),
    21.87374934px calc(100% - 1.63244774px),
    17.28485237px calc(100% - 3.57411685px),
    13.09416641px calc(100% - 6.17818003px),
    9.36754001px calc(100% - 9.37871025px),
    6.1708217px calc(100% - 13.10978045px),
    3.56986001px calc(100% - 17.30546357px),
    1.63050347px calc(100% - 21.89983258px),
    0.41860062px calc(100% - 26.8269604px),
    0 calc(100% - 32.02092px),
    0 32.0209204px,
    0.41860062px 26.82696079px,
    1.63050347px 21.89983293px,
    3.56986001px 17.30546389px,
    6.1708217px 13.10978071px,
    9.36754001px 9.37871045px,
    13.09416641px 6.17818017px,
    17.28485237px 3.57411693px,
    21.87374934px 1.63244779px,
    26.79500879px 0.41909979px,
    31.9827822px 0
  );
}
.contact-card__graphic {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.contact-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #7169ff, #8f94ff, #bfd8ff);
}
.contact-card__circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  -webkit-animation: circleBreath 2.5s ease-in-out infinite;
  animation: circleBreath 2.5s ease-in-out infinite;
}
.contact-card__circle--lg {
  width: 170px;
  height: 170px;
}
.contact-card__circle--sm {
  width: 120px;
  height: 120px;
}
@-webkit-keyframes circleBreath {
  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
  }
}
@keyframes circleBreath {
  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
  }
}
.contact-card__phone {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #7169ff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
  z-index: 2;
}
.contact-card__phone i {
  -webkit-animation: phoneShake 2.5s infinite;
  animation: phoneShake 2.5s infinite;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes phoneShake {
  0%,
  100%,
  70% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  74% {
    -webkit-transform: rotate(-18deg);
    transform: rotate(-18deg);
  }
  78% {
    -webkit-transform: rotate(18deg);
    transform: rotate(18deg);
  }
  82% {
    -webkit-transform: rotate(-14deg);
    transform: rotate(-14deg);
  }
  86% {
    -webkit-transform: rotate(14deg);
    transform: rotate(14deg);
  }
  90% {
    -webkit-transform: rotate(-8deg);
    transform: rotate(-8deg);
  }
  94% {
    -webkit-transform: rotate(8deg);
    transform: rotate(8deg);
  }
  97% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
}
@keyframes phoneShake {
  0%,
  100%,
  70% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  74% {
    -webkit-transform: rotate(-18deg);
    transform: rotate(-18deg);
  }
  78% {
    -webkit-transform: rotate(18deg);
    transform: rotate(18deg);
  }
  82% {
    -webkit-transform: rotate(-14deg);
    transform: rotate(-14deg);
  }
  86% {
    -webkit-transform: rotate(14deg);
    transform: rotate(14deg);
  }
  90% {
    -webkit-transform: rotate(-8deg);
    transform: rotate(-8deg);
  }
  94% {
    -webkit-transform: rotate(8deg);
    transform: rotate(8deg);
  }
  97% {
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
}
.contact-card__dots {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.7) 1.4px,
    transparent 1.4px
  );
  opacity: 0.8;
  background-size: 12px 12px;
}
.contact-card .section-heading {
  display: flex;
  flex-direction: column;
}
.contact-card .section-heading p {
  margin-top: 15px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  font-family: Outfit, sans-serif;
  font-weight: 300;
}
.contact-card__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  background-color: #fff;
  border-radius: 0 0 35px 35px;
}
.contact-card .btn {
  display: flex;
  align-items: center;
  border-radius: 100px;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  padding: 6px 45px 6px 6px;
}
.contact-card__button-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid #4d5a89;
  background-color: #4d5a89;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  margin-right: 10px;
}
.contact-card__button-content {
  flex: 1;
}
.contact-card__button-content span {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.4588235294);
}
.contact-card__button-content strong {
  font-weight: 600;
  font-size: 18px;
  color: #17254e;
}
.quote {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background: #fff;
  opacity: 0;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  transition:
    opacity 0.7s ease,
    -webkit-transform 0.7s ease;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    -webkit-transform 0.7s ease;
}
.quote.active {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.quote__grid {
  display: flex;
  align-items: start;
  gap: 40px;
}
.quote__form-card {
  position: relative;
  padding: 55px 32px;
  border-radius: 38px;
  background: linear-gradient(
    135deg,
    #fdeaf2 0,
    #f6e8fa 22%,
    #e9e9fd 48%,
    #d8ebfc 74%,
    #c7e8fb 100%
  );
  clip-path: polygon(
    32.2492676px 0,
    calc(100% - 29.883191px) 14.1670774px,
    calc(100% - 29.883191px) 14.1670774px,
    calc(100% - 24.96109729px) 14.87537046px,
    calc(100% - 20.31945472px) 16.29591632px,
    calc(100% - 16.01424199px) 18.36886116px,
    calc(100% - 12.1014378px) 21.03435113px,
    calc(100% - 8.63702087px) 24.23253242px,
    calc(100% - 5.67696992px) 27.9035512px,
    calc(100% - 3.27726365px) 31.98755362px,
    calc(100% - 1.49388076px) 36.42468587px,
    calc(100% - 0.38279998px) 41.1550941px,
    100% 46.1189245px,
    100% calc(100% - 32.02092px),
    100% calc(100% - 32.02092px),
    calc(100% - 0.41860061px) calc(100% - 26.8269604px),
    calc(100% - 1.63050344px) calc(100% - 21.89983258px),
    calc(100% - 3.56985995px) calc(100% - 17.30546357px),
    calc(100% - 6.1708216px) calc(100% - 13.10978045px),
    calc(100% - 9.36753988px) calc(100% - 9.37871025px),
    calc(100% - 13.09416624px) calc(100% - 6.17818003px),
    calc(100% - 17.28485217px) calc(100% - 3.57411685px),
    calc(100% - 21.87374912px) calc(100% - 1.63244774px),
    calc(100% - 26.79500858px) calc(100% - 0.41909978px),
    calc(100% - 31.982782px) 100%,
    31.9827822px 100%,
    31.9827822px 100%,
    26.79500879px calc(100% - 0.41909978px),
    21.87374934px calc(100% - 1.63244774px),
    17.28485237px calc(100% - 3.57411685px),
    13.09416641px calc(100% - 6.17818003px),
    9.36754001px calc(100% - 9.37871025px),
    6.1708217px calc(100% - 13.10978045px),
    3.56986001px calc(100% - 17.30546357px),
    1.63050347px calc(100% - 21.89983258px),
    0.41860062px calc(100% - 26.8269604px),
    0 calc(100% - 32.02092px),
    0 32.0209204px,
    0 32.0209204px,
    0.41860062px 26.82696079px,
    1.63050347px 21.89983293px,
    3.56986001px 17.30546389px,
    6.1708217px 13.10978071px,
    9.36754001px 9.37871045px,
    13.09416641px 6.17818017px,
    17.28485237px 3.57411693px,
    21.87374934px 1.63244779px,
    26.79500879px 0.41909979px,
    31.9827822px 0,
    31.9827822px 0,
    32.11152455px 0,
    32.2175794px 0,
    32.30094672px 0,
    32.36162654px 0,
    32.39961884px 0,
    32.41492362px 0,
    32.40754089px 0,
    32.37747064px 0,
    32.32471288px 0,
    32.2492676px 0
  );

  width: 50%;
}
.quote__title {
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
}
.quote__text {
  color: rgba(0, 0, 0, 0.6509803922);
  font-size: 14px;
  line-height: normal;
  font-family: Outfit, sans-serif;
  max-width: 540px;
  margin-bottom: 30px;
}
.quote .section-heading {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}
.quote .section-heading p {
  color: #607281;
  max-width: 550px;
}
.quote__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quote__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.quote__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quote__field label {
  font-size: 14px;
  font-weight: 500;
  color: #18344b;
  margin-left: 5px;
}
.quote__input {
  position: relative;
  display: flex;
  align-items: center;
  height: 50px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(15, 70, 110, 0.08);
  transition: 0.35s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  padding: 0 10px 0px 0;
}
.quote__input i {
  width: 50px;
  text-align: center;
  color: #0d2336;
  font-size: 16px;
  flex-shrink: 0;
}
.quote__input input {
  width: 100%;
  height: 100%;
  border: none;
  outline: 0;
  background: 0 0;
  padding-right: 22px;
  font-size: 14px;
  color: #0e2437;
}
.quote__input input::-webkit-input-placeholder {
  font-size: 14px;
  color: #92989e;
}
.quote__input input:-ms-input-placeholder {
  font-size: 14px;
  color: #92989e;
}
.quote__input input::-ms-input-placeholder {
  font-size: 14px;
  color: #92989e;
}
.quote__input input::placeholder {
  font-size: 14px;
  color: #92989e;
}
.quote__select {
  position: relative;
  display: flex;
  align-items: center;
  height: 50px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(15, 70, 110, 0.08);
  transition: 0.35s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.quote__select:hover {
  box-shadow: 0 18px 35px rgba(18, 98, 151, 0.12);
}
.quote__select select {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  padding: 0 60px 0 22px;
  border: none;
  outline: 0;
  background: 0 0;
  cursor: pointer;
  font-size: 14px;
  color: #0d2336;
}
.quote__select i {
  position: absolute;
  right: 22px;
  pointer-events: none;
  color: #0d2336;
}
.quote__textarea {
  position: relative;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(15, 70, 110, 0.08);
  transition: 0.35s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.quote__textarea textarea {
  width: 100%;
  height: 120px;
  resize: none;
  border: none;
  outline: 0;
  background: 0 0;
  padding: 22px 55px 22px 22px;
  font-size: 14px;
  color: #0d2336;
}
.quote__textarea textarea::-webkit-input-placeholder {
  color: #9baab7;
  font-size: 14px;
  color: #92989e;
}
.quote__textarea textarea:-ms-input-placeholder {
  color: #9baab7;
  font-size: 14px;
  color: #92989e;
}
.quote__textarea textarea::-ms-input-placeholder {
  color: #9baab7;
  font-size: 14px;
  color: #92989e;
}
.quote__textarea textarea::placeholder {
  color: #9baab7;
  font-size: 14px;
  color: #92989e;
}
.quote__textarea i {
  position: absolute;
  right: 22px;
  top: 22px;
  color: #0d2336;
}
.quote__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
}
.quote__checkbox input {
  display: none;
}
.quote__checkbox span {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 7px;
  border: 1px solid #0d2336;
  background: #fff;
  position: relative;
  transition: 0.3s;
}
.quote__checkbox span::before {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transition: 0.3s;
}
.quote__checkbox input:checked + span {
  background: #fff;
  border-color: #0d2336;
}
.quote__checkbox input:checked + span::before {
  opacity: 1;
  color: #0d2336;
}
.quote__checkbox p {
  color: #607281;
  line-height: 1.7;
  font-size: 14px;
}
.quote .btn {
  padding: 18px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 10px;
}
.quote__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quote__photo {
  position: relative;
  overflow: hidden;
  height: 400px;
  border-radius: 30px;
}
.quote__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  transition: 0.8s;
}
.quote__photo:hover img {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}
.quote__photo:hover .quote__floating {
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}
.quote__floating {
  position: absolute;
  left: 20px;
  bottom: 0 !important;
  width: 130px;
  padding: 10px 10px 15px 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  transition: 0.4s;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.quote__floating span {
  display: block;
  color: #5c7484;
  font-size: 14px;
  margin-bottom: 5px;
}
.quote__floating strong {
  display: block;
  color: #0f2338;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}
.quote__floating small {
  display: block;
  color: #0c91d8;
  font-weight: 700;
  margin-top: 0;
}
.quote__floating-icon {
  width: 45px;
  height: 45px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #10a3eb, #49d3ff);
  color: #fff;
  font-size: 22px;
  box-shadow: 0 14px 30px rgba(25, 145, 216, 0.3);
}
.quote__guarantee {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 25px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0d2338, #193c56);
  color: #fff;
}
.quote__guarantee-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.quote__guarantee-icon i {
  color: #fff;
  font-size: 34px;
}
.quote__guarantee-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 60%;
}
.quote__guarantee-content .title {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
.quote__guarantee-content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.3;
}
.quote__guarantee-leaf {
  position: absolute;
  width: 180px;
  right: -25px;
  bottom: -30px;
  opacity: 0.14;
  pointer-events: none;
}
.quote__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  border-radius: 32px;
  padding: 25px 0;
  position: relative;
}
.quote__feature {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.quote__feature:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 200px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(18, 38, 63, 0.12),
    transparent
  );
}
.quote__feature h4 {
  margin: 13px 0 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: #12263f;
}
.quote__feature p {
  font-size: 13px;
  line-height: 1.2;
  color: #6d7687;
  width: 60%;
}
.quote__feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote__feature-icon i {
  font-size: 23px;
}
.quote__feature:nth-child(1) .quote__feature-icon {
  background: linear-gradient(145deg, #ffeef6, #ffe2ef);
}
.quote__feature:nth-child(1) .quote__feature-icon i {
  color: #ff3c84;
}
.quote__feature:nth-child(2) .quote__feature-icon {
  background: linear-gradient(145deg, #edf6ff, #e3f0ff);
}
.quote__feature:nth-child(2) .quote__feature-icon i {
  color: #3b82f6;
}
.quote__feature:nth-child(3) .quote__feature-icon {
  background: linear-gradient(145deg, #f2efff, #ece8ff);
}
.quote__feature:nth-child(3) .quote__feature-icon i {
  color: #6b6ef8;
}
.before-after {
  padding: 80px 0;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(180deg, #f5f7f8 0, #fff 100%);
  margin: 0 20px;
  border-radius: 30px;
}
.before-after .swiper {
  overflow: hidden;
}
.before-after .swiper-slide {
  height: auto;
}
.before-after .section-heading {
  margin-bottom: 40px;
}
.before-after__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
}
.before-after__next,
.before-after__prev {
  min-width: 45px;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background: #f5f7f8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: 0.3s;
}
.before-after__next i,
.before-after__prev i {
  font-size: 18px;
  color: #17254e;
}
.before-after__next.is-disabled,
.before-after__prev.is-disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}
.before-after__pagination {
  display: flex;
  width: auto !important;
  /* padding: 15px 0 0 0; */
}
.before-after__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 5px;
}
.compare {
  height: 400px;
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.compare img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.compare__after,
.compare__before {
  position: absolute;
  inset: 0;
}
.compare__before {
  z-index: 1;
}
.compare__after {
  z-index: 2;
  clip-path: inset(0 0 0 50%);
}
.compare__line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: #fff;
  z-index: 10;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare__line span {
  min-width: 45px;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 3px solid #fff;
}
.compare__line i {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.compare__line i:first-child {
  border-right: 7px solid #fff;
}
.compare__line i:last-child {
  border-left: 7px solid #fff;
}
.compare::after,
.compare::before {
  position: absolute;
  top: 15px;
  z-index: 20;
  padding: 8px 18px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  pointer-events: none;
}
.compare::before {
  content: "BEFORE";
  left: 15px;
  top: auto;
  bottom: 15px;
}
.compare::after {
  content: "AFTER";
  right: 15px;
}
.compare:hover::after,
.compare:hover::before {
  opacity: 1;
  visibility: visible;
}
.compare:hover .compare-overlay {
  opacity: 1;
  visibility: visible;
}
.compare.is-dragging::after,
.compare.is-dragging::before {
  opacity: 0;
  visibility: hidden;
}
.compare.is-dragging .compare-overlay {
  opacity: 0;
  visibility: hidden;
}
.compare .compare-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
  pointer-events: none;
}
.swiper-pagination {
  position: relative;
  width: auto !important;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #0d2338, #193c56);
}
.swiper-pagination .swiper-pagination-bullet {
  display: inline-flex;
  width: 8px;
  height: 8px;
  background: #d5dbe8;
  opacity: 1;
  transition: 0.3s;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 2.5px;
}
.swiper-pagination .swiper-pagination-bullet-active {
  width: 18px;
  border-radius: 10px;
  background: #4f8ef7;
}
.contacts {
  margin: 0 20px;
  padding: 60px 0;
}
.contacts__blocks {
  display: flex;
  flex-direction: column;
}
.contacts__top {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 40px;
}
.contacts__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  justify-content: center;
  gap: 25px;
  height: 100%;
}
.contacts__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 40px 20px;
  border-radius: 30px;
  background-color: #f5f7f8;
  opacity: 0;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
  transition:
    opacity 0.8s ease,
    -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.contacts__item.active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.contacts__item:nth-child(1) .contacts__icon i {
  color: #ff3c84;
}
.contacts__item:nth-child(1) ul li:after {
  background-color: #ff3c84;
}
.contacts__item:nth-child(2) .contacts__icon i {
  color: #3b82f6;
}
.contacts__item:nth-child(2) ul li:after {
  background-color: #3b82f6;
}
.contacts__item:nth-child(3) .contacts__icon i {
  color: #6b6ef8;
}
.contacts__item:nth-child(3) ul li:after {
  background-color: #6b6ef8;
}
.contacts__item:nth-child(4) .contacts__icon i {
  color: green;
}
.contacts__item:nth-child(4) ul li:after {
  background-color: green;
}
.contacts__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contacts__info span {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 24px;
  font-family: Parkinsans, sans-serif;
}
.contacts__info p {
  font-size: 17px;
  color: rgba(0, 0, 0, 0.4588235294);
  transition: all 0.2s ease-in-out;
}
.contacts__info a {
  font-size: 17px;
  color: rgba(0, 0, 0, 0.4588235294);
  transition: all 0.2s ease-in-out;
}
.contacts__info a:hover {
  color: #003153;
  -webkit-transform: scale(0.9);
  transform: scale(0.9) !important;
}
.contacts__info ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contacts__info ul li {
  position: relative;
  font-size: 17px;
  color: rgba(0, 0, 0, 0.4588235294);
}
.contacts__icon {
  min-width: 60px;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 10px;
}
.contacts__icon i {
  font-size: 23px;
}
.contacts iframe {
  width: 100%;
  height: 450px;
  border-radius: 30px;
}
.reviews {
  background:
    radial-gradient(
      circle at 50% 18%,
      rgba(182, 208, 255, 0.28) 0,
      rgba(182, 208, 255, 0.12) 28%,
      transparent 62%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(255, 255, 255, 0.9) 0,
      transparent 45%
    ),
    linear-gradient(180deg, #f8fbff 0, #f3f7fc 100%);
  margin: 0 20px;
  border-radius: 30px;
}
.reviews__container {
  overflow: hidden;
}
.reviews__blocks {
  padding: 70px 0;
}
.reviews .section-heading p {
  color: #607281;
  padding-top: 10px;
}
.reviews {
  position: relative;
}
.reviews__slider {
  position: relative;
  padding: 50px 0 0;
  overflow: hidden;
}
.reviews__slider .swiper-wrapper {
  align-items: stretch;
}
.reviews__slider .swiper-slide {
  height: auto;
  display: flex;
}
.reviews__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
.reviews__next,
.reviews__prev {
  min-width: 45px;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 15px 45px rgba(33, 53, 85, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: 0.3s;
}
.reviews__next i,
.reviews__prev i {
  font-size: 18px;
  color: #17254e;
}
.reviews__pagination {
  width: auto !important;
}
.reviews__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #d5dbe8;
  opacity: 1;
  transition: 0.3s;
}
.reviews__pagination .swiper-pagination-bullet-active {
  width: 18px;
  border-radius: 10px;
  background: #4f8ef7;
}
.review-slide {
  background: #fff;
  border-radius: 32px;
  padding: 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.review-slide__quote {
  margin-bottom: 30px;
}
.review-slide__quote i {
  font-size: 35px;
  color: #9fc4ff;
}
.review-slide__text {
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
  color: var(--black-color);
  opacity: 0.8;
  margin-bottom: 20px;
}
.review-slide__bottom {
  border-top: 1px solid #edf0f6;
  padding-top: 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: auto 0 0 0;
}
.review-slide__author {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.review-slide__avatar {
  min-width: 45px;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 45px;
}
.review-slide__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.review-slide__info {
  display: flex;
  flex-direction: column;
}
.review-slide__rating {
  display: flex;
  gap: 4px;
  color: #ffb400;
  font-size: 14px;
  flex-shrink: 0;
}
.reviews-trust {
  margin: 70px auto 0;
  max-width: 620px;
  background: #fff;
  border-radius: 24px;
  padding: 24px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.reviews-trust__google {
  display: flex;
  align-items: start;
  gap: 18px;
}
.reviews-trust__google svg {
  width: 25px;
  padding-top: 10px;
}
.reviews-trust__google strong {
  font-size: 36px;
  font-weight: 700;
  color: #17254e;
}
.reviews-trust__google span {
  display: block;
  font-size: 14px;
  color: #6c7690;
  margin-top: 5px;
}
.reviews-trust__stars {
  display: inline-flex;
  gap: 2px;
  color: #ffb400;
  margin-left: 10px;
  font-size: 17px;
}
.reviews-trust__divider {
  width: 1px;
  height: 70px;
  background: #e8edf5;
  margin: 0 30px;
}
.reviews-trust__verified {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reviews-trust__verified i {
  font-size: 34px;
  color: #7fa8ff;
}
.reviews-trust__verified strong {
  display: block;
  font-size: 17px;
  color: #17254e;
  margin-bottom: 4px;
}
.reviews-trust__verified span {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  color: #6f7892;
}
.locations-page .locations-sec {
  padding: 80px 0;
}
.locations-page .locations-sec__blocks {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.locations-page .locations-sec__block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.locations-page .locations-sec__items {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  align-items: center;
  justify-content: center;
}
.locations-page .locations-sec__item {
  background-color: #f5f7f8;
  font-size: 16px;
  border-radius: 24px;
  padding: 12px 20px 12px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Outfit, sans-serif;
  font-weight: 300;
  transition: 0.3s ease-in-out;
  opacity: 0;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
  transition:
    opacity 0.8s ease,
    -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  color: var(--black-color);
}
.locations-page .locations-sec__item.active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.locations-page .locations-sec__item:hover {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  background-color: rgba(159, 184, 207, 0.5058823529);
}
.locations-page .locations-sec .circle {
  min-width: 24px;
  width: 24px;
  height: 24px;
  background-color: #9fb8cf;
  display: flex;
  align-items: center;
  border-radius: 15px;
  justify-content: center;
}
.locations-page .locations-sec .circle i {
  color: #fff;
  font-size: 12px;
}
.pages {
  margin-top: 100px;
}
.pages .head {
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(180deg, #f5f7f8 0, #fff 100%);
  padding: 62px 0 0 0;
  margin: 0 20px;
  border-radius: 30px;
  text-align: center;
}
.pages .head .section-heading {
  padding-bottom: 50px;
}
.pages .pic {
  height: 480px;
  border-radius: 30px;
  overflow: hidden;
}
.pages .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.pages .services-sec__blocks {
  padding: 50px 0;
}
.pages .services-sec__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 40px;
}
.pages .services-sec__item {
  background: #f5f7f8;
  padding: 40px;
  display: flex;
  gap: 20px;
}
.pages .services-sec__pic {
  height: 220px;
}
.pages .services-sec__info-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pages .services-sec__info-top p {
  font-size: 16px;
  line-height: 22px;
}
.pages .services-sec .btn {
  padding: 8px 9px 8px 20px;
  background: #003153;
  color: #fff;
}
.pages .services-sec .circle-arrow {
  border: 1px solid #fff;
  background-color: #fff;
  height: 32px;
  min-width: 32px;
  width: 32px;
}
.pages .cards {
  padding: 60px 0;
}
.pages .cards .section-heading {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
}
.pages .cards .section-heading p {
  font-size: 18px;
  line-height: 27px;
  font-family: Parkinsans, sans-serif;
  font-weight: 400;
}

.pages .cards .section-heading p strong {
  font-weight: 600;
}
.pages ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pages ul li {
  position: relative;
  padding-left: 20px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 16px;
  font-family: Outfit, sans-serif;
  font-weight: 300;
  line-height: 22px;
}
.pages ul li:after {
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.6);
}
.pages .timeline {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.pages .timeline__blocks {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.pages .timeline__wrapper {
  margin-top: 100px;
  position: relative;
}
.pages .timeline .leaf {
  position: absolute;
}
.pages .timeline .leaf-1 {
  top: 80px;
  width: 80px;
  left: 75%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 80px;
}
.pages .timeline .leaf-2 {
  top: 190px;
  width: 140px;
  left: 20%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 130px;
}
.pages .timeline__center {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pages .timeline__track {
  position: absolute;
  left: 50%;
  top: -80px;
  bottom: 0;
  width: 4px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #e5e7eb;
  border-radius: 100px;
  overflow: visible;
}
.pages .timeline__progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: #5d6687;
  border-radius: inherit;
  will-change: height;
}
.pages .timeline__dot {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #5d6687;
  border: 5px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 20;
  will-change: top;
}
.pages .timeline__row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  align-items: center;
  min-height: auto;
}
.pages .timeline__empty {
  width: 100%;
  height: 100%;
}
.pages .timeline__point {
  width: 22px;
  height: 22px;
  margin: auto;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #5d6687;
  opacity: 0.35;
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 5;
}
.pages .timeline__point.passed {
  opacity: 0;
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
}
.pages .timeline__card {
  position: relative;
  max-width: 480px;
  padding: 32px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
  transition:
    opacity 0.7s ease,
    visibility 0.7s ease,
    -webkit-transform 0.7s ease;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    visibility 0.7s ease;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    visibility 0.7s ease,
    -webkit-transform 0.7s ease;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.pages .timeline__card.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.pages .timeline__card--left {
  margin-right: auto;
}
.pages .timeline__card--right {
  margin-left: auto;
}
.pages .timeline__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 28px;
  padding: 0 14px;
  border-radius: 30px;
  background: rgba(93, 102, 135, 0.08);
  color: #5d6687;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.pages .timeline .title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  color: var(--black-color);
}
.pages .timeline p {
  color: rgba(0, 0, 0, 0.65);
  font-size: 16px;
  font-family: Outfit, sans-serif;
  font-weight: 300;
  line-height: 22px;
}
.about .text-block,
.cleaning-process .text-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 30px 0 50px 0;
  max-width: 800px;
  width: 100%;
  margin: 40px auto;
}
.service-area p,
.about .text-block p,
.cleaning-process .text-block p {
  font-family: Parkinsans, sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000;
  line-height: 27px;
}
.text-block h2,
.text-block h3,
.text-block h4,
.text-block h5,
.text-block h6,
.cleaning-process .text-block h2,
.cleaning-process .text-block h3,
.cleaning-process .text-block h4,
.cleaning-process .text-block h5,
.cleaning-process .text-block h6 {
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
}
.cleaning-process .services-tabs {
  padding: 80px 0;
  overflow: hidden;
  background-color: #f5f7f8;
  margin: 0 20px;
  border-radius: 30px;
}
.cleaning-process .services-tabs .section-heading {
  margin-bottom: 60px;
}
.cleaning-process .services-tabs__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 60px;
}
.cleaning-process .services-tabs__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 20px;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  border: 1px solid #e8e8e8;
  border-radius: 30px;
  background: #fff;
  cursor: pointer;
  transition: 0.35s ease;
  color: var(--black-color);
  font-size: 16px;
  font-weight: 400;
  position: relative;
}
.cleaning-process .services-tabs__tab:hover {
  border-color: #4d5a89;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.cleaning-process .services-tabs__tab.active {
  background: #4f6ea6;
  color: #fff;
  border-color: #4d5a89;
  box-shadow: 0 18px 40px rgba(79, 110, 166, 0.25);
}
.cleaning-process .services-tabs__tab-icon {
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(79, 110, 166, 0.08);
  transition: 0.35s ease;
}
.cleaning-process .services-tabs__tab-icon i {
  font-size: 16px;
}
.cleaning-process
  .services-tabs__tab.active
  .cleaning-process
  .services-tabs__tab-icon {
  background: rgba(255, 255, 255, 0.15);
}
.cleaning-process .services-tabs__tab-text {
  line-height: 1.3;
  text-align: center;
}
.cleaning-process .services-tabs__content {
  position: relative;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  transition:
    opacity 0.7s ease,
    -webkit-transform 0.7s ease;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    -webkit-transform 0.7s ease;
}
.cleaning-process .services-tabs__content.active {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.cleaning-process .services-tabs__pane {
  display: none;
  -webkit-animation: fadeUp 0.45s ease;
  animation: fadeUp 0.45s ease;
}
.cleaning-process .services-tabs__pane.active {
  display: block;
}
@-webkit-keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.cleaning-process .services-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 70px;
  padding: 32px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.cleaning-process .services-card__content {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.cleaning-process .services-card__label {
  display: inline-flex;
  flex-direction: column;
  gap: 14px;
  font-size: 16px;
  font-weight: 600;
  color: #4f6ea6;
}
.cleaning-process .services-card__label::after {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 50px;
  background: #4f6ea6;
}
.cleaning-process .services-card__title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.22;
  color: var(--black-color);
}
.cleaning-process .services-card__text {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
}
.cleaning-process .services-card .benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: start;
  padding: 10px 0;
}
.cleaning-process .services-card .benefits li {
  margin: 0;
  padding: 0;
}
.cleaning-process .services-card .benefits li span {
  color: var(--black-color);
  font-weight: 400;
  font-size: 16px;
}
.cleaning-process .services-card .benefits li::after,
.cleaning-process .services-card .benefits li::before {
  display: none;
}
.cleaning-process .services-card__image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: auto;
  border-radius: 28px;
  overflow: hidden;
}
.cleaning-process .services-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.6s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cleaning-process .services-card__image:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.services-single {
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(180deg, #f5f7f8 0, #fff 100%);
  margin: 0 20px;
  border-radius: 30px;
  margin-top: 100px;
}
.services-single__blocks {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 70px;
  padding: 60px 0;
}
.services-single__info {
  max-width: 768px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.services-single__head {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
}
.services-single .section-heading p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 29px;
}
.services-single .compare {
  height: 330px;
}
.services-single .before-after-single .section-heading {
  margin-bottom: 20px;
}
.services-single .before-after-single .before-after__controls button {
  border: 1px solid #4d5a89;
  background-color: #9fb8cf;
}
.services-single .benefits {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 0;
}
.services-single .benefits span {
  font-size: 18px;
  line-height: 29px;
  font-family: Outfit, sans-serif;
  font-weight: 400;
}
.service-areae .text-block,
.services-single .text-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-areae .text-block p,
.services-single .text-block p {
  font-family: Outfit, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #00000080;
  line-height: 23px;
}
.services-single .text-block h2,
.services-single .text-block h3,
.services-single .text-block h4,
.services-single .text-block h5,
.services-single .text-block h6 {
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
}
.services-single .cards {
  padding: 20px 0;
}
.services-single .cards__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.services-single .cards-icon {
  width: 70px;
}
.services-single .cards__card {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.services-single .cards__card .title {
  font-size: 30px;
  line-height: 39px;
}
.services-single .cards__card p {
  font-family: Outfit, sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 22px;
  text-align: center;
}
.services-single .prices-service {
  padding: 30px 0;
}
.services-single .prices-service .section-heading {
  margin-bottom: 20px;
}
.services-single .prices-service__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.services-single .prices-service__item {
  display: flex;
  flex-direction: column;
}
.services-single .prices-service__row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.services-single .prices-service__name,
.services-single .prices-service__price {
  flex-shrink: 0;
  font-family: Outfit, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.6);
}
.services-single .prices-service__price {
  text-align: right;
}
.services-single .prices-service__line {
  flex: 1;
  border-bottom: 2px dotted rgba(0, 0, 0, 0.4);
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}
.services-single .prices-service__description {
  margin-top: 10px;
  color: #777;
}
.services-single .prices-service__note {
  max-width: 760px;
  margin: 48px auto 0;
  text-align: center;
  font-style: italic;
  color: #777;
}
.services-single .faq-services {
  padding: 20px 0;
}
.services-single .faq-services .section-heading {
  margin-bottom: 30px;
}
.services-single .faq-services .faq__list {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.services-single__details {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 100px;
}
.services-single__details .choose-services {
  padding: 40px;
  background-color: #fff;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.services-single__details .choose-services .title {
  font-size: 24px;
}
.services-single__details .choose-services .circle-arrow {
  border: 1px solid #fff;
  background-color: #fff;
  height: 32px;
  min-width: 32px;
  width: 32px;
  border-radius: 30px;
  font-size: 13px;
  color: #4d5a89;
}
.services-single__details .choose-services__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.services-single__details .choose-services__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 16px 16px 16px 16px;
  padding: 17px 20px 17px 20px;
  transition:
    background-color 0.1s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    background-color 0.1s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    background-color 0.1s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  font-size: 18px;
  color: #000;
  background-color: #f5f7f8;
}
.services-single__details .choose-services__item:hover {
  background-color: #9fb8cf;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}
.services-single__pic {
  height: 300px;
  overflow: hidden;
  clip-path: polygon(
    32.2492676px 13.8329226px,
    calc(100% - 29.883191px) 0,
    calc(100% - 29.883191px) 0,
    calc(100% - 24.96109729px) 0.70829306px,
    calc(100% - 20.31945472px) 2.12883892px,
    calc(100% - 16.01424199px) 4.20178375px,
    calc(100% - 12.1014378px) 6.86727374px,
    calc(100% - 8.63702087px) 10.06545503px,
    calc(100% - 5.67696992px) 13.73647382px,
    calc(100% - 3.27726365px) 17.82047625px,
    calc(100% - 1.49388076px) 22.25760852px,
    calc(100% - 0.38279998px) 26.98801678px,
    100% 31.9518472px,
    100% calc(100% - 32.187998px),
    100% calc(100% - 32.187998px),
    calc(100% - 0.41860061px) calc(100% - 26.99403837px),
    calc(100% - 1.63050344px) calc(100% - 22.06691047px),
    calc(100% - 3.56985995px) calc(100% - 17.47254136px),
    calc(100% - 6.1708216px) calc(100% - 13.2768581px),
    calc(100% - 9.36753988px) calc(100% - 9.54578775px),
    calc(100% - 13.09416624px) calc(100% - 6.34525738px),
    calc(100% - 17.28485217px) calc(100% - 3.74119406px),
    calc(100% - 21.87374912px) calc(100% - 1.79952485px),
    calc(100% - 26.79500858px) calc(100% - 0.58617681px),
    calc(100% - 31.982782px) calc(100% - 0.167077px),
    31.9827822px calc(100% - 0.167077px),
    31.9827822px calc(100% - 0.167077px),
    26.79500879px calc(100% - 0.58617681px),
    21.87374934px calc(100% - 1.79952485px),
    17.28485237px calc(100% - 3.74119406px),
    13.09416641px calc(100% - 6.34525738px),
    9.36754001px calc(100% - 9.54578775px),
    6.1708217px calc(100% - 13.2768581px),
    3.56986001px calc(100% - 17.47254136px),
    1.63050347px calc(100% - 22.06691047px),
    0.41860062px calc(100% - 26.99403837px),
    0 calc(100% - 32.187998px),
    0 45.853843px,
    0.41860062px 40.65988339px,
    1.63050347px 35.73275553px,
    3.56986001px 31.13838649px,
    6.1708217px 26.94270331px,
    9.36754001px 23.21163305px,
    13.09416641px 20.01110277px,
    17.28485237px 17.40703953px,
    21.87374934px 15.46537039px,
    26.79500879px 14.25202239px,
    31.9827822px 13.8329226px,
    31.9827822px 13.8329226px,
    32.11152455px 13.8329226px,
    32.2175794px 13.8329226px,
    32.30094672px 13.8329226px,
    32.36162654px 13.8329226px,
    32.39961884px 13.8329226px,
    32.41492362px 13.8329226px,
    32.40754089px 13.8329226px,
    32.37747064px 13.8329226px,
    32.32471288px 13.8329226px,
    32.2492676px 13.8329226px
  );
}
.services-single__pic:hover img {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}
.services-single__pic img {
  width: 100%;
  height: 100%;
  transition: 0.5s;
  -o-object-fit: cover;
  object-fit: cover;
}
.services-single .leafs-single {
  position: relative;
}
.services-single .leafs-single .leaf-1 {
  width: 120px;
}
.services-single .leafs-single .leaf-2 {
  width: 45px;
  margin-top: -30px;
}
.services-single .leafs-single .leaf-3 {
  position: absolute;
  top: 80%;
  width: 60px;
  left: 35%;
}
.services-single .highlights .benefits {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}
.services-single .highlights .benefits .circle {
  min-width: 15px;
  width: 15px;
  height: 15px;
  background-color: #495786;
}
.services-single .highlights .benefits .circle i {
  font-size: 10px;
}
.services-single .highlights .benefits span {
  font-family: Outfit, sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 22px;
}
.services-single .contact-card {
  clip-path: polygon(
    32.2492676px 13.8329226px,
    calc(100% - 29.883191px) 0,
    calc(100% - 29.883191px) 0,
    calc(100% - 24.96109729px) 0.70829306px,
    calc(100% - 20.31945472px) 2.12883892px,
    calc(100% - 16.01424199px) 4.20178375px,
    calc(100% - 12.1014378px) 6.86727374px,
    calc(100% - 8.63702087px) 10.06545503px,
    calc(100% - 5.67696992px) 13.73647382px,
    calc(100% - 3.27726365px) 17.82047625px,
    calc(100% - 1.49388076px) 22.25760852px,
    calc(100% - 0.38279998px) 26.98801678px,
    100% 31.9518472px,
    100% calc(100% - 32.187998px),
    100% calc(100% - 32.187998px),
    calc(100% - 0.41860061px) calc(100% - 26.99403837px),
    calc(100% - 1.63050344px) calc(100% - 22.06691047px),
    calc(100% - 3.56985995px) calc(100% - 17.47254136px),
    calc(100% - 6.1708216px) calc(100% - 13.2768581px),
    calc(100% - 9.36753988px) calc(100% - 9.54578775px),
    calc(100% - 13.09416624px) calc(100% - 6.34525738px),
    calc(100% - 17.28485217px) calc(100% - 3.74119406px),
    calc(100% - 21.87374912px) calc(100% - 1.79952485px),
    calc(100% - 26.79500858px) calc(100% - 0.58617681px),
    calc(100% - 31.982782px) calc(100% - 0.167077px),
    31.9827822px calc(100% - 0.167077px),
    31.9827822px calc(100% - 0.167077px),
    26.79500879px calc(100% - 0.58617681px),
    21.87374934px calc(100% - 1.79952485px),
    17.28485237px calc(100% - 3.74119406px),
    13.09416641px calc(100% - 6.34525738px),
    9.36754001px calc(100% - 9.54578775px),
    6.1708217px calc(100% - 13.2768581px),
    3.56986001px calc(100% - 17.47254136px),
    1.63050347px calc(100% - 22.06691047px),
    0.41860062px calc(100% - 26.99403837px),
    0 calc(100% - 32.187998px),
    0 45.853843px,
    0.41860062px 40.65988339px,
    1.63050347px 35.73275553px,
    3.56986001px 31.13838649px,
    6.1708217px 26.94270331px,
    9.36754001px 23.21163305px,
    13.09416641px 20.01110277px,
    17.28485237px 17.40703953px,
    21.87374934px 15.46537039px,
    26.79500879px 14.25202239px,
    31.9827822px 13.8329226px,
    31.9827822px 13.8329226px,
    32.11152455px 13.8329226px,
    32.2175794px 13.8329226px,
    32.30094672px 13.8329226px,
    32.36162654px 13.8329226px,
    32.39961884px 13.8329226px,
    32.41492362px 13.8329226px,
    32.40754089px 13.8329226px,
    32.37747064px 13.8329226px,
    32.32471288px 13.8329226px,
    32.2492676px 13.8329226px
  );
}
.services-single .video-reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 15px;
  padding: 20px 0;
}
.services-single .video-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.services-single .video-card iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: 0;
  border-radius: 10px;
}
.reviews-page .reviews__slider {
  position: relative;
  padding: 0 0 0;
  overflow: hidden;
}
.reviews-page .reviews__slider .swiper-slide {
  height: auto;
  display: flex;
  background-color: #f5f7f8;
}
.reviews-page .reviews__slider .reviews__controls button {
  background-color: #f5f7f8;
  box-shadow: none;
}
.reviews-page .video-reviews {
  padding: 60px 0;
}
.reviews-page .video-reviews .section-heading {
  text-align: center;
  margin-bottom: 60px;
}
.reviews-page .video-reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  gap: 15px;
}
.reviews-page .video-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.reviews-page .video-card iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 10px;
}
@media (max-width: 1550px) {
  .contact-page .contacts.contacts-first {
    padding: 50px 0 0 0;
  }
  .faq {
    padding: 50px 0 68px 0;
  }
  .faq__blocks {
    gap: 40px;
  }
  .faq__details {
    gap: 15px;
    padding: 20px 30px;
  }
  .faq__details p {
    font-size: 16px;
  }
  .faq__details p span {
    font-size: 14px;
  }
  .faq__title {
    padding: 40px 20px 40px 32px;
  }
  .faq__list {
    gap: 15px;
  }
  .faq__question {
    padding: 12px 20px 12px 30px;
  }
}
@media (max-width: 1280px) {
  .services-single__blocks {
    gap: 30px;
  }
  .services-single__info {
    max-width: 570px;
    width: 100%;
  }
}
@media (max-width: 1240px) {
  .pages .timeline .leaf-1 {
    height: 60px;
    left: 85%;
    width: 60px;
  }
  .pages .timeline .leaf-2 {
    height: 70px;
    width: 70px;
    top: 60px;
    left: 10%;
  }
}
@media (max-width: 1200px) {
  .btn {
    padding: 15px 25px;
  }
  .btn-number a,
  .btn-number span {
    font-size: 12px;
  }
  .pages .leafs .leaf-1 {
    left: 42%;
    width: 80px;
  }
  .pages .leafs .leaf-2 {
    bottom: 40%;
    width: 40px;
    left: 48%;
  }
  .pages .leafs .leaf-3 {
    top: 85%;
    width: 50px;
    left: 53%;
  }
  .header .logo img {
    width: 80px;
    height: 80px;
    background-color: #fff;
    z-index: 999;
  }
  .menu__dropdown li:first-child:not(:only-child) > a {
    border-radius: 0;
  }
  .menu__dropdown li:last-child:not(:only-child) > a {
    border-radius: 0;
  }
  .menu-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .menu-wrapper .logo.show-mob {
    display: flex;
  }
  .open-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 0;
    background: rgba(0, 0, 0, 0);
    cursor: pointer;
  }
  .open-menu i {
    font-size: 24px;
    transition: 0.35s ease;
  }
  .open-menu.active i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    min-height: 100vh;
    background: #fff;
    overflow-y: auto;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transition: -webkit-transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition:
      transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
      -webkit-transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: 999;
    padding: 0 20px 20px;
    gap: 20px;
    display: flex;
    flex-direction: column;
  }
  .menu-wrapper.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .menu-wrapper__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .close-menu {
    width: 32px;
    height: 32px;
    border: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .close-menu i {
    font-size: 22px;
  }
  .menu__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .menu__item {
    width: 100%;
  }
  .menu__item a {
    font-weight: 400;
  }
  .menu__link {
    width: 100%;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .menu__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: none;
  }
  .menu .dropdown-right {
    position: static;
    border: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    border-radius: 0;
    box-shadow: none;
    margin: 0 0 0 15px;
  }
  .menu__item.active > .menu__dropdown {
    display: block;
  }
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.35s;
    z-index: 998;
  }
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .open-menu {
    display: none;
  }
  .main {
    margin-top: 85px;
  }
  .main__content {
    width: 58%;
    gap: 25px;
    padding: 60px 20px 30px 20px;
  }
  .main__content-top h1 {
    font-size: 36px;
    line-height: 43px;
  }
  .main__content-top p {
    line-height: 25px;
    font-size: 16px;
  }
  .main .benefits {
    gap: 25px;
    row-gap: 20px;
  }
  .benefits {
    gap: 25px;
  }
  .how-work__wrapper {
    gap: 25px;
  }
  .how-work__arrow svg {
    width: 80px;
  }
  .why-us .leaf-1 {
    height: 60px;
    width: 60px;
  }
  .why-us .leaf-2 {
    height: 120px;
    width: 120px;
    left: 7%;
  }
  .why-us__cards {
    margin-bottom: 40px;
  }
  .why-card ul li {
    font-size: 16px;
  }
  .services-sec__list {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 40px;
    grid-template-columns: repeat(3, 1fr);
  }
  .services-sec__info {
    gap: 30px;
  }
  .services-sec .title {
    line-height: 27px;
    width: 100%;
  }
  .quote__grid {
    flex-direction: column;
  }
  .quote__form-card {
    padding: 40px 20px;
  }
  .quote__info {
    width: 100%;
  }
  .quote__grid {
    gap: 35px;
  }
  .quote__form-card {
    padding: 50px 20px;
    width: 100%;
  }
  .contacts__top {
    gap: 30px;
  }
  .contacts__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .contacts__info p {
    font-size: 16px;
  }
  .contacts__info a {
    font-size: 16px;
  }
  .contacts__info ul li {
    font-size: 16px;
  }
  .contacts__icon {
    min-width: 50px;
    width: 50px;
    border-radius: 10px;
    height: 50px;
  }
  .contacts__icon i {
    font-size: 22px;
  }
  .contacts iframe {
    border-radius: 20px;
    height: 400px;
  }
  .pages {
    margin-top: 80px;
  }
  .pages .head {
    padding: 30px 0 0 0;
  }
  .pages .services-sec__item {
    padding: 30px;
  }
  .cleaning-process .services-tabs__nav {
    margin-bottom: 40px;
  }
  .cleaning-process .services-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cleaning-process .services-card__content {
    max-width: 100%;
    order: 1;
  }
  .cleaning-process .services-card__image {
    order: 2;
    height: 300px;
  }
  .services-single .benefits {
    gap: 0;
  }
  .services-single .highlights .benefits {
    gap: 15px;
  }
}
@media (max-width: 1200px) and (max-width: 1200px) {
  .open-menu {
    width: 32px;
    height: 32px;
    border: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  .open-menu i {
    font-size: 22px;
  }
}
@media (max-width: 1024px) {
  .footer {
    margin: 0 5px !important;
  }
  .main .leaf-1 {
    left: 53%;
    width: 80px;
  }
  .main .leaf-2 {
    left: 53%;
    width: 30px;
  }
  .main .leaf-3 {
    left: 60%;
    width: 50px;
  }
  .how-work {
    padding: 60px 0 20px 0;
  }
  .how-work__title {
    font-size: 20px;
  }
  .how-work__text {
    font-size: 16px;
    line-height: 25px;
  }
  .section-heading__subtitle {
    font-size: 12px;
  }
  .section-heading .title p,
  .section-heading .title *,
  .section-heading .title,
  .section-heading h1,
  .section-heading h2,
  .section-heading h3,
  .section-heading h4,
  .section-heading h5,
  .section-heading h6 {
    line-height: 36px !important;
    font-size: 30px !important;
  }
  .section-heading h1 {
    line-height: 38px;
    font-size: 35px;
  }
  .about .section-heading {
    margin-bottom: 0;
  }
  .about__blocks {
    padding: 60px 20px 20px 20px;
  }
  .about__advantage-icon {
    min-width: 40px;
    height: 40px;
    width: 40px;
  }
  .about__advantage-icon img {
    width: 20px;
    height: 20px;
  }
  .about__advantage-content {
    width: 110px;
  }
  .about__advantage h4 {
    font-size: 14px;
  }
  .about__advantage p {
    font-size: 12px;
  }
  .about__text p {
    font-size: 16px;
    line-height: 25px;
  }
  .why-us {
    padding: 120px 0 60px 0;
  }
  .why-us__content {
    gap: 32px;
  }
  .why-us__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 0;
  }

  .why-us__cards .why-card:nth-last-child(2):nth-child(4n + 1),
  .why-us__cards .why-card:last-child:nth-child(4n + 2) {
    grid-column: auto;
  }

  .why-us__stats {
    grid-template-columns: repeat(1, 1fr);
    text-align: start;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 10px;
  }
  .why-card {
    padding: 40px 20px 20px 20px;
    gap: 10px;
  }
  .why-card h2,
  .why-card h3,
  .why-card h4,
  .why-card h5,
  .why-card h6,
  .why-card__title {
    line-height: 27px;
    font-size: 19px;
  }
  .stat {
    padding: 0;
  }
  .stat:not(:last-child) {
    border-right: none;
  }
  .stat {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    flex-direction: column;
    align-items: start;
    padding-left: 20px;
  }
  .stat__number {
    text-align: center;
    line-height: 32px;
    font-size: 27px;
  }
  .stat__text {
    max-width: 100%;
    line-height: 24px;
    font-size: 16px;
  }
  .faq__title {
    line-height: 36px;
    font-size: 30px;
  }
  .quote__title {
    line-height: 36px;
    font-size: 30px;
  }
  .locations-page .locations-sec__items {
    gap: 20px;
  }
  .locations-page .locations-sec__item {
    font-size: 14px;
    padding: 8px 15px 8px 10px;
  }
  .about .text-block h2,
  .about .text-block h3,
  .about .text-block h4,
  .about .text-block h5,
  .about .text-block h6,
  .cleaning-process .text-block h2,
  .cleaning-process .text-block h3,
  .cleaning-process .text-block h4,
  .cleaning-process .text-block h5,
  .cleaning-process .text-block h6 {
    line-height: 36px;
    font-size: 30px;
  }
  .services-single__blocks {
    flex-direction: column;
    padding: 60px 0 20px 0;
    gap: 50px;
  }
  .services-single__info {
    max-width: 100%;
    width: 100%;
  }
  .services-single .text-block h2,
  .services-single .text-block h3,
  .services-single .text-block h4,
  .services-single .text-block h5,
  .services-single .text-block h6 {
    line-height: 36px;
    font-size: 30px;
  }
  .services-single .prices-service {
    padding: 20px 0;
  }
  .services-single .prices-service__container {
    padding: 0;
  }
  .services-single .prices-service__name,
  .services-single .prices-service__price {
    line-height: 20px;
    font-size: 16px;
  }
  .services-single__details {
    width: 100%;
    margin-top: 0;
  }
  .services-single__details .choose-services {
    background-color: #f5f7f8;
    padding: 40px 20px;
    width: 100%;
  }
  .services-single__details .choose-services .title {
    font-size: 20px;
  }
  .services-single__details .choose-services__item {
    background-color: #fff;
    font-size: 16px;
    width: 100%;
  }
  .services-single__details .choose-services__item:hover {
    -webkit-transform: scale(0.97);
    transform: scale(0.97);
  }
  .services-single .leafs-single {
    position: absolute;
    top: 30px;
    right: 0;
  }
  .services-single .leafs-single .leaf-1 {
    width: 80px !important;
    top: 100px;
  }
  .services-single .leafs-single .leaf-2 {
    margin-top: 0;
    width: 40px;
  }
  .services-single .leafs-single .leaf-3 {
    top: 120%;
    width: 40px;
    left: 60%;
  }
  .services-single .video-reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-page .video-reviews {
    padding: 30px 0;
  }
  .reviews-page .video-reviews .section-heading {
    margin-bottom: 40px;
  }
  .reviews-page .video-reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .footer-menu__list {
    max-width: 300px;
    width: 100%;
    gap: 15px;
    row-gap: 10px;
    margin-top: 50px;
  }

  .footer-menu__list a {
    font-size: 14px;
  }

  .faq-page .faq__left {
    position: relative;
    top: auto;
  }
  .about__blocks {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about__content {
    max-width: 100%;
  }
  .about__advantages {
    max-width: 100%;
    width: 100%;
  }
  .services-sec__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .faq__blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .faq__left {
    order: 1;
    max-width: 100%;
    width: 100%;
  }
  .faq .section-heading {
    display: block;
    text-align: center;
  }
  .faq__title {
    display: none;
  }
  .faq__list {
    gap: 10px;
    max-width: 100%;
    width: 100%;
  }
  .faq__question {
    padding: 13px 13px 12px 20px;
  }

  .faq__answer {
    padding: 25px 20px 10px 20px;
    font-size: 14px;
    line-height: 20px;
    max-width: 95%;
  }

  .faq__answer * {
    font-size: 14px;
    line-height: 20px;
  }
  .contact-card__graphic {
    height: 190px;
  }
  .contact-card__circle--lg {
    width: 150px;
    height: 150px;
  }
  .contact-card__circle--sm {
    width: 110px;
    height: 110px;
  }
  .contact-card__phone {
    width: 70px;
    font-size: 28px;
    height: 70px;
  }
  .contact-card__content {
    padding: 30px 15px;
  }
  .contact-card .btn {
    justify-content: center;
    padding: 6px 30px 6px 6px;
    margin: 0 auto;
  }
  .contact-card__button-icon {
    width: 40px;
    font-size: 16px;
    margin-right: 0;
    height: 40px;
  }
  .contact-card__button-content span {
    font-size: 10px;
  }
  .contact-card__button-content strong {
    font-size: 16px;
  }
  .before-after__next,
  .before-after__prev {
    min-width: 40px;
    height: 40px;
    width: 40px;
  }
  .before-after__next i,
  .before-after__prev i {
    font-size: 14px;
  }
  .reviews__next,
  .reviews__prev {
    min-width: 40px;
    height: 40px;
    width: 40px;
  }
  .reviews__next i,
  .reviews__prev i {
    font-size: 14px;
  }
  .review-slide__quote {
    margin-bottom: 20px;
  }
  .review-slide__quote i {
    font-size: 25px;
  }
  .review-slide__text {
    font-size: 16px;
  }
  .review-slide__author {
    gap: 10px;
  }
  .review-slide__avatar {
    min-width: 40px;
    height: 40px;
    width: 40px;
    flex: 0 0 40px;
  }
  .review-slide__rating {
    gap: 2px;
  }
  .review-slide {
    padding: 25px;
  }
  .review-slide__text {
    font-size: 14px;
  }
  .reviews-trust {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }
  .reviews-trust__divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .pages .services-sec__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .pages ul li {
    font-size: 14px;
    line-height: 20px;
  }
  .pages .timeline__blocks {
    gap: 0;
  }
  .pages .timeline .leaf-1 {
    height: 40px;
    width: 40px;
    left: auto;
    right: 7%;
  }
  .pages .timeline .leaf-2 {
    height: 80px;
    width: 80px;
    left: 3%;
  }
  .pages .timeline__card {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding: 22px;
  }
  .pages .timeline .title {
    font-size: 18px;
    line-height: 28px;
  }
  .pages .timeline p {
    font-size: 14px;
    line-height: 20px;
  }
  .pages .timeline__track {
    left: 24px;
  }
  .pages .timeline__row {
    grid-template-columns: 48px 1fr;
    gap: 10px;
    min-height: auto;
    margin-bottom: 40px;
  }
  .pages .timeline__empty {
    display: none;
  }
  .pages .timeline__point {
    grid-column: 1;
    grid-row: 1;
  }
  .pages .timeline__card {
    grid-column: 2;
    max-width: 100%;
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .how-work__wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .how-work__arrow {
    padding-top: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    padding: 10px 0;
  }
  .how-work__icon {
    width: 170px;
    height: 170px;
  }
  .how-work__title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .btn {
    padding: 15px 25px;
  }
  .floating-whatsapp {
    bottom: 20px;
    right: 15px;
  }
  .footer .leaf-2 {
    top: -25%;
    width: 20px;
    left: 87%;
  }
  .footer .leaf-3 {
    top: -15%;
    left: 93%;
    width: 30px;
  }
  .footer__blocks {
    gap: 40px;
    padding: 100px 0 40px 0;
  }
  .footer__wrap {
    flex-direction: column;
    gap: 40px;
  }
  .footer__wrap-right {
    align-items: center;
    flex-direction: column-reverse;
  }
  .footer__top-left {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  .footer-menu__list a {
    font-size: 15px;
  }

  .footer .btns {
    display: flex;
    margin: 0 auto;
  }
  .footer__below {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
  .footer__below ul {
    grid-template-columns: repeat(1, 1fr);
  }

  .footer__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .footer-menu__list {
    display: flex;
    justify-content: end;
    flex-wrap: wrap;
    max-width: 100%;
    width: 100%;
    gap: 20px;
    row-gap: 15px;
    margin-top: 0px;
    justify-content: center;
  }

  .footer-menu__list a {
    font-size: 14px;
  }

  .main__container-general {
    max-width: 100%;
    width: 100%;
    padding: 0 0;
  }
  .main__blocks {
    max-width: 100%;
    width: 100%;
    padding: 300px 0 0 0;
  }

  .main .bg img {
    object-position: 60% center;
  }
  .main__content {
    max-width: 100%;
    width: 100%;
    gap: 25px;
    padding: 60px 20px 20px 20px;
  }
  .main__content-top h1 {
    font-size: 27px;
    line-height: 32px;
  }
  .main .btns a {
    min-width: auto;
  }
  .main .benefits {
    margin-top: 20px;
    flex-direction: column;
    align-items: start;
  }
  .main .leaf-1 {
    top: 15%;
    left: auto;
    right: 4%;
    width: 40px;
  }
  .main .leaf-2 {
    top: 7%;
    left: auto;
    right: 4%;
    width: 20px;
  }
  .main .leaf-3 {
    top: 24%;
    left: auto;
    right: 4.5%;
    width: 26px;
  }
  .benefits {
    margin-top: 20px;
    flex-direction: column;
    align-items: start;
  }
  .btns a {
    min-width: auto;
  }
  .why-us__blocks {
    gap: 35px;
  }
  .why-us .leaf-1 {
    height: 40px;
    width: 40px;
    left: auto;
    right: 7%;
  }
  .why-us .leaf-2 {
    height: 80px;
    width: 80px;
    left: 3%;
  }
  .why-us .section-heading {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }
  .contacts__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .contacts__item {
    padding: 30px 20px;
  }
  .contacts__info span {
    font-size: 20px;
  }
  .pages .services-sec__item {
    padding: 20px;
  }
  .pages .cards .section-heading p {
    font-size: 16px;
    line-height: 26px;
  }
  .about .text-block p,
  .cleaning-process .text-block p {
    font-size: 14px;
    line-height: 22px;
  }
  .cleaning-process .services-tabs {
    padding: 40px 0 60px 0;
    margin-bottom: 20px;
  }
  .cleaning-process .services-tabs .section-heading {
    margin-bottom: 40px;
  }
  .cleaning-process .services-tabs__nav {
    gap: 12px;
  }
  .cleaning-process .services-tabs__tab {
    padding: 8px 10px;
    font-size: 14px;
  }
  .cleaning-process .services-tabs__tab-icon {
    width: 35px;
    height: 35px;
  }
  .cleaning-process .services-tabs__tab-icon i {
    font-size: 14px;
  }
  .cleaning-process .services-card {
    padding: 30px 20px 20px 20px;
    gap: 40px;
  }
  .cleaning-process .services-card__title {
    line-height: 1.12;
    font-size: 26px;
  }
  .cleaning-process .services-card__text {
    font-size: 14px;
    line-height: 1.5;
  }
  .cleaning-process .services-card .benefits {
    margin-top: 0;
  }
  .cleaning-process .services-card .benefits li span {
    font-size: 14px;
  }
  .services-single .benefits {
    flex-direction: column;
    align-items: start;
    margin-top: 0;
  }
  .services-single .prices-service__list {
    gap: 24px;
  }
  .services-single .leafs-single {
    top: 10px;
    right: 30px;
  }
  .services-single .leafs-single .leaf-1 {
    width: 35px !important;
    right: 100%;
  }
  .services-single .leafs-single .leaf-2 {
    margin-top: 0;
    width: 15px;
  }
  .services-single .leafs-single .leaf-3 {
    top: 200%;
    width: 20px;
    left: 90%;
  }
}
@media (max-width: 668px) {
  .about__card {
    border-radius: 20px;
    padding: 10px;
    gap: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    z-index: 3;
    width: 120px;
    left: 30%;
    top: 50%;
  }
  .about__card h3 {
    font-size: 18px;
  }
  .about__card-icon img {
    min-width: auto;
  }
  .about__dots {
    width: 60px;
    height: 80px;
    background-image: radial-gradient(
      rgba(10, 108, 182, 0.4431372549) 2px,
      transparent 2px
    );
    z-index: 0;
    background-size: 12px 12px;
    opacity: 0.5;
  }
  .about__dots--top {
    top: 0;
    right: 0;
  }
  .pages .services-sec__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .services-single .video-reviews__grid {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
  .services-single .video-card iframe {
    height: 220px;
  }
  .reviews-page .video-reviews__grid {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-page .video-card iframe {
    height: 240px;
  }
}
@media (max-width: 620px) {
  .why-us {
    padding: 75px 0 50px 0;
    margin-top: -40px;
  }
  .why-us .leaf-1 {
    height: 30px;
    width: 30px;
    left: auto;
    right: 4%;
    top: 7%;
  }
  .why-us .leaf-2 {
    height: 35px;
    width: 35px;
    top: 0;
    left: 3%;
  }
  .pages .timeline .leaf-1 {
    height: 30px;
    width: 30px;
    left: auto;
    right: 4%;
    top: 9%;
  }
  .pages .timeline .leaf-2 {
    height: 35px;
    width: 35px;
    top: 3%;
    left: 4%;
  }
}
@media (max-width: 576px) {
  .services-single .section-heading p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px;
  }

  .services-single .benefits span {
    font-size: 14px;
    line-height: 30px;
    font-family: Outfit, sans-serif;
    font-weight: 400;
  }

  .pages .leafs {
    height: 100px;
  }
  .pages .leafs .leaf-1 {
    left: 30%;
    bottom: 25%;
    width: 60px;
  }
  .pages .leafs .leaf-2 {
    bottom: 70%;
    width: 25px;
    left: 45%;
  }
  .pages .leafs .leaf-3 {
    top: 70%;
    width: 40px;
    left: 52%;
  }
  .header .btns {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
  }
  .header .btn-contact {
    display: none;
  }
  .section-heading .title p,
  .section-heading .title *,
  .section-heading .title,
  .section-heading h1,
  .section-heading h2,
  .section-heading h3,
  .section-heading h4,
  .section-heading h5,
  .section-heading h6 {
    font-size: 26px !important;
    line-height: 32px !important;
  }

  .section-heading .title br,
  .section-heading h1 br,
  .section-heading h2 br,
  .section-heading h3 br,
  .section-heading h4 br,
  .section-heading h5 br,
  .section-heading h6 br {
    display: none;
  }
  .section-heading h1 {
    font-size: 26px;
    line-height: 28px;
  }
  .section-heading p {
    line-height: 20px;
    font-size: 14px;
  }
  .why-card ul li {
    font-size: 14px;
  }
  .why-us__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .why-us__stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .why-us__leaf {
    display: none;
  }
  .services-sec__blocks {
    padding: 80px 0 40px 0;
  }
  .services-sec__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .services-sec .title {
    font-size: 17px;
  }
  .faq {
    padding: 40px 0 40px 0;
  }
  .faq__title {
    font-size: 23px;
    line-height: 28px;
  }
  .faq__title br {
    display: none;
  }
  .faq__question p {
    font-size: 16px;
  }
  .faq__answer {
    max-width: 100%;
    font-size: 14px;
  }
  .quote {
    padding: 40px 0;
  }
  .quote__title {
    font-size: 23px;
    line-height: 28px;
  }
  .quote__title br {
    display: none;
  }
  .quote__row {
    grid-template-columns: 1fr;
  }
  .quote__field label {
    font-size: 12px;
  }
  .quote__input i {
    font-size: 14px;
  }
  .quote__input input {
    font-size: 14px;
  }
  .quote__input {
    height: 50px;
  }
  .quote__select select {
    font-size: 14px;
  }
  .quote__select i {
    font-size: 14px;
    right: 15px;
  }
  .quote__textarea i {
    font-size: 14px;
    right: 15px;
    top: 15px;
  }
  .quote__photo {
    height: 300px;
  }
  .quote__floating span {
    font-size: 12px;
  }
  .quote__floating strong {
    font-size: 25px;
  }
  .quote__floating {
    border-radius: 20px;
    width: 120px;
  }
  .quote__guarantee {
    padding: 20px;
  }
  .quote__guarantee-icon i {
    font-size: 28px;
  }
  .quote__guarantee-icon {
    width: 60px;
    height: 60px;
  }
  .quote__guarantee-content .title {
    font-size: 18px;
  }
  .quote__guarantee-content {
    gap: 7px;
    max-width: 70%;
  }
  .quote__features {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .before-after {
    padding: 40px 0;
  }
  .contacts {
    padding: 40px 0;
  }
  .contacts__item {
    max-width: 100%;
    width: 100%;
  }
  .contacts__info p {
    font-size: 14px;
  }
  .contacts__info a {
    font-size: 14px;
  }
  .contacts__info ul li {
    font-size: 14px;
  }
  .reviews-trust__google {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .reviews-trust__google svg {
    width: 25px;
    padding-top: 0;
  }
  .reviews-trust__stars {
    margin-left: 0;
    font-size: 14px;
    display: block;
  }
  .review-slide {
    padding: 20px;
    border-radius: 20px;
  }
  .review-slide__text {
    font-size: 16px;
  }
  .locations-page .locations-sec {
    padding: 40px 0;
  }
  .pages .cards {
    padding: 40px 0 60px 0;
  }
  .pages .timeline__track {
    left: 0;
    top: -50px;
  }
  .pages .timeline__dot {
    width: 20px;
    border: 3px solid #fff;
    height: 20px;
  }
  .pages .timeline__row {
    grid-template-columns: 1fr 80px 1fr;
  }
  .pages .timeline {
    padding: 40px 0 60px 0;
  }
  .pages .timeline__track {
    left: 0;
  }
  .pages .timeline__wrapper {
    margin-top: 70px;
  }
  .pages .timeline__row {
    grid-template-columns: 1fr;
    gap: 15px;
    min-height: auto;
    margin-bottom: 20px;
  }
  .pages .timeline__point {
    width: 15px;
    height: 15px;
    margin: auto;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #5d6687;
    opacity: 0.35;
    transition:
      opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
      -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition:
      opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition:
      opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
      -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 5;
    margin: 0 0 0 -7px;
  }
  .about .text-block h2,
  .about .text-block h3,
  .about .text-block h4,
  .about .text-block h5,
  .about .text-block h6,
  .cleaning-process .text-block h2,
  .cleaning-process .text-block h3,
  .cleaning-process .text-block h4,
  .cleaning-process .text-block h5,
  .cleaning-process .text-block h6 {
    font-size: 20px;
    line-height: 24px;
  }
  .about .text-block h2 br,
  .about .text-block h3 br,
  .about .text-block h4 br,
  .about .text-block h5 br,
  .about .text-block h6 br,
  .cleaning-process .text-block h2 br,
  .cleaning-process .text-block h3 br,
  .cleaning-process .text-block h4 br,
  .cleaning-process .text-block h5 br,
  .cleaning-process .text-block h6 br {
    display: none;
  }
  .services-single .text-block h2,
  .services-single .text-block h3,
  .services-single .text-block h4,
  .services-single .text-block h5,
  .services-single .text-block h6 {
    font-size: 23px;
    line-height: 28px;
  }
  .services-single .text-block h2 br,
  .services-single .text-block h3 br,
  .services-single .text-block h4 br,
  .services-single .text-block h5 br,
  .services-single .text-block h6 br {
    display: none;
  }
  .services-single .cards__list {
    gap: 20px;
  }
  .services-single .cards-icon {
    width: 50px;
  }
  .services-single .cards__card .title {
    font-size: 25px;
    line-height: 30px;
  }
  .services-single .cards__card p {
    line-height: 20px;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .how-work__icon {
    width: 150px;
    height: 150px;
  }
  .how-work__icon img {
    max-width: 65px;
  }
  .how-work__title {
    font-size: 28px;
  }
  .how-work__text {
    font-size: 17px;
  }
}
@media (max-width: 480px) {
  .before-after-dot,
  .reviews-dot {
    width: 7px;
    height: 7px;
  }
  .before-after-dot.active,
  .reviews-dot.active {
    width: 16px;
  }
  .main .leaf-1 {
    right: 9%;
  }
  .main .leaf-2 {
    top: 9%;
    right: 7%;
  }
  .main .leaf-3 {
    right: 7%;
    top: 21%;
  }
  .swiper-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 2.5px !important;
  }
  .swiper-pagination .swiper-pagination-bullet-active {
    width: 16px;
  }
  .locations-page .locations-sec__item {
    gap: 8px;
    padding: 8px 10px 8px 10px;
  }
  .locations-page .locations-sec .circle {
    min-width: 20px;
    width: 20px;
    height: 20px;
  }
  .locations-page .locations-sec .circle i {
    font-size: 10px;
  }
  .pages .pic {
    height: 240px;
  }
  .services-single {
    margin: 0 0;
    margin-top: 80px;
  }
  .services-single .cards__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .services-single .prices-service__name,
  .services-single .prices-service__price {
    line-height: 18px;
    font-size: 14px;
  }
  .services-single .prices-service__description {
    line-height: 18px;
    font-size: 12px;
  }
  .services-single .prices-service__note {
    line-height: 18px;
    margin: 32px auto 0;
    font-size: 14px;
  }
  .services-single .video-reviews__grid {
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
  }
  .reviews-page .video-reviews__grid {
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 425px) {
  .footer {
    margin: 0 0 !important;
  }
  .main__container-general {
    border-radius: 30px;
  }
  .before-after {
    margin: 0 0;
  }
  .contacts {
    margin: 0 0;
  }
  .contacts iframe {
    border-radius: 0;
  }
  .review-slide__info .name {
    font-size: 14px;
  }
  .locations-page .locations-sec__items {
    gap: 15px;
  }
  .pages .head {
    margin: 0 0;
  }
  .cleaning-process .services-tabs {
    margin: 0;
    margin-bottom: 40px;
  }
  .cleaning-process .services-tabs__tab {
    padding: 8px 10px;
    width: 100%;
  }
}
@media (max-width: 375px) {
  .reviews {
    margin: 0 0;
  }
  .reviews__blocks {
    padding: 40px 0;
  }
}

/* ==================== */

.review-slide__text-wrap {
  position: relative;
  padding: 0 0 20px 0;
}

.review-slide__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin: 0;
}

.review-slide__more {
  display: none;

  margin-top: 8px;
  padding: 0;

  border: 0;
  background: none;

  font: inherit;
  font-weight: 600;
  text-decoration: underline;
  font-size: 14px;
  cursor: pointer;

  font-size: 12px;
  justify-content: end;
  align-items: end;
  width: 100%;
}

.review-slide__text-wrap.is-expandable .review-slide__more {
  display: inline-flex;
}

.review-slide__text-wrap.is-expanded .review-slide__text {
  display: block;
  max-height: 95px;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
}

@media (max-width: 576px) {
  .review-slide__text-wrap.is-expanded .review-slide__text {
    max-height: 95px;
  }
}

/* Chrome, Edge, Safari */
.review-slide__text-wrap.is-expanded .review-slide__text::-webkit-scrollbar {
  width: 2px;
}

.review-slide__text-wrap.is-expanded
  .review-slide__text::-webkit-scrollbar-track {
  background: transparent;
}

.review-slide__text-wrap.is-expanded
  .review-slide__text::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}

.review-slide__text-wrap.is-expanded
  .review-slide__text::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.4);
}

/* ===================== */

.wpcf7-not-valid-tip {
  display: none;
}

.wpcf7-form-control-wrap {
  width: 100%;
  height: 100%;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

/* Input */
.quote__input:has(input.wpcf7-not-valid) {
  border-color: #e53935;
}

/* Select */
.quote__select:has(select.wpcf7-not-valid) {
  border-color: #e53935;
}

/* Textarea */
.quote__textarea:has(textarea.wpcf7-not-valid) {
  border-color: #e53935;
}

.wpcf7-response-output {
  display: none;
}

.quote-success-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.quote-success-modal.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.quote-success-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 35, 54, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.quote-success-modal__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  padding: 50px 40px 40px;
  text-align: center;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);

  transform: translateY(30px) scale(0.95);
  opacity: 0;

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}

.quote-success-modal.active .quote-success-modal__content {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.quote-success-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 50%;
  background: #f5f7f9;
  color: #18344b;

  cursor: pointer;
  transition: 0.3s ease;
}

.quote-success-modal__close:hover {
  background: #e9eef2;
  transform: rotate(90deg);
}

.quote-success-modal__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: linear-gradient(135deg, #fdeaf2 0%, #e9e9fd 50%, #c7e8fb 100%);

  color: #0d2336;
  font-size: 28px;
}

.quote-success-modal__content h3 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 500;
  color: #18344b;
}

.quote-success-modal__content p {
  max-width: 380px;
  margin: 0 auto 28px;

  color: #607281;
  font-size: 15px;
  line-height: 1.7;
}

.quote-success-modal__button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

/* -------------------------------- */

.contacts ul li {
  position: relative;
  padding-left: 20px;
  color: rgba(0, 0, 0, 0.65);
  font-size: 16px;
  font-family: Outfit, sans-serif;
  font-weight: 300;
  line-height: 22px;
}

.contacts__item:nth-child(1) ul li:after {
  background-color: rgba(0, 0, 0, 0.65);
}

.contacts ul li:after {
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.6);
}

.pages .why-card__icon {
  padding: 5px;
}

.why-card__icon img {
  opacity: 0.9;
}

.timeline__content {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

/* ============================= */

.service-area__blocks {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ti-widget.ti-thum .ti-col-4 .ti-review-item {
  -ms-flex: 0 0 33% !important;
  flex: 0 0 33% !important;
  max-width: 33% !important;
}

.reviews-thumbtack .reviews-thumbtack__blocks {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section-heading__description {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  margin-top: 20px;
}
.section-heading__description p,
.section-heading__description * {
  font-weight: 400;
  font-size: 17px;
}

@media (max-width: 1024px) {
  .section-heading__description p,
  .section-heading__description * {
    font-weight: 400;
    font-size: 14px;
  }
}

/* service-area-single */

.service-area-single .service-area-hero {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.service-area-single .service-area-hero__container {
  position: relative;
  display: flex;
  align-items: center;
}

/* ==========================================
   CONTENT
========================================== */

.service-area-single .service-area-hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 40px 80px 0px;
}

/* ==========================================
   EYEBROW
========================================== */

.service-area-single .service-area-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 22px;

  color: #264c95;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.service-area-single .service-area-hero__eyebrow-line {
  display: block;

  width: 28px;
  height: 3px;

  background: #264c95;
  border-radius: 10px;
}

/* ==========================================
   TITLE
========================================== */

.service-area-single .service-area-hero__title {
  max-width: 730px;
  margin: 0 0 24px;
  color: #000000;
  font-family: "Parkinsans", sans-serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 65px;
}

.service-area-single .service-area-hero__title strong {
  color: #264c95;
}

/* ==========================================
   TEXT
========================================== */

.service-area-single .service-area-hero__text {
  max-width: 560px;

  margin: 0 0 30px;

  color: #53627a;

  font-size: 17px;
  line-height: 1.65;
}

/* ==========================================
   BUTTON
========================================== */

.service-area-single .service-area-hero__button {
  display: inline-flex;
  align-items: center;
  gap: 18px;

  padding: 16px 22px 16px 24px;

  background: #0865ce;
  color: #fff;

  border-radius: 7px;

  box-shadow: 0 10px 25px rgba(8, 101, 206, 0.18);

  font-size: 15px;
  font-weight: 700;
  line-height: 1;

  text-decoration: none;

  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-area-single .service-area-hero__button i {
  font-size: 13px;

  transition: transform 0.3s ease;
}

.service-area-single .service-area-hero__button:hover {
  background: #0757b3;

  transform: translateY(-2px);

  box-shadow: 0 14px 30px rgba(8, 101, 206, 0.25);
}

.service-area-single .service-area-hero__button:hover i {
  transform: translateX(4px);
}

/* ==========================================
   FEATURES
========================================== */

.service-area-single .service-area-hero__features {
  display: flex;
  align-items: center;
  gap: 34px;

  margin-top: 38px;
}

.service-area-single .service-area-hero__feature {
  display: flex;
  align-items: center;
  gap: 11px;
}

.service-area-single .service-area-hero__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  color: #075fc4;

  font-size: 21px;
}

.service-area-single .service-area-hero__feature-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-area-single .service-area-hero__feature-content strong {
  color: #16233b;

  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.service-area-single .service-area-hero__feature-content span {
  color: #6d7789;

  font-size: 11px;
  line-height: 1.2;
}

/* ==========================================
   IMAGE
========================================== */

.service-area-single .service-area-hero__image {
  position: absolute;

  top: 0;
  right: 0;

  width: 53%;
  height: 100%;

  overflow: hidden;
}

.service-area-single .service-area-hero__image::before {
  content: "";

  position: absolute;
  z-index: 1;

  top: 0;
  left: -1px;

  width: 220px;
  height: 100%;

  background: linear-gradient(
    90deg,
    #fff 0%,
    rgba(255, 255, 255, 0.88) 20%,
    rgba(255, 255, 255, 0) 100%
  );
}

.service-area-single .service-area-hero__image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 1100px) {
  .service-area-single .service-area-hero__content {
    width: 100%;
    padding-left: 0px;
  }

  .service-area-single .service-area-hero__image {
    width: 50%;
  }

  .service-area-single .service-area-hero__features {
    gap: 20px;
  }

  .service-area-single .service-area-hero__feature {
    gap: 7px;
  }
}

@media (max-width: 1024px) {
  .service-area-single .service-area-hero__eyebrow {
    font-size: 12px;
  }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {
  .service-area-single .service-area-hero {
    min-height: auto;
  }

  .service-area-single .service-area-hero__container {
    display: flex;
    flex-direction: column;

    min-height: auto;
  }

  .service-area-single .service-area-hero__content {
    width: 100%;

    padding: 30px 0px 30px;
  }

  .service-area-single .service-area-hero__eyebrow {
    margin-bottom: 18px;
    letter-spacing: 1.2px;
  }

  .service-area-single .service-area-hero__title {
    max-width: 730px;
    margin: 0 0 15px;
    font-size: 40px;
    line-height: 45px;
  }

  .service-area-single .service-area-hero__text {
    margin-bottom: 25px;

    font-size: 16px;
  }

  .service-area-single .service-area-hero__features {
    flex-wrap: wrap;

    gap: 20px 25px;

    margin-top: 30px;
  }

  .service-area-single .service-area-hero__feature {
    min-width: 140px;
  }

  .service-area-single .service-area-hero__image {
    position: relative;

    width: 100%;
    height: 330px;
  }

  .service-area-single .service-area-hero__image::before {
    top: -1px;
    left: 0;

    width: 100%;
    height: 120px;

    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {
  .service-area-single .service-area-hero__content {
    padding: 0px;
  }

  .service-area-single .service-area-hero__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .service-area-single .service-area-hero__title {
    max-width: 730px;
    margin: 0 0 15px;
    font-size: 27px;
    line-height: 32px;
  }

  .service-area-single .service-area-hero__text {
    margin-bottom: 25px;
    line-height: 25px;
    font-size: 16px;
  }

  .service-area-single .service-area-hero__feature:last-child {
    grid-column: 1 / -1;
  }

  .service-area-single .service-area-hero__image {
    height: 280px;
  }
}

/* ======================================== */

.service-area-single .service-area-services {
  padding: 100px 0;
}

/* ==========================================
   CONTAINER
========================================== */

.service-area-single .service-area-services__container {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 46px;
  margin: 0 auto;
}

/* ==========================================
   HEADING
========================================== */

.service-area-single .service-area-services__heading {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: start;
}

.service-area-single .service-area-services__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #075fc4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-area-single .service-area-services__subtitle::before {
  content: "";
  width: 20px;
  height: 2px;
  background: #075fc4;
  border-radius: 10px;
}

.service-area-single .service-area-services__title {
  color: #000000;
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 0;
}

.service-area-single .service-area-services__description {
  color: #00000080;
  font-size: 16px;
  line-height: 27px;
}

.service-area-single .service-area-services__all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #075fc4;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.25s ease;
}

.service-area-single .service-area-services__all-link i {
  font-size: 11px;
}

.service-area-single .service-area-services__all-link:hover {
  gap: 12px;
}

/* ==========================================
   GRID
========================================== */

.service-area-single .service-area-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* ==========================================
   CARD
========================================== */

.service-area-single .service-area-services__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e5ebf3;
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
}

.service-area-single
  .service-area-services__card:hover
  .service-area-services__image
  img {
  transform: scale(1.05);
}

.service-area-single
  .service-area-services__card:hover
  .service-area-services__link {
  gap: 10px;
}

/* ==========================================
   IMAGE
========================================== */

.service-area-single .service-area-services__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-area-single .service-area-services__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* ==========================================
   ICON
========================================== */

.service-area-single .service-area-services__icon {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  background: #0865ce;

  border: 3px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;

  color: #fff;

  font-size: 16px;

  box-shadow: 0 5px 15px rgba(0, 70, 160, 0.2);
}

/* ==========================================
   CONTENT
========================================== */

.service-area-single .service-area-services__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 15px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-area-single .service-area-services__content .title {
  color: #14233d;
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 10px;
}

.service-area-single .service-area-services__content p {
  color: #68758a;
  font-size: 15px;
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  line-height: 20px;
}

/* ==========================================
   LINK
========================================== */

.service-area-single .service-area-services__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: #264c95;
  font-size: 14px;
  font-weight: 500;
  transition: gap 0.25s ease;
}

.service-area-single .service-area-services__link i {
  font-size: 9px;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 1100px) {
  .service-area-single .service-area-services__container {
    grid-template-columns: 220px 1fr;
  }

  .service-area-single .service-area-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {
  .service-area-single .service-area-services {
    padding: 50px 0;
  }

  .service-area-single .service-area-services__container {
    display: block;
  }

  .service-area-single .service-area-services__title {
    font-size: 32px;
  }

  .service-area-single .service-area-services__description {
    max-width: 450px;
  }

  .service-area-single .service-area-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 520px) {
  .service-area-single .service-area-services__grid {
    grid-template-columns: 1fr;
  }

  .service-area-single .service-area-services__image {
    height: 190px;
  }

  .service-area-single .service-area-services__content {
    padding: 22px 15px 20px;
  }

  .service-area-single .service-area-services__title {
    font-size: 26px;
    line-height: 32px;
  }
}

/* ============================================ */
.service-area-single .services-single {
  position: relative;
  background-color: transparent;
  background-image: none;
  margin: 0;
  border-radius: 30px;
  margin-top: 0;
}

.service-area-single .benefits li:after {
  display: none;
}

.service-area-single .benefits ul li {
  padding-left: 0 !important;
}

.service-area-single .services-single__details {
  display: none;
}

.service-area-single .services-single__info {
  max-width: 100%;
  width: 100%;
}

.services-single .pic-block {
  height: 500px;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.services-single .pic-block img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-area-single .video-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-area-single .cards-icon {
  width: 140px;
}

@media (max-width: 576px) {
  .service-area-single .cards-icon {
    width: 80px;
  }
}

@media (max-width: 668px) {
  .service-area-single .video-reviews__grid {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .service-area-single .video-reviews__grid {
    gap: 10px;
    grid-template-columns: repeat(1, 1fr);
  }
}
