/*
UX/UI DESIGN AND FRONTEND DEVELOPMENT BY:
Evgenii Golubev | DIVISIDE.RU | telegram - @divside
*/

/* DEFAULT  */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style-type: none;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;

  font-family: "Onest", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 1.2;
  color: #000;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --dark: #1D1D1D;
  --accent: #8FFF00;
}


html {
  scroll-behavior: smooth;
}

html {}

body {
  position: relative;
  overflow-x: hidden;
}

.lock {
  overflow: hidden !important;
  position: relative;
}

main {
  min-height: 100%;
  height: 100%;
}

/* 
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #202020;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 70;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #484848;
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spinPreloader 1s linear infinite;
}

@keyframes spinPreloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
} */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #202020;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 70;
}

.loader {
  position: relative;
  width: 164px;
  height: 164px;
  border-radius: 50%;
  animation: rotate 0.75s linear infinite;
}

.loader::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 40px;
  border: 1px solid var(--accent);
  border-width: 12px 2px 7px;
  border-radius: 2px 2px 1px 1px;
  box-sizing: border-box;
  transform: rotate(45deg) translate(24px, -10px);
  background-image: linear-gradient(var(--accent) 20px, transparent 0),
    linear-gradient(var(--accent) 30px, transparent 0),
    linear-gradient(var(--accent) 30px, transparent 0);
  background-size: 10px 12px, 1px 30px, 1px 30px;
  background-repeat: no-repeat;
  background-position: center, 12px 0px, 3px 0px;
}

.loader::after {
  content: '';
  position: absolute;
  height: 4px;
  width: 4px;
  left: 20px;
  top: 47px;
  border-radius: 50%;
  color: #Fff;
  box-shadow: -4px 7px 2px, -7px 16px 3px 1px,
    -11px 24px 4px 1px, -6px 24px 4px 1px,
    -14px 35px 6px 2px, -5px 36px 8px 2px,
    -5px 45px 8px 2px, -14px 49px 8px 2px,
    6px 60px 11px 1px, -11px 66px 11px 1px,
    11px 75px 13px, -1px 82px 15px;
}

@keyframes rotate {
  to {
    transform: rotate(360deg)
  }
}


select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-decoration: none;
}

a {
  text-decoration: none;
  color: inherit;
}

span {
  font: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

section {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

.header,
.footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1410px;
  /* padding: 0 16px; */
  z-index: 2;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

button {
  background: transparent;
  cursor: pointer;
}

.title {
  font-family: "Unbounded", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 30px;
  line-height: 1.4;
}

.text {
  font-family: "Onest", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  font-size: 14px;
  line-height: 1.1;
}

.btn {
  display: flex;
}

.yellow-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 18px 24px;

  text-align: center;
  font-family: "Onest", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 1.1;
  color: var(--black);
  /* white-space: nowrap; */

  z-index: 1;
}

.yellow-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #8FFF00;
  transform: skew(-15deg);
  border-radius: 9px;
  z-index: -1;
  transition: 0.2s;
}

.yellow-btn:hover::before {
  background: #65b500;
  transition: 0.2s;
}

.yellow-btn[disabled] {
  cursor: not-allowed;
  opacity: 0.4;
}

.yellow-btn[disabled]:hover::before {
  background: var(--accent);
  transition: 0.2s;
}


/* END DEFAULT  */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
.quiz-modal {
  position: fixed;
  inset: 0;
  display: flex;
  z-index: 55;
  background: rgba(0, 0, 0, .93);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}

.quiz-modal--active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.quiz-modal__wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 48px;
  overflow-y: auto;

  scrollbar-width: none;
}


.quiz-modal__wrapper::-webkit-scrollbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
}

.quiz-modal__wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.quiz-modal__wrapper::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 20px;
}

.quiz-modal__content {
  position: relative;
  display: flex;
  justify-content: space-between;
  color: #fff;
  border-radius: 30px;
  padding: 24px;
  max-width: 690px;
  width: 100%;
  gap: 16px;
  margin: auto 0;
  overflow: hidden;
  z-index: 1;
}

.quiz-modal__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(100% - 48px);
  z-index: 3;
}

.quiz-modal__bg-glow {
  top: 0;
  right: 0;
  transform: scaleX(-1);
  z-index: 0 !important;
}

.quiz-modal__close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
  z-index: 5;
}

.quiz-modal__close:hover {
  opacity: .6;
}

.quiz-modal__step {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  display: none;
}

.quiz-modal__step--active {
  display: flex;
  animation: ImportShowSlide 0.75s;
}

.quiz-modal__progress {
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: 32px;
}

.quiz-modal__progress-text {
  width: 130px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 300;
  color: var(--white);
}

.quiz-modal__progressbar {
  position: relative;
  display: flex;
  width: 100%;
  height: 16px;
  background: #414141;
  border-radius: 50px;
  overflow: hidden;
}

.quiz-modal__progressbar-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(-45deg, #81E500 25%, #8FFF00 25%, #8FFF00 50%, #81E500 50%, #81E500 75%, #8FFF00 75%, #8FFF00 100%);
  background-size: 30px 30px;
  animation: moveStripes 0.7s linear infinite;
}

.quiz-modal__progressbar-line--one {
  width: 33%;
}

.quiz-modal__progressbar-line--two {
  width: 66%;
}


.quiz-modal__title {
  font-size: 21px;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 10px;
}

.quiz-modal__title--two {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 20px;
  text-wrap: balance;
}

.quiz-modal__accent {
  font: inherit;
  color: var(--accent);
}

.quiz-modal__text {
  font-weight: 300;
  line-height: 1.4;
  color: var(--white);
  text-wrap: balance;
  margin-bottom: 20px;
}



.quiz-modal__hint {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
  color: #848484;
  margin-bottom: 80px;
}


.quiz-modal__option {
  display: flex;
  /* width: 100%; */
  align-items: center;
  gap: 8px;
  padding: 22px 32px 22px 22px;
  border-radius: 999px;
  background: #FFF3F3;
  cursor: pointer;
  margin-bottom: 10px;
}

.quiz-modal__option:last-of-type {
  margin-bottom: 0;
}

.quiz-modal__option input {
  display: none;
}

.quiz-modal__radio {
  display: flex;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border: 1px solid var(--black);
  background: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.quiz-modal__radio::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: none;
}

.quiz-modal__option input:checked+.quiz-modal__radio {
  border: 1px solid transparent;
  background: var(--black);
}

.quiz-modal__option input:checked+.quiz-modal__radio::before {
  display: flex;
}

/* красим label */
.quiz-modal__option:has(input:checked) {
  background: var(--accent);
}

.quiz-modal__option .text {
  user-select: none;
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
  padding-top: 2px;
}










.quiz-modal__fields {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.quiz-modal__field {
  display: flex;
  width: 100%;
  align-items: center;
  background: #373737;
  border-radius: 10px;
  padding: 16px 20px;
  border: 1px solid transparent;
  transition: border 0.2s ease;
}


.quiz-modal__field:focus-within {
  border-color: var(--accent);
}

.quiz-modal__field:hover {
  border-color: var(--accent);
}

.quiz-modal__icon {
  display: flex;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  object-fit: contain;
  margin-right: 16px;
}

.quiz-modal__input {
  width: 100%;
  background: transparent;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--white);
  padding-top: 2px;
}













.quiz-modal__input--single {
  display: flex;
  width: 100%;
  background: #373737;
  border-radius: 10px;
  padding: 16px 20px;
  border: 1px solid transparent;
  transition: border 0.2s ease;

  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--white);

  margin-bottom: 10px;
}

.quiz-modal__input--single:hover,
.quiz-modal__input--single:focus-within {
  border: 1px solid var(--accent);
}

.quiz-modal__footerrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.quiz-modal__timer {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
  color: #848484;
}

.quiz-modal__buttons {
  display: flex;
  gap: 14px;
}

.yellow-btn[disabled] {
  cursor: not-allowed;
  opacity: 0.4;
}

.quiz-modal__next {
  padding: 18px 48px;
  gap: 10px;
}

.quiz-modal__skip {
  padding: 18px 40px;
  color: var(--white);
  transition: .2s;
}

.quiz-modal__skip::before {
  background: transparent;
  border: 2px solid var(--accent);
}

.quiz-modal__skip:hover::before {
  background: transparent;
  border: 2px solid var(--accent);
}

.quiz-modal__skip:hover {
  opacity: 0.75;
  transition: .2s;
}

.quiz-modal__contactpref {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.quiz-modal__contactpref-label {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--white);
}

.quiz-modal__contactpref-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 15px;
  color: #fff;
}

.quiz-modal__radiolabel {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  user-select: none;
}

.quiz-modal__radiolabel-text {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--white);
}

.quiz-modal__radiolabel input[type="radio"] {
  appearance: none;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 1.5px solid #fff;
  border-radius: 50%;
  background: transparent;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
}

.quiz-modal__radiolabel input[type="radio"]:checked {
  border-color: var(--accent);
  background: var(--accent);
}

.quiz-modal__radiolabel input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
}

.quiz-modal__agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.8;
  cursor: pointer;
  user-select: none;
  margin-top: 20px;
}

.quiz-modal__agree input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 1.5px solid #fff;
  border-radius: 4px;
  background: transparent;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
}

.quiz-modal__agree input[type="checkbox"]:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}

.quiz-modal__agree input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 0px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
}

.quiz-modal__agree span {
  max-width: 440px;
  font-size: 12px;
  line-height: 1.4;
  color: #AFAFAF;
}

/* === secure note under checkbox === */
.quiz-modal__secure {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.quiz-modal__secure-icon {
  display: flex;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  object-fit: contain;
  margin-top: 2px;
}

.quiz-modal__secure-icon::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
}

.quiz-modal__secure-text {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--white);
}


/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/*  BASE STRUCTURE  */
.callback-modal {
  position: fixed;
  inset: 0;
  display: flex;
  z-index: 55;
  background: rgba(0, 0, 0, 0.93);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  user-select: none;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.callback-modal--active {
  opacity: 1;
  visibility: visible;
  user-select: auto;
  pointer-events: all;
}

.callback-modal__wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 48px;
  overflow-y: auto;
  scrollbar-width: none;
}

.callback-modal__wrapper::-webkit-scrollbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
}

.callback-modal__wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.callback-modal__wrapper::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 20px;
}

.callback-modal__content {
  position: relative;
  display: flex;
  justify-content: space-between;
  color: #fff;
  border-radius: 30px;
  padding: 24px;
  max-width: 690px;
  width: 100%;
  gap: 16px;
  margin: auto 0;
  overflow: hidden;
}

.callback-modal__close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
  z-index: 3;
}

.callback-modal__close:hover {
  opacity: 0.6;
}

.callback-modal__left {
  display: flex;
  flex-direction: column;
  width: calc(50% - 8px);
  z-index: 2;
}

.callback-modal__right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: calc(50% - 8px);
  z-index: 1;
}

.callback-modal__title {
  font-size: 21px;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 10px;
}

.callback-modal__text {
  font-weight: 300;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 15px;
}

.callback-modal__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.callback-modal__field {
  display: flex;
  align-items: center;
  background: #373737;
  border-radius: 10px;
  padding: 16px 20px;
  border: 1px solid transparent;
  transition: border 0.2s ease;
}

.callback-modal__field:focus-within {
  border-color: var(--accent);
}

.callback-modal__field:hover {
  border-color: var(--accent);
}

.callback-modal__icon {
  display: flex;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  object-fit: contain;
  margin-right: 16px;
}

.callback-modal__input {
  width: 100%;
  background: transparent;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--white);
  padding-top: 2px;
}

.callback-modal__btn {
  margin-top: 10px;
  margin-bottom: 10px;
}

.callback-modal__agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.callback-modal__agree span {
  font-size: 12px;
  line-height: 1.4;
  color: #AFAFAF;
}

