:root {
  --color-white: #fff;
  --color-yellow: #fec93e;
  --color-dark: #14181f;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* width */
::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #fec93e;
}

body,
input,
textarea {
  font-family: "DIN Pro", sans-serif;
}

body {
  background-color: #0e141f;
  color: var(--color-white);
  font-style: normal;
  font-weight: normal;
}

a,
button {
  text-decoration: none;
}

.wrapper {
  overflow: hidden;
}

.container {
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 64px;
    max-width: 1236px;
  }
}
  
.container--modal {
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .container--modal {
    padding: 0 64px;
    max-width: calc(874px + 128px);
  }
}
  
/* ICONS START */

.icon-currency {
  width: 18px;
  height: 18px;
  transition: fill 0.4s ease;
}

/* ICONS END */

.for-body-hidden {
  overflow: hidden;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* Customize the label (the container) */
.custom-checkbox-container {
  display: block;
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.custom-checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.custom-checkbox-checkmark {
  height: 20px;
  width: 20px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.4);
  transition: background-color 300ms ease;
  position: relative;
  flex-shrink: 0;
}

/* On mouse-over, add a grey background color */
.custom-checkbox-container:hover input ~ .custom-checkbox-checkmark {
  background: rgba(255, 255, 255, 0.5);
}

/* Create the checkmark/indicator (hidden when not checked) */
.custom-checkbox-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.custom-checkbox-container input:checked ~ .custom-checkbox-checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.custom-checkbox-container .custom-checkbox-checkmark:after {
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 10px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='9' viewBox='0 0 10 9' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.0046 1.92399L4.24186 8.57326L0.434326 4.76573L1.5657 3.63436L4.15816 6.22682L8.79546 0.876099L10.0046 1.92399Z' fill='%2314181F'/%3E%3C/svg%3E");
  background-position: center center;
}

.main {
  overflow: hidden;
  position: relative;
  background-image: url("./img/main-bg.svg");
  background-size: 1920px;
  background-repeat: no-repeat;
  background-position-y: 1080px;
  background-position-x: center;
}

@media (min-width: 1024px) {
  .main::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    background-image: url("./img/hero-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    height: 1080px;
  }
}

.button-close {
  cursor: pointer;
  border: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  padding: 12px 16px 12px 12px;
  background-color: rgba(255, 255, 255, 0.09);
  transition: scale 0.4s ease;
}

.button-close:active {
  scale: 0.9;
}

.button-close:focus-visible {
  box-shadow: 0 0 0 3px var(--color-yellow);
}

.button-close__text {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  opacity: 0.5;
}

.button-close__icon {
  width: 20px;
  height: 20px;
}

.button-secondary {
  cursor: pointer;
  outline: none;
  border: none;
  display: flex;
  justify-content: center;
  gap: 7px;
  align-items: center;
  border-radius: 6px;
  padding: 16px 24px;
  border: 2px solid rgba(59, 65, 76, 0.2);
  background-color: var(--color-dark);
  transition: background-color 0.4s ease;

}

@media (min-width: 768px) {
  .button-secondary {
    justify-content: space-between;
  }
}

.button-secondary__text {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  opacity: 0.5;
  transition: color 0.4s ease;
  text-wrap: nowrap;
}

.button-secondary__price {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  transition: color 0.4s ease;
}

.button-secondary__icon {
  fill: var(--color-yellow);
  flex-shrink: 0;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background-color: var(--color-yellow);

  & .button-secondary__text {
    color: var(--color-dark);
  }

  & .button-secondary__price {
    color: var(--color-dark);
  }

  & .button-secondary__icon {
    fill: var(--color-dark);
  }
}

.button-secondary:active {
  background-color: var(--color-dark);

  & .button-secondary__text {
    color: var(--color-white);
  }

  & .button-secondary__price {
    color: var(--color-white);
  }

  & .button-secondary__icon {
    fill: var(--color-yellow);
  }
}

.subtitle {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 1024px) {
  .subtitle {
    justify-content: center;
  }
}
  
@media (min-width: 1024px) {
  .subtitle::before,
  .subtitle::after {
    display: flex;
    content: "";
    opacity: 0.1;
    background-color: var(--color-white);
    height: 16px;
  }

  .subtitle::before {
    min-width: 94px;
  }
  .subtitle::after {
    width: 100%;
  }
}

.subtitle__text {
  color: var(--color-white);
  font-size: 26px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 3.12px;
  text-transform: uppercase;
  text-align: center;
}

@media (min-width: 1024px) {
  .subtitle__text {
    text-wrap: nowrap;
  }

  .subtitle__text br {
    display: none;
  }
}
  
.subtitle__text > span {
  color: var(--color-yellow);
}

header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.upper {
  text-transform: uppercase;
}

.p-16px {
  font-size: 0.833335vw;
}

.fw700 {
  font-weight: 700;
}

.fff {
  color: #fff;
}

.yellow {
  color: #fec93e;
}

@media (max-width: 1680px) {
  .p-16px {
    font-size: 15px;
  }
}

header > .fluid-width {
  height: auto;
}

header .topline .menu-header-wrap {
  position: relative;
  z-index: 2;
}

.menu-header-wrap li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fluid-width {
  position: relative;
  width: 100%;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 80vw;
  z-index: 10;
}

.topline {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3.02083vw;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.logo-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.logo-wrap .text-wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  padding-left: 34px;
}

@media (min-width: 1024px) {
  .logo-wrap .text-wrap {
    padding-left: 64px;
  }
}
  
.logo-wrap .text-wrap > * {
  width: 100%;
}

.logo-wrap .text-wrap:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  width: 12px;
  height: 0.10416667vw;
  min-height: 2px;
  display: block;
  background-color: #fec93e;
}

