@charset "UTF-8";

/*--------------------------------------------------------------
>>> RESET CSS:
--------------------------------------------------------------*/

/* Reset and base styles  */

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

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

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

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

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

/*--------------------------------------------------------------
>>> CSS ПЕРЕМЕННЫЕ:
--------------------------------------------------------------*/

:root {
  --container-width: 1664px;
}

/*--------------------------------------------------------------
>>> ПОДКЛЮЧЕНИЕ ШРИФТОВ:
--------------------------------------------------------------*/

@font-face {
  font-family: "Montserrat";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Montserrat-Bold.ttf");
}

@font-face {
  font-family: "Montserrat";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Montserrat-SemiBold.ttf");
}

@font-face {
  font-family: "Montserrat";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Montserrat-Medium.ttf");
}

@font-face {
  font-family: "Montserrat";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Montserrat-Regular.ttf");
}

@font-face {
  font-family: "PlayfairDisplay";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/PlayfairDisplay");
}

@font-face {
  font-family: "PlayfairDisplay";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/PlayfairDisplay-SemiBold.ttf");
}

@font-face {
  font-family: "PlayfairDisplay";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/PlayfairDisplay-Bold.ttf");
}

/*--------------------------------------------------------------
>>> SCSS MIXINS:
--------------------------------------------------------------*/

:root {
  --coefficient: 0.3333;
  --device-width: 1920;
  --mobile-coefficient: 1;
  --design-width: 1920;
}

/*--------------------------------------------------------------
>>> ОСНОВНЫЕ СТИЛИ:
----------------------------------------------------------------
# Основные стили
	- Стилизация scrollbar
	- Стилизация кнопок
	- Стилизация заголовков
	- Стилизация навигации слайдера
	- Стилизация cookies баннера
    - Стилизация модальных окон
    - Стилизация полей ввода
    - Стилизация чекбоксов
--------------------------------------------------------------*/

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #FFFFFF;
  font-variant-numeric: lining-nums;
  font-family: Montserrat;
  font-weight: 400;
  color: #191919;
}

section {
  padding: clamp(80px * var(--coefficient), 80 * 100vw / var(--design-width) * var(--mobile-coefficient), 80px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(80px * var(--coefficient), 80 * 100vw / var(--design-width) * var(--mobile-coefficient), 80px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient));
}

img {
  pointer-events: none;
}

.container {
  max-width: var(--container-width);
  width: 86.66vw;
  margin: 0 auto;
}

.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-col {
  flex-direction: column;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.grid {
  display: -ms-grid;
  display: -moz-grid;
  display: grid;
}

/* ========================== Стилизация scrollbar ==================== */

body::-webkit-scrollbar {
  width: 6px;
  height: 200px;
  /* ширина scrollbar */
}

body::-webkit-scrollbar-track {
  background: #FFFFFF;
  /* цвет дорожки */
}

body::-webkit-scrollbar-thumb {
  background-color: #EFCFA4;
  /* цвет плашки */
  border-radius: 5px;
  /* закругления плашки */
}

/* ========================== Стилизация кнопок ==================== */

.btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  height: clamp(60px * var(--coefficient), 60 * 100vw / var(--design-width) * var(--mobile-coefficient), 60px * var(--mobile-coefficient));
  padding: clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  border-radius: clamp(4px * var(--coefficient), 4 * 100vw / var(--design-width) * var(--mobile-coefficient), 4px * var(--mobile-coefficient));
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #200d04;
  background: linear-gradient(90deg, #e5b269 0%, #f8e0c0 50%, #dca967 100%);
  background: #efcfa4;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.btn:active {
  background: #DDAA69;
}

.btn.dark {
  background: #191919;
  color: #FFFFFF;
  border: 1px solid transparent;
}

/* ========================== Стилизация заголовков ==================== */

.section-header {
  font-family: "PlayfairDisplay";
  margin-bottom: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
}

.section-header h2 {
  font-size: clamp(56px * var(--coefficient), 56 * 100vw / var(--design-width) * var(--mobile-coefficient), 56px * var(--mobile-coefficient));
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-header h2 span {
  color: #956d3a;
}

.section-header > span {
  display: block;
  font-size: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  margin-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  line-height: 140%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  opacity: 0.8;
}

.section-header.white {
  color: #FFFFFF;
}

.section-header.white h2 span {
  color: #efcfa4;
}

/* ========================== Стилизация навигации слайдера ==================== */

.slider-navigation {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  margin-top: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.slider-navigation .swiper-pagination-progressbar {
  position: relative;
  height: clamp(12px * var(--coefficient), 1200vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient)) !important;
  background: #191919;
  border-radius: 1000px;
  overflow: hidden;
}

.slider-navigation .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: linear-gradient(90deg, #e5b269 0%, #f8e0c0 50%, #dca967 100%);
  border-radius: 1000px;
  display: block;
}

.slider-navigation__btns {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
}

.slider-navigation__btns svg {
  flex: none;
  cursor: pointer;
  width: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
  height: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.slider-navigation__btns svg.swiper-button-disabled {
  opacity: 0.5;
}

/* ========================== Стилизация cookies баннера ==================== */

.accept-cookies {
  margin: 0;
  padding: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: linear-gradient(90deg, #050302 0%, #341708 17.92%, #341708 74.15%, #160803 100%);
  border-top: 2px solid #efcfa4;
  border-bottom: 2px solid #efcfa4;
  -webkit-transition: all 1s ease 0s;
  -moz-transition: all 1s ease 0s;
  -ms-transition: all 1s ease 0s;
  -o-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
  transform: translate(0, 100%);
  -moz-transform: translate(0, 100%);
  -ms-transform: translate(0, 100%);
  -webkit-transform: translate(0, 100%);
  -o-transform: translate(0, 100%);
  transform: translate(0, 100%);
}

.accept-cookies__inner {
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  padding: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient));
}

.accept-cookies p {
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  line-height: 130%;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}

.accept-cookies p a {
  color: #efcfa4;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.accept-cookies p a:active {
  text-decoration: underline;
}

.accept-cookies__btns {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
}

.accept-cookies .btn {
  height: clamp(52px * var(--coefficient), 52 * 100vw / var(--design-width) * var(--mobile-coefficient), 52px * var(--mobile-coefficient));
  font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
}

.accept-cookies .btn.dark {
  border: 1px solid #efcfa4;
  color: #efcfa4;
}

.accept-cookies.show {
  transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

/* ========================== Стилизация модальных окон ==================== */

.overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 998;
  background: linear-gradient(90deg, rgba(22, 17, 13, 0.9) 0%, rgba(51, 43, 33, 0.9) 20%, rgba(18, 18, 16, 0.9) 40%, rgba(27, 27, 21, 0.9) 100%);
  display: none;
}

.popup {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  overflow: hidden;
  margin: 0;
  display: none;
}

.popup__header {
  margin-bottom: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  margin-top: clamp(67px * var(--coefficient), 67 * 100vw / var(--design-width) * var(--mobile-coefficient), 67px * var(--mobile-coefficient));
  text-align: center;
  color: #FFFFFF;
}

.popup__header h2 {
  font-size: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
  margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  font-family: "PlayfairDisplay";
}

.popup__header p {
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  line-height: 130%;
  letter-spacing: 0.01em;
}

.popup-close {
  display: block;
  margin-left: auto;
  margin-top: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  width: clamp(80px * var(--coefficient), 80 * 100vw / var(--design-width) * var(--mobile-coefficient), 80px * var(--mobile-coefficient));
  height: clamp(80px * var(--coefficient), 80 * 100vw / var(--design-width) * var(--mobile-coefficient), 80px * var(--mobile-coefficient));
  cursor: pointer;
}

.popup form {
  width: clamp(676px * var(--coefficient), 676 * 100vw / var(--design-width) * var(--mobile-coefficient), 676px * var(--mobile-coefficient));
  margin: 0 auto;
}

.popup form .form__inputs {
  width: 100%;
  gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  margin-bottom: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.popup form input[type=submit] {
  display: block;
  margin: 0 auto;
  margin-top: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

/* ========================== Стилизация полей ввода ==================== */

.input {
  width: 100%;
  color: #FFFFFF;
  background: #191919;
  border: 1px solid #efcfa4;
  line-height: 130%;
  letter-spacing: 0.01em;
  position: relative;
  padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient)) clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient)) clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient)) clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  border-radius: clamp(4px * var(--coefficient), 4 * 100vw / var(--design-width) * var(--mobile-coefficient), 4px * var(--mobile-coefficient));
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
}

