@charset "UTF-8";

:root {
  --app-height: 100%;
  --accent-clr: #271E16;
  --secondary-clr: #DDC9AB;
  --light-clr: #FBF5EF;
  --golden-clr: #B88852;
  --white-clr: #FFFFFF;
  --black-clr: #000000;
  --black-opacity-clr: rgba(0, 0, 0, 0.5);
  --fw-400: 400;
  --fw-500: 500;
  --fw-700: 700;
  --fw-900: 900;
}

@font-face {
  font-family: GothamPro;
  font-display: swap;
  src: url("../fonts/GothamPro-Bold.woff2") format("woff2"), url("../fonts/GothamPro-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: GothamPro;
  font-display: swap;
  src: url("../fonts/GothamPro-Medium.woff2") format("woff2"), url("../fonts/GothamPro-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: GothamPro;
  font-display: swap;
  src: url("../fonts/GothamPro-Regular.woff2") format("woff2"), url("../fonts/GothamPro-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.woff") format("woff"), url("../fonts/icomoon.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-map:before {
  content: "\e900";
}

.icon-clock:before {
  content: "\e901";
}

.icon-mail:before {
  content: "\e902";
}

.icon-chevron-l:before {
  content: "\e903";
}

.icon-chevron-r:before {
  content: "\e904";
}

.icon-phone:before {
  content: "\e905";
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #000;
  line-height: 1;
  font-family: "GothamPro";
  font-size: 1.125rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "GothamPro";
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: transparent;
}

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

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

img {
  max-width: 100%;
  vertical-align: top;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

.container-fluid {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

/*
(i) Стилі будуть застосовуватись до
всіх класів, що містять *__container
Наприклад header__container, main__container і т.п.
Сніппет (HTML): cnt
*/

[class*=__container] {
  max-width: 80.625rem;
  margin: 0 auto;
  padding: 0 1.875rem;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: var(--fw-700);
}

.h1 {
  font-size: clamp(1.333rem, 2vw + 1rem, 3.111rem);
  line-height: 130%;
}

.section-title {
  font-size: clamp(2rem, 4vw + 1rem, 4rem);
  line-height: 125%;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  line-height: 178%;
  color: var(--black-clr);
  font-family: "GothamPro";
}

.text {
  font-size: 18px;
  line-height: 178%;
  color: var(--black-clr);
  font-family: "GothamPro";
}

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

.fw-md {
  font-weight: var(--fw-500);
}

.fw-bld {
  font-weight: var(--fw-700);
}

.text-gold {
  color: var(--golden-clr);
}

.text-white {
  color: var(--white-clr);
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 0.75rem 1.5625rem;
  font-weight: var(--fw-700);
  font-size: 1.125rem;
  line-height: 2rem;
  text-align: center;
  color: var(--secondary-clr);
  background: var(--accent-clr);
  border-radius: 16px;
  position: relative;
  -webkit-transition: color 0.25s;
  -o-transition: color 0.25s;
  transition: color 0.25s;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--secondary-clr);
  border-radius: 16px;
  -webkit-transition: border-color 0.25s;
  -o-transition: border-color 0.25s;
  transition: border-color 0.25s;
}

.btn._fw {
  width: 100%;
}

.phone-btn {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: var(--secondary-clr);
  border: 1px solid var(--accent-clr);
  -webkit-box-shadow: 0px 5px 25px rgba(39, 30, 22, 0.5);
          box-shadow: 0px 5px 25px rgba(39, 30, 22, 0.5);
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  z-index: 12;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  cursor: pointer;
}

.phone-btn._active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.phone-btn i {
  font-size: 3rem;
  -webkit-animation: callbackAnimation 1s infinite;
          animation: callbackAnimation 1s infinite;
  display: block;
}

@-webkit-keyframes callbackAnimation {
  0%, to {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }

  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}

@keyframes callbackAnimation {
  0%, to {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }

  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}

.tabs {
  margin-top: 1.5rem;
}

.tabs__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 3rem;
}

.tabs__title {
  padding: 1rem 4.0625rem;
  color: var(--black-opacity-clr);
  border-bottom: 2px solid var(--black-opacity-clr);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 178%;
}

.tabs__title._tab-active {
  color: var(--golden-clr);
  border-color: var(--golden-clr);
}

.tabs .tabs__body-grid {
  --tabs-gap-inline: 24px;
  --tabs-gap-block: 40px;
  -webkit-columns: 280px;
     -moz-columns: 280px;
          columns: 280px;
  gap: 1rem;
  counter-reset: grid;
}

.tabs .tabs__body-grid .tabs__card {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  margin-bottom: 1rem;
}

.tabs__body-mob {
  display: none;
}

.tabs__body-mob .tabs__content {
  padding: 0 2.0625rem;
  position: relative;
}

.tabs__body-mob .tabs__content._watcher-view .tabs__card {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.tabs__body-mob .tabs__content._watcher-view .tabs__card:nth-child(1) {
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

.tabs__body-mob .tabs__content._watcher-view .tabs__card:nth-child(2) {
  -webkit-transition-delay: 0.1s;
       -o-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.tabs__body-mob .tabs__content._watcher-view .tabs__card:nth-child(3) {
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.tabs__body-mob .tabs__content._watcher-view .tabs__card:nth-child(4) {
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.tabs__body-mob .tabs__content._watcher-view .tabs__card:nth-child(5) {
  -webkit-transition-delay: 0.4s;
       -o-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.tabs__body-mob .tabs__content._watcher-view .tabs__card:nth-child(6) {
  -webkit-transition-delay: 0.5s;
       -o-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.tabs__body-mob .tabs__content._watcher-view .tabs__card:nth-child(7) {
  -webkit-transition-delay: 0.6s;
       -o-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.tabs__body-mob .tabs__content._watcher-view .tabs__card:nth-child(8) {
  -webkit-transition-delay: 0.7s;
       -o-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.tabs__body-mob .tabs__content._watcher-view .tabs__card:nth-child(9) {
  -webkit-transition-delay: 0.8s;
       -o-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.tabs__body-mob .tabs__content._watcher-view .tabs__card:nth-child(10) {
  -webkit-transition-delay: 0.9s;
       -o-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.tabs__body-mob .tabs__content._watcher-view .tabs__card:nth-child(11) {
  -webkit-transition-delay: 1s;
       -o-transition-delay: 1s;
          transition-delay: 1s;
}

.tabs__body-mob .tabs__content._watcher-view .tabs__card:nth-child(12) {
  -webkit-transition-delay: 1.1s;
       -o-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

.tabs__body-mob .tabs__content._watcher-view .tabs__card:nth-child(13) {
  -webkit-transition-delay: 1.2s;
       -o-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.tabs__body-mob .tabs__content._watcher-view .tabs__card:nth-child(14) {
  -webkit-transition-delay: 1.3s;
       -o-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

.tabs__body-mob .tabs__content._watcher-view .tabs__card:nth-child(15) {
  -webkit-transition-delay: 1.4s;
       -o-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

.tabs__card {
  background: var(--light-clr);
  border: 2px solid var(--golden-clr);
  border-radius: 16px;
  padding: 1.5rem 1.5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  -o-transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}

.tabs__card._watcher-view {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.tabs__card._watcher-view:nth-child(1) {
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

.tabs__card._watcher-view:nth-child(2) {
  -webkit-transition-delay: 0.1s;
       -o-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.tabs__card._watcher-view:nth-child(3) {
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.tabs__card._watcher-view:nth-child(4) {
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.tabs__card._watcher-view:nth-child(5) {
  -webkit-transition-delay: 0.4s;
       -o-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.tabs__card._watcher-view:nth-child(6) {
  -webkit-transition-delay: 0.5s;
       -o-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.tabs__card._watcher-view:nth-child(7) {
  -webkit-transition-delay: 0.6s;
       -o-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.tabs__card._watcher-view:nth-child(8) {
  -webkit-transition-delay: 0.7s;
       -o-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.tabs__card._watcher-view:nth-child(9) {
  -webkit-transition-delay: 0.8s;
       -o-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.tabs__card._watcher-view:nth-child(10) {
  -webkit-transition-delay: 0.9s;
       -o-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.tabs__card._watcher-view:nth-child(11) {
  -webkit-transition-delay: 1s;
       -o-transition-delay: 1s;
          transition-delay: 1s;
}

.tabs__card._watcher-view:nth-child(12) {
  -webkit-transition-delay: 1.1s;
       -o-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

.tabs__card._watcher-view:nth-child(13) {
  -webkit-transition-delay: 1.2s;
       -o-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.tabs__card._watcher-view:nth-child(14) {
  -webkit-transition-delay: 1.3s;
       -o-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

.tabs__card._watcher-view:nth-child(15) {
  -webkit-transition-delay: 1.4s;
       -o-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

.tabs__card .tabs__card-title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 133%;
  color: var(--accent-clr);
  margin-bottom: 1.5rem;
}

.tabs__card .tabs__card-text {
  font-size: 1.125rem;
  line-height: 178%;
  color: var(--accent-clr);
  min-height: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: auto;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-5 {
  margin-top: 3rem;
}

.slider-desktop__nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 3;
  padding: 0 2rem;
  pointer-events: none;
}

.slider-desktop__nav > button {
  color: var(--golden-clr);
  font-size: 2.5rem;
  pointer-events: all;
}

body::after {
  content: "";
  background: rgba(39, 30, 22, 0.85);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  -o-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility 0.8s ease 0s;
  -o-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  padding: 2rem;
  width: 100%;
  max-width: 28.5rem;
  border-radius: 20px;
  background: var(--secondary-clr);
  border-radius: 24px;
}

.lock .popup__content {
  visibility: visible;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group:last-of-type {
  margin-bottom: 0;
}

.input {
  width: 100%;
  display: block;
  padding: 1rem;
  height: 3rem;
  border: 1px solid var(--accent-clr);
  border-radius: 16px;
  line-height: 1;
  color: var(--black-opacity-clr);
}

.input + .form__error {
  position: absolute;
  top: calc(100% + 4px);
  left: 1rem;
  color: #C8102E;
  font-size: 12px;
  line-height: 16px;
}

.input[placeholder]:not([data-placeholder-nohiden])::-webkit-input-placeholder {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::-moz-placeholder {
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden]):-ms-input-placeholder {
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::-ms-input-placeholder {
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::placeholder {
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-webkit-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-moz-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus:-ms-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-ms-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::placeholder {
  opacity: 0;
}

textarea.input {
  resize: none;
  padding: 1rem;
  resize: none;
}

.spollers {
  display: -ms-grid;
  display: grid;
  gap: 32px;
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
}

.spollers__item {
  border: 2px solid var(--golden-clr);
  border-radius: 16px;
  overflow: hidden;
}

.spollers__title {
  width: 100%;
  cursor: default;
  text-align: left;
  padding: 0.625rem 3.375rem 0.625rem 1rem;
  position: relative;
  font-size: 24px;
  line-height: 32px;
  font-weight: var(--fw-500);
  background-color: var(--white-clr);
}

.spollers__title._spoller-active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
}

._spoller-init .spollers__title {
  cursor: pointer;
  /*
  ._spoller-init & {
  	position: relative;
  	width: 100%;
  	text-align: left;
  	&::before,
  	&::after {
  		content: "";
  		position: absolute;
  		right: 0;
  		top: rem(12);
  		height: rem(1);
  		transition: all 0.3s ease 0s;
  		width: rem(10);
  		background-color: #000;
  	}
  	&::before {
  		transform: rotate(40deg);
  		right: rem(7);
  	}
  	&::after {
  		transform: rotate(-40deg);
  	}
  }
  &._spoller-active {
  	&::before {
  		transform: rotate(-40deg);
  	}
  	&::after {
  		transform: rotate(40deg);
  	}
  }
  */
}

._spoller-init .spollers__title::after {
  content: "";
  position: absolute;
  right: 1.125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width=%2720%27 height=%2720%27 viewBox=%270 0 20 20%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M0 10C0 15.52 4.48 20 10 20C15.52 20 20 15.52 20 10C20 4.48 15.52 0 10 0C4.48 0 0 4.48 0 10ZM12 10L8 14V6L12 10Z%27 fill=%27%23271E16%27/%3E%3C/svg%3E%0A");
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

._spoller-init .spollers__title._spoller-active::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
      -ms-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.spollers__body {
  padding: 0 1rem 1rem;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  background-color: var(--white-clr);
}

.spollers__body p,
.spollers__body li {
  font-size: 18px;
  line-height: 32px;
  color: #000000;
}

.body--policy .header {
  background-color: var(--accent-clr);
}

.policy {
  padding-top: 8.25rem;
  padding-bottom: 4rem;
}

.policy .policy__container {
  max-width: 810px;
}

.policy h1,
.policy h2 {
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: #000000;
  font-weight: var(--fw-700);
  margin-bottom: 2.5rem;
  margin-top: 2.5rem;
  text-align: left;
}

.policy h3,
.policy h4,
.policy h5 {
  font-size: 18px;
  line-height: 32px;
  color: #000000;
  font-weight: var(--fw-700);
  margin-bottom: 2.5rem;
  margin-top: 2.5rem;
}

.policy p,
.policy li {
  font-size: 18px;
  line-height: 32px;
  color: #000000;
}

.policy ul,
.policy ol {
  padding-left: 1.875rem;
}

.header {
  background-color: var(--accent-clr);
  color: var(--secondary-clr);
  position: absolute;
  width: 100%;
  z-index: 12;
}

.header._header-scroll {
  position: fixed;
  top: -200%;
  background-color: var(--accent-clr);
}

.header._header-show {
  top: 0;
  -webkit-transition: top 0.5s ease 0s;
  -o-transition: top 0.5s ease 0s;
  transition: top 0.5s ease 0s;
}

.header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary-clr);
}

.header .header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
    flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*gap: 100px;*/
    gap: 15px;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.header .header-logo {
  display: block;
  width: 6rem;
  margin-right: auto;
}

.header .header-logo img {
  max-width: 100%;
}

.header .header-nav--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
  row-gap: 1.25rem;
}

.header .header-nav--link {
  font-weight: var(--fw-700);
  font-size: 1.125rem;
  line-height: 2rem;
  -webkit-transition: color 0.25s;
  -o-transition: color 0.25s;
  transition: color 0.25s;
}

.header .header-nav--link._navigator-active {
  color: var(--golden-clr);
}

.header .header-nav--lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  position: relative;
}

.header .header-nav--lang::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6.5px 0 6.5px;
  border-color: var(--secondary-clr) transparent transparent transparent;
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  -o-transition: transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.header .header-dropdown--link {
  font-weight: var(--fw-700);
  -webkit-transition: color 0.25s;
  -o-transition: color 0.25s;
  transition: color 0.25s;
}

.header .header--item {
  position: relative;
}

.header .header-dropdown {
  position: absolute;
  top: -12px;
  left: -0.8rem;
  width: calc(100% + 2rem);
  -webkit-transition: opacity 0.25s, -webkit-transform 0.25s;
  transition: opacity 0.25s, -webkit-transform 0.25s;
  -o-transition: transform 0.25s, opacity 0.25s;
  transition: transform 0.25s, opacity 0.25s;
  transition: transform 0.25s, opacity 0.25s, -webkit-transform 0.25s;
  border: 1px solid var(--secondary-clr);
  background-color: var(--accent-clr);
  border-radius: 16px;
  padding: 3rem 0.75rem 0.5rem;
  /*opacity: 0;*/
    display: none;
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
  z-index: 12;
}

.header .header-dropdown--link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  padding: 0.75rem 0;
}

.header .header-nav--lang img,
.header .header-dropdown img {
  width: 1.5rem;
  height: 1rem;
}

.header .header-phones--link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.125rem;
  line-height: 2rem;
  font-weight: var(--fw-500);
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  -webkit-transition: color 0.25s;
  -o-transition: color 0.25s;
  transition: color 0.25s;
}

.header .header-phones--link i {
  font-size: 1.5rem;
}

.header .header-nav--lang {
  position: relative;
  z-index: 13;
}

.header .header-nav--lang > * {
  pointer-events: none;
}

.header .has-child.active .header-nav--link {
  color: var(--golden-clr);
}

.header .has-child.active .header-dropdown {
  /*opacity: 1;*/
    display: block;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.header .has-child.active .header-nav--lang::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.header-phones {
    margin-left: auto;
}

.icon-menu {
  display: none;
}

/*
*/

.footer {
  background-color: var(--accent-clr);
}

.footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: var(--secondary-clr);
  padding: 2rem 0 1.5rem;
  gap: 40px;
}

.footer__contacts .footer__link {
  font-weight: var(--fw-500);
  font-size: 1.125rem;
  line-height: 178%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
}

.footer__contacts .footer__link i {
  font-size: 1.75rem;
}

.footer__contacts a.footer__link {
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

.footer__bottom {
  background-color: var(--black-clr);
  padding: 1rem 0;
}

.footer__bottom .footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__bottom div,
.footer__bottom a {
  font-size: 14px;
  line-height: 114%;
  color: var(--white-clr);
}

.footer__bottom a {
  text-decoration: underline;
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
}

.footer__map .footer__link {
  max-width: 580px;
}

.no-webp .hero{
  background-image: url("../img/hero.jpg"); }

.hero {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  margin-top: 6rem;
  padding-top: 8.25rem;
  color: var(--white-clr);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.hero .hero__container {
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(39, 30, 22, 0.85)), to(rgba(39, 30, 22, 0.85)));
  background: -o-linear-gradient(bottom, rgba(39, 30, 22, 0.85), rgba(39, 30, 22, 0.85));
  background: linear-gradient(0deg, rgba(39, 30, 22, 0.85), rgba(39, 30, 22, 0.85));
}

.webp .hero {
  background-image: url("../img/hero.webp");
}

.hero .hero-row {
  position: relative;
  z-index: 2;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 444px;
  grid-template-columns: 1fr 444px;
  -webkit-column-gap: 150px;
     -moz-column-gap: 150px;
          column-gap: 150px;
}

.hero .hero-caption {
  padding: 5.625rem 0 7.5rem;
}

.hero .hero-caption .h1 {
  margin-bottom: 1.5rem;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateX(-100px);
      -ms-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}

.hero .hero-caption .h1 span {
  color: var(--secondary-clr);
}

.hero .hero-caption .hero-btn {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateX(-100px);
      -ms-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}

.hero .hero-caption .btn {
  max-width: 392px;
}

.hero .hero-text {
  font-size: 18px;
  line-height: 32px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateX(-100px);
      -ms-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}

.hero .hero-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.hero .hero-img img {
  max-width: 100%;
}

.hero-counts {
  background-color: var(--secondary-clr);
  z-index: 3;
  position: absolute;
  bottom: -75px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(80% - 1.875rem);
  border-radius: 32px;
  padding: 1rem 3.25rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
  opacity: 0;
}

.hero-counts .hero-counts--item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 192px;
          flex: 0 0 192px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero-counts .hero-counts--title {
  font-size: 4.5rem;
  line-height: 150%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: var(--accent-clr);
}

.hero-counts .hero-counts--title span {
  font-size: 1rem;
  line-height: 24px;
  text-transform: uppercase;
  display: block;
  margin-top: 0.625rem;
  font-weight: 900;
}

.hero-counts .hero-counts--footer {
  color: var(--accent-clr);
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 130%;
}

.loaded .hero .h1,
.loaded .hero .hero-text,
.loaded .hero .hero-btn {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.loaded .hero .hero-counts {
  opacity: 1;
  -webkit-transition-delay: 1100ms;
       -o-transition-delay: 1100ms;
          transition-delay: 1100ms;
}

.loaded .hero .h1 {
  -webkit-transition-delay: 500ms;
       -o-transition-delay: 500ms;
          transition-delay: 500ms;
}

.loaded .hero .hero-text {
  -webkit-transition-delay: 700ms;
       -o-transition-delay: 700ms;
          transition-delay: 700ms;
}

.loaded .hero .hero-btn {
  -webkit-transition-delay: 900ms;
       -o-transition-delay: 900ms;
          transition-delay: 900ms;
}

.services {
  padding: 9rem 0 5rem;
}

.services-swiper {
  position: relative;
}

.services-swiper-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
}

.services-swiper-navigation button {
  outline: none;
  color: var(--golden-clr);
  pointer-events: all;
  width: 2.5rem;
  height: 2.5rem;
}

.services-swiper-navigation .services-button-prev {
  text-align: left;
}

.services-swiper-navigation .services-button-next {
  text-align: right;
}

.about {
  padding: 4.5rem 0 5rem;
  background-color: var(--light-clr);
}

.about__row {
  --about-gap-inline: 128px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 392px 1fr;
  grid-template-columns: 392px 1fr;
  -webkit-column-gap: var(--about-gap-inline);
     -moz-column-gap: var(--about-gap-inline);
          column-gap: var(--about-gap-inline);
}

.about__row .about__img {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateX(-100px);
      -ms-transform: translateX(-100px);
          transform: translateX(-100px);
  opacity: 0;
}

.about__row .about__img img {
  top: 4.5rem;
  position: sticky;
  max-width: 100%;
}

.about__row .about__content {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateX(100px);
      -ms-transform: translateX(100px);
          transform: translateX(100px);
  opacity: 0;
}

.about__subtitle {
  font-size: 24px;
  line-height: 48px;
}

.about__text {
  font-size: 1.125rem;
  line-height: 178%;
}

.about__img._watcher-view,
.about__content._watcher-view {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.certificates {
  padding: 4rem 0 6rem;
  background-color: var(--light-clr);
  position: relative;
}

.certificates__slider {
  position: relative;
}

.certificates__slider::before,
.certificates__slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 392px;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#FBF5EF), to(rgba(251, 245, 239, 0)));
  background: -o-linear-gradient(left, #FBF5EF 0%, rgba(251, 245, 239, 0) 100%);
  background: linear-gradient(90deg, #FBF5EF 0%, rgba(251, 245, 239, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.certificates__slider::before {
  left: 0;
}

.certificates__slider::after {
  right: 0;
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.certificates__slider .certificates__slide {
  --certificate-slide-width: 400px;
  width: var(--certificate-slide-width);
}

.certificates__slider .certificates__slide img {
  display: block;
  margin: 0 auto;
}

.reviews {
  padding: 4rem 0 5rem;
  background-color: var(--light-clr);
  position: relative;
}

.reviews__slider {
  position: relative;
}

.reviews__slider::before,
.reviews__slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 392px;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#FBF5EF), to(rgba(251, 245, 239, 0)));
  background: -o-linear-gradient(left, #FBF5EF 0%, rgba(251, 245, 239, 0) 100%);
  background: linear-gradient(90deg, #FBF5EF 0%, rgba(251, 245, 239, 0) 100%);
  z-index: 1;
  opacity: 0.9;
  pointer-events: none;
}

.reviews__slider::before {
  left: 0;
}

.reviews__slider::after {
  right: 0;
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.reviews__card {
  background: var(--white-clr);
  border: 2px solid var(--golden-clr);
  border-radius: 16px;
  overflow: hidden;
}

.reviews__card .reviews__card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 0.5rem;
}

.reviews__card .reviews__card-header-img {
  width: 5rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 5rem;
          flex: 0 0 5rem;
  height: 5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--golden-clr);
}

.reviews__card .reviews__card-header-img img {
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.reviews__card .reviews__card-header-text p:first-of-type {
  font-size: 18px;
  line-height: 89%;
  font-weight: var(--fw-500);
  color: var(--black-clr);
  margin-bottom: 0.75rem;
}

.reviews__card .reviews__card-header-text p:last-of-type {
  font-size: 16px;
  line-height: 16px;
}

.reviews__card .reviews__card-body {
  padding: 1rem;
}

.reviews__card .reviews__card-body p {
  font-size: 12px;
  line-height: 16px;
  color: var(--black-clr);
}

.why {
  position: relative;
  padding: 4.5rem 0 10rem;
  overflow: hidden;
}

.why::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(39, 30, 22, 0.85)), to(rgba(39, 30, 22, 0.85))), url("../img/why.webp");
  background: -o-linear-gradient(bottom, rgba(39, 30, 22, 0.85), rgba(39, 30, 22, 0.85)), url("../img/why.webp");
  background: linear-gradient(0deg, rgba(39, 30, 22, 0.85), rgba(39, 30, 22, 0.85)), url("../img/why.webp");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.why .why__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 3;
  position: relative;
  padding-top: 12.5rem;
}

.why .why__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5rem;
  opacity: 0;
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  -o-transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}

.why .why__item._watcher-view {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.why .why__item._watcher-view:nth-child(1) {
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

.why .why__item._watcher-view:nth-child(2) {
  -webkit-transition-delay: 0.1s;
       -o-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.why .why__item._watcher-view:nth-child(3) {
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.why .why__item._watcher-view:nth-child(4) {
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.why .why__item._watcher-view:nth-child(5) {
  -webkit-transition-delay: 0.4s;
       -o-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.why .why__item._watcher-view:nth-child(6) {
  -webkit-transition-delay: 0.5s;
       -o-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.why .why__item._watcher-view:nth-child(7) {
  -webkit-transition-delay: 0.6s;
       -o-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.why .why__item._watcher-view:nth-child(8) {
  -webkit-transition-delay: 0.7s;
       -o-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.why .why__item._watcher-view:nth-child(9) {
  -webkit-transition-delay: 0.8s;
       -o-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.why .why__item._watcher-view:nth-child(10) {
  -webkit-transition-delay: 0.9s;
       -o-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.why .why__item._watcher-view:nth-child(11) {
  -webkit-transition-delay: 1s;
       -o-transition-delay: 1s;
          transition-delay: 1s;
}

.why .why__item._watcher-view:nth-child(12) {
  -webkit-transition-delay: 1.1s;
       -o-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

.why .why__item._watcher-view:nth-child(13) {
  -webkit-transition-delay: 1.2s;
       -o-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.why .why__item._watcher-view:nth-child(14) {
  -webkit-transition-delay: 1.3s;
       -o-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

.why .why__item._watcher-view:nth-child(15) {
  -webkit-transition-delay: 1.4s;
       -o-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

.why .why__text {
  background-color: var(--secondary-clr);
  max-width: 392px;
  padding: 1.75rem 2.5rem;
  border-radius: 16px;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--accent-clr);
}

.why .why__img {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form {
  position: relative;
}

.form::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(39, 30, 22, 0.85)), to(rgba(39, 30, 22, 0.85))), url("../img/contact-bg.webp");
  background: -o-linear-gradient(bottom, rgba(39, 30, 22, 0.85), rgba(39, 30, 22, 0.85)), url("../img/contact-bg.webp");
  background: linear-gradient(0deg, rgba(39, 30, 22, 0.85), rgba(39, 30, 22, 0.85)), url("../img/contact-bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
}

.form::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: var(--secondary-clr);
}

.form__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  z-index: 2;
}

.form__info {
  padding-top: 4.5rem;
  padding-right: 8rem;
  padding-bottom: 5rem;
}

.form__info .section-title {
  color: var(--secondary-clr);
}

.form__info p {
  color: var(--white-clr);
  font-size: 18px;
  line-height: 32px;
}

.form__form {
  padding-left: 6.5rem;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

#callbackForm .popup__text {
  line-height: 178%;
}

#callbackForm .form-group:last-of-type {
  margin-bottom: 2rem;
}

.faq {
  padding: 4rem 0 4.5rem;
}

.steps {
  padding: 4rem 0 5rem;
}

.steps__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.steps__item {
  background: var(--light-clr);
  border: 2px solid var(--golden-clr);
  border-radius: 16px;
  padding: 1.5rem 1.5rem 10.5rem;
  text-align: center;
  background-repeat: no-repeat;
  background-position: bottom left;
  opacity: 0;
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.steps__item._watcher-view {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.steps__item._watcher-view:nth-child(1) {
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}

.steps__item._watcher-view:nth-child(2) {
  -webkit-transition-delay: 0.1s;
       -o-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.steps__item._watcher-view:nth-child(3) {
  -webkit-transition-delay: 0.2s;
       -o-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.steps__item._watcher-view:nth-child(4) {
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.steps__item._watcher-view:nth-child(5) {
  -webkit-transition-delay: 0.4s;
       -o-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.steps__item._watcher-view:nth-child(6) {
  -webkit-transition-delay: 0.5s;
       -o-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.steps__item._watcher-view:nth-child(7) {
  -webkit-transition-delay: 0.6s;
       -o-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.steps__item._watcher-view:nth-child(8) {
  -webkit-transition-delay: 0.7s;
       -o-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.steps__item._watcher-view:nth-child(9) {
  -webkit-transition-delay: 0.8s;
       -o-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.steps__item._watcher-view:nth-child(10) {
  -webkit-transition-delay: 0.9s;
       -o-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.steps__item._watcher-view:nth-child(11) {
  -webkit-transition-delay: 1s;
       -o-transition-delay: 1s;
          transition-delay: 1s;
}

.steps__item._watcher-view:nth-child(12) {
  -webkit-transition-delay: 1.1s;
       -o-transition-delay: 1.1s;
          transition-delay: 1.1s;
}

.steps__item._watcher-view:nth-child(13) {
  -webkit-transition-delay: 1.2s;
       -o-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.steps__item._watcher-view:nth-child(14) {
  -webkit-transition-delay: 1.3s;
       -o-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

.steps__item._watcher-view:nth-child(15) {
  -webkit-transition-delay: 1.4s;
       -o-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

.steps__item .steps__item-header {
  font-weight: var(--fw-700);
  font-size: 1.5rem;
  line-height: 133%;
  color: var(--accent-clr);
  margin-bottom: 1rem;
  min-height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.steps__item .steps__item-body {
  font-weight: var(--fw-500);
  font-size: 1.125rem;
  line-height: 178%;
  color: var(--black-clr);
}

.steps__item[data-card-phone] {
  background-image: url("../img/step_phone.webp");
}

.steps__item[data-card-glass] {
  background-image: url("../img/step_glass.webp");
}

.steps__item[data-card-clipboard] {
  background-image: url("../img/step_clipboard.webp");
}

.steps__item[data-card-hammer] {
  background-image: url("../img/step_hammer.webp");
}

.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: var(--accent-clr);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.loaded .loader {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.loader::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(39, 30, 22, 0.85)), to(rgba(39, 30, 22, 0.85)));
  background: -o-linear-gradient(bottom, rgba(39, 30, 22, 0.85), rgba(39, 30, 22, 0.85));
  background: linear-gradient(0deg, rgba(39, 30, 22, 0.85), rgba(39, 30, 22, 0.85));
}

.loader img {
  -webkit-animation: rotateAnimation 1s linear infinite;
          animation: rotateAnimation 1s linear infinite;
  width: 5rem;
  height: 5rem;
  z-index: 1;
  position: relative;
}

@-webkit-keyframes rotateAnimation {
  from {
    -webkit-transform: rotateY(45deg);
            transform: rotateY(45deg);
  }

  to {
    -webkit-transform: rotateY(225deg);
            transform: rotateY(225deg);
  }
}

@keyframes rotateAnimation {
  from {
    -webkit-transform: rotateY(45deg);
            transform: rotateY(45deg);
  }

  to {
    -webkit-transform: rotateY(225deg);
            transform: rotateY(225deg);
  }
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
    align-items: center;
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

.header-phones--list {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-phones--link svg {
    width: 30px;
    height: 30px;
}

.header-phones--link span {
    font-weight: var(--fw-500);
}

.header-phones--link .icon-phone {
    font-size: 1.5rem;
}

.footer__item .header-phones--list .header-phones--item a{
    display: flex;
    align-items: center;
    gap: 4px;
}



@media (min-width: 320px) {
  .hero {
    min-height: calc(var(--app-height) - 96px);
  }
}

@media (min-width: 993px) {
  .why .why__item:nth-child(even) {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }

  .why .why__item:nth-child(1),
  .why .why__item:nth-child(5) {
    padding-left: 3.125rem;
  }

  .why .why__item:nth-child(2),
  .why .why__item:nth-child(6) {
    padding-right: 3.125rem;
  }
}

@media (min-width: 1025px) {
  .hero .hero-img img {
    display: block;
    -webkit-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
            transform: translateX(-30px);
  }
}

@media (min-width: 1921px) {
  .hero {
    min-height: auto;
  }
}

@media (max-width: 1250px) {
  .about__row {
    --about-gap-inline: 60px;
  }

  .form__info {
    padding-right: 3.75rem;
  }

  .form__form {
    padding-left: 3.75rem;
  }
}

@media (max-width: 1200px) {
  .header .header__container {
    /*gap: 50px;*/
  }

  .header .header-nav--list {
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
  }

  .steps__cards {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1150px) {
  .hero .hero-row {
    -ms-grid-columns: 1fr 350px;
    grid-template-columns: 1fr 350px;
  }

  .hero .hero-caption .btn {
    margin-top: 0;
  }

  .hero-counts {
    width: calc(90% - 1.875rem);
  }
}

@media (max-width: 1024px) {
  .hero {
    margin-top: 0;
  }

  .certificates__slider .certificates__slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 640px) {
  .steps__cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .hero-counts .hero-counts--title {
    font-size: 3rem;
    line-height: 140%;
  }
}

@media (max-width: 359px) {
  .hero-counts .hero-counts--item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    row-gap: 1rem;
  }
}

@media (max-width: 61.99875em) {
  .phone-btn {
    right: 1rem;
    bottom: 1rem;
    width: 3.5rem;
    height: 3.5rem;
  }

  .phone-btn i {
    font-size: 1.75rem;
  }

  .tabs__title {
    width: 50%;
  }

  .tabs__body-desktop {
    display: none;
  }

  .tabs__body-mob {
    display: block;
  }

  .slider-desktop__nav > button {
    font-size: inherit;
  }

  .header {
    background-color: transparent;
  }

  .header::after {
    display: none;
  }

  .header .header__container {
    gap: 30px;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .header .header-logo {
    width: 5.375rem;
  }

  .header .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: var(--app-height);
    background-color: var(--accent-clr);
    width: 50%;
    border-radius: 32px 0px 0px 32px;
    z-index: 13;
    padding: 8rem 3.75rem;
    -webkit-transition: right 0.5s;
    -o-transition: right 0.5s;
    transition: right 0.5s;
    overflow: auto;
  }

  .menu-open .header .header-nav {
    right: 0;
  }

  .header .header-nav--list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .header .header-nav--link {
    font-size: 1.5rem;
  }

  .header .header--item:not(:last-child) {
    margin-bottom: 3.5rem;
  }

  .header .header-phones {
    margin-left: auto;
  }

  .icon-menu {
    display: block;
    position: relative;
    width: 2.1875rem;
    height: 2.1875rem;
    z-index: 14;
    border: 4px solid var(--secondary-clr);
    border-radius: 50%;
  }

  .icon-menu:after,
  .icon-menu:before,
  .icon-menu span {
    width: 5px;
    height: 5px;
    border-radius: 100px;
    position: absolute;
    left: 0px;
    background: var(--secondary-clr);
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    left: 1%;
    right: 1%;
    margin: 0 auto;
  }

  .icon-menu:after,
  .icon-menu:before {
    content: "";
  }

  .icon-menu:after {
    top: 10%;
    margin-top: 0px;
  }

  .icon-menu:before {
    bottom: 10%;
    margin-bottom: 0px;
  }

  .icon-menu span {
    top: 50%;
    margin-top: -2px;
  }

  .menu-open .icon-menu:after,
  .menu-open .icon-menu:before,
  .menu-open .icon-menu span {
    border-radius: 0;
    height: 3px;
  }

  .menu-open .icon-menu:after {
    -webkit-transform: rotate(135deg) translate(7px, -7px);
        -ms-transform: rotate(135deg) translate(7px, -7px);
            transform: rotate(135deg) translate(7px, -7px);
    width: 60%;
  }

  .menu-open .icon-menu:before {
    -webkit-transform: rotate(225deg);
        -ms-transform: rotate(225deg);
            transform: rotate(225deg);
    bottom: 50%;
    margin-bottom: -2px;
    width: 60%;
  }

  .menu-open .icon-menu span {
    opacity: 0;
  }

  .hero .hero-row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .hero .hero-caption {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 2rem 0.9375rem 2.75rem;
  }

  .hero .hero-caption .btn {
    margin-left: 0;
  }

  .hero .hero-img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .hero-counts {
    opacity: 1;
    width: 100%;
    padding: 1rem 0rem 2rem;
    position: relative;
    bottom: 0;
    left: 0;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }

  .hero-counts .hero-counts--item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }

  .about__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }

  .about__row .about__img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .about__row .about__content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .why .why__list {
    padding-top: 17.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .why .why__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80%;
            flex: 0 0 80%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 1.5rem;
  }

  .why .why__text {
    max-width: 100%;
    width: 100%;
    font-size: 18px;
    padding: 1.5rem;
  }

  .why .why__img {
    width: 80%;
  }

  .form::before,
  .form::after {
    display: none;
  }

  .form__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .form__info {
    padding: 3rem 0 2rem;
    position: relative;
  }

  .form__info > * {
    position: relative;
    z-index: 2;
  }

  .form__info::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(39, 30, 22, 0.85)), to(rgba(39, 30, 22, 0.85))), url("../img/contact-bg.webp");
    background: -o-linear-gradient(bottom, rgba(39, 30, 22, 0.85), rgba(39, 30, 22, 0.85)), url("../img/contact-bg.webp");
    background: linear-gradient(0deg, rgba(39, 30, 22, 0.85), rgba(39, 30, 22, 0.85)), url("../img/contact-bg.webp");
    background-size: cover;
    background-repeat: no-repeat;
  }

  .form__info .section-title {
    text-align: center;
  }

  .form__info p {
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
  }

  .form__form {
    padding: 2rem 0;
    position: relative;
  }

  .form__form .form-main {
    position: relative;
    z-index: 2;
  }

  .form__form::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: var(--secondary-clr);
    background-size: cover;
    background-repeat: no-repeat;
  }

  .faq {
    padding: 2.5rem 0;
  }

  .steps {
    padding: 3rem 0;
  }
}

@media (max-width: 61.99875em) and (any-hover: none) {
  .icon-menu {
    cursor: default;
  }
}

@media (max-width: 47.99875em) {

    .footer__item:nth-child(3) {
        margin-left: 3px;
    }
  .section-subtitle {
    font-size: 0.875rem;
    line-height: 171%;
  }

    .header .header-phones {
        display: none;
    }

  .tabs__title {
    font-size: 0.875rem;
    line-height: 133%;
    padding: 1rem 1.375rem;
  }

  .mb-sm-1 {
    margin-bottom: 1rem;
  }

  .mb-sm-0 {
    margin-bottom: 0.5rem;
  }

  .mb-sm-2 {
    margin-bottom: 1.25rem;
  }

  .mb-sm-4 {
    margin-bottom: 2rem;
  }

  .spollers {
    gap: 16px;
  }

  .spollers__title {
    font-size: 16px;
    line-height: 24px;
  }

  .spollers__body p,
  .spollers__body li {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 0.75rem;
  }

  .spollers__body p:last-of-type,
  .spollers__body li:last-of-type {
    margin-bottom: 0;
  }

  .policy h1,
  .policy h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 1.25rem;
    margin-top: 1.25rem;
  }

  .policy h3,
  .policy h4,
  .policy h5 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 1.25rem;
    margin-top: 1.25rem;
  }

  .policy p,
  .policy li {
    font-size: 16px;
    line-height: 20px;
  }

  .header .header-nav {
    width: 70%;
  }

  .footer__contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .footer__bottom {
    padding: 1.5rem 0;
  }

  .footer__bottom .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }

  .hero {
    padding-top: 6rem;
  }

  .webp .hero {
    background-image: url("../img/hero-mob.webp") !important;
  }

  .hero .hero-img img {
    height: 34rem;
    -o-object-fit: contain;
       object-fit: contain;
  }

  .hero-counts {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .hero-counts .hero-counts--item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }

  .services {
    padding: 2.5rem 0 2rem;
  }

  .about {
    padding: 2.5rem 0 2rem;
  }

  .about__subtitle {
    font-size: 1rem;
    line-height: 150%;
  }

  .about__text {
    font-size: 0.875rem;
    line-height: 167%;
  }

  .certificates {
    padding: 2rem 0 2.5rem;
  }

  .certificates__slider::before,
  .certificates__slider::after {
    width: 150px;
  }

  .reviews {
    padding: 2.5rem 0 2rem;
  }

  .reviews__slider::before,
  .reviews__slider::after {
    width: 150px;
  }

  .reviews__slider .reviews__slide {
    padding: 0 2.0625rem;
  }

  .why {
    padding: 3rem 0 1rem;
  }

  .why .why__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .why .why__img {
    bottom: auto;
    top: 15%;
    width: calc(100% - 40px);
  }

  .form__info p {
    max-width: 100%;
  }
}

@media (max-width: 29.99875em) {
  .tabs__title {
    font-size: 0.75rem;
    padding: 1rem 0rem;
  }

  .header .header-phones {
    display: none;
  }

  .hero .hero__container {
    padding: 0 0.9375rem;
  }

  .hero .hero-caption .btn {
    max-width: 100%;
  }

  .about__row .about__img img {
    max-width: 260px;
  }

  .certificates__slider::before,
  .certificates__slider::after {
    display: none;
  }

  .certificates__slider .certificates__slide {
    padding: 0 3.9375rem;
  }

  .reviews__slider::before,
  .reviews__slider::after {
    display: none;
  }
}

@media (any-hover: hover) {
  .btn:hover {
    color: #fff;
  }

  .btn:hover::before {
    border-color: #fff;
  }

  .tabs__card:hover {
    background-color: var(--accent-clr);
  }

  .tabs__card:hover .tabs__card-title,
  .tabs__card:hover .tabs__card-text {
    color: var(--secondary-clr);
  }

  .header .header-nav--link:hover {
    color: var(--golden-clr);
  }

  .header .header-dropdown--link:hover {
    color: var(--golden-clr);
  }

  .header .header-phones--link:hover {
    color: var(--golden-clr);
  }

  .footer__contacts a.footer__link:hover {
    color: var(--golden-clr);
  }

  .footer__bottom a:hover {
    opacity: 0.7;
  }
}

.footer__item:nth-child(3) {
    margin-left: 0;
}

/*Новый блок*/
.hero-btn__wrapper-telegram {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 3rem;
}
.telegram-bot {
    flex: 1;
    width: 305px;
}
.telegram-bot__wrapper {
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
}
.telegram-bot__icon {
    display: flex;
}
.telegram-bot__wrapper path {
    transition: 0.2s;
}
.telegram-bot__wrapper:hover path {
    fill: #fff;
}

@media (max-width: 1200px) {
    .hero-btn__wrapper-telegram {
        flex-direction: column;
    }
}
.bot {
    position: relative;
}
.bot::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: var(--secondary-clr);
}
.bot::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url(../img/bot-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.form__info--bot iframe {
    width: 100%;
    height: 100%;
}

.bot-video iframe {
    width: 100%;
    height: 100%;
    max-height: 315px;
}
.bot-info {
    padding: 68px 105px;
    background-image: url('../img/bot-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
}
.bot-info__title {
    color: #DDC9AB;
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 64px;
    font-weight: 700;
    line-height: 80px; /* 125% */
}
.bot-info__description {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 177.778% */
    padding-block: 50px;
    max-width: 450px;
}
.telegram-bot--video {
    display: none;
}
@media (max-width: 1150px) {
    .bot-wrapper {
        grid-template-columns: 1fr;
    }
    .bot-video {
        width: 100%;
        aspect-ratio: 16/9;
        padding: 28px 36px;
    }
    .bot-info {
        padding: 48px 36px 32px;
        order: -1;
    }

}
@media (max-width: 768px) {
    .bot-info__title {
        font-size: 32px;
        line-height: 40px; /* 125% */
        text-align: center;
    }
    .bot-info__description {
        font-size: 14px;
        line-height: 24px; /* 171.429% */
        padding-top: 32px;
        padding-bottom: 0;
        padding-inline: 1rem;
    }
    .telegram-bot__wrapper {
        padding-inline: 5px;
    }
}
@media (max-width: 61.99875em) {
    .form__form--bot::after {
        content: "";
        position: absolute;
        top: 0;
        right: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 100vw;
        height: 100%;
        background: url(../img/bot-bg.png);
        background-size: cover;
        background-repeat: no-repeat;
        z-index: -1;
    }
    .form__info--bot::after {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 100vw;
        height: 100%;
        background: var(--secondary-clr);
        background-size: cover;
        background-repeat: no-repeat;
    }
    .form__info--bot {
        padding-bottom: 9rem;
    }
    .form__info--bot p{
        margin: 0;
    }
    .form__info--bot {
        order: 2;
    }
    .telegram-bot--video {
        display: block;
        padding-top: 32px;
        width: 100%;
    }
    .telegram-bot--info {
        display: none;
    }
    .footer .header-phones--list {
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
    }
    .footer__item {
        margin-inline: auto;
    }
    .footer__map {
        text-align: center;
    }
    .footer__map img {
        width: 2rem;
        margin-inline: auto;
    }
    .footer__map .footer__link {
        flex-direction: column;
    }
    .footer__item:nth-child(3) {
        margin-left: auto;
    }
    .footer__bottom div {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

}

.footer-social__box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
/*Конец нового блока*/

.webp .hero{ background-image: url(../img/hero.webp); }