@charset "UTF-8";
:root {
  --container-padding: 16px;
  --content-width: calc(1184px + (2 * var(--container-padding)));
  --grid-row-gap: 16px;
  --grid-column-gap: 16px;
}

@media (min-width: 460px) {
  :root {
    --grid-row-gap: 16px;
    --grid-column-gap: 16px;
    --container-padding: 16px;
  }
}

@media (min-width: 769px) {
  :root {
    --grid-row-gap: 24px;
    --grid-column-gap: 24px;
    --container-padding: 24px;
  }
}

@media (min-width: 1024px) {
  :root {
    --grid-row-gap: 24px;
    --grid-column-gap: 24px;
    --container-padding: 24px;
  }
}

.container {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  width: 100%;
  margin: 0 auto;
}

.container:not(.container--fluid) {
  max-width: var(--content-width);
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: var(--grid-row-gap) var(--grid-column-gap);
}

.grid.no-gap {
  grid-gap: 0 0;
}

.grid.no-row-gap {
  grid-row-gap: 0;
}

.grid.no-column-gap {
  grid-column-gap: 0;
}

.col-0 {
  grid-column-end: span 0;
}

.col-1 {
  grid-column-end: span 1;
}

.col-2 {
  grid-column-end: span 2;
}

.col-3 {
  grid-column-end: span 3;
}

.col-4 {
  grid-column-end: span 4;
}

.col-5 {
  grid-column-end: span 5;
}

.col-6 {
  grid-column-end: span 6;
}

.col-7 {
  grid-column-end: span 7;
}

.col-8 {
  grid-column-end: span 8;
}

.col-9 {
  grid-column-end: span 9;
}

.col-10 {
  grid-column-end: span 10;
}

.col-11 {
  grid-column-end: span 11;
}

.col-12 {
  grid-column-end: span 12;
}

@media (min-width: 460px) {
  .col-xs-0 {
    grid-column-end: span 0;
  }
  .col-xs-1 {
    grid-column-end: span 1;
  }
  .col-xs-2 {
    grid-column-end: span 2;
  }
  .col-xs-3 {
    grid-column-end: span 3;
  }
  .col-xs-4 {
    grid-column-end: span 4;
  }
  .col-xs-5 {
    grid-column-end: span 5;
  }
  .col-xs-6 {
    grid-column-end: span 6;
  }
  .col-xs-7 {
    grid-column-end: span 7;
  }
  .col-xs-8 {
    grid-column-end: span 8;
  }
  .col-xs-9 {
    grid-column-end: span 9;
  }
  .col-xs-10 {
    grid-column-end: span 10;
  }
  .col-xs-11 {
    grid-column-end: span 11;
  }
  .col-xs-12 {
    grid-column-end: span 12;
  }
  .hide-xs-up {
    display: none;
  }
}

@media (max-width: 459px) {
  .hide-xs-down {
    display: none;
  }
}

@media (min-width: 545px) {
  .col-sm-0 {
    grid-column-end: span 0;
  }
  .col-sm-1 {
    grid-column-end: span 1;
  }
  .col-sm-2 {
    grid-column-end: span 2;
  }
  .col-sm-3 {
    grid-column-end: span 3;
  }
  .col-sm-4 {
    grid-column-end: span 4;
  }
  .col-sm-5 {
    grid-column-end: span 5;
  }
  .col-sm-6 {
    grid-column-end: span 6;
  }
  .col-sm-7 {
    grid-column-end: span 7;
  }
  .col-sm-8 {
    grid-column-end: span 8;
  }
  .col-sm-9 {
    grid-column-end: span 9;
  }
  .col-sm-10 {
    grid-column-end: span 10;
  }
  .col-sm-11 {
    grid-column-end: span 11;
  }
  .col-sm-12 {
    grid-column-end: span 12;
  }
  .hide-sm-up {
    display: none;
  }
}

@media (max-width: 544px) {
  .hide-sm-down {
    display: none;
  }
}

@media (min-width: 769px) {
  .col-md-0 {
    grid-column-end: span 0;
  }
  .col-md-1 {
    grid-column-end: span 1;
  }
  .col-md-2 {
    grid-column-end: span 2;
  }
  .col-md-3 {
    grid-column-end: span 3;
  }
  .col-md-4 {
    grid-column-end: span 4;
  }
  .col-md-5 {
    grid-column-end: span 5;
  }
  .col-md-6 {
    grid-column-end: span 6;
  }
  .col-md-7 {
    grid-column-end: span 7;
  }
  .col-md-8 {
    grid-column-end: span 8;
  }
  .col-md-9 {
    grid-column-end: span 9;
  }
  .col-md-10 {
    grid-column-end: span 10;
  }
  .col-md-11 {
    grid-column-end: span 11;
  }
  .col-md-12 {
    grid-column-end: span 12;
  }
  .hide-md-up {
    display: none;
  }
}

@media (max-width: 768px) {
  .hide-md-down {
    display: none;
  }
}

@media (min-width: 1024px) {
  .col-lg-0 {
    grid-column-end: span 0;
  }
  .col-lg-1 {
    grid-column-end: span 1;
  }
  .col-lg-2 {
    grid-column-end: span 2;
  }
  .col-lg-3 {
    grid-column-end: span 3;
  }
  .col-lg-4 {
    grid-column-end: span 4;
  }
  .col-lg-5 {
    grid-column-end: span 5;
  }
  .col-lg-6 {
    grid-column-end: span 6;
  }
  .col-lg-7 {
    grid-column-end: span 7;
  }
  .col-lg-8 {
    grid-column-end: span 8;
  }
  .col-lg-9 {
    grid-column-end: span 9;
  }
  .col-lg-10 {
    grid-column-end: span 10;
  }
  .col-lg-11 {
    grid-column-end: span 11;
  }
  .col-lg-12 {
    grid-column-end: span 12;
  }
  .hide-lg-up {
    display: none;
  }
}

@media (max-width: 1023px) {
  .hide-lg-down {
    display: none;
  }
}

