@import url(https://fonts.googleapis.com/css?family=Roboto:regular,500,700&display=swap);

@charset "UTF-8";

* {
  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: #FFF;
  line-height: 1;
  font-family: "Roboto";
  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: "Roboto";
  font-size: inherit;
  line-height: 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;
}

.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;
}

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

body::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-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;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup__text {
  display: -ms-grid;
  display: grid;
  gap: 1.875rem;
}

.popup__title {
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
}

.popup__desc {
  text-align: center;
  line-height: 1.2;
}

.popup__close {
  text-transform: uppercase;
  background-color: #C8A35F;
  text-align: center;
  width: 100%;
  display: inline-block;
  font-weight: 500;
  line-height: 158.203%;
  letter-spacing: 1.6px;
  font-size: 1rem;
  padding: 0.9375rem 1.25rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  border-radius: 0.1875rem;
}

.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;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  background-color: #2F343A;
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
}

.lock .popup__content {
  visibility: visible;
}

.spollers {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.spollers__item {
  line-height: 1.2;
}

.spollers__title {
  background-color: #C8A35F;
  width: 100%;
  cursor: default;
  text-align: left;
  padding: 0.625rem 0.9375rem;
  padding-right: 2rem;
  border-radius: 0.3125rem;
  position: relative;
  list-style: none;
  min-height: 4.25rem;
  font-weight: 500;
  font-size: 1.25rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

._spoller-init .spollers__title {
  cursor: pointer;
}

._spoller-init .spollers__title::before,
._spoller-init .spollers__title::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  background-color: #fff;
  height: 2px;
  width: 10px;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

._spoller-init .spollers__title::before {
  -webkit-transform: translate(-75%, -50%) rotate(40deg);
      -ms-transform: translate(-75%, -50%) rotate(40deg);
          transform: translate(-75%, -50%) rotate(40deg);
}

._spoller-init .spollers__title::after {
  -webkit-transform: translate(0, -50%) rotate(-40deg);
      -ms-transform: translate(0, -50%) rotate(-40deg);
          transform: translate(0, -50%) rotate(-40deg);
}

._spoller-init .spollers__title._spoller-active {
  background-color: #aa8b51;
}

._spoller-init .spollers__title._spoller-active::before {
  -webkit-transform: translateX(-75%) rotate(-40deg);
      -ms-transform: translateX(-75%) rotate(-40deg);
          transform: translateX(-75%) rotate(-40deg);
}

._spoller-init .spollers__title._spoller-active::after {
  -webkit-transform: rotate(40deg);
      -ms-transform: rotate(40deg);
          transform: rotate(40deg);
}

.spollers__body {
  padding: 1.25rem;
  border-radius: 0.3125rem;
  border: 1px solid #eee;
}

[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;
}

.title-block {
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  line-height: 123.047%;
  letter-spacing: 2px;
}

.title-block::after {
  content: "";
  height: 0.1875rem;
  width: 20%;
  background-color: #C8A35F;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 50;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #2F343A;
  font-size: 0.875rem;
}

.header__container {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__left-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

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

.header__phone {
  letter-spacing: 0.7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__phone::before {
  content: "";
  display: inline-block;
  background: url("../img/icon-phone.svg") center/contain no-repeat;
  width: 1.5625rem;
  height: 1.5625rem;
}

.header__menu {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.logo-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}

.logo-header__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 3.125rem;
          flex: 0 0 3.125rem;
  width: 3.125rem;
}

.logo-header__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  letter-spacing: 0.1875rem;
  text-transform: uppercase;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu__list {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 0.3125rem;
}

.menu__item {
  position: relative;
}

.menu__item::after {
  content: "";
  display: inline-block;
  height: 0.0625rem;
  width: 0;
  background-color: #C8A35F;
  position: absolute;
  bottom: -0.1875rem;
  left: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.menu__link {
  letter-spacing: 0.7px;
  text-transform: uppercase;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.icon-menu {
  display: none;
}

.footer {
  background-color: #C8A35F;
  position: relative;
  z-index: 10;
}

.footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 10rem;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__left-block {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__logo {
  font-size: 0.875rem;
}

.footer__right-block {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__number {
  font-size: 0.875rem;
  color: #F2F2F2;
  display: -ms-grid;
  display: grid;
  gap: 0.625rem;
  -webkit-transition: -webkit-text-decoration 0.3s;
  transition: -webkit-text-decoration 0.3s;
  transition: text-decoration 0.3s;
  transition: text-decoration 0.3s, -webkit-text-decoration 0.3s;
}

.footer__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1.5625rem;
  min-height: 1.25rem;
}

.footer__phone.viber{
  background: url("../img/viber.png") left/contain no-repeat; }

.footer__phone.whatsapp{
  background: url("../img/whatapp.png") left/contain no-repeat; }

.footer__phone.telegram{
  background: url("../img/telegram.png") left/contain no-repeat; }

.footer__dev {
  text-decoration: underline;
  font-size: 0.875rem;
  color: #2F343A;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.adress {
  font-size: 0.875rem;
  display: -ms-grid;
  display: grid;
  gap: 0.625rem;
}

.adress__title {
  color: #F2F2F2;
  opacity: 0.8000000119;
}

.adress__mail {
  color: #2F343A;
  -webkit-transition: -webkit-text-decoration 0.3s;
  transition: -webkit-text-decoration 0.3s;
  transition: text-decoration 0.3s;
  transition: text-decoration 0.3s, -webkit-text-decoration 0.3s;
}

.logo-header__img {
  background-color: #2F343A;
  border-radius: 0.625rem;
}

.main {
  position: relative;
  overflow: hidden;
}

.main::after {
  content: "";
  width: 100%;
  min-height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(47, 52, 58, 0.75)), to(rgba(47, 52, 58, 0.525)));
  background: linear-gradient(0deg, rgba(47, 52, 58, 0.75) 0%, rgba(47, 52, 58, 0.525) 100%);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.main__container {
  position: relative;
  z-index: 2;
  padding-bottom: 3.125rem;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
}

.main__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.875rem;
}

.main__text {
  display: -ms-grid;
  display: grid;
  gap: 2.8125rem;
  border: 1px solid var(--gold, #C8A35F);
  padding: 2.8125rem 0.625rem;
}

.main__title {
  text-align: center;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

.main__desc {
  text-align: center;
  line-height: 158.203%;
}

.main__desc span {
  color: #C8A35F;
}

.main__button-down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.main__button-down img {
  cursor: pointer;
  -webkit-animation: down 1s ease-in-out infinite alternate;
          animation: down 1s ease-in-out infinite alternate;
  display: inline-block;
}

.main__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@-webkit-keyframes down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(0, 30%);
            transform: translate(0, 30%);
  }
}

@keyframes down {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }

  100% {
    -webkit-transform: translate(0, 30%);
            transform: translate(0, 30%);
  }
}

.social-main {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.875rem;
}

.social-main__button {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 158.203%;
  letter-spacing: 1.6px;
  font-size: 1rem;
  padding: 1.125rem 3rem;
  background-color: #C8A35F;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-align: center;
}

.social-main__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.social-main__link {
  display: inline-block;
  position: relative;
}

.social-main__link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  background-color: #c8a35f;
  -webkit-animation: pulse 1s linear infinite;
          animation: pulse 1s linear infinite;
}

.social-main__link img {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 3.125rem;
  border-radius: 50%;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 0;
  }
}

.advantages {
  background-color: #393F47;
}

.advantages__title {
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  max-width: 59.375rem;
  margin: 0 auto;
}

.advantages__title span {
  color: #C8A35F;
}

.advantages__items {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(18.75rem, 1fr));
  gap: 3.125rem;
}