@media (min-width: 1024px) {
  .logo-wrap .text-wrap:after {
    width: 24px;
    left: 24px;
  }
}

.logo-image {
  width: 43px;
  height: auto;
  display: block;
}

@media (min-width: 1024px) {
  .logo-image {
    width: 80px;
  }
}
  
.menu-header-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

button.close {
  position: absolute;
  right: 15px;
  top: 15px;
  display: block;
  width: 50px;
  height: 50px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 47.971 47.971' style='enable-background:new 0 0 47.971 47.971' xml:space='preserve'%3E%3Cpath d='M28.228 23.986 47.092 5.122a2.998 2.998 0 0 0 0-4.242 2.998 2.998 0 0 0-4.242 0L23.986 19.744 5.121.88a2.998 2.998 0 0 0-4.242 0 2.998 2.998 0 0 0 0 4.242l18.865 18.864L.879 42.85a2.998 2.998 0 1 0 4.242 4.241l18.865-18.864L42.85 47.091c.586.586 1.354.879 2.121.879s1.535-.293 2.121-.879a2.998 2.998 0 0 0 0-4.242L28.228 23.986z'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: 22px 22px;
  border: none;
  padding: 0;
  margin: 0;
  outline: none;
}

.menu-header-wrap li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.33s ease-in-out;
  -webkit-transition: all 0.33s ease-in-out;
  -moz-transition: all 0.33s ease-in-out;
}

.menu-header-wrap li a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.041665vw 1.36666667vw;
}
@media (max-width: 997px) {
  .main-menu-wrap .menu-header-wrap {
    display: none;
  }
}

.menu-header-wrap li:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0.2083vw;
  background-color: #fec93e;
  bottom: -0.10416667vw;
  opacity: 0;
  box-shadow: 0 0 10px #fecb2e, 0 -10px 30px #fecb2e, 0 -10px 30px #fecb2e;
  transition: all 0.33s ease-in-out;
  -webkit-transition: all 0.33s ease-in-out;
  -moz-transition: all 0.33s ease-in-out;
}

.menu-header-wrap li:hover:after,
.menu-header-wrap li.active:after {
  opacity: 1;
  width: 100%;
}

@media (max-width: 997px) {
  .menu-header-wrap li.active:after {
    opacity: 0;
    width: 0;
  }
  .menu-header-wrap li:hover:after {
    opacity: 1;
    width: 100%;
  }
}

.main-menu-wrap > .close-wrap {
  display: none;
}

.burger-menu-btn {
  width: 40px;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg fill='%23fff' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 302 302' style='enable-background:new 0 0 302 302' xml:space='preserve'%3E%3Cpath d='M0 36h302v30H0zM0 236h302v30H0zM0 136h302v30H0z'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: 25px 25px;
  margin-right: -10px;
  outline: none;
  border: none;
  display: none;
}

@media (max-width: 997px) {
  .burger-menu-btn {
    display: block;
  }
}
@media (max-width: 997px) {
  .main-menu-wrap.active {
    z-index: 999;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    align-items: start;
    justify-content: center;
    background: rgba(255, 255, 255, 0.97);
    padding: 25px 15px;
  }
}

@media (max-width: 997px) {
  .main-menu-wrap.active .menu-header-wrap {
    display: flex !important;
  }
}

@media (max-width: 997px) {
  .main-menu-wrap.active li {
    background: rgba(75, 99, 141, 0.1);
    list-style: none;
    width: 100%;
    margin-bottom: 4px;
    border-radius: 4px;
  }
}

@media (max-width: 997px) {
  .main-menu-wrap.active a {
    padding: 18px 22px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 997px) {
  .main-menu-wrap.active > ul {
    flex-wrap: wrap;
  }
}

@media (max-width: 997px) {
  .main-menu-wrap.active .link-name {
    color: #333 !important;
    font-size: 16px;
  }
}

.fw500 {
  font-weight: 500;
}

@media (max-width: 1680px) {
  .p-16px {
    font-size: 15px;
  }
}
@media (max-width: 997px) {
  .main-menu-wrap.active > .close-wrap {
    display: block;
    width: 100%;
    margin-bottom: 40px;
    text-align: right;
  }
}

.main-menu-wrap.active .burger-menu-btn {
  display: none;
}

@media (max-width: 997px) {
  .close-wrap > button {
    width: 40px;
    height: 40px;
    background-size: 22px 22px;
    opacity: 0.7;
  }
}

@media (max-width: 997px) {
  .main-menu-wrap {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 997px) {
  header .topline {
    padding-top: 30px;
  }
}

@media (max-width: 991px) {
  .fluid-width {
    max-width: 87.5vw;
  }
}

.hero-section {
  padding-top: 190px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 220px;
  }
}
  
.hero-title {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 48.4px */
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 24px;
    padding: 0 26px;
  }
}
  
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  margin-top: 37px;
}