.btn-more {
  display: inline-block;
  background-color: #27B2D6;
  background-image: url("data:image/svg+xml,%0A%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.33331 8H12.6666' stroke='white' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 3.33337L12.6667 8.00004L8 12.6667' stroke='white' stroke-width='1.33333' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: right 24px center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  padding: 12px 47px 12px 24px;
  border-radius: 6px;
  transition: 0.25s ease;
}

.btn-more:hover {
  background-color: #159cba;
}

@media (max-width: 768px) {
  .btn-more {
    padding: 12px 30px 12px 15px;
    background-position: right 10px center;
  }
}

.btn-more.btn-more--secondary {
  background-color: #F8F7F5;
  border: 1px solid #E5E7EB;
  padding: 12px 24px;
  color: #0C1434;
}

@media (max-width: 768px) {
  .btn-more.btn-more--secondary {
    padding: 12px 15px;
  }
}

.services__section {
  padding: 105px 0 80px;
  background: #fff;
  color: #091333;
  overflow: hidden;
}

.services__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 72px;
}

.services__intro h5 {
  margin: 0 0 18px;
  color: #768091;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.services__intro h2 {
  margin: 0;
  color: #b18342;
  font-family: Georgia, serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.6px;
}

.services__header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 218px;
  min-height: 48px;
  padding: 13px 28px;
  border: 1px solid #b18342;
  border-radius: 5px;
  color: #b18342;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: 0.25s ease;
}

.services__header-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services__header-link:hover {
  background: #b18342;
  color: #fff;
}

.services .swiper-wrapper {
  align-items: stretch;
}

.services .swiper-slide {
  height: auto;
  padding-top: 28px;
}

.services__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  height: 100%;
  padding: 108px 34px 36px;
  background: #f8f8f7;
  border-radius: 14px;
}

.services__card h3 {
  margin: 0 0 20px;
  color: #2C2C2C;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.services__card p {
  margin: 0 0 36px;
  line-height: 23px;
  color: #4A5565;
  font-size: 13px;
  font-weight: 400;
}

.services__card-img {
  position: absolute;
  top: -28px;
  left: 18px;
  right: 18px;
  height: 82px;
  border-radius: 7px;
  overflow: hidden;
}

.services__card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services__card-icon {
  position: absolute;
  top: 27px;
  left: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(9, 19, 51, 0.12);
}

.services__card-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #164131;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #18aeda;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: 0.25s ease;
}

.services__more svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services__more:hover {
  color: #091333;
}

.services__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
}

.services__controls .swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  gap: 8px;
}

.services__controls .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0;
  background: #ded9cf;
  opacity: 1;
}

.services__controls .swiper-pagination-bullet-active {
  background: #b18342;
}

.services__prev, .services__next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 2px solid #25b7d7;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.25s ease;
}

.services__prev svg, .services__next svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #25b7d7;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: 0.25s ease;
}

.services__prev:hover, .services__next:hover {
  background: #25b7d7;
}

.services__prev:hover svg, .services__next:hover svg {
  stroke: #fff;
}

@media only screen and (max-width: 900px) {
  .services__section {
    padding: 72px 0 64px;
  }
  .services__header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 48px;
  }
}

@media only screen and (max-width: 520px) {
  .services__header-link {
    width: 100%;
  }
  .services__card {
    padding: 108px 28px 32px;
  }
  .services__card p {
    max-width: none;
  }
}

.implant__section {
  padding: 95px 0 105px;
  background-color: #F5F0E9;
  color: #fff;
  overflow: hidden;
}

.implant__intro {
  max-width: 820px;
  margin-bottom: 72px;
}

.implant__intro h5 {
  margin: 0 0 14px;
  color: #6f7888;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.implant__intro h2 {
  margin: 0 0 26px;
  color: #071547;
  font-family: Georgia, serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -2px;
}

.implant__intro p {
  margin: 0;
  color: #4A5565;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.implant__table {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #F3F4F6;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}

.implant__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 120px;
}

.implant__row:not(:last-child) {
  border-bottom: 1px solid #edf0f4;
}

.implant__row--head {
  min-height: 72px;
}

.implant__row--head .implant__col {
  display: flex;
  padding: 25px 26px;
  flex-direction: row;
  justify-content: flex-start;
  gap: 10px;
}

.implant__row--head .implant__col--situation,
.implant__row--head .implant__col--classic {
  background: #f7f8fa;
}

.implant__row--head .implant__col--situation span,
.implant__row--head .implant__col--classic span {
  font-weight: 500;
  font-size: 15px;
  line-height: 24px;
  color: #364153;
}

.implant__row--head .implant__col--modern {
  background: #0b143f;
  color: #fff;
}

.implant__row--head .implant__col--modern span {
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

.implant__row--head .implant__col--modern strong {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
}

.implant__col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  background: #fff;
}

.implant__col:not(:last-child) {
  border-right: 1px solid #edf0f4;
}

.implant__col h3 {
  margin: 0;
  color: #2a2a2a;
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.35;
}

.implant__col h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: #0B1333;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
}

.implant__col h4 span {
  color: #164131;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.implant__col p {
  margin: 0;
  color: #4e5a6d;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.55;
}

.implant__col--classic h4 {
  color: #6A7282;
}

.implant__col--classic h4 span {
  color: #98a2b3;
  font-size: 20px;
}

@media only screen and (max-width: 900px) {
  .implant__section {
    padding: 70px 0;
  }
  .implant__intro {
    margin-bottom: 45px;
  }
  .implant__table {
    border-radius: 12px;
  }
  .implant__row {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .implant__row--head {
    display: none;
  }
  .implant__col {
    padding: 24px;
  }
  .implant__col:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #edf0f4;
  }
  .implant__col--situation {
    background: #f7f8fa;
  }
  .implant__col--modern {
    background: #fff;
  }
  .implant__col--classic {
    background: #fafbfc;
  }
}

.technology__section {
  padding: 95px 0 90px;
  background: #fff;
  color: #202020;
  overflow: hidden;
}

.technology__intro {
  max-width: 780px;
  margin-bottom: 110px;
}

