@charset "UTF-8";

@font-face {
  font-family: "UAF Sans";
  font-display: swap;
  src: url("../fonts/UAFSans-Ultra.woff2") format("woff2"), url("../fonts/UAFSans-Ultra.woff") format("woff");
  font-weight: 950;
  font-style: normal;
}

@font-face {
  font-family: "UAF Sans";
  font-display: swap;
  src: url("../fonts/UAFSans-Black.woff2") format("woff2"), url("../fonts/UAFSans-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

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

@font-face {
  font-family: "UAF Sans";
  font-display: swap;
  src: url("../fonts/UAFSans-SemiBold.woff2") format("woff2"), url("../fonts/UAFSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "UAF Sans";
  font-display: swap;
  src: url("../fonts/UAFSans-Book.otf") format("truetype"), url("../fonts/UAFSans-Book.woff2") format("woff2"), url("../fonts/UAFSans-Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "UAF Sans";
  font-display: swap;
  src: url("../fonts/UAFSans-Book.otf") format("truetype"), url("../fonts/UAFSans-Book.woff2") format("woff2"), url("../fonts/UAFSans-Book.woff") format("woff");
  font-weight: 450;
  font-style: normal;
}

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

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
video {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --container-width: 1346px;
  --transition: .3s ease;
  --transition-slow: .9s ease;
  --tr: .3s ease;
  --trd: .3s ease .3s;
  --default-font-family: "UAF Sans";
  --heading-font-family: "UAF Sans";
  --numbers-font-family: "Quantico";
  --sp: 64px;
  --primary: #F6921E;
  --secondary: #FFFFFF;
  --white: #FFFFFF;
  --black: #000000;
  --grey-100: #F1F1F1;
  --grey-300: #E8E8E8;
  --grey-400: #AAADAD;
  --grey-700: #626667;
  --red: #FF3F3F;
  --green: #00E067;
  --fz-default: 16px;
  --h1: 102px;
  --h2: 82px;
  --h3: 60px;
  --h4: 45px;
  --h5: 22px;
  --h6: 20px;
  --m: 18px;
  --s: 14px;
  --xs: 12px;
  --xxs: 10px;
}

body {
  font: 400 var(--fz-default) var(--default-font-family), Helvetica, Arial, sans-serif;
  background: var(--black);
  min-width: 360px;
  color: var(--secondary);
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01" on;
}

body.overflow-hidden {
  overflow: hidden;
  height: 100vh;
}

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

.hidden {
  display: none;
  overflow: hidden;
}

.wrapper {
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-flow: column;
}

.wrapper .main {
  flex: 1 1 auto;
  margin-top: 80px;
}

.video-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.video-background {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* dark overlay */
}

[class*=__container] {
  margin: 0 auto;
  max-width: var(--container-width);
  padding: 0 16px;
  width: 100%;
}

[class*=__container] [class*=__container] {
  padding: 0;
}

form input.error {
  border: 1px solid var(--red) !important;
  color: var(--red) !important;
}

form input.error::-moz-placeholder {
  color: var(--red) !important;
}

form input.error::placeholder {
  color: var(--red) !important;
}

form input.not_error {
  border: 1px solid var(--green) !important;
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  width: 46px;
  height: 46px;
  top: auto;
  bottom: 0;
  transition: 0.3s all ease;
}

.swiper .swiper-button-prev:after,
.swiper .swiper-button-next:after {
  display: none;
}

.swiper .swiper-button-prev:hover,
.swiper .swiper-button-next:hover {
  opacity: 0.8;
}

.swiper .swiper-button-prev {
  left: 0;
  background: #000 url(../img/prev.svg) 50% no-repeat;
}

.swiper .swiper-button-next {
  right: auto;
  left: 56px;
  background: #000 url(../img/next.svg) 50% no-repeat;
}

.document {
  padding: var(--sp) 0;
}

.document__container {
  max-width: 888px;
}

.document__content > * {
  margin: 0;
}

.document__content > *:first-child {
  margin-top: 0;
}

.document__content > *:last-child {
  margin-bottom: 0;
}

.document__content h1,
.document__content h2,
.document__content h3,
.document__content h4,
.document__content h5,
.document__content h6 {
  margin: 40px 0 20px;
}

.document__content h1:first-child,
.document__content h2:first-child,
.document__content h3:first-child,
.document__content h4:first-child,
.document__content h5:first-child,
.document__content h6:first-child {
  margin-top: 0;
}

.document__content h1:last-child,
.document__content h2:last-child,
.document__content h3:last-child,
.document__content h4:last-child,
.document__content h5:last-child,
.document__content h6:last-child {
  margin-bottom: 0;
}

.document__content h1 {
  font: 700 var(--h2)/122% var(--heading-font-family);
  max-width: 700px;
  margin-bottom: 40px;
}

.document__content h2 {
  font: 700 var(--h4)/110% var(--heading-font-family);
}

.document__content h3 {
  font: 700 var(--h4)/110% var(--heading-font-family);
}

.document__content h4 {
  font: 700 var(--h5)/140% var(--heading-font-family);
}

.document__content h5 {
  font: 700 var(--h6)/140% var(--heading-font-family);
}

.document__content a,
.document__content a:visited {
  color: var(--accent);
}

.document__content a:hover {
  color: var(--primary);
}

.document__content ul > *,
.document__content ol > * {
  margin: 0.25em 0;
}

.document__content ul > *:first-child,
.document__content ol > *:first-child {
  margin-top: 0;
}

.document__content ul > *:last-child,
.document__content ol > *:last-child {
  margin-bottom: 0;
}

.document__content ul li {
  position: relative;
  padding-left: 20px;
}

.document__content ul li:before {
  background: var(--white);
  content: "";
  display: block;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  position: absolute;
  top: 0.55em;
  left: 8px;
}

.document__content ol {
  counter-reset: listCounter;
}

.document__content ol li {
  counter-increment: listCounter;
}

.document__content ol li:before {
  content: counter(listCounter) ".";
  display: inline-block;
  margin-right: 10px;
  min-width: 20px;
}

.document__content b,
.document__content strong {
  font-weight: 700;
}

.document__content em,
.document__content i {
  font-style: italic;
}

h1,
._h1 {
  font: 700 var(--h1)/110% var(--heading-font-family);
}

h2,
._h2 {
  font: 700 var(--h2)/122% var(--heading-font-family);
  max-width: 700px;
}

h3,
._h3 {
  font: 700 var(--h3)/120% var(--heading-font-family);
}

h4,
._h4 {
  font: 700 var(--h4)/110% var(--heading-font-family);
}

h5,
._h5 {
  font: 700 var(--h5)/140% var(--heading-font-family);
}

h6,
._h6 {
  font: 700 var(--h6)/140% var(--heading-font-family);
}

a {
  color: var(--secondary);
  text-decoration: none;
}

._semibold {
  font-weight: 600;
}

._bold {
  font-weight: 700;
}

._primary {
  color: var(--primary);
}

._secondary {
  color: var(--secondary);
}

._s {
  font-size: var(--s);
  line-height: 140%;
}

._m {
  font-size: var(--m);
  line-height: 140%;
}

._l {
  font-size: var(--l);
  line-height: 140%;
}

._e {
  display: flex;
  flex-flow: column;
  gap: 16px;
}

.btn {
  font: 700 16px/1 var(--heading-font-family);
  position: relative;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 27px;
  background: var(--primary);
  color: var(--white);
  text-transform: uppercase;
  height: 52px;
  text-align: center;
  transition: var(--tr);
  border: none;
  cursor: pointer;
}

.btn svg {
  width: 24px;
  height: 24px;
}

.btn.btn-orange {
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
}

.btn.btn-orange:hover {
  border: 2px solid #e16709;
  color: #e16709;
}

.btn__inner {
  clip-path: polygon(0% 15px, 15px 0%, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
  background: var(--primary);
  color: var(--black);
}

.btn__inner:before {
  background: var(--primary);
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  transition: 0.3s ease all;
  clip-path: polygon(0% 15px, 14px 0%, 100% 0%, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0% 15px, 2.5px 14px, 2.5px calc(100% - 2px), calc(100% - 15.5px) calc(100% - 2px), calc(100% - 2px) calc(100% - 15.5px), calc(100% - 2px) 2px, 16px 2px, 2.5px 15.5px);
}

.btn__inner:hover {
  background: #e16709;
}

.btn__inner:hover:before {
  background: #e16709;
}

.btn:hover .btn__inner:before {
  width: 300px;
  transform: translate(100%, -100%);
}

.btn:hover .btn__inner:after {
  width: 300px;
  transform: translate(-100%, 100%);
}

.subm {
  font-family: "UAF Sans";
  cursor: pointer;
  border: none;
  height: 55px;
  background: var(--primary);
  color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  text-transform: uppercase;
}

.subm[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.form {
  position: relative;
  display: flex;
  flex-flow: column;
  gap: 24px;
}

.form__inputs {
  display: flex;
  flex-flow: wrap;
  gap: 20px 24px;
}

.form .input {
  font: 300 16px/1 var(--default-font-family);
  width: 100%;
  height: 48px;
  border: 1px solid #4a4a4a;
  background: #131313;
  padding-left: 12px;
  padding-right: 12px;
  display: block;
  transition: var(--tr);
  color: #fff;
}

.form .input::-moz-placeholder {
  font-family: inherit;
  font-weight: inherit;
  color: #bebebe;
}

.form .input::placeholder {
  font-family: inherit;
  font-weight: inherit;
  color: #bebebe;
}

.form .input:hover,
.form .input:focus {
  border-color: var(--accent);
}

.form .input--select {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  background: #131313 url("../img/arrow-down.svg") calc(100% - 12px) center/24px no-repeat;
}

.form .input--select::-moz-placeholder {
  font-family: inherit;
  font-weight: inherit;
  color: #bebebe;
}

.form .input--select::placeholder {
  font-family: inherit;
  font-weight: inherit;
  color: #bebebe;
}

.form .input--select option {
  background: var(--black);
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  color: var(--white);
  transition: var(--tr);
}

.form .input--select:has(option[value="Не обрано"]:checked) {
  color: var(--neutral-6);
}

.form .input__wrap {
  display: block;
  text-align: left;
  width: calc(50% - 12px);
}

.form .input__wrap--large {
  width: 100%;
}

.form .input__label {
  display: block;
  font-family: "UAF Sans";
  font-feature-settings: "ss01" on !important;
  margin-bottom: 4px;
  font-weight: 300;
  line-height: 1.5;
}

.form .input__variants {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0;
}

.form .checkbox__wrap input {
  display: none;
}

.form .checkbox__wrap input:checked + .checkbox__label:before {
  border: 1px solid transparent;
  background: var(--primary) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='11' viewBox='0 0 14 11' fill='none'%3E%3Cpath d='M0.75 3.75L5.75 8.75L13.25 1.25' stroke='black' stroke-width='2'/%3E%3C/svg%3E") 50% no-repeat;
}

.form .checkbox__wrap input:hover + .checkbox__label:before,
.form .checkbox__wrap input:focus + .checkbox__label:before {
  box-shadow: 0px 0px 0px 2px rgba(255, 103, 9, 0.4);
}

.form .checkbox__wrap .checkbox__label {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form .checkbox__wrap .checkbox__label a {
  color: var(--primary);
  text-decoration: underline;
  transition: var(--tr);
}

.form .checkbox__wrap .checkbox__label a:hover {
  color: #e16709;
}

.form .checkbox__wrap .checkbox__label:before {
  margin: 2px;
  transition: var(--tr);
  content: "";
  border: 1px solid var(--primary);
  border-radius: 2px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  cursor: pointer;
}

.form:before {
  content: "";
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(5, 5, 5, 0.568627451) url(../img/loading.svg) 50% no-repeat;
  z-index: 10;
}

.form.loading:before {
  display: block;
}

.form .intl-tel-input {
  width: 100%;
}

.form .country-list .country-name {
  color: #333;
}

.form .radio__input {
  opacity: 0;
  z-index: -1;
  display: none;
}

.form .radio__input:checked + .radio__label:before {
  border-color: var(--accent);
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='11' viewBox='0 0 14 11' fill='none'%3E%3Cpath d='M0.75 3.75L5.75 8.75L13.25 1.25' stroke='black' stroke-width='2'/%3E%3C/svg%3E") 50%/12px 10px no-repeat;
}

.form .radio__input:focus + .radio__label:before,
.form .radio__input:hover + .radio__label:before {
  border-color: var(--accent);
}

.form .radio__label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.form .radio__label:before {
  cursor: pointer;
  content: "";
  flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid #bebebe;
  transition: var(--tr);
}

.form .btn {
  width: 100%;
}

.form .btn.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}

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

.form .btn:hover .btn__inner {
  background: var(--primary);
}

.header {
  position: fixed;
  height: 80px;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  z-index: 100;
  border-bottom: 1px solid #4a4a4a;
  background: #000;
  transition: 0.3s all ease;
}

.header-scroll {
  background: rgba(0, 0, 0, 0.9);
}

.header-hide {
  transform: translateY(-100%);
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  background: center/contain no-repeat;
  aspect-ratio: 177/48;
  width: 177px;
  position: relative;
  z-index: 6;
}

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

.header__list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__list.header-hover .has-submenu .header__submenu {
  display: block;
  height: 0;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s all ease;
}

.header__list.header-hover .has-submenu:hover .header__submenu {
  display: block;
  height: auto;
  opacity: 1;
  pointer-events: auto;
}

.header__list .has-submenu:hover .header__link,
.header__list .has-submenu:hover .header__no-link {
  color: var(--accent);
}

.header__list .has-submenu:hover .header__link svg,
.header__list .has-submenu:hover .header__no-link svg {
  transform: rotate(180deg);
}

.header__item {
  padding: 28px 0;
}

.header__item.header__item--others,
.header__item.header__item--home {
  display: none;
}

.header__item .header__link,
.header__item .header__no-link {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}

.header__item.has-submenu .header__link,
.header__item.has-submenu .header__no-link {
  display: flex;
  align-items: center;
  color: #fff;
  cursor: pointer;
}

.header__item.has-submenu .header__link svg,
.header__item.has-submenu .header__no-link svg {
  transition: 0.3s all ease;
}

.header__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 16px 0 40px;
  display: none;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid #4a4a4a;
  background: #000;
  z-index: 1;
}

.header__submenu_container {
  padding: 0 20px;
  max-width: 836px;
  margin: 0 auto;
  width: 100%;
}

.header__submenu_items {
  display: flex;
  gap: 40px;
}

.header__submenu_items.cards {
  flex-wrap: wrap;
  gap: 20px;
}

.header__submenu_items.cards .header__submenu_card {
  width: calc(25% - 20px);
  padding: 12px;
  background: url(../img/header/card.svg) 50% 50%/contain no-repeat;
  transition: 0.3s all ease;
}

.header__submenu_items.cards .header__submenu_card a {
  display: block;
  text-transform: uppercase;
  line-height: 1.5;
  font-weight: 700;
}

.header__submenu_items.cards .header__submenu_card .header__submenu_card_logo {
  width: 100%;
  text-align: right;
  height: 40px;
  margin-top: 8px;
}

.header__submenu_items.cards .header__submenu_card .header__submenu_card_logo img {
  width: 80px;
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}

.header__submenu_items.cards .header__submenu_card:hover {
  background: url(../img/header/card-hover.svg) 50% 50%/contain no-repeat;
}

.header__submenu_items.has-image {
  justify-content: space-between;
}

.header__submenu_items.has-image .header__submenu_image {
  flex: 0 0 318px;
  width: 318px;
  aspect-ratio: 318/300;
  background: url(../img/header/frame.svg) 50% 50%/contain no-repeat;
}

.header__submenu_items.has-image .header__submenu_image img {
  padding: 24px 40px 38px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.header__submenu_items .header__submenu_links {
  display: flex;
  align-items: stretch;
  flex-flow: column;
  max-width: 325px;
  width: 100%;
}

.header__submenu_items .header__submenu_links .header__submenu_link {
  width: 325px;
  padding: 20px 24px;
  border-bottom: 1px solid #4a4a4a;
  transition: 0.3s all ease;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.header__submenu_items .header__submenu_links .header__submenu_link:hover {
  border-bottom: 1px solid #f6921e;
  background: rgba(17, 26, 11, 0.8);
}

.header__submenu_items .header__submenu_title {
  padding: 20px 24px;
  border-bottom: 1px solid #4a4a4a;
  transition: 0.3s all ease;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #9d9d9d;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__menu .menu-item {
  position: relative;
}

.header__menu .menu-item a {
  transition: var(--tr);
}

.header__menu .menu-item:before {
  background: var(--accent);
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px) scale(0);
  transition: var(--tr);
  pointer-events: none;
}

.header__menu .menu-item:hover a {
  color: var(--accent);
}

.header__menu .menu-item:hover:before {
  transform: translate(-50%, 10px) scale(1);
}

.header__btn-wrap {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__btn {
  padding: 10px 20px;
}

.header__btn_mob {
  display: none;
}

.header__burger {
  display: none;
  height: 20px;
  width: 27px;
  position: relative;
  z-index: 6;
  cursor: pointer;
}

.header__burger:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 40px;
  width: 40px;
}

.header__burger span {
  background: var(--white);
  position: absolute;
  height: 2px;
  width: 100%;
  display: block;
  left: 0%;
  transition: top var(--trd), bottom var(--trd), transform var(--tr), opacity var(--trd);
}

.header__burger span:nth-child(1) {
  width: 66%;
  top: 0%;
  left: unset;
  right: 0;
}

.header__burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.header__burger span:nth-child(3) {
  width: 50%;
  top: calc(100% - 2px);
}

.header__burger.active span {
  transition: top var(--tr), bottom var(--tr), transform var(--trd), opacity var(--tr);
}

.header__burger.active span:nth-child(1) {
  width: 100%;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.header__burger.active span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  width: 100%;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.section404 {
  padding: var(--sp) 0;
  text-align: center;
}

.section404__container {
  display: flex;
  flex-flow: column;
  gap: 20px;
}

.section404__code {
  font-size: 100px;
  font-weight: 700;
}

.page h1,
.page h2,
.page h3,
.page h4,
.page h5,
.page h6 {
  color: var(--primary);
}

.page-success .header {
  display: none;
}

body.page-timer .wrapper,
body.home .wrapper {
  display: block;
  position: relative;
}

body.page-timer .wrapper::before,
body.home .wrapper::before {
  content: "";
  position: fixed;
  width: 647px;
  aspect-ratio: 647/1027;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/bg_logo.webp) 50%/contain no-repeat;
  z-index: -1;
  max-width: 100%;
}

.home__divider {
  margin: 64px 0;
  padding: 20px 0;
  width: 100%;
}

.home__divider__container {
  border-top: 3px solid var(--white);
}

.home-hero {
  padding-top: 35px;
}

.home-hero__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row;
  gap: 20px;
}

.home-hero__info {
  flex: 0 1 575px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-start;
}

.home-hero__main-title {
  padding-bottom: 16px;
}

.home-hero__main-title span {
  margin-left: 71px;
  display: block;
}

.home-hero__title {
  color: var(--white) !important;
  text-transform: uppercase;
  margin-left: 71px;
  padding-bottom: 24px;
}

.home-hero__text {
  margin-left: 71px;
  font-size: 18px;
}

.home-hero__text p {
  line-height: 120%;
}

.home-hero__buttons {
  margin-left: 0px;
  display: flex;
  flex-flow: wrap;
  gap: 10px;
  margin-top: 24px;
}

.home-hero__row {
  display: flex;
  gap: 20px;
}

.home-hero__image {
  aspect-ratio: 163/194;
  flex: 0 1 489px;
  background: 50%/contain no-repeat;
  margin-right: 65px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-hero__image img {
  width: 100%;
  height: auto;
}

.info {
  margin: 128px 0;
}

.info__wrap {
  padding: 64px;
  background: #e1dfcc;
  min-height: 500px;
}

.info__slider {
  width: 100%;
  overflow: visible;
}

.info__slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row;
}

.info__media {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  margin: -172px 0;
  flex: 0 1 608px;
}

.info__media_wrap {
  position: relative;
  aspect-ratio: 577/611;
  width: 577px;
}

.info__media img,
.info__media video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 2;
}

.info__content {
  position: relative;
  flex: 0 1 638px;
  margin-left: 35px;
  min-height: 372px;
  display: flex;
  justify-content: center;
  flex-flow: column;
}

.info__content .swiper-pagination {
  position: relative;
  margin-top: 48px;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.info__content .swiper-pagination-bullet {
  position: relative;
  width: 30px;
  height: 2px;
  background: #bebebe;
  border-radius: 0;
  opacity: 1;
  margin: 0 !important;
  cursor: pointer;
}

.info__content .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 20px;
  min-width: 44px;
}

.info__content .swiper-pagination-bullet-active {
  background: #f6921e;
}

.info__content h2 {
  font-size: var(--h4);
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.1;
}

.info__content h2 span {
  color: var(--primary);
}

.info__description {
  font-size: 18px;
  color: var(--primary);
  line-height: 1.2;
}

.info__text {
  margin-top: 48px;
  color: var(--black);
  font-size: 18px;
  line-height: 1.2;
}

.why {
  margin: 128px 0;
}

.why__container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.why__info {
  flex: 0 1 569px;
}

.why__title {
  font-size: var(--h3);
  line-height: 98%;
}

.why__title span {
  margin-left: 107px;
}

.why__title span:nth-child(2) {
  margin-left: 228px;
}

.why__items {
  flex: 0 1 640px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.why__items .item-card {
  width: calc((100% - 32px) / 2);
}

.why__items .item-card__title {
  padding-bottom: 5px;
  text-transform: uppercase;
}

.why__items .item-card__text {
  line-height: 1.4;
}

.return-and-serve {
  margin: 128px 0;
}

.return-and-serve__container {
  position: relative;
}

.return-and-serve__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background: 0 22%/2079px 618px no-repeat;
}

.return-and-serve__bg.bg-mobile {
  display: none;
}

.return-and-serve__info {
  min-height: 470px;
  padding: 30px;
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.return-and-serve__title {
  max-width: 730px;
  padding-bottom: 10px;
}

.return-and-serve__text {
  max-width: 465px;
  margin-bottom: 20px;
}

.return-and-serve__buttons {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.subdivision {
  margin: 48px 0 128px;
}

.subdivision__container {
  position: relative;
}

.subdivision__info {
  margin-bottom: 40px;
  max-width: 760px;
}

.subdivision__items {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
}

.subdivision .item-card {
  min-height: 234px;
  width: calc((100% - 20px) / 3);
  background: top left/cover no-repeat;
  position: relative;
  flex-direction: column;
}

.subdivision .item-card a {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-flow: column;
  gap: 20px;
  text-decoration: none;
  padding: 20px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.subdivision .item-card a:hover .item-card__title {
  color: var(--primary);
}

.subdivision .item-card:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 0.7;
  background: var(--black);
}

.subdivision .item-card__number,
.subdivision .item-card__title {
  position: relative;
  z-index: 2;
}

.subdivision .item-card__title {
  line-height: 1;
  color: var(--secondary);
  text-transform: uppercase;
}

.subdivision .item-card__number {
  color: var(--primary);
  font-weight: 600;
}

.cta {
  margin: 128px 0;
}

.cta__container {
  position: relative;
}

.cta__wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
}

.cta__title {
  max-width: 540px;
  text-transform: uppercase;
}

.cta__desc {
  max-width: 535px;
}

.cta__text {
  margin-bottom: 30px;
}

.cta__buttons {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.team {
  margin: 128px 0 48px;
}

.team__container {
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  gap: 48px;
}

.team__items {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.team__items .item-card {
  background: #1a1a1a;
  width: calc((100% - 28px) / 3);
  position: relative;
}

.team__items .item-card a {
  padding: 20px;
  text-decoration: unset;
  position: relative;
  min-height: 234px;
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  gap: 10px;
}

.team__items .item-card a:hover .item-card__title {
  color: var(--primary);
}

.team__items .item-card__icon {
  flex: 0 0 130px;
  width: 130px;
  height: 186px;
  background: right/contain no-repeat;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
}

.team__items .item-card__title {
  color: var(--secondary);
  line-height: 1;
  transition: 0.3s all ease;
  max-width: 180px;
  text-transform: uppercase;
  z-index: 2;
  position: relative;
}

.team__items .item-card__number {
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: var(--primary);
  z-index: 2;
  position: relative;
}

.team__info {
  max-width: 888px;
  width: 100%;
  margin: 0 auto;
}

.team__title {
  font-size: 96px;
  text-transform: uppercase;
  line-height: 98%;
  max-width: 100%;
}

.team__title span {
  display: block;
}

.team__title span.first,
.team__title span.third {
  text-align: right;
}

.team__title span.third {
  margin-right: 41px;
}

.team__title span.fourth {
  text-align: center;
  margin-right: 112px;
}

.reviews {
  margin: 128px 0;
}

.reviews__info {
  margin-bottom: 48px;
  max-width: 628px;
}

.reviews__cards {
  padding-bottom: 66px;
}

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

.reviews__cards .swiper-wrapper .card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 13px;
  display: flex;
  justify-content: space-between;
  flex-flow: column;
  gap: 16px;
  height: auto;
}

.reviews__cards .swiper-wrapper .card__review {
  font-size: 14px;
  font-weight: 500;
}

.reviews__cards .swiper-wrapper .card__reviewer {
  font-weight: 500;
  font-size: 18px;
  color: var(--primary);
}

.reviews__buttons {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: -46px;
}

.reviews__buttons .btn {
  position: relative;
  z-index: 2;
}

.video-message {
  margin: 128px 0;
}

.video-message__container {
  position: relative;
}

.video-message__wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  opacity: 0.4;
  z-index: 1;
}

.video-message__info {
  max-width: 1039px;
  margin-bottom: 48px;
}

.video-message__title {
  font-size: 42px;
  line-height: 98%;
  text-transform: uppercase;
}

.video-message__cards {
  padding-bottom: 66px !important;
}

.video-message__cards .card__wrap {
  aspect-ratio: 320/420;
  background: 50%/cover no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.video-message__cards .card__wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.4;
  background: #000;
}

.video-message__cards .card__wrap .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  z-index: 2;
  transition: 0.3s all ease;
}

.video-message__cards .card__wrap .play-button:hover {
  transform: translate(-50%, -50%) scale(1.2);
}

.video-message__cards .card__info {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px 10px;
  display: flex;
  flex-flow: column;
  gap: 10px;
  width: 100%;
  min-height: 106px;
  position: relative;
  z-index: 2;
}

.video-message__cards .card__name {
  color: var(--primary);
  font-size: var(--m);
  font-weight: 500;
}

.video-message__cards .card__desc {
  font-size: 14px;
  font-weight: 500;
}

@keyframes loader {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.how {
  margin: 128px 0;
}

.how__container {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.how__info {
  flex: 0 1 600px;
}

.how__title {
  padding-bottom: 20px;
  text-transform: uppercase;
  line-height: 98%;
}

.how__desc {
  max-width: 350px;
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
}

.how__items {
  flex: 0 1 650px;
  display: flex;
  justify-content: space-between;
  gap: 50px 32px;
  flex-wrap: wrap;
}

.how__items .item-card {
  width: calc((100% - 50px) / 2);
  position: relative;
}

.how__items .item-card__number {
  font: 400 35px/80% var(--numbers-font-family);
  position: absolute;
  top: 10px;
  transform: rotate(90deg);
  left: -44px;
  opacity: 0.2;
  color: var(--primary);
}

.how__items .item-card__title {
  padding-bottom: 5px;
  text-transform: uppercase;
}

.ready {
  margin: 128px 0;
}

.ready__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-flow: wrap;
  gap: 42px;
}

.ready__form-subtitle {
  font-size: var(--h5);
  font-weight: 500;
  line-height: 1;
}

.ready__content {
  width: calc((100% - 42px) / 2);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #111a0b;
  aspect-ratio: 642/512;
  -webkit-mask-image: url(../img/register-mask.svg);
  mask-image: url(../img/register-mask.svg);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  position: relative;
}

.ready__content:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 642/512;
  width: 100%;
  z-index: -1;
  background: transparent url(../img/register-mask.svg) center/cover no-repeat;
}

.ready__image {
  padding: 0 56px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.ready__title {
  width: 100%;
  text-align: left;
  font-weight: 600;
  line-height: 1.03;
  color: var(--primary);
}

.ready__form {
  width: calc((100% - 42px) / 2);
  display: flex;
  flex-flow: column;
  gap: 24px;
  flex: 1;
}

.ready__form-inputs {
  display: flex;
  flex-flow: wrap;
  gap: 20px 10px;
}

.ready__phone-block .phone-text {
  font-weight: 500;
  font-size: 22px;
  line-height: 100%;
  margin-bottom: 16px;
}

.ready__phone-block .phone-link {
  font-size: var(--h3);
  font-weight: 700;
  line-height: 98%;
  color: var(--primary);
  text-decoration: none;
  transition: var(--tr);
}

.ready__phone-block .phone-link:hover {
  color: var(--white);
}

.faq {
  margin: 128px 0;
}

.faq__container {
  display: flex;
  align-items: flex-start;
  flex-flow: wrap;
  gap: 42px;
}

.faq__title {
  width: 414px;
  line-height: 1.03;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  font-size: var(--h3);
}

.faq__row {
  display: flex;
  gap: var(--sp);
  width: calc(100% - 414px - 42px);
}

.faq__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq .item {
  border: 1px solid #4a4a4a;
  background: #000;
  transition: var(--tr);
}

.faq .item__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: var(--tr);
  padding: 16px;
}

.faq .item__button {
  flex: 0 0 auto;
  position: relative;
  aspect-ratio: 1/1;
  border: 2px solid var(--primary);
  width: 32px;
  border-radius: 50%;
}

.faq .item__button:before {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 13px;
  top: 50%;
  left: 50%;
  background: var(--primary);
  transition: var(--tr);
  transform: translate(-50%, -50%);
}

.faq .item__button:after {
  content: "";
  display: block;
  height: 13px;
  width: 2px;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
  transition: var(--tr);
}

.faq .item__content {
  height: 0;
  overflow: hidden;
  transition: var(--tr);
}

.faq .item__content-inner {
  padding: 0 16px 16px;
  max-width: 100%;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.faq .item.active {
  border-color: #4a4a4a;
  background: #111a0b;
}

.faq .item.active .item__title {
  padding-bottom: 15px;
}

.faq .item.active .item__title .item__button:after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq .item:hover {
  border-color: #4a4a4a;
  background: #111a0b;
}

.faq__more {
  padding-top: var(--sp);
}

.faq__more-btn {
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  transition: var(--tr);
}

.faq__more-btn:after {
  content: "";
  aspect-ratio: 1/1;
  width: 24px;
  background: center/contain no-repeat url("../img/arrow-right-w.svg");
  transform: rotate(-90deg);
  transition: var(--tr);
}

.faq__more-btn:hover {
  color: var(--primary);
}

.faq__more-btn:hover:after {
  background: center/contain no-repeat url("../img/arrow-right-h.svg");
}

.success {
  min-height: 100vh;
  display: flex;
  flex-flow: column;
  padding: calc(var(--sp) * 2) 0;
}

.success .success__container {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  text-align: center;
}

.success__image {
  aspect-ratio: 305/86;
  width: 305px;
  background: center/contain no-repeat;
  margin-bottom: 23px;
}

.success .success__title {
  color: var(--white);
  font-size: var(--h4);
  margin-bottom: 23px;
}

.success__subtitle {
  font-size: var(--h5);
  text-transform: uppercase;
  width: 100%;
  max-width: 732px;
  margin: 0 auto 23px;
  font-weight: 700;
}

.success__button.btn {
  text-transform: uppercase;
  min-width: 278px;
}

.about {
  margin: 128px 0 64px;
}

.about__container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.about__title-wrap {
  max-width: 767px;
}

.about__title {
  font-size: 96px;
  text-transform: uppercase;
  line-height: 98%;
  max-width: 100%;
}

.about__title span {
  display: block;
}

.about__title span.third {
  margin-left: 151px;
}

.about__title span.fourth {
  text-align: right;
}

.about__info {
  max-width: 432px;
  font-size: 18px;
  line-height: 1.2;
}

.about__info p {
  margin-bottom: 24px;
}

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

.about__info strong {
  font-weight: 600;
}

.footer {
  background: var(--black);
}

.footer__logo {
  aspect-ratio: 220/62;
  display: block;
  width: 220px;
  background: center/contain no-repeat;
}

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

.footer__menu_social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-flow: wrap;
  gap: 16px;
  margin-top: 24px;
}

.footer__menu_social a {
  width: 32px;
  height: 32px;
  background: #bebebe 50%/18px no-repeat;
  border-radius: 50%;
  transition: 0.3s all ease;
}

.footer__menu_social a:hover {
  background: var(--accent) 50%/18px no-repeat;
}

.footer__top {
  padding: 64px 0 56px;
  border-top: 1px solid #373737;
  border-bottom: 1px solid #373737;
}

.footer__top.top-mobile {
  display: none;
}

.footer__menu {
  display: flex;
  flex-flow: wrap;
  gap: 42px;
}

.footer__menu--cols-4 .footer__column {
  width: calc(25% - 31.5px);
}

.footer__menu--cols-3 .footer__column {
  width: calc(33.3333333333% - 28px);
}

.footer__menu--cols-2 .footer__column {
  width: calc(50% - 21px);
}

.footer__menu--cols-1 .footer__column {
  width: 100%;
}

.footer__column {
  display: flex;
  flex-flow: column;
  gap: 32px;
}

.footer__column .acc-item {
  margin-top: 0;
  display: flex;
  flex-flow: column;
  gap: 20px;
}

.footer__column.active .acc-item {
  margin-top: 20px;
}

.footer__column.active .acc-title svg {
  transform: rotate(180deg);
}

.footer__other-links {
  margin: 20px 0 40px;
  display: flex;
  flex-flow: column;
  gap: 20px;
}

.footer__other-links .footer__other-link {
  border-bottom: 1px solid #373737;
  padding-bottom: 20px;
}

.footer__block {
  display: flex;
  flex-flow: column;
  gap: 20px;
}

.footer__link {
  text-transform: uppercase;
  line-height: 1.43;
  font-size: 14px;
  font-weight: 700;
  transition: var(--tr);
}

.footer__link:hover {
  color: var(--accent);
}

.footer__link:first-child {
  line-height: 1.3;
  font-size: 20px;
}

.footer__link.link_title {
  color: #9d9d9d;
}

.footer__link.home-link {
  padding-bottom: 20px;
  border-bottom: 1px solid #373737;
  display: block;
}

.footer__link.acc-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.footer__link.acc-title svg {
  transition: var(--tr);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: wrap;
  gap: 20px;
}

.footer__copyright {
  font: 300 16px/1.5 "Mulish", sans-serif;
  color: #9d9d9d;
}

.footer__privacy {
  display: flex;
  align-items: center;
  gap: 64px;
}

.footer__privacy-link {
  font: 300 16px/1.5 "Mulish", sans-serif;
  color: #9d9d9d;
  transition: 0.3s all ease;
}

.footer__privacy-link:hover {
  color: var(--accent);
}

.modal-overlay {
  display: none;
  padding-top: 1px;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  overflow: auto;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.modal-overlay .modal-content {
  margin-bottom: 0px;
  border-radius: 4px;
}

.modal-overlay.modal-info .modal-content {
  position: relative;
  padding: 30px;
  background: #000;
  min-height: 327px;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}

.modal-overlay.modal-info .modal-content .content-sub {
  display: flex;
  gap: 30px;
}

.modal-overlay.modal-info .modal-content .content-sub__title,
.modal-overlay.modal-info .modal-content .content-sub__title-block {
  max-width: 438px;
  width: 100%;
  font-size: 32px;
  text-transform: uppercase;
  line-height: 1.1;
}

.modal-overlay.modal-info .modal-content .content-sub__title-block {
  display: flex;
  gap: 10px;
}

.modal-overlay.modal-info .modal-content .content-sub__icon {
  flex: 0 0 81.47px;
  width: 81.47px;
  height: 94px;
  background: 50%/contain no-repeat;
}

.modal-overlay.modal-info .modal-content .content-sub__right-content {
  max-width: 551px;
  width: 100%;
}

.modal-overlay.modal-info .modal-content .content-sub__right-content .form {
  margin-top: 30px;
  width: 100%;
}

.modal-overlay.modal-info .modal-content .content-sub__info {
  max-width: 404px;
  margin-bottom: 20px;
  font-size: var(--s);
  font-weight: 500;
}

.modal-overlay.modal-info .modal-content .content-sub__info .ready__form-inputs {
  width: 100%;
}

.modal-overlay.modal-info .modal-content .content-sub__buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.modal-overlay.modal-info .modal-content .content-sub__button {
  text-transform: uppercase;
  width: calc((100% - 20px) / 2);
}

.modal-overlay .close-button {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 10px;
  right: 20px;
  cursor: pointer;
  transition: 0.2s linear;
  z-index: 100;
}

.modal-overlay .close-button:before {
  background: #F17A26;
  content: "";
  height: 17px;
  width: 2px;
  display: block;
  transform: translate(13px, 6.5px) rotate(-45deg);
}

.modal-overlay .close-button:after {
  background: #F17A26;
  content: "";
  height: 17px;
  width: 2px;
  display: block;
  transform: translate(13px, -10.5px) rotate(45deg);
  transition: 0.2s linear;
}

#modal-video .modal-content {
  height: auto;
  width: 100%;
}

#modal-video .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

#modal-video .video video,
#modal-video .video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 100vw;
  height: 100%;
}

#modal-video .video video.aspect-vertical,
#modal-video .video iframe.aspect-vertical {
  aspect-ratio: 9/16;
  height: 720px;
  width: auto;
}

.countdownHolder {
  margin: 0 auto;
  font: 30px/1 Roboto, sans-serif;
  text-align: center;
  letter-spacing: -3px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.countdownHolder .position {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  position: relative;
  width: 0.5em;
}

.countdownHolder {
  /*Параметры цифр */
}

.countdownHolder .digit {
  position: absolute;
  display: block;
  border-radius: 0.2em;
  text-align: center;
  color: #000;
  letter-spacing: -1px;
  left: 50%;
  transform: translateX(-50%);
}

.countdownHolder {
  /*Параметры подложки для секций */
}

.countdownHolder .countDays,
.countdownHolder .countHours,
.countdownHolder .countMinutes,
.countdownHolder .countSeconds {
  background: #fff;
  border-radius: 5px;
  padding: 10px;
}

.countdownHolder {
  /*Параметры секций разделения (:)*/
}

.countdownHolder .countDiv {
  display: none;
  width: 10px;
  height: 1em;
  position: relative;
}

.countdownHolder .countDiv:before,
.countdownHolder .countDiv:after {
  background: #444;
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 50%;
  margin-left: -3px;
  top: 0.2em;
  box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.5);
  content: "";
}

.countdownHolder .countDiv:after {
  top: 0.6em;
}

.countdownHolder {
  /*Параметры вспомогательного текста (дни, часы, минуты, секунды)*/
}

.countdownHolder .textdigit {
  font-size: 15px;
  letter-spacing: 0px;
}

.error404 .header {
  display: none;
}

.section404 {
  min-height: 100vh;
  display: flex;
  flex-flow: column;
  padding: calc(var(--sp) * 2) 0;
}

.section404 .section404__container {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  text-align: center;
}

.section404__image {
  aspect-ratio: 305/86;
  width: 305px;
  background: center/contain no-repeat;
  margin-bottom: 23px;
}

.section404 .section404__title {
  color: var(--white);
  font-size: var(--h4);
  margin-bottom: 23px;
}

.section404__subtitle {
  font-size: var(--h5);
  text-transform: uppercase;
  width: 100%;
  max-width: 732px;
  margin: 0 auto 23px;
  font-weight: 700;
}

.section404__button.btn {
  text-transform: uppercase;
  min-width: 278px;
}
@media (max-width: 200000px){

  body.page-id-611 .home-hero__image__countdown {
    margin-top: 40px;
  }

  body.page-id-607 .home-hero__image__countdown{
    margin-top: -41px;
  }

  body.page-id-609 .home-hero__image__countdown,
  body.page-id-594 .home-hero__image__countdown{
    margin-top: -100px;
  }
  .home-hero__image__countdown{
    display: block;
  }
  .home-hero__info__countdown{
    display: none;
  }


  body.page-timer .home-hero__info {
    gap: 26px;
  }


}
@media (max-width: 1260px) {
  :root {
    --container-width: 760px;
    --h1: 72px;
    --h2: 42px;
    --h3: 42px;
    --h4: 32px;
    --h5: 22px;
    --h6: 20px;
  }

  .wrapper .main {
    margin-top: 72px;
  }

  .document__container {
    max-width: var(--container-width);
  }

  .btn {
    padding: 12px 20px;
    font-size: 12px;
    height: 40px;
  }

  .form__inputs {
    gap: 16px;
  }

  .form .input__wrap {
    width: 100%;
  }

  .form .btn {
    font-size: 16px;
    height: 56px;
  }

  .header {
    padding: 15px 0;
    height: 72px;
  }

  .header__logo {
    width: 125px;
    aspect-ratio: 25/7;
  }

  .header__list {
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 16px;
    display: flex;
    align-items: stretch;
    flex-flow: column;
    gap: 0;
  }

  .header__item {
    padding: 20px 0;
    border-bottom: 1px solid #373737;
  }

  .header__item.header__item--others,
  .header__item.header__item--home {
    display: block;
  }

  .header__item .header__link,
  .header__item .header__no-link {
    font-size: 16px;
  }

  .header__item.has-submenu .header__link,
  .header__item.has-submenu .header__no-link {
    gap: 4px;
    justify-content: space-between;
  }

  .header__submenu {
    position: relative;
    top: 0;
    border-bottom: none;
    padding: 20px 0 0;
  }

  .header__submenu_container {
    padding: 0;
    max-width: 100%;
  }

  .header__submenu_items {
    flex-direction: column;
    gap: 0;
  }

  .header__submenu_items.cards {
    flex-direction: column;
    gap: 12px;
  }

  .header__submenu_items.cards .header__submenu_card {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #4a4a4a;
    background: linear-gradient(32deg, #070e0e 4.02%, #11131d 89.98%);
    backdrop-filter: blur(10px);
  }

  .header__submenu_items.cards .header__submenu_card a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .header__submenu_items.cards .header__submenu_card:hover {
    background: rgba(17, 26, 11, 0.8);
    border-color: #f6921e;
  }

  .header__submenu_items.has-image .header__submenu_image {
    display: none;
  }

  .header__submenu_items .header__submenu_links {
    gap: 20px;
    max-width: 100%;
  }

  .header__submenu_items .header__submenu_links .header__submenu_link {
    width: 100%;
    padding: 0;
    border-bottom: none;
    font-size: 16px;
  }

  .header__submenu_items .header__submenu_links .header__submenu_link.no-mobile {
    display: none;
  }

  .header__submenu_items .header__submenu_title {
    width: 100%;
    padding: 0;
    border-bottom: none;
    font-size: 16px;
    margin: 20px 0;
  }

  .header__menu {
    position: fixed;
    top: 72px;
    height: calc(100% - 72px);
    left: 0;
    width: 100%;
    transform: translateX(100%);
    border-top: 1px solid #4a4a4a;
    background: #000;
    transition: transform 0.3s ease;
    padding: 40px 0 64px;
    overflow: scroll;
    display: flex;
  }

  .header__menu.active {
    transform: translateX(0);
  }

  .header__menu .menu-item a {
    text-transform: uppercase;
  }

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

  .header__burger {
    display: block;
  }

  .home-hero__info {
    flex: 1 1 60%;
  }

  .home-hero__main-title span {
    margin-left: 24px;
  }

  .home-hero__title {
    margin-left: 24px;
    padding-bottom: 16px;
  }

  .home-hero__text {
    margin-left: 24px;
    font-size: 16px;
  }

  .home-hero__buttons {
    margin-left: 24px;
    margin-bottom: 16px;
  }

  .home-hero__button {
    width: 100% !important;
  }

  .home-hero__row {
    flex-direction: column;
  }

  .home-hero__image {
    flex: 1 1 40%;
    width: 100%;
    margin-right: 0;
  }

  .info__wrap {
    padding: 48px;
  }

  .info__slide {
    flex-direction: column-reverse;
    gap: 32px;
  }

  .info__media {
    flex: 1 1 100%;
    margin: 0;
  }

  .info__content {
    width: 100%;
    flex: 1 1 100%;
    margin-left: 0;
    min-height: auto;
  }

  .info__content .swiper-pagination {
    margin-top: 32px;
    justify-content: center;
  }

  .why__container {
    flex-direction: column;
    gap: 40px;
  }

  .why__info {
    flex: 1 1 100%;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }

  .why__items {
    flex: 1 1 100%;
    width: 100%;
  }

  .return-and-serve__bg {
    background: 0 50%/2079px 618px no-repeat;
  }

  .subdivision .item-card {
    width: calc((100% - 10px) / 2);
  }

  .team__items {
    max-width: 100%;
  }

  .team__items .item-card {
    width: calc((100% - 14px) / 2);
  }

  .team__title {
    font-size: 72px;
  }

  .video-message__title {
    font-size: 32px;
  }

  .how__container {
    gap: 40px;
    flex-direction: column;
  }

  .how__info {
    flex: 1 1 100%;
  }

  .how__items {
    flex: 1 1 100%;
    width: 100%;
  }

  .how__items .item-card__number {
    left: -32px;
    font-size: 26px;
  }

  .how__items .item-card__title {
    font-size: 20px;
  }

  .how__items .item-card__text {
    font-size: 14px;
  }

  .ready__container {
    gap: 24px;
  }

  .ready__content {
    aspect-ratio: 358/310;
    -webkit-mask-image: url(../img/register-mask-mob.svg);
    mask-image: url(../img/register-mask-mob.svg);
  }

  .ready__content:before {
    aspect-ratio: 358/310;
    background: transparent url(../img/register-mask-mob.svg) center/cover no-repeat;
  }

  .ready__form {
    padding-top: 0;
    margin: 0 auto;
  }

  .faq__container {
    gap: 24px;
  }

  .faq__title {
    width: 270px;
  }

  .faq__row {
    width: calc(100% - 270px - 24px);
    gap: 32px;
  }

  .faq__col {
    gap: 16px;
  }

  .about__container {
    flex-direction: column;
    gap: 48px;
  }

  .about__title {
    font-size: 72px;
  }

  .about__info {
    margin: 0 auto;
  }

  .footer__logo {
    width: 167px;
  }

  .footer__menu {
    gap: 20px;
  }

  .footer__menu--cols-4 .footer__column {
    width: calc(25% - 15px);
  }

  .footer__link:first-child {
    font-size: 18px;
  }

  .modal-overlay.modal-info .modal-content .content-sub__right-content .form .ready__form-inputs {
    display: flex;
    flex-flow: column;
  }

  .modal-overlay.modal-info .modal-content .content-sub__right-content .form .checkbox__wrap {
    order: 1;
  }

  .modal-overlay.modal-info .modal-content .content-sub__button {
    width: 100% !important;
  }

  .home-hero__image__countdown{
    display: block;
    margin-top: -60px;
  }
  .home-hero__info__countdown{
    display: none;
  }
  body.page-timer .home-hero__info {
    gap: 26px;
  }

}

@media (max-width: 760px) {
  :root {
    --container-width: 390px;
    --h4: 28px;
  }

  [class*=__container] {
    flex-direction: column;
  }

  .swiper .swiper-button-next {
    left: auto;
    right: 0;
  }

  .document__content h1 {
    font-family: var(--heading-font-family);
    font-weight: 700;
    font-size: var(--h4);
    line-height: 110%;
  }

  .header__container {
    flex-direction: row;
    gap: 10px;
  }

  .header__menu {
    margin-bottom: 32px;
  }

  .header__btn:not(.header__btn_mob) {
    display: none;
    clip-path: polygon(0% 10px, 10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
    padding: 10px 15px 8px;
    font-size: var(--xxs);
  }

  .header__btn:not(.header__btn_mob):before {
    clip-path: polygon(0% 10px, 9px 0%, 100% 0%, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0% 10px, 2px 9px, 2px calc(100% - 2px), calc(100% - 10.5px) calc(100% - 2px), calc(100% - 2px) calc(100% - 10.5px), calc(100% - 2px) 2px, 11px 2px, 2px 10.5px);
  }

  .header__btn_mob {
    display: inline-block;
  }

  .header__burger {
    height: 14px;
    width: 22px;
  }

  .home__divider {
    margin: 48px 0;
    padding: 0 16px;
  }

  .home-hero {
    text-align: center;
    padding-top: 13px;
  }

  .home-hero__container {
    flex-direction: column-reverse;
    gap: 0;
  }

  .home-hero__info {
    flex: 1 1 100%;
  }

  .home-hero__main-title {
    line-height: 0.98;
    text-align: center;
  }

  .home-hero__main-title span {
    text-align: center;
    margin-left: 0;
  }

  .home-hero__title {
    margin-left: 0;
  }

  .home-hero__text {
    margin-left: 0;
  }

  .home-hero__text p {
    line-height: 130%;
  }

  .home-hero__buttons {
    justify-content: center;
    margin-left: 0;
    width: 100%
  }

  .home-hero__image {
    flex: 1 1 100%;
    margin-bottom: -44px;
    aspect-ratio: 58/69;
    text-align: center;
    max-width: calc(100% - 38px);
  }

  .home-hero__image img {
    height: 100%;
  }

  .info__container {
    max-width: 100%;
    padding: 0;
  }

  .info__wrap {
    padding: 48px 16px;
  }

  .info__media_wrap {
    width: 320px;
  }

  .info__content .swiper-pagination-bullet {
    width: 20px;
  }

  .info__text {
    font-size: 16px;
    margin-top: 16px;
  }

  .why {
    margin: 48px 0;
  }

  .why__container {
    gap: 40px;
    padding: 0 16px;
  }

  .why__title span {
    margin-left: 82px;
  }

  .why__title span:nth-child(2) {
    margin-left: 172px;
  }

  .why__items .item-card {
    width: 100%;
  }

  .return-and-serve {
    margin: 48px 0;
  }

  .return-and-serve__container {
    padding: 0 16px;
  }

  .return-and-serve__bg {
    background: 50%/cover no-repeat;
  }

  .return-and-serve__bg.bg-desktop {
    display: none;
  }

  .return-and-serve__bg.bg-mobile {
    display: block;
  }

  .return-and-serve__info {
    padding: 10px;
    min-height: 672px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }

  .return-and-serve__buttons {
    flex-wrap: wrap;
  }

  .subdivision__container {
    padding: 0 16px;
  }

  .subdivision__info {
    margin-bottom: 30px;
  }

  .subdivision .item-card {
    width: 100%;
    background: 50%/cover no-repeat;
  }

  .subdivision .item-card__number {
    opacity: 0;
    pointer-events: none;
  }

  .cta {
    margin: 48px 0;
  }

  .cta__container {
    padding: 0 16px;
  }

  .cta__wrap {
    flex-direction: column;
  }

  .cta__title {
    font-size: 42px;
    line-height: 0.98;
    overflow-wrap: break-word;
    max-width: 294px;
  }

  .team__container {
    padding: 0 16px;
  }

  .team__items {
    gap: 10px;
  }

  .team__items .item-card {
    width: 100%;
  }

  .team__info {
    max-width: 100%;
  }

  .team__title {
    text-align: left;
    font-size: 49px;
  }

  .team__title span {
    text-align: left;
  }

  .team__title span.first,
  .team__title span.third {
    text-align: left;
  }

  .team__title span.second {
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
  }

  .team__title span.third {
    margin-right: 0;
  }

  .team__title span.fourth {
    margin-right: 0;
    text-align: right;
  }

  .reviews {
    margin: 48px 0;
  }

  .reviews__container {
    padding: 0 16px;
  }

  .reviews__info {
    margin-bottom: 32px;
  }

  .reviews__buttons {
    margin-top: 20px;
  }

  .video-message {
    margin: 48px 0;
  }

  .video-message__container {
    padding: 0 16px;
  }

  .video-message__info {
    margin-bottom: 32px;
  }

  .video-message__title br {
    display: none;
  }

  .video-message__cards .swiper .swiper-button-next {
    right: auto;
    left: 56px;
  }

  .how__container {
    padding: 0 16px;
  }

  .how__info {
    flex: 1 1 100%;
    width: 100%;
  }

  .how__title {
    font-size: 32px;
  }

  .how__items {
    gap: 30px;
  }

  .how__items .item-card {
    width: 100%;
  }

  .how__items .item-card__number {
    position: relative;
    top: 0;
    left: 0;
    font-weight: 400;
    font-size: 20px;
    opacity: 1;
    transform: rotate(0);
    margin-bottom: 5px;
  }

  .how__items .item-card__title {
    font-size: 22px;
  }

  .how__items .item-card__text {
    font-size: 16px;
  }

  .ready__container {
    flex-direction: column;
  }

  .ready__content {
    width: 100%;
  }

  .ready__image {
    padding: 0 25px;
  }

  .ready__title br {
    display: none;
  }

  .ready__form {
    width: 100%;
  }

  .ready__form-inputs {
    display: flex;
    flex-flow: column;
  }

  .ready__phone-block .phone-link {
    font-size: 38px;
    letter-spacing: -0.04px;
  }

  .faq__container {
    flex-direction: column;
  }

  .faq__title {
    width: 100%;
  }

  .faq__row {
    width: 100%;
    flex-direction: column;
  }

  .faq .item__content-inner {
    font-size: 16px;
  }

  .faq .item.active .item__title {
    padding-bottom: 12px;
  }

  .success .success__container {
    padding: 0 16px;
  }

  .success__subtitle {
    font-size: 18px;
  }

  .success__button.btn {
    max-width: 278px;
  }

  .about__container {
    padding: 0 16px;
  }

  .about__title {
    text-align: left;
    font-size: 49px;
  }

  .about__title span {
    text-align: left;
  }

  .about__title span.third {
    margin-left: 0;
    text-align: center;
  }

  .footer__logo {
    width: 171px;
    aspect-ratio: 171/48;
  }

  .footer__menu_social {
    gap: 24px;
  }

  .footer__top.top-desk {
    display: none;
  }

  .footer__top.top-mobile {
    display: block;
  }

  .footer__menu--cols-4 .footer__column {
    width: 100%;
  }

  .footer__menu--cols-3 .footer__column {
    width: 100%;
  }

  .footer__menu--cols-2 .footer__column {
    width: 100%;
  }

  .footer__menu {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .footer__column {
    padding: 20px 0;
    border-bottom: 1px solid #373737;
    gap: 0;
  }

  .footer__column .acc-item {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
  }

  .footer__column .acc-item .footer__link {
    font-size: 16px;
  }

  .footer__link:first-child {
    font-size: 16px;
    line-height: 1.5;
  }

  .footer__link--other {
    display: none;
  }

  .footer__privacy {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  .modal-overlay.modal-info .modal-overlay__container {
    max-width: 100%;
    padding: 0;
  }

  .modal-overlay.modal-info .modal-content {
    padding: 20px 16px;
  }

  .modal-overlay.modal-info .modal-content .content-sub {
    flex-direction: column;
    align-items: center;
  }

  .modal-overlay.modal-info .modal-content .content-sub__title,
  .modal-overlay.modal-info .modal-content .content-sub__title-block {
    font-size: 22px;
    width: calc(100% - 30px);
    text-align: center;
  }

  .modal-overlay.modal-info .modal-content .content-sub__title-block {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .modal-overlay.modal-info .modal-content .content-sub__buttons {
    justify-content: center;
  }

  .modal-overlay .close-button {
    right: 10px;
  }

  #modal-video .video video.aspect-vertical,
  #modal-video .video iframe.aspect-vertical {
    height: 600px;
  }

  .section404__subtitle {
    font-size: 18px;
  }

  .section404__button.btn {
    max-width: 278px;
  }

  .home-hero__image__countdown{
    display: none;
  }
  .home-hero__info__countdown{
    display: block;
  }
  .countdown-title{
    align-self:center;
    padding-top: 15px;
  }
  body.page-timer .home-hero__info {
    gap: 0px;
  }

}

/* Countdown Main Container */
.countdown-container {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Header Text */
.countdown-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
}

/* Timer Row */
.countdown-timer {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Individual Block (Number + Label) */
.countdown-time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Number Box */
.countdown-time-box-border {
  width: 75px;
  height: 56px;
  padding: 2px 2px 2px 2px;
  background: linear-gradient(180deg, #666666 0%, #111111 50%, #444444 100%);
  /*border: 1px solid #4a4d52;*/
  /*box-shadow:*/
  /*        inset 0 1px 1px rgba(255, 255, 255, 0.2),*/
  /*        0 4px 10px rgba(0, 0, 0, 0.7);*/
  /*border-radius: 2px;*/
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.countdown-time-box {
  width: 73px;
  height: 54px;
  background: linear-gradient(180deg, #1e1e1e 13%, #000000 50%, #000000 51%, #1e1e1e 91%);
  /*border: 1px solid #4a4d52;*/
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2),
  0 4px 10px rgba(0, 0, 0, 0.7);
  /*border-radius: 2px;*/
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Subtle center split line effect */
.countdown-time-box::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Number Styling with Metallic Silver Gradient */
.countdown-number {
  font-family: 'Quantico', sans-serif;
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(180deg, #000000 0%, #000000 15%, #ffffff 50%, #000000 85%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /*text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);*/
  z-index: 1;

}

/* Colon Separator */
.countdown-separator {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  height: 75px;
  padding-bottom: 25px; /* Offset to align visually with boxes */
}

.countdown-dot {
  width: 4px;
  height: 4px;
  background-color: #8a8e94;
  border-radius: 1px;
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.3);
}

/* Labels under boxes */
.countdown-label {
  font-size: 13px;
  font-weight: 700;
  color: #8d939c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