@media (max-width: 768px) {
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 26px;
  }
}
  
.hero-form-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 288px;
  width: 100%;
}

@media (max-width: 560px) {
  .hero-form-wrapper {
    max-width: 100%;
  }
}
  
.hero-input {
  border-radius: 8px;
  background: #f2f2f2;
  outline: none;
  border: none;
  padding: 18px 20px;
  color: #333;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 100%;
}

.hero-input::placeholder {
  color: rgb(51, 51, 51, 0.4);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.hero-input-label {
  margin-top: 12px;
  position: relative;
}

.hero-input-label.error .hero-input-label-text {
  color: red;
}

.hero-input-label-text {
  color: rgb(242, 242, 242, 0.4);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 13.2px */
  text-transform: uppercase;
  margin-bottom: 4px;
  transition: color 300ms ease;
}

.hero-input-rate {
  position: absolute;
  right: 20px;
  bottom: 15px;
  border-radius: 6px;
  background: var(--dark, #14181f);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
}

.hero-input-rate p {
  color: #fff;
  text-align: right;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 20px */
  letter-spacing: -0.4px;
}
.hero-input-rate span {
  font-weight: 400;
}

.hero-select {
  position: relative;
}

.hero-select.active .hero-select-selected {
  background-color: #e0e0e0;
}

.hero-select.active .hero-select-selected {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.hero-select.active .hero-select-dropdown {
  opacity: 1;
  visibility: visible;
}

.hero-select.active .hero-select-selected svg {
  transform: rotate(180deg);
}

.hero-select-selected {
  border-radius: 8px;
  background-color: #f2f2f2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
  border: none;
  padding: 18px 20px;
  width: 100%;
  transition: background-color 300ms ease;
}

.hero-select-selected svg {
  transition: transform 300ms ease;
}

.hero-select-selected span {
  color: #333;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.hero-select-dropdown {
  transition: opacity, visibility 400ms ease;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 100%;
  transform: translateY(100%);
  bottom: 0;
  z-index: 1;
}

.hero-select-dropdown-item {
  border: none;
  outline: none;
  color: #333;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  padding: 12px 16px;
  transition: background-color 300ms ease;
  background-color: #f2f2f2;
}

.hero-select-dropdown-item:nth-child(even) {
  background-color: #e0e0e0;
}

.hero-select-dropdown-item:last-child {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.hero-select-dropdown-item:hover {
  background-color: #fec93e;
}

.hero-profit-wrapper {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4px;
  flex-wrap: wrap;
}

.hero-profit-item {
  flex: 1 0 48%;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(242, 242, 242, 0.4);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 13.2px */
  text-transform: uppercase;
  padding: 4px;
  display: flex;
  gap: 2px;
}

.hero-profit-item.active {
  border-radius: 6px;
  background: #fec93e;
  color: #14181f;
}

.hero-profit-item.active span {
  color: #14181f;
}
.hero-profit-item span {
  color: #fec93e;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-calculator {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-calculator-text {
  color: rgba(242, 242, 242, 0.4);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 13.2px */
  text-transform: uppercase;
  max-width: 120px;
  flex-shrink: 0;
}

.hero-calculator-value {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-calculator-value span:first-of-type {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 20px */
}

.hero-calculator-value span:last-of-type {
  color: #fec93e;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 20px */
}

.hero-calculator-value span.hidden {
  display: none;
}

.hero-form-button {
  border-radius: 8px;
  background: #fec93e;
  color: #333;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  padding: 24px;
  border: none;
  outline: none;
  margin-top: 18px;
  transition: scale 200ms ease;
  cursor: pointer;
}

.hero-form-button:hover {
  scale: 1.1;
}

.hero-form-terms-wrapper {
  margin-top: 18px;
  display: flex;
  justify-content: start;
  align-items: flex-start;
  gap: 12px;
}

.hero-form-terms-wrapper.error .hero-form-terms-text,
.hero-form-terms-wrapper.error .hero-form-terms-text a {
  color: red;
}

.hero-form-terms-text,
.hero-form-terms-text a {
  color: rgba(242, 242, 242, 0.4);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 13.2px */
  text-transform: uppercase;
  transition: color 300ms ease;
  margin: auto 0;
}

.hero-form-terms-text a {
  text-decoration: underline;
}

.hero-form-terms-text a:hover {
  color: rgba(242, 242, 242, 0.6);
}

.hero-instruction {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  gap: 20px;
  max-width: 286px;
  width: 100%;
  column-gap: 20px;

}

@media (max-width: 560px) {
  .hero-instruction {
    max-width: 100%;
  }
}
  
.hero-instruction p {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}

.hero-instruction span:first-child {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 19.6px */
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.hero-instruction span:last-child {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  margin: auto 0;
}

.hero-image {
  pointer-events: none;
  z-index: -1;
  position: absolute;
  width: 1032px;
  height: auto;
  display: block;
  top: 190px;
  left: calc(50% + 320px);
  transform: translateX(-50%);
  animation: levitateHero 7s ease-in-out infinite;
}

@media (max-width: 768px) {
  .hero-image {
    width: 454px;
    left: 50%;
    top: 0;
    animation: none;
  }
}
  
@keyframes levitateHero {
  0% {
    transform: translateY(0) translateX(-50%);
  }
  50% {
    transform: translateY(-15px) translateX(-50%);
  }
  100% {
    transform: translateY(0) translateX(-50%);
  }
}

.premium-section {
  position: relative;
  z-index: 11;
  padding-top: 24px;
  overflow-x: hidden;
}

@media (min-width: 1024px) {
  .premium-section {
    padding-top: 133px;
  }
}

.premium-cards-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

@media (min-width: 1160px) {
  .premium-cards-list {
    flex-direction: row;
    gap: 44px;
  }
}

.premium-card-item {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  padding: 24px;
  width: 100%;
}

@media (min-width: 1024px) {
  .premium-card-item {
    min-height: 674px;
  }
}
  
.premium-card-item__title {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 8px;
}

.premium-card-item__validity {
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  width: fit-content;
}

.premium-card-item__benefits {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
  list-style: none;
  margin-bottom: auto;
}

.premium-card-item__benefit {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.premium-card-item__benefit-title {
  color: var(--color-yellow);
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
}

.premium-card-item__benefit-description {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 400;
  line-height: 100%;
}

.premium-card-item--iron {
  background: radial-gradient(
      112.46% 100% at 100% 0%,
      #00a79c 0%,
      rgba(14, 20, 31, 0) 100%
    ),
    rgba(0, 167, 156, 0.05);
}

.premium-card-item--platinum {
  background: radial-gradient(
      112.46% 100% at 100% 0%,
      #e93208 0%,
      rgba(14, 20, 31, 0) 100%
    ),
    rgba(233, 50, 8, 0.05);
}

.premium-card-item--gold {
  background: radial-gradient(
      112.46% 100% at 100% 0%,
      #fec93e 0%,
      rgba(14, 20, 31, 0) 100%
    ),
    rgba(254, 201, 62, 0.05);
}

.premium-card-item__validity--green {
  background: #00a79c;
}
.premium-card-item__validity--red {
  background: #e93208;
}
.premium-card-item__validity--yellow {
  background: #d69f11;
}

.premium-section__button {
  margin-top: 32px;
  width: fit-content;
}

.premium-card-item__image {
  position: absolute;
}

.premium-card-item__image--iron {
  top: -23px;
  right: -26px;
  width: 154px;
  height: 166px;
}

@media (min-width: 1160px) {
  .premium-card-item__image--iron {
    top: -12px;
    right: -40px;
  }
}

.premium-card-item__image--platinum {
  top: -9px;
  right: -18px;
  width: 158px;
  height: 161px;
}
@media (min-width: 1160px) {
  .premium-card-item__image--platinum {
    top: -15px;
    right: -23px;
  }
}
  
.premium-card-item__image--gold {
  top: -10px;
  right: -30px;
  width: 160px;
  height: 156px;
}

.cases-section {
  position: relative;
  z-index: 11;
  padding-top: 24px;
}  
@media (min-width: 768px) {
  .cases-section {
    padding-top: 48px;
  }
}

.cases-list {
  margin-top: 24px;
  gap: 8px;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .cases-list {
    grid-template-columns: repeat(auto-fit, minmax(min(202px, 100%), 1fr));
    gap: 24px;
  }
}

.cases-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 0;
}  
@media (max-width: 768px) {
  .cases-item {
    padding: 0 4px 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    gap: 8px;
  }
}

.cases-item__title {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .cases-item__title br {
    display: none;
  }
}
  
.cases-item__button {
  cursor: pointer;
  outline: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #f1f1f1;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  width: 100%;
  transition: scale 0.4s ease;
}

.cases-item__button:active {
  scale: 0.9;
}

.cases-item__button:focus-visible {
  box-shadow: 0 0 0 3px var(--color-yellow);
}

.cases-item__image {
  width: 172px;
  height: 172px;
}

.cases-section__button {
  width: 100%;
}

.cases-modal {
  position: fixed;
  inset: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  opacity: 1;
  visibility: visible;
  background: radial-gradient(
    63.33% 112.07% at 50% 17.83%,
    #252f41 0%,
    #0e141f 100%
  );
  transition: opacity 0.4s ease, visibility 0.4s ease, z-index 0.4s ease;
  padding: 80px 0;
  overflow-y: auto;
}

.cases-modal.hidden {
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}

.cases-modal__button,
.donate-modal__button {
  position: absolute;
  top: 18px;
  right: 24px;
}

@media (min-width: 1024px) {
  .cases-modal__button,
  .donate-modal__button {
    top: 40px;
    right: 40px;
  }
}

.case-modal-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 4px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .case-modal-header {
    flex-direction: row;
    padding-bottom: 40px;
  }
}
  
.case-modal-header__content {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .case-modal-header__content {
    align-items: center;
  }
}

.case-modal-header__image {
  width: 94px;
  height: 94px;
}

.case-modal-header__text,
.case-modal-header__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 110%;
}

@media (min-width: 768px) {
  .case-modal-header__text,
  .case-modal-header__title {
    font-size: 24px;
  }
}

.case-modal-header__text {
  color: var(--color-white);
}

.case-modal-header__title {
  color: var(--color-yellow);
}

.case-modal-list {
  padding-top: 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .case-modal-list {
    padding-top: 40px;
    gap: 24px;
  }
}

.case-modal-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 120px;
  overflow: hidden;
}

.case-modal-item__image-wrapper {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4;
  position: relative;
}

.case-modal-item__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.case-modal-item__title {
  color: var(--color-white);
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
}

.cars-section {
  position: relative;
  z-index: 10;
  padding-top: 240px;
}

@media (min-width: 1024px) {
  .cars-section {
    padding-top: 48px;
  }
}
  
.cars-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 500px;
  gap: 12px;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 24px;
  overflow-x: auto;
  margin: 0 -10px;
  padding: 24px 10px 0;

}

/* width */
.cars-list::-webkit-scrollbar {
  height: 7px;
  border-radius: 8px;
}

.cars-list::-webkit-scrollbar-track {
  background-color: transparent;
  transition: background-color 300ms ease;
  border-radius: 8px;
}

/* Handle */
.cars-list::-webkit-scrollbar-thumb {
  background-color: transparent;
  transition: background-color 300ms ease;
  border-radius: 8px;
}

@media (min-width: 1024px) {
  .cars-list {
    gap: 24px;
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
    margin: 0;
  }

  /* Track */
  .cars-list:hover::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.2);
  }

  /* Handle */
  .cars-list:hover::-webkit-scrollbar-thumb {
    background: #fec93e;
  }
}
  