.technology__intro h5 {
  margin: 0 0 16px;
  color: #8b94a3;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

.technology__intro h2 {
  margin: 0 0 24px;
  color: #b18342;
  font-family: Georgia, serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.5px;
}

.technology__intro p {
  margin: 0;
  color: #4A5565;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

.technology__intro p strong {
  color: #334154;
  font-weight: 600;
}

.technology__slider {
  margin-bottom: 115px;
  overflow: visible;
}

.technology__slider .swiper-wrapper {
  align-items: stretch;
}

.technology__slider .swiper-slide {
  height: auto;
  padding-top: 58px;
}

.technology__card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 295px;
  padding: 84px 36px 34px;
  background: #f8f8f7;
  border-radius: 14px;
}

.technology__card h3 {
  margin: 0 0 24px;
  color: #262626;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.technology__card p {
  margin: 0 0 24px;
  color: #4A5565;
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
}

.technology__card p strong {
  color: #334154;
  font-weight: 600;
}

.technology__card p:last-of-type {
  margin-bottom: 0;
}

.technology__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  background: #b18342;
  border-radius: 12px;
}

.technology__card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.technology__card-img {
  position: absolute;
  top: -58px;
  right: 36px;
  width: 235px;
  height: 145px;
  border-radius: 14px;
  overflow: hidden;
}

.technology__card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.technology__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.technology__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 12px;
  background: #d9dde3;
  border-radius: 999px;
  color: #566273;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.technology__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
}

.technology__controls .swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  gap: 8px;
}

.technology__controls .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0;
  background: #ded9cf;
  opacity: 1;
}

.technology__controls .swiper-pagination-bullet-active {
  background: #b18342;
}

.technology__prev, .technology__next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 2px solid #25b7d7;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.25s ease;
}

.technology__prev svg, .technology__next svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #25b7d7;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: 0.25s ease;
}

.technology__prev:hover, .technology__next:hover {
  background: #25b7d7;
}

.technology__prev:hover svg, .technology__next:hover svg {
  stroke: #fff;
}

.technology__compare {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr;
  align-items: center;
  gap: 18px;
  padding: 36px;
  background: #f8f8f7;
  border-radius: 14px;
}

.technology__compare-title h3 {
  margin: 0 0 14px;
  color: #2c2c2c;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}

.technology__compare-title p {
  margin: 0;
  color: #4f5e6f;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.technology__compare-title p strong {
  color: #334154;
  font-weight: 600;
}

.technology__compare-card {
  min-height: 116px;
  padding: 22px 24px;
  border-radius: 12px;
  color: #fff;
}

.technology__compare-card h4 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
}

.technology__compare-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

.technology__compare-card--brown {
  background: #b18342;
}

.technology__compare-card--blue {
  background: #27b4d0;
}

@media only screen and (max-width: 1100px) {
  .technology__card {
    padding: 78px 28px 30px;
  }
  .technology__card h3 {
    font-size: 25px;
  }
  .technology__card-img {
    right: 28px;
    width: 205px;
    height: 128px;
  }
  .technology__compare {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 760px) {
  .technology__section {
    padding: 70px 0;
  }
  .technology__intro {
    margin-bottom: 42px;
  }
  .technology__slider {
    margin-bottom: 55px;
    overflow: hidden;
  }
  .technology__slider .swiper-slide {
    padding-top: 0;
  }
  .technology__card {
    min-height: auto;
    padding: 24px;
  }
  .technology__card-img {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 210px;
    margin: 0 0 26px;
    order: -1;
  }
  .technology__card-icon {
    margin-bottom: 22px;
  }
  .technology__compare {
    padding: 24px;
  }
}

.testimonials__section {
  padding: 105px 0 76px;
  background: radial-gradient(circle at 18% 30%, rgba(38, 53, 120, 0.65), transparent 34%), linear-gradient(90deg, #16214d 0%, #0a1233 100%);
  color: #fff;
  overflow: hidden;
}

.testimonials__intro {
  max-width: 1160px;
  margin-bottom: 66px;
}

.testimonials__intro h5 {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.testimonials__intro h2 {
  max-width: 1200px;
  margin: 0 0 24px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1.6px;
}

.testimonials__intro p {
  max-width: 1160px;
  margin: 0;
  color: #99A1AF;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.testimonials__card {
  min-height: 300px;
  padding: 34px 42px 38px;
  background: rgba(7, 13, 38, 0.86);
  border-radius: 14px;
}

.testimonials__card h3 {
  margin: -8px 0 20px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
}

.testimonials__card p {
  max-width: 560px;
  margin: 0 0 28px;
  color: #99A1AF;
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
}

.testimonials__card h4 {
  margin: 0;
  color: #C1A27A;
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.testimonials__quote {
  height: 78px;
  color: rgba(255, 255, 255, 0.11);
  font-family: Georgia, serif;
  font-size: 126px;
  font-weight: 700;
  line-height: 0.85;
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 54px;
}

.testimonials__controls .swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  gap: 8px;
}

.testimonials__controls .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
}

.testimonials__controls .swiper-pagination-bullet-active {
  background: #b18342;
}

.testimonials__prev, .testimonials__next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  cursor: pointer;
  transition: 0.25s ease;
}

.testimonials__prev svg, .testimonials__next svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.45);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: 0.25s ease;
}

.testimonials__prev:hover, .testimonials__next:hover {
  border-color: #b18342;
}

.testimonials__prev:hover svg, .testimonials__next:hover svg {
  stroke: #b18342;
}

@media only screen and (max-width: 900px) {
  .testimonials__section {
    padding: 78px 0 64px;
  }
  .testimonials__intro {
    margin-bottom: 42px;
  }
  .testimonials__card {
    min-height: auto;
    padding: 30px 28px 32px;
  }
  .testimonials__card h3 {
    font-size: 24px;
  }
  .testimonials__controls {
    margin-top: 34px;
  }
}

.specialist__section {
  padding: 95px 0 240px;
  background-color: #F5F0E9;
  color: #091333;
  overflow: hidden;
}

.specialist__wrap {
  display: grid;
  grid-template-columns: 470px minmax(0, 1fr);
  align-items: center;
  gap: 135px;
}

.specialist__image {
  position: relative;
  height: 590px;
  border-radius: 110px 110px 18px 18px;
  overflow: hidden;
}

.specialist__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specialist__name {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: 185px;
  padding: 18px 18px 16px;
  background: #fff;
  border-radius: 7px;
}