.callback-modal__agree input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 1.5px solid #fff;
  border-radius: 4px;
  background: transparent;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
}

.callback-modal__agree input[type="checkbox"]:checked {
  background-color: #9cff00;
  border-color: #9cff00;
}

.callback-modal__agree input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 0px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
}

.callback-modal__img {
  width: auto;
  height: 320px;
  aspect-ratio: 500/350;
  object-fit: contain;
  position: absolute;
}

.callback-modal__img--one {
  height: 230px;
  right: -10%;
  bottom: 37%;
  z-index: 2;
  transform: scaleX(-1);
}

.callback-modal__img--two {
  right: -54%;
  bottom: -13%;
  z-index: 3;
}

.callback-modal__bg-glow {
  top: 0;
  right: 0;
  transform: scaleX(-1);
  z-index: 0 !important;
}



/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
.header {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 50;
}

.header__pc {
  display: flex;
  width: 100%;
  justify-content: center;
}

.header__container {
  position: relative;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 9px;
  z-index: 1;
}

.header__container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #373737;
  transform: skew(-15deg);
  border-radius: 12px;
  z-index: -1;
}

.header__nav {
  display: flex;
}

.header__menu {
  display: flex;
  gap: 40px;
  align-items: center;
  padding-left: 56px;
}

.header__item {
  display: flex;
}

.header__link {
  display: flex;
  padding: 16px 0;
  white-space: nowrap;
  font-weight: 200;
  color: var(--white);
  transition: 0.2s;
}

.header__item:hover .header__link {
  color: var(--accent);
  transition: 0.2s;
}

.header__item--active .header__link {
  color: var(--accent);
}

.header__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  padding: 16px;
  background: #373737;
  border-radius: 15px;
  transition: 0.2s;
}

.header__logo-svg {
  display: flex;
  width: auto;
  height: 56px;
  flex: 0 0 auto;
  object-fit: contain;
  transition: 0.2s;
}

.header__logo:hover .header__logo-svg {
  transform: scale(0.95);
  opacity: 0.75;
  transition: 0.2s;
}

.header__contacts {
  display: flex;
  align-items: center;
}

.header__location {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-right: 20px;
}

.header__location-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.header__location-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.header__city {
  color: var(--white);
}

.header__phone {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-right: 15px;
  padding-top: 3px;
  white-space: nowrap;
  transition: 0.2s;
}

.header__socials {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: 10px;
}

.header__open {
  padding: 12px;
  border-radius: 8px;
  background: var(--accent);
  display: none;
}

.header__icon {
  display: flex;
  width: auto;
  height: auto;
  padding: 7px;
  border-radius: 50%;
  background: #595959;
  flex: 0 0 auto;
  transition: 0.2s;
}

.header__icon-svg {
  display: flex;
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  object-fit: contain;
}

.header__phone:hover,
.header__icon:hover {
  opacity: 0.75;
  transition: 0.2s;
}


.header__open svg {
  display: flex;
  width: 24px;
  height: 24px;
  flex: 0 0 a;
  object-fit: contain;
}

.header__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  padding: 12px;
  border-radius: 8px;
  background: var(--accent);
  align-self: flex-end;
}

.header__close svg {
  display: flex;
  width: 24px;
  height: 24px;
  flex: 0 0 a;
  object-fit: contain;
}

.header__callback {}

.header__mob {
  display: none;
}






.header__mob-contacts {
  display: flex;
  flex-direction: column;
  /* width: calc(100% - 64px); */
  width: 100%;
  min-height: 100%;
}

.header__mob-location {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}

.header__mob-location-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.header__mob-location-svg {
  display: flex;
  width: 100%;
  height: 100%;
  flex: 0 0 auto;
  object-fit: contain;
}

.header__mob-city {
  color: var(--white);
  padding-top: 2px;
}

.header__mob-phone {
  max-width: 80%;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  padding-top: 3px;
  white-space: nowrap;
  transition: 0.2s;

  margin-bottom: 20px;
}

.header__mob-socials {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 20px;
}

.header__mob-icon {
  display: flex;
  width: auto;
  height: auto;
  padding: 7px;
  border-radius: 50%;
  background: #595959;
  flex: 0 0 auto;
  transition: 0.2s;
}

.header__mob-icon-svg {
  display: flex;
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  object-fit: contain;
}

.header__mob-callback {
  margin-top: auto;
}

.header__mob-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.header__mob-menu {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.header__mob-item {
  display: flex;
}


.header__mob-link {
  display: flex;
  padding: 16px 0;
  white-space: nowrap;
  font-weight: 200;
  color: var(--white);
  transition: 0.2s;
}

.header__mob-item:first-of-type .header__mob-link {
  padding-top: 0;
}

.header__mob-item:last-of-type .header__mob-link {
  padding-bottom: 0;
}


.header__mob-item--active .header__mob-link {
  color: var(--accent);
}

/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
.hero {
  position: relative;
  border-radius: 0 0 100px 100px;
}

.bg-pattern {
  background: #202020;
  background-image: url('../img/bg-pattern.jpg');
  background-size: 190px;
  background-repeat: repeat;
}

.hero__container {
  align-items: center;
  padding-top: 140px;
}

.bg-glow {
  position: absolute;
  display: flex;
  width: 640px;
  height: auto;
  flex: 0 0 auto;
  z-index: 3;
  pointer-events: none;
}

.bg-glow--left {
  top: 0;
  left: 0;
}

.bg-glow--right {
  top: 0;
  right: 0;
  transform: scaleX(-1);
}


.hero__title {
  text-align: center;
  /* max-width: 900px; */
  color: var(--white);
  margin-bottom: 20px;
}

.hero__highlight {
  position: relative;
  display: inline-block;
  padding: 6px 16px;
  color: var(--accent);
  z-index: 1;
}

.hero__highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #345017;
  transform: skew(-15deg);
  border-radius: 9px;
  z-index: -1;
  transition: 0.2s;
}

.hero__subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 20px;
}

.hero__subtitle--import {
  margin-bottom: 32px;
}


.hero__subtitle--partners {
  margin-bottom: 64px;
}

