* {
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  font-family: 'GT Eesti Pro Text';
  background-color: var(--light);
}

a {
  text-decoration: none;
}

.list-reset {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.container {
  max-width: 1400px;
  padding: 0 20px;
  margin: 0 auto;
}

/* colors */
:root {
  --lightText: #fff;
  --darkText1: #1C1C1C;
  --darkText2: #211F1D;
  --darkText3: #1B1B1B;

  --wh: #fff;
  --bl: #000;
  --orange: #AC873E;
  --light: #FAF5F0;
  --brown: #7A6B63;
}

.body--lock {
  overflow: hidden;
}

.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 90;
}

.header__overlay--active {
  opacity: 1;
  pointer-events: auto;
}

/* header */
.header {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  font-family: 'KyivTypeSans';
  transition: .5s ease;
  overflow: hidden;
}

.header::before {
  z-index: -1;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);

  pointer-events: none;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.header__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__top {
  position: relative;
  width: 100%;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.header__info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header__logo-link {
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.header__logo {
  max-width: 90px;
  display: flex;
  transition: .3s ease;
}

.blur {
  background-color: rgba(240, 231, 223, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border .3s ease;
}

.blur:hover {
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 4px 20px 4px 4px;
  border-radius: 90px;
  transition: .3s ease;
}

.rating__yandex-icon {
  display: block;
  width: 40px;
  height: 40px;

  background-image: url(../img/yandex_logo.svg);
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-position: center;

  padding: 8px;
  background-color: var(--wh);
  border-radius: 50%;
  box-shadow: 0px 2px 2px 0px rgba(58, 58, 58, 0.08);
}

.rating__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rating__value {
  font-weight: 500;
  font-size: 14px;
  line-height: 124%;
  letter-spacing: -3%;

  color: var(--lightText);
  transition: .3s ease;
}

.text-descr {
  font-weight: 400;
  font-size: 12px;
  line-height: 124%;
  letter-spacing: -1%;
  vertical-align: middle;

  color: var(--lightText);
  transition: .3s ease;
}

.header__info-description {
  max-width: 210px;
}

.rating-reviews {
  transition: .3s ease;
  color: rgba(255, 255, 255, 0.7);
}

.header__contact {
  display: flex;
  align-items: center;
}

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

  width: 40px;
  height: 40px;
  border-radius: 50%;

  box-shadow: 0px 2px 2px 0px rgba(58, 58, 58, 0.08);
  transition: .3s ease;
}

.header__social-icon {
  width: 20px;
  height: 20px;
  transition: .3s ease;
}

.header__social--whatsapp {
  margin-right: 8px;
}

.header__social--telegram {
  margin-right: 12px;
}

.header__contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;

  margin-right: 24px;
}

.header__phone {
  font-weight: 500;
  font-size: 14px;
  line-height: 124%;
  letter-spacing: -1%;
  color: var(--lightText);
  transition: .3s ease;
}

.header__worktime {
  font-weight: 100;
  transition: .3s ease;
}

.btn {
  display: flex;
  align-items: center;
  gap: 14px;
  border: none;
  border-radius: 999px;
  padding: 8px 8px 8px 16px;

  font-family: 'KyivTypeSans';
  cursor: pointer;

  box-shadow:
    1px 3px 7px 0px rgba(113, 87, 71, 0.2),
    5px 13px 13px 0px rgba(113, 87, 71, 0.17),
    11px 28px 18px 0px rgba(113, 87, 71, 0.1),
    19px 51px 22px 0px rgba(113, 87, 71, 0.03),
    29px 79px 24px 0px rgba(113, 87, 71, 0);


  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  transition: .3s ease;
}

.header__btn {
  letter-spacing: -0.7px;
  background: var(--wh);
}

.header__btn-text {
  color: var(--darkText3);
  transition: color .3s ease;
}

.btn__arrow {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  background: var(--wh);
  border-radius: 50%;
  transition: .3s ease;
}

.btn__arrow--orange {
  background: linear-gradient(180deg, #CDA658 -64.13%, #AA7D26 222.83%);
}

.btn__icon {
  width: 8px;
  height: 8px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: .3s ease;
}

.header__btn:hover {
  transform: translateY(2px);
  background: var(--orange)
}

.header__btn:hover .header__btn-text {
  color: var(--lightText);
}

.header__btn:hover .btn__arrow--orange {
  background: var(--wh);
}

.header__btn:hover .btn__icon {
  fill: var(--orange);
}


/* navigation */
.header__nav {
  display: flex;
  width: 100%;

  padding: 10px 15px 10px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  width: 100%;
}

.header__nav-item {
  position: relative;
}

.header__nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;

  font-weight: 500;
  font-size: 12px;
  line-height: 124%;
  letter-spacing: 13%;
  text-transform: uppercase;
  color: var(--lightText);

  background: none;
  border: none;
  padding: 5px 0;
  cursor: pointer;
}

.header__nav-text {
  font-family: 'KyivTypeSans';
  font-weight: 500;
  font-size: 12px;
  line-height: 124%;
  letter-spacing: 13%;
  text-transform: uppercase;
  color: var(--lightText);
}

.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 20px;
  background-color: var(--orange);
  transition: 0.3s ease;
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__nav-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s ease;
}

