/* 1. Use a more-intuitive box-sizing model */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap");
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

body {
  /* 3. Add accessible line-height */
  line-height: 1.5;
  /* 4. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 5. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 6. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 7. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 8. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  9. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

button {
  outline: none;
  border: none;
  cursor: pointer;
}

.header {
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 810px;
  width: 100%;
}
.header__nav {
  display: flex;
  gap: 40px;
}

@media screen and (max-width: 1120px) {
  .header__nav {
    gap: 10px;
  }
  .header__left {
    max-width: 700px;
  }
  .header__logo img {
    max-width: 80%;
  }
}
@media screen and (max-width: 1060px) {
  .header__nav {
    gap: 10px;
  }
  .header__nav .link {
    display: flex;
    align-items: center;
  }
  .header__left {
    max-width: 650px;
  }
  .header__logo img {
    max-width: 80%;
  }
  .header .link {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  .header__nav {
    gap: 10px;
  }
  .header__left {
    max-width: 630px;
  }
  .header .link {
    font-size: 16px;
  }
}
@media screen and (max-width: 968px) {
  .header__left {
    max-width: 550px;
  }
}
@media screen and (max-width: 860px) {
  .header {
    justify-content: space-between;
  }
  .header__nav {
    display: none;
  }
  .header__btns {
    display: none;
  }
  .header__left {
    max-width: fit-content;
  }
}
.burger-btn {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 10;
  background: none;
  border: none;
  outline: none;
}
.burger-btn div {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
  margin-bottom: 5px;
}
.burger-btn div:nth-child(3) {
  margin-bottom: 0;
}
.burger-btn.active div:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.burger-btn.active div:nth-child(2) {
  opacity: 0;
}
.burger-btn.active div:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.menu-open {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1001;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-overlay {
  position: fixed;
  top: 75px;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  display: none;
  z-index: 1000;
  background: linear-gradient(360deg, #180E50 0%, #29187A 100%), linear-gradient(360deg, color(display-p3 0.09 0.055 0.302) 0%, color(display-p3 0.149 0.098 0.459) 100%);
}

.menu-overlay.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  overflow: scroll;
  padding-bottom: 15px;
}
.menu-content__list {
  list-style: none;
  margin-bottom: 50px;
  padding: 0;
}
.menu-content__list-item {
  margin: 20px 0 20px;
}
.menu-content__link {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  padding-bottom: 20px;
  border-bottom: 1px solid #453794;
  width: 100%;
  display: block;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  line-height: 29.26px;
  font-size: 24px;
}
.menu-content__link:hover {
  opacity: 0.7;
}
.menu-content__auth-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  width: 100%;
  gap: 10px;
}
.menu-content__auth-links > .btn-outline {
  width: 100%;
  max-width: 450px;
  padding: 20px 60px;
  color: #fff;
  border-color: #fff;
  font-size: 20px;
}
.menu-content__auth-links > .btn-primary {
  width: 100%;
  max-width: 450px;
  padding: 20px 60px;
  font-size: 20px;
}

@media screen and (max-width: 860px) {
  .burger-btn {
    display: flex;
  }
  .burger-btn {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 10;
    background: none;
    border: none;
    outline: none;
  }
  .burger-btn div {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
  }
  .burger-btn div:nth-child(3) {
    margin-bottom: 0;
  }
  .burger-btn.active div:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .burger-btn.active div:nth-child(2) {
    opacity: 0;
  }
  .burger-btn.active div:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .menu-open {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
  }
  .menu-overlay {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
    display: none;
    z-index: 1000;
    background: linear-gradient(360deg, #180E50 0%, #29187A 100%), linear-gradient(360deg, color(display-p3 0.09 0.055 0.302) 0%, color(display-p3 0.149 0.098 0.459) 100%);
  }
  .menu-overlay.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .menu-content__list {
    list-style: none;
    margin-bottom: 50px;
    padding: 0;
  }
  .menu-content__list-item {
    margin: 20px 0 20px;
  }
  .menu-content__link {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    padding-bottom: 20px;
    border-bottom: 1px solid #453794;
    width: 100%;
    display: block;
    font-family: Montserrat, sans-serif;
    font-weight: 400;
    line-height: 29.26px;
    font-size: 24px;
  }
  .menu-content__link:hover {
    opacity: 0.7;
  }
  .menu-content__auth-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    width: 100%;
    gap: 10px;
  }
  .menu-content__auth-links > .btn-outline {
    width: 100%;
    max-width: 450px;
    padding: 20px 60px;
    color: #fff;
    border-color: #fff;
    font-size: 20px;
  }
  .menu-content__auth-links > .btn-primary {
    width: 100%;
    max-width: 450px;
    padding: 20px 60px;
    font-size: 20px;
  }
}
@media screen and (max-width: 860px) and (max-width: 860px) {
  .burger-btn {
    display: flex;
  }
  .main-page .content-wrap-full .header {
    padding-top: 20px;
  }
  .main-page .content-wrap-full .header .burger-wrap {
    display: flex;
  }
  .main-page .menu-overlay {
    top: 80px;
  }
  .main-page .header {
    justify-content: space-between;
  }
  .main-page .header__left {
    justify-content: flex-start;
  }
}
.footer {
  padding: 40px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.footer__logo {
  margin-bottom: 40px;
}
.footer__logo > img {
  max-width: 250px;
}
.footer__contact {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.footer__contact > a {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 25.97px;
  color: #A8A8A8;
  text-decoration: none;
}
.footer__contact:last-child {
  margin-bottom: 0;
}
.footer__links {
  width: 100%;
  max-width: 355px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer__links .right-block {
  display: flex;
  flex-direction: column;
}
.footer__links .left-block {
  display: flex;
  flex-direction: column;
}
.footer__socials {
  width: 100%;
  max-width: 240px;
}
.footer__socials-wrap {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.social-item {
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
  color: #AEAEAE;
  margin-bottom: 10px;
}
.social-item:last-child {
  margin-bottom: 0;
}

.footer-link {
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 24.38px;
  color: white;
  text-decoration: none;
  padding-bottom: 20px;
  border-bottom: 1px solid #353535;
  margin-bottom: 20px;
}
.footer-link:last-child {
  margin-bottom: 0;
}

.main-page .footer {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  border-radius: 16px;
  background: linear-gradient(135deg, #C746FF 0%, #4641EF 100%);
}
.main-page .footer__logo {
  margin-bottom: 20px;
}
.main-page .footer__logo img {
  width: 189px;
  height: 50px;
}
.main-page .footer__logo > img {
  max-width: 250px;
}
.main-page .footer__brand {
  flex-basis: 30%;
}
.main-page .footer__inner {
  display: flex;
  gap: 40px;
}
.main-page .footer__tagline {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  line-height: 1.5;
}
.main-page .footer__social {
  display: flex;
  gap: 10px;
}
.main-page .footer__social.mobile {
  display: none;
}
.main-page .footer__heading {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}
.main-page .footer__subheading {
  font-size: 14px;
  margin: 14px 0 6px;
  color: rgba(255, 255, 255, 0.85);
}
.main-page .footer__list {
  list-style: none;
  padding: 0;
  margin: 8px 0 14px;
}
.main-page .footer__list li {
  margin-bottom: 6px;
}
.main-page .footer__list li a {
  color: #fff;
  text-decoration: none;
}
.main-page .footer__list li a:hover {
  text-decoration: underline;
}
.main-page .footer__contacts {
  flex-basis: 45%;
  color: #FFFFFF;
}
.main-page .footer__contacts h3 {
  font-size: 20px;
  color: #FFFFFF;
  font-weight: 400;
  margin: 20px 0 10px 0;
  text-align: start;
  width: 100%;
}
.main-page .footer__contacts .wrapper {
  display: flex;
  justify-content: space-between;
}
.main-page .footer__contacts .left-block p {
  margin-bottom: 10px;
}
.main-page .footer__contacts .left-block .work-time {
  display: flex;
  margin-top: 10px;
}
.main-page .footer__contacts .left-block .contact {
  display: flex;
  gap: 10px;
}
.main-page .footer__contacts .right-block .title {
  font-weight: 500;
  font-size: 14px;
  margin: 10px 0;
}
.main-page .footer__contacts .right-block .whatsapp-info {
  display: flex;
  gap: 10px;
  font-weight: 400;
}
.main-page .footer__docs {
  flex-basis: 40%;
}
.main-page .footer__docs h3 {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 0;
}
.main-page .footer__docs .top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.main-page .footer__docs .chip-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0 18px;
}
.main-page .footer__docs .chip-wrap .row {
  gap: 10px;
  flex-wrap: nowrap;
  margin: 0;
}
.main-page .footer__docs .chip-wrap .row.second {
  padding-right: 70px;
}
.main-page .footer__docs .chip-wrap .row.second .chip {
  flex: 1;
}
.main-page .footer__docs .chip-wrap .chip {
  font-family: "Montserrat", sans-serif;
  text-align: center;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  color: #fff;
  font-weight: 600;
}
.main-page .footer__divider {
  border: 0;
  border-top: 1px solid #FFFFFF;
  margin: 22px -6px 12px;
}
.main-page .footer__legal p {
  font-size: 12px;
  line-height: 100%;
  color: #FFFFFF;
  margin-bottom: 15px;
}
.main-page .footer .btn-cta.mobile {
  display: none;
}

@media screen and (max-width: 1430px) {
  .main-page .footer__inner {
    gap: 5px;
  }
  .main-page .footer__contacts .wrapper {
    flex-direction: column;
  }
  .main-page .footer__docs .chip-wrap .row.second {
    padding-right: 0;
  }
}
@media screen and (max-width: 1000px) {
  .footer__links {
    gap: 10px;
    max-width: 300px;
  }
  .main-page .footer__inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 968px) {
  .footer-link {
    font-size: 18px;
  }
  .footer {
    padding: 40px 20px;
  }
  .main-page .footer {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 860px) {
  .footer {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    gap: 40px;
  }
  .footer__logo {
    margin-bottom: 10px;
  }
  .footer__links {
    flex-direction: column;
  }
  .footer__links .left-block {
    align-items: center;
  }
  .footer__links .right-block {
    align-items: center;
  }
  .footer__contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: inherit;
    width: inherit;
  }
  .footer-link {
    width: fit-content;
    text-align: center;
  }
  .main-page .footer__logo {
    margin-bottom: 10px;
  }
  .main-page .footer__contacts .wrapper {
    flex-direction: column;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .footer {
    padding: 20px 0;
  }
  .footer__socials-wrap {
    margin-bottom: 20px;
  }
  .footer__logo > img {
    max-width: 180px;
  }
  .footer-link {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .social-item {
    text-align: center;
  }
  .main-page .footer {
    gap: 0;
    padding: 40px 10px;
    background: linear-gradient(135deg, #C746FF 0%, #4641EF 100%);
  }
  .main-page .footer__social {
    display: none;
  }
  .main-page .footer__social.mobile {
    margin: 20px 0;
    display: flex;
  }
  .main-page .footer__logo {
    display: flex;
    justify-content: center;
  }
  .main-page .footer__logo > img {
    max-width: 180px;
  }
  .main-page .footer__tagline {
    text-align: center;
  }
  .main-page .footer__docs .chip-wrap .row {
    flex-direction: column;
  }
  .main-page .footer__docs .chip-wrap .chip {
    padding: 6px 10px;
    justify-content: center;
  }
  .main-page .footer .btn-cta {
    display: none;
  }
  .main-page .footer .btn-cta.mobile {
    display: block;
    width: 100%;
  }
}
body {
  position: relative;
}

.main-page {
  background-color: #FFFFFF;
}

.main-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.content-light-block {
  display: flex;
  justify-content: center;
  background: #EDEBF0;
}

.content-white-block {
  display: flex;
  justify-content: center;
  background: #FFFFFF;
}

.bg-soft-blue {
  background-color: #F4F3FF;
  border-radius: 16px;
}

.bg-pink-blue {
  background: linear-gradient(135deg, rgb(199, 70, 255) 0%, rgb(70, 65, 239) 100%);
}

.content-blue-block {
  display: flex;
  justify-content: center;
  background: linear-gradient(90deg, #180E50 0%, #29187A 100%);
}

.content-dark-block {
  display: flex;
  justify-content: center;
  background: linear-gradient(90deg, #08041D 0%, #181333 100%), linear-gradient(90deg, color(display-p3 0.027 0.016 0.11) 0%, color(display-p3 0.094 0.075 0.192) 100%);
}

.disable-scroll {
  height: 100%;
  overflow: hidden;
}

.content-wrap {
  width: 100%;
  max-width: 1180px;
  padding: 0 20px;
}

.content-wrap-full {
  width: 100%;
  max-width: 1800px;
  padding: 0 20px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-45 {
  margin-top: 45px;
}

.mt-100 {
  margin-top: 100px;
}

.w-100 {
  width: 100%;
}

.btn, .have-question-btn, .light-btn, .btn-outline, .btn-secondary, .btn-primary {
  font-family: Montserrat, "sans-serif";
  padding: 20px 30px;
  gap: 15px;
  border-radius: 15px;
  border: none;
  outline: none;
  cursor: pointer;
  background: none;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}
.btn:hover, .have-question-btn:hover, .light-btn:hover, .btn-outline:hover, .btn-secondary:hover, .btn-primary:hover {
  opacity: 0.85;
  transition: opacity 0.4s ease-in-out;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, #533FB8 0%, #4A2DD6 100%), linear-gradient(90deg, color(display-p3 0.314 0.251 0.694) 0%, color(display-p3 0.275 0.18 0.808) 100%);
}

.btn-secondary {
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  background: linear-gradient(135deg, rgb(199, 70, 255) 0%, rgb(70, 65, 239) 100%);
  padding: 16px 24px;
  border-radius: 16px;
  display: block;
  text-align: center;
}

.main-page header .btn-secondary {
  font-size: 16px;
}

.main-page header .btn-outline {
  color: #5040B0;
  font-weight: 700;
  background-color: #F4F3FF;
}

.btn-outline {
  color: #1C1C1C;
  border: 1px solid #1C1C1C;
}
.btn-outline:hover {
  color: #1C1C1C;
  text-decoration: none;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 12px;
  background: #fff;
  font-weight: 700;
  text-decoration: none;
  color: #5040B0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: 0.2s ease;
}
.btn-cta:hover {
  transform: translateY(-2px);
}

.link {
  font-family: Montserrat, "sans-serif";
  color: #1C1C1C;
  text-decoration: none;
  font-size: 20px;
}
.link__active {
  color: #5040B0;
}

.light-btn {
  font-family: Montserrat, "sans-serif";
  font-size: 20px;
  font-weight: 600;
  line-height: 24.38px;
  color: #5040B1;
  background: linear-gradient(0deg, #DCD2EE 0%, #F7F7F7 100%);
}

.have-question-btn {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  opacity: 1;
}

.modal-dialog {
  max-width: 570px;
}

.modal-content {
  border-radius: 30px;
  padding: 30px;
  position: relative;
}

.modal-body {
  border: none;
}

.modal-footer {
  border: none;
}

.close-modal-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 100000000;
}

.modal-title {
  font-family: Unbounded, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 44.64px;
  color: #000000;
  text-align: center;
  margin-bottom: 5px;
}

.modal-subtitle {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  color: #979797;
  text-align: center;
  margin-bottom: 40px;
}

.modal-divider {
  width: 100%;
  height: 1px;
  background: #CFD6E4;
  margin-bottom: 40px;
}

.credit-pay-search-form > .custom-form-control.form-control {
  margin-bottom: 30px;
}

.modal-info-block {
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24.38px;
  color: #5040B1;
  text-align: center;
  margin: 0 auto 30px;
}

.modal-credit-info {
  padding: 20px;
  background: #F3F4F6;
  border-radius: 10px;
  margin-bottom: 30px;
}
.modal-credit-info p {
  padding-bottom: 0;
  margin-bottom: 0;
}
.modal-credit-info__item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.modal-credit-info__item:last-child {
  margin-bottom: 0;
}
.modal-credit-info__title {
  font-family: Montserrat, "sans-serif";
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  color: #4F5D6D;
}
.modal-credit-info__value {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 19.6px;
  color: #1D2228;
  word-break: break-word;
}
.modal-credit-info__address {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.copy-btn {
  border: none;
  outline: none;
  background: none;
  min-width: 30px;
}
.copy-btn:focus {
  outline: none;
  border: none;
}
.copy-btn:hover {
  opacity: 0.85;
}

.modal-success-payment-text {
  font-family: Montserrat, sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 46px;
  text-align: center;
  color: #5040B1;
}
.modal-success-payment-text > p {
  margin-bottom: 0;
}

.modal-success-payment-img {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.main-swiper {
  position: relative;
  width: 100%;
}
.main-swiper__nav {
  display: flex;
  gap: 20px;
  width: fit-content;
  position: absolute;
  bottom: 30px;
}

.main-swiper-btn, .main-swiper-btn-mob {
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #5040B1;
  outline: none;
  border: none;
}

.main-swiper-btn-mob {
  position: absolute;
  display: none;
  width: 50px;
  height: 50px;
}

.main-swiper-slide.swiper-slide {
  display: block !important;
}

.main-swiper-btn--prev {
  transform: rotate(180deg);
}

@media screen and (max-width: 768px) {
  .main-swiper__nav {
    display: none;
  }
  .main-swiper-btn-mob {
    display: flex;
    z-index: 200;
  }
  .main-swiper-btn-mob--prev {
    left: 5px;
    bottom: 50%;
  }
  .main-swiper-btn-mob--next {
    right: 5px;
    bottom: 50%;
  }
  .main-swiper-btn-mob svg {
    max-width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .modal-content {
    border-radius: 30px;
    padding: 20px 0 0 0;
    position: relative;
  }
  .modal-title {
    font-family: Unbounded, sans-serif;
    font-size: 24px;
  }
  .modal-subtitle {
    margin-bottom: 30px;
  }
  .modal-divider {
    width: 100%;
    height: 1px;
    background: #CFD6E4;
    margin-bottom: 30px;
  }
  .credit-pay-search-form > .custom-form-control.form-control {
    margin-bottom: 20px;
  }
  .modal-info-block {
    margin: 0 auto 20px;
  }
  .modal-success-payment-text {
    font-size: 28px;
    line-height: 30px;
  }
  .modal-success-payment-img {
    margin-bottom: 10px;
  }
  .modal-success-payment-img > img {
    width: 60%;
  }
}
.content-light-block {
  flex-direction: column;
  align-items: center;
}

.navigation-block {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
.navigation-block__right {
  border-radius: 30px;
  background-color: #fff;
  padding: 30px 25px;
  width: 100%;
  margin-bottom: 100px;
}

.faq-nav-title {
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24.38px;
  margin-bottom: 30px;
  margin-left: -3px;
  position: sticky;
  top: 5px;
}

.faq-content__title {
  font-family: Unbounded, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 44.64px;
  margin-bottom: 40px;
  text-align: center;
}

.faq-content-text, .faq-liability-information, .faq-about-crypto__text {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
}

.faq-content-title, .faq-about-crypto__title {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 19.5px;
}

.faq-about-crypto {
  padding: 0 15px;
  margin-bottom: 30px;
}
.faq-about-crypto__item {
  margin-bottom: 20px;
}
.faq-about-crypto__item:last-child {
  margin-bottom: 0;
}
.faq-about-crypto__title {
  margin-bottom: 5px;
}
.faq-about-crypto__text {
  margin-bottom: 5px;
}

.faq-liability-information {
  padding: 0 15px;
  margin-bottom: 30px;
}
.faq-liability-information__item {
  margin-bottom: 20px;
}

.faq-video-slider {
  width: 100%;
  max-width: 665px;
  margin-bottom: 40px;
}
.faq-video-slider > .swiper-wrapper {
  margin-bottom: 20px;
}
.faq-video-slider__navigation {
  display: flex;
  justify-content: center;
}
.faq-video-slider__navigation-wrap {
  display: flex;
  width: 100%;
  max-width: 500px;
  gap: 20px;
  justify-content: space-between;
}
.faq-video-slider__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-video-card {
  width: 100%;
  max-width: 215px;
  min-height: 195px;
  border-radius: 15px;
  background-image: url("/data/images/video-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: end;
  padding: 15px;
}
.faq-video-card__title {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  color: #fff;
}

.faq-video-slider-btn {
  max-width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #5040B1;
  padding: 0 10px;
}
.faq-video-slider-btn[disabled] {
  background: #E2E2E2;
  cursor: auto;
}
.faq-video-slider-btn[disabled] > svg > path {
  fill: #B0B0B0;
}

.swiper-pagination-bullet {
  background: #5040B1;
}

.tab-menu {
  position: sticky;
  top: 55px;
  display: flex;
  flex-direction: column;
  max-width: 300px;
  padding-left: 30px;
  padding-top: 25px;
  padding-bottom: 25px;
  gap: 40px;
}
.tab-menu:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 3px;
  height: 100%;
  background: #B0B0B0;
  border-radius: 3px;
  z-index: 0;
}
.tab-menu .tab-title {
  --before-height: calc(100%);
  background: none;
  border-top: none;
  border-bottom: none;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 24.38px;
  color: #1C1C1C;
  cursor: pointer;
  position: relative;
}
.tab-menu .tab-title:before {
  content: "";
  background: #5040B1;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: -31px;
  display: none;
  width: 5px;
  height: var(--before-height);
  border-radius: 3px;
  z-index: 200;
  opacity: 1;
  animation: animate-before 0.2s ease forwards;
}
.tab-menu .tab-title > a {
  text-decoration: none;
  color: inherit;
}
.tab-menu .tab-title > a:hover {
  opacity: 0.6;
  transition: opacity linear 0.4s;
}
.tab-menu .tab-title.active {
  background: none;
  color: #5040B1;
  opacity: 1;
}
.tab-menu .tab-title.active:before {
  display: block;
}
.tab-menu .tab-title.active a:hover {
  opacity: 1;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

@keyframes animate-before {
  0% {
    height: 0;
  }
  100% {
    height: var(--before-height);
  }
}
@media screen and (max-width: 1100px) {
  .faq-video-slider {
    max-width: 500px;
  }
  .navigation-block {
    gap: 40px;
  }
  .tab-title {
    font-size: 18px;
  }
  .tab-menu {
    gap: 30px;
    width: 100%;
  }
}
@media screen and (max-width: 968px) {
  .navigation-block {
    gap: 10px;
  }
}
@media screen and (max-width: 860px) {
  .navigation-block {
    flex-direction: column;
    position: relative;
    top: 0;
  }
  .navigation-block__left {
    position: relative;
  }
  .tab-menu {
    overflow: scroll;
    flex-direction: row;
    top: 0;
    max-width: 100%;
    padding: 10px 0 10px;
  }
  .tab-menu:after {
    display: none;
  }
  .tab-menu .tab-title {
    --before-height: 5px !important;
    padding-bottom: 25px;
    position: relative;
  }
  .tab-menu .tab-title:before {
    width: 100%;
    left: 0;
    top: initial;
    bottom: -3.5px;
  }
  .tab-menu .tab-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: calc(100% + 50px);
    height: 3px;
    background: #B0B0B0;
    border-radius: 3px;
    z-index: 0;
  }
  .tab-menu .tab-title:last-child:after {
    width: 100%;
  }
  .tab-menu .tab-title > a {
    display: flex;
    width: max-content;
    font-size: 15px;
  }
  .faq-content__title {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 20px;
  }
  .faq-video-slider {
    margin-bottom: 30px;
  }
  .faq-nav-title {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .faq-content__title {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 28px;
  }
  .navigation-block__right {
    padding: 20px 15px;
  }
  .faq-about-crypto {
    padding: 0;
  }
  .faq-liability-information {
    padding: 0;
  }
}
.contacts-wrap {
  margin-top: 80px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 100px;
  margin-bottom: 100px;
}
.contacts-wrap__left {
  width: 100%;
}
.contacts-wrap__right {
  width: 100%;
  max-width: 430px;
}
.contacts-wrap .mb-25 {
  margin-bottom: 0;
}

.contacts-title {
  font-family: Unbounded, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 59.52px;
  margin-bottom: 20px;
}

.contacts-subtitle {
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 29.26px;
  margin-bottom: 50px;
}

.contacts-form {
  padding: 30px;
  background: #fff;
  border-radius: 30px;
}
.contacts-form__label {
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 24.38px;
  color: #979797;
  margin-bottom: 15px;
}
.contacts-form__checkboxes {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.contacts-form__textarea {
  min-height: 130px !important;
}

.custom-form-control.form-control {
  width: 100%;
  display: block;
  border-radius: 10px !important;
  padding: 20px !important;
  border: none;
  background: #F3F4F6;
  font-family: Montserrat, "sans-serif";
  font-size: 20px;
  font-weight: 400;
  line-height: 24.38px;
  margin-bottom: 20px;
}
.custom-form-control.form-control::placeholder {
  color: #979797;
}
.custom-form-control.form-control:focus {
  background: #F3F4F6;
}

.custom-form-select.form-select {
  width: 100%;
  display: block;
  border-radius: 10px !important;
  padding: 20px !important;
  border: none;
  background: #F3F4F6;
  font-family: Montserrat, "sans-serif";
  font-size: 20px;
  font-weight: 400;
  line-height: 24.38px;
  margin-bottom: 20px;
}

.opt:disabled .custom-form-select .form-select {
  color: #979797 !important;
}

.form-check-label {
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 24.38px;
}

.contacts-our-contacts__wrap {
  border-bottom: 1px solid #D3D3D3;
  padding-bottom: 35px;
}
.contacts-our-contacts__wrap:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.contacts-our-contacts__title {
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 29.26px;
  color: #1C1C1C;
  margin-bottom: 25px;
}
.contacts-our-contacts__contact {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 44.52px;
  color: #1C1C1C;
}
.contacts-our-contacts__contact > a {
  color: inherit;
  text-decoration: none;
}
.contacts-our-contacts__contact:last-child {
  margin-bottom: 0;
}
.contacts-our-contacts__social {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid #D3D3D3;
  padding: 35px 0;
  margin-bottom: 30px;
}
.contacts-our-contacts__address {
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 29.26px;
  margin-bottom: 30px;
}
.contacts-our-contacts__address > .contacts-our-contacts__title {
  margin-bottom: 0;
}

.title-block {
  max-width: 670px;
  width: 100%;
}

@media screen and (max-width: 1000px) {
  .contacts-title {
    font-size: 42px;
  }
  .contacts-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .contacts-our-contacts__contact {
    font-size: 18px;
  }
  .contacts-our-contacts__title {
    font-size: 22px;
  }
  .contacts-our-contacts__wrap {
    padding-bottom: 30px;
  }
  .contacts-our-contacts__social {
    padding: 30px 0;
  }
  .contacts-our-contacts__address {
    font-size: 20px;
  }
  .contacts-wrap {
    margin-bottom: 80px;
    gap: 80px;
  }
}
@media screen and (max-width: 968px) {
  .contacts-wrap {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  .contacts-wrap__right {
    max-width: 670px;
  }
  .contacts-wrap__left {
    max-width: 670px;
  }
  .title-block-wrap {
    display: flex;
    justify-content: center;
  }
  .contacts-wrap {
    display: flex;
    align-items: center;
    margin-top: 0;
  }
}
@media screen and (max-width: 860px) {
  .contacts-wrap {
    margin-top: 20px;
    gap: 20px;
  }
  .contacts-subtitle {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .contacts-title {
    font-size: 38px;
  }
  .custom-form-control.form-control {
    font-size: 16px;
  }
  .custom-form-control.form-control::placeholder {
    font-size: 16px;
  }
  .custom-form-select.form-select {
    font-size: 16px;
  }
  .form-check-label {
    font-size: 16px;
  }
  .contacts-form__label {
    font-size: 16px;
  }
  .contacts-our-contacts__title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .contacts-our-contacts__contact {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .contacts-our-contacts__social {
    margin-bottom: 15px;
    padding: 15px 0;
  }
  .contacts-our-contacts__address {
    font-size: 16px;
  }
  .contacts-our-contacts__wrap {
    padding-bottom: 15px;
  }
}
.about-us-main {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 65px;
}
.about-us-main__title {
  font-family: Unbounded, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 59.52px;
  color: #1C1C1C;
  margin-bottom: 17px;
}
.about-us-main__title_dark {
  font-weight: 700;
  color: #5040B1;
}
.about-us-main__get-sum-btn {
  display: block;
  padding: 25px !important;
  font-weight: 700;
  font-size: 20px;
  width: fit-content;
}
.about-us-main__get-sum-mobile-btn {
  display: none;
}
.about-us-main__subtitle {
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 24.38px;
  color: #1C1C1C;
  margin-bottom: 40px;
}
.about-us-main__left {
  width: 100%;
  max-width: 620px;
}
.about-us-main__right {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-us-card {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 10px;
  background: #EDEBF0;
  border-radius: 77px;
  padding: 10px 20px 10px 10px;
  min-width: 250px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 24.38px;
}
.about-us-card:nth-child(even) {
  flex-direction: row-reverse;
  align-self: end;
  padding: 10px 10px 10px 20px;
  justify-content: flex-start;
}

.about-us-workers {
  padding: 60px 45px;
  background: #fff;
  border-radius: 30px;
  margin: 100px 0;
}
.about-us-workers__title {
  font-family: Unbounded, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 59.52px;
  color: #1C1C1C;
  margin-bottom: 20px;
}
.about-us-workers__subtitle {
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 29.26px;
  color: #1C1C1C;
  margin-bottom: 50px;
}

.about-us-workers-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.about-us-worker-card {
  font-family: Montserrat, sans-serif;
  width: 100%;
  max-width: 250px;
}
.about-us-worker-card__image-wrap {
  overflow: hidden;
  border-radius: 100%;
  width: 250px;
  height: 250px;
  margin-bottom: 20px;
}
.about-us-worker-card__image {
  width: 100%;
  height: 100%;
}
.about-us-worker-card__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 34.13px;
  text-align: center;
  margin-bottom: 5px;
}
.about-us-worker-card__subtitle {
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
  text-align: center;
  margin-bottom: 20px;
  color: #7B7B7B;
}
.about-us-worker-card__content {
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  text-align: center;
  color: #1C1C1C;
}

.why-easy > .why-usdt__wrap {
  align-items: end;
}
.why-easy > .why-usdt__title-blok {
  margin-bottom: 20px;
}
.why-easy__subtitle {
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 24.38px;
  color: #fff;
  max-width: 520px;
  margin-bottom: 30px;
}

.why-easy-card:nth-child(2) {
  margin-top: 0;
}

@media screen and (max-width: 1000px) {
  .about-us-main__title {
    font-size: 40px;
  }
  .about-us-workers {
    margin: 50px 0;
    padding: 30px;
  }
  .about-us-workers__title {
    font-size: 40px;
  }
  .about-us-workers__subtitle {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 860px) {
  .about-us-main {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    align-items: baseline;
  }
  .about-us-main__title {
    font-size: 38px;
    line-height: 40px;
  }
  .about-us-main__get-sum-btn {
    display: none;
  }
  .about-us-main__get-sum-mobile-btn {
    display: block;
    padding: 25px !important;
    font-weight: 700;
    font-size: 20px;
    width: fit-content;
    margin-top: 50px;
  }
  .about-us-main__left {
    max-width: 500px;
  }
  .about-us-workers__title {
    font-size: 38px;
    line-height: 40px;
  }
}
@media screen and (max-width: 658px) {
  .about-us-workers-block {
    justify-content: flex-start;
  }
  .about-us-worker-card__title {
    text-align: left;
  }
  .about-us-worker-card__subtitle {
    text-align: left;
  }
  .about-us-worker-card__content {
    text-align: left;
  }
}
@media screen and (max-width: 540px) {
  .about-us-main__get-sum-mobile-btn {
    width: 100%;
  }
}
@media screen and (max-width: 460px) {
  .about-us-main__get-sum-mobile-btn {
    padding: 20px !important;
    margin-top: 30px;
  }
}
body {
  background: #EDEBF0;
}

.header {
  margin-bottom: 100px;
}

.promotions {
  display: flex;
  gap: 30px;
}

.promotions-sidebar {
  width: 100%;
  max-width: 320px;
}
.promotions-sidebar__title {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  color: #1C1C1C;
  margin-bottom: 30px;
}
.promotions-sidebar__wrap {
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}
.promotions-sidebar__wrap:before {
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  background: #5040B1;
  position: absolute;
  min-height: calc(100% + 25px);
  top: 0;
  left: 0;
}
.promotions-sidebar__item {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: #1C1C1C;
  padding-left: 20px;
}

.promotions-cards {
  width: 100%;
  max-width: 790px;
  min-height: 700px;
  background: #FFFFFF;
  border-radius: 30px;
  padding: 32px 25px;
  margin-bottom: 150px;
}
.promotions-cards__title {
  font-family: Unbounded, sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #1C1C1C;
  margin-bottom: 30px;
}
.promotions-cards__wrap {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.promotion-card {
  width: 100%;
  max-width: 240px;
  border-radius: 12px;
  background-color: #EDEBF0;
}
.promotion-card__image-wrap {
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.promotion-card__content-wrap {
  padding: 30px 16px 16px;
  position: relative;
}
.promotion-card__title {
  font-family: Unbounded, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #121212;
  margin-bottom: 20px;
}
.promotion-card__subtitle {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.2px;
  color: #959393;
}
.promotion-card .btn-primary {
  border-radius: 8px;
  width: 115px;
  padding: 8px;
  font-size: 12px;
}
.promotion-card .date-block {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 5px 10px;
  top: -30px;
  right: 15px;
  box-shadow: 0 2px 4px 0 rgba(96, 97, 112, 0.1607843137);
}
.promotion-card .date-block__date {
  font-family: SF Pro Display, sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0;
  color: #121212;
}
.promotion-card .date-block__month {
  font-family: SF Pro Display, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.2px;
  text-align: center;
  color: #121212;
}

.promotions__scrollbar {
  display: none;
  position: relative;
  height: 5px;
  background: #B0B0B0;
  border-radius: 5px;
}

.promotions__scroll-thumb {
  background: #4A2DD6;
  width: 50px;
  height: 8px;
  position: relative;
  bottom: 1px;
  cursor: pointer;
  border-radius: 20px;
}

@media screen and (max-width: 1160px) {
  .promotions-sidebar__item .link {
    font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
  .header {
    margin-bottom: 50px;
  }
  .promotions-cards__title {
    font-size: 30px;
  }
  .promotions-sidebar {
    max-width: 280px;
  }
  .promotions-sidebar__item .link {
    font-size: 16px;
  }
  .promotions {
    gap: 20px;
  }
}
@media screen and (max-width: 968px) {
  .promotions-cards__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 860px) {
  .header {
    margin-bottom: 40px;
  }
  .promotions {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .promotions__scrollbar {
    display: block;
  }
  .promotions-cards {
    margin-bottom: 50px;
  }
  .promotions-cards__title {
    font-size: 26px;
  }
  .promotions-sidebar {
    max-width: 100%;
    margin-bottom: 50px;
    position: relative;
  }
  .promotions-sidebar__title {
    text-align: center;
    margin-bottom: 20px;
  }
  .promotions-sidebar__wrap {
    display: flex;
    flex-direction: row;
    max-width: 100%;
    padding-top: 0;
    padding-bottom: 30px;
    overflow: hidden;
  }
  .promotions-sidebar__wrap::before {
    display: none;
  }
  .promotions-sidebar__item {
    padding-left: 0;
    min-width: max-content;
  }
}
@media screen and (max-width: 768px) {
  .promotions-cards__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .promotions-cards__title {
    font-size: 20px;
  }
}
.promotion-detail {
  padding: 32px 70px;
  background: #FFFFFF;
  border-radius: 30px;
  margin-bottom: 50px;
}
.promotion-detail__date {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  color: #1C1C1C;
  text-align: center;
  margin-bottom: 20px;
}
.promotion-detail__title {
  font-family: Unbounded, sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #1C1C1C;
  margin-bottom: 50px;
}
.promotion-detail__image-wrap {
  display: flex;
  justify-content: center;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 40px;
}
.promotion-detail__content {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  color: #1C1C1C;
}
.promotion-detail__actions {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.another-promotion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.another-promotion__title {
  font-family: Unbounded, sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0;
  color: #1C1C1C;
}
.another-promotion__actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.another-promotion__actions-mobile {
  display: none;
  justify-content: center;
  gap: 10px;
}
.another-promotion__actions-mobile > .promotion-detail-swiper-btn {
  margin-top: 20px;
}

.promotion-detail-quote {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.promotion-detail-quote__wrap {
  max-width: 920px;
  width: 100%;
}
.promotion-detail-quote__quote {
  padding: 20px;
  margin-bottom: 10px;
  position: relative;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  color: #1C1C1C;
}
.promotion-detail-quote__quote:after {
  content: "";
  display: block;
  width: 5px;
  height: 100%;
  max-height: 105px;
  position: absolute;
  top: 0;
  left: 0;
  background: #7C4EE4;
}
.promotion-detail-quote__author {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
}

.promotion-detail-swiper-btn.slider-btn, .promotion-detail-swiper-btn.tag-slider-btn-mobile {
  width: 40px;
  height: 40px;
}
.promotion-detail-swiper-btn.slider-btn > svg, .promotion-detail-swiper-btn.tag-slider-btn-mobile > svg {
  width: 70%;
  height: 70%;
}
.promotion-detail-swiper-btn--prev {
  rotate: 180deg;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

@media screen and (max-width: 1000px) {
  .promotion-detail__date {
    margin-bottom: 15px;
  }
  .promotion-detail__title {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .another-promotion__title {
    font-size: 30px;
  }
}
@media screen and (max-width: 968px) {
  .promotion-detail__title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .promotion-detail__image-wrap {
    margin-bottom: 30px;
  }
  .another-promotion__title {
    font-size: 28px;
  }
  .header {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 860px) {
  .promotion-detail {
    padding: 32px 50px;
  }
}
@media screen and (max-width: 768px) {
  .promotion-detail {
    padding: 32px;
  }
  .promotion-detail__title {
    font-size: 26px;
    margin-bottom: 25px;
  }
  .promotion-detail__actions {
    margin-bottom: 30px;
  }
  .header {
    margin-bottom: 30px;
  }
  .another-promotion {
    margin-bottom: 20px;
  }
  .another-promotion__title {
    font-size: 26px;
  }
  .another-promotion__actions {
    display: none;
  }
  .another-promotion__actions-mobile {
    display: flex;
  }
}
@media screen and (max-width: 600px) {
  .promotion-detail__title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .another-promotion__title {
    font-size: 22px;
  }
}
@media screen and (max-width: 540px) {
  .promotion-detail {
    padding: 20px;
  }
  .promotion-detail__title {
    font-size: 20px;
  }
  .another-promotion__title {
    font-size: 20px;
  }
}
.content-wrap {
  margin: 0 auto;
}

.hero-banner {
  background: url("/data/images/webmaster-hero-banner.svg") no-repeat center center/cover;
  height: 745px;
}
.hero-banner .header__nav a {
  color: #FFFFFF;
}
.hero-banner .header__btns a {
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}
.hero-banner h1 {
  color: #FFFFFF;
  text-align: center;
  font: 700 44px "Unbounded", sans-serif;
  margin-top: 80px;
}
.hero-banner p {
  color: #979797;
  text-align: center;
}
.hero-banner .webmaster-form-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 40px 30px;
  position: relative;
}
.hero-banner .webmaster-form-card__title {
  font: 400 36px "Unbounded", sans-serif;
  line-height: 30px;
  color: #000000;
}
.hero-banner .webmaster-form-card__subtitle {
  font: 400 16px Montserrat, sans-serif;
  color: #979797;
  text-align: start;
}
.hero-banner .webmaster-form-card .webmaster-form {
  display: flex;
}
.hero-banner .webmaster-form-card .webmaster-form__input {
  border-radius: 10px;
  border: 1px solid #E2E2E2;
  padding: 20px 30px;
  font: 400 20px Montserrat, "sans-serif";
  background: #F3F4F6;
}
.hero-banner .webmaster-form-card .webmaster-form__input::placeholder {
  color: #979797;
}
.hero-banner .webmaster-form-card .webmaster-form__submit {
  padding: 20px 30px;
  width: 100%;
  color: #ffffff;
  font: 600 20px Montserrat, sans-serif;
}
.hero-banner .webmaster-form-card::before {
  content: "";
  background: url("/data/images/coin-digi.svg") no-repeat center/contain;
  width: 169px;
  height: 178px;
  position: absolute;
  top: -64%;
  left: 0;
}

.webmaster-offer {
  padding: 60px 0;
  background-color: #EDEBF0;
}
.webmaster-offer .content-wrap {
  display: flex;
  background-color: #FFFFFF;
  padding: 50px;
  border-radius: 30px;
  gap: 30px;
}
.webmaster-offer-wrapper {
  flex-basis: 40%;
  display: flex;
  flex-direction: column;
}
.webmaster-offer-wrapper__title {
  font: 400 48px Unbounded, "sans-serif";
  color: #1C1C1C;
}
.webmaster-offer-wrapper__subtitle {
  font: 400 20px/20px Montserrat, "sans-serif";
  color: #979797;
  margin: 15px 0;
}
.webmaster-offer-wrapper__button {
  font: 600 20px Montserrat, "sans-serif";
}
.webmaster-offer__cards {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-basis: 60%;
  gap: 15px;
}
.webmaster-offer__cards .webmaster-offer-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #EDEBF0;
  border-radius: 77px;
  padding: 10px;
  width: 80%;
}
.webmaster-offer__cards .webmaster-offer-card__icon {
  min-width: 60px;
  border-radius: 50%;
  background: #5040B1;
  padding: 10px;
}
.webmaster-offer__cards .webmaster-offer-card__text {
  font: 400 18px Montserrat, "sans-serif";
  color: #666666;
}
.webmaster-offer__cards .webmaster-offer-card.reverse-card {
  flex-direction: row-reverse;
  text-align: end;
}
.webmaster-offer__cards .webmaster-offer-card:last-child {
  align-self: flex-end;
}
.webmaster-offer__cards .second-row-wrapper {
  display: flex;
  gap: 15px;
}

.collaboration-formats {
  padding: 50px 0;
  background: linear-gradient(90deg, #170E4D 0%, #261975 100%);
}
.collaboration-formats__title {
  font: 400 48px Unbounded, "sans-serif";
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}
.collaboration-formats__cards {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  flex-wrap: wrap;
}
.collaboration-formats__card {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  background-color: #322388;
  border-radius: 10px;
  padding: 24px;
  width: 222px;
}
.collaboration-formats__card p {
  font: 400 20px/100% Montserrat, "sans-serif";
  color: rgb(227, 227, 227);
}
.collaboration-formats__card__img-wrapper {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #533FB8 0%, #4A2DD6 100%);
  box-shadow: 0 0 25px 0 rgba(0, 178, 255, 0.25);
  border-radius: 50%;
}
.collaboration-formats__card__img-wrapper img {
  max-width: fit-content;
}
.collaboration-formats .traffic-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
}
.collaboration-formats .traffic-note p {
  font: 400 20px/100% Montserrat, "sans-serif";
  color: rgb(227, 227, 227);
}
.collaboration-formats .traffic-note__img-wrapper {
  width: 28px;
  height: 31px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}
.collaboration-formats .traffic-note__img-wrapper:before {
  content: "";
  background: url("/data/images/pin-icon.svg") no-repeat center/contain;
  width: 100%;
  height: 100%;
  position: absolute;
  transform: scale(3.5);
}

.modal-thank {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal-thank.is-open {
  display: flex;
}
.modal-thank__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.modal-thank__dialog {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  width: 570px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.modal-thank__dialog img {
  height: 264px;
  width: 264px;
}
.modal-thank__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: rgb(151, 151, 151);
  cursor: pointer;
}
.modal-thank__title {
  font: 600 44px/46px "Montserrat", sans-serif;
  color: rgb(80, 64, 177);
}
.modal-thank .btn, .modal-thank .btn-primary, .modal-thank .btn-secondary, .modal-thank .btn-outline, .modal-thank .light-btn, .modal-thank .have-question-btn {
  width: 100%;
  color: rgb(255, 255, 255);
  font: 600 20px Montserrat, sans-serif;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .hero-banner {
    height: auto;
    padding: 10px 10px 50px 10px;
  }
  .hero-banner h1 {
    font: 700 26px "Unbounded", sans-serif;
    text-align: start;
    margin-top: 20px;
  }
  .hero-banner p {
    text-align: start;
    font-size: 16px;
  }
  .hero-banner .webmaster-form-card__title {
    font: 400 20px "Unbounded", sans-serif;
    text-align: center;
  }
  .hero-banner .webmaster-form-card__subtitle {
    font: 400 14px "Unbounded", sans-serif;
  }
  .hero-banner .webmaster-form-card::before {
    display: none;
  }
  .hero-banner .webmaster-form-card .webmaster-form {
    flex-direction: column;
    gap: 10px;
  }
  .hero-banner .webmaster-form-card .webmaster-form__input {
    font: 400 16px Montserrat, "sans-serif";
  }
  .hero-banner .webmaster-form-card .webmaster-form__submit {
    margin-top: 30px;
  }
  .webmaster-offer .content-wrap {
    flex-wrap: wrap;
    padding: 25px;
    gap: 15px;
  }
  .webmaster-offer-wrapper {
    flex-basis: 100%;
  }
  .webmaster-offer-wrapper__title {
    font: 400 24px Unbounded, "sans-serif";
    text-align: center;
  }
  .webmaster-offer-wrapper__subtitle {
    font: 400 16px/20px Montserrat, "sans-serif";
  }
  .webmaster-offer-wrapper__button {
    display: none;
  }
  .webmaster-offer__cards {
    flex-basis: 100%;
  }
  .webmaster-offer__cards .webmaster-offer-card {
    width: 100%;
  }
  .webmaster-offer__cards .webmaster-offer-card__text {
    font: 400 15px Montserrat, "sans-serif";
  }
  .webmaster-offer__cards .webmaster-offer-card br {
    display: none;
  }
  .webmaster-offer__cards .second-row-wrapper {
    flex-wrap: wrap;
  }
  .webmaster-offer__cards .second-row-wrapper div:first-child {
    flex-direction: row-reverse;
    text-align: end;
  }
  .webmaster-offer__cards .second-row-wrapper div:last-child {
    flex-direction: row;
    text-align: start;
  }
  .collaboration-formats {
    padding: 40px 0;
  }
  .collaboration-formats__title {
    font: 400 28px Unbounded, "sans-serif";
    margin-bottom: 20px;
  }
  .collaboration-formats__cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .collaboration-formats__card {
    width: 100%;
  }
  section.modal-thank h2 {
    font: 600 28px/120% "Montserrat", sans-serif;
  }
  section.modal-thank .modal-thank__dialog img {
    width: 129px;
    height: 135px;
  }
}
.header-section {
  background: #FFFFFF;
  padding-bottom: 40px;
}

.btn-primary {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.title-block-wrap {
  display: flex;
}
.title-block-wrap .title-block {
  margin-top: 25px;
}
.title-block-wrap .title-block .title {
  font-weight: 400;
  font-family: "Unbounded", sans-serif;
  font-size: 48px;
  line-height: 100%;
  margin-bottom: 20px;
}
.title-block-wrap .title-block .title .custom-brand {
  font-weight: 700;
  color: #5040B1;
}
.title-block-wrap .title-block .subtitle {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}
.title-block-wrap .image-block .btn-primary {
  display: none;
}

.how-to-install {
  padding-top: 100px;
}
.how-to-install .content-wrap {
  display: flex;
}
.how-to-install .content-wrap .left-block {
  flex-basis: 40%;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.how-to-install .content-wrap .left-block .title {
  font-weight: 400;
  font-family: "Unbounded", sans-serif;
  font-size: 36px;
  line-height: 100%;
  margin-bottom: 20px;
}
.how-to-install .content-wrap .left-block .subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  margin-bottom: 30px;
}
.how-to-install .content-wrap .left-block picture {
  display: flex;
  justify-content: center;
}
.how-to-install .content-wrap .right-block {
  flex-basis: 60%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.how-to-install .content-wrap .right-block .card {
  padding: 25px 25px 15px 25px;
  border-radius: 16px;
}
.how-to-install .content-wrap .right-block .card .title {
  width: max-content;
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  line-height: 120%;
}
.how-to-install .content-wrap .right-block .card .subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
}
.how-to-install .content-wrap .right-block .card .btn-primary {
  max-width: max-content;
}

@media screen and (max-width: 1000px) {
  .how-to-install .content-wrap {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .title-block-wrap {
    flex-direction: column;
    align-items: center;
  }
  .how-to-install {
    padding-top: 50px;
  }
  .how-to-install .content-wrap .right-block .card .title {
    width: auto;
  }
}
@media screen and (max-width: 480px) {
  .title-block-wrap {
    flex-direction: column;
  }
  .title-block-wrap .title-block .btn-primary {
    display: none;
  }
  .title-block-wrap .title-block .title {
    font-size: 32px;
  }
  .title-block-wrap .image-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .title-block-wrap .image-block .btn-primary {
    display: block;
  }
  .title-block-wrap .image-block img {
    width: 220px;
    height: 310px;
  }
  .how-to-install .content-wrap .left-block .title {
    font-size: 28px;
  }
  .how-to-install .content-wrap .left-block .subtitle {
    font-size: 20px;
    line-height: 100%;
  }
  .how-to-install .content-wrap .right-block .card .btn-primary {
    padding: 15px 10px;
    max-width: 100%;
  }
}
@media screen and (max-width: 320px) {
  .title-block-wrap .title-block .title {
    font-size: 20px;
  }
}
p {
  margin-bottom: 0;
}

.main-page .header {
  padding-top: 40px;
  margin-bottom: 20px;
}
.main-page .header .link:hover {
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(135deg, rgb(199, 70, 255) 0%, rgb(70, 65, 239) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main-page .header__left {
  max-width: 100%;
}
.main-page .header .burger-wrap {
  display: none;
  align-items: center;
  background-color: #F4F3FF;
  padding: 8px 12px;
  border-radius: 8px;
}
.main-page .header .burger-wrap .menu-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  background: linear-gradient(135deg, rgb(199, 70, 255) 0%, rgb(70, 65, 239) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main-page .header .burger-wrap .burger-btn div {
  background: linear-gradient(135deg, rgb(199, 70, 255) 0%, rgb(70, 65, 239) 100%);
}

.main-banner {
  display: flex;
}
.main-banner .text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main-banner .title-section {
  font-family: Montserrat, "sans-serif";
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  color: #1C1C1C;
  margin-bottom: 50px;
}
.main-banner .title-section .pink-color {
  background: linear-gradient(135deg, rgb(199, 70, 255) 0%, rgb(70, 65, 239) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main-banner .social-media {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-banner .social-media .social-links {
  display: flex;
  gap: 15px;
}
.main-banner .social-media.mobile {
  display: none;
}
.main-banner .content-wrap-full {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.main-banner .loan-calculator {
  background: #FFFFFF;
  border: 1px solid #887AE8;
  border-radius: 24px;
  padding: 30px;
  width: 890px;
}
.main-banner .loan-calculator__title {
  font-family: Montserrat, "sans-serif";
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  color: #000000;
  margin-bottom: 10px;
}
.main-banner .loan-calculator__content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.main-banner .loan-calculator__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main-banner .loan-calculator__right {
  flex: 1;
  max-width: 400px;
  margin-top: 30px;
}
.main-banner .loan-calculator__btn {
  width: 100%;
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  margin-top: 30px;
  display: block;
  text-align: center;
}
.main-banner .calculator-field .calculator-field__currency, .main-banner .calculator-field .currency-bottom {
  font-family: Montserrat, "sans-serif";
  font-size: 14px;
  font-weight: 400;
  color: #878D97;
}
.main-banner .calculator-field .currency-bottom {
  font-size: 16px;
}
.main-banner .calculator-field__value {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.main-banner .calculator-field__value span:first-child {
  font-family: Montserrat, "sans-serif";
  font-size: 40px;
  font-weight: 400;
  color: #5040B0;
}
.main-banner .calculator-field__range {
  display: flex;
  justify-content: space-between;
}
.main-banner .calculator-slider {
  height: 24px;
  background: #F4F3FF;
  border-radius: 10px;
}
.main-banner .noUi-target {
  border: none;
  background: #F4F3FF;
  height: 24px;
  box-shadow: none;
  border-radius: 10px;
}
.main-banner .noUi-base {
  display: flex;
  align-items: center;
  height: 24px;
}
.main-banner .noUi-connects {
  height: 24px;
  border-radius: 24px;
}
.main-banner .noUi-connect {
  background: linear-gradient(135deg, rgb(199, 70, 255) 0%, rgb(70, 65, 239) 100%);
  height: 24px;
  border-radius: 10px;
}
.main-banner .noUi-horizontal .noUi-handle {
  border-radius: 50%;
  width: 28px;
  height: 28px;
  top: -2px;
  background: #FFFFFF;
  border: 5px solid rgba(224, 214, 255, 0.9);
  cursor: pointer;
  right: -12px;
}
.main-banner .noUi-horizontal .noUi-handle:before, .main-banner .noUi-horizontal .noUi-handle:after {
  display: none;
}
.main-banner .noUi-horizontal .noUi-handle:focus {
  outline: none;
}
.main-banner .noUi-horizontal .noUi-handle:hover {
  box-shadow: 0 4px 12px rgba(80, 64, 176, 0.3);
  transform: scale(1.1);
}
.main-banner .noUi-tooltip {
  display: none;
}
.main-banner .noUi-base {
  position: relative;
}
.main-banner .noUi-base:after, .main-banner .noUi-base:before {
  display: none;
}
.main-banner .calculator-info {
  background: #F4F3FF;
  border-radius: 16px;
  padding: 16px;
}
.main-banner .calculator-info__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-family: Montserrat, "sans-serif";
  font-size: 14px;
  color: #1C1C1C;
}
.main-banner .calculator-info__row:last-child {
  margin-bottom: 0;
}
.main-banner .calculator-info .return-date {
  font-family: Montserrat, "sans-serif";
  font-size: 16px;
}
.main-banner .calculator-info .promo-wrap {
  display: flex;
  justify-content: space-between;
}
.main-banner .calculator-info__promo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.main-banner .calculator-info .amount-pay {
  font-family: Montserrat, "sans-serif";
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
}
.main-banner .calculator-info__amount {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.main-banner .calculator-info__amount .old-amount {
  font-family: Montserrat, "sans-serif";
  font-size: 12px;
  color: #8E8E8E;
  text-decoration: line-through;
  line-height: 100%;
}
.main-banner .calculator-info__amount .new-amount {
  font-family: Montserrat, "sans-serif";
  font-size: 16px;
  font-weight: 600;
  color: #5040B0;
  line-height: 100%;
}
.main-banner .loan-calculator__btn {
  box-shadow: -7px 10px 22.9px 0px rgba(80, 64, 176, 0.5);
}
.main-banner .promo-badge {
  background: linear-gradient(135deg, rgb(80, 64, 176) 0%, rgb(20, 0, 139) 100%);
  color: #FFFFFF;
  padding: 2px 4px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  transform: rotate(356deg);
}

.sale {
  margin-top: 20px;
}
.sale .content-wrap-full .sale-banners-swiper {
  width: 100%;
  overflow: hidden;
}
.sale .content-wrap-full .sale-banners-swiper .swiper-slide {
  border-radius: 16px;
}
.sale .content-wrap-full .banner-1, .sale .content-wrap-full .banner-2, .sale .content-wrap-full .banner-element {
  height: 340px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 16px;
  text-decoration: none;
  display: block;
  cursor: pointer;
  transition: opacity 0.3s ease;
  width: 100%;
  background-size: auto;
  padding: 20px;
  position: relative;
}
.sale .content-wrap-full .banner-1:hover, .sale .content-wrap-full .banner-2:hover, .sale .content-wrap-full .banner-element:hover {
  opacity: 0.8;
}
.sale .content-wrap-full .link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.sale .content-wrap-full .banner-1 {
  background-image: url("/data/images/banner_sale_1.png");
}
.sale .content-wrap-full .arrow-btn {
  justify-self: flex-end;
  width: 44px;
  height: 44px;
}
.sale .content-wrap-full .banner-2 {
  background-image: url("/data/images/banner_sale_2.png");
}
.sale .content-wrap-full .banner-2 .top-row, .sale .content-wrap-full .banner-element .top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.sale .content-wrap-full .banner-2 .logo-wrap, .sale .content-wrap-full .banner-element .logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sale .content-wrap-full .banner-2 .logo-wrap .title, .sale .content-wrap-full .banner-element .logo-wrap .title {
  font-family: Montserrat, "sans-serif";
  font-size: 14px;
  line-height: 16px;
  color: #FFFFFF;
}
.sale .content-wrap-full .banner-2 .banner-title-wrap .banner-title, .sale .content-wrap-full .banner-element .banner-title-wrap .banner-title {
  font-family: Montserrat, "sans-serif";
  font-weight: 700;
  font-size: 46px;
  line-height: 40px;
  color: #ECEE45;
}

.news-and-promo .top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.news-and-promo .btn-secondary.mobile {
  display: none;
}
.news-and-promo .section-title {
  font-family: Montserrat, "sans-serif";
  font-size: 40px;
  line-height: 100%;
  font-weight: 700;
  background: linear-gradient(135deg, rgb(199, 70, 255) 0%, rgb(70, 65, 239) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.news-and-promo .slider-wrap .card {
  padding: 20px;
  background: #F4F3FF;
  border-radius: 16px;
  max-width: 283px;
  height: 290px;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.news-and-promo .slider-wrap .card .banner-img {
  max-width: 370px;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out 0.2s;
}
.news-and-promo .slider-wrap .card .top-label {
  display: flex;
  justify-content: space-between;
}
.news-and-promo .slider-wrap .card .top-label span {
  color: #7B6E9A;
  font-family: Montserrat, "sans-serif";
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.2px;
}
.news-and-promo .slider-wrap .card .title {
  font-family: Montserrat, "sans-serif";
  font-size: 20px;
  line-height: 120%;
  font-weight: 500;
  color: #1C1C1C;
}
.news-and-promo .slider-wrap .card .subtitle {
  display: none;
  font-family: Montserrat, "sans-serif";
  font-size: 14px;
  line-height: 120%;
  font-weight: 500;
  color: #7B6E9A;
}
.news-and-promo .slider-wrap .card .text-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-and-promo .slider-wrap .card .btn-more {
  font-family: Montserrat, "sans-serif";
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  color: #5040B0;
  border-radius: 16px;
  border: 1px solid #5040B0;
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  width: max-content;
  gap: 10px;
  height: 46px;
}
.news-and-promo .slider-wrap .card .btn-more:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(80, 64, 176, 0.3);
}
.news-and-promo .slider-wrap .card.active {
  display: flex;
  flex-direction: row;
  gap: 20px;
  max-width: 880px;
  width: 880px !important;
  box-shadow: 0 8px 32px rgba(80, 64, 176, 0.15);
}
.news-and-promo .slider-wrap .card.active .subtitle, .news-and-promo .slider-wrap .card.active .banner-img {
  display: block;
  opacity: 1;
}
.news-and-promo .slider-wrap .card.active .title {
  transform: translateY(-2px);
}

.benefits .content-wrap-full {
  padding: 50px 0 50px 50px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.benefits .section-title {
  font-family: Montserrat, "sans-serif";
  font-weight: 700;
  line-height: 90px;
  font-size: 100px;
  color: #FFFFFF;
}
.benefits .slider-wrap {
  max-width: 1180px;
  align-self: flex-end;
  transform: translateY(-39px);
}
.benefits .benefits-loan-swiper .swiper-wrapper {
  display: flex;
  justify-content: flex-end;
  flex-direction: row-reverse;
}
.benefits .benefits-loan-swiper .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
  width: 344px;
  height: 329px;
  padding: 32px 32px 0;
  background-color: rgba(255, 255, 255, 0.8);
}
.benefits .benefits-loan-swiper .card .title {
  font-family: Montserrat, "sans-serif";
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  color: #1C1C1C;
  margin-bottom: 0;
}
.benefits .benefits-loan-swiper .card .subtitle {
  font-family: Montserrat, "sans-serif";
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  color: #7B6E9A;
}

.we-trust-you .section-title {
  font-family: Montserrat, "sans-serif";
  color: #5040B0;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}
.we-trust-you .section-subtitle {
  font-family: Montserrat, "sans-serif";
  font-weight: 500;
  line-height: 120%;
  font-size: 16px;
  color: #7B6E9A;
  text-align: center;
  margin-bottom: 50px;
}
.we-trust-you .benefits-swiper .card {
  background-color: #F4F3FF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  height: 330px;
  background-size: cover;
  justify-content: flex-start;
}
.we-trust-you .benefits-swiper .card .title {
  font-family: Montserrat, "sans-serif";
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #5040B0;
}
.we-trust-you .benefits-swiper .card .subtitle {
  font-family: Montserrat, "sans-serif";
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #7B6E9A;
}
.we-trust-you .benefits-swiper .card-1 {
  background-image: url("/data/images/benefit-card-1.svg");
}
.we-trust-you .benefits-swiper .card-2 {
  background-image: url("/data/images/benefit-card-2.svg");
}
.we-trust-you .benefits-swiper .card-3 {
  background-image: url("/data/images/benefit-card-3.svg");
}
@media (min-width: 1024px) {
  .we-trust-you .benefits-swiper {
    overflow: visible;
  }
  .we-trust-you .benefits-swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    transform: none !important;
  }
  .we-trust-you .benefits-swiper .swiper-slide {
    width: auto !important;
  }
  .we-trust-you .benefits-swiper .swiper-pagination {
    display: none;
  }
}

.questions .content-wrap-full {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px;
  padding: 32px;
}
.questions .btn-cta {
  padding: 16px 24px;
}
.questions .title {
  font-family: Montserrat, "sans-serif";
  font-size: 40px;
  font-weight: 700;
  color: #FFFFFF;
}

.space-trust .content-wrap-full {
  padding: 50px;
}
.space-trust .section-title {
  font-family: Montserrat, "sans-serif";
  font-weight: 700;
  line-height: 90px;
  font-size: 100px;
  text-align: center;
  background: linear-gradient(135deg, rgb(199, 70, 255) 0%, rgb(70, 65, 239) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.space-trust .text-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.space-trust .text-wrap .left-block, .space-trust .text-wrap .right-block {
  background: rgba(255, 255, 255, 0.8);
  padding: 32px;
  border-radius: 16px;
  max-width: 670px;
  transform: translateY(-29px);
}
.space-trust .text-wrap .left-block img {
  margin-top: 50px;
}
.space-trust .text-wrap .right-block .subtitle.mobile {
  display: none;
}
.space-trust .text-wrap .title {
  font-family: Montserrat, "sans-serif";
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
}
.space-trust .text-wrap .subtitle {
  font-family: Montserrat, "sans-serif";
  font-size: 14px;
  font-weight: 500;
  color: #7B6E9A;
  margin-bottom: 20px;
}
.space-trust .text-wrap .btn-secondary {
  width: 100%;
  padding: 16px 24px;
}

.badges {
  padding: 50px 0;
  margin-inline: auto;
}

.badge {
  display: inline-block;
  white-space: nowrap;
  padding: 16px 24px;
  border-radius: 8px;
  background: #F4F3FF;
  color: #5040B0;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  line-height: 100%;
  font-size: 16px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04) inset;
}

.badges-swiper .swiper-slide {
  width: auto;
}

@media (min-width: 768px) {
  .badges {
    padding: 50px 0;
  }
  .badges-swiper {
    display: flex;
    justify-content: center;
  }
  .badges-swiper .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 16px;
    row-gap: 18px;
    padding: 8px 0;
    transform: none !important;
  }
  .badges-swiper .swiper-slide {
    width: auto !important;
    flex: 0 0 auto;
  }
}
.document-card {
  width: 100%;
  max-width: 330px;
  border-radius: 10px;
  padding: 25px 35px;
  background: linear-gradient(180deg, color(display-p3 0.855 0.824 0.925) 0%, color(display-p3 0.969 0.969 0.969) 100%);
}
.document-card__image {
  margin-bottom: 50px;
}
.document-card__title {
  font-family: Montserrat, "sans-serif";
  font-size: 20px;
  font-weight: 400;
  line-height: 24.38px;
  color: #1C1C1C;
}
.document-card__subtitle {
  font-family: Montserrat, "sans-serif";
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
  color: #7B7B7B;
  margin-top: 15px;
}
.document-card:nth-child(2) {
  padding: 35px 25px;
}
.document-card:nth-child(2) .document-card__image {
  margin-bottom: 58px;
}
.document-card:nth-child(3) {
  padding: 53px 32px 30px;
}
.document-card:nth-child(3) .document-card__image {
  margin-bottom: 75px;
}

.labels-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.labels-block__wrap {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.label {
  display: flex;
  gap: 10px;
  align-items: center;
}
.label__mark {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background: #5040B1;
}
.label__mark_second {
  background: #8073CA;
}
.label__mark_third {
  background: #C7BFF5;
}
.label__text {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14.63px;
}

.circles-block {
  position: relative;
  width: 233px;
  height: 233px;
}

.get-credit-mobile-btn {
  display: none;
  margin-bottom: 10px;
  font-weight: bold;
}

.tag-slider-btn-mobile {
  display: none;
  margin-top: 0;
}
.tag-slider-btn-mobile--prev {
  transform: rotate(180deg);
}

.content-light-block {
  flex-direction: column;
  align-items: center;
}

.referral-block {
  padding: 40px 60px;
  border-radius: 30px;
  width: 100%;
  background: linear-gradient(90deg, #180E50 0%, #29187A 100%), linear-gradient(90deg, color(display-p3 0.09 0.055 0.302) 0%, color(display-p3 0.149 0.098 0.459) 100%);
  position: relative;
  margin-top: 130px;
}
.referral-block__wrap {
  display: flex;
}
.referral-block__title {
  font-family: Montserrat, sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 58.51px;
  max-width: 720px;
  color: #fff;
  margin-bottom: 40px;
}
.referral-block__title_bold {
  font-weight: 700;
}

.referral-btn-mobile {
  display: none;
}

.referral-card {
  min-width: max-content;
  padding: 20px;
  display: flex;
  font-family: Montserrat, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 73.03px;
  color: #fff;
  border-radius: 20px;
  background: #5040B1;
  transform: rotate(-15deg);
  width: fit-content;
  margin-left: -160px;
  margin-top: 60px;
}

.referral-btn {
  color: white;
  font-weight: 600;
  width: 100%;
  max-width: 330px;
  height: 80px;
  font-size: 20px;
}

.feedback-slider-block {
  margin-top: 40px;
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feedback-slider-block__title {
  font-family: Unbounded, "sans-serif";
  font-size: 48px;
  font-weight: 400;
  line-height: 59.52px;
  color: #1C1C1C;
}
.feedback-slider-block__btns {
  display: flex;
  gap: 10px;
}
.feedback-slider-block .slider-feedback-btn--prev {
  transform: rotate(180deg);
}

.feedback-swiper {
  margin-bottom: 80px;
}

.feedback-slider-card {
  background: #fff;
  padding: 25px;
  border-radius: 30px;
  min-height: 330px;
  max-width: 360px;
  width: 100%;
}
.feedback-slider-card__stars {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}
.feedback-slider-card__name {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  color: #1C1C1C;
  margin-bottom: 10px;
}
.feedback-slider-card__comment {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  color: #7B7B7B;
}

.feedback-slider-mobile-btn {
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  display: none;
}

.main-bottom-banner {
  overflow: hidden;
  display: flex;
  min-height: 70px;
}
.main-bottom-banner img {
  min-width: 100%;
  object-fit: cover;
}

.fixed-nav-panel {
  background: rgba(171, 157, 255, 0.6);
  width: max-content;
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(5px);
  z-index: 1000000;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
.fixed-nav-panel__item {
  width: max-content;
  border-radius: 15px;
  background: #fff;
  padding: 20px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fixed-nav-panel__text {
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24.38px;
  color: #5040B1;
}
.fixed-nav-panel__text_bold {
  font-weight: 700;
}

.fixed-nav-panel-wrap {
  display: none;
  justify-content: center;
  bottom: 200px;
  position: fixed;
  padding: 0 20px;
  width: 100%;
  z-index: 100;
}

.main-page .footer__contacts .left-block p a,
.main-page .footer__contacts .right-block .whatsapp-info a {
  color: #FFFFFF;
}

.main-page .footer a.btn-cta.mobile, .main-page .footer .btn-cta.mobile {
  text-align: center;
  color: #5040B0;
}

.choose-method-btn {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
  margin-bottom: 34px;
  background: #EDEBF0;
  border-radius: 14px;
  padding: 10px 20px 10px 10px;
  min-width: 250px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 24.38px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.choose-method-btn-number {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: #5040b161;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: Montserrat, "sans-serif";
  font-size: 28px;
  font-weight: 700;
  line-height: 34.13px;
}

.form-field-error {
  border: 1px solid #902b2b !important;
  color: #902b2b;
}

.pay-bank-card-info {
  color: #902b2b;
  margin-bottom: 20px;
}

.hide, .hidden {
  display: none !important;
}

.mobile-promotion {
  width: 100%;
  min-height: 60px;
  display: none;
  align-items: center;
  background: #5040B0;
  border-bottom: 1px solid #4E3CB8;
}

.mobile-promotion__wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  gap: 12px;
}

.mobile-promotion__wrapper .btn-cta {
  height: 31px;
  font-size: 12px;
  font-family: Montserrat, sans-serif;
}

.mobile-promotion__wrapper .subtitle {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  color: #FFFFFF;
}

.mobile-promotion__wrapper .subtitle .fw-700 {
  font-weight: 700;
}

.mobile-promotion__wrapper .close-promotion-btn {
  background: transparent;
  border: none;
  padding: 0;
  flex-shrink: 0;
}


@media screen and (max-width: 1340px) {
  .main-page .header__nav {
    gap: 10px;
  }
  .main-page .header__nav .link {
    font-size: 18px;
  }
  .main-banner .loan-calculator {
    width: 700px;
  }
}
@media screen and (max-width: 1100px) {
  .content-wrap {
    padding: 0 20px;
  }
  .main-banner__title {
    font-size: 50px;
  }
  .main-info__content {
    font-size: 18px;
  }
  .referral-card {
    margin-top: 80px;
  }
  .we-trust-you .benefits-swiper .card {
    height: auto;
  }
  .benefits .slider-wrap {
    max-width: 100%;
    width: 100%;
  }
  .main-banner .content-wrap-full {
    flex-direction: column;
    align-items: center;
  }
  .main-banner .loan-calculator {
    padding: 24px;
    margin: 30px 0;
  }
  .main-banner .loan-calculator__title {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .main-banner .loan-calculator__content {
    flex-direction: column;
    gap: 30px;
  }
  .main-banner .loan-calculator__right, .main-banner .loan-calculator__left {
    width: 100%;
    max-width: 100%;
  }
  .main-banner .calculator-field__value span:first-child {
    font-size: 36px;
  }
  .main-page .header__nav .link {
    font-size: 16px;
  }
  .sale .swiper-wrapper .swiper-slide {
    max-width: 790px;
  }
}
@media screen and (max-width: 1000px) {
  .main-banner__title {
    font-size: 45px;
    line-height: 62px;
  }
  .btn-outline {
    padding: 15px 25px;
  }
  .btn-primary {
    padding: 15px 25px;
  }
  .slider-block {
    margin-top: 50px;
  }
  .slider-block__title {
    font-size: 40px;
    line-height: 50px;
  }
  .calculator-block {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .documents-block__title {
    font-size: 42px;
    line-height: 50px;
  }
  .have-question {
    padding: 20px 50px;
  }
  .have-question__text {
    font-size: 24px;
  }
  .have-question-btn {
    font-size: 20px;
  }
  .why-usdt__title {
    font-size: 42px;
    line-height: 50px;
  }
  .why-usdt__btn {
    font-size: 18px;
  }
  .tag {
    font-size: 18px;
    line-height: 20px;
  }
  .card-swiper {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 968px) {
  .main-banner__title {
    font-size: 40px;
    line-height: 50px;
    margin-top: 20px;
  }
  .slider-block {
    margin-top: 50px;
  }
  .slider-block__title {
    font-size: 40px;
    line-height: 50px;
  }
  .slider-btn, .tag-slider-btn-mobile {
    width: 75px;
    height: 75px;
  }
  .calculator-block {
    justify-content: center;
    flex-direction: column;
    padding: 0;
    gap: 0;
  }
  .calculator-block__left {
    display: none;
  }
  .calculator-block__right {
    max-width: 100%;
  }
  .amount-slider-block {
    max-width: 100%;
    margin-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .sum-slider {
    max-width: calc(100% - 25px);
  }
  .get-credit-btn {
    display: none;
  }
  .get-credit-mobile-btn {
    display: block;
  }
  .labels-block {
    gap: 5px;
    flex-direction: row;
  }
  .documents-block {
    padding: 45px;
  }
  .documents-block__subtitle {
    margin-bottom: 50px;
  }
  .have-question {
    margin-bottom: 80px;
  }
  .tag-slider-btn {
    min-width: 50px;
    width: 50px !important;
    height: 50px !important;
  }
  .tag-slider-btn > svg {
    width: 25px;
  }
  .referral-block__title {
    line-height: 40px;
    font-size: 40px;
  }
  .referral-card {
    font-size: 40px;
    margin-top: 50px;
  }
  .feedback-slider-block__title {
    font-size: 40px;
    line-height: 50px;
  }
  .fixed-nav-panel {
    width: 100%;
  }
  .fixed-nav-panel__item {
    padding: 15px;
  }
  .fixed-nav-panel__name {
    font-size: 16px;
  }
  .main-page .header__nav {
    gap: 3px;
  }
  .main-page .header__nav .link {
    font-size: 14px;
  }
  .main-page .header .btn-secondary, .main-page .header .btn-outline {
    font-size: 11px;
  }
}
@media screen and (max-width: 860px) {
  .main-banner__title {
    font-size: 36px;
    line-height: 50px;
    margin-top: 0;
  }
  .slider-block {
    margin-top: 40px;
  }
  .slider-block__title {
    font-size: 36px;
    line-height: 40px;
  }
  .slider-btn, .tag-slider-btn-mobile {
    width: 60px;
    height: 60px;
  }
  .slider-card {
    padding: 20px 15px 25px;
  }
  .slider-card__number {
    margin-bottom: 70px;
  }
  .slider-card__title {
    font-size: 20px;
  }
  .documents-block {
    padding: 45px;
  }
  .documents-block__title {
    font-size: 38px;
    line-height: 40px;
  }
  .documents-block__subtitle {
    margin-bottom: 50px;
  }
  .documents-block__wrap {
    flex-direction: column;
    align-items: center;
  }
  .have-question {
    padding: 15px 40px;
  }
  .have-question__text {
    font-size: 20px;
  }
  .have-question-btn {
    font-size: 18px;
  }
  .why-usdt__wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
  .why-usdt-card:nth-child(2) {
    margin-top: 0;
  }
  .tag {
    font-size: 16px;
    padding: 10px;
  }
  .tags-block {
    padding: 30px 0;
  }
  .tag-slider-btn {
    min-width: 40px;
    width: 40px !important;
    height: 40px !important;
  }
  .tag-slider-btn > svg {
    width: 25px;
  }
  .referral-block {
    margin-top: 30px;
    padding: 20px;
  }
  .referral-block__wrap {
    flex-direction: column;
  }
  .referral-block__title {
    font-size: 36px;
    text-align: center;
  }
  .referral-card {
    margin: 0 auto 50px;
    padding: 10px;
  }
  .referral-btn {
    display: none;
  }
  .referral-btn-mobile {
    display: block;
    width: 100%;
    margin: 0 auto;
    max-width: 400px;
  }
  .feedback-slider-block__title {
    font-size: 36px;
    line-height: 40px;
  }
}
@media screen and (max-width: 768px) {
  .main-banner {
    display: block;
    position: relative;
  }
  .main-banner__title {
    margin-bottom: 25px;
    line-height: 40px;
    max-width: 430px;
  }
  .main-banner__image {
    position: absolute;
    max-width: 360px;
    right: 0;
    top: 140px;
    z-index: -1;
  }
  .main-banner__image > img {
    width: 100%;
  }
  .main-info {
    display: block;
  }
  .main-info__content {
    max-width: 300px;
  }
  .get-sum-btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%);
    width: max-content;
  }
  .slider-block {
    margin-bottom: 20px;
  }
  .slider-block__title {
    font-size: 30px;
  }
  .slider-block__btns {
    display: none;
  }
  .slider-mobile-btn {
    display: flex;
    justify-content: center;
    gap: 40px;
  }
  .slider-btn, .tag-slider-btn-mobile {
    width: 50px;
    height: 50px;
    margin-top: 40px;
  }
  .slider-btn > svg, .tag-slider-btn-mobile > svg {
    width: 20px;
  }
  .calculator-block {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  .calculator-block__title {
    font-size: 30px;
    line-height: 38px;
  }
  .card-swiper {
    margin-bottom: 15px;
  }
  .documents-block {
    padding: 45px;
  }
  .documents-block__title {
    font-size: 32px;
    line-height: 40px;
  }
  .documents-block__subtitle {
    font-size: 20px;
    margin-bottom: 50px;
  }
  .documents-block__wrap {
    flex-direction: column;
    align-items: center;
  }
  .have-question {
    padding: 10px 30px;
    margin-bottom: 50px;
  }
  .have-question__text {
    font-size: 18px;
  }
  .have-question-btn {
    font-size: 16px;
    padding: 10px 15px;
  }
  .why-usdt {
    padding: 30px;
  }
  .why-usdt__btn {
    display: none;
  }
  .why-usdt__title {
    font-size: 38px;
    line-height: 45px;
  }
  .why-usdt__title-block {
    margin-bottom: 30px;
  }
  .why-usdt__mobile-btn {
    display: block;
    font-size: 16px;
    margin: 20px auto 0;
    max-width: 365px;
    width: 100%;
  }
  .why-usdt-card__text {
    font-size: 18px;
  }
  .why-usdt-card__image {
    margin-bottom: 30px;
  }
  .feedback-slider-mobile-btn {
    display: flex;
  }
  .feedback-slider-block__title {
    font-size: 30px;
  }
  .feedback-swiper {
    margin-bottom: 20px;
  }
  .fixed-nav-panel__item {
    padding: 15px;
    min-height: auto;
  }
  .fixed-nav-panel__name {
    font-size: 14px;
  }
  .fixed-nav-panel-wrap {
    bottom: 100px;
  }
  .questions .content-wrap-full {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .questions .title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .questions .btn-cta {
    width: 100%;
  }
  .space-trust .section-title {
    font-size: 30px;
    line-height: 100%;
  }
  .space-trust .text-wrap {
    flex-direction: column;
  }
  .space-trust .text-wrap .left-block, .space-trust .text-wrap .right-block {
    transform: translateY(-16px);
  }
  .space-trust .text-wrap .title {
    font-size: 18px;
  }
  .space-trust .text-wrap .left-block img {
    margin-top: 10px;
  }
  .space-trust .text-wrap .right-block .subtitle {
    display: none;
  }
  .space-trust .text-wrap .right-block .subtitle.mobile {
    display: block;
  }
  .space-trust .content-wrap-full {
    padding: 20px;
  }
  .mt-100 {
    margin-top: 50px;
  }
  .we-trust-you .section-title {
    font-size: 28px;
    background: linear-gradient(135deg, rgb(199, 70, 255) 0%, rgb(70, 65, 239) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .we-trust-you .section-subtitle {
    margin-bottom: 20px;
  }
  .we-trust-you .benefits-swiper .card .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .benefits .content-wrap-full {
    padding: 20px 0 20px 20px;
  }
  .benefits .slider-wrap {
    transform: translateY(-20px);
  }
  .benefits .section-title {
    font-size: 30px;
    line-height: 100%;
  }
  .benefits .benefits-loan-swiper .card {
    max-width: 100%;
    width: 100%;
    height: 300px;
  }
  .benefits .benefits-loan-swiper .card .title {
    font-size: 18px;
  }
  .news-and-promo .top-row {
    margin-bottom: 30px;
  }
  .news-and-promo .top-row .section-title {
    font-size: 28px;
    line-height: 100%;
  }
  .news-and-promo .top-row .btn-secondary {
    display: none;
  }
  .news-and-promo .btn-secondary.mobile {
    display: block;
    margin-top: 30px;
  }
  .news-and-promo .slider-wrap .active-card-container {
    margin-bottom: 20px;
    order: -1;
  }
  .news-and-promo .slider-wrap .active-card-container .card {
    max-width: 100%;
    width: 100% !important;
    height: auto;
    display: flex !important;
    flex-direction: column;
  }
  .news-and-promo .slider-wrap .active-card-container .card .banner-img {
    display: block !important;
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin: 0 auto;
  }
  .news-and-promo .slider-wrap .active-card-container .card .subtitle {
    display: block !important;
    margin-bottom: 15px;
  }
  .news-and-promo .slider-wrap .active-card-container .card .title {
    margin-top: 10px;
    font-size: 18px;
  }
  .news-and-promo .slider-wrap .news-and-promo-swiper .swiper-slide {
    width: 310px !important;
  }
  .news-and-promo .slider-wrap .news-and-promo-swiper .card {
    max-width: 310px;
    width: 310px;
    height: 185px;
  }
  .news-and-promo .slider-wrap .news-and-promo-swiper .card .banner-img {
    display: none;
  }
  .news-and-promo .slider-wrap .news-and-promo-swiper .card .subtitle {
    display: none;
  }
  .news-and-promo .slider-wrap .news-and-promo-swiper .card .title-wrap .title {
    font-size: 18px;
  }
  .sale .content-wrap-full .banner-1, .sale .content-wrap-full .banner-2, .sale .content-wrap-full .banner-element {
    width: 100%;
    margin: 0 auto;
    background-position: right;
  }
  .sale .content-wrap-full .arrow-btn {
    width: 32px;
    height: 32px;
  }
  .sale .content-wrap-full .sale-banners-swiper .banner-2, .sale .content-wrap-full .sale-banners-swiper .banner-element {
    background-position: inherit;
  }
  .sale .content-wrap-full .sale-banners-swiper .banner-2 .logo-wrap .logo, .sale .content-wrap-full .sale-banners-swiper .banner-element .logo-wrap .logo {
    width: 20px;
    height: 20px;
  }
  .sale .content-wrap-full .sale-banners-swiper .banner-2 .logo-wrap .title, .sale .content-wrap-full .sale-banners-swiper .banner-element .logo-wrap .title {
    font-size: 10px;
  }
  .sale .content-wrap-full .sale-banners-swiper .banner-2 .banner-title-wrap .banner-title, .sale .content-wrap-full .sale-banners-swiper .banner-element .banner-title-wrap .banner-title {
    font-size: 20px;
    line-height: 100%;
  }
  .main-page .btn-secondary {
    font-size: 16px;
  }
  .main-banner .content-wrap-full {
    gap: 0;
  }
  .main-banner .title-section {
    margin-bottom: 0;
    font-size: 32px;
  }
  .main-banner .social-media {
    display: none;
  }
  .main-banner .social-media.mobile {
    display: flex;
  }
  .main-banner .loan-calculator {
    padding: 20px;
    width: 100%;
    margin: 20px 0;
  }
  .main-banner .loan-calculator__title {
    font-size: 18px;
  }
  .main-banner .loan-calculator__right {
    margin-top: 0;
  }
  .main-banner .loan-calculator .calculator-field .currency-bottom {
    font-size: 14px;
  }
  .main-banner .loan-calculator .calculator-field__value span:first-child {
    font-size: 24px;
  }
  .main-banner .loan-calculator .promo-badge {
    font-size: 14px;
  }
  .main-banner .calculator-info .amount-pay {
    font-size: 14px;
    line-height: 100%;
  }
  .main-banner .calculator-info__promo {
    gap: 0;
  }
}
@media screen and (max-width: 600px) {
  .main-banner__title {
    font-size: 28px;
    line-height: 30px;
  }
  .main-banner__image {
    position: absolute;
    max-width: 320px;
    right: 0;
    top: 190px;
    z-index: -1;
  }
  .main-info {
    max-width: 350px;
  }
  .main-info__title {
    font-size: 45px;
  }
  .slider-block__title {
    font-size: 26px;
  }
  .labels-block {
    flex-direction: column;
    align-items: baseline;
    gap: 0;
  }
  .labels-block__wrap {
    flex-direction: column;
  }
  .documents-block {
    padding: 30px;
  }
  .documents-block__title {
    font-size: 28px;
    line-height: 40px;
  }
  .documents-block__subtitle {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .document-card__image {
    margin-bottom: 20px;
  }
  .document-card:nth-child(2) .document-card__image {
    margin-bottom: 28px;
  }
  .document-card:nth-child(3) {
    padding: 53px 32px 30px;
  }
  .document-card:nth-child(3) .document-card__image {
    margin-bottom: 40px;
  }
  .have-question {
    flex-direction: column;
    padding: 15px;
  }
  .why-usdt {
    padding: 20px 0;
  }
  .why-usdt__title {
    font-size: 28px;
    line-height: 45px;
  }
  .why-usdt__title-block {
    margin-bottom: 30px;
  }
  .why-usdt-card__text {
    font-size: 16px;
  }
  .why-usdt-card__image {
    margin-bottom: 20px;
  }
  .referral-card {
    margin-bottom: 70px;
    margin-top: 10px;
  }
  .fixed-nav-panel {
    gap: 10px;
    padding: 15px;
  }
  .fixed-nav-panel__item img {
    width: 15px;
  }
  .fixed-nav-panel__text {
    font-size: 14px;
  }
  .fixed-nav-panel .btn-primary {
    font-size: 14px;
  }
  .fixed-nav-panel-wrap {
    padding: 10px;
  }
}
@media screen and (max-width: 540px) {
  .main-info {
    max-width: 240px;
  }
  .slider-card {
    max-width: 280px;
    padding: 20px 15px 25px;
  }
  .slider-card__number {
    margin-bottom: 50px;
  }
  .slider-card__title {
    font-size: 20px;
  }
  .slider-block__title {
    font-size: 22px;
  }
  .referral-block__title {
    font-size: 30px;
  }
  .referral-card {
    font-size: 30px;
  }
  .fixed-nav-panel__text {
    font-size: 12px;
  }
  .fixed-nav-panel .btn-primary {
    font-size: 12px;
  }
}
@media screen and (max-width: 460px) {
  .main-banner__image {
    position: absolute;
    max-width: 300px;
    right: 0;
    top: 230px;
    z-index: -1;
  }
  .main-info {
    max-width: 200px;
  }
  .fixed-nav-panel {
    padding: 10px;
    gap: 5px;
  }
  .sale .content-wrap-full .banner-1, .sale .content-wrap-full .banner-2, .sale .content-wrap-full .banner-element {
    width: 100%;
    height: 180px;
    margin: 0 auto;
    background-position: right;
    background-size: cover;
  }
  .sale .content-wrap-full .swiper-slide .banner-2, .sale .content-wrap-full .swiper-slide .banner-element {
    height: 180px;
  }
}

@media (max-width: 431px) {
  .mobile-promotion {
    display: flex;
  }
}

@media screen and (max-width: 370px) {
  .main-banner .loan-calculator .calculator-info__promo .amount-pay, .main-banner .loan-calculator .calculator-info__promo .promo-badge {
    flex: 1;
  }
  .main-banner .loan-calculator .calculator-info__promo .promo-badge {
    width: 6px;
  }
}

/*# sourceMappingURL=styles.css.map */
