/* 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: 10px;
}

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

@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;
  }
  .referral-btn {
    color: #fff;
    text-decoration: unset;
    text-align: center;
    position: absolute;
  }
  .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;
  }
}
.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;
  }
}
.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;
}

@media screen and (max-width: 1000px) {
  .footer__links {
    gap: 10px;
    max-width: 300px;
  }
}
@media screen and (max-width: 968px) {
  .footer-link {
    font-size: 18px;
  }
  .footer {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 860px) {
  .footer {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .fixed-nav-panel-wrap {
    display: none;
  }
}
@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;
  }

  .fixed-nav-panel-wrap {
    bottom: 100px;
  }
}
@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;
  }

  .fixed-nav-panel-wrap {
    padding: 10px;
  }
}
body {
  position: relative;
}

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

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

.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;
}

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

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

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

.w-100 {
  width: 100%;
}

.btn, .have-question-btn, .light-btn, .btn-outline, .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-primary:hover {
  opacity: 0.85;
  transition: opacity 0.4s ease-in-out;
  text-decoration: auto;
}

.btn-primary {
  color: #fff !important;
  display: inline-block;
  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-outline {
  color: #1C1C1C;
  border: 1px solid #1C1C1C;
}
.btn-outline:hover {
  color: #1C1C1C;
  text-decoration: none;
}

.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%;
  }
}
.main-banner-full-bg {
  background-image: url("/images/baner-bg.jpg");
}

.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("/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 > a:hover, .footer__contact > a:hover {
  color: #533FB8;
}
.contacts-our-contacts__social > a, .footer__socials-wrap > a, .footer__logo {
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.contacts-our-contacts__social > a:hover, .footer__socials-wrap > a:hover, .footer__logo:hover {
  opacity: 0.7;
  transform: scale(1.05);
  cursor: pointer;
}
.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: 30px;
}

.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, .promotion-detail-swiper-btn.tag-slider-btn {
  width: 40px;
  height: 40px;
}
.promotion-detail-swiper-btn.slider-btn > svg, .promotion-detail-swiper-btn.tag-slider-btn-mobile > svg, .promotion-detail-swiper-btn.tag-slider-btn > 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("../img/pages/webmaster/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;
  margin-bottom: .5rem;
}
.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("../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("../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-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-banner {
  display: flex;
}
.main-banner__title {
  font-family: Unbounded, "sans-serif";
  font-size: 56px;
  font-weight: 700;
  line-height: 79.36px;
}
.main-banner__image {
  width: 100%;
  height: 100%;
  max-width: 475px;
  max-height: 646px;
}

.main-info {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
  gap: 10px;
}
.main-info__title {
  font-family: Unbounded, "sans-serif";
  font-size: 50px;
  font-weight: 700;
  line-height: 62px;
  color: #5040B1;
}
.main-info__content {
  font-family: Montserrat, "sans-serif";
  font-size: 20px;
  font-weight: 400;
  line-height: 24.38px;
  max-width: 410px;
}

.slider-block {
  margin-top: 130px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.slider-block__title {
  font-family: Unbounded, "sans-serif";
  font-size: 48px;
  font-weight: 400;
  line-height: 59.52px;
  color: #1C1C1C;
}
.slider-block__btns {
  display: flex;
  gap: 10px;
}

.slider-btn, .tag-slider-btn-mobile, .tag-slider-btn {
  width: 90px;
  height: 90px;
  border-radius: 100%;
  background: #5040B1;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider-btn[disabled], [disabled].tag-slider-btn-mobile, [disabled].tag-slider-btn {
  background: #E2E2E2;
  cursor: auto;
}
.slider-btn[disabled] > svg > path, [disabled].tag-slider-btn-mobile > svg > path, [disabled].tag-slider-btn > svg > path {
  fill: #B0B0B0;
}
.slider-btn--prev {
  transform: rotate(180deg);
}

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

.slider-card {
  width: 100%;
  max-width: 365px;
  background: #FFFFFF;
  border-radius: 30px;
  padding: 30px 25px 35px;
  margin: 0 auto;
}
.slider-card__number {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: #5040B1;
  margin-bottom: 90px;
  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;
}
.slider-card__title {
  display: block;
  font-family: Montserrat, "sans-serif";
  font-size: 24px;
  font-weight: 700;
  line-height: 29.26px;
  margin-bottom: 10px;
}
.slider-card__text {
  font-family: Montserrat, "sans-serif";
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
}

.swiper-button-next, .swiper-button-prev {
  position: relative;
}

.card-swiper {
  margin-bottom: 50px;
}

.arrow-divider {
  width: 100%;
  height: 2px;
  background: #B0B0B0;
  position: relative;
  border-radius: 10px;
}
.arrow-divider:after {
  content: "";
  height: 2px;
  width: 10px;
  background: #B0B0B0;
  transform: rotate(-45deg);
  position: absolute;
  bottom: -3px;
  right: -1px;
  border-radius: 10px;
}
.arrow-divider:before {
  content: "";
  height: 2px;
  width: 10px;
  background: #B0B0B0;
  transform: rotate(45deg);
  position: absolute;
  top: -3px;
  right: -1px;
  border-radius: 10px;
}

#min-value {
  margin-bottom: 0 !important;
}

.calculator-block {
  margin-top: 120px;
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 120px;
  width: 100%;
}
.calculator-block__left {
  max-width: 451px;
  width: 100%;
}
.calculator-block__left img {
  width: 100%;
  height: 100%;
}
.calculator-block__right {
  width: 100%;
  background: #FFF;
  border-radius: 10px;
  padding: 32px;
  max-width: 650px;
}
.calculator-block__title {
  font-family: Montserrat, "sans-serif";
  font-size: 36px;
  font-weight: 400;
  line-height: 43.88px;
  color: #000000;
}
.calculator-block__second-title {
  font-family: Montserrat, "sans-serif";
  font-size: 36px;
  font-weight: 600;
  line-height: 43.88px;
  color: #5040B1;
  margin-bottom: 25px;
}

.amount-slider-block {
  width: 100%;
  max-width: 580px;
  border-radius: 10px;
  background: #F3F4F6;
  padding: 70px 20px 35px 20px;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.amount-slider-block__values {
  width: 100%;
  display: flex;
  color: #7B7B7B;
  justify-content: space-between;
  font-family: Montserrat, "sans-serif";
  font-size: 12px;
  font-weight: 600;
  line-height: 14.63px;
  margin-top: 15px;
}

.documents-block {
  border-radius: 30px;
  padding: 45px 65px;
  background: #fff;
  margin-bottom: 25px;
}
.documents-block__title {
  font-family: Unbounded, "sans-serif";
  font-size: 48px;
  font-weight: 400;
  line-height: 59.52px;
  margin-bottom: 20px;
  width: 100%;
  max-width: 665px;
}
.documents-block__subtitle {
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 29.26px;
  width: 100%;
  max-width: 665px;
  margin-bottom: 70px;
}
.documents-block__wrap {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.have-question {
  padding: 25px 60px;
  background: linear-gradient(90deg, color(display-p3 0.314 0.251 0.694) 0%, color(display-p3 0.275 0.18 0.808) 100%);
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 132px;
}
.have-question__text {
  font-family: Montserrat, "sans-serif";
  font-size: 28px;
  font-weight: 400;
  line-height: 34.13px;
  color: #fff;
}

.why-usdt {
  padding: 60px 0;
}
.why-usdt__title-blok {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 15px;
  margin-bottom: 50px;
}
.why-usdt__title {
  font-family: Unbounded, "sans-serif";
  font-size: 48px;
  font-weight: 400;
  line-height: 59.52px;
  color: #fff;
  flex: 1;
}
.why-usdt__title_bold {
  font-weight: 600;
}
.why-usdt__wrap {
  display: flex;
  gap: 20px;
}
.why-usdt__mobile-btn {
  display: none;
  text-align: center;
}

.tags-block {
  padding: 100px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tags-block__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.tags-block__mobile-btns {
  display: none;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.tag {
  padding: 20px;
  border-radius: 15px;
  font-family: Montserrat, "sans-serif";
  font-size: 20px;
  font-weight: 600;
  line-height: 24.38px;
  color: #747474;
  background: #fff;
}

.tag-slider-btn {
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  padding: 10px;
}
.tag-slider-btn--prev {
  transform: rotate(180deg);
}

.why-usdt-card {
  width: 100%;
  max-width: 365px;
  border-radius: 10px;
  background: linear-gradient(0deg, #34228E, #34228E);
  padding: 20px 15px;
  height: fit-content;
}
.why-usdt-card__title {
  font-family: Montserrat, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 29.26px;
  color: #E3E3E3;
  margin-bottom: 15px;
}
.why-usdt-card__image {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 42px;
}
.why-usdt-card__text {
  font-family: Montserrat, "sans-serif";
  font-size: 20px;
  font-weight: 400;
  line-height: 24.38px;
  color: #E3E3E3;
}
.why-usdt-card:nth-child(2) {
  margin-top: 45px;
}

.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;
}

.noUi-tooltip {
  border: none;
  background: none;
  font-family: Montserrat, "sans-serif";
  font-size: 20px;
  font-weight: 600;
  line-height: 24.38px;
  color: #5040B1;
  width: max-content;
}

.noUi-target {
  height: 2px;
}

.noUi-connect {
  background: #5040B1;
  height: 4px;
}

.noUi-target {
  border: none;
  background: #AB9DFF;
}

.noUi-horizontal .noUi-handle {
  border-radius: 100%;
  width: 36px;
  height: 36px;
  top: -18px;
  background: #5040B1;
  box-shadow: none;
  cursor: pointer;
}
.noUi-horizontal .noUi-handle:before {
  content: "";
  display: none;
}
.noUi-horizontal .noUi-handle:after {
  content: "";
  display: none;
}

.noUi-base {
  position: relative;
}
.noUi-base:before {
  content: "";
  position: absolute;
  top: -12px;
  left: -15px;
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #5040B1;
  background: #F3F4F6;
  z-index: 2;
}
.noUi-base:after {
  content: "";
  position: absolute;
  top: -12px;
  right: -15px;
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #AB9DFF;
  background: #F3F4F6;
  z-index: 2;
}

.sum-slider {
  width: 100%;
  max-width: 505px;
}

.circle {
  width: 233px;
  height: 233px;
  border-radius: 100%;
  position: absolute;
  top: 0;
}
.circle_first > img {
  position: absolute;
  top: 0;
}
.circle_first > span {
  position: absolute;
  top: 70px;
  left: 50px;
}
.circle_second > img {
  position: absolute;
  bottom: -6px;
  left: 29px;
}
.circle_second > span {
  position: absolute;
  bottom: 40px;
  left: 110px;
}
.circle_third {
  position: relative;
}
.circle_third > img {
  position: absolute;
  right: -6px;
  top: 7px;
}
.circle_third > span {
  position: absolute;
  right: 35px;
  top: 60px;
}
.circle > span {
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 24.38px;
  color: white;
}

.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%);*/
  background-image: url(../img/pages/main-page/referral-block-bg-desc-2.svg);
  background-repeat: no-repeat;
  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;
}