/* header light */
.header--open {
  background: var(--light);
  border-radius: 0 0 24px 24px;
}

.header--open .rating {
  background: var(--wh);
}

.header--open .rating__value,
.header--open .rating-reviews,
.header--open .header__info-description {
  color: var(--darkText3);
}

.header--open .header__social {
  background: var(--wh);
}

.header--open .blur:hover {
  border: 1px solid var(--darkText3);
}

.header--open .header__social--whatsapp .header__social-icon {
  fill: #75B252;
}

.header--open .header__social--telegram .header__social-icon {
  fill: #539CE0;
}

.header--open .header__phone {
  color: var(--darkText1);
}

.header--open .header__phone:hover {
  color: var(--orange);
}

.header--open .contact__worktime {
  color: rgba(28, 28, 28, 0.7);
}

.header--open .header__btn {
  background: linear-gradient(180deg, #CDA658 -64.13%, #AA7D26 222.83%);

}

.header--open .header__btn-text {
  color: var(--lightText);

  font-weight: 500;
  font-size: 12px;
  line-height: 124%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
}

.header--open .btn__arrow {
  width: 20px;
  height: 20px;
}

.header--open .header__contact-info {
  margin-right: 22px;
  gap: 0;
}

.header--open .header__social--whatsapp {
  margin-right: 4px;
}

.header--open .header__social--telegram {
  margin-right: 6px;
}

.header--open .btn__arrow {
  background: var(--wh);
}

.header--open .btn__icon {
  fill: var(--orange);
}

.header--open .header__nav {
  border-color: rgba(27, 27, 27, 0.12);
}

.header--open .header__nav-link,
.header--open .header__nav-text {
  color: var(--darkText3);
}

.header--open .header__nav-arrow {
  transform: rotate(180deg) translateY(-2px);
}

.header--open .header__nav-path {
  stroke: var(--darkText3);
}

/* header--scroll */
.header--scroll {
  background: var(--light);
}

.header--scroll .header__container {
  border-bottom: 1px solid rgba(192, 150, 69, 0.2)
}

.header__info-scroll,
.header--scroll .header__info {
  display: none;
}

.header__info-link {
  font-weight: 500;
  font-size: 12px;
  line-height: 124%;
  letter-spacing: 13%;
  text-transform: uppercase;

  cursor: pointer;
  color: var(--darkText3);
  padding: 12px;
  transition: .3s ease;
}

.header__info-link:hover {
  color: var(--orange);
}

.header--scroll .header__info-scroll {
  display: flex;
}

.header--scroll .header__top {
  height: auto;
  padding: 10px 0;
}

.header--scroll .header__social {
  background: var(--wh);
}

.header--scroll .blur:hover {
  border: 1px solid var(--darkText3);
}

.header--scroll .header__social--whatsapp .header__social-icon {
  fill: #75B252;
}

.header--scroll .header__social--telegram .header__social-icon {
  fill: #539CE0;
}

.header--scroll .header__phone {
  color: var(--darkText1);
}

.header--scroll .header__phone:hover {
  color: var(--orange);
}

.header--scroll .contact__worktime {
  color: rgba(28, 28, 28, 0.7);
}

.header--scroll .header__btn {
  background: linear-gradient(180deg, #CDA658 -64.13%, #AA7D26 222.83%);
  box-shadow: none;
}

.header--scroll .header__btn-text {
  color: var(--lightText);
}

.header--scroll .btn__arrow {
  background: var(--wh);
}

.header--scroll .btn__icon {
  fill: var(--orange);
}

.header--scroll .header__nav {
  display: none;
}

.header__burger-text {
  font-family: "KyivTypeSans";
  font-weight: 500;
  font-size: 13px;
  line-height: 124%;
  letter-spacing: 6%;
  vertical-align: middle;
  text-transform: uppercase;

  color: var(--darkText3);
}

.header__burger-menu {
  display: flex;
  align-items: center;
  background: var(--wh);
  cursor: pointer;
  gap: 6px;

  border: 1px solid transparent;
  box-shadow: 0px 2px 2px 0px #3A3A3A14;
  padding: 6.5px 8px;
  border-radius: 999px;
  transition: .3s ease;
}

.header__burger-menu:hover {
  border-color: var(--orange);
}

.header__burger-icon {
  display: block;
  position: relative;
  width: 24px;
  height: 24px;
}

.header__burger-icon::after {
  content: "";
  position: absolute;
  top: 8.8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: transparent;
  border: none;
  background-color: var(--darkText3);
  transition: .3s ease;
}

.header__burger-icon::before {
  content: "";
  position: absolute;
  bottom: 8.8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: transparent;
  border: none;
  background-color: var(--darkText3);
  transition: .3s ease;
}

.header--open .header__burger-icon::after {
  top: 11px;
  transform: translateX(-50%) rotate(45deg);
}

.header--open .header__burger-icon::before {
  transform: translateX(-50%) rotate(-45deg);
  bottom: 11px;
}



/* header__services */
.header__services {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 47px;

  max-height: 0;
  overflow: hidden;
  transition: .3s ease;
}

.header--open .header__services {
  padding: 24px 22px 64px 24px;
  max-height: 500px;
}

.header__services-nav {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.header__services-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.header__services-item {
  width: 292px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0;

  cursor: pointer;
  transition: .3s ease;
}

.header__services-arrow {
  width: 20px;
  height: 20px;
  transform: translateY(-2px);
  transition: .3s ease;
}

.header__services-text {
  display: flex;

  font-weight: 500;
  font-size: 11px;
  line-height: 142%;
  letter-spacing: 4%;
  vertical-align: middle;
  text-transform: uppercase;
  color: var(--darkText3);
  transition: .3s ease;
}

.header__services-item--active .header__services-arrow {
  fill: var(--orange);
}

.header__services-item--active .header__services-text {
  color: var(--orange);
}

.header__services-descr {
  display: flex;
  position: relative;
  width: 190px;
  height: 170px;
}

.header__services-sub {
  position: absolute;
  right: 0px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: .3s ease;

  opacity: 0;
  pointer-events: none;
  transition: .3s ease;
}

.header__services-sub--active {
  opacity: 1;
}

.header__services-sub-link {
  position: relative;
  padding: 7px 0 8px 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 124%;
  letter-spacing: -1%;
  vertical-align: middle;
  color: var(--darkText3);
  transition: .3s ease;
}

.header__services-sub-link:hover {
  color: var(--orange);
}

.header__services-sub-link::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 1px;
  border-radius: 20px;
  background-color: var(--orange);
  transition: 0.3s ease;
}

.header__services-sub-link:hover::after {
  width: 100%;
}

/* header__services */
/* services */
.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  align-items: center;
  gap: 15px;
}

.service-card {
  padding: 6px 0 3px 0;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.service-card__block-img {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 4px;
  border-radius: 16px;
  background-color: var(--wh);
  box-shadow: 0px 2px 2px 0px rgba(58, 58, 58, 0.08);
}

.service-card__image {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

.service-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.service-card__title {
  font-weight: 700;
  font-size: 15px;
  line-height: 144%;
  letter-spacing: -1%;
  color: var(--darkText3);
}

.service-card__text {
  margin-bottom: 16px;
  max-width: 167px;
  overflow: hidden;

  font-weight: 400;
  font-size: 15px;
  line-height: 144%;
  letter-spacing: -1%;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-wrap: balance;

  color: var(--darkText3);
}

.service-card__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 3px;
}

.service-card__link::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 98%;
  height: 1px;
  border-radius: 20px;
  background-color: rgba(172, 135, 62, 0.2);
  transition: 0.3s ease;
}

.service-card__link::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0%;
  height: 1px;
  border-radius: 20px;
  background-color: var(--orange);
  transition: 0.3s ease;
}