.specialist__name h3 {
  margin: 0 0 6px;
  color: #0B1333;
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.specialist__name p {
  margin: 0;
  color: #0B1333;
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}

.specialist__content {
  max-width: 650px;
}

.specialist__content h5 {
  margin: 0 0 18px;
  color: #6A7282;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.specialist__content h2 {
  margin: 0 0 22px;
  color: #10183f;
  font-family: Georgia, serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.7px;
}

.specialist__content h3 {
  margin: 0 0 36px;
  color: #091333;
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  font-family: "Inter", sans-serif;
}

.specialist__content p {
  margin: 0 0 28px;
  color: #4A5565;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

.specialist__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 75px;
  margin-top: 42px;
}

.specialist__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #364153;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

.specialist__feature span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.specialist__feature svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #b18342;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.specialist__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 58px;
}

.specialist__controls {
  display: flex;
  align-items: center;
  gap: 32px;
}

.specialist__controls .swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  gap: 8px;
}

.specialist__controls .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0;
  background: #d7d1c5;
  opacity: 1;
}

.specialist__controls .swiper-pagination-bullet-active {
  background: #b18342;
}

.specialist__prev, .specialist__next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 2px solid #25b7d7;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.25s ease;
}

.specialist__prev svg, .specialist__next svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #25b7d7;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: 0.25s ease;
}

.specialist__prev:hover, .specialist__next:hover {
  background: #25b7d7;
}

.specialist__prev:hover svg, .specialist__next:hover svg {
  stroke: #fff;
}

.specialist__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 142px;
  min-height: 44px;
  padding: 12px 24px;
  background: #25b7d7;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  transition: 0.25s ease;
}

.specialist__btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.specialist__btn:hover {
  background: #159cba;
}

@media only screen and (max-width: 1180px) {
  .specialist__wrap {
    grid-template-columns: 410px minmax(0, 1fr);
    gap: 70px;
  }
  .specialist__image {
    height: 540px;
  }
}

@media only screen and (max-width: 900px) {
  .specialist__section {
    padding: 70px 0 150px;
  }
  .specialist__wrap {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .specialist__image {
    max-width: 480px;
    height: 540px;
  }
  .specialist__content {
    max-width: none;
  }
  .specialist__features {
    gap: 18px 32px;
  }
}

@media only screen and (max-width: 620px) {
  .specialist__image {
    height: 430px;
    border-radius: 80px 80px 16px 16px;
  }
  .specialist__name {
    bottom: 20px;
    width: 170px;
  }
  .specialist__features {
    grid-template-columns: 1fr;
  }
  .specialist__bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 42px;
  }
}

h1,
h2,
h3,
h4 {
  font-family: Georgia, 'Times New Roman', Times, serif;
  margin: 0;
  padding: 0;
  font-weight: normal;
}

p {
  margin: 0;
  padding: 0;
}

h2 {
  font-size: 48px;
  line-height: 48px;
  color: #0B1333;
  margin-bottom: 24px;
}

h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #6A7282;
  margin: 0 0 24px;
}

:root {
  --font-size: 18px;
  --line-height: 28px;
  --font-weight: 400;
  --font-family: "Inter", sans-serif;
  --black: #111111;
  --white: #FFFFFF;
  --yellow: #FFE327;
}

*:focus,
*:focus-visible {
  outline: none;
}

html {
  scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size);
  overflow-x: hidden;
  color: var(--black);
  font-weight: 400;
  display: flex;
  flex-direction: column;
}