.item-advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
}

.item-advantages__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 6.25rem;
          flex: 0 0 6.25rem;
  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;
  padding: 1.25rem;
  background-color: #2F343A;
  text-align: center;
  border-radius: 0.9375rem;
}

.item-advantages__icon img {
  width: 3.75rem;
}

.item-advantages__title {
  text-transform: uppercase;
  font-weight: 700;
  color: #C8A35F;
  line-height: 123.047%;
  letter-spacing: 0.9px;
}

.item-advantages__text {
  text-align: center;
  line-height: 1.2;
  font-size: 1rem;
}

.no-webp .form-block{
  background: url("../img/ford-png.jpeg") center/cover no-repeat; }

.form-block {
  position: relative;
}

.form-block::after {
  content: "";
  width: 100%;
  min-height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(47, 52, 58, 0.57)), to(rgba(47, 52, 58, 0.471)));
  background: linear-gradient(0deg, rgba(47, 52, 58, 0.57) 0%, rgba(47, 52, 58, 0.471) 100%);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

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

.form-block__body {
  max-width: 28.125rem;
  background-color: rgba(47, 52, 58, 0.651);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  margin: 0 auto;
  border-radius: 0.625rem;
  overflow: hidden;
}

.form {
  display: -ms-grid;
  display: grid;
  gap: 1.25rem;
}

.form__title {
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.form__desc {
  text-align: center;
  line-height: 1.2;
  font-size: 1rem;
}

.form__line:not(:last-child) {
  margin-bottom: 1.25rem;
}

.form__input {
  width: 100%;
  font-size: 1rem;
  padding: 0.9375rem 1.25rem;
  border-radius: 0.1875rem;
}

.form__button button {
  text-transform: uppercase;
  background-color: #C8A35F;
  text-align: center;
  width: 100%;
  display: inline-block;
  font-weight: 500;
  line-height: 158.203%;
  letter-spacing: 1.6px;
  font-size: 1rem;
  padding: 0.9375rem 1.25rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  border-radius: 0.1875rem;
}

.question {
  background-color: #2F343A;
}

.services {
  background-color: #393F47;
}

.services__container {
  display: -ms-grid;
  display: grid;
  min-height: calc(100vh - 160px);
  padding-bottom: 3.125rem;
}

.services__body {
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
}

.services__title {
  text-transform: uppercase;
  position: relative;
  font-weight: 700;
  line-height: 123.047%;
  letter-spacing: 2px;
}

.services__title::before {
  content: "";
  height: 0.375rem;
  width: 5.625rem;
  background-color: #C8A35F;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.services__items {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15.625rem, 1fr));
  gap: 1.25rem;
}

.item-services {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  background-color: #2F343A;
}

.item-services__image-ibg {
  padding-bottom: 55%;
  overflow: hidden;
}

.item-services__image-ibg img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.item-services__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-weight: 700;
  line-height: 123.047%;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  text-align: center;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  padding-bottom: 1.25rem;
  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;
}

.about-us {
  background-color: #393F47;
  position: relative;
  z-index: 2;
}

.about-us__main {
  background-color: #393F47;
  position: relative;
  z-index: 10;
  position: relative;
}

.about-us__main::before {
  content: "";
  display: block;
  width: 30%;
  height: 100%;
  background-color: #2F343A;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.top-about-us {
  position: relative;
}

.top-about-us::after {
  content: "";
  width: 100%;
  min-height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(47, 52, 58, 0.75)), to(rgba(47, 52, 58, 0.525)));
  background: linear-gradient(0deg, rgba(47, 52, 58, 0.75) 0%, rgba(47, 52, 58, 0.525) 100%);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.top-about-us__title {
  min-height: 31.25rem;
  max-width: 56.25rem;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  font-weight: 700;
  line-height: 123.047%;
  letter-spacing: 2px;
  text-align: center;
  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;
}

.top-about-us__title span {
  color: #C8A35F;
}

.top-about-us__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.main-about-us {
  position: relative;
  z-index: 3;
}

.main-about-us__items {
  display: -ms-grid;
  display: grid;
}

.main-about-us__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-about-us__item_reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.main-about-us__text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  line-height: 146.484%;
  font-size: 1rem;
}

.main-about-us__text span {
  color: #C8A35F;
}

.main-about-us__image-ibg {
  padding-bottom: 25%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

.advantages-about {
  background-color: #2F343A;
  position: relative;
  z-index: 10;
}

.advantages-about__title {
  position: relative;
  z-index: 10;
  font-weight: 700;
  line-height: 123.047%;
  letter-spacing: 2px;
  text-align: center;
}

.advantages-about__items {
  display: -ms-grid;
  display: grid;
  gap: 1.25rem;
}

.advantages-about__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}

.advantages-about__item::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2.5rem;
          flex: 0 0 2.5rem;
  background: url("../img/check.svg") center/contain no-repeat;
}

.advantages-about__item:nth-child(2) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.advantages-about__text {
  line-height: 146.484%;
}