.cars-item {
  width: 245px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 52.2%,
    rgba(255, 255, 255, 0.1) 100%
  );
}

.cars-item:hover .cars-section__button {
  visibility: visible;
  opacity: 1;
}

.cases-item__image-wrapper {
  width: 100%;
  height: auto;
  aspect-ratio: 4/2;
  position: relative;
}

.cars-item-title {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 112%; /* 17.92px */
  letter-spacing: 1.28px;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  z-index: 1;
  text-align: center;
  padding: 0 10px;
}

.cars-item__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cars-item__icon {
  width: 14px;
  height: 14px;
}

.cars-item__text {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 4px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
}

.cars-section__button {
  position: absolute;
  z-index: 1;
  bottom: 11px;
  left: 15px;
  right: 15px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  justify-content: center;
}

.coins-left {
  position: absolute;
  z-index: -1;
  display: block;
  left: 50%;
  top: -110px;
  width: 816px;
  transform: translateX(-50%);
  pointer-events: none;

}

@media (min-width: 1024px) {
  .coins-left {
    left: calc(50% - 920px);
    top: -1423px;
    width: 2210px;
    animation: levitateCars 4s ease-in-out infinite;
  }
}
  
@keyframes levitateCars {
  0% {
    transform: translateY(0) translateX(-50%);
  }
  50% {
    transform: translateY(-12px) translateX(-50%);
  }
  100% {
    transform: translateY(0) translateX(-50%);
  }
}