.relative {
  position: relative;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

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

.text-right {
  text-align: right;
}

p {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
}

@media (max-width: 768px) {
  p {
    font-size: 18px;
    line-height: 28px;
  }
}

main {
  flex: 1 0 auto;
}

.cc-window {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  border-radius: 12px;
}

.cc-theme-classic .cc-btn {
  border-radius: 0 !important;
}

@media (max-width: 768px) {
  .order-1 {
    order: 1;
  }
  .order-2 {
    order: 2;
  }
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

\:root {
  -moz-tab-size: 4;
  tab-size: 4;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

hr {
  height: 0;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  text-indent: 0;
  border-color: inherit;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
select {
  text-transform: none;
}

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

\:-moz-focusring {
  outline: none;
}

\:-moz-ui-invalid {
  box-shadow: none;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

.header {
  background-color: #F5F0E9;
}

.header .container {
  background: url("../media/kv-bg.png") no-repeat left -100px top 50px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

@media (max-width: 768px) {
  .header__inner {
    position: relative;
  }
}

.header__logo {
  width: 30%;
}

@media (max-width: 768px) {
  .header__logo {
    width: 50%;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 40%;
  justify-content: center;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.header__nav-item {
  font-weight: 400;
  font-size: 13.1px;
  line-height: 20px;
  color: #0B1333;
}

.header__nav-item a {
  color: #0B1333;
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    background-color: #FFFFFF;
    box-shadow: 0 16px 40px rgba(11, 19, 51, 0.14);
    z-index: 25;
  }
  .header__nav.is-open {
    display: block;
  }
  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin: 0;
    padding: 0;
  }
  .header__nav-item {
    width: 100%;
    font-size: 16px;
    line-height: 24px;
  }
  .header__nav-item a {
    display: block;
    width: 100%;
  }
}

.header__actions {
  width: 30%;
  display: flex;
  justify-content: flex-end;
}

@media only screen and (max-width: 768px) {
  .header__actions {
    width: 50%;
  }
}

.header__kv-inner {
  padding: 106px 0 152px;
}

@media only screen and (max-width: 900px) {
  .header__kv-inner {
    padding: 20px 0 50px;
  }
}

@media (max-width: 768px) {
  .header__kv-inner {
    text-align: center;
  }
}

.header__kv-inner .kv-inner {
  max-width: 420px;
}

@media only screen and (max-width: 900px) {
  .header__kv-inner .kv-inner {
    max-width: 100%;
  }
}

.header__kv-inner h1 {
  font-size: 72px;
  line-height: 70px;
  color: #0B1333;
  margin-bottom: 26px;
}

@media only screen and (max-width: 900px) {
  .header__kv-inner h1 {
    font-size: 48px;
    line-height: 48px;
  }
}

.header__kv-inner .header__kv-text {
  margin-bottom: 70px;
}

.header__kv-inner .btns {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 45px;
}

@media (max-width: 768px) {
  .header__kv-inner .btns {
    flex-direction: column;
    align-items: stretch;
  }
}

.header__kv-inner .kv-img {
  float: right;
  padding-right: 30px;
  position: relative;
}

@media only screen and (max-width: 900px) {
  .header__kv-inner .kv-img {
    float: none;
    display: inline-block;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .header__kv-inner .kv-img .header__kv-image {
    border-radius: 50%;
    width: 300px;
    height: 300px;
  }
}

.header__kv-inner .kv-img .header__kv-15let {
  position: absolute;
  right: -30px;
  top: 50px;
}

@media only screen and (max-width: 900px) {
  .header__kv-inner .kv-img .header__kv-15let {
    width: 80px;
    right: -10px;
  }
}

.header__kv-inner .kv-img .header__kv-35let {
  position: absolute;
  right: -30px;
  top: 240px;
}

@media only screen and (max-width: 900px) {
  .header__kv-inner .kv-img .header__kv-35let {
    width: 80px;
    right: -10px;
    top: 150px;
  }
}

.header__kv-inner .kv-img .header__kv-straumann {
  position: absolute;
  left: -50px;
  bottom: 36px;
}

@media only screen and (max-width: 900px) {
  .header__kv-inner .kv-img .header__kv-straumann {
    left: -30px;
    bottom: 20px;
  }
}

@media only screen and (max-width: 900px) {
  .header .order-1 {
    text-align: center;
  }
}

.kv-tags {
  display: flex;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #6A7282;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media (max-width: 768px) {
  .kv-tags {
    display: none;
  }
}

.kv-tags li {
  position: relative;
  margin: 0 0 0 36px;
}

.kv-tags li::before {
  content: '';
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: #99A1AF;
  border-radius: 50%;
}

.kv-tags li:first-child {
  margin-left: 0;
}

.kv-tags li:first-child::before {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 24px;
  height: 18px;
  cursor: pointer;
  margin: 12px 0 0 20px;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #0B1333;
  border-radius: 2px;
  transition: 0.3s ease;
}

.hamburger span:nth-child(1) {
  transform-origin: top left;
}

.hamburger span:nth-child(3) {
  transform-origin: bottom left;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
}

.footer__section {
  position: relative;
  padding: 234px 0 34px;
  background: #0b1438;
  color: #fff;
}

.footer__cta {
  position: absolute;
  top: -102px;
  left: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: calc(100% - 40px);
  max-width: 1180px;
  min-height: 205px;
  padding: 48px 90px;
  background: #2bb4d1;
  border-radius: 14px;
  transform: translateX(-50%);
}

.footer__cta-text h2 {
  margin: 0 0 24px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -1.4px;
}

.footer__cta-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  font-weight: 300;
  line-height: 28px;
}

.footer__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 174px;
  min-height: 52px;
  padding: 14px 28px;
  background: #0b1438;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.25s ease;
}

.footer__cta-btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__cta-btn:hover {
  background: #111d4b;
}

.footer__wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1.05fr 0.8fr;
  gap: 70px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__bg {
  position: absolute;
  left: 38%;
  bottom: -235px;
  z-index: -1;
  width: 600px;
  max-width: none;
  opacity: 0.04;
  pointer-events: none;
}

.footer__logo {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 36px;
  color: #fff;
  text-decoration: none;
}

.footer__logo span {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.6px;
}

.footer__logo small {
  margin-top: 4px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.footer__col p {
  max-width: 270px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

.footer__col h3 {
  margin: 0 0 30px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-family: "Inter", sans-serif;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__col li {
  margin: 0;
  padding: 0;
}

.footer__col a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.35;
  text-decoration: none;
  transition: 0.25s ease;
}

.footer__col a:hover {
  color: #fff;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.45;
}

.footer__contact-item svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer__contact-item a:hover {
  color: #fff;
}

.footer__hours {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__hours div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.35;
}

.footer__hours div:last-child {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__hours strong {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 300;
  white-space: nowrap;
}

.footer__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
}

.footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.32);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.58);
  transition: 0.25s ease;
}

.footer__social a svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer__social a:hover {
  background: #2bb4d1;
  color: #fff;
}

@media only screen and (max-width: 1180px) {
  .footer__cta {
    padding: 42px 54px;
  }
  .footer__wrap {
    grid-template-columns: 1.2fr 0.8fr 1fr 0.8fr;
    gap: 42px;
  }
}

@media only screen and (max-width: 920px) {
  .footer__section {
    padding-top: 190px;
  }
  .footer__cta {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    padding: 34px;
  }
  .footer__wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px 34px;
  }
  .footer__bg {
    left: 20%;
    width: 520px;
  }
}

@media only screen and (max-width: 640px) {
  .footer__section {
    padding-top: 210px;
  }
  .footer__cta {
    top: -125px;
    width: calc(100% - 32px);
    padding: 30px 24px;
    border-radius: 12px;
  }
  .footer__cta-btn {
    width: 100%;
  }
  .footer__wrap {
    grid-template-columns: 1fr;
    padding-bottom: 38px;
  }
  .footer__hours div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

.prices__section {
  padding: 105px 0 95px;
  background: #fff;
  color: #202020;
  overflow: hidden;
}

.prices__intro {
  max-width: 760px;
  margin: 0 auto 125px;
}

.prices__intro h5 {
  margin: 0 0 18px;
  color: #768091;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.prices__intro h2 {
  margin: 0 0 27px;
  color: #AA8144;
  font-family: Georgia, serif;
  font-size: clamp(24px, 4.5vw, 48px);
  font-weight: 400;
  line-height: 1.05;
}

.prices__intro p {
  font-family: 'Georgia';
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 27px;
  color: #6B5C4E;
}

.prices__list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid #d8cfc1;
}

.prices__item {
  border-bottom: 1px solid #d8cfc1;
}

.prices__item.is-active .prices__trigger i {
  background: #b18342;
  border-color: #b18342;
}

.prices__item.is-active .prices__trigger i::after {
  display: none;
}

.prices__item.is-active .prices__trigger i::before {
  background: #fff;
}

.prices__item.is-active .prices__content {
  max-height: 260px;
}

.prices__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 66px;
  padding: 0;
  background: transparent;
  border: 0;
  color: #202020;
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
}

.prices__trigger span {
  display: block;
}

.prices__trigger i {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 1px solid #202020;
  border-radius: 50%;
  transition: 0.25s ease;
}

.prices__trigger i::before, .prices__trigger i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: #202020;
  transform: translate(-50%, -50%);
  transition: 0.25s ease;
}

.prices__trigger i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.prices__trigger:hover i {
  background: #b18342;
  border-color: #b18342;
}

.prices__trigger:hover i::before, .prices__trigger:hover i::after {
  background: #fff;
}

.prices__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.prices__content-inner {
  padding: 4px 0 34px;
}

.prices__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 40px;
  padding: 8px 0;
  border-top: 1px solid #eee8df;
  color: #4e5a6d;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.prices__row strong {
  color: #b18342;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.prices__notice {
  max-width: 760px;
  margin: 52px auto 0;
  padding: 22px 30px 22px 36px;
  background: #b18342;
  border-radius: 8px;
}