.service-card__link:hover::before {
  width: 98%;
}

.service-card__link-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 124%;
  letter-spacing: 1%;
  vertical-align: middle;
  text-transform: uppercase;
  color: var(--orange);
}

.service-card__link-arrow {
  fill: var(--orange);
}

/* burger__nav */
.burger__nav {
  max-height: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 48px;
}

.burger__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.burger__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.burger__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 0 14px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: .3s ease;
}

.burger__link:not(:last-child) {
  border-bottom: 1px solid rgba(172, 135, 62, 0.2)
}

.burger__link-text {
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 10%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #AE8F78;
  transition: 0.3s ease;
}

.burger__link:hover {
  border-color: var(--orange);
}

.burger__link:hover .burger__link-path {
  stroke: var(--orange);
}

.burger__link:hover .burger__link-text {
  color: var(--orange);
}

.burger__link-icon {
  display: block;
  height: 16px;
  width: 16px;
  transition: 0.3s ease;
}

.burger__link-path {
  stroke: #AFA29A;
  transition: .3s ease;
}

.burger__item--open .burger__link {
  border-bottom: none;
}

.burger__item--open .burger__link-text {
  color: var(--darkText3);
}

.burger__item--open .burger__link-path {
  stroke: var(--darkText3);
}

.burger__item--open .burger__link-icon {
  transform: rotate(180deg);
}