.input::after {
  content: "*";
  position: absolute;
  right: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  top: clamp(22px * var(--coefficient), 22 * 100vw / var(--design-width) * var(--mobile-coefficient), 22px * var(--mobile-coefficient));
  width: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  height: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  color: #efcfa4;
}

.input input {
  width: 100%;
  background-color: transparent;
}

.input input::placeholder {
  color: #BABABA;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.input input:focus::placeholder {
  opacity: 0;
}

/* ========================== Стилизация чекбоксов ==================== */

.check-label {
  cursor: pointer;
}

.check-label input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.fakecheck {
  width: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  height: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  border-radius: clamp(4px * var(--coefficient), 4 * 100vw / var(--design-width) * var(--mobile-coefficient), 4px * var(--mobile-coefficient));
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  flex-shrink: 0;
  flex-grow: 0;
  cursor: pointer;
  border: 1px solid #efcfa4;
  background-color: transparent;
  align-items: center;
  justify-content: center;
}

.fakecheck svg polyline {
  stroke-dasharray: 25;
  stroke-dashoffset: 25;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.fakecheck.checked svg polyline {
  stroke-dashoffset: 0;
}

.form__policy {
  gap: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  justify-content: flex-start;
}

.form__policy p {
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  color: #BFBFBF;
}

.form__policy p a {
  color: #efcfa4;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.form__policy p a:active {
  color: #FFFFFF;
}

.form-accepts {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
}

/*--------------------------------------------------------------
>>> HEADER:
--------------------------------------------------------------*/

.header {
  position: sticky;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
  background: linear-gradient(90deg, #050302 0%, #341708 17.92%, #341708 74.15%, #160803 100%);
  padding: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient));
}

.header__logo {
  width: clamp(147px * var(--coefficient), 147 * 100vw / var(--design-width) * var(--mobile-coefficient), 147px * var(--mobile-coefficient));
  height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
}

.header__logo img {
  width: 100%;
  height: 100%;
}

.header nav ul {
  gap: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
}

.header nav a {
  font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  font-family: "PlayfairDisplay";
  letter-spacing: 0.03em;
  font-weight: 600;
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header nav a:active {
  color: #EFCFA4;
}

.header .btn {
  height: clamp(52px * var(--coefficient), 52 * 100vw / var(--design-width) * var(--mobile-coefficient), 52px * var(--mobile-coefficient));
}

.header__adaptive {
  display: none;
}

/* ========================== Cтили для бургер меню ==================== */

.header__burger-menu {
  width: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  border-radius: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 2;
  display: none;
}

#burger_menu {
  z-index: 100;
  width: clamp(26px * var(--coefficient), 26 * 100vw / var(--design-width) * var(--mobile-coefficient), 26px * var(--mobile-coefficient));
  height: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
  position: relative;
  transform: rotate(0deg);
  transition: 0.4s ease-in-out;
  cursor: pointer;
}

#burger_menu span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #e5b269 0%, #f8e0c0 50%, #dca967 100%);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#burger_menu span:nth-child(1) {
  top: 0px;
}

#burger_menu span:nth-child(2),
#burger_menu span:nth-child(3) {
  top: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
}

#burger_menu span:nth-child(4) {
  top: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
}

#burger_menu.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#burger_menu.open span {
  background: #FFFFFF;
  background: linear-gradient(90deg, #e5b269 0%, #f8e0c0 50%, #dca967 100%);
}

#burger_menu.open span:nth-child(2) {
  transform: rotate(45deg);
}

#burger_menu.open span:nth-child(3) {
  transform: rotate(-45deg);
}

#burger_menu.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.hidden {
  overflow: hidden !important;
}

