:root {
  --primary-btn-bg: #e75d6c;
  --primary-text: #e75d6c;
}

.apply-btn {
  background-color: var(--primary-btn-bg);
  color: #d9d9d9;
  font-size: 1.5rem;
  font-weight: 500;
  border-radius: 15px;
  padding: 6px 30px;
  border: none;
  transition: 0.2s;
  position: relative;
  overflow: hidden;
}
@media (min-width: 500px) and (max-width: 719px) {
  .apply-btn {
    font-size: inherit;
  }
}
@media (max-width: 605px) {
  .apply-btn {
    font-size: inherit;
  }
}
.apply-btn:hover {
  background-color: #cc4956;
  box-shadow: 0px 0px 8px 4px rgba(204, 73, 86, 0.2);
}
.apply-btn.white {
  background-color: white;
  color: #cc4956;
}
.apply-btn.white:hover {
  box-shadow: 0px 0px 8px 4px rgba(255, 255, 255, 0.2);
  background-color: rgb(236, 236, 236);
}
.apply-btn.outline {
  background-color: transparent;
  color: #d9d9d9;
  border: 1px solid #747474;
}
.apply-btn.outline:hover {
  box-shadow: none;
  background-color: #d9d9d9;
  color: black;
}

.btn-icon {
  border-radius: 100%;
  width: 48px;
  height: 48px;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  border: none;
}
.btn-icon svg {
  height: 24px;
  width: 24px;
}
.btn-icon.telegram {
  background: #229ed9;
  --bs-btn-active-bg: #1677a3;
}
.btn-icon.telegram:hover {
  background: #1677a3;
  color: white;
}
.btn-icon.whatsapp {
  background: #25d366;
  --bs-btn-active-bg: #188f44;
}
.btn-icon.whatsapp:hover {
  background: #188f44;
  color: white;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.header .header-top {
  width: 100%;
  padding: 15px 80px;
  transition: 0.2s;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  scrollbar-gutter: stable;
}
.header .header-top .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  max-width: 1745px;
}
@media (max-width: 1400px) {
  .header .header-top .wrapper {
    padding: 0 20px;
  }
}
@media (max-width: 843px) {
  .header .header-top .wrapper {
    padding: 0;
  }
  .header .header-top .wrapper button {
    padding: 3px 30px;
  }
  .header .header-top .wrapper .header-title-block {
    line-height: 24px;
  }
}
@media (max-width: 840px) {
  .header .header-logo {
    height: 40px;
  }
}
.header .header-left {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header .header-title-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.header .header-title {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}
.header .header-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  opacity: 0.5;
}
.header .header-divider {
  width: 1px;
  height: 67px;
  background: rgba(217, 217, 217, 0.2);
  opacity: 0.5;
}
.header .header-support {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  opacity: 0.5;
  max-lines: 2;
  white-space: nowrap;
}
.header .header-support span {
  display: block;
}
.header .header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header .header-phone-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
.header .header-phone {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}
.header .header-phone-sub {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  opacity: 0.5;
  text-align: right;
}
.header .header-nav {
  padding: 10px 80px;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  scrollbar-gutter: stable;
}
.header .header-nav .wrapper {
  width: 100%;
  max-width: 1745px;
  margin: 0 auto;
}
.header .header-nav .wrapper nav {
  display: flex;
  gap: 53px;
  overflow-y: scroll;
  transition: 0.3s;
  white-space: nowrap;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
.header .header-nav .wrapper nav::-webkit-scrollbar {
  height: 0;
}
.header .header-nav .wrapper nav a {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}
.header .header-nav .wrapper nav a:hover {
  opacity: 0.8;
}
@media (max-width: 1400px) {
  .header .header-nav .wrapper nav {
    padding: 0 20px;
  }
}
@media (max-width: 923px) {
  .header .header-nav .wrapper nav {
    gap: 40px;
  }
}
.header .burger {
  display: none;
}
@keyframes visible {
  from {
    display: none;
  }
  to {
    display: block;
  }
}
@media (max-width: 840px) {
  .header .header-nav nav {
    flex-direction: column;
    display: flex;
  }
  .header .header-nav nav a {
    font-size: 30px;
    text-align: center;
  }
  .header .header-nav {
    animation: 0.3s linear 0s infinite alternate visible;
  }
  .header .header-nav[aria-hidden=true],
  .header .header-nav[aria-hidden=false] {
    transition: 0.3s opacity, 0.3s margin-top;
  }
  .header .header-nav[aria-hidden=true] {
    opacity: 0 !important;
    visibility: hidden;
    pointer-events: none;
    height: 0px;
    font-size: 0px;
    margin-top: -20px;
    -webkit-backdrop-filter: none !important;
            backdrop-filter: none !important;
  }
  .header .header-nav[aria-hidden=false] {
    padding: 10px 20px;
    gap: 20px;
    height: calc(100vh - 60px);
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(1) !important;
            backdrop-filter: blur(1) !important;
    opacity: 1 !important;
    pointer-events: all;
  }
  .header .header-left {
    gap: 10px;
  }
  .header .burger {
    display: block;
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: relative;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
  }
  .header .burger {
    width: 40px;
    height: 40px;
    padding: 0 !important;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  .header .burger svg {
    width: 40px;
    height: 40px;
    fill: #fff;
  }
  .header .burger svg g {
    opacity: 0;
    transform: scale(0.8) rotate(0deg);
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform-origin: center;
  }
  .header .burger svg .closed {
    opacity: 1;
  }
  .header .burger[aria-expanded=true] .closed {
    opacity: 0;
    transform: scale(0.8) rotate(-90deg);
  }
  .header .burger[aria-expanded=true] .opened {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  .header .burger[aria-expanded=false] .opened {
    opacity: 0;
    transform: scale(0.8) rotate(-90deg);
  }
  .header .burger[aria-expanded=false] .closed {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
@media (max-width: 1436px) {
  .header .header-phone-sub span {
    display: none;
  }
}
@media (max-width: 840px) {
  .header .header-phone-block {
    display: none;
  }
}
@media (min-width: 1230px) and (max-width: 1407px) {
  .header .header-top,
  .header .header-nav {
    padding: 10px 20px;
  }
}
@media (min-width: 720px) and (max-width: 1229px) {
  .header .header-top,
  .header .header-nav {
    padding: 10px 20px;
  }
  .header .header-support,
  .header .header-divider {
    display: none;
  }
}
@media (min-width: 500px) and (max-width: 719px) {
  .header .header-top,
  .header .header-nav {
    padding: 10px 20px;
  }
  .header .header-support,
  .header .header-divider {
    display: none;
  }
  .header .header-phone-block {
    display: none;
  }
}
@media (max-width: 605px) {
  .header .header-top,
  .header .header-nav {
    padding: 10px 20px;
  }
  .header .header-support,
  .header .header-divider {
    display: none;
  }
  .header .header-phone-block {
    display: none;
  }
}
@media (max-width: 522px) {
  .header .header-title {
    font-size: 18px;
  }
}
@media (max-width: 472px) {
  .header .header-support,
  .header .header-divider,
  .header .header-title-block {
    display: none;
  }
}

footer {
  background: #1c1c1c;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: rgba(255, 255, 255, 0.5);
  padding: 60px;
}
@media (max-width: 1407px) {
  footer {
    padding: 60px 20px;
  }
}
footer .wrapper {
  display: flex;
  width: 100%;
  max-width: 1745px;
  margin: 0 auto;
}
@media (max-width: 1300px) {
  footer .wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
  }
}
footer .wrapper .footer-left,
footer .wrapper .footer-right {
  width: 50%;
}
@media (max-width: 1300px) {
  footer .wrapper .footer-left,
  footer .wrapper .footer-right {
    width: 100%;
  }
}
footer .wrapper .footer-left .footer-phone {
  display: flex;
  align-items: center;
  gap: 23px;
}
@media (max-width: 1300px) {
  footer .wrapper .footer-left .footer-phone {
    justify-content: center;
  }
}
@media (max-width: 670px) {
  footer .wrapper .footer-left .footer-phone {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
footer .wrapper .footer-left .footer-phone__number {
  font-style: normal;
  font-weight: 500;
  font-size: 60px;
  line-height: 73px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
@media (max-width: 670px) {
  footer .wrapper .footer-left .footer-phone__number {
    font-size: 40px;
    line-height: normal;
  }
}
footer .wrapper .footer-left .footer-phone__number:hover {
  color: var(--primary-btn-bg);
  transition: 0.3s;
}
footer .wrapper .footer-left .footer-phone .footer-social {
  display: flex;
  gap: 23px;
}
footer .wrapper .footer-left .footer-phone .footer-social__button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  gap: 10px;
  width: 60px;
  height: 60px;
  background: #222222;
  border-radius: 100px;
  color: #fff;
  transition: 0.3s;
}
footer .wrapper .footer-left .footer-phone .footer-social__button:hover {
  background: var(--primary-btn-bg);
  transition: 0.3s;
}
footer .wrapper .footer-text {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
}
footer .wrapper .footer-text:first-child {
  margin-bottom: 20px;
}
@media (max-width: 1300px) {
  footer .wrapper .footer-text {
    text-align: center;
  }
}

.nav-buttons {
  position: absolute;
  bottom: 0;
  right: 0;
  width: auto;
  height: auto;
  display: flex;
  gap: 10px;
  z-index: 2;
  padding: 150px 80px;
  padding-bottom: 50px;
}
@media (max-width: 840px) {
  .nav-buttons {
    left: 0;
    justify-content: center;
  }
}
.nav-buttons .swiper-next:after,
.nav-buttons .swiper-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.nav-buttons .swiper-prev:after,
.nav-buttons .swiper-rtl .swiper-next:after {
  content: "prev";
}
.nav-buttons .swiper-next:after,
.nav-buttons .swiper-rtl .swiper-prev:after {
  content: "next";
}
.nav-buttons .custom-nav {
  width: 40px;
  height: 40px;
  background-color: black;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.nav-buttons .swiper-prev::after,
.nav-buttons .swiper-next::after {
  font-size: 16px;
  color: white;
}

.slider-main .slider {
  position: relative;
  width: 100%;
  min-height: 848px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  background: #15100f;
  overflow: hidden;
  padding: 217px 80px 50px;
}
@media (min-width: 1230px) and (max-width: 1407px) {
  .slider-main .slider {
    padding: 150px 20px 50px;
  }
}
@media (min-width: 720px) and (max-width: 1229px) {
  .slider-main .slider {
    padding: 150px 20px 100px;
  }
}
@media (min-width: 500px) and (max-width: 719px) {
  .slider-main .slider {
    padding: 150px 10px 100px;
  }
}
@media (max-width: 500px) {
  .slider-main .slider {
    padding: 150px 10px 100px;
  }
}
.slider-main .slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(201deg, #2b1b1e 0%, rgba(43, 27, 30, 0) 100%), linear-gradient(157deg, #2b1b1e 0%, rgba(43, 27, 30, 0) 100%);
  z-index: 0;
}
.slider-main .slider .slider-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

section {
  padding: 80px 60px;
}
section.bg-stan {
  background-color: #2a2a2a;
}
@media (max-width: 500px) {
  section {
    padding: 80px 20px;
  }
}

.modal .modal-dialog {
  max-width: 900px;
}
.modal .modal-dialog .modal-content {
  background: #141414;
  border-radius: 20px;
}
.modal .modal-dialog .modal-content #inputResult {
  overflow-y: auto;
  overflow-x: hidden;
  height: 50vh;
}
.modal .modal-dialog .modal-content .modal-header,
.modal .modal-dialog .modal-content .modal-footer,
.modal .modal-dialog .modal-content .modal-body {
  border: none !important;
  padding: 20px 30px;
}
.modal .modal-dialog .modal-content .modal-header h3 {
  font-weight: 500;
  font-size: 35px;
  text-transform: uppercase;
  color: #ffffff;
}
@media (max-width: 1300px) {
  .modal .modal-dialog .modal-content .modal-header h3 {
    width: 100%;
  }
}
@media (max-width: 582px) {
  .modal .modal-dialog .modal-content .modal-header h3 {
    text-align: center;
  }
}
.modal .modal-dialog .modal-content .modal-header h3 small {
  display: block;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  text-transform: none;
  color: rgba(255, 255, 255, 0.5);
}
.modal .modal-dialog .modal-content .modal-body {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  color: rgba(255, 255, 255, 0.5);
}
.modal .modal-dialog .modal-content .modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-info {
  position: relative;
  color: white;
  text-align: center;
  padding: 80px 20px;
  background-color: #2a2a2a;
}
.payment-info .payment-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
@media (min-width: 1068px) {
  .payment-info .payment-cards {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 60px;
  }
}
.payment-info .payment-cards .payment-card {
  width: 330px;
  min-height: 135px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (min-width: 1068px) {
  .payment-info .payment-cards .payment-card {
    width: 411px;
    height: 237px;
    gap: 20px;
    justify-content: start;
  }
}
@media (max-width: 1067px) {
  .payment-info .payment-cards .payment-card {
    justify-content: start;
    gap: 10px;
  }
}
.payment-info .payment-cards .payment-card__amount {
  font-size: 45px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
.payment-info .payment-cards .payment-card__desc {
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  overflow-wrap: anywhere;
}
@media (min-width: 1068px) {
  .payment-info .payment-cards .payment-card:not(:first-child)::before {
    content: "+";
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translate(-50%, -50%);
    font-weight: 500;
    font-size: 64px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    opacity: 0.5;
    pointer-events: none;
    z-index: 2;
  }
}
.payment-info .credit-info {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.payment-info .credit-info__text {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
.payment-info .credit-info__text.faded {
  opacity: 0.5;
}
.payment-info .credit-info__text.strong {
  font-weight: 700;
}
.payment-info .credit-info__icon {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.slider-main {
  position: relative;
  padding: 0;
  background: #15100f;
}
.slider-main::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -24px;
  left: 0;
  background-image: url(../images/slider_bottom.png);
  background-size: contain;
  background-repeat: repeat-x;
  z-index: 1;
  height: 50px;
}
.slider-main .slider-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
  padding: 0px 10px;
  max-width: 1745px;
  margin: 0 auto;
}
.slider-main .slider-content .text-block {
  display: flex;
  flex-direction: column;
  gap: 52px;
}
.slider-main .slider-content .text-block h1 {
  font-size: 48px;
  font-weight: 500;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.5) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  max-width: 847px;
}
@media (max-width: 840px) {
  .slider-main .slider-content .text-block h1 {
    font-size: 32px;
    text-align: center;
  }
}
.slider-main .slider-content .text-block .guarantees h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
}
.slider-main .slider-content .text-block .guarantees ul {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  padding: 0;
  list-style: none;
}
@media (max-width: 1407px) {
  .slider-main .slider-content .text-block .guarantees ul {
    flex-direction: column;
  }
}
.slider-main .slider-content .text-block .guarantees ul li {
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.slider-main .slider-content .text-block .guarantees ul li > span {
  display: block;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
}
@media (max-width: 1430px) {
  .slider-main .slider-content .text-block .guarantees ul li > span {
    padding-left: 22px;
  }
  .slider-main .slider-content .text-block .guarantees ul li > span::before {
    content: "";
    width: 12px;
    height: 12px;
    background: #d9d9d9;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 15px;
  }
}
.slider-main .slider-content .text-block .guarantees ul li > div {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 488px;
}
.slider-main .slider-content .text-block .guarantees ul li .card-li {
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  border-radius: 10px;
  min-height: 145px;
  line-height: 1;
}
@media (min-width: 841px) {
  .slider-main .slider-content .text-block .guarantees ul li .card-li {
    min-width: 391px;
  }
}
@media (max-width: 840px) {
  .slider-main .slider-content .text-block .guarantees ul li .card-li {
    width: 100%;
    min-width: 291px;
  }
}
@media (max-width: 1407px) {
  .slider-main .slider-content .text-block .guarantees ul li .card-li.mobile-none {
    display: none;
  }
}
.slider-main .slider-content .text-block .guarantees ul li .card-li span {
  font-size: 18px;
  font-weight: 500;
  color: white;
  word-wrap: break-word;
}
.slider-main .slider-content .text-block .guarantees ul li .card-li span span {
  white-space: nowrap;
}
.slider-main .slider-content .text-block .guarantees ul li .card-li .city {
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  color: #fff;
}
.slider-main .slider-content .text-block .guarantees ul li .card-li .money {
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: #fff;
}
.slider-main .slider-content .text-block .guarantees ul li .card-li .monthly-note {
  opacity: 0.5;
}
.slider-main .slider-content .bottom-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (max-width: 840px) {
  .slider-main .slider-content .bottom-block {
    justify-content: center;
  }
}

.time-line {
  position: relative;
  padding: 0;
}
.time-line .timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding: 20px 10px;
  border-top: 2px solid #ccc;
  margin-top: 40px;
}
.time-line .timeline__step {
  width: calc(33.33% - 20px);
  margin: 10px;
  position: relative;
  padding-top: 30px;
}
.time-line .timeline__step .timeline__circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background-color: #000;
  border-radius: 50%;
}
.time-line .timeline__step .timeline__content {
  background-color: #f5f0e1;
  color: #000;
  font-size: 14px;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .time-line .timeline {
    flex-direction: column;
    border: none;
  }
  .time-line .timeline__step {
    width: 100%;
  }
  .time-line .timeline__step .timeline__circle {
    left: -20px;
  }
}

.tabs-section {
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #fff;
}
@media (max-width: 840px) {
  .tabs-section .wrapper {
    display: flex;
    gap: 10px;
    flex-direction: column;
    width: 100%;
  }
}
.tabs-section .tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
@media (max-width: 840px) {
  .tabs-section .tabs {
    display: none;
  }
}
.tabs-section .tabs .tab-button {
  background: transparent;
  border: 1px solid #747474;
  border-radius: 12px;
  color: #747474;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
}
.tabs-section .tabs .tab-button.active {
  background: #e85d6c;
  color: #fff;
  border-color: transparent;
}
.tabs-section .tab-content {
  display: none;
  text-align: left;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 840px) {
  .tabs-section .tab-content {
    border: 1px solid #747474;
    border-radius: 15px;
    padding: 10px 15px;
  }
}
.tabs-section .tab-content .accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding: 0px 0px 10px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;
       user-select: none;
  transition: 0.2s;
}
@media (min-width: 841px) {
  .tabs-section .tab-content .accordion-header {
    display: none;
  }
}
.tabs-section .tab-content .accordion-header .icon {
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
  transition: 0.2s;
}
@media (max-width: 840px) {
  .tabs-section .tab-content {
    display: block;
  }
  .tabs-section .tab-content:not(.active) .accordion-body {
    display: none;
  }
}
.tabs-section .tab-content.active {
  display: block;
}
.tabs-section .tab-content.active .accordion-header {
  color: var(--primary-text);
}
.tabs-section .tab-content.active .accordion-header .icon {
  transform: rotate(0deg);
  color: var(--primary-text);
}
.tabs-section .tab-content:not(.active) .accordion-header {
  padding: 0px;
  border-bottom: none;
  color: #fff;
}
.tabs-section .tab-content:not(.active) .accordion-header .icon {
  color: #fff;
}
.tabs-section .tab-content .reward-item {
  display: flex;
  gap: 32px;
  padding: 5px 0;
  align-items: start;
  overflow: hidden;
}
@media (max-width: 1068px) {
  .tabs-section .tab-content .reward-item {
    gap: 16px;
  }
}
.tabs-section .tab-content .reward-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.tabs-section .tab-content .reward-item .reward-item-info {
  display: flex;
  gap: 32px;
  align-items: baseline;
}
@media (max-width: 1068px) {
  .tabs-section .tab-content .reward-item .reward-item-info {
    gap: 16px;
  }
}
.tabs-section .tab-content .reward-item .reward-item-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: baseline;
}
.tabs-section .tab-content .reward-item .icon {
  min-width: 20px;
  width: 20px;
  height: 18px;
  margin-top: 2px;
}
@media (max-width: 350px) {
  .tabs-section .tab-content .reward-item .icon {
    display: none;
  }
}
.tabs-section .tab-content .reward-item .amount {
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #fff;
  white-space: nowrap;
}
.tabs-section .tab-content .reward-item .description {
  font-weight: 400;
  font-size: 18px;
  -webkit-hyphens: auto;
          hyphens: auto;
  overflow-wrap: break-word;
  word-break: break-word;
}
.tabs-section .tab-content .sub-description {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .tabs-section .tabs {
    flex-direction: column;
    align-items: center;
  }
  .tabs-section .tabs-title {
    font-size: 24px;
  }
}
.tabs-section .actions-button {
  margin-top: 60px;
}

.vacancies {
  position: relative;
  color: white;
  text-align: center;
  padding: 80px 20px;
  background-color: #2a2a2a;
}
.vacancies .swiper .nav-buttons {
  padding: 30px;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
.vacancies .swiper .nav-buttons * {
  pointer-events: all;
}
.vacancies .swiper .swiper-slide {
  position: relative;
  border-radius: 40px;
  padding: 52px 43px;
  width: 506px;
  height: 391px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #303030;
}
.vacancies .swiper .swiper-slide .slider-bg {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 100%;
  height: 100%;
  max-width: 506px;
  max-height: 391px;
}
@media (max-width: 1024px) {
  .vacancies .swiper .swiper-slide {
    height: 360px;
    padding: 40px 35px;
    border-radius: 30px;
  }
}
@media (max-width: 768px) {
  .vacancies .swiper .swiper-slide {
    padding: 30px 25px;
    border-radius: 25px;
  }
}
@media (max-width: 480px) {
  .vacancies .swiper .swiper-slide {
    padding: 25px 20px;
    border-radius: 20px;
  }
}
@media (max-width: 360px) {
  .vacancies .swiper .swiper-slide {
    padding: 20px 15px;
    border-radius: 16px;
  }
}
.vacancies .swiper .swiper-slide .slider-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: default;
}
.vacancies .swiper .swiper-slide .slider-content .title-block {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.01895;
  text-transform: uppercase;
  text-align: right;
  color: #fff;
  font-style: oblique;
}
@media (max-width: 1024px) {
  .vacancies .swiper .swiper-slide .slider-content .title-block {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .vacancies .swiper .swiper-slide .slider-content .title-block {
    font-size: 25px;
  }
}
@media (max-width: 480px) {
  .vacancies .swiper .swiper-slide .slider-content .title-block {
    font-size: 24px;
  }
}
.vacancies .swiper .swiper-slide .slider-content .subtitle-block {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.37;
  text-transform: uppercase;
  text-align: right;
  color: #fff;
  font-style: oblique;
}
@media (max-width: 768px) {
  .vacancies .swiper .swiper-slide .slider-content .subtitle-block {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .vacancies .swiper .swiper-slide .slider-content .subtitle-block {
    font-size: 15px;
  }
}

.contract {
  position: relative;
  color: white;
  text-align: center;
  padding: 60px 20px;
  background-color: #333;
}
.contract::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #333;
  background-image: url(../images/contract-registration.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  opacity: 0.1;
  height: 100%;
  pointer-events: none;
}
.contract #time-line-contract {
  width: 100%;
  display: flex;
  margin-bottom: 40px;
  justify-content: center;
  --vertical-margin: 32px;
  --dot-size: 18px;
}
@media (max-width: 1024px) {
  .contract #time-line-contract {
    --vertical-margin: 32px;
  }
}
@media (max-width: 768px) {
  .contract #time-line-contract {
    --vertical-margin: 24px;
  }
}
@media (max-width: 480px) {
  .contract #time-line-contract {
    --vertical-margin: 18px;
  }
}
@media (max-width: 360px) {
  .contract #time-line-contract {
    --vertical-margin: 13px;
  }
}
.contract #time-line-contract .time-line-left,
.contract #time-line-contract .time-line-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contract #time-line-contract .time-line-left .step,
.contract #time-line-contract .time-line-right .step {
  border: 1px solid #fff;
  padding: 10px 15px;
  width: 30vw;
  position: relative;
}
@media (min-width: 1400px) {
  .contract #time-line-contract .time-line-left .step,
  .contract #time-line-contract .time-line-right .step {
    font-size: 14pt;
  }
}
@media (max-width: 1400px) {
  .contract #time-line-contract .time-line-left .step,
  .contract #time-line-contract .time-line-right .step {
    width: 30vw;
  }
}
@media (max-width: 1200px) {
  .contract #time-line-contract .time-line-left .step,
  .contract #time-line-contract .time-line-right .step {
    width: 40vw;
  }
}
.contract #time-line-contract .time-line-left .step .dot,
.contract #time-line-contract .time-line-right .step .dot {
  position: absolute;
  background: #fff;
  border-radius: 100%;
  width: var(--dot-size);
  height: var(--dot-size);
}
.contract #time-line-contract .time-line-left .step .dot::before,
.contract #time-line-contract .time-line-right .step .dot::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background: white;
}
.contract #time-line-contract .time-line-left .step p,
.contract #time-line-contract .time-line-right .step p {
  margin: 0;
  -webkit-hyphens: auto;
          hyphens: auto;
  overflow-wrap: break-word;
  word-break: break-word;
}
.contract #time-line-contract .time-line-center {
  background-color: white;
  width: 1px;
  margin: 0 var(--vertical-margin);
}
.contract #time-line-contract .time-line-left {
  justify-content: space-around;
}
.contract #time-line-contract .time-line-left .dot {
  right: calc(var(--vertical-margin) * -1 - var(--dot-size) / 2 - 2px);
}
.contract #time-line-contract .time-line-left .dot::before {
  right: 100%;
  width: calc(var(--vertical-margin) - var(--dot-size) / 2 + 2px);
}
.contract #time-line-contract .time-line-left .step:nth-child(3n) .dot {
  top: 15%;
}
.contract #time-line-contract .time-line-left .step:nth-child(3n+1) .dot {
  top: 15%;
}
.contract #time-line-contract .time-line-left .step:nth-child(3n+2) .dot {
  top: 65%;
}
.contract #time-line-contract .time-line-right {
  justify-content: space-evenly;
}
.contract #time-line-contract .time-line-right .dot {
  left: calc(var(--vertical-margin) * -1 - var(--dot-size) / 2 - 2px);
}
.contract #time-line-contract .time-line-right .dot::before {
  left: 100%;
  width: calc(var(--vertical-margin) - var(--dot-size) / 2 + 2px);
}
.contract #time-line-contract .time-line-right .step:nth-child(3n) .dot {
  top: 90%;
}
@media (min-width: 1000px) {
  .contract #time-line-contract .time-line-right .step:nth-child(3n) .dot {
    top: 30%;
  }
}
.contract #time-line-contract .time-line-right .step:nth-child(3n+1) .dot {
  top: 50%;
}
@media (min-width: 900px) {
  .contract #time-line-contract .time-line-right .step:nth-child(3n+1) .dot {
    top: 40%;
  }
}
.contract #time-line-contract .time-line-right .step:nth-child(3n+2) .dot {
  top: 25%;
}
.contract .contract-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (min-width: 1068px) {
  .contract .contract-cards {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 60px;
  }
}
.contract .contract-cards .contract-card {
  width: 330px;
  min-height: 135px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (min-width: 1068px) {
  .contract .contract-cards .contract-card {
    width: 411px;
    height: 237px;
    justify-content: start;
  }
  .contract .contract-cards .contract-card__icon {
    margin-bottom: 20px;
  }
}
@media (max-width: 1067px) {
  .contract .contract-cards .contract-card {
    justify-content: start;
  }
}
@media (max-width: 720px) {
  .contract .contract-cards .contract-card {
    width: calc(50% - 20px);
  }
}
@media (max-width: 590px) {
  .contract .contract-cards .contract-card {
    width: 100% !important;
  }
}
.contract .contract-cards .contract-card__icon img {
  width: 57px;
  height: 57px;
}
@media (min-width: 720px) and (max-width: 1229px) {
  .contract .contract-cards .contract-card__icon img {
    width: 48px;
    height: 48px;
  }
}
@media (min-width: 500px) and (max-width: 719px) {
  .contract .contract-cards .contract-card__icon img {
    width: 42px;
    height: 42px;
  }
}
@media (max-width: 499px) {
  .contract .contract-cards .contract-card__icon img {
    width: 36px;
    height: 36px;
  }
}
.contract .contract-cards .contract-card__title {
  font-weight: 500;
  font-size: 32px;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (min-width: 720px) and (max-width: 1229px) {
  .contract .contract-cards .contract-card__title {
    font-size: 28px;
  }
}
@media (min-width: 500px) and (max-width: 719px) {
  .contract .contract-cards .contract-card__title {
    font-size: 24px;
    margin-top: 10px;
  }
}
@media (max-width: 499px) {
  .contract .contract-cards .contract-card__title {
    margin-top: 10px;
    font-size: 20px;
  }
}
.contract .contract-cards .contract-card__desc {
  font-weight: 500;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 720px) and (max-width: 1229px) {
  .contract .contract-cards .contract-card__desc {
    font-size: 18px;
  }
}
@media (max-width: 719px) {
  .contract .contract-cards .contract-card__desc {
    width: 100%;
    font-size: 16px;
  }
}
@media (max-width: 590px) {
  .contract .contract-cards .contract-card__desc {
    width: 50%;
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .contract .contract-cards .contract-card__desc {
    width: 100%;
    font-size: 14px;
  }
}
.contract .credit-info {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.contract .credit-info__text {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
.contract .credit-info__text.faded {
  opacity: 0.5;
}
.contract .credit-info__text.strong {
  font-weight: 700;
}
.contract .credit-info__icon {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

section.form {
  position: relative;
  background-color: #1d1d1d;
}
section.form::before {
  content: "";
  background-image: url(../images/bg.png);
  position: absolute;
  top: -150px;
  left: 0;
  right: 0;
  width: 100%;
  height: 300px;
  background-size: auto 100%;
  z-index: 9;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
section.form .wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  padding: 120px 20px 0px 0px;
  gap: 60px;
  min-height: 700px;
}
.input{
  position: relative;
}
.input .suggestions {
  position: absolute;
  color: white;
  background: #1d1d1d;
  border: 1px solid #3d3d3d;
  max-height: 200px;
  overflow-y: auto;
  z-index: 9999;
  width: 100%;
  display: none;
  top: 60px;
  border-radius: 5px;
}
.input .suggestions div {
  padding: 8px;
  font-size: 1rem;
  cursor: pointer;
}
.input .suggestions div:hover {
  background-color: #232323;
}
@media (max-width: 1300px) {
  section.form .wrapper {
    gap: 0px;
  }
}
@media (max-width: 1200px) {
  section.form .wrapper {
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  section.form .wrapper {
    padding: 120px 0px 0px 0px;
  }
}
section.form .wrapper .form-left {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: 50%;
}
section.form .wrapper .form-left img {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1200px) {
  section.form .wrapper .form-left img {
    display: none;
  }
}
section.form .wrapper .form-left h3 {
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  text-transform: uppercase;
  color: #ffffff;
  width: 80%;
}
@media (max-width: 1300px) {
  section.form .wrapper .form-left h3 {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  section.form .wrapper .form-left h3 {
    text-align: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 500px) {
  section.form .wrapper .form-left h3 {
    font-size: 32px;
    line-height: normal;
  }
}
section.form .wrapper .form-left h3 small {
  display: block;
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  text-transform: none;
  color: rgba(255, 255, 255, 0.5);
}
section.form .wrapper .form-right {
  width: 50%;
}
@media (max-width: 1200px) {
  section.form .wrapper .form-left,
  section.form .wrapper .form-right {
    width: 100%;
  }
}

.regional-support,
.faq {
  width: 100%;
  padding: 80px 60px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 62px;
}
@media (max-width: 500px) {
  .regional-support,
  .faq {
    padding: 80px 20px;
  }
}
.regional-support .accordion,
.faq .accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 27px;
}
.regional-support .accordion .accordion-header,
.faq .accordion .accordion-header {
  background: #f0f0f0;
  border-radius: 15px;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.regional-support .accordion .accordion-header:focus,
.faq .accordion .accordion-header:focus {
  box-shadow: none;
}
.regional-support .accordion .accordion-header:not(.collapsed),
.faq .accordion .accordion-header:not(.collapsed) {
  color: var(--primary-text);
}
.regional-support .accordion .accordion-header:not(.collapsed)::after,
.faq .accordion .accordion-header:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='12' cy='12' r='10' fill='white' stroke='white' stroke-width='1.5' /%3E%3Cpath d='M16 12H8' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
}
.regional-support .accordion .accordion-header::after,
.faq .accordion .accordion-header::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Ccircle cx='12' cy='12' r='10' fill='white' stroke='white' stroke-width='1.5' /%3E%3Cpath d='M12 8V16M16 12H8' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 50%;
  width: 32px;
  height: 32px;
}
.regional-support .accordion .accordion-body,
.faq .accordion .accordion-body {
  display: flex;
  flex-direction: column;
}
.regional-support .accordion .accordion-title,
.faq .accordion .accordion-title {
  font-size: 24px;
  font-weight: 500;
  color: #111;
}
.regional-support .cards,
.faq .cards {
  display: grid;
  gap: 10px;
  margin-top: 62px;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
}
@media (max-width: 1100px) {
  .regional-support .cards,
  .faq .cards {
    grid-template-columns: 1fr;
  }
}
.regional-support .card,
.faq .card {
  background: #f0f0f0;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border: none;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: 0.3s;
  cursor: pointer;
  min-width: 300px;
  overflow: hidden;
}
@media (min-width: 1230px) and (max-width: 1407px) {
  .regional-support .card,
  .faq .card {
    padding: 28px;
    min-width: 280px;
  }
}
@media (min-width: 720px) and (max-width: 1229px) {
  .regional-support .card,
  .faq .card {
    padding: 24px;
    min-width: 260px;
  }
}
@media (min-width: 500px) and (max-width: 719px) {
  .regional-support .card,
  .faq .card {
    padding: 20px;
    min-width: 240px;
  }
}
@media (max-width: 605px) {
  .regional-support .card,
  .faq .card {
    padding: 18px;
    min-width: 100%;
  }
}
@media (max-width: 472px) {
  .regional-support .card,
  .faq .card {
    padding: 16px;
    min-width: 100%;
  }
}
.regional-support .card.card-large,
.faq .card.card-large {
  grid-column: span 4;
}
.regional-support .card.card-small,
.faq .card.card-small {
  grid-column: span 2;
}
@media (max-width: 1100px) {
  .regional-support .card.card-large,
  .faq .card.card-large {
    grid-column: span 1;
  }
  .regional-support .card.card-small,
  .faq .card.card-small {
    grid-column: span 1;
  }
}
.regional-support .card-title,
.faq .card-title {
  font-size: 32px;
  font-weight: 500;
  color: #111;
}
@media (min-width: 1230px) and (max-width: 1407px) {
  .regional-support .card-title,
  .faq .card-title {
    font-size: 30px;
  }
}
@media (min-width: 720px) and (max-width: 1229px) {
  .regional-support .card-title,
  .faq .card-title {
    font-size: 28px;
  }
}
@media (min-width: 500px) and (max-width: 719px) {
  .regional-support .card-title,
  .faq .card-title {
    font-size: 24px;
  }
}
@media (max-width: 605px) {
  .regional-support .card-title,
  .faq .card-title {
    font-size: 22px;
  }
}
@media (max-width: 522px) {
  .regional-support .card-title,
  .faq .card-title {
    font-size: 20px;
  }
}
@media (max-width: 472px) {
  .regional-support .card-title,
  .faq .card-title {
    font-size: 18px;
  }
}
.regional-support .card-footer,
.faq .card-footer {
  display: flex;
  align-items: center;
  gap: 5px;
  border: none;
  padding: 0;
  background-color: transparent;
}
.regional-support .card-link,
.faq .card-link {
  font-size: 28px;
  font-weight: 500;
  color: rgba(17, 17, 17, 0.5);
  transition: 0.3s;
}
@media (min-width: 1230px) and (max-width: 1407px) {
  .regional-support .card-link,
  .faq .card-link {
    font-size: 26px;
  }
}
@media (min-width: 720px) and (max-width: 1229px) {
  .regional-support .card-link,
  .faq .card-link {
    font-size: 24px;
  }
}
@media (min-width: 500px) and (max-width: 719px) {
  .regional-support .card-link,
  .faq .card-link {
    font-size: 22px;
  }
}
@media (max-width: 605px) {
  .regional-support .card-link,
  .faq .card-link {
    font-size: 20px;
  }
}
@media (max-width: 522px) {
  .regional-support .card-link,
  .faq .card-link {
    font-size: 18px;
  }
}
@media (max-width: 472px) {
  .regional-support .card-link,
  .faq .card-link {
    font-size: 16px;
  }
}
.regional-support .card svg,
.faq .card svg {
  height: 20px;
  width: 20px;
  color: rgba(17, 17, 17, 0.5);
  transition: 0.3s;
}
@media (min-width: 720px) and (max-width: 1229px) {
  .regional-support .card svg,
  .faq .card svg {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 719px) {
  .regional-support .card svg,
  .faq .card svg {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 472px) {
  .regional-support .card svg,
  .faq .card svg {
    width: 14px;
    height: 14px;
  }
}
.regional-support .card:hover,
.faq .card:hover {
  box-shadow: 0px 0px 12px 20px rgba(0, 0, 0, 0.03);
  z-index: 1;
  transition: 0.3s;
}
.regional-support .card:hover .card-link,
.faq .card:hover .card-link {
  color: var(--primary-btn-bg);
  transition: 0.3s;
}
.regional-support .card:hover svg,
.faq .card:hover svg {
  color: var(--primary-btn-bg);
  transition: 0.3s;
}

.faq {
  background: #fbfbfb;
}
.faq .section-title {
  margin: 0;
}

.best-gear-from-mod {
  background: #fff;
}
.best-gear-from-mod .wrapper {
  display: flex;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  gap: 40px;
}
.best-gear-from-mod .wrapper .image {
  max-width: 55%;
}
.best-gear-from-mod .wrapper .image img {
  width: 100%;
}
@media (max-width: 1200px) {
  .best-gear-from-mod .wrapper .image {
    max-width: 100%;
    order: 1;
  }
}
.best-gear-from-mod .wrapper .mod-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  gap: 5px;
}
@media (max-width: 1200px) {
  .best-gear-from-mod .wrapper .mod-text {
    order: 0;
  }
}
@media (max-width: 1200px) {
  .best-gear-from-mod .wrapper {
    flex-direction: column;
    gap: 30px;
    font-size: 22px;
    line-height: 28px;
  }
}
@media (max-width: 768px) {
  .best-gear-from-mod .wrapper {
    font-size: 20px;
    line-height: 26px;
    gap: 24px;
  }
}
@media (max-width: 540px) {
  .best-gear-from-mod .wrapper {
    font-size: 18px;
    line-height: 24px;
    gap: 20px;
  }
}
@media (max-width: 420px) {
  .best-gear-from-mod .wrapper {
    font-size: 16px;
    line-height: 22px;
    gap: 16px;
  }
}

body {
  background: #2a2a2a;
  font-family: "Inter", sans-serif;
}
body:has(.header-nav[aria-hidden=false]) {
  overflow: hidden;
}

.strong {
  font-weight: bold;
}

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

section .wrapper {
  width: 100%;
  max-width: 1745px;
  margin: 0 auto;
}

.section-title {
  text-transform: uppercase;
  font-weight: 500;
  word-break: break-word;
  margin-bottom: 30px;
  text-align: center;
  font-size: 32px;
}
.section-title span {
  display: block;
}
.section-title .highlight {
  color: #e75d6c;
}

.icon {
  width: 2rem;
  height: 2rem;
  fill: white;
  display: inline-block;
}
.icon.info {
  width: 20px;
  height: 20px;
  cursor: help;
}

.tooltip {
  --bs-tooltip-max-width: 350px;
  --bs-tooltip-bg: #646464;
  --bs-tooltip-border-radius: 20px;
  --bs-tooltip-opacity: 1;
  --bs-tooltip-padding-y: 20px;
  --bs-tooltip-padding-x: 20px;
  --bs-tooltip-margin: 0;
  --bs-tooltip-arrow-width: 0.8rem;
  --bs-tooltip-arrow-height: 0.4rem;
}
.tooltip .tooltip-inner {
  line-height: normal;
}

.font-social {
  position: fixed;
  padding: 20px;
  bottom: 0;
  right: 0;
  display: flex;
  gap: 9px;
  z-index: 999;
}

.wrapper {
  width: 100%;
}

a {
  color: inherit;
}
a:hover {
  color: var(--primary-btn-bg);
}

form fieldset {
  margin-bottom: 20px;
  transition: 0.3s;
}
form fieldset.input {
  background: #232323;
  border: 1px solid #3d3d3d;
  border-radius: 10px;
  position: relative;
  height: 60px;
}
form fieldset.input label {
  position: absolute;
  left: 25px;
  top: 0px;
  bottom: 0px;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  pointer-events: none;
  transition: 0.3s;
}
form fieldset.input label span {
  color: #cc4956;
}
form fieldset.input input {
  background: transparent;
  border: transparent;
  box-shadow: none;
  outline: none !important;
  color: #fff;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px 25px 10px 25px;
}
form fieldset.input input:hover ~ label {
  color: rgba(255, 255, 255, 0.7);
}
form fieldset.input input:not(:invalid) ~ label, form fieldset.input input:focus ~ label, form fieldset.input input:active ~ label {
  font-size: 16px;
  transition: 0.3s;
  align-items: flex-start;
}
form fieldset.input.file {
  height: auto !important;
  padding-bottom: 10px;
}
form fieldset.input.file label {
  font-size: 16px;
  transition: 0.3s;
  align-items: flex-start;
}
form fieldset.input.file input {
  display: none;
}
form fieldset.input.file .select-file {
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 10px;
  height: 39px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  color: #d9d9d9;
  white-space: nowrap;
  margin-top: 30px;
  margin-left: 25px;
  transition: 0.3s;
  cursor: pointer;
}
form fieldset.input.file .select-file:not(.has-selected):hover {
  background: #d9d9d9;
  transition: 0.3s;
  color: black;
}
form fieldset.input.file .select-file.has-selected {
  cursor: default;
}
form fieldset.input.file .select-file button {
  background: transparent;
  border: none;
  outline: none;
  color: inherit;
  border-radius: 100%;
  transition: 0.3s;
  cursor: pointer;
}
form fieldset.input.file .select-file button svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}
form fieldset.input.file .select-file button:hover {
  background: #d9d9d9;
  color: black;
  transition: 0.3s;
}
form fieldset.input.has-error {
  background: #3b1919;
  border: 1px solid #692e2e;
  transition: 0.3s;
  position: relative;
}
form fieldset.input.has-error .error-msg {
  position: absolute;
  left: 25px;
  bottom: -10px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  padding: 2px 5px;
  gap: 5px;
  background: #ff0000;
  border-radius: 3px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  color: #ffffff;
}
form fieldset.input.has-error .error-msg:before {
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  background-image: url('data:image/svg+xml,<svg width="14" height="13" viewBox="0 0 14 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M13.837 10.7702L7.98398 1.05936C7.53309 0.313546 6.45861 0.313546 6.01793 1.05936L0.164872 10.7702C-0.294525 11.5347 0.261005 12.5 1.15343 12.5H12.8578C13.0604 12.4993 13.2591 12.4452 13.4339 12.3431C13.6086 12.241 13.753 12.0946 13.8524 11.9188C13.9519 11.743 14.0027 11.5441 13.9999 11.3423C13.997 11.1406 13.9406 10.9432 13.8362 10.7702H13.837ZM6.16171 4.44265C6.16137 4.34094 6.18123 4.24017 6.22014 4.14614C6.25906 4.05211 6.31626 3.96667 6.38845 3.89475C6.46064 3.82283 6.5464 3.76585 6.64079 3.72708C6.73518 3.68832 6.83633 3.66853 6.93843 3.66887H7.04392C7.14609 3.66842 7.24733 3.68812 7.34182 3.72684C7.43631 3.76556 7.52216 3.82252 7.59445 3.89445C7.66673 3.96638 7.72401 4.05186 7.76297 4.14594C7.80194 4.24003 7.82183 4.34087 7.82149 4.44265V7.33862C7.82194 7.44047 7.80214 7.5414 7.76322 7.63559C7.7243 7.72977 7.66705 7.81535 7.59475 7.88737C7.52246 7.95939 7.43656 8.01643 7.34202 8.0552C7.24747 8.09397 7.14616 8.1137 7.04392 8.11325H6.93843C6.83626 8.11359 6.73504 8.09377 6.64059 8.05495C6.54615 8.01613 6.46035 7.95907 6.38815 7.88706C6.31595 7.81505 6.25876 7.72952 6.2199 7.63539C6.18104 7.54126 6.16126 7.4404 6.16171 7.33862V4.44265ZM7.97462 10.0625C7.97462 10.5982 7.53394 11.0372 6.99628 11.0372C6.45861 11.0372 6.01793 10.5982 6.01793 10.0625C6.01793 9.52776 6.45861 9.08789 6.99628 9.08789C7.53394 9.08789 7.97462 9.52776 7.97462 10.0625Z" fill="white"/></svg>');
  background-size: 100%;
  background-repeat: no-repeat;
}
form fieldset.checkbox {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #7d7d7d;
}
form fieldset.checkbox input {
  margin-top: 5px;
}

.loader {
  width: 15px;
  aspect-ratio: 1;
  border-radius: 50%;
  animation: l5 0.3s infinite linear alternate;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes l5 {
  0% {
    box-shadow: 20px 0 #000, -20px 0 rgba(0, 0, 0, 0.1333333333);
    background: #000;
  }
  33% {
    box-shadow: 20px 0 #000, -20px 0 rgba(0, 0, 0, 0.1333333333);
    background: rgba(0, 0, 0, 0.1333333333);
  }
  66% {
    box-shadow: 20px 0 rgba(0, 0, 0, 0.1333333333), -20px 0 #000;
    background: rgba(0, 0, 0, 0.1333333333);
  }
  100% {
    box-shadow: 20px 0 rgba(0, 0, 0, 0.1333333333), -20px 0 #000;
    background: #000;
  }
}
[data-fslightbox] {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
[data-fslightbox]:before {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.1764705882);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23000000"><path d="M784-120 532-372q-30 24-69 38t-83 14q-109 0-184.5-75.5T120-580q0-109 75.5-184.5T380-840q109 0 184.5 75.5T640-580q0 44-14 83t-38 69l252 252-56 56ZM380-400q75 0 127.5-52.5T560-580q0-75-52.5-127.5T380-760q-75 0-127.5 52.5T200-580q0 75 52.5 127.5T380-400Zm-40-60v-80h-80v-80h80v-80h80v80h80v80h-80v80h-80Z"/></svg>');
  background-size: 80px;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: 0.3s;
}
[data-fslightbox]:hover:before {
  opacity: 1;
  background-size: 100px;
  transition: 0.3s;
}/*# sourceMappingURL=style.css.map */