.advantages-about__text span {
  font-weight: 500;
  text-decoration: underline;
  color: #C8A35F;
}

.no-webp .form-page{
  background: url("../img/ford-png.jpeg") center/cover no-repeat; }

.form-page {
  position: relative;
}

.form-page::after {
  content: "";
  width: 100%;
  min-height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(47, 52, 58, 0.57)), to(rgba(47, 52, 58, 0.471)));
  background: linear-gradient(0deg, rgba(47, 52, 58, 0.57) 0%, rgba(47, 52, 58, 0.471) 100%);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.form-page__container {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 160px);
  padding-bottom: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-page__body {
  max-width: 28.125rem;
  background-color: rgba(47, 52, 58, 0.651);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  margin: 0 auto;
  border-radius: 0.625rem;
  overflow: hidden;
}

.price {
  background-color: #393F47;
}

.price__container {
  display: -ms-grid;
  display: grid;
  min-height: calc(100vh - 160px);
}

.price__tables {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
  margin-top: -3.125rem;
}

.table_big {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.table__item {
  width: 100%;
  min-width: 18.75rem;
  border-collapse: collapse;
}

.table__title {
  background-color: #C8A35F;
  padding: 0.5rem 0.9375rem;
}

.table__title img {
  max-width: 1.875rem;
}

.table__cell {
  padding: 0.5rem 0.9375rem;
  border-bottom: 1px solid #C8A35F;
}

.contact__text {
  line-height: 146.484%;
}

.contact__text span {
  color: #C8A35F;
}

.contact__text:not(:last-child) {
  margin-bottom: 1.25rem;
}

.contact__number {
  color: #F2F2F2;
  display: -ms-grid;
  display: grid;
  gap: 0.625rem;
  -webkit-transition: -webkit-text-decoration 0.3s;
  transition: -webkit-text-decoration 0.3s;
  transition: text-decoration 0.3s;
  transition: text-decoration 0.3s, -webkit-text-decoration 0.3s;
}

.contact__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 2.1875rem;
  min-height: 1.875rem;
}

.contact__phone.viber{
  background: url("../img/viber.png") left/contain no-repeat; }

.contact__phone.whatsapp{
  background: url("../img/whatapp.png") left/contain no-repeat; }

.contact__phone.telegram{
  background: url("../img/telegram.png") left/contain no-repeat; }

 .contact__phone.tiktok{
  background: url("../img/tiktok.png") left/contain no-repeat; }

 .contact__phone.fb{
  background: url("../img/fb.png") left/contain no-repeat; }

 .contact__phone.mail{
  background: url("../img/gmail.png") left/contain no-repeat; }

@media (min-width: 61.99875em) {
  .header._header-scroll .header__container {
    min-height: 3.75rem;
  }
}

@media (min-width: 71.25em) {
  .popup__title {
    font-size: 1.5rem;
  }

  .popup__content {
    padding: 3.125rem;
  }

  .title-block {
    font-size: 2.25rem;
  }

  .title-block::after {
    bottom: -2.5rem;
  }

  .header__container {
    min-height: 7.8125rem;
  }

  .header__left-block {
    gap: 1.875rem;
  }

  .header__logo {
    padding-right: 1.875rem;
  }

  .menu__list {
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }

  .main__container {
    padding-top: 8.75rem;
  }

  .main__title {
    font-size: 4rem;
  }

  .main__desc {
    font-size: 1.125rem;
  }

  .advantages {
    padding-top: 6.25rem;
  }

  .advantages {
    padding-bottom: 6.25rem;
  }

  .advantages__title {
    font-size: 2.25rem;
  }

  .advantages__title:not(:last-child) {
    margin-bottom: 5rem;
  }

  .form-block {
    padding-top: 6.25rem;
  }

  .form-block {
    padding-bottom: 6.25rem;
  }

  .form-block__body {
    padding-left: 3.125rem;
  }

  .form-block__body {
    padding-right: 3.125rem;
  }

  .form-block__body {
    padding-top: 3.125rem;
  }

  .form-block__body {
    padding-bottom: 3.125rem;
  }

  .form__title {
    font-size: 1.875rem;
  }

  .question {
    padding-top: 6.25rem;
  }

  .question {
    padding-bottom: 6.25rem;
  }

  .question__title:not(:last-child) {
    margin-bottom: 5rem;
  }

  .services__container {
    padding-top: 10rem;
  }

  .services__title {
    font-size: 2.5rem;
  }

  .services__title {
    padding-top: 2.5rem;
  }

  .services__title:not(:last-child) {
    margin-bottom: 2.5rem;
  }

  .top-about-us {
    padding-top: 7.8125rem;
  }

  .top-about-us__title {
    font-size: 2.5rem;
  }

  .main-about-us {
    padding-top: 5rem;
  }

  .main-about-us {
    padding-bottom: 5rem;
  }

  .main-about-us__items {
    gap: 3.75rem;
  }

  .main-about-us__text.right {
    padding-right: 4.0625rem;
  }

  .main-about-us__text.left {
    padding-left: 4.0625rem;
  }

  .advantages-about {
    padding-top: 5rem;
  }

  .advantages-about {
    padding-bottom: 5rem;
  }

  .advantages-about__title {
    font-size: 2.5rem;
  }

  .advantages-about__title:not(:last-child) {
    margin-bottom: 2.5rem;
  }

  .advantages-about__text {
    font-size: 1.125rem;
  }

  .form-page__container {
    padding-top: 8.75rem;
  }

  .form-page__body {
    padding-left: 3.125rem;
  }

  .form-page__body {
    padding-right: 3.125rem;
  }

  .form-page__body {
    padding-top: 3.125rem;
  }

  .form-page__body {
    padding-bottom: 3.125rem;
  }

  .price__container {
    padding-top: 10rem;
  }

  .price__container {
    padding-bottom: 6.25rem;
  }

  .contact__text {
    font-size: 1.125rem;
  }
}