.clothes-section {
  position: relative;
  z-index: 9;
  padding-top: 284px;
  padding-bottom: 100px;

}

@media (min-width: 1024px) {
  .clothes-section {
    padding-top: 48px;
  }
}
  
.clothes-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 24px;
  overflow-x: auto;
  margin: 0 -10px;
  padding: 24px 10px 0;
}

/* width */
.clothes-list::-webkit-scrollbar {
  height: 7px;
  border-radius: 8px;
}

.clothes-list::-webkit-scrollbar-track {
  background-color: transparent;
  transition: background-color 300ms ease;
  border-radius: 8px;
}

/* Handle */
.clothes-list::-webkit-scrollbar-thumb {
  background-color: transparent;
  transition: background-color 300ms ease;
  border-radius: 8px;
}
  
@media (min-width: 1024px) {
  .clothes-list {
    gap: 24px;
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
    margin: 0;
  }
  
  /* Track */
  .clothes-list:hover::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.2);
  }

  /* Handle */
  .clothes-list:hover::-webkit-scrollbar-thumb {
    background: #fec93e;
  }
}
  
.clothes-list--col-1 {
  max-height: 250px;
}

.clothes-list--col-2 {
  max-height: 500px;
}

.clothes-item {
  width: 245px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 52.2%,
    rgba(255, 255, 255, 0.1) 100%
  );
}