/*--------------------------------------------------------------
>>> FOOTER:
--------------------------------------------------------------*/

.footer {
  background: linear-gradient(90deg, #16110d 0%, #2b2720 40%, #1b1b15 100%);
  padding-top: clamp(80px * var(--coefficient), 80 * 100vw / var(--design-width) * var(--mobile-coefficient), 80px * var(--mobile-coefficient));
  color: #FFFFFF;
}

.footer__inner {
  justify-content: flex-start;
  align-items: flex-start;
}

.footer__logo {
  display: block;
  width: clamp(257px * var(--coefficient), 257 * 100vw / var(--design-width) * var(--mobile-coefficient), 257px * var(--mobile-coefficient));
  height: clamp(70px * var(--coefficient), 70 * 100vw / var(--design-width) * var(--mobile-coefficient), 70px * var(--mobile-coefficient));
  margin-bottom: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.footer__logo img {
  width: 100%;
  height: 100%;
}

.footer__info {
  width: clamp(300px * var(--coefficient), 300 * 100vw / var(--design-width) * var(--mobile-coefficient), 300px * var(--mobile-coefficient));
}

.footer__info ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0.8;
}

.footer__info ul:not(:last-child) {
  margin-bottom: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.footer__info ul a {
  background: linear-gradient(90deg, #e5b269 0%, #f8e0c0 50%, #dca967 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__contacts {
  margin-left: auto;
  padding-right: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  margin-right: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  border-right: 1px solid #E5B269;
}

.footer__contacts ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  gap: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  align-items: flex-start;
}

.footer__contacts ul span {
  display: block;
  margin-bottom: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0.4;
}

.footer__contacts ul a {
  font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer__contacts ul a:active {
  color: #B59975;
}

.footer nav h2 {
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  margin-bottom: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  line-height: 120%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.4;
}

.footer nav ul {
  grid-template-columns: 1fr 1fr;
  gap: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
  row-gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
}

.footer nav ul a {
  font-size: clamp(28px * var(--coefficient), 28 * 100vw / var(--design-width) * var(--mobile-coefficient), 28px * var(--mobile-coefficient));
  line-height: 120%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 600;
  color: #FFFFFF;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer nav ul a:active {
  color: #B59975;
}

.footer__social {
  gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  margin-top: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  align-items: flex-start;
}

.footer__social a {
  display: block;
  width: clamp(300px * var(--coefficient), 300 * 100vw / var(--design-width) * var(--mobile-coefficient), 300px * var(--mobile-coefficient));
  height: clamp(50px * var(--coefficient), 50 * 100vw / var(--design-width) * var(--mobile-coefficient), 50px * var(--mobile-coefficient));
}

.footer__social a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
}

.footer__bottom {
  padding: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient));
  margin-top: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
  border-top: 1px solid #E5B269;
}

.footer__bottom span {
  font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0.8;
}

.footer__bottom .developed {
  gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  position: relative;
}

.footer__bottom .developed a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.footer__bottom .developed svg {
  width: clamp(149px * var(--coefficient), 149 * 100vw / var(--design-width) * var(--mobile-coefficient), 149px * var(--mobile-coefficient));
  height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
}

/*--------------------------------------------------------------
>>> ГЛАВНАЯ СТРАНИЦА:
--------------------------------------------------------------*/

/* ========================== HERO ==================== */

.hero {
  position: relative;
}

.hero > img {
  position: absolute;
  width: clamp(949px * var(--coefficient), 949 * 100vw / var(--design-width) * var(--mobile-coefficient), 949px * var(--mobile-coefficient));
  height: 100%;
  right: 0;
  top: 0;
  object-fit: cover;
}

.hero__content {
  width: clamp(974px * var(--coefficient), 974 * 100vw / var(--design-width) * var(--mobile-coefficient), 974px * var(--mobile-coefficient));
  padding-right: clamp(128px * var(--coefficient), 128 * 100vw / var(--design-width) * var(--mobile-coefficient), 128px * var(--mobile-coefficient));
}

.hero__content h1 {
  font-size: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
  margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: "PlayfairDisplay";
}

.hero__content h1 span {
  color: #aa7125;
}

.hero__content p {
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  margin-bottom: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
  line-height: 130%;
  letter-spacing: 0.01em;
  opacity: 0.7;
}

.hero__content-btns {
  justify-content: flex-start;
  gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
}

/* ========================== О НАС ==================== */