.prices__notice p {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
}

.prices__notice p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: #fff;
  border-radius: 2px;
}

@media only screen and (max-width: 760px) {
  .prices__section {
    padding: 72px 0;
  }
  .prices__intro {
    margin-bottom: 58px;
  }
  .prices__trigger {
    min-height: 62px;
    font-size: 17px;
  }
  .prices__row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .prices__notice {
    margin-top: 38px;
    padding: 20px;
  }
}

.milestones__section {
  padding: 95px 0 120px;
  background: #fff;
  color: #202020;
  overflow: hidden;
}

.milestones__intro {
  margin-bottom: 78px;
  text-align: center;
}

.milestones__intro h5 {
  margin: 0 0 18px;
  color: #768091;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.milestones__intro h2 {
  margin: 0;
  color: #b18342;
  font-family: Georgia, serif;
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.6px;
}

.milestones__timeline {
  position: relative;
  max-width: 780px;
  min-height: 650px;
  margin: 0 auto;
}

.milestones__line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: #d8cfc1;
  transform: translateX(-50%);
}

.milestones__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  min-height: 210px;
}

.milestones__item--left .milestones__card {
  grid-column: 1 / 2;
  justify-self: end;
  text-align: right;
}

.milestones__item--left .milestones__number {
  grid-column: 2 / 3;
}

.milestones__item--right .milestones__number {
  grid-column: 2 / 3;
}

.milestones__item--right .milestones__card {
  grid-column: 3 / 4;
  justify-self: start;
  text-align: left;
}

.milestones__card {
  width: 300px;
  min-height: 160px;
  padding: 36px 36px 34px;
  background: #f8f8f7;
  border-radius: 14px;
}

.milestones__card h4 {
  margin: 0 0 8px;
  color: #b18342;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
}

.milestones__card h3 {
  margin: 0 0 22px;
  color: #2b2b2b;
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.milestones__card p {
  margin: 0;
  color: #4e5a6d;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
}

.milestones__number {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 34px;
  height: 34px;
  background: #fff;
  border: 1px solid #b18342;
  border-radius: 50%;
  color: #202020;
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

@media only screen and (max-width: 760px) {
  .milestones__section {
    padding: 72px 0;
  }
  .milestones__intro {
    margin-bottom: 52px;
  }
  .milestones__timeline {
    max-width: none;
    min-height: auto;
  }
  .milestones__line {
    left: 17px;
  }
  .milestones__item {
    grid-template-columns: 34px 1fr;
    gap: 20px;
    min-height: auto;
    margin-bottom: 28px;
  }
  .milestones__item:last-child {
    margin-bottom: 0;
  }
  .milestones__item--left .milestones__number, .milestones__item--right .milestones__number {
    grid-column: 1 / 2;
    grid-row: 1;
  }
  .milestones__item--left .milestones__card, .milestones__item--right .milestones__card {
    grid-column: 2 / 3;
    grid-row: 1;
    justify-self: stretch;
    width: auto;
    text-align: left;
  }
}

.story__section {
  padding: 105px 0 95px;
  color: #2b2b2b;
  background-color: #F5F0E9;
}

.story__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 540px;
  gap: 120px;
  align-items: start;
  margin-bottom: 120px;
}

.story__title h5 {
  margin: 0 0 18px;
  color: #768091;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.story__title h2 {
  max-width: 560px;
  margin: 0;
  color: #2C2C2C;
  font-family: Georgia, serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -2.4px;
}

.story__content {
  padding-top: 35px;
}

.story__content p {
  margin: 0 0 34px;
  color: #4A5565;
  font-size: 19px;
  font-weight: 400;
  line-height: 32px;
}

.story__content p:last-child {
  margin-bottom: 0;
}

.story__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 24px 50px rgba(20, 20, 20, 0.12);
  overflow: hidden;
}

.story__stat {
  min-height: 175px;
  padding: 42px 34px 34px;
}

.story__stat:not(:last-child) {
  border-right: 1px solid #e8e2d9;
}

.story__stat h3 {
  margin: 0 0 10px;
  color: #164131;
  font-family: Georgia, serif;
  font-size: 37px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;
}

.story__stat p {
  max-width: 180px;
  margin: 0;
  color: #697486;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

@media only screen and (max-width: 1100px) {
  .story__wrap {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-bottom: 70px;
  }
  .story__content {
    max-width: 720px;
    padding-top: 0;
  }
  .story__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .story__stat:nth-child(2) {
    border-right: 0;
  }
  .story__stat:nth-child(1), .story__stat:nth-child(2) {
    border-bottom: 1px solid #e8e2d9;
  }
}

@media only screen and (max-width: 640px) {
  .story__section {
    padding: 72px 0;
  }
  .story__wrap {
    margin-bottom: 46px;
  }
  .story__content p {
    font-size: 17px;
  }
  .story__stats {
    grid-template-columns: 1fr;
  }
  .story__stat {
    min-height: auto;
    padding: 30px 26px;
  }
  .story__stat:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #e8e2d9;
  }
}

.team__section {
  padding: 95px 0 210px;
  color: #091333;
  background-color: #F5F0E9;
}

.team__intro {
  max-width: 760px;
  margin: 0 auto 88px;
  text-align: center;
}

.team__intro h5 {
  margin: 0 0 18px;
  color: #768091;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.team__intro h2 {
  margin: 0 0 28px;
  color: #0B1333;
  font-family: Georgia, serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.8px;
}

.team__intro p {
  max-width: 520px;
  margin: 0 auto;
  color: #0B1333;
  font-size: 17px;
  font-weight: 600;
  line-height: 28px;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  max-width: 760px;
  margin: 0 auto;
}

.team__card {
  padding-bottom: 42px;
  border-bottom: 1px solid #e3d9c9;
}