.clothes-item:last-child {
  margin-right: auto;
}

.clothes-item:hover .clothes-section__button {
  visibility: visible;
  opacity: 1;
}

.clothes-item__image-wrapper {
  width: 100%;
  height: auto;
  aspect-ratio: 4/2;
  position: relative;
}

.clothes-item__image-wrapper--blue {
  background-color: #2d5ac3;
}

.clothes-item__image-wrapper--green {
  background-color: #2dc372;
}

.clothes-item__image-wrapper--red {
  background-color: #c33f2d;
}

.clothes-item__image-wrapper--purple {
  background-color: #6f2dc3;
}

.clothes-item__image-wrapper--light-purple {
  background-color: #859cd0;
}

.clothes-item__image-wrapper--light-blue {
  background-color: #2d9fc3;
}

.clothes-item__image-wrapper--yellow {
  background-color: #c3ab2d;
}

.clothes-item__image-wrapper--grey {
  background-color: #2e323c;
}

.clothes-item__image {
  position: absolute;
  width: 90%;
  height: 90%;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  object-fit: contain;
  display: block;
}

.clothes-item__icon {
  width: 14px;
  height: 14px;
}

.clothes-item__text {
  padding: 12px 16px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
}

.clothes-section__button {
  position: absolute;
  z-index: 1;
  bottom: 10px;
  left: 15px;
  right: 15px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  justify-content: center;
}

.coins-right {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: -140px;
  width: 816px;
  transform: translateX(-50%) rotate(90deg) scale(1, -1);
  display: block;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .coins-right {
    left: auto;
    right: calc(50% - 930px);
    top: -1030px;
    width: 2210px;
    animation: levitate 5s ease-in-out infinite;
  }
}
  
@keyframes levitate {
  0% {
    transform: translateY(0) translateX(+50%);
  }
  50% {
    transform: translateY(-10px) translateX(+50%);
  }
  100% {
    transform: translateY(0) translateX(+50%);
  }
}