@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;
  }
}
@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;
  }
  .tags-block {
    padding: 70px 0;
  }
  .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, .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: 10px;
    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;
  }
  .tags-block {
    padding: 50px 0;
  }
  .tag {
    padding: 15px;
  }
  .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;
  }
}
@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, .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, .tag-slider-btn-mobile {
    width: 50px;
    height: 50px;
    margin-top: 40px;
  }
  .slider-btn > svg, .tag-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__btn:hover {
    text-decoration: 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%;
    text-align: center;
  }
  .why-usdt-card__text {
    font-size: 18px;
  }
  .why-usdt-card__image {
    margin-bottom: 30px;
  }
  .tag-slider-btn {
    margin-top: 0;
    display: none;
  }
  .tag-slider-btn-mobile {
    display: flex;
    margin-top: 0;
    width: 40px;
    height: 40px;
  }
  .tags-block {
    padding-bottom: 0;
  }
  .tags-block__mobile-btns {
    display: flex;
  }
  .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;
  }
}
@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;
  }
  .tag {
    font-size: 14px;
    padding: 8px;
  }
  .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;
  }
}

.change-currency {
  cursor: pointer;
}

.footer-end-text {
  color: #A8A8A8;
}

.w-100 {
  max-width: 100% !important;
}

.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:hover {
  background-color: #D5D0E0;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.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;
}

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

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