.about {
  background: linear-gradient(90deg, #16110d 0%, #332b21 20%, #121210 40%, #1b1b15 100%);
  color: #FFFFFF;
}

.about .section-header {
  margin-bottom: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
}

.about__inner {
  align-items: flex-start;
  gap: clamp(96px * var(--coefficient), 96 * 100vw / var(--design-width) * var(--mobile-coefficient), 96px * var(--mobile-coefficient));
}

.about__inner > img {
  flex: none;
  object-fit: cover;
  border: 2px solid #aa7125;
  border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  width: clamp(563px * var(--coefficient), 563 * 100vw / var(--design-width) * var(--mobile-coefficient), 563px * var(--mobile-coefficient));
  height: clamp(643px * var(--coefficient), 643 * 100vw / var(--design-width) * var(--mobile-coefficient), 643px * var(--mobile-coefficient));
}

.about__content-text {
  margin-bottom: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  line-height: 140%;
  letter-spacing: 0.01em;
  /* text-indent: 1rem; */
}

.about__content-text > * + * {
  margin-top: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
}

.about__content-advantages {
  gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.about__content-advantages img {
  width: clamp(80px * var(--coefficient), 80 * 100vw / var(--design-width) * var(--mobile-coefficient), 80px * var(--mobile-coefficient));
  height: clamp(80px * var(--coefficient), 80 * 100vw / var(--design-width) * var(--mobile-coefficient), 80px * var(--mobile-coefficient));
  margin-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
}

.about__content-advantages h3 {
  font-size: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
  line-height: 140%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.about__content-advantages li:not(:first-of-type) {
  padding-left: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

/* ========================== ГАРАНТИИ ==================== */

.guarantees {
  border: 4px solid #aa7125;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
  background: linear-gradient(90deg, #050302 0%, #341708 17.92%, #341708 74.15%, #160803 100%);
  padding: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient)) 0;
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  color: #FFFFFF;
  position: relative;
}

.guarantees::before {
  content: '';
  position: absolute;
  left: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  top: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
  background: url(../images/guarantees-bg-left.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: clamp(214px * var(--coefficient), 214 * 100vw / var(--design-width) * var(--mobile-coefficient), 214px * var(--mobile-coefficient));
  height: clamp(216px * var(--coefficient), 216 * 100vw / var(--design-width) * var(--mobile-coefficient), 216px * var(--mobile-coefficient));
}

.guarantees::after {
  content: '';
  position: absolute;
  right: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  top: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
  background: url(../images/guarantees-bg-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: clamp(214px * var(--coefficient), 214 * 100vw / var(--design-width) * var(--mobile-coefficient), 214px * var(--mobile-coefficient));
  height: clamp(216px * var(--coefficient), 216 * 100vw / var(--design-width) * var(--mobile-coefficient), 216px * var(--mobile-coefficient));
}

.guarantees svg {
  display: block;
  margin: 0 auto;
  margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  width: clamp(104px * var(--coefficient), 104 * 100vw / var(--design-width) * var(--mobile-coefficient), 104px * var(--mobile-coefficient));
  height: clamp(104px * var(--coefficient), 104 * 100vw / var(--design-width) * var(--mobile-coefficient), 104px * var(--mobile-coefficient));
}

/* ========================== ПРЕИМУЩЕСТВА ==================== */

.advantages {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08);
  background: #fffaf6;
}

.advantages .swiper-slide {
  flex-shrink: 1;
}

.advantages__item {
  width: clamp(257px * var(--coefficient), 257 * 100vw / var(--design-width) * var(--mobile-coefficient), 257px * var(--mobile-coefficient));
  border-radius: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  background: #141411;
  border: 2px solid #aa7125;
}

.advantages__item span {
  padding: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient));
  font-size: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #efcfa4;
  display: block;
  text-align: center;
}

.advantages__item a {
  display: block;
  width: 100%;
  border: 2px solid #aa7125;
  height: clamp(431px * var(--coefficient), 431 * 100vw / var(--design-width) * var(--mobile-coefficient), 431px * var(--mobile-coefficient));
  border-radius: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
}

.advantages__item a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
}

/* ========================== УСЛУГИ ==================== */

.services__items {
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
}

.services__item {
  padding: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  border-radius: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08);
  background-color: #FFFFFF;
  cursor: pointer;
  align-items: flex-start;
}

.services__item img {
  width: clamp(80px * var(--coefficient), 80 * 100vw / var(--design-width) * var(--mobile-coefficient), 80px * var(--mobile-coefficient));
  height: clamp(80px * var(--coefficient), 80 * 100vw / var(--design-width) * var(--mobile-coefficient), 80px * var(--mobile-coefficient));
  margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
}

.services__item h3 {
  font-size: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  font-weight: 500;
  font-family: "PlayfairDisplay";
  line-height: 120%;
  letter-spacing: 0.01em;
}

.services__item p {
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  line-height: 130%;
  letter-spacing: 0.01em;
  opacity: 0.7;
}

.services__item-bottom {
  margin-top: auto;
  width: 100%;
}

.services__item-bottom strong {
  font-size: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  font-weight: 700;
  line-height: 120%;
  font-family: "PlayfairDisplay";
}

.services__item-bottom svg {
  width: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
  height: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
  flex: none;
}

/* ========================== ЭТАПЫ ==================== */

.steps {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08);
  background: #fffaf6;
}

.steps__items {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  row-gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
}

.steps__item {
  position: relative;
}

.steps__item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  top: clamp(39px * var(--coefficient), 39 * 100vw / var(--design-width) * var(--mobile-coefficient), 39px * var(--mobile-coefficient));
  background: #191919;
}

.steps__item:last-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: clamp(35px * var(--coefficient), 35 * 100vw / var(--design-width) * var(--mobile-coefficient), 35px * var(--mobile-coefficient));
  width: clamp(10px * var(--coefficient), 10 * 100vw / var(--design-width) * var(--mobile-coefficient), 10px * var(--mobile-coefficient));
  height: clamp(10px * var(--coefficient), 10 * 100vw / var(--design-width) * var(--mobile-coefficient), 10px * var(--mobile-coefficient));
  background: #191919;
  border-radius: 100%;
}

.steps__item span {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px * var(--coefficient), 80 * 100vw / var(--design-width) * var(--mobile-coefficient), 80px * var(--mobile-coefficient));
  height: clamp(80px * var(--coefficient), 80 * 100vw / var(--design-width) * var(--mobile-coefficient), 80px * var(--mobile-coefficient));
  font-size: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  border-radius: 100%;
  background: linear-gradient(90deg, #16110d 0%, #332b21 20%, #121210 40%, #1b1b15 100%);
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.03em;
  color: #EFCFA4;
  position: relative;
}

.steps__item h3 {
  font-size: clamp(28px * var(--coefficient), 28 * 100vw / var(--design-width) * var(--mobile-coefficient), 28px * var(--mobile-coefficient));
  margin-bottom: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  line-height: 130%;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #956d3a;
}

.steps__item p {
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  line-height: 130%;
  letter-spacing: 0.01em;
  opacity: 0.7;
}

/* ========================== КЛИЕНТЫ ==================== */

.customers__items {
  grid-template-columns: repeat(7, 1fr);
  gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
}

.customers__item {
  height: clamp(108px * var(--coefficient), 108 * 100vw / var(--design-width) * var(--mobile-coefficient), 108px * var(--mobile-coefficient));
}

.customers__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ========================== КЕЙСЫ ==================== */

.cases {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08);
  background-color: #FFFFFF;
}

.cases__item {
  border-radius: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  border: 1px solid #E8E7E7;
  cursor: pointer;
}

.cases__item img {
  width: 100%;
  object-fit: cover;
  height: clamp(323px * var(--coefficient), 323 * 100vw / var(--design-width) * var(--mobile-coefficient), 323px * var(--mobile-coefficient));
  border-radius: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
}