.donate-modal {
  overflow-x: auto;
  position: fixed;
  inset: 0;
  height: 100%;
  width: 100%;
  background-color: #0e141f;
  background-image: url(./img/main-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  padding: calc(44px + 18px + 24px) 10px 10px;
}

@media (min-width: 1024px) {
  .donate-modal {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
  
.donate-modal.active {
  opacity: 1;
  visibility: visible;
  z-index: 100;
}

.donate-modal-container {
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  width: fit-content;
  border-radius: 12px;
  background: radial-gradient(
    115.1% 166.47% at 25.21% 0%,
    #253044 0%,
    #222731 100%
  );
}

@media (min-width: 1024px) {
  .donate-modal-container {
    flex-direction: row;
  }
}
  
.donate-modal-left-wrapper {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
  .donate-modal-left-wrapper {
    border-right: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
  }
}
  
.donate-modal-content {
  display: flex;
  margin-bottom: 24px;
  gap: 10px;

}

@media (min-width: 1024px) { 
  .donate-modal-content {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
  
.donate-modal-titles {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (min-width: 1024px) {
  .donate-modal-titles {
    gap: 15px;
  }
}
  
.donate-modal-left,
.donate-modal-right {
  padding: 32px;
}

@media (min-width: 1024px) {
  .donate-modal-left,
  .donate-modal-right {
    padding: 44px;
  }
}

.donate-modal-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.donate-modal-text {
  position: relative;
  text-align: center;

  & span:first-child {
    font-size: 24px;
  }
}

.donate-modal-text:after {
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 24px;
  background-color: var(--color-yellow);
}

.donate-modal-title {
  color: var(--color-white);
  font-size: 32px;
  font-weight: 700;
  line-height: 110%;
  text-align: left;
}

@media (min-width: 1024px) {
  .donate-modal-title {
    font-size: 44px;
    text-align: center;
  }
}
  
.donate-modal-subtitle {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.92px;
  text-transform: uppercase;
  opacity: 0.5;
  text-align: left;

}

@media (min-width: 1024px) {
  .donate-modal-subtitle {
    font-size: 16px;
    text-align: center;
  }
}
  
.donate-modal-card {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  min-width: 268px;

  &:after {
    content: "";
    display: block;
    opacity: 0.2;
    background: #fff;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    flex: 1 0 0;
  }

  &:not(:first-of-type) {
    margin-top: 4px;
  }
}

.donate-modal-card__text {
  color: var(--color-white);
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  opacity: 0.5;
}

.donate-modal-card__title {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  order: 1;
}

.donate-modal-card--price {
  background: rgba(39, 174, 96, 0.24);

  &::after {
    background-color: #27ae60;
  }
}

.donate-modal-card__text--price {
  color: #27ae60;
}

.donate-modal-card__title--price {
  color: #27ae60;
}

.donate-modal-right__title {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.92px;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.5;
}

.donate-modal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 268px;
}

.donate-modal-item {
  cursor: pointer;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 84242px;
  height: 100px;
  border-radius: 6px;
  background-color: var(--color-white);
  opacity: 0.7;
  transition: box-shadow 0.4s ease, opacity 0.4s ease;
}

@media (hover: hover) {
  .donate-modal-item:hover {
    box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.25);
    opacity: 1;
  }
}

.donate-modal-item__icon {
  height: 32px;
}

footer {
  z-index: 20;
  position: relative;
  margin-top: 9.27083333vw;
  background: url(./img/bg-footer.png) no-repeat center center;
  background-size: cover;
  padding-bottom: 4.89583vw;
  height: 32.65625vw;
  min-height: 500px;
}

.footer-wrapper {
  height: 100%;
}

.footer-wrapper .main-width {
  height: 100%;
}

.soc-net-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  height: 14.79166667vw;
  min-height: 200px;
}

.soc-net-item {
  width: 14.79166667vw;
  min-width: 200px;
  height: 100%;
  padding: 2.083vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 0.833335vw;
  transition: all 0.33s ease-in-out;
  -webkit-transition: all 0.33s ease-in-out;
  -moz-transition: all 0.33s ease-in-out;
}

.soc-net-item:hover {
  transform: translateY(-0.78125vw);
}

.soc-net-item:last-of-type {
  margin-right: 0;
}

.soc-net-item .p-title span {
  display: block;
}

.soc-net-item .downline {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.soc-net-item .downline > span[class^="icon"] {
  width: 1.66666667vw;
  height: 1.875vw;
  min-width: 32px;
  min-height: 36px;
  background-repeat: no-repeat;
  background-size: contain;
  background-repeat: no-repeat;
  filter: invert(1);
}

.soc-net-item .downline .mount-user {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.soc-net-item .downline .mount-user > .icon-players {
  opacity: 0.4;
}

.soc-net-discord {
  background-color: #7289da;
}

.soc-net-vk {
  background-color: #5aa6ec;
}

.menu-footer-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.menu-footer-wrapper .p-descr {
  margin-top: 2.083vw;
}

ul.menu-footer-wrap li {
  position: relative;
  margin-bottom: 0.5vw;
  padding-left: 2.291665vw;
  transition: all 0.33s ease-in-out;
  line-height: 1.4;
}

ul.menu-footer-wrap li a {
  font-size: 16px;
  transition: all 0.33s ease-in-out;
}

ul.menu-footer-wrap li a:hover {
  color: #fec93e;
}

ul.menu-footer-wrap li::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.25vw;
  height: 0.10416667vw;
  min-height: 2px;
  min-width: 24px;
  background-color: #bdbdbd;
  transition: all 0.33s ease-in-out;
  -webkit-transition: all 0.33s ease-in-out;
  -moz-transition: all 0.33s ease-in-out;
}

@media (max-width: 998px) {
  ul.menu-footer-wrap li::after {
    display: none;
  }
}

ul.menu-footer-wrap li:last-of-type {
  margin-bottom: 0;
}

.main-width {
  position: relative;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 61.66666667vw;
  min-width: 1044px;
}

.br8 {
  border-radius: 0.41666667vw;
}

@media (max-width: 1920px) {
  .br8 {
    border-radius: 8px;
  }
}

.icon-ds {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='27' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.518 11.326c-.782 0-1.4.675-1.4 1.499 0 .824.632 1.498 1.4 1.498.781 0 1.399-.675 1.399-1.498.013-.823-.618-1.498-1.4-1.498Zm5.005 0c-.781 0-1.398.675-1.398 1.499 0 .824.63 1.498 1.398 1.498.782 0 1.4-.675 1.4-1.498s-.618-1.498-1.4-1.498Z' fill='%23000'/%3E%3Cpath d='M21.189 0H2.81C1.261 0 0 1.242 0 2.781v18.252c0 1.539 1.262 2.781 2.811 2.781h15.552l-.726-2.497 1.755 1.606 1.66 1.512L24 27V2.781C24 1.242 22.738 0 21.189 0Zm-5.294 17.631s-.494-.58-.905-1.093c1.796-.5 2.482-1.607 2.482-1.607a7.896 7.896 0 0 1-1.577.796 9.136 9.136 0 0 1-1.989.581 9.757 9.757 0 0 1-3.552-.014 11.65 11.65 0 0 1-2.016-.58 8.097 8.097 0 0 1-1-.459c-.042-.027-.083-.04-.124-.068a.19.19 0 0 1-.055-.04c-.247-.135-.384-.23-.384-.23s.658 1.08 2.4 1.594c-.412.512-.919 1.12-.919 1.12-3.03-.095-4.183-2.052-4.183-2.052 0-4.347 1.975-7.87 1.975-7.87C8.023 6.25 9.902 6.29 9.902 6.29l.137.162c-2.469.702-3.607 1.769-3.607 1.769s.302-.162.81-.392c1.467-.635 2.632-.81 3.112-.85.083-.014.151-.028.233-.028a11.787 11.787 0 0 1 2.77-.026c1.304.148 2.702.526 4.129 1.296 0 0-1.084-1.013-3.415-1.715l.192-.216s1.879-.04 3.854 1.417c0 0 1.974 3.524 1.974 7.871 0 0-1.165 1.957-4.196 2.052Z' fill='%23000'/%3E%3C/svg%3E");
}

.icon-players {
  width: 1.25vw;
  height: 1.25vw;
  min-width: 20px;
  min-height: 20px;
  margin-right: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.535 12.812H18.68c.19.518.293 1.077.293 1.66v7.014c0 .243-.042.476-.12.693h3.07A2.081 2.081 0 0 0 24 20.101v-3.825a3.468 3.468 0 0 0-3.465-3.464ZM5.028 14.472c0-.583.103-1.142.293-1.66H3.465A3.468 3.468 0 0 0 0 16.276v3.825c0 1.146.932 2.078 2.079 2.078h3.068a2.07 2.07 0 0 1-.119-.693v-7.014ZM14.122 11.007H9.878a3.468 3.468 0 0 0-3.464 3.465v7.014c0 .383.31.693.693.693h9.786c.383 0 .693-.31.693-.693v-7.014a3.468 3.468 0 0 0-3.464-3.465ZM12 1.82a4.171 4.171 0 0 0-4.167 4.167A4.17 4.17 0 0 0 12 10.154a4.17 4.17 0 0 0 4.167-4.167A4.171 4.171 0 0 0 12 1.821ZM4.684 5.704A3.12 3.12 0 0 0 1.568 8.82a3.12 3.12 0 0 0 4.344 2.864 3.135 3.135 0 0 0 1.521-1.4c.234-.437.367-.935.367-1.464a3.12 3.12 0 0 0-3.116-3.116ZM19.316 5.704A3.12 3.12 0 0 0 16.2 8.82c0 .53.133 1.027.367 1.464.332.622.87 1.12 1.521 1.4a3.12 3.12 0 0 0 4.344-2.863 3.12 3.12 0 0 0-3.116-3.117Z' fill='%23fff'/%3E%3C/svg%3E");
  background-size: contain;
}

.flydet.flydet-mans-footer {
  width: 53.59375vw;
  height: 46.77083333vw;
  bottom: 0;
  right: 3.75vw;
  background: url(./img/flydet-mans-footer.png)
    no-repeat center center;
  background-image: -webkit-image-set(
    url("./img/flydet-mans-footer.png") 1x
  );
  background-image: image-set(
    url("./img/flydet-mans-footer.png") 1x
  );
  background-size: cover;
  z-index: 2;
}

.flydet {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 1440px) {
  .p-24px {
    font-size: 18px;
  }
}

.fff-04 {
  color: rgba(255, 255, 255, 0.4);
}

.menu-footer-wrapper .p-descr {
  margin-top: 2.083vw;
}

@media (max-width: 1920px) {
  ul.menu-footer-wrap li {
    padding-left: 44px;
  }
}
@media (max-width: 1920px) {
  ul.menu-footer-wrap li {
    margin-bottom: 15px;
  }
}
.fw400 {
  font-weight: 400;
}

@media (max-width: 1184px) {
  .main-width {
    max-width: 90%;
    min-width: 90%;
  }
}

@media (max-width: 997px) {
  .soc-net-wrap {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 997px) {
  .flydet {
    display: none;
  }
}
.lh150 {
  line-height: 1.5;
}

@media (max-width: 997px) {
  .menu-footer-wrap {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 997px) {
  ul.menu-footer-wrap li {
    display: block;
    padding-left: 0;
  }
}

@media (max-width: 997px) {
  .menu-footer-wrapper .p-descr {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 510px) {
  .soc-net-wrap {
    flex-direction: column;
    height: auto;
    min-height: 200px;
  }
}

@media (max-width: 510px) {
  .soc-net-item:last-of-type {
    margin-bottom: 0;
  }
}
@media (max-width: 510px) {
  .soc-net-item {
    min-width: 90vw;
    width: 100%;
    margin-right: 0;
    min-height: 200px;
    margin-bottom: 16px;
  }
}
@media (max-width: 510px) {
  .soc-net-item .p-title {
    text-align: center;
  }
}

@media (max-width: 510px) {
  .soc-net-item .downline {
    flex-direction: column;
  }
}
@media (max-width: 960px) {
  .soc-net-item {
    padding: 20px;
  }
}
@media (max-width: 510px) {
  .soc-net-item .downline .mount-user {
    margin-top: 16px;
  }
}
.p-24px {
  font-size: 1.25vw;
}

@media (max-width: 1440px) {
  .p-24px {
    font-size: 18px;
  }
}

.footer-payment-methods {
  margin: 2.083vw auto 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (min-width: 1024px) {
  .footer-payment-methods {
    margin: 2.083vw 0 0;
  }
}