form .help-block {
  color: #902b2b;
}
.has-error input, .has-error select, .has-error textarea {
  border: 1px solid #902b2b !important;
  color: #902b2b;
}

a.referral-btn-mobile, a.referral-btn {
  display: block;
  color: #fff;
  text-decoration: unset;
  text-align: center;
  height: 63px;
}

.mobile-element {
  display: none;
}

.hide {
  display: none !important;
}

.get-credit-btn {
  display: block;
  text-align: center;
  text-decoration: none;
}
.get-credit-btn:hover {
  text-decoration: none;
}

.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;
}

.another-promotion__actions-mobile {
  display: none;
  justify-content: center;
  gap: 10px;
}
.another-promotion__actions-mobile > .promotion-detail-swiper-btn {
  margin-top: 20px;
}

@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;
}

.fixed-nav-panel a {
  display: flex;
  align-items: center;
  text-decoration: none !important;
}

.referral-block .referral-block-img {
  width: 350px;
  min-height: 220px;
  margin: 0 !important;
  padding: 0 !important;
}

.referral-block .referral-block-img img {
  position: absolute;
  bottom: 0;
  left: -26px;
  max-width: none !important;
}

.referral-block .referral-block-img img.referral-block-img-mob {
  display: none;
}

.news-date-title {
  font-size: 12px;
  color: #878484;
}

.news-dates {
  font-size: 12px;
}