.cases__item-info {
  padding: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
}

.cases__item-info span {
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  margin-bottom: clamp(6px * var(--coefficient), 6 * 100vw / var(--design-width) * var(--mobile-coefficient), 6px * var(--mobile-coefficient));
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.01em;
  color: #956d3a;
  opacity: 0.8;
  display: block;
}

.cases__item-info h3 {
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cases__item-info p {
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  line-height: 130%;
  letter-spacing: 0.01em;
  opacity: 0.7;
}

.cases__item-info strong {
  font-size: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.02em;
  color: #956d3a;
  font-family: "PlayfairDisplay";
}

.cases__item-info svg {
  width: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
  height: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
}

.cases__item-bottom {
  padding-top: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  margin-top: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  border-top: 1px solid #E5B269;
}

/* ========================== ОТЗЫВЫ ==================== */

.reviews {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08);
  background: #fffaf6;
}

.reviews__item {
  padding: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  border-radius: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  border: 1px solid #E8E7E7;
}

.reviews__item img {
  width: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
  height: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
  margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
}

.reviews__item h3 {
  font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  padding-top: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  margin-top: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  border-top: 1px solid #E5B269;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.02em;
  color: #956d3a;
}

.reviews__item p {
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  line-height: 130%;
  letter-spacing: 0.01em;
}

/* ========================== CALL TO ACTION ==================== */

.cta {
  position: relative;
  background: url(../images/cta-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.cta__inner {
  position: relative;
}

.cta h2 {
  font-size: clamp(56px * var(--coefficient), 56 * 100vw / var(--design-width) * var(--mobile-coefficient), 56px * var(--mobile-coefficient));
  margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: "PlayfairDisplay";
}

.cta p {
  font-size: clamp(22px * var(--coefficient), 22 * 100vw / var(--design-width) * var(--mobile-coefficient), 22px * var(--mobile-coefficient));
  margin-bottom: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
  line-height: 130%;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}

/* ========================== FAQ ==================== */

.faq {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08);
  background-color: #FFFFFF;
}

.faq__items {
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  row-gap: 0;
}

.faq__item {
  padding: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08);
  background-color: #FFFFFF;
  height: fit-content;
}