.team__image {
  position: relative;
  height: 520px;
  margin-bottom: 34px;
  border-radius: 120px 120px 14px 14px;
  overflow: hidden;
}

.team__image img {
  display: block;
  width: 100%;
}

.team__label {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 164px;
  padding: 16px 16px 15px;
  background: #fff;
  border-radius: 0 7px 7px 0;
}

.team__label h3 {
  margin: 0 0 5px;
  color: #091333;
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.team__label p {
  margin: 0;
  color: #091333;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}

.team__content h3 {
  margin: 0 0 10px;
  color: #10183f;
  font-family: Georgia, serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.7px;
}

.team__content h4 {
  margin: 0 0 26px;
  color: #091333;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.team__content p {
  max-width: 350px;
  margin: 0 0 34px;
  color: #4e5a6d;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.75;
}

.team__features {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.team__feature {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #354156;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.team__feature span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.team__feature svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #b18342;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media only screen and (max-width: 900px) {
  .team__section {
    padding: 72px 0 150px;
  }
  .team__intro {
    margin-bottom: 52px;
  }
  .team__grid {
    gap: 28px;
  }
  .team__image {
    height: 440px;
  }
  .team__content h3 {
    font-size: 27px;
  }
}

@media only screen and (max-width: 700px) {
  .team__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .team__image {
    height: 500px;
  }
}

@media only screen and (max-width: 460px) {
  .team__image {
    height: 420px;
    border-radius: 90px 90px 14px 14px;
  }
  .team__label {
    width: 155px;
  }
}

.appointment__section {
  padding: 105px 0 220px;
  color: #091333;
  background-color: #F5F0E9;
}

.appointment__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 540px;
  gap: 120px;
  align-items: start;
  margin-bottom: 72px;
}

.appointment__title h5 {
  margin: 0 0 18px;
  color: #768091;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.appointment__title h2 {
  max-width: 540px;
  margin: 0;
  color: #2b2b2b;
  font-family: Georgia, serif;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -2.4px;
}

.appointment__lead {
  padding-top: 36px;
}

.appointment__lead p {
  max-width: 500px;
  margin: 0;
  color: #4e5a6d;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.55;
}

.appointment__wrap {
  display: grid;
  grid-template-columns: minmax(0, 590px) 310px;
  gap: 66px;
  align-items: start;
}

.appointment__form-card {
  padding: 34px 34px 32px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 24px 50px rgba(20, 20, 20, 0.12);
}

.appointment__form-card > h3 {
  margin: 0 0 28px;
  color: #b18342;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
}

.appointment__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.appointment__field label {
  display: block;
  margin: 0 0 8px;
  color: #1d2b3f;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.appointment__field label small {
  color: #697486;
  font-weight: 500;
}

.appointment__field p {
  margin: -4px 0 10px;
  color: #697486;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.appointment__field input,
.appointment__field textarea {
  display: block;
  width: 100%;
  min-height: 38px;
  padding: 0 14px;
  background: #fbfaf8;
  border: 1px solid #d8cfc1;
  border-radius: 6px;
  color: #1d2b3f;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  outline: none;
  transition: 0.25s ease;
}

.appointment__field input::placeholder,
.appointment__field textarea::placeholder {
  color: #99a2af;
}

.appointment__field input:focus,
.appointment__field textarea:focus {
  border-color: #2bb4d1;
  background: #fff;
}

.appointment__field textarea {
  height: 105px;
  padding: 14px;
  resize: none;
}

.appointment__counter {
  display: block;
  margin-top: 8px;
  color: #697486;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-align: right;
}

.appointment__upload {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 110px;
  margin: 0 !important;
  padding: 22px;
  background: #fbfaf8;
  border: 1px dashed #d8cfc1;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: 0.25s ease;
}

.appointment__upload input {
  display: none;
}

.appointment__upload svg {
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  fill: none;
  stroke: #4e5a6d;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.appointment__upload strong {
  display: block;
  margin-bottom: 5px;
  color: #1d2b3f;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.appointment__upload span {
  display: block;
  color: #697486;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
}

.appointment__upload.is-dragover {
  border-color: #2bb4d1;
  background: #fff;
}

.appointment__upload:hover {
  border-color: #2bb4d1;
  background: #fff;
}

.appointment__upload-file {
  min-height: 15px;
  margin-top: 4px;
  color: #4e5a6d !important;
  font-size: 11px;
}

.appointment__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.appointment__check input {
  width: 14px;
  height: 14px;
  margin: 2px 0 0;
  flex: 0 0 14px;
  accent-color: #2bb4d1;
}

.appointment__check span {
  color: #697486;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.appointment__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: fit-content;
  min-width: 118px;
  min-height: 38px;
  margin-top: 8px;
  padding: 11px 24px;
  background: #2bb4d1;
  border: 0;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.appointment__btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.appointment__btn:hover {
  background: #159cba;
}

.appointment__aside {
  padding-top: 4px;
}

.appointment__box {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: 0 0 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e3d9c9;
}

.appointment__box:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.appointment__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #2bb4d1;
  border-radius: 50%;
}

.appointment__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: #2bb4d1;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.appointment__box-content h3 {
  margin: 0 0 15px;
  color: #2b2b2b;
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.25;
}

.appointment__box-content p {
  max-width: 230px;
  margin: 0 0 14px;
  color: #697486;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.appointment__box-content ol,
.appointment__box-content ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.appointment__box-content li {
  color: #697486;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.appointment__box-content ul li {
  position: relative;
  padding-left: 21px;
}

.appointment__box-content ul li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #2bb4d1;
  font-size: 13px;
  font-weight: 600;
}

.appointment__box-content a {
  display: block;
  width: fit-content;
  color: #0BBCD4;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
  transition: 0.25s ease;
}

.appointment__box-content a:hover {
  color: #091333;
}

@media only screen and (max-width: 1100px) {
  .appointment__head {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 54px;
  }
  .appointment__lead {
    max-width: 620px;
    padding-top: 0;
  }
  .appointment__wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .appointment__aside {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
  .appointment__box {
    grid-template-columns: 1fr;
    padding: 0;
    margin: 0;
    border-bottom: 0;
  }
}

@media only screen and (max-width: 760px) {
  .appointment__section {
    padding: 72px 0;
  }
  .appointment__lead p {
    font-size: 17px;
  }
  .appointment__form-card {
    padding: 28px 22px;
  }
  .appointment__aside {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .appointment__box {
    grid-template-columns: 42px minmax(0, 1fr);
    padding-bottom: 30px;
    border-bottom: 1px solid #e3d9c9;
  }
  .appointment__box:last-child {
    border-bottom: 0;
  }
}

@media only screen and (max-width: 480px) {
  .appointment__box {
    grid-template-columns: 1fr;
  }
  .appointment__btn {
    width: 100%;
  }
}

.location__section {
  padding: 95px 0 220px;
  background: #fff;
  color: #091333;
  overflow: hidden;
}

.location__intro {
  max-width: 760px;
  margin-bottom: 62px;
}

.location__intro h5 {
  margin: 0 0 18px;
  color: #768091;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.location__intro h2 {
  margin: 0 0 24px;
  color: #b18342;
  font-family: Georgia, serif;
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.6px;
}

.location__intro p {
  margin: 0;
  color: #4e5a6d;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.location__intro p strong {
  color: #334154;
  font-weight: 600;
}

.location__map {
  position: relative;
  height: 700px;
  border-radius: 14px;
  overflow: hidden;
  background: #eef2f3;
}

.location__map > iframe {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location__map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.location__card {
  position: absolute;
  top: 50%;
  right: 82px;
  z-index: 2;
  width: 380px;
  padding: 38px 34px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 24px 50px rgba(20, 20, 20, 0.14);
  transform: translateY(-50%);
}

.location__item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

.location__item:last-child {
  margin-bottom: 0;
}

.location__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #e3d9c9;
  border-radius: 50%;
}

.location__icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: #697486;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location__text h3 {
  margin: 0 0 9px;
  color: #091333;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.location__text p {
  margin: 0 0 10px;
  color: #697486;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.location__text p:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 1100px) {
  .location__map {
    height: auto;
    padding: 34px;
  }
  .location__map > img {
    position: absolute;
    inset: 0;
  }
  .location__card {
    position: relative;
    top: auto;
    right: auto;
    margin-left: auto;
    transform: none;
  }
}

@media only screen and (max-width: 760px) {
  .location__section {
    padding: 72px 0 180px;
  }
  .location__intro {
    margin-bottom: 42px;
  }
  .location__map {
    padding: 22px;
    border-radius: 12px;
  }
  .location__card {
    width: 100%;
    padding: 28px 24px;
  }
  .location__item {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 26px;
  }
  .location__icon {
    width: 38px;
    height: 38px;
  }
}

.service-page__section {
  padding: 105px 0 220px;
  background: #f4efe8;
  color: #091333;
  overflow: hidden;
}

.service-page__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  gap: 120px;
  align-items: start;
  margin-bottom: 82px;
}

.service-page__hero-title h5 {
  margin: 0 0 18px;
  color: #768091;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.service-page__hero-title h1 {
  max-width: 680px;
  margin: 0;
  color: #2C2C2C;
  font-family: Georgia, serif;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -2.4px;
}

.service-page__hero-text {
  padding-top: 36px;
}

.service-page__hero-text p {
  margin: 0 0 30px;
  color: #4A5565;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
}

.service-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 44px;
  padding: 12px 24px;
  background: #2bb4d1;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  transition: 0.25s ease;
}

.service-page__btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-page__btn:hover {
  background: #159cba;
}

.service-page__layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.service-page__nav {
  position: sticky;
  top: 30px;
  padding: 28px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(20, 20, 20, 0.08);
}

.service-page__nav h3 {
  margin: 0 0 22px;
  color: #b18342;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
}

.service-page__nav ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-page__nav li {
  margin: 0;
  padding: 0;
}

.service-page__nav a {
  display: block;
  color: #4e5a6d;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: 0.25s ease;
}

.service-page__nav a:hover {
  color: #2bb4d1;
}

.service-page__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.service-page__block {
  padding: 48px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(20, 20, 20, 0.06);
  scroll-margin-top: 30px;
}

.service-page__block-head {
  margin-bottom: 38px;
}

.service-page__block-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  border: 1px solid #b18342;
  border-radius: 50%;
  color: #b18342;
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
}