.burger__submenu {
  overflow: hidden;
  height: 0;

  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: height 0.35s cubic-bezier(.4, 0, .2, 1);
}

.burger__submenu-item {
  display: flex;
  width: 100%;
}

.burger__submenu-link {
  padding: 8px 12px;

  font-weight: 500;
  font-size: 14px;
  line-height: 124%;
  letter-spacing: -1%;
  vertical-align: middle;

  color: var(--darkText3);
  transition: .3s ease;
}

.burger__submenu-link:hover {
  color: var(--orange);
}

/* burger-contact */
.burger-contact {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;

  padding: 24px;
  border-radius: 20px;

  border: 1px solid #0000001F;
  box-shadow: 0px 2px 2px 0px #3A3A3A14;
}

.burger-contact__location {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.burger-contact__location-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.burger-contact__location-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;

  width: 32px;
  height: 32px;

  background-color: var(--wh);
  box-shadow: 0px 2px 2px 0px #3A3A3A14;

}

.burger-contact__icon {
  display: block;
  height: 16px;
  width: 16px;
}

.burger-contact__location-label {
  font-weight: 500;
  font-size: 11px;
  line-height: 142%;
  letter-spacing: 4%;
  vertical-align: middle;
  text-transform: uppercase;
  color: var(--brown);
}

.burger-contact__phone-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}