@media (max-width: 20em) {
  .popup__title {
    font-size: 1.25rem;
  }

  .popup__content {
    padding: 1.25rem;
  }

  .title-block {
    font-size: 1.375rem;
  }

  .title-block::after {
    bottom: -1.25rem;
  }

  .header__container {
    min-height: 3.75rem;
  }

  .header__left-block {
    gap: 0.9375rem;
  }

  .header__logo {
    padding-right: 0.9375rem;
  }

  .menu__list {
    -webkit-column-gap: 0.9375rem;
       -moz-column-gap: 0.9375rem;
            column-gap: 0.9375rem;
  }

  .main__container {
    padding-top: 5rem;
  }

  .main__title {
    font-size: 1.875rem;
  }

  .main__desc {
    font-size: 1rem;
  }

  .advantages {
    padding-top: 3.125rem;
  }

  .advantages {
    padding-bottom: 3.125rem;
  }

  .advantages__title {
    font-size: 1.25rem;
  }

  .advantages__title:not(:last-child) {
    margin-bottom: 2.5rem;
  }

  .form-block {
    padding-top: 3.125rem;
  }

  .form-block {
    padding-bottom: 3.125rem;
  }

  .form-block__body {
    padding-left: 0.9375rem;
  }

  .form-block__body {
    padding-right: 0.9375rem;
  }

  .form-block__body {
    padding-top: 1.5625rem;
  }

  .form-block__body {
    padding-bottom: 1.5625rem;
  }

  .form__title {
    font-size: 1.375rem;
  }

  .question {
    padding-top: 3.125rem;
  }

  .question {
    padding-bottom: 3.125rem;
  }

  .question__title:not(:last-child) {
    margin-bottom: 2.5rem;
  }

  .services__container {
    padding-top: 5rem;
  }

  .services__title {
    font-size: 1.875rem;
  }

  .services__title {
    padding-top: 1.875rem;
  }

  .services__title:not(:last-child) {
    margin-bottom: 1.875rem;
  }

  .top-about-us {
    padding-top: 3.75rem;
  }

  .top-about-us__title {
    font-size: 1.75rem;
  }

  .main-about-us {
    padding-top: 2.5rem;
  }

  .main-about-us {
    padding-bottom: 2.5rem;
  }

  .main-about-us__items {
    gap: 1.875rem;
  }

  .main-about-us__text.right {
    padding-right: 1.25rem;
  }

  .main-about-us__text.left {
    padding-left: 1.25rem;
  }

  .advantages-about {
    padding-top: 2.5rem;
  }

  .advantages-about {
    padding-bottom: 2.5rem;
  }

  .advantages-about__title {
    font-size: 1.5rem;
  }

  .advantages-about__title:not(:last-child) {
    margin-bottom: 1.875rem;
  }

  .advantages-about__text {
    font-size: 1rem;
  }

  .form-page__container {
    padding-top: 4.375rem;
  }

  .form-page__body {
    padding-left: 0.9375rem;
  }

  .form-page__body {
    padding-right: 0.9375rem;
  }

  .form-page__body {
    padding-top: 1.5625rem;
  }

  .form-page__body {
    padding-bottom: 1.5625rem;
  }

  .price__container {
    padding-top: 5rem;
  }

  .price__container {
    padding-bottom: 3.125rem;
  }

  .contact__text {
    font-size: 1rem;
  }
}

@media (max-width: 65.625em) {
  .price__tables {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
  }
}