.service-page__block-head h2 {
  margin: 0 0 20px;
  color: #2b2b2b;
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -1.4px;
}

.service-page__block-head p {
  max-width: 760px;
  margin: 0;
  color: #4e5a6d;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}

.service-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 42px;
  align-items: start;
}

.service-page__text h3 {
  margin: 0 0 14px;
  color: #091333;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.service-page__text p {
  margin: 0 0 28px;
  color: #4e5a6d;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.service-page__text p:last-child {
  margin-bottom: 0;
}

.service-page__text ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.service-page__text ul:last-child {
  margin-bottom: 0;
}

.service-page__text li {
  position: relative;
  padding-left: 24px;
  color: #4e5a6d;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.service-page__text li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #2bb4d1;
  font-size: 14px;
  font-weight: 600;
}

.service-page__card {
  padding: 28px;
  background: #f8f8f7;
  border-radius: 12px;
}

.service-page__card h4 {
  margin: 0 0 18px;
  color: #b18342;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
}

.service-page__card p {
  margin: 0;
  color: #4e5a6d;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
}

.service-page__card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-page__card li {
  position: relative;
  padding-left: 22px;
  color: #4e5a6d;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.service-page__card li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: #2bb4d1;
  font-size: 13px;
  font-weight: 600;
}

@media only screen and (max-width: 1100px) {
  .service-page__hero {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 58px;
  }
  .service-page__hero-text {
    max-width: 720px;
    padding-top: 0;
  }
  .service-page__layout {
    grid-template-columns: 1fr;
  }
  .service-page__nav {
    position: relative;
    top: auto;
  }
  .service-page__nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
  }
}

@media only screen and (max-width: 800px) {
  .service-page__section {
    padding: 72px 0;
  }
  .service-page__block {
    padding: 32px 24px;
  }
  .service-page__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .service-page__hero-text p {
    font-size: 17px;
  }
}

@media only screen and (max-width: 560px) {
  .service-page__nav {
    padding: 24px;
  }
  .service-page__nav ul {
    grid-template-columns: 1fr;
  }
  .service-page__btn {
    width: 100%;
  }
}