.burger-contact__phone-label {
  font-weight: 500;
  font-size: 11px;
  line-height: 142%;
  letter-spacing: 4%;
  vertical-align: middle;
  text-transform: uppercase;

  color: var(--brown);
}

.burger-contact__location-address {
  font-weight: 500;
  font-size: 11px;
  line-height: 142%;
  letter-spacing: 4%;
  vertical-align: middle;
  text-transform: uppercase;
  text-align: center;

  color: var(--darkText3);

  background-color: var(--wh);

  padding: 11px 16px;
  box-shadow: 0px 2px 2px 0px #3A3A3A14;
  border-radius: 40px;
  border: 1px solid transparent;
  transition: .3s ease;
}

.burger-contact__location-address:hover {
  border-color: var(--darkText3);
}

.burger-contact__phone {
  font-family: 'GT Eesti Pro Text';
  font-weight: 375;
  font-size: 40px;
  line-height: 94%;
  letter-spacing: -4%;
  text-wrap: nowrap;
  color: var(--darkText3);
  transition: .3s ease;
}

.burger-contact__phone:hover {
  color: var(--brown);
}

.burger-contact__schedule {
  font-weight: 500;
  font-size: 11px;
  line-height: 142%;
  letter-spacing: 4%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;

  color: var(--brown);
}

.burger-contact__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.burger-contact__btn .btn-text {
  letter-spacing: -1%;
  flex: 1;
}



/*  */
/* hero */
.hero {
  position: relative;
  padding-top: 204px;
  padding-bottom: 62px;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  border-radius: 0 0 16px 16px;

  transition: 0.5s ease;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background:
    linear-gradient(0deg, rgba(70, 50, 40, 0.3), rgba(70, 50, 40, 0.3)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}

.hero__circle-down {
  z-index: 5;
  position: absolute;
  bottom: -20px;
  left: 50%;
  background-color: var(--wh);
  padding: 11px;
  border-radius: 50%;
  border: 1px solid transparent;
  transform: translateX(-50%);

  box-shadow: 1px 3px 7px 0px #71574733,
    5px 13px 13px 0px #7157472B,
    11px 28px 18px 0px #7157471A,
    19px 51px 22px 0px #71574708,
    29px 79px 24px 0px #71574700;
  transition: .3s ease;
}

.hero__circle-down:hover {
  border-color: #7A6B63;
}

.hero__circel-icon {
  display: flex;
  width: 17px;
  height: 17px;
}

.hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 86px;
}