@media (max-width: 61.99875em) {
  .spollers {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-header__text {
    display: none;
  }
}

@media (max-width: 47.99875em) {
  .spollers {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }

  .spollers__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    overflow: auto;
    background-color: rgba(47, 52, 58, 0.9098039216);
    -webkit-transition: left 0.3s ease 0s;
    transition: left 0.3s ease 0s;
    padding-bottom: 1.875rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    padding-top: 1.875rem;
  }

  .menu-open .menu {
    left: 0;
  }

  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 1.5625rem;
  }

  .menu__link {
    font-size: 1.375rem;
  }

  .icon-menu {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 1.875rem;
            flex: 0 0 1.875rem;
    display: block;
    position: relative;
    width: 1.875rem;
    height: 1.125rem;
    z-index: 5;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #C8A35F;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

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

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .footer__body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .footer__left-block {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 1.25rem;
  }

  .footer__right-block {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .social-main {
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
  }

  .main-about-us__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .main-about-us__text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .main-about-us__text:not(:last-child) {
    margin-bottom: 0.9375rem;
  }

  .main-about-us__text.right {
    padding-right: 0;
  }

  .main-about-us__text.left {
    padding-left: 0;
  }

  .main-about-us__image-ibg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    padding-bottom: 50%;
  }

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

  .table_big {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
}

@media (max-width: 47.99875em) and (max-width: 20em) {
  .menu {
    margin-top: 3.75rem;
  }
}

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

@media (min-width: 20em) and (max-width: 71.25em) {
@supports (font-size: clamp( 1.25rem , 1.1524390244rem  +  0.487804878vw , 1.5rem )) {
    .popup__title {
      font-size: clamp( 1.25rem , 1.1524390244rem  +  0.487804878vw , 1.5rem );
    }
}

@supports not (font-size: clamp( 1.25rem , 1.1524390244rem  +  0.487804878vw , 1.5rem )) {
    .popup__title {
      font-size: calc(1.25rem + 0.25 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding: clamp( 1.25rem , 0.5182926829rem  +  3.6585365854vw , 3.125rem )) {
    .popup__content {
      padding: clamp( 1.25rem , 0.5182926829rem  +  3.6585365854vw , 3.125rem );
    }
}

@supports not (padding: clamp( 1.25rem , 0.5182926829rem  +  3.6585365854vw , 3.125rem )) {
    .popup__content {
      padding: calc(1.25rem + 1.875 * (100vw - 20rem) / 51.25);
    }
}

@supports (font-size: clamp( 1.375rem , 1.0335365854rem  +  1.7073170732vw , 2.25rem )) {
    .title-block {
      font-size: clamp( 1.375rem , 1.0335365854rem  +  1.7073170732vw , 2.25rem );
    }
}

@supports not (font-size: clamp( 1.375rem , 1.0335365854rem  +  1.7073170732vw , 2.25rem )) {
    .title-block {
      font-size: calc(1.375rem + 0.875 * (100vw - 20rem) / 51.25);
    }
}

@supports (bottom: clamp( -2.5rem , -0.762195122rem  +  -2.4390243902vw , -1.25rem )) {
    .title-block::after {
      bottom: clamp( -2.5rem , -0.762195122rem  +  -2.4390243902vw , -1.25rem );
    }
}

@supports not (bottom: clamp( -2.5rem , -0.762195122rem  +  -2.4390243902vw , -1.25rem )) {
    .title-block::after {
      bottom: calc(-1.25rem + -1.25 * (100vw - 20rem) / 51.25);
    }
}

@supports (min-height: clamp( 3.75rem , 2.1646341463rem  +  7.9268292683vw , 7.8125rem )) {
    .header__container {
      min-height: clamp( 3.75rem , 2.1646341463rem  +  7.9268292683vw , 7.8125rem );
    }
}

@supports not (min-height: clamp( 3.75rem , 2.1646341463rem  +  7.9268292683vw , 7.8125rem )) {
    .header__container {
      min-height: calc(3.75rem + 4.0625 * (100vw - 20rem) / 51.25);
    }
}

@supports (gap: clamp( 0.9375rem , 0.5716463415rem  +  1.8292682927vw , 1.875rem )) {
    .header__left-block {
      gap: clamp( 0.9375rem , 0.5716463415rem  +  1.8292682927vw , 1.875rem );
    }
}

@supports not (gap: clamp( 0.9375rem , 0.5716463415rem  +  1.8292682927vw , 1.875rem )) {
    .header__left-block {
      gap: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-right: clamp( 0.9375rem , 0.5716463415rem  +  1.8292682927vw , 1.875rem )) {
    .header__logo {
      padding-right: clamp( 0.9375rem , 0.5716463415rem  +  1.8292682927vw , 1.875rem );
    }
}

@supports not (padding-right: clamp( 0.9375rem , 0.5716463415rem  +  1.8292682927vw , 1.875rem )) {
    .header__logo {
      padding-right: calc(0.9375rem + 0.9375 * (100vw - 20rem) / 51.25);
    }
}

@supports ((-moz-column-gap: clamp( 0.9375rem , 0.5228658537rem  +  2.0731707317vw , 2rem )) or (column-gap: clamp( 0.9375rem , 0.5228658537rem  +  2.0731707317vw , 2rem ))) {
    .menu__list {
      -webkit-column-gap: clamp( 0.9375rem , 0.5228658537rem  +  2.0731707317vw , 2rem );
         -moz-column-gap: clamp( 0.9375rem , 0.5228658537rem  +  2.0731707317vw , 2rem );
              column-gap: clamp( 0.9375rem , 0.5228658537rem  +  2.0731707317vw , 2rem );
    }
}

@supports not ((-moz-column-gap: clamp( 0.9375rem , 0.5228658537rem  +  2.0731707317vw , 2rem )) or (column-gap: clamp( 0.9375rem , 0.5228658537rem  +  2.0731707317vw , 2rem ))) {
    .menu__list {
      -webkit-column-gap: calc(0.9375rem + 1.0625 * (100vw - 20rem) / 51.25);
         -moz-column-gap: calc(0.9375rem + 1.0625 * (100vw - 20rem) / 51.25);
              column-gap: calc(0.9375rem + 1.0625 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-top: clamp( 5rem , 3.5365853659rem  +  7.3170731707vw , 8.75rem )) {
    .main__container {
      padding-top: clamp( 5rem , 3.5365853659rem  +  7.3170731707vw , 8.75rem );
    }
}

@supports not (padding-top: clamp( 5rem , 3.5365853659rem  +  7.3170731707vw , 8.75rem )) {
    .main__container {
      padding-top: calc(5rem + 3.75 * (100vw - 20rem) / 51.25);
    }
}

@supports (font-size: clamp( 1.875rem , 1.0457317073rem  +  4.1463414634vw , 4rem )) {
    .main__title {
      font-size: clamp( 1.875rem , 1.0457317073rem  +  4.1463414634vw , 4rem );
    }
}

@supports not (font-size: clamp( 1.875rem , 1.0457317073rem  +  4.1463414634vw , 4rem )) {
    .main__title {
      font-size: calc(1.875rem + 2.125 * (100vw - 20rem) / 51.25);
    }
}

@supports (font-size: clamp( 1rem , 0.9512195122rem  +  0.243902439vw , 1.125rem )) {
    .main__desc {
      font-size: clamp( 1rem , 0.9512195122rem  +  0.243902439vw , 1.125rem );
    }
}

@supports not (font-size: clamp( 1rem , 0.9512195122rem  +  0.243902439vw , 1.125rem )) {
    .main__desc {
      font-size: calc(1rem + 0.125 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-top: clamp( 3.125rem , 1.9054878049rem  +  6.0975609756vw , 6.25rem )) {
    .advantages {
      padding-top: clamp( 3.125rem , 1.9054878049rem  +  6.0975609756vw , 6.25rem );
    }
}

@supports not (padding-top: clamp( 3.125rem , 1.9054878049rem  +  6.0975609756vw , 6.25rem )) {
    .advantages {
      padding-top: calc(3.125rem + 3.125 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-bottom: clamp( 3.125rem , 1.9054878049rem  +  6.0975609756vw , 6.25rem )) {
    .advantages {
      padding-bottom: clamp( 3.125rem , 1.9054878049rem  +  6.0975609756vw , 6.25rem );
    }
}

@supports not (padding-bottom: clamp( 3.125rem , 1.9054878049rem  +  6.0975609756vw , 6.25rem )) {
    .advantages {
      padding-bottom: calc(3.125rem + 3.125 * (100vw - 20rem) / 51.25);
    }
}

@supports (font-size: clamp( 1.25rem , 0.8597560976rem  +  1.9512195122vw , 2.25rem )) {
    .advantages__title {
      font-size: clamp( 1.25rem , 0.8597560976rem  +  1.9512195122vw , 2.25rem );
    }
}

@supports not (font-size: clamp( 1.25rem , 0.8597560976rem  +  1.9512195122vw , 2.25rem )) {
    .advantages__title {
      font-size: calc(1.25rem + 1 * (100vw - 20rem) / 51.25);
    }
}

@supports (margin-bottom: clamp( 2.5rem , 1.5243902439rem  +  4.8780487805vw , 5rem )) {
    .advantages__title:not(:last-child) {
      margin-bottom: clamp( 2.5rem , 1.5243902439rem  +  4.8780487805vw , 5rem );
    }
}

@supports not (margin-bottom: clamp( 2.5rem , 1.5243902439rem  +  4.8780487805vw , 5rem )) {
    .advantages__title:not(:last-child) {
      margin-bottom: calc(2.5rem + 2.5 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-top: clamp( 3.125rem , 1.9054878049rem  +  6.0975609756vw , 6.25rem )) {
    .form-block {
      padding-top: clamp( 3.125rem , 1.9054878049rem  +  6.0975609756vw , 6.25rem );
    }
}

@supports not (padding-top: clamp( 3.125rem , 1.9054878049rem  +  6.0975609756vw , 6.25rem )) {
    .form-block {
      padding-top: calc(3.125rem + 3.125 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-bottom: clamp( 3.125rem , 1.9054878049rem  +  6.0975609756vw , 6.25rem )) {
    .form-block {
      padding-bottom: clamp( 3.125rem , 1.9054878049rem  +  6.0975609756vw , 6.25rem );
    }
}

@supports not (padding-bottom: clamp( 3.125rem , 1.9054878049rem  +  6.0975609756vw , 6.25rem )) {
    .form-block {
      padding-bottom: calc(3.125rem + 3.125 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-left: clamp( 0.9375rem , 0.0838414634rem  +  4.2682926829vw , 3.125rem )) {
    .form-block__body {
      padding-left: clamp( 0.9375rem , 0.0838414634rem  +  4.2682926829vw , 3.125rem );
    }
}

@supports not (padding-left: clamp( 0.9375rem , 0.0838414634rem  +  4.2682926829vw , 3.125rem )) {
    .form-block__body {
      padding-left: calc(0.9375rem + 2.1875 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-right: clamp( 0.9375rem , 0.0838414634rem  +  4.2682926829vw , 3.125rem )) {
    .form-block__body {
      padding-right: clamp( 0.9375rem , 0.0838414634rem  +  4.2682926829vw , 3.125rem );
    }
}

@supports not (padding-right: clamp( 0.9375rem , 0.0838414634rem  +  4.2682926829vw , 3.125rem )) {
    .form-block__body {
      padding-right: calc(0.9375rem + 2.1875 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-top: clamp( 1.5625rem , 0.9527439024rem  +  3.0487804878vw , 3.125rem )) {
    .form-block__body {
      padding-top: clamp( 1.5625rem , 0.9527439024rem  +  3.0487804878vw , 3.125rem );
    }
}

@supports not (padding-top: clamp( 1.5625rem , 0.9527439024rem  +  3.0487804878vw , 3.125rem )) {
    .form-block__body {
      padding-top: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-bottom: clamp( 1.5625rem , 0.9527439024rem  +  3.0487804878vw , 3.125rem )) {
    .form-block__body {
      padding-bottom: clamp( 1.5625rem , 0.9527439024rem  +  3.0487804878vw , 3.125rem );
    }
}

@supports not (padding-bottom: clamp( 1.5625rem , 0.9527439024rem  +  3.0487804878vw , 3.125rem )) {
    .form-block__body {
      padding-bottom: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 51.25);
    }
}

@supports (font-size: clamp( 1.375rem , 1.1798780488rem  +  0.9756097561vw , 1.875rem )) {
    .form__title {
      font-size: clamp( 1.375rem , 1.1798780488rem  +  0.9756097561vw , 1.875rem );
    }
}

@supports not (font-size: clamp( 1.375rem , 1.1798780488rem  +  0.9756097561vw , 1.875rem )) {
    .form__title {
      font-size: calc(1.375rem + 0.5 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-top: clamp( 3.125rem , 1.9054878049rem  +  6.0975609756vw , 6.25rem )) {
    .question {
      padding-top: clamp( 3.125rem , 1.9054878049rem  +  6.0975609756vw , 6.25rem );
    }
}

@supports not (padding-top: clamp( 3.125rem , 1.9054878049rem  +  6.0975609756vw , 6.25rem )) {
    .question {
      padding-top: calc(3.125rem + 3.125 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-bottom: clamp( 3.125rem , 1.9054878049rem  +  6.0975609756vw , 6.25rem )) {
    .question {
      padding-bottom: clamp( 3.125rem , 1.9054878049rem  +  6.0975609756vw , 6.25rem );
    }
}

@supports not (padding-bottom: clamp( 3.125rem , 1.9054878049rem  +  6.0975609756vw , 6.25rem )) {
    .question {
      padding-bottom: calc(3.125rem + 3.125 * (100vw - 20rem) / 51.25);
    }
}

@supports (margin-bottom: clamp( 2.5rem , 1.5243902439rem  +  4.8780487805vw , 5rem )) {
    .question__title:not(:last-child) {
      margin-bottom: clamp( 2.5rem , 1.5243902439rem  +  4.8780487805vw , 5rem );
    }
}

@supports not (margin-bottom: clamp( 2.5rem , 1.5243902439rem  +  4.8780487805vw , 5rem )) {
    .question__title:not(:last-child) {
      margin-bottom: calc(2.5rem + 2.5 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-top: clamp( 5rem , 3.0487804878rem  +  9.756097561vw , 10rem )) {
    .services__container {
      padding-top: clamp( 5rem , 3.0487804878rem  +  9.756097561vw , 10rem );
    }
}

@supports not (padding-top: clamp( 5rem , 3.0487804878rem  +  9.756097561vw , 10rem )) {
    .services__container {
      padding-top: calc(5rem + 5 * (100vw - 20rem) / 51.25);
    }
}

@supports (font-size: clamp( 1.875rem , 1.631097561rem  +  1.2195121951vw , 2.5rem )) {
    .services__title {
      font-size: clamp( 1.875rem , 1.631097561rem  +  1.2195121951vw , 2.5rem );
    }
}

@supports not (font-size: clamp( 1.875rem , 1.631097561rem  +  1.2195121951vw , 2.5rem )) {
    .services__title {
      font-size: calc(1.875rem + 0.625 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-top: clamp( 1.875rem , 1.631097561rem  +  1.2195121951vw , 2.5rem )) {
    .services__title {
      padding-top: clamp( 1.875rem , 1.631097561rem  +  1.2195121951vw , 2.5rem );
    }
}

@supports not (padding-top: clamp( 1.875rem , 1.631097561rem  +  1.2195121951vw , 2.5rem )) {
    .services__title {
      padding-top: calc(1.875rem + 0.625 * (100vw - 20rem) / 51.25);
    }
}

@supports (margin-bottom: clamp( 1.875rem , 1.631097561rem  +  1.2195121951vw , 2.5rem )) {
    .services__title:not(:last-child) {
      margin-bottom: clamp( 1.875rem , 1.631097561rem  +  1.2195121951vw , 2.5rem );
    }
}

@supports not (margin-bottom: clamp( 1.875rem , 1.631097561rem  +  1.2195121951vw , 2.5rem )) {
    .services__title:not(:last-child) {
      margin-bottom: calc(1.875rem + 0.625 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-top: clamp( 3.75rem , 2.1646341463rem  +  7.9268292683vw , 7.8125rem )) {
    .top-about-us {
      padding-top: clamp( 3.75rem , 2.1646341463rem  +  7.9268292683vw , 7.8125rem );
    }
}

@supports not (padding-top: clamp( 3.75rem , 2.1646341463rem  +  7.9268292683vw , 7.8125rem )) {
    .top-about-us {
      padding-top: calc(3.75rem + 4.0625 * (100vw - 20rem) / 51.25);
    }
}

@supports (font-size: clamp( 1.75rem , 1.4573170732rem  +  1.4634146341vw , 2.5rem )) {
    .top-about-us__title {
      font-size: clamp( 1.75rem , 1.4573170732rem  +  1.4634146341vw , 2.5rem );
    }
}

@supports not (font-size: clamp( 1.75rem , 1.4573170732rem  +  1.4634146341vw , 2.5rem )) {
    .top-about-us__title {
      font-size: calc(1.75rem + 0.75 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-top: clamp( 2.5rem , 1.5243902439rem  +  4.8780487805vw , 5rem )) {
    .main-about-us {
      padding-top: clamp( 2.5rem , 1.5243902439rem  +  4.8780487805vw , 5rem );
    }
}

@supports not (padding-top: clamp( 2.5rem , 1.5243902439rem  +  4.8780487805vw , 5rem )) {
    .main-about-us {
      padding-top: calc(2.5rem + 2.5 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-bottom: clamp( 2.5rem , 1.5243902439rem  +  4.8780487805vw , 5rem )) {
    .main-about-us {
      padding-bottom: clamp( 2.5rem , 1.5243902439rem  +  4.8780487805vw , 5rem );
    }
}

@supports not (padding-bottom: clamp( 2.5rem , 1.5243902439rem  +  4.8780487805vw , 5rem )) {
    .main-about-us {
      padding-bottom: calc(2.5rem + 2.5 * (100vw - 20rem) / 51.25);
    }
}

@supports (gap: clamp( 1.875rem , 1.1432926829rem  +  3.6585365854vw , 3.75rem )) {
    .main-about-us__items {
      gap: clamp( 1.875rem , 1.1432926829rem  +  3.6585365854vw , 3.75rem );
    }
}

@supports not (gap: clamp( 1.875rem , 1.1432926829rem  +  3.6585365854vw , 3.75rem )) {
    .main-about-us__items {
      gap: calc(1.875rem + 1.875 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-right: clamp( 1.25rem , 0.1524390244rem  +  5.487804878vw , 4.0625rem )) {
    .main-about-us__text.right {
      padding-right: clamp( 1.25rem , 0.1524390244rem  +  5.487804878vw , 4.0625rem );
    }
}

@supports not (padding-right: clamp( 1.25rem , 0.1524390244rem  +  5.487804878vw , 4.0625rem )) {
    .main-about-us__text.right {
      padding-right: calc(1.25rem + 2.8125 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-left: clamp( 1.25rem , 0.1524390244rem  +  5.487804878vw , 4.0625rem )) {
    .main-about-us__text.left {
      padding-left: clamp( 1.25rem , 0.1524390244rem  +  5.487804878vw , 4.0625rem );
    }
}

@supports not (padding-left: clamp( 1.25rem , 0.1524390244rem  +  5.487804878vw , 4.0625rem )) {
    .main-about-us__text.left {
      padding-left: calc(1.25rem + 2.8125 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-top: clamp( 2.5rem , 1.5243902439rem  +  4.8780487805vw , 5rem )) {
    .advantages-about {
      padding-top: clamp( 2.5rem , 1.5243902439rem  +  4.8780487805vw , 5rem );
    }
}

@supports not (padding-top: clamp( 2.5rem , 1.5243902439rem  +  4.8780487805vw , 5rem )) {
    .advantages-about {
      padding-top: calc(2.5rem + 2.5 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-bottom: clamp( 2.5rem , 1.5243902439rem  +  4.8780487805vw , 5rem )) {
    .advantages-about {
      padding-bottom: clamp( 2.5rem , 1.5243902439rem  +  4.8780487805vw , 5rem );
    }
}

@supports not (padding-bottom: clamp( 2.5rem , 1.5243902439rem  +  4.8780487805vw , 5rem )) {
    .advantages-about {
      padding-bottom: calc(2.5rem + 2.5 * (100vw - 20rem) / 51.25);
    }
}

@supports (font-size: clamp( 1.5rem , 1.1097560976rem  +  1.9512195122vw , 2.5rem )) {
    .advantages-about__title {
      font-size: clamp( 1.5rem , 1.1097560976rem  +  1.9512195122vw , 2.5rem );
    }
}

@supports not (font-size: clamp( 1.5rem , 1.1097560976rem  +  1.9512195122vw , 2.5rem )) {
    .advantages-about__title {
      font-size: calc(1.5rem + 1 * (100vw - 20rem) / 51.25);
    }
}

@supports (margin-bottom: clamp( 1.875rem , 1.631097561rem  +  1.2195121951vw , 2.5rem )) {
    .advantages-about__title:not(:last-child) {
      margin-bottom: clamp( 1.875rem , 1.631097561rem  +  1.2195121951vw , 2.5rem );
    }
}

@supports not (margin-bottom: clamp( 1.875rem , 1.631097561rem  +  1.2195121951vw , 2.5rem )) {
    .advantages-about__title:not(:last-child) {
      margin-bottom: calc(1.875rem + 0.625 * (100vw - 20rem) / 51.25);
    }
}

@supports (font-size: clamp( 1rem , 0.9512195122rem  +  0.243902439vw , 1.125rem )) {
    .advantages-about__text {
      font-size: clamp( 1rem , 0.9512195122rem  +  0.243902439vw , 1.125rem );
    }
}

@supports not (font-size: clamp( 1rem , 0.9512195122rem  +  0.243902439vw , 1.125rem )) {
    .advantages-about__text {
      font-size: calc(1rem + 0.125 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-top: clamp( 4.375rem , 2.6676829268rem  +  8.5365853659vw , 8.75rem )) {
    .form-page__container {
      padding-top: clamp( 4.375rem , 2.6676829268rem  +  8.5365853659vw , 8.75rem );
    }
}

@supports not (padding-top: clamp( 4.375rem , 2.6676829268rem  +  8.5365853659vw , 8.75rem )) {
    .form-page__container {
      padding-top: calc(4.375rem + 4.375 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-left: clamp( 0.9375rem , 0.0838414634rem  +  4.2682926829vw , 3.125rem )) {
    .form-page__body {
      padding-left: clamp( 0.9375rem , 0.0838414634rem  +  4.2682926829vw , 3.125rem );
    }
}

@supports not (padding-left: clamp( 0.9375rem , 0.0838414634rem  +  4.2682926829vw , 3.125rem )) {
    .form-page__body {
      padding-left: calc(0.9375rem + 2.1875 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-right: clamp( 0.9375rem , 0.0838414634rem  +  4.2682926829vw , 3.125rem )) {
    .form-page__body {
      padding-right: clamp( 0.9375rem , 0.0838414634rem  +  4.2682926829vw , 3.125rem );
    }
}

@supports not (padding-right: clamp( 0.9375rem , 0.0838414634rem  +  4.2682926829vw , 3.125rem )) {
    .form-page__body {
      padding-right: calc(0.9375rem + 2.1875 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-top: clamp( 1.5625rem , 0.9527439024rem  +  3.0487804878vw , 3.125rem )) {
    .form-page__body {
      padding-top: clamp( 1.5625rem , 0.9527439024rem  +  3.0487804878vw , 3.125rem );
    }
}

@supports not (padding-top: clamp( 1.5625rem , 0.9527439024rem  +  3.0487804878vw , 3.125rem )) {
    .form-page__body {
      padding-top: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-bottom: clamp( 1.5625rem , 0.9527439024rem  +  3.0487804878vw , 3.125rem )) {
    .form-page__body {
      padding-bottom: clamp( 1.5625rem , 0.9527439024rem  +  3.0487804878vw , 3.125rem );
    }
}

@supports not (padding-bottom: clamp( 1.5625rem , 0.9527439024rem  +  3.0487804878vw , 3.125rem )) {
    .form-page__body {
      padding-bottom: calc(1.5625rem + 1.5625 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-top: clamp( 5rem , 3.0487804878rem  +  9.756097561vw , 10rem )) {
    .price__container {
      padding-top: clamp( 5rem , 3.0487804878rem  +  9.756097561vw , 10rem );
    }
}

@supports not (padding-top: clamp( 5rem , 3.0487804878rem  +  9.756097561vw , 10rem )) {
    .price__container {
      padding-top: calc(5rem + 5 * (100vw - 20rem) / 51.25);
    }
}

@supports (padding-bottom: clamp( 3.125rem , 1.9054878049rem  +  6.0975609756vw , 6.25rem )) {
    .price__container {
      padding-bottom: clamp( 3.125rem , 1.9054878049rem  +  6.0975609756vw , 6.25rem );
    }
}

@supports not (padding-bottom: clamp( 3.125rem , 1.9054878049rem  +  6.0975609756vw , 6.25rem )) {
    .price__container {
      padding-bottom: calc(3.125rem + 3.125 * (100vw - 20rem) / 51.25);
    }
}

@supports (font-size: clamp( 1rem , 0.9512195122rem  +  0.243902439vw , 1.125rem )) {
    .contact__text {
      font-size: clamp( 1rem , 0.9512195122rem  +  0.243902439vw , 1.125rem );
    }
}

@supports not (font-size: clamp( 1rem , 0.9512195122rem  +  0.243902439vw , 1.125rem )) {
    .contact__text {
      font-size: calc(1rem + 0.125 * (100vw - 20rem) / 51.25);
    }
}
}

@media (max-width: 47.99875em) and (min-width: 71.25em) {
  .menu {
    margin-top: 7.8125rem;
  }
}

@media (max-width: 47.99875em) and (min-width: 20em) and (max-width: 71.25em) {
@supports (margin-top: clamp( 3.75rem , 2.1646341463rem  +  7.9268292683vw , 7.8125rem )) {
    .menu {
      margin-top: clamp( 3.75rem , 2.1646341463rem  +  7.9268292683vw , 7.8125rem );
    }
}

@supports not (margin-top: clamp( 3.75rem , 2.1646341463rem  +  7.9268292683vw , 7.8125rem )) {
    .menu {
      margin-top: calc(3.75rem + 4.0625 * (100vw - 20rem) / 51.25);
    }
}
}

@media (any-hover: hover) {
  .popup__close:hover {
    background-color: #aa8b51;
  }

  .spollers__title:hover {
    background-color: #aa8b51;
  }

  .header__phone:hover {
    color: #C8A35F;
  }

  .menu__item:hover .menu__link {
    color: #C8A35F;
  }

  .menu__item:hover::after {
    left: 0;
    width: 100%;
  }

  .footer__phone:hover {
    text-decoration: underline;
  }

  .footer__dev:hover {
    opacity: 0.7;
  }

  .adress__mail:hover {
    text-decoration: underline;
  }

  .social-main__button:hover {
    background-color: #aa8b51;
  }

  .social-main__item:hover .social-main__link img {
    -webkit-transform: scale(1.3);
        -ms-transform: scale(1.3);
            transform: scale(1.3);
  }

  .form__button button:hover {
    background-color: #aa8b51;
  }

  .item-services:hover .item-services__image-ibg img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }

  .contact__phone:hover {
    text-decoration: underline;
  }
}

.webp .form-block{ background: url(../img/ford-png.webp) center/cover no-repeat; }

.webp .form-page{ background: url(../img/ford-png.webp) center/cover no-repeat; }

.footer__phone.viber{
	background: url("../img/viber.png") left/contain no-repeat; }
 
 .footer__phone.whatsapp{
	background: url("../img/whatapp.png") left/contain no-repeat; }
 
 .footer__phone.telegram{
	background: url("../img/telegram.png") left/contain no-repeat; }
 