.hero__countries {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero__country {
  display: flex;
}

.hero__country-img {
  display: flex;
  width: 27px;
  height: 27px;
  flex: 0 0 a;
  object-fit: contain;
}


.hero__cars {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__car {
  height: 280px;
  aspect-ratio: 450/280;
  object-fit: contain;
}

.hero__car--one {}

.hero__car--two,
.hero__car--three {
  margin-left: -72px;
}

.hero-vpn .hero__car--two,
.hero-vpn .hero__car--three {
  margin-left: -132px;
}

.hero__car--vpn {
  height: 330px;
}


/*  MARQUEE CARS BLOCK  */
.marquee-cars {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-cars__wrapper {
  display: flex;
  width: 100%;
  max-width: 100%;
}

.marquee-cars__list {
  display: flex;
  animation: marqueeCarsMove 60s linear infinite;
}

.marquee-cars__item {
  position: relative;
  flex: 0 0 auto;
  width: 216px;
  height: 152px;
  border-radius: 20px;
  margin-right: 20px;
  display: flex;
  padding: 16px;
  align-items: flex-end;
  justify-content: center;
  border: 1px solid #424242;
}

.marquee-cars__item--active {
  border: 1px solid var(--accent);
}

.marquee-cars__item-content {
  position: absolute;
  bottom: 14px;
  left: 12px;
  display: flex;
  gap: 4px;
  align-items: center;
  display: none;
}

.marquee-cars__item-icon {
  display: flex;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  object-fit: contain;
}

.marquee-cars__item-text {
  font-size: 12px;
  color: #848484;
  white-space: nowrap;
  padding-top: 4px;
  font-weight: 400;
}

.marquee-cars__item-img {
  display: flex;
  width: 100%;
  height: 100%;
  flex: 0 0 auto;
  object-fit: contain;
  opacity: 0.5;
}

.marquee-cars__item--active .marquee-cars__item-img {
  opacity: 1;
}

.marquee-cars__item--active .marquee-cars__item-content {
  display: flex;
}

@keyframes marqueeCarsMove {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.hero__container--two {
  padding-top: 0;
}

.hero__button {
  margin-top: 40px;
  margin-bottom: 20px;
}

.hero__note {
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  color: #848484;
  margin-bottom: 60px;
}




















.hero__quiz {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1020px;
  width: 100%;
  margin: 40px 0;
}

.hero__quiz-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: none;
}

.hero__quiz-slide--active {
  display: flex;
  animation: ImportShowSlide 0.75s;
}

@keyframes ImportShowSlide {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero__quiz-progress {
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: 32px;
}

.hero__quiz-progress-text {
  width: 130px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 300;
  color: var(--white);
}

.hero__quiz-progressbar {
  position: relative;
  display: flex;
  width: 100%;
  height: 16px;
  background: #414141;
  border-radius: 50px;
  overflow: hidden;
}

.hero__quiz-progressbar-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(-45deg,
      #81E500 25%,
      #8FFF00 25%,
      #8FFF00 50%,
      #81E500 50%,
      #81E500 75%,
      #8FFF00 75%,
      #8FFF00 100%);
  background-size: 30px 30px;
  animation: moveStripes 0.7s linear infinite;
}

@keyframes moveStripes {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 30px 0;
  }
}

.hero__quiz-progressbar-line--one {
  width: 33%;
}

.hero__quiz-progressbar-line--two {
  width: 66%;
}


.hero__quiz-slide-name {
  text-align: center;
  font-size: 21px;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__quiz-radios {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;

  margin-bottom: 30px;
}

.hero__quiz-radios label {
  display: flex;
  width: calc(100% / 4 - 6px);
  align-items: center;
  gap: 8px;
  padding: 22px;
  border-radius: 999px;
  background: #FFF3F3;
  cursor: pointer;
}

.hero__quiz-radios input {
  display: none;
}

.hero__quiz-radio {
  display: flex;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border: 1px solid var(--black);
  background: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.hero__quiz-radio::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: none;
}

input:checked+.hero__quiz-radio {
  border: 1px solid transparent;
  background: var(--black);
}

input:checked+.hero__quiz-radio::before {
  display: flex;
}

/* красим label */
.hero__quiz-radios label:has(input:checked) {
  background: var(--accent);
}

.hero__quiz-radios label .text {
  user-select: none;
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
  padding-top: 2px;
}

.hero__quiz-btn-next {
  padding: 18px 48px;
  gap: 10px;
}

.hero__quiz-time {
  text-align: center;
  font-size: 15px;
  line-height: 1.2;
  color: #848484;
  font-weight: 400;
  margin-top: 30px;
}

.hero__quiz-btn-next svg {
  display: flex;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
}

.hero__quiz-slide-input {
  display: flex;
  width: 100%;
  background: #373737;
  border-radius: 10px;
  padding: 16px 20px;
  border: 1px solid transparent;
  transition: border 0.2s ease;

  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--white);

  margin-bottom: 30px;
}

.hero__quiz-slide-input:hover,
.hero__quiz-slide-input:focus-within {
  border: 1px solid var(--accent);
}

.hero__quiz-inputs {
  display: flex;
  width: 100%;
  gap: 10px;
}

.hero__quiz-agree {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  margin-bottom: 30px;
}


.hero__quiz-agree span {
  font-size: 12px;
  line-height: 1.4;
  color: #AFAFAF;
}

.hero__quiz-agree input[type="checkbox"] {
  appearance: none;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 1.5px solid #fff;
  border-radius: 4px;
  background: transparent;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
}

.hero__quiz-agree input[type="checkbox"]:checked {
  background-color: #9cff00;
  border-color: #9cff00;
}

.hero__quiz-agree input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 0px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
}


















.hero-partners__list {
  display: flex;
  width: 100%;
  gap: 24px;
  margin-bottom: 30px;
}

.hero-partners__item {
  position: relative;
  display: flex;
  width: calc(50% - 12px);
  background: #373737;
  gap: 24px;
  padding: 24px;
}

.hero-partners__item--one {
  border-radius: 30px 30px 30px 0;
}

.hero-partners__item--one::before {
  content: '';
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  display: flex;
  aspect-ratio: 69/40;
  width: 64px;
  flex: 0 0 auto;
  background: url('data:image/svg+xml,<svg width="73" height="42" viewBox="0 0 73 42" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 0L0 31.9117C0 40.5115 10.1358 45.1002 16.598 39.4261L53.0075 7.45679C58.4814 2.65047 65.5171 0 72.8016 0H0Z" fill="%23373737"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.hero-partners__item--two {
  border-radius: 30px 30px 0 30px;
}

.hero-partners__item--two::before {
  content: '';
  position: absolute;
  top: calc(100% - 2px);
  right: 0;
  display: flex;
  aspect-ratio: 69/40;
  width: 64px;
  flex: 0 0 auto;
  background: url('data:image/svg+xml,<svg width="69" height="40" viewBox="0 0 69 40" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M69 0V30.442C69 38.6456 59.3934 43.0231 53.2687 37.6103L18.7604 7.11335C13.5724 2.5284 6.90412 0 0 0H69Z" fill="%23373737"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.hero-partners__col {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc(50% - 12px);
}

.hero-partners__img {
  position: absolute;
  top: -83px;
  left: 0;
  display: flex;
  width: 100%;
  height: auto;
  aspect-ratio: 500/350;
}

.hero-partners__title {
  font-size: 21px;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-partners__subtitle {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--white);
}

.hero-partners__button,
.hero-vpn__button {
  margin-top: 24px;
  margin-bottom: 30px;
}

.hero-partners__points,
.hero-vpn__points {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 24px;

  margin-bottom: 50px;
}

.hero-partners__point,
.hero-vpn__point {
  display: flex;
  gap: 4px;
}

.hero-partners__point-icon,
.hero-vpn__point-icon {
  display: flex;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  object-fit: contain;
  margin-top: 2px;
}

.hero-partners__point-text,
.hero-vpn__point-text {
  font-size: 15px;
  line-height: 1.4;
  color: #848484;
  font-weight: 400;
}


.hero-dealers__list {
  display: flex;
  width: 100%;
  max-width: 1100px;
  justify-content: center;
  gap: 20px;
  margin-bottom: 8px;
}

.hero-dealers__item {
  width: calc(100% / 3 - 13px);
}

.hero-dealers__item:nth-child(2) {
  background: radial-gradient(circle at 50% -30%, rgba(131, 255, 0, 0.35) 0%, rgba(131, 255, 0, 0.2) 30%, transparent 70%), #202020;
}

.hero-dealers__item:nth-child(3) {
  background: radial-gradient(circle at 70% -30%, rgba(131, 255, 0, 0.35) 0%, rgba(131, 255, 0, 0.2) 30%, transparent 70%), #202020;
}

.hero-dealers__button {
  margin-top: 40px;
  margin-bottom: 60px;
}



/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
.features {}

.features__container {
  align-items: center;
}

.features__list {
  display: flex;
  width: 100%;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.features__item {
  display: flex;
  width: calc(100% / 4 - 23px);
}

.infoblock-ver {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #202020;
  background: radial-gradient(circle at 30% -30%,
      rgba(131, 255, 0, 0.35) 0%,
      rgba(131, 255, 0, 0.2) 30%,
      transparent 70%), #202020;
  border-radius: 24px;
  overflow: hidden;
  padding: 24px 48px;
}

.infoblock-ver:nth-child(4n+3),
.infoblock-ver:nth-child(4n+4) {
  background: radial-gradient(circle at 70% -30%,
      rgba(131, 255, 0, 0.35) 0%,
      rgba(131, 255, 0, 0.2) 30%,
      transparent 70%), #202020;
}

.infoblock-ver__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 12px;
}

.infoblock-ver__icon-svg {
  display: flex;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  object-fit: contain;
}

.infoblock-ver__name {
  text-align: center;
  color: var(--white);
  font-size: 15px;
  line-height: 1.1;
  opacity: 0.9;
  margin-bottom: 8px;
}

.infoblock-ver__text {
  text-align: center;
  color: var(--white);
  opacity: 0.9;
}


/*  GUARANTEE  */
.features__subtitle {
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 15px;
}

.features__guarantee {
  max-width: 940px;
  padding: 26px 32px;
  text-align: center;
  white-space: normal;
  font-size: 15px;
  line-height: 1.3;

  margin-bottom: 90px;
}

.features__guarantee:hover::before {
  background: var(--accent);
}


/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
.stars {}

.stars__container {}

.stars__row {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.stars__row--head {
  text-align: center;
}

.stars__title {
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.stars__subtitle {
  font-size: 15px;
  line-height: 1.1;
  font-weight: 400;
  color: #484848;
  margin-bottom: 30px;
}

.stars__row--switches {
  text-align: center;
}

.stars__switches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-bottom: 30px;
}

.stars__switch {
  display: flex;
  flex-direction: column;
  max-width: 130px;
  align-items: center;
  padding: 16px 19px;
  gap: 9px;
  border-radius: 16px;
  transition: 0.2s;
}

.stars__switch:hover {
  background: #EDEDED;
  transition: 0.2s;
}

.stars__switch--active {
  background: #EDEDED;
}

.stars__switch-avatar {
  display: flex;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  object-fit: cover;
  border-radius: 16px;
}

.stars__switch-name {
  text-align: center;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 400;
  color: #484848;
}

.stars__row--slider {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.stars__arrow {
  position: absolute;
  top: 130px;

  display: flex;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: #6FC700;
  border-radius: 50%;
  transition: 0.2s;
}

.stars__arrow-icon {
  display: flex;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: white;
}

.stars__arrow:hover {
  background: #1D1D1D;
  transition: 0.2s;
}

.stars__arrow--prev {
  left: -70px;
}

.stars__arrow--next {
  right: -70px;
}

.stars__slider {
  display: flex;
  width: 100%;
  overflow: hidden;
  margin-bottom: 50px;
}

.stars__slide {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.stars__slide-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
}

.stars__slide-photo-img {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s;
}

.stars__video-btn {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.7);
  transition: 0.2s;
}

.stars__video-icon {
  display: flex;
  width: 16px;
  height: 16px;
  flex: 0 0 a;
  object-fit: contain;
}

.stars__video-text {
  line-height: 1.1;
  font-weight: 400;
  white-space: nowrap;
}

.stars__video-btn:hover {
  opacity: 0.75;
  transition: 0.2s;
}

.stars__slide-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.stars__person-name {
  font-size: 24px;
  line-height: 31px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 4px;
}

.stars__person-role {
  color: #5A5A5A;
  font-weight: 400;
  margin-bottom: 10px;
}

.stars__slide:hover .stars__slide-photo-img {
  transform: scale(1.1);
  transition: 0.2s;
}

.stars__bullets {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}

.stars__bullet {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.stars__bullet-icon {
  display: flex;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  object-fit: contain;
}

.stars__bullet-text {
  font-weight: 300;
}

.stars__row--stats {}

.stars__list {
  display: flex;
  width: 100%;
  max-width: 1100px;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.stars__item {
  width: calc(100% / 3 - 13px);
}

.infoblock {
  display: flex;
  align-items: center;
  background: #202020;
  background: radial-gradient(circle at 30% -30%, rgba(131, 255, 0, 0.35) 0%, rgba(131, 255, 0, 0.2) 30%, transparent 70%), #202020;
  border-radius: 24px;
  overflow: hidden;
  padding: 24px;
}

.infoblock__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 10px;
  padding: 10px;
  margin-right: 14px;
}

.infoblock__icon-svg {
  display: flex;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  object-fit: contain;
}

.infoblock__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.infoblock__name {
  width: 100%;
  color: var(--white);
  font-size: 20px;
  /* font-size: 15px; */
  line-height: 1.1;
  opacity: 0.9;
  margin-bottom: 8px;
}

.infoblock__text {
  width: 100%;
  color: var(--white);
  opacity: 0.9;
  text-wrap: balance;
}

.stars__button {
  margin-bottom: 90px;
}


/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
.gamechanger {
  position: relative;
  border-radius: 100px;
}

.gamechanger__container {
  padding: 90px 0;
}

.gamechanger__row {
  display: flex;
  width: 100%;
}

.gamechanger__row--one {
  flex-direction: column;
  align-items: center;
}

.gamechanger__title {
  text-align: center;
  color: var(--white);
  margin-bottom: 15px;
}

.gamechanger__subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 60px;
}

.gamechanger__row--two {
  gap: 24px;
}

.gamechanger__note {
  display: flex;
  flex-direction: column;
  width: calc(50% - 12px);
}

.gamechanger__note--left {}

.gamechanger__note--right {
  margin-top: 64px;
}

.gamechanger__note-card {
  position: relative;
  display: flex;
  width: 100%;
  background: #373737;
  border-radius: 30px;
  gap: 24px;
  padding: 24px;
}

.gamechanger__note-card--left {
  border-radius: 30px 30px 30px 0;
}

.gamechanger__note-card--right {
  border-radius: 30px 30px 0 30px;
}

.gamechanger__note-card--left::before {
  content: '';
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  display: flex;
  aspect-ratio: 69/40;
  width: 64px;
  flex: 0 0 auto;
  background: url('data:image/svg+xml,<svg width="73" height="42" viewBox="0 0 73 42" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 0L0 31.9117C0 40.5115 10.1358 45.1002 16.598 39.4261L53.0075 7.45679C58.4814 2.65047 65.5171 0 72.8016 0H0Z" fill="%23373737"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.gamechanger__note-card--right::before {
  content: '';
  position: absolute;
  top: calc(100% - 2px);
  right: 0;
  display: flex;
  aspect-ratio: 69/40;
  width: 64px;
  flex: 0 0 auto;
  background: url('data:image/svg+xml,<svg width="69" height="40" viewBox="0 0 69 40" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M69 0V30.442C69 38.6456 59.3934 43.0231 53.2687 37.6103L18.7604 7.11335C13.5724 2.5284 6.90412 0 0 0H69Z" fill="%23373737"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.gamechanger__note-card-img-wrapper {
  position: relative;
  display: flex;
  width: calc(35% - 12px);
}

.gamechanger__note-card-img {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gamechanger__note-card-content {
  display: flex;
  flex-direction: column;
  width: calc(65% - 12px);
}

.gamechanger__note-card--left .gamechanger__note-card-img-wrapper {
  width: calc(45% - 12px);
}

.gamechanger__note-card--left .gamechanger__note-card-content {
  width: calc(55% - 12px);
}

.gamechanger__note-card--right .gamechanger__note-card-content {
  align-items: flex-end;
}


.gamechanger__note-card-img--one {
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  transform: translateY(-50%);
}

.gamechanger__note-card-img--two {
  top: 0;
  left: -24px;
}


.gamechanger__note-card-title {
  font-size: 21px;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 16px;
}

.gamechanger__note-card-title--two {

  text-align: right;
}

.gamechanger__note-card-text {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
  color: var(--white);
}

.gamechanger__undertext {
  font-size: 15px;
  line-height: 1.4;
  color: var(--white);
  margin: 10px 0 0 48px;
}

.gamechanger__undertext span {
  font: inherit;
  color: var(--accent);
}

.gamechanger__note-card-stats {
  display: grid;
  /* max-width: 70%; */
  height: 100%;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  gap: 0 20px;
  /* row-gap: 0, column-gap: 10px */
}

.gamechanger__note-card-stat {
  color: var(--accent);
  font-size: 30px;
  line-height: 1.4;
}

.gamechanger__note-card-stat-text {
  color: var(--white);
  font-size: 15px;
  line-height: 1.4;
  white-space: nowrap;
}



.gamechanger__card::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  bottom: -40px;
  background: #2a2a2a;
}

.gamechanger__row--three {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.gamechanger__up {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  background: #2F2F2F;
  border-radius: 30px;
  margin-top: 24px;
  padding: 40px 80px;
  overflow: hidden;
}

.gamechanger__name {
  text-align: center;
  font-size: 21px;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 15px;
}

.gamechanger__name span {
  font: inherit;
  color: var(--accent);
}

.gamechanger__subname {
  text-align: center;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 32px;
}

.gamechanger__steps {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.gamechanger__step {
  position: relative;
  display: flex;
  width: calc(100% / 3 - 14px);
  padding: 15px 20px;
  border-radius: 15px;
  border: 1px solid #464646;
}

.gamechanger__step--img {
  border-color: transparent;
}

.gamechanger__step-img {
  object-fit: contain;
}

.gamechanger__step-img--one {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: auto;
}

.gamechanger__step-img--two {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: auto;
}


.gamechanger__step-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 15px;
  line-height: 1.4;
  text-align: center;
  color: var(--white);
  font-weight: 300;
}

.gamechanger__step-text span {
  display: flex;
  font-size: 21px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--accent);
}

.gamechanger__down {
  display: flex;
  max-width: 90%;
  background: var(--accent);
  padding: 16px 32px;
  border-radius: 0 0 30px 30px;

}

.gamechanger__down-text {
  text-align: center;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
}

.gamechanger__row--four {
  flex-direction: column;
  align-items: center;
}

.gamechanger__advantages {
  display: flex;
  width: 100%;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
  margin-top: 50px;
  margin-bottom: 30px;
}

.gamechanger__advantage {
  width: calc(100% / 4 - 23px);
  padding: 24px 32px;
}

.gamechanger__guarantee {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 30px;
  background:
    radial-gradient(circle at left top, rgba(131, 255, 0, 0.2) 0%, transparent 30%),
    radial-gradient(circle at right bottom, rgba(131, 255, 0, 0.2) 0%, transparent 30%),
    #202020;
  border-radius: 30px;
  margin-bottom: 30px;
}

.gamechanger__guarantee-text {
  font-size: 15px;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 10px;
}

.gamechanger__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gamechanger__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.gamechanger__item-icon {
  display: flex;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  object-fit: contain;
  margin-top: 2px;
}

.gamechanger__item-text {
  font-size: 15px;
  line-height: 1.4;
  color: var(--white);
}

.gamechanger__btn {}


/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
.agents {}

.agents__container {
  align-items: center;
  padding: 90px 0;
}


.agents__head {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: center;
  align-items: center;
}

.agents__name {
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.agents__subname {
  max-width: 840px;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 400;
  color: #484848;
  margin-bottom: 30px;
}

.agents__slider-wrapper {
  position: relative;
  display: flex;
  width: 100%;
}

.agents__arrow {
  position: absolute;
  top: 130px;

  display: flex;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: #6FC700;
  border-radius: 50%;
  transition: 0.2s;
}

.agents__arrow-icon {
  display: flex;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: white;
}


.agents__arrow:hover {
  background: #1D1D1D;
  transition: 0.2s;
}

.agents__arrow--prev {
  left: -70px;
}

.agents__arrow--next {
  right: -70px;
}

.agents__slider {
  display: flex;
  width: 100%;
}

.agents__wrapper {
  display: flex;
  width: 100%;
  align-items: stretch !important;
}

.agents__slide {
  display: flex;
  flex-direction: column;
  /* width:
    calc(100% / 4 - 22px) !important; */
}

.agents__slide-photo-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1/0.75;
  border-radius: 20px;
  margin-bottom: 16px;
  overflow: hidden;
}

.agents__slide-photo-wrapper--review {
  aspect-ratio: 1/1;
}

.agents__slide-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agents__slide-status {
  position: absolute;
  top: 20px;
  left: 20px;

  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: #0DAE50;
  background: #E8FFF1;
  border-radius: 50px;
}

.agents__slide-status::before {
  content: '';
  display: flex;
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  background: #0DAE50;
  border-radius: 50%;
  margin-right: 8px;
}

.agents__slide-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.agents__slide-name {
  font-size: 24px;
  line-height: 31px;
  font-weight: 700;
  margin-bottom: 4px;
}

.agents__slide-role {
  color: #5A5A5A;
  font-weight: 400;
  margin-bottom: 10px;
}

.agents__slide-points {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
  margin-bottom: 16px;
}

.agents__slide-point {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.agents__slide-point-icon {
  display: flex;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  object-fit: contain;
}

.agents__slide-point-text {
  font-weight: 300;
}

.agents__cta {
  margin-top: auto;
}

.agents__cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 16px);
  height: 100%;
  background: #8FFF00;
  transform: translate(-50%, -50%) skew(-15deg);
  border-radius: 9px;
  z-index: -1;
  transition: 0.2s;
}

.agents__list {
  display: flex;
  width: 100%;
  max-width: 1100px;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

.agents__item {
  width: calc(100% / 3 - 13px);
}

/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
.segments-solutions {}

.segments-solutions__container {
  align-items: center;
}

.segments-solutions__title {
  text-align: center;
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.segments-solutions__subtitle {
  max-width: 840px;
  text-align: center;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 400;
  color: #484848;
  margin-bottom: 30px;
}

.segments-solutions__list {
  display: flex;
  width: 100%;
  gap: 30px;
}

.segments-solutions__item {
  display: flex;
  flex-direction: column;
  width: calc(100% / 3 - 15px);
  padding: 30px;
  border-radius: 20px;
  background: radial-gradient(circle at 50% -30%, rgba(131, 255, 0, 0.35) 0%, rgba(131, 255, 0, 0.2) 30%, transparent 70%), #202020;
  overflow: hidden;
}

.segments-solutions-svg {
  display: flex;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;

  margin-bottom: 20px;
}

.segments-solutions__item-name {
  font-size: 24px;
  line-height: 31px;
  font-weight: 600;
  color: var(--white);
  opacity: 0.9;

  margin-bottom: 4px;
}

.segments-solutions__item-text {
  opacity: 0.9;
  color: var(--white);
  margin-bottom: 20px;
}

.segments-solutions__item-btn {
  margin-top: auto;
}

/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
.lifechange {}

.lifechange__container {
  padding: 90px 0;
}

.lifechange__title {
  text-align: center;
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 32px;
}

.lifechange__cols {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 30px;
}

.lifechange__col {
  display: flex;
  flex-direction: column;
  width: calc(50% - 15px);
}

.lifechange__colname {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.lifechange__item {
  margin-bottom: 10px;
}

.lifechange__item .infoblock__text {
  font-weight: 400;
}

.lifechange__item--bright {
  background: #EFEFEF;
}

.lifechange__item--bright .infoblock__name {
  color: #1D1D1D;
}

.lifechange__item--bright .infoblock__text {
  color: #1D1D1D;
}

.lifechange__col--two .lifechange__item {
  background: radial-gradient(circle at 0% 50%, rgba(131, 255, 0, 0.15) 0%, rgba(131, 255, 0, 0.1) 30%, transparent 70%), #202020;
}

/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
.idealcar {}

.idealcar-import__container,
.idealcar-tma__container {
  padding: 90px 0;
}


.cta-one-car {
  position: relative;
  display: flex;
  width: 100%;
  border-radius: 40px;
  padding: 60px;
  gap: 24px;
  overflow: hidden;
}

.cta-one-car--glow-left {
  top: -20%;
  left: 0;
  z-index: 1;
}

.cta-one-car--glow-right {
  top: -120%;
  right: 50px;
  transform: scaleX(-1) rotate(270deg);
  z-index: 1;
}

.cta-one-car__col {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.cta-one-car__col--one {
  width: calc(70% - 12px);
  z-index: 3;
}

.cta-one-car__col--two {
  width: calc(30% - 12px);
}

.cta-one-car__title {
  max-width: 580px;
  font-size: 30px;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-one-car__text {
  max-width: 640px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--white);
  text-wrap: balance;
  margin-bottom: 32px;
}

.cta-one-car__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta-one-car__btn {}

.cta-one-car__note {
  max-width: 300px;
  font-size: 12px;
  line-height: 1.4;
  color: #B7B7B7;
}

.cta-one-car__img {
  position: absolute;
  top: 50%;
  right: -30%;
  transform: translateY(-50%);
  display: flex;
  width: auto;
  height: 160%;
  aspect-ratio: 500 / 350;
}

.idealcar__list {
  display: flex;
  width: 100%;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 90px;
}

.idealcar__item {
  width: calc(100% / 3 - 13px);
}

/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
.footer {
  position: relative;
  overflow: hidden;
  border-radius: 100px 100px 0 0;
}

.footer--glow-left {
  top: 0;
  left: 0;
}

.footer--glow-right {
  top: 0;
  right: 0;
  transform: scaleX(-1);
}

.footer__container {
  flex-direction: row;
  padding: 64px 0;
  z-index: 4;
  gap: 40px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* width: calc(100% / 3 - 27px); */
  /* overflow: hidden; */
}


.footer__col--one {
  width: calc(30% - 27px);
}

.footer__col--two {
  flex-direction: row;
  gap: 24px;
  justify-content: space-between;
  width: calc(45% - 27px);
}

.footer__col--three {
  width: calc(25% - 27px);
}

.footer__logo {
  display: flex;
  transition: 0.2s;
  margin-bottom: 24px;
}

.footer__logo-svg {
  display: flex;
  width: auto;
  height: 72px;
  flex: 0 0 auto;
  object-fit: contain;
  transition: 0.2s;
}

.footer__copy {
  color: #D0D9CF;
  margin-bottom: 21px;
}

.footer__btn {}

.footer__subcol {
  display: flex;
  flex-direction: column;
  width: auto;
  /* width: calc(100% / 3 - 16px); */
}

.footer__col--three .footer__subcol {
  width: 100%;
}

.footer__subcol-name {
  font-size: 15px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__subcol-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
}

.footer__subcol-item {
  display: flex;
}

.footer__subcol-link {
  display: flex;
  color: #D0D9CF;
  font-weight: 300;
  white-space: nowrap;
}

.footer__subcol-link:hover {
  color: var(--accent);
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact {
  display: flex;
}

.footer__contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__contact-icon {
  display: flex;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  object-fit: contain;
}

.footer__contact-text {
  display: flex;
  color: #D0D9CF;
  font-weight: 300;
}

.footer__contact:hover .footer__contact-text {
  color: var(--accent);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
}

.footer__social {
  display: flex;
  width: auto;
  height: auto;
  padding: 7px;
  border-radius: 50%;
  background: #595959;
  flex: 0 0 auto;
  transition: 0.2s;
}

.footer__social-icon {
  display: flex;
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  object-fit: contain;
}

.footer__social:hover {
  opacity: 0.75;
  transition: 0.2s;
}

/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
.traps {}

.traps__container {
  padding: 90px 0;
  align-items: center;
}

.traps__title {
  text-align: center;
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.traps__subtitle {
  text-align: center;
  max-width: 840px;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 500;
  padding: 13px 16px;
  color: #484848;
  margin-bottom: 30px;
  pointer-events: none;
}

.traps__list {
  display: flex;
  width: 100%;
  gap: 30px;
  flex-wrap: wrap;
}

.traps__item {
  display: flex;
  flex-direction: column;
  width: calc(100% / 4 - 23px);
  background: var(--accent);
  border-radius: 24px;
}

.traps__item-up {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 24px;
  border-radius: 20px;
  background: radial-gradient(circle at 50% -30%, rgba(131, 255, 0, 0.35) 0%, rgba(131, 255, 0, 0.2) 30%, transparent 70%), #202020;
  overflow: hidden;
}

.traps__item-up-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 20px;
}

.traps__item-up-svg {}


.traps__item-up-svg {
  display: flex;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  object-fit: contain;
}

.traps__item-up-name {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 8px;
}

.traps__item-up-text {
  font-size: 15px;
  line-height: 1.2;
  opacity: 0.9;
  color: var(--white);
}

.traps__item-down {
  display: flex;
  padding: 16px 24px;
}

.traps__item-down-text {
  font-weight: 400;
}

/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
.protect {
  position: relative;
  border-radius: 100px;
}

.protect__container {
  padding: 90px 0;
}

.protect__row {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.protect__title {
  text-align: center;
  color: var(--white);
  margin-bottom: 15px;
}

.protect__subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 60px;
}

.protect__steps {
  display: flex;
  width: 100%;
  gap: 100px;
  justify-content: center;
  flex-wrap: wrap;
}

.protect__steps--three {}

.protect__steps--two {
  margin-bottom: 90px;
}

.protect__step {
  position: relative;
  display: flex;
  width: calc(100% / 3 - 67px);
  margin-top: 50px;
}

.protect__step-num {
  position: absolute;
  top: -75px;
  left: 20px;
  font-size: 80px;
  line-height: 1.4;
  color: var(--accent);
  white-space: nowrap;
  z-index: 1;
}

.protect__step-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px 25px;
  background: radial-gradient(circle at 90% 110%, rgba(131, 255, 0, 0.35) 0%, rgba(131, 255, 0, 0.2) 8%, transparent 40%), rgba(32, 32, 32, 0.36);
  backdrop-filter: blur(16px);
  border: 1px solid #363538;
  border-radius: 15px;
  z-index: 2;
}

.protect__step-name {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 12px;
  font-weight: 300;
  color: var(--white);
}

.protect__step-subname {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 200;
  color: var(--white);
}

.protect__line-outer {
  position: relative;
  display: flex;
  width: 100%;
  height: 56px;
  margin: 20px 0;

  mask: linear-gradient(to right,
      transparent 0%,
      black 20%,
      black 80%,
      transparent 100%);
  -webkit-mask: linear-gradient(to right,
      transparent 0%,
      black 20%,
      black 80%,
      transparent 100%);
}

.protect__line-outer::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right,
      transparent 0%,
      var(--accent) 50%,
      transparent 100%);
}

.protect__line-inner {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.protect__line-divider {
  display: flex;
  width: 2px;
  height: 16px;
  background: var(--accent);
  opacity: 0.5;
}

.protect__line-active {
  display: flex;
  width: 6px;
  height: 24px;
  background: var(--accent);
  box-shadow: 0 0 8px 2px var(--accent);
  border-radius: 20px;
}

.protect__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 13px;
}

.protect__item {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.protect__img {
  display: flex;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  object-fit: contain;
}

.protect__text {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 200;
  color: var(--white);
}
















.bringfrom {
  display: flex;
  width: 100%;
  gap: 30px;
  margin-bottom: 40px;
}

.bringfrom__col {
  position: relative;
  display: flex;
  width: calc(50% - 15px);
}

.bringfrom__list {
  display: flex;
  width: 100%;
  gap: 20px;
  flex-wrap: wrap;
}

.bringfrom__item {
  display: flex;
  width: calc(50% - 10px);
  padding: 25px;
  align-items: center;
  border-radius: 25px;
  background: radial-gradient(circle at 90% -20%, rgba(131, 255, 0, 0.35) 0%, rgba(131, 255, 0, 0.2) 8%, transparent 40%), rgba(32, 32, 32, 1);
}

.bringfrom__img {
  display: flex;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  object-fit: contain;
  margin-right: 12px;
}

.bringfrom__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}

.bringfrom__name {
  font-size: 15px;
  line-height: 1.1;
  color: var(--white);
}

.bringfrom__subname {
  font-size: 14px;
  line-height: 1.1;
  color: var(--white);
}

.bringfrom__col-img {
  position: absolute;
  display: flex;
  object-fit: contain;
}

.bringfrom__col-img--one {
  top: 0;
  left: 0;
  width: 434px;
  height: auto;
  aspect-ratio: 434/286;
}

.bringfrom__col-img--two {
  bottom: 0;
  right: 0;
  width: 585px;
  height: auto;
  aspect-ratio: 585/353;
  transform: scaleX(-1);
}

/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
.agents-review__container {
  padding-top: 0;
}

.agents-review__container--import {
  padding: 90px 0;
}

.agents-review__btn {
  margin-top: 30px;
}

/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
.traps {}

.choose-path__container {
  padding: 90px 0;
  align-items: center;
}

.choose-path__title {
  text-align: center;
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.choose-path__subtitle {
  text-align: center;
  max-width: 840px;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 500;
  color: #484848;
  margin-bottom: 30px;
}

.choose-path__list {
  display: flex;
  width: 100%;
  gap: 30px;
  flex-wrap: wrap;
}

.choose-path__item {
  display: flex;
  flex-direction: column;
  width: calc(100% / 2 - 15px);
  background: var(--accent);
  border-radius: 24px;
}

.choose-path__infoblock {
  align-items: flex-start;
  background: radial-gradient(circle at 10% -30%, rgba(131, 255, 0, 0.35) 0%, rgba(131, 255, 0, 0.2) 30%, transparent 70%), #202020;
}

.choose-path__name {
  font-size: 15px;
  line-height: 1.3;
}

.choose-path__text {
  font-size: 15px;
  line-height: 1.2;
}

.choose-path__item-down {
  display: flex;
  flex-direction: column;
  padding: 16px 24px;
}

.choose-path__item-down-text {
  font-weight: 400;
  text-wrap: balance;
}

.choose-path__item-down-name {
  font-size: 15px;
  line-height: 1.2;
  margin: 8px 0;
}

/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */

.calculator {}

.calculator__container {
  align-items: center;
  padding-bottom: 90px;
}

.calculator__wrapper {
  position: relative;
  display: flex;
  width: 100%;
  padding: 70px 120px;
  flex-direction: column;
  border-radius: 50px;
  overflow: hidden;
}

.calculator-glow--left {
  top: 0;
  left: 0;
  transform: scaleY(-1);
}

.calculator-glow--right {
  top: 0;
  right: 0;
  transform: scaleX(-1) scaleY(-1);
}

.calculator__title {
  text-align: center;
  color: var(--white);
  margin-bottom: 15px;
}

.calculator__subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 60px;
}

.calculator__row {
  display: flex;
  flex-direction: column;
  width: 100%;
}


.calculator__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 80px;
}

.calculator__name {
  font-size: 21px;
  line-height: 1.4;
  text-align: center;
  color: var(--white);
  margin-bottom: 40px;
}

.calculator__range {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.calculator__slider {
  display: flex;
  width: 100%;
  position: relative;
}

/*  ХВОСТИКИ  */
.calculator__slider-outer {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.calculator__slider-edge {
  width: 8px;
  height: 6px;
  flex-shrink: 0;
}

.calculator__slider-edge--left {
  background: #fff;
  border-radius: 2px 0 0 2px;
}

.calculator__slider-edge--right {
  background: #aaff00;
  border-radius: 0 2px 2px 0;
}

/*  ТРЕК  */
.calculator__slider-track {
  position: relative;
  flex: 1;
  height: 6px;
  background: #aaff00;
}

.calculator__slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  background: #fff;
  width: 0%;
}

/*  РИСКИ + ЦИФРЫ  */
.calculator__slider-points {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  display: flex;
  width: 100%;
  pointer-events: none;
  z-index: 3;
}

.calculator__slider-point {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #9e9e9e;
  font-size: 14px;
  white-space: nowrap;
}

.calculator__slider-mark {
  width: 4px;
  height: 12px;
  background: var(--accent);
  border-radius: 1px;
}

.calculator__slider-num {
  margin-top: 8px;
  color: #848484;
}

/*  КРУЖОК (thumb)  */
.calculator__slider-thumb {
  position: absolute;
  top: 50%;
  left: 0;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 4px solid var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/*  ТУЛТИП  */
.calculator__slider-tooltip {
  position: absolute;
  top: -32px;
  left: 0;
  transform: translateX(-25%);
  font-size: 15px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 20;
  color: #fff;
}

.calculator__results {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.calculator__results-name {
  font-size: 21px;
  line-height: 1.4;
  text-align: center;
  color: var(--white);
  margin-bottom: 16px;
}

.calculator__cards {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.calculator__card {
  display: flex;
  padding: 15px 25px;
  border-radius: 12px;
  background: var(--accent);
  gap: 4px;
}

.calculator__card-text {
  font-size: 21px;
  line-height: 1.4;
}

.calculator__note {
  text-align: center;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 400;
  color: #848484;
}

.calculator__button {
  margin-top: -26px;
}

/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */

.bg-pattern {}

.pyramid {
  position: relative;
  border-radius: 100px;
}

.pyramid__container {
  position: relative;
  padding: 90px 0;
  align-items: center;
}

.pyramid__container * {
  z-index: 2;
}

.pyramid__img {
  position: absolute;
  display: flex;
  width: 440px;
  height: auto;
  aspect-ratio: 500/350;
  flex: 0 0 auto;
  object-fit: contain;
  z-index: 0;
}

.pyramid__img--left {
  top: 210px;
  left: 0;
}

.pyramid__img--right {
  top: 210px;
  right: 0;
}


.pyramid__title {
  text-align: center;
  color: var(--white);
  margin-bottom: 15px;
}

.pyramid__subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 60px;
}

.pyramid__row {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  margin-bottom: 24px;
}

.pyramid__list {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.pyramid__item {
  position: relative;
  display: flex;
}

.pyramid__item:first-of-type::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 100%;
  display: flex;
  width: 135px;
  aspect-ratio: 140/130;
  flex: 0 0 auto;

  background: url('data:image/svg+xml,<svg width="140" height="130" viewBox="0 0 140 130" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M140 0.992367C98.1659 0.99237 64.212 15.0928 40.7187 38.1877C17.4865 61.0261 4.45578 92.6896 4.16815 128.298L6.47819 125.996C6.6725 125.802 6.98748 125.802 7.18179 125.996C7.37611 126.189 7.37611 126.504 7.18179 126.697L4.01557 129.855C3.82125 130.048 3.50628 130.048 3.31196 129.855L0.145736 126.697C-0.0485794 126.504 -0.0485781 126.189 0.145736 125.996C0.340052 125.802 0.655026 125.802 0.849342 125.996L3.17396 128.313C3.45827 92.4534 16.5801 60.5227 40.02 37.4803C63.72 14.182 97.9349 3.41314e-06 140 0V0.992367Z" fill="%238FFF00"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.pyramid__item:last-of-type::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  display: flex;
  width: 135px;
  aspect-ratio: 140/130;
  flex: 0 0 auto;

  background: url('data:image/svg+xml,<svg width="140" height="130" viewBox="0 0 140 130" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 0.992367C41.8341 0.99237 75.788 15.0928 99.2813 38.1877C122.513 61.0261 135.544 92.6896 135.832 128.298L133.522 125.996C133.327 125.802 133.013 125.802 132.818 125.996C132.624 126.189 132.624 126.504 132.818 126.697L135.984 129.855C136.179 130.048 136.494 130.048 136.688 129.855L139.854 126.697C140.049 126.504 140.049 126.189 139.854 125.996C139.66 125.802 139.345 125.802 139.151 125.996L136.826 128.313C136.542 92.4534 123.42 60.5227 99.98 37.4803C76.28 14.182 42.0651 3.41314e-06 0 0V0.992367Z" fill="%238FFF00"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}


.pyramid__human {
  display: flex;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: #373737;
  border-radius: 16px;
}

.pyramid__human-img {
  display: flex;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  object-fit: contain;
}

.pyramid__human--leader {
  background: var(--accent);
}

.pyramid__item--noarrow:first-of-type::before,
.pyramid__item--noarrow:last-of-type::after {
  display: none;
}

.pyramid__text {
  color: var(--white);
  font-weight: 400;
  margin-bottom: 8px;
}

.pyramid__note {
  display: flex;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--accent);
  gap: 4px;

  font-size: 15px;
  line-height: 1.1;
  font-weight: 400;
}

.pyramid__human--lox {}

.pyramid__button {
  margin-top: 24px;
}

/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */

.best-rewards {}

.best-rewards__container {
  align-items: center;
  padding-bottom: 90px;
}

.best-rewards__title {
  text-align: center;
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.best-rewards__subtitle {
  text-align: center;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 400;
  color: #484848;
  margin-bottom: 30px;
}




.best-rewards__list {
  display: flex;
  width: 100%;
  gap: 30px;
  flex-wrap: wrap;
}

.best-rewards__item {
  display: flex;
  flex-direction: column;
  width: calc(100% / 4 - 23px);
  background: var(--accent);
  border-radius: 24px;
}

.best-rewards__item-up {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 30px;
  border-radius: 20px;
  background: radial-gradient(circle at 50% -30%, rgba(131, 255, 0, 0.35) 0%, rgba(131, 255, 0, 0.2) 30%, transparent 70%), #202020;
  overflow: hidden;
}

.best-rewards-svg {
  display: flex;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.best-rewards__item-name {
  font-size: 24px;
  line-height: 31px;
  font-weight: 600;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 4px;
}

.best-rewards__item-text {
  opacity: 0.9;
  color: var(--white);
}

.best-rewards__item-down {
  display: flex;
  flex-direction: column;
  padding: 16px 24px;
}

.best-rewards__item-down-text {
  font-weight: 400;
  text-wrap: balance;
}

.best-rewards__item-down-name {
  font-size: 15px;
  line-height: 1.2;
  margin: 8px 0;
}

.best-rewards__button {
  margin-top: 30px;
}



/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
.grow-tools {
  position: relative;
  border-radius: 100px;
}

.grow-tools__container {
  padding: 90px 0;
  align-items: center;
}

.grow-tools__title {
  text-align: center;
  color: var(--white);
  margin-bottom: 15px;
}

.grow-tools__subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 30px;
}

.grow-tools__list {
  display: flex;
  width: 100%;
  gap: 30px;
  flex-wrap: wrap;
}

.tools__item {
  width: calc(100% / 3 - 23px);
  align-items: flex-start;
}

.grow-tools__button {
  margin-top: 30px;
  margin-bottom: 90px;
}

/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */

.how-it-work {}

.how-it-work__container {
  padding: 90px 0;
  align-items: center;
}

.how-it-work__title {
  text-align: center;
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.how-it-work__subtitle {
  max-width: 840px;
  text-align: center;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 400;
  color: #484848;
  margin-bottom: 30px;
}

.how-it-work__cards {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.how-it-work__card {
  width: calc(100% / 3 - 13px);
  align-items: flex-start;
}

.how-it-work__headline {
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.how-it-work__list {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 40px;
}

.how-it-work__item {
  display: flex;
  flex-direction: column;
  padding: 24px 40px;
  pointer-events: none;
}

.how-it-work__item .text {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 400;
}

.how-it-work__item .text:first-of-type {
  font-weight: 600;
}

.how-it-work__button {}

/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */

.dealer-day {
  position: relative;
  border-radius: 100px;
}

.dealer-day__container {
  padding: 90px 0;
  align-items: center;
}

.dealer-day__title {
  text-align: center;
  color: var(--white);
  margin-bottom: 15px;
}

.dealer-day__subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 64px;
}

.dealer-day__underdays {
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 134px;
}

.dealer-day__underdays span {
  font: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: var(--accent);
}

.dealer-day__headline {
  text-align: center;
  color: var(--white);
  margin-bottom: 30px;
}

.dealer-day__segments {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.dealer-day__segment {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  margin-bottom: 60px;
}

.dealer-day__segment:last-of-type {
  margin-bottom: 0;
}

.dealer-day__segment-title {
  font-size: 21px;
  line-height: 1.4;
  color: var(--accent);
  margin-bottom: 5px;
}

.dealer-day__segment-subtitle {
  color: var(--white);
  margin-bottom: 20px;
}

.dealer-day__segment-list {
  display: flex;
  width: 100%;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.dealer-day__segment-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(50% - 15px);
  background:
    radial-gradient(circle at 10% 10%, rgba(131, 255, 0, 0.35) 0%, rgba(131, 255, 0, 0.2) 8%, transparent 40%),
    radial-gradient(circle at 90% 110%, rgba(131, 255, 0, 0.35) 0%, rgba(131, 255, 0, 0.2) 8%, transparent 40%),
    rgb(32, 32, 32);
  border-radius: 24px;
  overflow: hidden;
  padding: 24px;
}

.dealer-day__segment-item-img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 14px;
}

.dealer-day__segment-item-img {
  display: flex;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  object-fit: contain;
}

.dealer-day__segment-item-name {
  font-size: 15px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 8px;
}

.dealer-day__checks {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
  margin-bottom: 16px;
}

.dealer-day__check {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.dealer-day__check-icon {
  display: flex;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  object-fit: contain;
}

.dealer-day__check-text {
  font-weight: 300;
  color: var(--white);
}

.dealer-day__undercards-text {
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
  color: var(--white);
}

.dealer-day__undercards-text span {
  color: var(--accent);
}


/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */

.form-choice {}

.form-choice__container {
  padding: 90px 0;
}

.form-choice__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  border-radius: 40px;
  padding: 60px;
  overflow: hidden;
}

.form-choice__inner * {
  z-index: 2;
}

.form-choice-glow-left {
  top: 10%;
  left: 0;
  transform: scaleY(-1);
  z-index: 1;
}

.form-choice-glow-right {
  bottom: -50%;
  right: 0;
  transform: scaleX(-1);
  z-index: 1;
}

.form-choice__title {
  color: var(--white);
  margin-bottom: 15px;
}

.form-choice__subtitle {
  font-size: 15px;
  color: var(--white);
  margin-bottom: 30px;
}

.form-choice__row {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 30px;
}

.form-choice__row:last-of-type {
  margin-bottom: 40px;
}

.form-choice__row-name {
  font-size: 21px;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 20px;
}

.form-choice__radios {
  display: flex;
  width: 100%;
  gap: 10px;
}

.form-choice__label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.form-choice__radio {
  display: flex;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border: 1px solid var(--accent);
  background: #373737;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

.form-choice__input {
  display: none;
}

.form-choice__radio::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #373737;
  display: none;
}

.form-choice__input:checked+.form-choice__radio {
  background: var(--accent);
}

.form-choice__input:checked+.form-choice__radio::before {
  display: flex;
}

.form-choice__label .text {
  color: var(--white);
  font-weight: 400;
}

.form-choice__label-package {
  display: flex;
  padding: 15px 20px;
  background: #373737;
  border: 1px solid #5E5E5E;
  gap: 10px;
  border-radius: 20px;
  cursor: pointer;
}

.form-choice__label-package:has(.form-choice__input:checked) {
  border-color: var(--accent);
}

.form-choice__label-inner {
  display: flex;
  flex-direction: column;
}

.form-choice__label-title {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--white);
}

.form-choice__label-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-choice__label-item {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.form-choice__label-img {
  display: flex;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  object-fit: contain;
}

.form-choice__label-text {
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--white);
}

.form-choice__button {}

/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */

.tma__button,
.services__button {
  margin-top: 40px;
  margin-bottom: 60px;
}

.empire {}

.empire__container {
  padding: 90px 0;
  align-items: center;
}

.empire__title {
  text-align: center;
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.empire__subtitle {
  text-align: center;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 400;
  color: #484848;
  margin-bottom: 30px;
}

.empire__list {
  display: flex;
  width: 100%;
  gap: 30px;
  flex-wrap: wrap;
}

.empire__item {
  width: calc(100% / 4 - 23px);
}

.empire__button {
  margin-top: 40px;
}


/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */

.prize-fund {
  position: relative;
  border-radius: 100px;
}

.prize-fund__container {
  padding: 90px 0;
  align-items: center;
}

.prize-fund__title {
  text-align: center;
  color: var(--white);
  margin-bottom: 15px;
}

.prize-fund__subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 60px;
}

.prize-fund__season {
  display: flex;
  align-items: flex-start;
  background:
    radial-gradient(circle at 10% -40%, rgba(131, 255, 0, 0.35) 0%, rgba(131, 255, 0, 0.2) 8%, transparent 40%),
    radial-gradient(circle at 90% 140%, rgba(131, 255, 0, 0.35) 0%, rgba(131, 255, 0, 0.2) 8%, transparent 40%),
    rgb(32, 32, 32);
  border-radius: 24px;
  overflow: hidden;
  padding: 35px 40px;
  margin-bottom: 50px;
}

.prize-fund__season-text {
  text-align: center;
  color: var(--white);
}

.prize-fund__season-text span {
  color: var(--accent);
}

.prize-fund__list {
  display: flex;
  width: 100%;
  max-width: 1220px;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 30px;
}

.prize-fund__item {
  display: flex;
  flex-direction: column;
  width: calc(100% / 3 - 14px);
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 10% -40%, rgba(131, 255, 0, 0.35) 0%, rgba(131, 255, 0, 0.2) 8%, transparent 40%),
    radial-gradient(circle at 90% 140%, rgba(131, 255, 0, 0.35) 0%, rgba(131, 255, 0, 0.2) 8%, transparent 40%),
    rgb(32, 32, 32);
  border-radius: 24px;
  overflow: hidden;
  padding: 35px 40px;
}

.prize-fund__item--first-place {
  background:
    radial-gradient(circle at 10% -70%, rgba(131, 255, 0, 0.5) 0%, rgba(131, 255, 0, 0.35) 16%, transparent 60%),
    radial-gradient(circle at 90% 170%, rgba(131, 255, 0, 0.5) 0%, rgba(131, 255, 0, 0.35) 16%, transparent 60%),
    rgb(32, 32, 32);
}

.prize-fund__item-text {
  text-align: center;
  font-size: 21px;
  line-height: 1.4;
  color: var(--white);
}

.prize-fund__item-text span {
  color: var(--accent);
}

.prize-fund__item-img-wrapper {
  display: flex;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border-radius: 16px;
  margin-bottom: 12px;
}

.prize-fund__item-img {
  display: flex;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  object-fit: contain;
}

.prize-fund__others {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.prize-fund__other {
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
  color: var(--white);
}

.prize-fund__other span {
  color: var(--accent);
}

/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */


.cta-two-car {
  position: relative;
  display: flex;
  width: 100%;
  border-radius: 40px;
  padding: 60px;
  gap: 24px;
  overflow: hidden;
}

.cta-two-car--glow-left {
  top: -20%;
  left: 0;
  z-index: 1;
}

.cta-two-car--glow-right {
  top: -140%;
  right: 50px;
  transform: scaleX(-1) rotate(270deg);
  z-index: 1;
}

.cta-two-car__col {
  position: relative;
  display: flex;
  width: calc(50% - 12px);
  flex-direction: column;
  z-index: 2;
}

.cta-two-car__col--one {
  z-index: 5;
}

.cta-two-car__title {
  font-size: 30px;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-two-car__text {
  max-width: 640px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--white);
  text-wrap: balance;
  margin-bottom: 32px;
}

.cta-two-car__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.cta-two-car__btn {}

.cta-two-car__list {
  display: flex;
  width: 100%;
  gap: 13px;
}

.cta-two-car__item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cta-two-car__item-img {
  display: flex;
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  object-fit: contain;
}

.cta-two-car__item-text {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 200;
  color: var(--white);
}

.cta-two-car__img {
  position: absolute;
  transform: translateY(-50%);
  display: flex;
  width: auto;
  height: 140%;
  aspect-ratio: 500 / 350;
}

.cta-two-car__img--back {
  top: 50%;
  right: 250px;
}

.cta-two-car__img--front {
  top: 50%;
  right: -110px;
}


/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
.internet {}

.internet__container {
  padding: 90px 0;
  align-items: center;
}

.internet__title {
  text-align: center;
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.internet__subtitle {
  max-width: 840px;
  text-align: center;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 400;
  color: #484848;
  margin-bottom: 30px;
}

.internet__list {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.internet__item {
  width: calc(100% / 3 - 13px);
  align-items: flex-start;
}

.internet__button {}

/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
.connect-seconds {
  position: relative;
  border-radius: 100px;
}

.connect-seconds__container {
  padding: 90px 0;
  align-items: center;
}

.connect-seconds__title {
  text-align: center;
  color: var(--white);
  margin-bottom: 15px;
}

.connect-seconds__subtitle {
  text-align: center;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 60px;
}

.connect-seconds__steps {
  display: flex;
  width: 100%;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.connect-seconds__step {
  position: relative;
  display: flex;
  width: calc(100% / 2 - 16px);
  margin-top: 50px;
}

.connect-seconds__step-num {
  position: absolute;
  top: -75px;
  left: 20px;
  font-size: 80px;
  line-height: 1.4;
  color: var(--accent);
  white-space: nowrap;
  z-index: 1;
}

.connect-seconds__step-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px 25px;
  background: radial-gradient(circle at 90% 110%, rgba(131, 255, 0, 0.35) 0%, rgba(131, 255, 0, 0.2) 8%, transparent 40%), rgba(32, 32, 32, 0.36);
  backdrop-filter: blur(16px);
  border: 1px solid #363538;
  border-radius: 15px;
  z-index: 2;
}

.connect-seconds__step-name {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 12px;
  font-weight: 300;
  color: var(--white);
}

.connect-seconds__step-subname {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 200;
  color: var(--white);
}

.connect-seconds__line-outer {
  position: relative;
  display: flex;
  width: 100%;
  height: 56px;
  margin: 20px 0;
  mask: linear-gradient(to right,
      transparent 0%,
      black 20%,
      black 80%,
      transparent 100%);
  -webkit-mask: linear-gradient(to right,
      transparent 0%,
      black 20%,
      black 80%,
      transparent 100%);
}

.connect-seconds__line-outer::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right,
      transparent 0%,
      var(--accent) 50%,
      transparent 100%);
}

.connect-seconds__line-inner {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.connect-seconds__line-active {
  display: flex;
  width: 6px;
  height: 24px;
  background: var(--accent);
  box-shadow: 0 0 8px 2px var(--accent);
  border-radius: 20px;
}

.connect-seconds__line-divider {
  display: flex;
  width: 2px;
  height: 16px;
  background: var(--accent);
  opacity: 0.5;
}

.connect-seconds__cards {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.connect-seconds__card {
  width: calc(100% / 2 - 10px);
  align-items: flex-start;
  background: radial-gradient(circle at 20% -30%, rgba(131, 255, 0, 0.3) 0%, rgba(131, 255, 0, 0.15) 15%, transparent 40%), #202020;
}


.connect-seconds__button {}

/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
.catalog {}

.catalog__container {
  padding-top: 90px;
  align-items: center;
}

.catalog__title {
  text-align: center;
  font-size: 30px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.catalog__subtitle {
  max-width: 840px;
  text-align: center;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 400;
  color: #484848;
  margin-bottom: 30px;
}

.catalog__row {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  margin-bottom: 60px;
}

.catalog__row--five {
  margin-bottom: 0;
}

.catalog__row-title {
  text-align: center;
  font-size: 21px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.catalog__list {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.catalog__item {
  width: calc(100% / 2 - 10px);
  align-items: flex-start;
}

/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
@media (max-width: 1600px) {
  .container {
    max-width: 1200px;
  }

  .header__menu {
    padding-left: 16px;
    gap: 32px;
  }

  .header__city {
    max-width: 150px;
  }

  .header__socials {
    display: none;
  }

  .hero-partners__img {
    top: -73px;
  }

  .pyramid__item:first-of-type::before,
  .pyramid__item:last-of-type::after {
    display: none;
  }

  .pyramid__list {
    gap: 16px;
  }

  .cta-two-car__list {
    flex-direction: column;
  }

  .cta-two-car__img {
    height: 100%;
  }

  .cta-two-car__img--back {
    right: 200px;
  }

  .cta-two-car--glow-right {
    top: -110%;
  }

}

/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
@media (max-width: 1280px) {
  .container {
    max-width: 1024px;
  }

  .header__socials {
    display: flex;
  }

  .header {
    top: 0;
    /* overflow: hidden; */
  }

  .header__container {
    padding: 16px;
  }

  .header__container-mob {
    max-width: 100%;
  }

  .header__container::before {
    display: none;
  }

  .header__nav {
    display: none;
  }

  .header__logo {
    top: 0;
    transform: translate(-50%, 0);
    border-radius: 0 0 15px 15px;
    transition: 0.2s;
  }

  .header__logo-svg {
    height: 46px;
  }

  .header__location,
  .header__phone,
  .header__callback {
    display: none;
  }

  .header__open {
    display: flex;
  }

  .header__mob {
    position: absolute;
    top: 0;
    left: 100%;
    display: flex;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #252525;
    z-index: 2;
    transition: 0.2s;
  }

  .header__container-mob {
    position: relative;
    min-height: 100%;
    padding: 16px;
    align-items: flex-start;
    background: #252525;
  }

  .header__mob--open {
    top: 0;
    left: 0;
    transition: 0.2s;
  }

  .hero {
    border-radius: 0 0 40px 40px;
  }

  .hero__container {
    padding-top: 110px;
  }

  .hero__container--two {
    padding-top: 0;
  }

  .hero__car {
    height: 200px;
  }

  .hero__car--one,
  .hero__car--three {
    display: none !important;
  }

  .hero__car--two {
    width: 80%;
    height: auto;
    margin-left: 0 !important;
  }

  .gamechanger {
    border-radius: 40px;
  }

  .gamechanger__row--two {
    flex-direction: column;
  }

  .gamechanger__note {
    width: 100%;
  }

  .gamechanger__note--right {
    margin-top: 0;
  }

  .gamechanger__undertext {
    text-align: right;
    padding-right: 48px;
  }

  .cta-one-car__img {
    height: 100%;
    right: -50%;
  }

  .cta-one-car--glow-right {
    top: -90%;
  }

  .footer {
    border-radius: 40px 40px 0 0;
  }

  .footer__container {
    flex-wrap: wrap;
  }

  .footer__col--one {
    width: calc(30% - 27px);
  }

  .footer__col--two {
    width: calc(70% - 27px);
  }

  .footer__col--three {
    width: 100%;
  }

  .footer__contacts {
    flex-direction: row;
  }

  .protect {
    border-radius: 40px;
  }

  .bringfrom__col:nth-child(2) {
    display: none;
  }

  .bringfrom__col {
    width: 100%;
  }

  .hero-partners__item {
    flex-direction: column;
  }

  .hero-partners__col {
    width: 100%;
  }

  .hero-partners__col:nth-child(1) {
    display: none;
  }

  .calculator__wrapper {
    border-radius: 40px;
  }

  .pyramid {
    border-radius: 40px;
  }

  .pyramid__item {
    display: none;
  }

  .pyramid__row:nth-of-type(1) .pyramid__item:nth-of-type(1) {
    display: flex;
  }

  .pyramid__row:nth-of-type(2) .pyramid__item:nth-of-type(1),
  .pyramid__row:nth-of-type(2) .pyramid__item:nth-of-type(2) {
    display: flex;
  }

  .pyramid__row:nth-of-type(3) .pyramid__item:nth-of-type(1),
  .pyramid__row:nth-of-type(3) .pyramid__item:nth-of-type(2),
  .pyramid__row:nth-of-type(3) .pyramid__item:nth-of-type(3) {
    display: flex;
  }

  .pyramid__row:nth-of-type(4) .pyramid__item:nth-of-type(1),
  .pyramid__row:nth-of-type(4) .pyramid__item:nth-of-type(2),
  .pyramid__row:nth-of-type(4) .pyramid__item:nth-of-type(3),
  .pyramid__row:nth-of-type(4) .pyramid__item:nth-of-type(4) {
    display: flex;
  }

  .pyramid__row:nth-of-type(5) .pyramid__item:nth-of-type(1),
  .pyramid__row:nth-of-type(5) .pyramid__item:nth-of-type(2),
  .pyramid__row:nth-of-type(5) .pyramid__item:nth-of-type(3),
  .pyramid__row:nth-of-type(5) .pyramid__item:nth-of-type(4) {
    display: flex;
  }


  .pyramid__img {
    width: 370px;
  }

  .best-rewards__item-name {
    font-size: 16px;
    line-height: 1.4;
  }

  .grow-tools {
    border-radius: 40px;
  }

  .grow-tools__list {
    gap: 16px;
  }

  .tools__item {
    width: calc(100% / 2 - 8px);
    background: radial-gradient(circle at 30% -30%, rgba(131, 255, 0, 0.15) 0%, rgba(131, 255, 0, 0.1) 30%, transparent 60%), #202020;
  }

  .dealer-day {
    border-radius: 40px;
  }

  .form-choice__inner {
    border-radius: 40px;
  }

  .prize-fund {
    border-radius: 40px;
  }

  .cta-two-car__img--front {
    right: -160px;
  }

  .cta-two-car__img--back {
    right: 120px;
  }

  .hero__cars {
    width: 100%;
  }

  .hero__car--vpn {
    width: 50%;
  }

  .internet__list {
    flex-direction: column;
    gap: 16px;
  }

  .internet__item {
    width: 100%;
  }

  .connect-seconds {
    border-radius: 40px;
  }


}

/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
@media (max-width: 1024px) {
  .container {
    max-width: 768px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero__container--two {
    padding-left: 16px;
    padding-right: 16px;
  }

  .bg-glow {
    width: 300px;
  }

  .title {
    font-size: 21px;
    line-height: 1.4;
  }

  .hero__car--two {
    width: 100% !important;
  }

  .marquee-cars {
    display: none;
  }

  .hero__button {
    margin-top: 16px;
    margin-bottom: 20px;
  }

  .hero__note {
    margin-bottom: 40px;
  }

  .features__list {
    gap: 16px;
  }

  .features__item {
    width: calc(100% / 2 - 8px);
  }

  .infoblock-ver__name {
    font-size: 12px;
    line-height: 1.1;
  }

  .infoblock-ver {
    padding: 24px;
  }

  .stars__arrow {
    display: none;
  }

  .stars__list {
    flex-direction: column;
    gap: 16px;
  }

  .stars__item {
    width: 100%;
  }

  .gamechanger__note-card-title {
    font-size: 16px;
  }

  .gamechanger__undertext {
    font-size: 15px;
    text-align: right;
    padding-right: 48px;
  }

  .gamechanger__up {
    padding: 24px;
  }

  .gamechanger__advantages {
    gap: 16px;
  }

  .gamechanger__advantage {
    width: calc(100% / 2 - 8px);
  }

  .agents__list {
    flex-direction: column;
    gap: 16px;
  }

  .agents__item {
    width: 100%;
  }

  .segments-solutions__list {
    flex-direction: column;
    gap: 16px;
  }

  .segments-solutions__item {
    width: 100%;
  }

  .lifechange__cols {
    gap: 20px;
  }

  .lifechange__col {
    width: calc(50% - 10px);
  }

  .lifechange__colname {
    font-size: 16px;
  }

  .cta-one-car {
    flex-direction: column;
  }

  .cta-one-car__col {
    width: 100% !important;
  }

  .cta-one-car__title {
    text-align: center;
  }

  .cta-one-car__text {
    text-align: center;
  }

  .cta-one-car__note {
    text-align: center;
  }

  .cta-one-car--glow-right {
    top: -20%;
    right: 0;
    transform: scaleX(-1) rotate(0deg);
  }

  .cta-one-car__actions {
    flex-direction: column;
  }

  .cta-one-car__col--two {
    aspect-ratio: 2/1;
  }

  .cta-one-car__img {
    position: absolute;
    top: 0;
    right: 0%;
    transform: none;
    display: flex;
    width: 100%;
    height: 100%;
    aspect-ratio: 500 / 350;
  }

  .idealcar__list {
    flex-direction: column;
    gap: 16px;
  }

  .idealcar__item {
    width: 100%;
  }

  .footer__container {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .footer__col {
    width: 100% !important;
  }

  .footer__col--one {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
  }

  .footer__logo,
  .footer__copy {
    margin-bottom: 0;
  }

  .footer__contacts {
    flex-wrap: wrap;
  }

  .hero__quiz {
    margin: 0 0 40px 0;
  }

  .hero__quiz-slide-name {
    font-size: 16px;
  }

  .hero__quiz-radios {
    flex-wrap: wrap;
  }

  .hero__quiz-radios label {
    width: calc(100% / 2 - 6px);
  }

  .traps__list {
    gap: 16px;
  }

  .traps__item {
    width: calc(100% / 2 - 8px);
  }

  .traps__item-up-name {
    font-size: 16px;
  }

  .protect__steps {
    gap: 24px;
  }

  .protect__step {
    width: calc(100% / 3 - 16px);
    margin-top: 50px;
  }

  .protect__step-name {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 12px;
  }

  .protect__step-num {
    position: absolute;
    top: -75px;
    left: 20px;
    font-size: 80px;
    line-height: 1.4;
    color: var(--accent);
    white-space: nowrap;
    z-index: 1;
  }

  .hero-partners__title {
    font-size: 16px;
    line-height: 1.4;
  }

  .choose-path__infoblock .infoblock__icon {
    display: none;
  }

  .choose-path__name {
    font-size: 15px;
    line-height: 1.3;
  }

  .calculator__wrapper {
    padding: 40px 40px 60px 40px;
  }

  .calculator__name {
    font-size: 16px;
  }

  .calculator__results-name {
    font-size: 16px;
  }

  .calculator__card-text {
    font-size: 16px;
  }

  .calculator-glow--left {
    top: 0;
    left: 0;
    transform: none;
  }

  .calculator-glow--right {
    top: 0;
    right: 0;
    transform: scaleX(-1);
  }

  .pyramid__img {
    width: 290px;
  }

  .best-rewards__list {
    gap: 16px;
  }

  .best-rewards__item {
    width: calc(100% / 2 - 8px);
  }

  .hero-dealers__list {
    gap: 16px;
  }

  .hero-dealers__item {
    padding: 16px;
    border-radius: 16px;
  }

  .how-it-work__cards {
    flex-direction: column;
  }

  .how-it-work__card {
    width: 100%;
  }

  .infoblock__name {
    font-size: 16px;
  }

  .how-it-work__headline {
    font-size: 16px;
  }

  .how-it-work__list {
    flex-direction: column;
  }

  .how-it-work__item {
    width: 100%;
  }

  .how-it-work__item::before {
    transform: skew(0deg);
  }

  .protect__step-num {
    position: absolute;
    top: -43px;
    left: 20px;
    font-size: 40px;
  }

  .dealer-day__segment-item-name {
    font-size: 16px;
  }

  .form-choice__inner {
    padding: 40px;
  }

  .form-choice__label-title {
    font-size: 16px;
  }

  .form-choice-glow-left {
    top: 20%;
  }

  .form-choice-glow-right {
    bottom: 20%;
  }

  .form-choice__row-name {
    font-size: 16px;
  }

  .empire__list {
    gap: 16px;
  }

  .empire__item {
    width: calc(100% / 2 - 8px);
  }

  .prize-fund__item-text {
    font-size: 16px;
  }

  .prize-fund__other {
    font-size: 16px;
  }

  .cta-two-car {
    flex-direction: column;
    padding: 32px;
  }

  .cta-two-car__col {
    width: 100%;
    align-items: center;
  }

  .cta-two-car__col:nth-of-type(2) {
    aspect-ratio: 2 / 1;
  }


  .cta-two-car__text {
    text-align: center;
  }

  .cta-two-car__actions {
    align-items: center;
  }

  .cta-two-car__item {
    flex-direction: column;
    align-items: center;
  }

  .cta-two-car__img--front {
    display: none;
  }

  .cta-two-car__img--back {
    inset: auto;
    position: relative;
    width: 100%;
    height: 100%;
    transform: none;
  }

  .cta-two-car--glow-right {
    top: 50%;
  }

  .connect-seconds__step-num {
    position: absolute;
    top: -43px;
    left: 20px;
    font-size: 40px;
  }

  .dealer-day__undercards-text {
    font-size: 16px;
  }

}


/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
@media (max-width: 768px) {
  .container {
    /* padding: 0 16px; */
  }

  .features__subtitle {
    font-size: 16px;
    line-height: 1.4;
  }

  .features__guarantee {
    padding: 20px;
    margin-bottom: 60px;
  }

  .features__guarantee::before {
    transform: skew(0);
    border-radius: 9px;
    z-index: -1;
    transition: 0.2s;
  }

  .stars__container {
    padding: 0;
  }

  .stars__title {
    font-size: 16px;
    line-height: 1.4;
  }

  .stars__row {
    padding: 0 16px;
  }

  .stars__row--switches {
    overflow-x: scroll;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .stars__switches {
    flex-wrap: nowrap;
  }

  .stars__switch {
    display: flex;
    flex-direction: column;
    max-width: 130px;
    align-items: center;
    padding: 8px;
    gap: 9px;
    border-radius: 16px;
    transition: 0.2s;
  }

  .gamechanger__advantages {
    flex-direction: column;
  }

  .gamechanger__advantage {
    width: 100%;
  }

  .gamechanger__note-card {
    flex-direction: column;
    padding: 0 24px 24px 24px;
  }

  .gamechanger__note-card-img-wrapper {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 2/1 !important;
  }

  .gamechanger__note-card-content {
    width: 100% !important;
    align-items: flex-start !important;
  }

  .gamechanger__note-card-title {
    text-align: left;
  }

  .gamechanger__note-card-img {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .gamechanger__steps {
    flex-direction: column;
  }

  .gamechanger__step {
    width: 100%;
  }

  .gamechanger__step--img {
    display: none;
  }

  .lifechange__item {
    flex-direction: column;
    padding: 16px;
    border-radius: 16px;
  }

  .lifechange__item .infoblock__icon {
    display: none;
  }

  .lifechange__item .infoblock__name {
    font-size: 12px;
  }

  .cta-one-car {
    padding: 32px;
  }

  .footer__col {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__subcol-name {
    font-size: 16px;
  }

  .hero__quiz-progress-text {
    width: 180px;
  }

  .hero__quiz-radios {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .hero__quiz-radios label {
    width: 100%;
  }

  .hero__quiz-inputs {
    flex-direction: column;
    margin-bottom: 16px;
  }

  .hero__quiz-slide-input {
    margin-bottom: 0;
  }


  .traps__list {
    flex-direction: column;
  }

  .traps__item {
    width: 100%;
  }

  .traps__item-up-icon-wrapper {
    display: none;
  }

  .protect__steps {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .protect__steps--two {
    margin-top: 24px;
  }

  .protect__step {
    width: 100%;
  }

  .protect__line-outer {
    display: none;
  }

  .bringfrom__item {
    flex-direction: column;
    padding: 16px;
    align-items: flex-start;
    border-radius: 16px;
  }

  .bringfrom__img {
    margin-bottom: 12px;
  }

  .bringfrom__name {
    font-size: 15px;
  }

  .hero-partners__list {
    flex-direction: column;
    gap: 48px;
  }

  .hero-partners__item {
    width: 100%;
  }

  .hero-partners__points,
  .hero-vpn__points {
    flex-direction: column;
    align-items: center;
  }

  .choose-path__list {
    flex-direction: column;
    gap: 16px;
  }

  .choose-path__item {
    width: 100%;
  }

  .calculator__container {
    padding: 0 0 90px 0;
  }

  .calculator__wrapper {
    padding: 48px 16px 118px 16px;
  }

  /* .calculator__cards {
    flex-direction: column;
  } */

  .calculator__card {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .calculator__button {
    margin-top: -86px;
  }

  .agents__slider {
    overflow: visible;
  }

  .callback-modal__wrapper,
  .quiz-modal__wrapper {
    padding: 16px;
  }

  .callback-modal__content,
  .quiz-modal__content {
    flex-direction: column;
    border-radius: 16px;
  }

  .callback-modal__left {
    width: 100%;
  }

  .callback-modal__right {
    display: none;
  }

  .callback-modal__title {
    max-width: 90%;
    font-size: 16px;
  }

  .quiz-modal__form {
    width: 100%;
  }

  .quiz-modal__progress {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .quiz-modal__title {
    max-width: 90%;
    font-size: 16px;
  }

  .quiz-modal__option {
    padding: 12px 17px 12px 17px;
  }

  .quiz-modal__hint {
    margin-bottom: 16px;
  }

  .quiz-modal__footerrow {
    width: 100%;
    flex-direction: column;
  }

  .quiz-modal__buttons {
    width: 100%;
    flex-direction: column;
  }

  .quiz-modal__fields {
    flex-direction: column;
  }

  .quiz-modal__contactpref {
    flex-direction: column;
    align-items: flex-start;
  }

  .quiz-modal__contactpref-row {
    flex-direction: column;
  }

  .pyramid__img {
    display: none;
  }

  .best-rewards__list {
    flex-direction: column;
  }

  .best-rewards__item {
    width: 100%;
  }

  .grow-tools__list {
    flex-direction: column;
  }

  .tools__item {
    width: 100%;
    padding: 16px;
    border-radius: 16px;
  }

  .tools__item .infoblock__name {
    font-size: 16px;
  }

  .hero-dealers__list {
    flex-direction: column;
  }

  .hero-dealers__item {
    width: 100%;
  }

  /* .dealer-day__segments {
    flex-direction: row;
    flex: 0 0 auto;
    overflow: scroll;
  }

  .dealer-day__segment {
    flex: 0 0 auto;
  } */

  .dealer-day__segment-list {
    flex-direction: column;
  }

  .dealer-day__segment-item {
    width: 100%;
  }

  .form-choice__inner {
    padding: 32px;
  }

  .form-choice__radios {
    flex-direction: column;
  }

  .form-choice-glow-left {
    top: 54%;
  }

  .form-choice-glow-right {
    bottom: 50%;
  }

  .prize-fund__list {
    flex-direction: column;
  }

  .prize-fund__item {
    width: 100%;
  }

  .prize-fund__item--first-place {
    order: -1;
  }

  .connect-seconds__steps {
    flex-direction: column;
  }

  .connect-seconds__step {
    width: 100%;
  }

  .protect__step-num,
  .connect-seconds__step-num {
    position: absolute;
    top: -75px;
    left: 20px;
    font-size: 80px;
    line-height: 1.4;
  }

  .connect-seconds__cards {
    flex-direction: column;
  }

  .connect-seconds__card {
    width: 100%;
  }

  .catalog__list {
    flex-direction: column;
  }

  .catalog__item {
    width: 100%;
  }
}

/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */
/* ////////////////////////////////////////// */

/*
UX/UI DESIGN AND FRONTEND DEVELOPMENT BY:
Evgenii Golubev | DIVISIDE.RU | telegram - @divside
*/