.faq__item-question {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.02em;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.faq__item-question svg {
  flex: none;
  width: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
  height: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.faq__item-question svg path {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.faq__item-question.open {
  color: #956d3a;
}

.faq__item-question.open svg {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.faq__item-question.open svg path {
  fill: #191919;
}

.faq__item-answer {
  display: none;
  border-top: 1px solid #E5B269;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: #474747;
  padding-top: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  margin-top: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
}

/* ========================== КОНТАКТЫ ==================== */

.contacts {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08);
  background: #fffaf6;
}

.contacts__inner {
  gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  align-items: stretch;
}

.contacts__map {
  width: clamp(1100px * var(--coefficient), 1100 * 100vw / var(--design-width) * var(--mobile-coefficient), 1100px * var(--mobile-coefficient));
  min-height: clamp(496px * var(--coefficient), 496 * 100vw / var(--design-width) * var(--mobile-coefficient), 496px * var(--mobile-coefficient));
  border-radius: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  height: auto;
  flex: none;
}

.contacts__map iframe {
  width: 100%;
  height: 100%;
  border-radius: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
}

.contacts__info {
  border-radius: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  padding: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.12);
  background-color: #FFFFFF;
}

.contacts__info button {
  width: 100%;
}

.contacts__items {
  width: 100%;
  align-items: flex-start;
  gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  padding-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  border-bottom: 1px solid #E5B269;
}

.contacts__item {
  width: 100%;
}

.contacts__item-header {
  justify-content: flex-start;
  gap: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  margin-bottom: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #B59975;
}

.contacts__item-header img {
  width: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  height: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
}

.contacts__item a {
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  line-height: 130%;
  letter-spacing: 0.01em;
  font-weight: 500;
  color: #191919;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.contacts__item a:active {
  color: #B59975;
}

.contacts__social {
  gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  padding-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  align-items: stretch;
  border-bottom: 1px solid #E5B269;
}

.contacts__social a {
  display: block;
  flex: 1;
  height: auto;
}

.contacts__social a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
}

/*--------------------------------------------------------------
>>> СТРАНИЦА "404":
--------------------------------------------------------------*/

.error-404,
.thanks {
  background: url(../images/not-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.error-404__inner,
.thanks__inner {
  color: #FFFFFF;
}

.error-404__inner h1,
.thanks__inner h1 {
  font-size: clamp(56px * var(--coefficient), 56 * 100vw / var(--design-width) * var(--mobile-coefficient), 56px * var(--mobile-coefficient));
  margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  line-height: 140%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: "PlayfairDisplay";
}

.error-404__inner p,
.thanks__inner p {
  font-size: clamp(22px * var(--coefficient), 22 * 100vw / var(--design-width) * var(--mobile-coefficient), 22px * var(--mobile-coefficient));
  margin-bottom: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
  line-height: 130%;
  letter-spacing: 0.01em;
}

.error-404__inner .btn,
.thanks__inner .btn {
  width: fit-content;
}

/*--------------------------------------------------------------
>>> ДОКУМЕНТЫ:
--------------------------------------------------------------*/

.docs {
  font-size: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  line-height: 140%;
  letter-spacing: 0.02em;
}

.docs p,
.docs ul,
.docs ol {
  opacity: 0.7;
}

.docs ul {
  padding-left: 1rem;
}

.docs ul li {
  list-style-type: disc;
}

.docs ol {
  padding-left: 1rem;
}

.docs a {
  color: #DDAA69;
  font-weight: 600;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.docs a:active {
  text-decoration: underline;
}

.docs h1 {
  font-size: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
  margin-bottom: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  line-height: 140%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 800;
  color: #DDAA69;
}

.docs h2 {
  font-size: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  line-height: 140%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 700;
}

.docs .wp-block-group:not(:last-child) {
  margin-bottom: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
}

@media only screen and (max-width: 640px) {
  :root {
    --coefficient: 0.8205;
    --device-width: 640;
    --mobile-coefficient: 1.641;
    --design-width: 640;
  }

  section {
    padding: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient));
  }

  .container {
    max-width: 100%;
    width: 100%;
    padding: clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  /* ========================== Стилизация кнопок ==================== */

  .btn {
    width: 100%;
    font-size: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
    height: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
    padding: clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  }

  /* ========================== Стилизация заголовков ==================== */

  .section-header {
    margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .section-header h2 {
    font-size: clamp(28px * var(--coefficient), 28 * 100vw / var(--design-width) * var(--mobile-coefficient), 28px * var(--mobile-coefficient));
  }

  .section-header > span {
    font-size: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
    margin-bottom: clamp(2px * var(--coefficient), 2 * 100vw / var(--design-width) * var(--mobile-coefficient), 2px * var(--mobile-coefficient));
  }

  /* ========================== Стилизация навигации слайдера ==================== */

  .slider-navigation {
    gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    margin-top: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .slider-navigation .swiper-pagination-progressbar {
    height: clamp(8px * var(--coefficient), 800vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient)) !important;
  }

  .slider-navigation__btns {
    gap: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  }

  .slider-navigation__btns svg {
    width: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
    height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  }

  /* ========================== Стилизация cookies баннера ==================== */

  .accept-cookies__inner {
    flex-direction: column;
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient));
  }

  .accept-cookies p {
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
  }

  .accept-cookies p br {
    display: none;
  }

  .accept-cookies__btns {
    flex-direction: column;
    gap: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
  }

  .accept-cookies .btn {
    height: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
    font-size: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
  }

  /* ========================== Стилизация модальных окон ==================== */

  .popup__header {
    margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    margin-top: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
  }

  .popup__header h2 {
    font-size: clamp(34px * var(--coefficient), 34 * 100vw / var(--design-width) * var(--mobile-coefficient), 34px * var(--mobile-coefficient));
    margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .popup__header p {
    font-size: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
    opacity: 0.7;
  }

  .popup-close {
    margin-top: clamp(36px * var(--coefficient), 36 * 100vw / var(--design-width) * var(--mobile-coefficient), 36px * var(--mobile-coefficient));
    width: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
    height: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  }

  .popup form {
    width: 100%;
  }

  .popup form .form__inputs {
    gap: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
    margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .popup form input[type=submit] {
    margin-top: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  /* ========================== Стилизация полей ввода ==================== */

  .input {
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
  }

  .input::after {
    content: "*";
    font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
    right: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    top: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  }

  /* ========================== Стилизация чекбоксов ==================== */

  .fakecheck {
    width: clamp(36px * var(--coefficient), 36 * 100vw / var(--design-width) * var(--mobile-coefficient), 36px * var(--mobile-coefficient));
    height: clamp(36px * var(--coefficient), 36 * 100vw / var(--design-width) * var(--mobile-coefficient), 36px * var(--mobile-coefficient));
  }

  .form__policy p {
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
  }

  /* ========================== HEADER ==================== */

  .header {
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient));
  }

  .header nav {
    display: none;
  }

  .header button {
    display: none;
  }

  .header__logo {
    width: clamp(147px * var(--coefficient), 147 * 100vw / var(--design-width) * var(--mobile-coefficient), 147px * var(--mobile-coefficient));
    height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  }

  .header__adaptive {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 4;
    display: block;
  }

  .header__adaptive nav {
    margin: 0;
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 1;
    top: 0;
    background-color: #FFFFFF;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
    display: none;
    border-radius: clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient)) clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    padding-top: clamp(67px * var(--coefficient), 67 * 100vw / var(--design-width) * var(--mobile-coefficient), 67px * var(--mobile-coefficient));
  }

  .header__adaptive nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
    padding-bottom: 0;
  }

  .header__adaptive nav ul li {
    width: 100%;
    padding: clamp(15px * var(--coefficient), 15 * 100vw / var(--design-width) * var(--mobile-coefficient), 15px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(15px * var(--coefficient), 15 * 100vw / var(--design-width) * var(--mobile-coefficient), 15px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient));
  }

  .header__adaptive nav ul li:not(:last-child) {
    border-bottom: 1px solid #D2D4D5;
  }

  .header__adaptive nav ul a {
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    color: #191919;
    display: block;
    text-align: center;
    text-transform: uppercase;
  }

  .header__burger-menu {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }

  /* ========================== FOOTER ==================== */

  .footer {
    padding-top: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  }

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

  .footer__info {
    width: 100%;
    text-align: center;
    padding-bottom: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
    margin-bottom: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
    border-bottom: 1px solid #E5B269;
  }

  .footer__info ul {
    font-size: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
    align-items: center;
  }

  .footer__contacts {
    margin: 0;
    padding: 0;
    border: none;
    padding-bottom: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
    margin-bottom: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
    border-bottom: 1px solid #E5B269;
  }

  .footer__contacts ul {
    text-align: center;
    gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    align-items: center;
  }

  .footer__contacts ul span {
    margin-bottom: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    font-size: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
  }

  .footer nav h2 {
    font-size: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
  }

  .footer nav ul {
    grid-template-columns: 1fr;
    text-align: center;
    gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .footer nav ul a {
    font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  }

  .footer__social {
    gap: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
    margin-top: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .footer__social a {
    width: 100%;
    height: clamp(49px * var(--coefficient), 49 * 100vw / var(--design-width) * var(--mobile-coefficient), 49px * var(--mobile-coefficient));
  }

  .footer__social a img {
    height: clamp(49px * var(--coefficient), 49 * 100vw / var(--design-width) * var(--mobile-coefficient), 49px * var(--mobile-coefficient));
  }

  .footer__bottom {
    padding: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient)) clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient)) clamp(0px * var(--coefficient), 0 * 100vw / var(--design-width) * var(--mobile-coefficient), 0px * var(--mobile-coefficient));
    margin-top: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
    gap: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__bottom span {
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .footer__bottom .developed {
    gap: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
    flex-direction: column;
  }

  /* ========================== HERO ==================== */

  .hero {
    position: relative;
  }

  .hero > img {
    position: static;
    width: 100%;
    object-fit: cover;
    height: clamp(266px * var(--coefficient), 266 * 100vw / var(--design-width) * var(--mobile-coefficient), 266px * var(--mobile-coefficient));
    margin-top: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  }

  .hero__content {
    width: 100%;
    padding: 0;
  }

  .hero__content h1 {
    font-size: clamp(33px * var(--coefficient), 33 * 100vw / var(--design-width) * var(--mobile-coefficient), 33px * var(--mobile-coefficient));
    margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .hero__content p {
    font-size: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
    margin-bottom: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  }

  .hero__content p br {
    display: none;
  }

  .hero__content-btns {
    flex-direction: column;
    gap: clamp(12px * var(--coefficient), 12 * 100vw / var(--design-width) * var(--mobile-coefficient), 12px * var(--mobile-coefficient));
  }

  /* ========================== О НАС ==================== */

  .about .section-header {
    margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .about__inner {
    flex-direction: column-reverse;
    gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .about__inner > img {
    width: 100%;
    height: clamp(411px * var(--coefficient), 411 * 100vw / var(--design-width) * var(--mobile-coefficient), 411px * var(--mobile-coefficient));
  }

  .about__content-text {
    margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .about__content-advantages {
    gap: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
    row-gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    flex-wrap: wrap;
  }

  .about__content-advantages img {
    width: clamp(56px * var(--coefficient), 56 * 100vw / var(--design-width) * var(--mobile-coefficient), 56px * var(--mobile-coefficient));
    height: clamp(56px * var(--coefficient), 56 * 100vw / var(--design-width) * var(--mobile-coefficient), 56px * var(--mobile-coefficient));
  }

  .about__content-advantages h3 {
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
  }

  .about__content-advantages li {
    width: clamp(196px * var(--coefficient), 196 * 100vw / var(--design-width) * var(--mobile-coefficient), 196px * var(--mobile-coefficient));
    position: relative;
  }

  .about__content-advantages li:not(:first-of-type) {
    padding: 0;
    border: none;
  }

  .about__content-advantages li:nth-child(2n) {
    width: clamp(149px * var(--coefficient), 149 * 100vw / var(--design-width) * var(--mobile-coefficient), 149px * var(--mobile-coefficient));
    padding-left: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
    border-left: 1px solid rgba(255, 255, 255, 0.5);
  }

  .about__content-advantages li:nth-child(2n)::after {
    position: relative;
    content: "";
    position: absolute;
    width: clamp(360px * var(--coefficient), 360 * 100vw / var(--design-width) * var(--mobile-coefficient), 360px * var(--mobile-coefficient));
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    right: 0;
    bottom: clamp(-12px * var(--mobile-coefficient), -1200vw / var(--design-width) * var(--mobile-coefficient), -12px * var(--coefficient));
  }

  .about__content-advantages li:last-child::after {
    display: none;
  }

  /* ========================== ГАРАНТИИ ==================== */

  .guarantees {
    border: 2px solid #aa7125;
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .guarantees br {
    display: none;
  }

  .guarantees::before {
    display: none;
  }

  .guarantees::after {
    display: none;
  }

  .guarantees svg {
    width: clamp(72px * var(--coefficient), 72 * 100vw / var(--design-width) * var(--mobile-coefficient), 72px * var(--mobile-coefficient));
    height: clamp(72px * var(--coefficient), 72 * 100vw / var(--design-width) * var(--mobile-coefficient), 72px * var(--mobile-coefficient));
  }

  /* ========================== ПРЕИМУЩЕСТВА ==================== */

  .advantages__item {
    width: clamp(187px * var(--coefficient), 187 * 100vw / var(--design-width) * var(--mobile-coefficient), 187px * var(--mobile-coefficient));
  }

  .advantages__item span {
    font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  }

  .advantages__item a {
    height: clamp(265px * var(--coefficient), 265 * 100vw / var(--design-width) * var(--mobile-coefficient), 265px * var(--mobile-coefficient));
  }

  /* ========================== УСЛУГИ ==================== */

  .services__items {
    grid-template-columns: 1fr;
  }

  .services__item {
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .services__item img {
    width: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
    height: clamp(64px * var(--coefficient), 64 * 100vw / var(--design-width) * var(--mobile-coefficient), 64px * var(--mobile-coefficient));
    margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .services__item h3 {
    font-size: clamp(28px * var(--coefficient), 28 * 100vw / var(--design-width) * var(--mobile-coefficient), 28px * var(--mobile-coefficient));
  }

  .services__item p {
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
    margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .services__item-bottom strong {
    font-size: clamp(28px * var(--coefficient), 28 * 100vw / var(--design-width) * var(--mobile-coefficient), 28px * var(--mobile-coefficient));
  }

  .services__item-bottom svg {
    width: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
    height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  }

  /* ========================== ЭТАПЫ ==================== */

  .steps__items {
    grid-template-columns: 1fr;
    gap: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  }

  .steps__item {
    position: relative;
    padding-left: clamp(60px * var(--coefficient), 60 * 100vw / var(--design-width) * var(--mobile-coefficient), 60px * var(--mobile-coefficient));
  }

  .steps__item::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    top: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
    left: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .steps__item:last-child::before {
    height: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  }

  .steps__item:last-child::after {
    left: clamp(19px * var(--coefficient), 19 * 100vw / var(--design-width) * var(--mobile-coefficient), 19px * var(--mobile-coefficient));
    top: clamp(68px * var(--coefficient), 68 * 100vw / var(--design-width) * var(--mobile-coefficient), 68px * var(--mobile-coefficient));
  }

  .steps__item span {
    width: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
    height: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
    font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
  }

  .steps__item h3 {
    font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  }

  .steps__item p {
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
  }

  /* ========================== КЛИЕНТЫ ==================== */

  .customers__items {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .customers__item {
    height: clamp(76px * var(--coefficient), 76 * 100vw / var(--design-width) * var(--mobile-coefficient), 76px * var(--mobile-coefficient));
  }

  /* ========================== КЕЙСЫ ==================== */

  .cases__item img {
    height: clamp(216px * var(--coefficient), 216 * 100vw / var(--design-width) * var(--mobile-coefficient), 216px * var(--mobile-coefficient));
  }

  .cases__item-info {
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .cases__item-info span {
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
    margin-bottom: clamp(6px * var(--coefficient), 6 * 100vw / var(--design-width) * var(--mobile-coefficient), 6px * var(--mobile-coefficient));
  }

  .cases__item-info h3 {
    font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  }

  .cases__item-info p {
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
  }

  .cases__item-info strong {
    font-size: clamp(36px * var(--coefficient), 36 * 100vw / var(--design-width) * var(--mobile-coefficient), 36px * var(--mobile-coefficient));
  }

  .cases__item-info svg {
    width: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
    height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  }

  /* ========================== ОТЗЫВЫ ==================== */

  .reviews__item {
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .reviews__item img {
    width: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
    height: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  }

  .reviews__item h3 {
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    padding-top: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
    margin-top: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .reviews__item p {
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
  }

  /* ========================== CALL TO ACTION ==================== */

  .cta {
    position: relative;
    background: url(../images/cta-bg-mobile.webp);
    padding-bottom: clamp(330px * var(--coefficient), 330 * 100vw / var(--design-width) * var(--mobile-coefficient), 330px * var(--mobile-coefficient));
  }

  .cta__inner {
    position: relative;
  }

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

  .cta h2 {
    font-size: clamp(28px * var(--coefficient), 28 * 100vw / var(--design-width) * var(--mobile-coefficient), 28px * var(--mobile-coefficient));
    margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .cta p {
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    margin-bottom: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  }

  /* ========================== FAQ ==================== */

  .faq__items {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq__item {
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .faq__item-question {
    gap: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
  }

  .faq__item-question svg {
    width: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
    height: clamp(40px * var(--coefficient), 40 * 100vw / var(--design-width) * var(--mobile-coefficient), 40px * var(--mobile-coefficient));
  }

  .faq__item-answer {
    padding-top: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    margin-top: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    font-size: clamp(14px * var(--coefficient), 14 * 100vw / var(--design-width) * var(--mobile-coefficient), 14px * var(--mobile-coefficient));
  }

  /* ========================== КОНТАКТЫ ==================== */

  .contacts__inner {
    flex-direction: column;
  }

  .contacts__map {
    width: 100%;
    height: clamp(569px * var(--coefficient), 569 * 100vw / var(--design-width) * var(--mobile-coefficient), 569px * var(--mobile-coefficient));
  }

  .contacts__info {
    border-radius: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    padding: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .contacts__items {
    gap: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    padding-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .contacts__item-header {
    font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  }

  .contacts__item a {
    font-size: clamp(18px * var(--coefficient), 18 * 100vw / var(--design-width) * var(--mobile-coefficient), 18px * var(--mobile-coefficient));
  }

  .contacts__social {
    gap: clamp(8px * var(--coefficient), 8 * 100vw / var(--design-width) * var(--mobile-coefficient), 8px * var(--mobile-coefficient));
    margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    padding-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    align-items: stretch;
    flex-direction: column;
  }

  .contacts__social a {
    height: clamp(49px * var(--coefficient), 49 * 100vw / var(--design-width) * var(--mobile-coefficient), 49px * var(--mobile-coefficient));
  }

  .contacts__social a img {
    width: 100%;
    height: clamp(49px * var(--coefficient), 49 * 100vw / var(--design-width) * var(--mobile-coefficient), 49px * var(--mobile-coefficient));
  }

  /* ========================== 404 ==================== */

  .error-404,
  .thanks {
    background: url(../images/not-bg-mobile.webp);
    min-height: clamp(632px * var(--coefficient), 632 * 100vw / var(--design-width) * var(--mobile-coefficient), 632px * var(--mobile-coefficient));
  }

  .error-404__inner,
  .thanks__inner {
    color: #FFFFFF;
  }

  .error-404__inner h1,
  .thanks__inner h1 {
    font-size: clamp(28px * var(--coefficient), 28 * 100vw / var(--design-width) * var(--mobile-coefficient), 28px * var(--mobile-coefficient));
    margin-bottom: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .error-404__inner p,
  .thanks__inner p {
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
    margin-bottom: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  }

  .error-404__inner .btn,
  .thanks__inner .btn {
    width: 100%;
  }

  /* ========================== ДОКУМЕНТЫ ==================== */

  .docs {
    font-size: clamp(16px * var(--coefficient), 16 * 100vw / var(--design-width) * var(--mobile-coefficient), 16px * var(--mobile-coefficient));
  }

  .docs h1 {
    font-size: clamp(32px * var(--coefficient), 32 * 100vw / var(--design-width) * var(--mobile-coefficient), 32px * var(--mobile-coefficient));
    margin-bottom: clamp(24px * var(--coefficient), 24 * 100vw / var(--design-width) * var(--mobile-coefficient), 24px * var(--mobile-coefficient));
  }

  .docs h2 {
    font-size: clamp(20px * var(--coefficient), 20 * 100vw / var(--design-width) * var(--mobile-coefficient), 20px * var(--mobile-coefficient));
  }

  .docs .wp-block-group:not(:last-child) {
    margin-bottom: clamp(48px * var(--coefficient), 48 * 100vw / var(--design-width) * var(--mobile-coefficient), 48px * var(--mobile-coefficient));
  }
}

@media (hover: hover) {
  .btn:hover {
    background: #DDAA69;
  }

  .btn.dark:hover {
    border-color: #191919;
    background-color: #FFFFFF;
    color: #191919;
  }

  .accept-cookies p a:hover {
    text-decoration: underline;
  }

  .accept-cookies .btn.dark:hover {
    background-color: #efcfa4;
  }

  .form__policy p a:hover {
    color: #FFFFFF;
  }

  .header nav a:hover {
    color: #EFCFA4;
  }

  .footer__contacts ul a:hover {
    color: #B59975;
  }

  .footer nav ul a:hover {
    color: #B59975;
  }

  .contacts__item a:hover {
    color: #B59975;
  }

  .docs a:hover {
    text-decoration: underline;
  }
}