.hero__content {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__swiper {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero__slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__media,
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heading {
  font-weight: 375;
  font-size: 56.5px;
  line-height: 94%;
  letter-spacing: -4%;
  color: var(--darkText3);
}

.text {
  font-family: 'KyivTypeSans';
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: -1%;
}

.hero__heading {
  line-height: 101%;
  letter-spacing: -1%;
  color: var(--lightText);

  margin-bottom: 22px;
}

.hero__heading-line {
  position: relative;
}

.hero__heading-line::after {
  content: "";
  position: absolute;
  right: -62px;
  bottom: -28px;
  width: 182px;
  height: 20px;
  background-image: url("../img/hero_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.hero__text {
  margin-bottom: 30px;
  color: var(--lightText);

  max-width: 456px;
}

.hero__btn {
  position: relative;
  padding: 16px 24px 16px 30px;
  background: linear-gradient(180deg, #D4B26F -66.86%, #A87C25 180.08%);
  color: var(--wh);
  letter-spacing: -1%;
  overflow: hidden;
}

.hero__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  transition: opacity .3s ease;
}

.hero__btn:hover::before {
  opacity: 1;
}

.hero__btn .btn-text,
.hero__btn .btn__arrow {
  position: relative;
  z-index: 1;
}

.btn-text {
  color: var(--lightText);
  transition: color .3s ease;
}

.btn__icon--orange {
  fill: var(--orange);
  transition: fill .3s ease;
}

.hero__btn:hover .btn-text {
  color: var(--orange);
}

.hero__btn:hover .btn__arrow {
  background: var(--orange);
}

.hero__btn:hover .btn__icon--orange {
  fill: var(--wh);
}


/* hero__services */
.hero__services {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
}

.hero__service {
  position: relative;
  width: 144.4px;
  height: 138px;

  display: flex;
  align-items: center;
  border-radius: 20px;
  padding: 21px 23px 23px 22px;

  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  transition: .5s linear;
}

.hero__service:first-child {
  padding: 21px 10px 23px 18px;
}

.hero__service--active:first-child {
  padding: 3px;
}

.hero__service:hover {
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero__service--active {
  padding: 3px;
  width: 260px;
  background-color: var(--wh);
}

.hero__service--active:hover {
  border: 1px solid var(--orange);
}

.hero__service::before {
  content: "";
  position: absolute;
  bottom: -21px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 32px;
}

.hero__service--active::after {
  content: "";
  position: absolute;
  bottom: -21px;
  left: 0;

  width: 0%;
  height: 4px;
  background-color: var(--wh);
  border-radius: 32px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: active 5s linear forwards;
}

@keyframes active {
  to {
    width: 100%;
  }
}

.hero__service-content {
  width: 100px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.hero__service--active .hero__service-content {
  padding: 11px;
  gap: 14px;
}

.hero__service-number {
  font-family: "Golos Text";
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  font-weight: 500;
  font-size: 15px;
  line-height: 94%;
  letter-spacing: 2%;
  text-transform: uppercase;
  color: var(--lightText);
  transform: translateX(-4px);
  transition: .5s linear;
}

.hero__service--active .hero__service-number {
  border: 1px solid rgba(213, 175, 98, 0.6);
  color: var(--darkText3);
}

.hero__service-text {
  width: 108px;
  flex: 1;

  font-family: 'KyivTypeSans';
  font-weight: 400;
  font-size: 12px;
  line-height: 124%;
  letter-spacing: -1%;

  color: var(--lightText);
  transition: .5s linear;
}

.hero__service--active .hero__service-text {
  color: var(--darkText3);
  padding: 0;
}

.hero__service-image {
  width: 0px;
  opacity: 0;
  height: 130px;
  border-radius: 17px;
  object-fit: cover;
  transition: .5s linear;
}

.hero__service--active .hero__service-image {
  width: 124px;
  opacity: 1;
}

/* progress bar mobile */
.hero__progress {
  display: none;
  gap: 6px;
}

.hero__progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.16);
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.hero__progress-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: white;
  transform: scaleX(0);
  border-radius: 32px;
  transform-origin: left;
}

.hero__progress-bar--active::after {
  animation: heroProgress 5s linear forwards;
}

@keyframes heroProgress {
  to {
    transform: scaleX(1);
  }
}

.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  padding-bottom: 30px;

  background: transparent;

  z-index: 50;

  transform: translateY(120%);
  transition: transform .3s ease;
}

.mobile-cta--visible {
  transform: translateY(0);
}

.mobile-cta__btn {
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 302px;

  position: relative;
  padding: 16px 24px 16px 30px;
  background: linear-gradient(180deg, #D4B26F -66.86%, #A87C25 180.08%);
  letter-spacing: -1%;
  overflow: hidden;
}

.mobile-cta__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  transition: opacity .3s ease;
}

.mobile-cta__btn:hover::before {
  opacity: 1;
}

.mobile-cta__text {
  color: var(--lightText);
  transition: .3s ease;
}

.btn:hover .mobile-cta__text {
  color: var(--darkText3);
  z-index: 2;
}

.mobile-cta__btn:hover .btn__arrow {
  background: var(--orange);
}

.mobile-cta__btn:hover .btn__icon--orange {
  fill: var(--wh);
}

.header--scroll.header--open .header__logo {
  max-width: 70px;
}


/*  */
/* about */
.about {
  height: 1200px;
  background-color: var(--light);
}