@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  line-height: 1.22;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: #fff;
  position: relative;
  color: #000;
}

a {
  text-decoration: none;
  color: inherit;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul, ol {
  list-style: none;
}

.hamburger {
  margin-left: auto;
}
@media screen and (min-width: 1081px) {
  .hamburger {
    display: none;
  }
}
.hamburger .line {
  width: 4.115vw;
  height: 0.729vw;
  background-color: #8A53BA;
  display: block;
  margin: 0.469vw auto;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  border-radius: 0.781vw;
}
@media screen and (max-width: 1080px) {
  .hamburger .line {
    width: 7.315vw;
    height: 1.296vw;
    margin: 0.833vw auto;
  }
}
.hamburger:hover {
  cursor: pointer;
}
.hamburger.is-active .line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .line:nth-child(1) {
  -ms-transform: translateY(1.18vw) rotate(45deg);
  transform: translateY(1.18vw) rotate(45deg);
}
@media screen and (max-width: 1080px) {
  .hamburger.is-active .line:nth-child(1) {
    -ms-transform: translateY(2.08vw) rotate(45deg);
    transform: translateY(2.08vw) rotate(45deg);
  }
}
.hamburger.is-active .line:nth-child(3) {
  -ms-transform: translateY(-1.18vw) rotate(-45deg);
  transform: translateY(-1.18vw) rotate(-45deg);
}
@media screen and (max-width: 1080px) {
  .hamburger.is-active .line:nth-child(3) {
    -ms-transform: translateY(-2.08vw) rotate(-45deg);
    transform: translateY(-2.08vw) rotate(-45deg);
  }
}

@media screen and (min-width: 1081px) {
  .menu {
    display: flex;
    margin-left: auto;
    gap: 3.385vw;
  }
}
@media screen and (max-width: 1080px) {
  .menu {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    font-weight: 400;
    font-size: 1.25vw;
    position: absolute;
    top: calc(100% + 1.221vw);
    right: 4vw;
    z-index: 999;
    background: #fff;
    border-radius: 0.521vw;
    padding: 0 0.5vw;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-2%);
    transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out, transform 0.25s ease-in-out;
  }
  .menu.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 1080px) {
  .menu {
    top: calc(100% + 1.921vw);
    padding: 0 1vw;
    border-radius: 0.926vw;
  }
}
.menu a, .menu span {
  transition: all 0.2s ease;
}
@media screen and (min-width: 1081px) {
  .menu a, .menu span {
    font-size: 1.563vw;
  }
}
@media screen and (max-width: 1080px) {
  .menu a, .menu span {
    color: #571B6E;
    text-decoration: none;
    line-height: 1;
    font-size: 2.163vw;
    font-weight: 500;
    padding: 0.83vw 0.5vw;
    display: block;
    position: relative;
    cursor: pointer;
    transition: color 0.25s ease;
  }
  .menu a:after, .menu span:after {
    content: "";
    width: 87%;
    height: 1px;
    background: #31567F;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .menu a:hover, .menu a:active, .menu span:hover, .menu span:active {
    color: var(--orange);
  }
}
@media screen and (max-width: 1080px) {
  .menu a, .menu span {
    font-size: 4.556vw;
    padding: 1.9vw 1.2vw;
  }
}
@media screen and (max-width: 1080px) {
  .menu li {
    position: relative;
  }
  .menu li:last-child a:after, .menu li:last-child span:after {
    display: none;
  }
  .menu li.has-submenu:hover .submenu-wrap {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}
.menu .submenu {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  font-weight: 400;
  font-size: 1.25vw;
  background: #fff;
  border-radius: 0.521vw;
  padding: 0 0.5vw;
}
.menu .submenu-wrap {
  right: 100%;
  padding-right: 1vw;
  position: absolute;
  visibility: hidden;
  top: 0;
  opacity: 0;
  transform: translateY(-2%);
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out, transform 0.25s ease-in-out;
}
@media screen and (max-width: 1080px) {
  .menu .submenu-wrap {
    padding-right: 1.5vw;
  }
}
@media screen and (max-width: 1080px) {
  .menu .submenu {
    padding: 0 1vw;
    border-radius: 0.926vw;
  }
}
.menu .submenu a:after, .menu .submenu span:after {
  width: 100%;
}

.header {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 1.146vw 6.865vw 1.146vw 2.865vw;
  border-radius: 1.042vw;
  transition: all 0.2s ease;
}
@media screen and (min-width: 1081px) {
  .header {
    position: absolute;
    top: 3.125vw;
    z-index: 99;
    width: 88%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 1080px) {
  .header {
    padding: 1.552vw 4vw;
    position: sticky;
    top: 0;
    z-index: 99;
    border-radius: 0;
  }
}
.header .logo {
  display: block;
  width: 7.396vw;
  transition: all 0.2s ease;
}
@media screen and (max-width: 1080px) {
  .header .logo {
    width: 25.278vw;
  }
}
@media screen and (max-width: 1080px) {
  .header.desk-hide .hamburger, .header.desk-hide .menu {
    display: none;
  }
}
@media screen and (min-width: 1081px) {
  .header.scrolled {
    position: fixed;
    top: 0;
    padding: 0.746vw 2.865vw 0.746vw 2.865vw;
    box-shadow: 0 0 13px rgba(52, 38, 130, 0.15);
  }
  .header.scrolled .menu a, .header.scrolled .menu span {
    font-size: 1.2vw;
  }
  .header.scrolled .logo {
    width: 5.5vw;
  }
}

@media screen and (max-width: 1080px) {
  .footer {
    background: url("../img/footer-bg.png") center no-repeat;
    background-size: cover !important;
    padding: 6.481vw 4.63vw 3.241vw;
  }
}
@media screen and (min-width: 1081px) {
  .footer {
    background: url("../img/footer-bg-desk.png") center no-repeat;
    background-size: cover !important;
    padding: 3.906vw 5.25vw 2.865vw;
  }
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1F1F1F;
}
@media screen and (max-width: 1080px) {
  .footer__bottom {
    gap: 1vw;
    font-size: 1.852vw;
  }
}
@media screen and (min-width: 1081px) {
  .footer__bottom {
    gap: 0.5vw;
    font-size: 1.042vw;
  }
}
.footer__bottom a {
  text-decoration: underline;
}
@media screen and (max-width: 1080px) {
  .footer__bottom img {
    width: 13.889vw;
  }
}
@media screen and (min-width: 1081px) {
  .footer__bottom img {
    width: 7.552vw;
  }
}
.footer__img {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.778vw;
  margin-bottom: 2.778vw;
}
.footer__img img {
  object-fit: contain;
}
@media screen and (max-width: 1080px) {
  .footer__img img {
    max-height: 4.815vw;
    max-width: 24.444vw;
  }
}
@media screen and (min-width: 1081px) {
  .footer__img img {
    max-width: 18.542vw;
    max-height: 3.646vw;
  }
}

@media screen and (max-width: 1080px) {
  .main:has(.affiliate) ~ .footer {
    background-size: cover !important;
    background: url("../img/footer-bg-2.png") center no-repeat;
  }
}
@media screen and (min-width: 1081px) {
  .main:has(.affiliate) ~ .footer {
    background-size: cover !important;
    background: url("../img/footer-bg-2-desk.png") center no-repeat;
  }
}
.main:has(.affiliate) ~ .footer .footer__bottom {
  color: #EBD8FF;
}
.main:has(.affiliate) ~ .footer .contact__subtitle {
  color: #EBD8FF;
}
.main:has(.affiliate) ~ .footer .contact__text {
  color: #EBD8FF;
}

:root {
  --color-additional: #DFE8FF;
  --color-additional2: #F8EAFF;
}

.buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.593vw;
}

.button {
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .button {
    padding: 2.315vw;
    min-width: 32.407vw;
    border-radius: 4.167vw;
    font-size: 3.704vw;
  }
}
@media screen and (min-width: 1081px) {
  .button {
    font-size: 1.771vw;
    padding: 1vw 0.885vw;
    min-width: 14.375vw;
    border-radius: 2.344vw;
    transition: all 0.2s ease;
  }
  .button:hover {
    opacity: 0.9;
  }
}
.button__white {
  background: #F2F4F2;
  color: #1F1F1F;
}
.button__purple {
  background: linear-gradient(90deg, #531969 0%, #8836A9 100%);
  color: #fff;
}
.button__black {
  background: #29262A;
  color: #fff;
}
.button:active {
  top: 0.2vw;
}

@media screen and (max-width: 1080px) {
  .mob-hide {
    display: none;
  }
}
@media screen and (min-width: 1081px) {
  .desk-hide {
    display: none;
  }
}
.inner-text ol {
  list-style-type: numeric;
}
.inner-text ol:last-child {
  margin-bottom: 0;
}
.inner-text ul {
  list-style-type: disc;
}
.inner-text ul li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1081px) {
  .inner-text {
    font-size: 1.302vw;
  }
  .inner-text .date {
    font-size: 1.042vw;
  }
  .inner-text p, .inner-text li {
    font-size: 1.302vw;
    margin-bottom: 1.4vw;
  }
  .inner-text h2 {
    font-weight: 600;
    font-size: 1.823vw;
    margin-bottom: 1.4vw;
  }
  .inner-text ol {
    margin-left: 4vw;
    margin-bottom: 1.4vw;
  }
  .inner-text ul {
    margin-left: 1.5vw;
    margin-bottom: 1.4vw;
  }
  .inner-text ul li {
    margin-bottom: 0.5vw;
  }
}
@media screen and (max-width: 1080px) {
  .inner-text {
    font-size: 2.315vw;
  }
  .inner-text .date {
    font-size: 1.852vw;
  }
  .inner-text p, .inner-text li {
    font-size: 2.315vw;
    margin-bottom: 2.5vw;
  }
  .inner-text h2 {
    font-weight: 600;
    font-size: 3.241vw;
    margin-bottom: 2.5vw;
  }
  .inner-text ol {
    margin-left: 3vw;
    margin-bottom: 2.5vw;
  }
  .inner-text ul {
    margin-left: 2.5vw;
    margin-bottom: 2.5vw;
  }
  .inner-text ul li {
    margin-bottom: 0.4vw;
  }
}

.swiper-button-next {
  color: #fff;
  right: 2%;
  transition: background 0.15s ease;
}
.swiper-button-next:hover {
  background: #342682;
}
@media screen and (min-width: 1081px) {
  .swiper-button-next {
    width: 3.5vw;
    height: 3.5vw;
    border-radius: 0.3vw;
  }
}
@media screen and (max-width: 1080px) {
  .swiper-button-next {
    width: 7vw;
    height: 7vw;
    border-radius: 0.7vw;
  }
}
.swiper-button-next:after {
  font-weight: 600;
}
@media screen and (min-width: 1081px) {
  .swiper-button-next:after {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 1080px) {
  .swiper-button-next:after {
    font-size: 5vw;
  }
}
.swiper-button-prev {
  color: #fff;
  left: 2%;
  transition: background 0.15s ease;
}
.swiper-button-prev:hover {
  background: #342682;
}
@media screen and (min-width: 1081px) {
  .swiper-button-prev {
    width: 3.5vw;
    height: 3.5vw;
    border-radius: 0.3vw;
  }
}
@media screen and (max-width: 1080px) {
  .swiper-button-prev {
    width: 7vw;
    height: 7vw;
    border-radius: 0.7vw;
  }
}
.swiper-button-prev:after {
  font-weight: 600;
}
@media screen and (min-width: 1081px) {
  .swiper-button-prev:after {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 1080px) {
  .swiper-button-prev:after {
    font-size: 5vw;
  }
}

.main__screen {
  position: relative;
}
.main__screen-item {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1080px) {
  .main__screen-item {
    padding: 8.333vw;
    min-height: 142.593vw;
  }
}
@media screen and (min-width: 1081px) {
  .main__screen-item {
    min-height: 37.708vw;
    padding: 8.958vw 9.531vw 3.958vw;
    justify-content: flex-end;
  }
}
.main__screen-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.main__screen-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 1081px) {
  .main__screen-info {
    max-width: 39.583vw;
  }
}
.main__screen-title {
  font-weight: 700;
  color: #DFE8FF;
}
@media screen and (max-width: 1080px) {
  .main__screen-title {
    padding: 0 12vw;
    margin-bottom: 8.5vw;
    font-size: 7.407vw;
    text-align: center;
  }
}
@media screen and (min-width: 1081px) {
  .main__screen-title {
    font-size: 3.958vw;
    line-height: 1.1;
  }
  .main__screen-title br {
    display: none;
  }
}
.main__screen-description {
  color: #F8EAFF;
}
@media screen and (max-width: 1080px) {
  .main__screen-description {
    margin-bottom: 15vw;
    font-size: 5.093vw;
    text-align: center;
  }
  .main__screen-description br {
    display: none;
  }
}
@media screen and (min-width: 1081px) {
  .main__screen-description {
    font-size: 1.823vw;
    margin-top: 1vw;
    margin-bottom: 2.865vw;
  }
  .main__screen-description br {
    display: none;
  }
}
.main__screen-img {
  width: 100%;
  object-fit: contain;
}
@media screen and (min-width: 1081px) {
  .main__screen-img {
    width: 42.604vw;
    position: absolute;
    right: 9.531vw;
    bottom: 2.083vw;
  }
}
@media screen and (max-width: 1080px) {
  .main__screen-img {
    display: block;
    margin-bottom: 2.778vw;
  }
}
@media screen and (max-width: 1080px) {
  .main__screen-button {
    text-align: center;
    margin-top: auto;
  }
}
.solution {
  display: flex;
  flex-wrap: wrap;
  background: linear-gradient(96.87deg, #DED3F3 9.62%, #E6E6E6 91.83%);
}
@media screen and (max-width: 1080px) {
  .solution {
    gap: 2vw;
    padding: 14.074vw 4.815vw;
  }
}
@media screen and (min-width: 1081px) {
  .solution {
    gap: 2.083vw;
    padding: 7.396vw 6.771vw 3.75vw;
  }
}
.solution__item {
  background: rgba(255, 255, 255, 0.3);
  position: relative;
}
@media screen and (max-width: 1080px) {
  .solution__item {
    border-radius: 1.667vw;
    padding: 7.407vw;
    min-height: 136.111vw;
    display: flex;
    overflow: hidden;
  }
  .solution__item.even {
    background-color: rgba(67, 0, 83, 0.5);
  }
  .solution__item.even .solution__img {
    width: 100%;
  }
  .solution__item.even .solution__title {
    color: #F5DAFF;
  }
}
@media screen and (min-width: 1081px) {
  .solution__item {
    padding: 2.304vw 2.604vw 2.304vw 2.604vw;
    border-radius: 0.938vw;
    display: flex;
    width: 100%;
    align-items: flex-end;
    justify-content: space-between;
  }
  .solution__item.odd {
    padding-right: 10vw !important;
  }
  .solution__item.odd .solution__link {
    margin-right: 3vw;
  }
  .solution__item.odd .solution__info {
    margin-left: auto;
  }
  .solution__item.odd .solution__img {
    left: 6%;
  }
  .solution__item.even {
    align-items: center;
    padding-left: 6vw !important;
    background-color: rgba(67, 0, 83, 0.3);
  }
  .solution__item.even:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 0.938vw;
    z-index: 0;
    background: linear-gradient(261.11deg, rgba(106, 0, 115, 0) 31.56%, rgba(51, 0, 55, 0.81) 100.81%);
  }
  .solution__item.even .solution__img {
    right: -2%;
  }
  .solution__item.even .solution__img img {
    max-width: 42.854vw;
    max-height: 33.667vw;
  }
  .solution__item.even .solution__info {
    text-align: left;
    max-width: 34vw;
    z-index: 1;
  }
  .solution__item.even .solution__title {
    text-align: left;
    color: #F5DAFF;
  }
  .solution__item.even .solution__text {
    color: #FFD9FA;
  }
  .solution__item.even .solution__link {
    color: #fff;
  }
  .solution__item.even .solution__link:after {
    background: #FFFFFF;
  }
}
.solution__title {
  color: #000;
  font-weight: 700;
  text-align: left;
}
@media screen and (max-width: 1080px) {
  .solution__title {
    font-size: 6.481vw;
    margin-bottom: 6.944vw;
    margin-right: auto;
  }
}
@media screen and (min-width: 1081px) {
  .solution__title {
    font-size: 3.646vw;
    margin-bottom: 1.246vw;
    text-align: right;
  }
}
.solution__text {
  font-weight: 400;
  color: #1F2833;
}
@media screen and (max-width: 1080px) {
  .solution__text {
    font-size: 2.963vw;
    margin: auto 0 6.481vw;
    color: #FFD9FA;
  }
}
@media screen and (min-width: 1081px) {
  .solution__text {
    font-size: 2.083vw;
  }
}
.solution__info {
  text-align: center;
}
@media screen and (min-width: 1081px) {
  .solution__info {
    text-align: right;
    max-width: 31.5vw;
  }
}
@media screen and (max-width: 1080px) {
  .solution__info {
    z-index: 1;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-width: 1081px) {
  .solution__img {
    position: absolute;
    bottom: 0;
  }
}
@media screen and (max-width: 1080px) {
  .solution__img {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
  }
}
.solution__img img {
  width: 100%;
  object-fit: contain;
}
@media screen and (min-width: 1081px) {
  .solution__img img {
    max-height: 32vw;
  }
}
.solution__link {
  font-weight: 400;
  display: inline-block;
  color: #3A235B;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .solution__link {
    font-size: 2.963vw;
    color: #fff;
  }
  .solution__link:after {
    background: #fff !important;
  }
}
@media screen and (min-width: 1081px) {
  .solution__link {
    font-size: 2.083vw;
    margin-top: 3.604vw;
    padding-right: 2vw;
  }
}
.solution__link:after {
  content: "";
  position: absolute;
  background: #060606;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  transition: all 0.2s ease;
}
@media screen and (max-width: 1080px) {
  .solution__link:after {
    left: 105%;
    width: 1.8vw;
    height: 2.6vw;
    top: calc(50% - 1.3vw);
  }
}
@media screen and (min-width: 1081px) {
  .solution__link:after {
    width: 1.2vw;
    height: 1.6vw;
    right: 0;
    top: calc(50% - 0.75vw);
  }
}
@media screen and (min-width: 1081px) {
  .solution__link:hover:after {
    right: -2%;
  }
}
@media screen and (max-width: 1080px) {
  .solution__link:active {
    top: 0.2vw;
  }
}
@media screen and (min-width: 1081px) {
  .solution__link:active {
    top: 0.1vw;
  }
}

.products {
  background: linear-gradient(96.87deg, rgba(222, 211, 243, 0.6) 9.62%, rgba(230, 230, 230, 0.6) 91.83%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 1080px) {
  .products {
    padding: 12.5vw 10.185vw;
  }
}
@media screen and (min-width: 1081px) {
  .products {
    padding: 1.667vw 9.844vw 2.3vw;
  }
}
.products:before {
  content: "";
  position: absolute;
  background: url("../img/products-bg.png") center no-repeat;
  background-size: contain;
  z-index: -1;
  left: 0;
  top: -2%;
  width: 97.222vw;
  height: 74.074vw;
}
.products__tagline {
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .products__tagline {
    font-size: 7.407vw;
    margin-bottom: 6.481vw;
  }
}
@media screen and (min-width: 1081px) {
  .products__tagline {
    font-size: 4.167vw;
    margin-bottom: 1.104vw;
  }
}
.products__subtitle {
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 1080px) {
  .products__subtitle {
    font-size: 3.241vw;
    margin-bottom: 7.111vw;
  }
}
@media screen and (min-width: 1081px) {
  .products__subtitle {
    font-size: 1.823vw;
    width: 70%;
    text-align: center;
    margin: 0 auto 2.604vw;
  }
}
.products__items {
  counter-reset: products;
  padding-top: 4vw;
}
@media screen and (min-width: 1081px) {
  .products__items {
    overflow: visible;
    padding-top: 1vw;
  }
}
.products__item {
  counter-increment: products;
  background: rgba(209, 200, 235, 0.7);
  text-align: center;
  position: relative;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1080px) {
  .products__item {
    border-radius: 1.667vw;
    padding: 10.185vw 6.019vw 4.167vw;
  }
}
@media screen and (min-width: 1081px) {
  .products__item {
    padding: 2.604vw 1.563vw 1.563vw 1.563vw;
    border-radius: 0.938vw;
  }
}
.products__item-title {
  color: #1F2833;
  font-weight: 700;
}
@media screen and (max-width: 1080px) {
  .products__item-title {
    font-size: 6.481vw;
  }
}
@media screen and (min-width: 1081px) {
  .products__item-title {
    font-size: 2.404vw;
  }
}
.products__item-description {
  font-weight: 400;
}
@media screen and (max-width: 1080px) {
  .products__item-description {
    font-size: 4.63vw;
    margin-bottom: 7.407vw;
  }
}
@media screen and (min-width: 1081px) {
  .products__item-description {
    font-size: 1.563vw;
    margin-bottom: 1vw;
  }
}
.products__item-img {
  object-fit: contain;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .products__item-img {
    margin: 1vw 0;
    height: 53.704vw;
  }
}
@media screen and (min-width: 1081px) {
  .products__item-img {
    margin: 0.5vw 0;
    height: 13.021vw;
  }
}
.products__item-link {
  position: relative;
  margin-top: auto;
  align-self: center;
}
@media screen and (max-width: 1080px) {
  .products__item-link {
    font-size: 3.241vw;
  }
}
@media screen and (min-width: 1081px) {
  .products__item-link {
    font-size: 1.263vw;
    padding-right: 1.2vw;
  }
}
.products__item-link:after {
  content: "";
  position: absolute;
  background: #060606;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  transition: all 0.2s ease;
}
@media screen and (max-width: 1080px) {
  .products__item-link:after {
    left: 105%;
    width: 1.8vw;
    height: 2.6vw;
    top: calc(50% - 1.3vw);
  }
}
@media screen and (min-width: 1081px) {
  .products__item-link:after {
    width: 0.8vw;
    height: 1vw;
    right: 0;
    top: calc(50% - 0.5vw);
  }
}
@media screen and (min-width: 1081px) {
  .products__item-link:hover:after {
    right: -2%;
  }
}
.products__item-link:active {
  top: 0.2vw;
}
@media screen and (min-width: 1081px) {
  .products__item-link:active {
    top: 0.1vw;
  }
}
.products__item-label {
  position: absolute;
  background: #73B6C5;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  text-align: center;
  left: 50%;
  bottom: 97%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1080px) {
  .products__item-label {
    border-radius: 4.63vw;
    padding: 1.389vw 4.63vw;
    font-size: 3.241vw;
    min-width: 30.556vw;
  }
}
@media screen and (min-width: 1081px) {
  .products__item-label {
    font-size: 1.094vw;
    min-width: 8.333vw;
    padding: 0.26vw 1.042vw;
    border-radius: 2.604vw;
  }
}
.products__item-label:after {
  content: " " counter(products);
}
.products__screen {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .products__screen {
    padding: 9.722vw;
    min-height: 52.963vw;
  }
}
@media screen and (min-width: 1081px) {
  .products__screen {
    padding: 8.333vw 7.813vw;
    min-height: 29.792vw;
  }
}
@media screen and (max-width: 1080px) {
  .products__screen.casino {
    background-image: url("../img/product-main.png");
    min-height: 69.815vw;
  }
}
@media screen and (min-width: 1081px) {
  .products__screen.casino {
    background-image: url("../img/casino-bg.png");
    min-height: 39.271vw;
    display: flex;
    flex-direction: column;
  }
  .products__screen.casino:before {
    display: none;
  }
  .products__screen.casino .products__screen-title {
    font-size: 7.292vw;
    line-height: 0.9;
    margin-bottom: 1vw;
    margin-top: auto;
  }
  .products__screen.casino .products__screen-info:before, .products__screen.casino .products__screen-info:after {
    display: none;
  }
  .products__screen.casino .products__screen-text {
    font-size: 2.24vw;
    color: #E8C9FF;
    max-width: 31.25vw;
  }
}
@media screen and (max-width: 1080px) {
  .products__screen.sportsbook {
    background-image: url("../img/sportsbook-bg.png");
  }
}
@media screen and (min-width: 1081px) {
  .products__screen.sportsbook {
    background-image: url("../img/sportsbook-bg-desk.png");
    text-align: center;
    min-height: 27.187vw;
  }
  .products__screen.sportsbook .products__screen-info {
    max-width: 100%;
  }
  .products__screen.sportsbook .products__screen-info br {
    display: none;
  }
  .products__screen.sportsbook .products__screen-text {
    background: linear-gradient(90deg, #F0F0F0 0%, #CAB0DE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }
}
@media screen and (max-width: 1080px) {
  .products__screen.referral {
    background-image: url("../img/referral-bg.png");
  }
}
@media screen and (min-width: 1081px) {
  .products__screen.referral {
    background-image: url("../img/referral-bg-desk.png");
    min-height: 29.792vw;
    padding: 2.344vw;
    display: flex;
  }
  .products__screen.referral br {
    display: none;
  }
  .products__screen.referral .products__screen-title {
    color: #6A4B8F;
  }
}
.products__screen.referral:before {
  background: linear-gradient(95.57deg, #8B539A 4.93%, rgba(130, 154, 167, 0) 97.1%);
}
@media screen and (min-width: 1081px) {
  .products__screen.referral:before {
    display: none;
  }
}
.products__screen.referral .products__screen-info:after, .products__screen.referral .products__screen-info:before {
  display: none;
}
@media screen and (min-width: 1081px) {
  .products__screen.referral .products__screen-info {
    max-width: 100%;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
}
.products__screen.referral .products__screen-text {
  color: #571E6B;
}
@media screen and (min-width: 1081px) {
  .products__screen.referral .products__screen-text {
    color: #FFFFFF;
  }
}
@media screen and (max-width: 1080px) {
  .products__screen.affiliate {
    background-image: url("../img/affiliate-bg.png");
  }
}
@media screen and (min-width: 1081px) {
  .products__screen.affiliate {
    background-image: url("../img/affiliate-bg-desk.png");
  }
}
.products__screen.affiliate:before {
  background: linear-gradient(95.57deg, #4A2A71 5.16%, rgba(255, 255, 255, 0) 97.1%);
}
@media screen and (min-width: 1081px) {
  .products__screen.affiliate:before {
    display: none;
  }
}
.products__screen.affiliate .products__screen-info:after, .products__screen.affiliate .products__screen-info:before {
  display: none;
}
@media screen and (min-width: 1081px) {
  .products__screen.affiliate .products__screen-info {
    max-width: 100%;
  }
}
.products__screen.affiliate .products__screen-title {
  color: #BFB3FF;
}
@media screen and (min-width: 1081px) {
  .products__screen.affiliate .products__screen-title {
    margin-bottom: 1.2vw;
    font-size: 4.167vw;
    color: #EBCEFF;
  }
  .products__screen.affiliate .products__screen-title br {
    display: none;
  }
}
.products__screen.affiliate .products__screen-text {
  color: #E3D6F5;
}
@media screen and (min-width: 1081px) {
  .products__screen.affiliate .products__screen-text br {
    display: none;
  }
}
@media screen and (max-width: 1080px) {
  .products__screen.crm {
    background-image: url("../img/crm-bg.png");
  }
}
@media screen and (min-width: 1081px) {
  .products__screen.crm {
    background-image: url("../img/crm-bg-desk.png");
  }
}
.products__screen.crm:before {
  background: linear-gradient(95.57deg, #603E80 2.9%, rgba(255, 255, 255, 0) 97.1%);
}
@media screen and (min-width: 1081px) {
  .products__screen.crm:before {
    display: none;
  }
}
@media screen and (min-width: 1081px) {
  .products__screen.crm .products__screen-text {
    color: #F4F4F4;
  }
}
.products__screen.crm .products__screen-info:after, .products__screen.crm .products__screen-info:before {
  display: none;
}
@media screen and (min-width: 1081px) {
  .products__screen.crm .products__screen-info {
    max-width: 50vw;
  }
}
.products__screen.crm .products__screen-title {
  color: #DFE8FF;
}
@media screen and (min-width: 1081px) {
  .products__screen.crm .products__screen-title br {
    display: none;
  }
}
.products__screen:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(96.87deg, #9B3FBF 0%, rgba(176, 136, 210, 0) 87.5%);
}
.products__screen-info {
  z-index: 1;
  position: relative;
  max-width: 44.444vw;
}
@media screen and (max-width: 1080px) {
  .products__screen-info:before {
    content: "";
    position: absolute;
    width: 70%;
    height: 70%;
    left: -5%;
    top: -5%;
    z-index: -1;
    background: radial-gradient(90.26% 90.26% at 63.65% 3.39%, #47A19F 0%, #66FCF1 49.35%, #47A19F 100%);
    filter: blur(125px);
  }
}
@media screen and (max-width: 1080px) {
  .products__screen-info:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -5%;
    right: -5%;
    z-index: -1;
    background: radial-gradient(100% 100% at 50.09% 0%, #A77FFB 0%, #3044BC 100%);
    filter: blur(125px);
  }
}
.products__screen-title {
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 1080px) {
  .products__screen-title {
    margin-bottom: 2vw;
    font-size: 7.407vw;
  }
}
@media screen and (min-width: 1081px) {
  .products__screen-title {
    font-size: 4.948vw;
    margin-bottom: 2vw;
  }
}
.products__screen-text {
  color: #29113C;
  font-weight: 700;
}
@media screen and (max-width: 1080px) {
  .products__screen-text {
    font-size: 3.241vw;
  }
}
@media screen and (min-width: 1081px) {
  .products__screen-text {
    font-size: 2.083vw;
  }
}
.products .swiper-button-next,
.products .swiper-button-prev {
  background: #342682;
}
@media screen and (min-width: 1081px) {
  .products .swiper-button-next,
  .products .swiper-button-prev {
    margin-top: 5.5vw;
  }
  .products .swiper-button-next:hover,
  .products .swiper-button-prev:hover {
    transition: opacity 0.15s ease;
    opacity: 0.9;
  }
}
@media screen and (max-width: 1080px) {
  .products .swiper-button-next,
  .products .swiper-button-prev {
    margin-top: 10vw;
  }
}

.platform {
  display: flex;
  flex-wrap: wrap;
  gap: 5vw;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(171, 143, 195, 0.6) 92.79%);
}
@media screen and (max-width: 1080px) {
  .platform {
    padding: 14.815vw 7.407vw;
  }
}
@media screen and (min-width: 1081px) {
  .platform {
    padding: 5.813vw 11.198vw 3vw;
  }
}
.platform__item {
  text-align: center;
}
.platform__item-title {
  text-align: left;
  color: #6D5D84;
}
@media screen and (max-width: 1080px) {
  .platform__item-title {
    border-bottom: 0.556vw solid #8967A3;
    font-size: 4.63vw;
    padding-bottom: 2.215vw;
  }
}
@media screen and (min-width: 1081px) {
  .platform__item-title {
    border-bottom: 0.26vw solid #8967A3;
    font-size: 3.385vw;
    padding-bottom: 1vw;
  }
}
.platform__item-text {
  color: #7B5896;
  font-size: 3.241vw;
}
.platform__item-img {
  object-fit: contain;
}
@media screen and (max-width: 1080px) {
  .platform__item-img {
    width: 100%;
    margin: 2vw 0;
    height: 60.185vw;
  }
}
@media screen and (min-width: 1081px) {
  .platform__item-img {
    width: auto;
    height: 24.479vw;
  }
}
.platform__item-info {
  text-align: left;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 1.667vw;
  padding: 2.778vw;
}
.platform__item-info-title {
  color: #857FBC;
  padding-right: 2vw;
  font-size: 4.167vw;
  margin-bottom: 4.63vw;
}
.platform__item .button {
  display: inline-block;
  margin: 3.704vw auto 0;
}
.platform__item-subtitle {
  color: #571B6E;
  text-align: left;
  font-weight: 700;
}
@media screen and (max-width: 1080px) {
  .platform__item-subtitle {
    font-size: 4.63vw;
    margin-top: 1.5vw;
  }
}
@media screen and (min-width: 1081px) {
  .platform__item-subtitle {
    font-size: 2.604vw;
    margin-top: 1vw;
  }
}
.platform__item-subtext {
  color: #000;
  font-weight: 700;
}
@media screen and (max-width: 1080px) {
  .platform__item-subtext {
    font-size: 4.167vw;
    border-bottom: 0.556vw solid #8967A3;
    padding-bottom: 2.215vw;
  }
  .platform__item-subtext + .platform__item-subtitle {
    text-align: center;
    margin-top: 6vw;
  }
}
@media screen and (min-width: 1081px) {
  .platform__item-subtext {
    font-size: 2.344vw;
    border-radius: 2.344vw;
    background: linear-gradient(90deg, rgba(207, 181, 254, 0.2) 0%, rgba(18, 61, 233, 0.2) 100%);
    padding: 1.5vw 4vw;
    max-width: 30.167vw;
  }
}
.platform__item .line {
  display: inline-block;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .platform__item .line {
    border-bottom: 0.556vw solid #8967A3;
  }
}
@media screen and (min-width: 1081px) {
  .platform__item .line {
    border-bottom: 0.26vw solid #8967A3;
  }
}
.platform__details {
  overflow: hidden;
}
.platform__details.turnkey {
  display: none;
}
@media screen and (max-width: 1080px) {
  .platform__details.turnkey {
    background: url("../img/platform-details-bg.png") center no-repeat;
    background-size: cover;
  }
}
@media screen and (min-width: 1081px) {
  .platform__details.turnkey {
    background: url("../img/platform-details-bg-desk.png") center no-repeat;
    background-size: cover;
  }
}
@media screen and (min-width: 1081px) {
  .platform .turnkey__info-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3.646vw;
    margin: 4.125vw 0 6vw;
  }
  .platform .turnkey__info-block + .platform__item-subtitle {
    padding-top: 1.563vw;
    border-top: 0.26vw solid #8967A3;
  }
}
@media screen and (min-width: 1081px) {
  .platform .retail__info-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.646vw;
    margin: 1.5vw 0;
  }
  .platform .retail__info-block.reverse .platform__item-img {
    order: 2;
  }
}

.turnkey__slider {
  position: relative;
}
@media screen and (max-width: 1080px) {
  .turnkey__slider {
    margin-top: 12.037vw;
  }
}
@media screen and (min-width: 1081px) {
  .turnkey__slider {
    margin-top: 4.427vw;
  }
}
.turnkey__slider-item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1080px) {
  .turnkey__slider-item {
    border-radius: 1.667vw;
    padding: 5.407vw 7.407vw;
    min-height: 101.296vw;
  }
}
@media screen and (min-width: 1081px) {
  .turnkey__slider-item {
    border-radius: 0.938vw;
    padding: 3.646vw 4.427vw;
    min-height: 56.979vw;
    max-width: 45.573vw;
  }
}
.turnkey__slider-item-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 1.667vw;
  z-index: -1;
}
.turnkey__slider-item-title {
  line-height: 1.1;
  word-break: break-word;
}
@media screen and (max-width: 1080px) {
  .turnkey__slider-item-title {
    font-size: 7.407vw;
  }
}
@media screen and (min-width: 1081px) {
  .turnkey__slider-item-title {
    font-size: 3.646vw;
  }
}
.turnkey__slider-item-text {
  word-break: break-word;
}
@media screen and (max-width: 1080px) {
  .turnkey__slider-item-text {
    font-size: 4.167vw;
  }
}
@media screen and (min-width: 1081px) {
  .turnkey__slider-item-text {
    font-size: 2.344vw;
  }
}
.turnkey__slider-item:nth-child(1) .turnkey__slider-item-title {
  color: #C1BEEF;
}
.turnkey__slider-item:nth-child(1) .turnkey__slider-item-text {
  color: #E7CEF8;
}
.turnkey__slider-item:nth-child(2) .turnkey__slider-item-title {
  color: #320C4E;
}
.turnkey__slider-item:nth-child(2) .turnkey__slider-item-text {
  color: #3D2984;
}
.turnkey__slider-item:nth-child(3) .turnkey__slider-item-title {
  color: #66208F;
}
.turnkey__slider-item:nth-child(3) .turnkey__slider-item-text {
  color: #181159;
}

.turnkey {
  position: relative;
}
.turnkey .swiper-button-next,
.turnkey .swiper-button-prev {
  background: #342682;
}
@media screen and (min-width: 1081px) {
  .turnkey .swiper-button-next,
  .turnkey .swiper-button-prev {
    top: auto;
    bottom: 29vw;
  }
}
@media screen and (max-width: 1080px) {
  .turnkey .swiper-button-next,
  .turnkey .swiper-button-prev {
    top: auto;
    bottom: 62vw;
  }
}

.retail {
  display: none;
}
@media screen and (max-width: 1080px) {
  .retail {
    background: url("../img/retail-bg.png") center no-repeat;
    background-size: cover;
  }
}
@media screen and (min-width: 1081px) {
  .retail {
    background: url("../img/retail-bg-desk.png") center no-repeat;
    background-size: cover;
  }
  .retail .platform__item-img {
    height: auto;
    max-width: 36.979vw;
    margin: auto;
  }
}
.retail__list {
  display: grid;
  justify-content: center;
}
@media screen and (max-width: 1080px) {
  .retail__list {
    gap: 2.315vw;
    margin-bottom: 4.63vw;
  }
}
@media screen and (min-width: 1081px) {
  .retail__list {
    gap: 1.823vw;
    margin: 0 auto;
  }
}
.retail__list-item {
  font-weight: 700;
  text-align: center;
  background: linear-gradient(90deg, rgba(207, 181, 254, 0.2) 0%, rgba(18, 61, 233, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #392D67;
}
@media screen and (max-width: 1080px) {
  .retail__list-item {
    border-radius: 4.167vw;
    font-size: 4.167vw;
    min-width: 61.111vw;
    width: 100%;
    min-height: 11.111vw;
    padding: 1vw 7vw;
  }
}
@media screen and (min-width: 1081px) {
  .retail__list-item {
    border-radius: 2.344vw;
    font-size: 1.823vw;
    min-width: 34.375vw;
    width: 100%;
    min-height: 4.688vw;
    padding: 1vw;
  }
  .retail__list-item:first-child br {
    display: none;
  }
}

.contact {
  text-align: center;
}
.contact__title {
  color: #18072D;
  font-weight: 700;
}
@media screen and (max-width: 1080px) {
  .contact__title {
    font-size: 7.407vw;
    margin-bottom: 5vw;
  }
}
@media screen and (min-width: 1081px) {
  .contact__title {
    font-size: 4.167vw;
    margin-bottom: 1.302vw;
  }
}
.contact__subtitle {
  color: #531969;
}
@media screen and (max-width: 1080px) {
  .contact__subtitle {
    font-size: 4.167vw;
  }
}
@media screen and (min-width: 1081px) {
  .contact__subtitle {
    font-size: 2.344vw;
  }
  .contact__subtitle br {
    display: none;
  }
}
.contact__text {
  color: #29262A;
}
@media screen and (max-width: 1080px) {
  .contact__text {
    font-size: 1.852vw;
    margin-bottom: 3.704vw;
  }
}
@media screen and (min-width: 1081px) {
  .contact__text {
    font-size: 1.042vw;
    margin-bottom: 1.563vw;
  }
}
@media screen and (max-width: 1080px) {
  .contact .buttons {
    margin: 8vw 0 10vw;
  }
}
@media screen and (min-width: 1081px) {
  .contact .buttons {
    margin: 2.844vw 0 5vw;
  }
}
.contact-us {
  background: url("../img/form-bg.png") center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1080px) {
  .contact-us {
    padding: 7.407vw 6.722vw;
    min-height: 100vh;
  }
}
@media screen and (min-width: 1081px) {
  .contact-us {
    padding: 3.542vw 4.427vw 2vw;
    min-height: 100vh;
  }
}
.contact-us__title {
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .contact-us__title {
    font-size: 6.481vw;
    margin-bottom: 3vw;
    color: #18072D;
  }
}
@media screen and (min-width: 1081px) {
  .contact-us__title {
    color: #E5D0FF;
    font-size: 4.688vw;
    margin-bottom: 1vw;
  }
}
.contact-us__subtitle {
  color: #EBD8FF;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .contact-us__subtitle {
    font-size: 3.241vw;
  }
}
@media screen and (min-width: 1081px) {
  .contact-us__subtitle {
    font-size: 2.552vw;
    color: #fff;
  }
}
@media screen and (min-width: 1081px) {
  .contact-us__info {
    grid-area: text;
    padding: 0 10vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.contact-us__form #message {
  color: #fff;
  display: none;
}
@media screen and (min-width: 1081px) {
  .contact-us__form #message {
    padding: 0.5vw;
    font-size: 1.263vw;
    border-radius: 0.781vw;
  }
}
@media screen and (max-width: 1080px) {
  .contact-us__form #message {
    padding: 1vw;
    font-size: 2.563vw;
    border-radius: 1.389vw;
  }
}
.contact-us__form #message.success {
  background: #e6ffe6;
  color: #006600;
}
.contact-us__form #message.error {
  background: #ffe6e6;
  color: #990000;
}
@media screen and (min-width: 1081px) {
  .contact-us__form {
    margin-bottom: 3.125vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "text  form" "button form";
  }
}
.contact-us__form .form-field {
  display: grid;
}
@media screen and (max-width: 1080px) {
  .contact-us__form .form-field {
    column-gap: 1vw;
    grid-template-columns: 17vw 1fr;
  }
}
@media screen and (min-width: 1081px) {
  .contact-us__form .form-field {
    column-gap: 1vw;
    grid-template-columns: 8vw 1fr;
  }
}
.contact-us__form .form-field input {
  background: #fff;
  color: #000;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .contact-us__form .form-field input {
    min-height: 5.741vw;
    border-radius: 1.389vw;
    padding: 1vw 2vw;
    font-size: 3.704vw;
  }
}
@media screen and (min-width: 1081px) {
  .contact-us__form .form-field input {
    min-height: 2.24vw;
    border-radius: 0.781vw;
    padding: 0.5vw 1vw;
    font-size: 1.563vw;
  }
}
.contact-us__form .form-field label {
  color: #EBD8FF;
}
@media screen and (max-width: 1080px) {
  .contact-us__form .form-field label {
    font-size: 3.704vw;
  }
}
@media screen and (min-width: 1081px) {
  .contact-us__form .form-field label {
    font-size: 1.563vw;
  }
}
.contact-us__form .form-field textarea {
  background: #fff;
  resize: none;
  grid-column: 1/-1;
}
.contact-us__form .form-field textarea::placeholder {
  color: #989898;
}
@media screen and (max-width: 1080px) {
  .contact-us__form .form-field textarea {
    padding: 1vw 2vw;
    min-height: 27.778vw;
    font-size: 3.241vw;
    border-radius: 1.389vw;
  }
}
@media screen and (min-width: 1081px) {
  .contact-us__form .form-field textarea {
    font-size: 1.563vw;
    padding: 0.5vw 1vw;
    border-radius: 0.781vw;
    min-height: 10.625vw;
  }
}
@media screen and (max-width: 1080px) {
  .contact-us__form .buttons {
    margin-top: 6.481vw;
  }
}
@media screen and (min-width: 1081px) {
  .contact-us__form .buttons {
    grid-area: button;
  }
  .contact-us__form .buttons .button {
    font-size: 2.344vw;
  }
}
.contact-us__form .form-fields {
  display: grid;
}
@media screen and (max-width: 1080px) {
  .contact-us__form .form-fields {
    row-gap: 2.315vw;
    margin-top: 11.111vw;
  }
}
@media screen and (min-width: 1081px) {
  .contact-us__form .form-fields {
    grid-area: form;
    row-gap: 0.938vw;
    border-radius: 0.885vw;
    background: rgba(39, 16, 66, 0.2);
    padding: 1.9vw 1.5vw;
  }
}
@media screen and (max-width: 1080px) {
  .contact-us__footer {
    margin-top: 8.796vw;
  }
  .contact-us__footer .contact__text {
    color: #D1C8EB;
    text-align: center;
    font-size: 1.852vw;
    margin-top: 3.704vw;
    margin-bottom: 1.5vw;
  }
  .contact-us__footer .footer__bottom {
    color: #D1C8EB;
  }
}
@media screen and (min-width: 1081px) {
  .contact-us__footer .contact__text {
    color: #D1C8EB;
    text-align: center;
  }
  .contact-us__footer .footer__bottom {
    color: #D1C8EB;
  }
}

.features {
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .features {
    background: url("../img/features-bg.png") center no-repeat;
    background-size: cover;
    padding: 5.556vw 5.093vw;
  }
}
@media screen and (min-width: 1081px) {
  .features {
    background: url("../img/features-bg-desk.png") center no-repeat;
    background-size: cover;
    padding: 3.125vw 11.458vw;
  }
}
.features__title {
  color: #342682;
}
@media screen and (max-width: 1080px) {
  .features__title {
    margin-bottom: 2vw;
    font-size: 4.63vw;
  }
}
@media screen and (min-width: 1081px) {
  .features__title {
    font-size: 3.646vw;
    margin-bottom: 2vw;
  }
}
.features__subtitle {
  color: #612F74;
}
@media screen and (max-width: 1080px) {
  .features__subtitle {
    font-size: 3.241vw;
  }
}
@media screen and (min-width: 1081px) {
  .features__subtitle {
    font-size: 1.823vw;
  }
}
.features__brands {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1080px) {
  .features__brands {
    gap: 4vw;
    margin: 3vw 0 5vw;
  }
}
@media screen and (min-width: 1081px) {
  .features__brands {
    gap: 2vw;
    margin: 1.719vw 0 2.5vw;
    justify-content: center;
  }
}
.features__brand img {
  width: 100%;
  object-fit: contain;
}
.features__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 1080px) {
  .features__items {
    gap: 1.574vw;
  }
}
@media screen and (min-width: 1081px) {
  .features__items {
    gap: 4.375vw;
  }
}
.features__item {
  background: rgba(233, 227, 251, 0.7);
  text-align: center;
  justify-content: center;
}
@media screen and (max-width: 1080px) {
  .features__item {
    padding: 2.778vw;
    border-radius: 2.778vw;
  }
}
@media screen and (min-width: 1081px) {
  .features__item {
    padding: 1vw 2.563vw;
    border-radius: 0.938vw;
  }
}
.features__item img {
  display: inline-block;
  object-fit: contain;
}
@media screen and (max-width: 1080px) {
  .features__item img {
    height: 12.963vw;
  }
}
@media screen and (min-width: 1081px) {
  .features__item img {
    height: 8.594vw;
  }
}
.features__item-title {
  color: #7545A8;
}
@media screen and (max-width: 1080px) {
  .features__item-title {
    font-size: 2.778vw;
    margin-top: 2.037vw;
  }
}
@media screen and (min-width: 1081px) {
  .features__item-title {
    font-size: 1.563vw;
    margin-top: 1.146vw;
  }
}
@media screen and (max-width: 1080px) {
  .features__item:not(:first-child) .features__item-title {
    font-size: 3.241vw;
  }
}
@media screen and (min-width: 1081px) {
  .features__item:not(:first-child) .features__item-title {
    font-size: 1.823vw;
  }
}
@media screen and (max-width: 1080px) {
  .features__list {
    background: url("../img/features-bg-2.png") center no-repeat;
    background-size: cover;
    padding: 2.13vw 6.852vw 6.852vw;
  }
}
@media screen and (min-width: 1081px) {
  .features__list {
    background: url("../img/features-bg-2-desk.png") center no-repeat;
    background-size: cover;
    padding: 3.125vw 3.125vw 2.344vw;
  }
}
.features__list-items {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1080px) {
  .features__list-items {
    margin-top: 3.241vw;
    gap: 0.926vw;
  }
}
@media screen and (min-width: 1081px) {
  .features__list-items {
    margin-top: 1.563vw;
    gap: 0.781vw;
  }
}
.features__list-item {
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 1080px) {
  .features__list-item {
    border-radius: 1.667vw;
    font-size: 3.02vw;
    padding: 1.5vw 2.037vw;
    background: rgba(27, 0, 109, 0.56);
    color: #EDDEF4;
  }
}
@media screen and (min-width: 1081px) {
  .features__list-item {
    font-size: 1.563vw;
    border-radius: 0.938vw;
    padding: 0.625vw 3.204vw;
    background: rgba(230, 222, 255, 0.56);
    color: #68437B;
    max-width: 53.5vw;
  }
  .features__list-item br {
    display: none;
  }
}

@media screen and (max-width: 1080px) {
  .widgets {
    padding: 1.852vw 6.019vw 4.5vw;
  }
}
@media screen and (min-width: 1081px) {
  .widgets {
    padding: 1.042vw 10.156vw 2.083vw;
  }
}
.widgets__title {
  color: #292C33;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .widgets__title {
    font-size: 4.63vw;
    margin-bottom: 1.852vw;
  }
}
@media screen and (min-width: 1081px) {
  .widgets__title {
    font-size: 2.604vw;
    margin-bottom: 1vw;
  }
}
.widgets__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 1080px) {
  .widgets__items {
    gap: 1.389vw;
  }
}
@media screen and (min-width: 1081px) {
  .widgets__items {
    gap: 1.198vw;
  }
}
.widgets__item {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 1080px) {
  .widgets__item {
    border-radius: 1.667vw;
    padding: 1.852vw 4.167vw;
    height: 24.815vw;
  }
}
@media screen and (min-width: 1081px) {
  .widgets__item {
    height: 13.958vw;
    padding: 1.146vw 4.208vw;
    border-radius: 0.938vw;
  }
}
.widgets__item:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.7;
  background: linear-gradient(180deg, rgba(209, 200, 235, 0.07) 0%, rgba(123, 38, 110, 0.7) 100%);
}
.widgets__item-img {
  z-index: 0;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
@media screen and (min-width: 1081px) {
  .widgets__item-img {
    width: 100%;
    height: 100%;
    object-position: center;
  }
}
.widgets__item-title {
  z-index: 2;
  color: #FFEEFD;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .widgets__item-title {
    font-size: 2.222vw;
  }
}
@media screen and (min-width: 1081px) {
  .widgets__item-title {
    font-size: 1.25vw;
  }
}

.e-sports {
  display: flex;
  background: linear-gradient(108.61deg, #8C44BC 51.49%, #402576 100%);
}
@media screen and (max-width: 1080px) {
  .e-sports__img {
    width: 52%;
  }
}
@media screen and (min-width: 1081px) {
  .e-sports__img {
    width: 50%;
    min-height: 29.792vw;
    max-height: 31vw;
    object-fit: cover;
    object-position: top;
  }
}
@media screen and (max-width: 1080px) {
  .e-sports__info {
    width: 48%;
    padding: 6.944vw 3.241vw;
  }
}
@media screen and (min-width: 1081px) {
  .e-sports__info {
    width: 50%;
    padding: 4.01vw 7.552vw;
  }
}
.e-sports__title {
  color: #EA9CFE;
  line-height: 1.1;
}
@media screen and (max-width: 1080px) {
  .e-sports__title {
    font-size: 7.407vw;
    margin-bottom: 1.852vw;
  }
}
@media screen and (min-width: 1081px) {
  .e-sports__title {
    font-size: 5.729vw;
    margin-bottom: 1vw;
    line-height: 1;
  }
}
.e-sports__description {
  color: #CFA3FE;
  font-weight: 700;
}
@media screen and (max-width: 1080px) {
  .e-sports__description {
    font-size: 3.241vw;
  }
}
@media screen and (min-width: 1081px) {
  .e-sports__description {
    font-size: 2.24vw;
    width: 64%;
  }
}
.e-sports__features {
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .e-sports__features {
    background: url("../img/e-sports-bg.png") center no-repeat;
    background-size: cover;
  }
}
@media screen and (min-width: 1081px) {
  .e-sports__features {
    background: url("../img/e-sports-bg-desk.png") center no-repeat;
    background-size: cover;
    padding: 3.125vw 11.458vw 6.302vw 6.51vw;
  }
}
.e-sports__features .features__title {
  color: #523683;
}
@media screen and (min-width: 1081px) {
  .e-sports__features .features__title {
    margin-bottom: 1.302vw;
  }
}
.e-sports__features .features__subtitle {
  color: #8A53BA;
}
@media screen and (min-width: 1081px) {
  .e-sports__features .features__subtitle br {
    display: none;
  }
}
.e-sports__features .swiper-button-next,
.e-sports__features .swiper-button-prev {
  background: #342682;
  top: auto;
}
@media screen and (max-width: 1080px) {
  .e-sports__features .swiper-button-next,
  .e-sports__features .swiper-button-prev {
    bottom: 12vw;
  }
}
@media screen and (min-width: 1081px) {
  .e-sports__features .swiper-button-next,
  .e-sports__features .swiper-button-prev {
    bottom: 10vw;
  }
}
.e-sports__items {
  margin-top: 6.944vw;
}
.e-sports__item {
  background: #fff;
  display: flex;
  justify-content: center;
  position: relative;
  flex-direction: column;
  overflow: hidden;
  align-items: flex-start;
}
@media screen and (max-width: 1080px) {
  .e-sports__item {
    padding: 4.167vw;
    border-radius: 1.667vw;
    min-height: 20.37vw;
    max-width: 62.963vw;
  }
}
@media screen and (min-width: 1081px) {
  .e-sports__item {
    padding: 2.344vw 1.823vw;
    border-radius: 0.938vw;
    min-height: 11.51vw;
    max-width: 34.792vw;
  }
}
@media screen and (max-width: 1080px) {
  .e-sports__item-title {
    font-size: 4.167vw;
  }
}
@media screen and (min-width: 1081px) {
  .e-sports__item-title {
    font-size: 2.344vw;
  }
}
.e-sports__item-text {
  text-align: left;
  font-weight: 500;
}
@media screen and (max-width: 1080px) {
  .e-sports__item-text {
    font-size: 3.241vw;
  }
}
@media screen and (min-width: 1081px) {
  .e-sports__item-text {
    font-size: 1.823vw;
  }
}
.e-sports__item-img {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  object-fit: cover;
}
.e-sports__mobile {
  background: url("../img/e-sports-mobile-bg.png") center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1080px) {
  .e-sports__mobile {
    padding: 10.648vw 6.481vw;
  }
}
.e-sports__mobile-block {
  position: relative;
}
@media screen and (min-width: 1081px) {
  .e-sports__mobile-block {
    margin: 5.729vw 0;
  }
}
.e-sports__mobile-block img {
  position: absolute;
}
@media screen and (max-width: 1080px) {
  .e-sports__mobile-block img {
    left: 0;
    top: -15%;
    max-height: 45.833vw;
  }
}
@media screen and (min-width: 1081px) {
  .e-sports__mobile-block img {
    left: 10%;
    top: -15%;
    max-height: 25.625vw;
    width: 17.24vw;
  }
}
.e-sports__mobile-text {
  color: #3D2E54;
  margin-left: auto;
}
@media screen and (max-width: 1080px) {
  .e-sports__mobile-text {
    background: linear-gradient(82.6deg, rgba(66, 53, 87, 0.5) 10.59%, rgba(159, 122, 218, 0.1) 89.18%);
    width: 80%;
    border-radius: 1.667vw;
    padding: 4.63vw 2.241vw 4.63vw 12vw;
    font-size: 3.241vw;
  }
}
@media screen and (min-width: 1081px) {
  .e-sports__mobile-text {
    font-size: 2.344vw;
    text-align: left;
    width: 80%;
    background: linear-gradient(82.6deg, rgba(207, 188, 238, 0.5) 10.59%, rgba(159, 122, 218, 0.1) 89.18%);
    padding: 2.083vw 6.771vw 2.1vw 11.667vw;
    border-radius: 0.938vw;
  }
  .e-sports__mobile-text br {
    display: none;
  }
}
.e-sports__mobile-text ul {
  list-style-type: disc;
}
@media screen and (max-width: 1080px) {
  .e-sports__mobile-text ul {
    margin-left: 4.8vw;
  }
}
@media screen and (min-width: 1081px) {
  .e-sports__mobile-text ul {
    margin-left: 3.2vw;
  }
}
.e-sports__mobile-title {
  font-weight: 700;
}

.crm__text {
  text-align: center;
  font-weight: 700;
  color: #60206C;
}
@media screen and (max-width: 1080px) {
  .crm__text {
    padding: 2.13vw;
    font-size: 4.167vw;
  }
}
@media screen and (min-width: 1081px) {
  .crm__text {
    font-size: 2.344vw;
    padding: 2.344vw;
  }
  .crm__text br {
    display: none;
  }
}
.crm__advantages {
  overflow: hidden;
  position: relative;
}
.crm__advantages .swiper-button-next,
.crm__advantages .swiper-button-prev {
  background: #342682;
}
@media screen and (max-width: 1080px) {
  .crm__advantages {
    background: url("../img/crm-adv-bg.png") center;
    background-size: cover;
    padding: 9.259vw 5.556vw;
  }
}
@media screen and (min-width: 1081px) {
  .crm__advantages {
    padding: 3.563vw 8.594vw 5.208vw;
  }
}
.crm__advantages-items {
  display: grid;
}
@media screen and (max-width: 1080px) {
  .crm__advantages-items {
    gap: 15.278vw;
  }
}
@media screen and (min-width: 1081px) {
  .crm__advantages-items {
    row-gap: 7.813vw;
    height: 100%;
  }
}
@media screen and (min-width: 1081px) {
  .crm__advantages-items:nth-child(2) .even .crm__advantages-item-text {
    font-size: 1.667vw;
    padding-left: 12.25vw;
  }
}
.crm__advantages-item {
  position: relative;
}
.crm__advantages-item-text {
  background: rgba(198, 168, 239, 0.7);
  color: #2F147A;
  display: flex;
  align-items: center;
  font-weight: 700;
}
@media screen and (max-width: 1080px) {
  .crm__advantages-item-text {
    min-height: 32.87vw;
    padding: 3.704vw;
    border-radius: 1.667vw;
    font-size: 4.167vw;
    width: 82%;
  }
}
@media screen and (min-width: 1081px) {
  .crm__advantages-item-text {
    font-size: 2.344vw;
    min-height: 11.979vw;
    padding: 1.604vw 2.304vw;
    border-radius: 0.938vw;
    width: 82%;
  }
}
.crm__advantages-item-img {
  position: absolute;
}
@media screen and (max-width: 1080px) {
  .crm__advantages-item-img {
    top: -12%;
    max-height: 44.444vw;
  }
}
@media screen and (min-width: 1081px) {
  .crm__advantages-item-img {
    max-height: 19vw;
    top: 50%;
    transform: translateY(-50%);
  }
}
.crm__advantages-item.odd {
  text-align: left;
}
@media screen and (max-width: 1080px) {
  .crm__advantages-item.odd .crm__advantages-item-text {
    padding-right: 22.87vw;
  }
}
@media screen and (min-width: 1081px) {
  .crm__advantages-item.odd .crm__advantages-item-text {
    padding-right: 7.25vw;
  }
}
.crm__advantages-item.odd .crm__advantages-item-img {
  right: 0;
}
.crm__advantages-item.odd.last .crm__advantages-item-img {
  right: 8%;
}
.crm__advantages-item.even {
  text-align: right;
}
.crm__advantages-item.even .crm__advantages-item-text {
  margin-left: auto;
}
@media screen and (max-width: 1080px) {
  .crm__advantages-item.even .crm__advantages-item-text {
    padding-left: 27.87vw;
  }
}
@media screen and (min-width: 1081px) {
  .crm__advantages-item.even .crm__advantages-item-text {
    padding-left: 7.25vw;
  }
}
.crm__advantages-item.even .crm__advantages-item-img {
  left: 0;
}
.crm__advantages-item.even.last .crm__advantages-item-img {
  left: 9%;
}
.crm__lifecycle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .crm__lifecycle {
    background: url("../img/crm-lifecycle.png") center no-repeat;
    background-size: cover;
    padding: 4.167vw;
    min-height: 64.352vw;
  }
}
@media screen and (min-width: 1081px) {
  .crm__lifecycle {
    background: url("../img/crm-lifecycle-desk.png") center no-repeat;
    background-size: cover;
    padding: 3.229vw;
    min-height: 59.219vw;
  }
}
.crm__lifecycle-title {
  color: #512977;
}
@media screen and (max-width: 1080px) {
  .crm__lifecycle-title {
    font-size: 4.167vw;
  }
}
@media screen and (min-width: 1081px) {
  .crm__lifecycle-title {
    font-size: 2.344vw;
  }
}
.crm__lifecycle-text {
  color: #A484CB;
  font-weight: 700;
}
@media screen and (max-width: 1080px) {
  .crm__lifecycle-text {
    font-size: 3.133vw;
  }
}
@media screen and (min-width: 1081px) {
  .crm__lifecycle-text {
    font-size: 1.875vw;
  }
}

.referral__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1080px) {
  .referral__items {
    gap: 1.574vw;
    padding: 4.63vw;
  }
}
@media screen and (min-width: 1081px) {
  .referral__items {
    gap: 1.458vw;
    padding: 2.76vw 14.896vw;
  }
}
.referral__items-el {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .referral__items-el {
    padding: 1.752vw 1vw;
    min-height: 36.111vw;
    border-radius: 1.667vw;
  }
}
@media screen and (min-width: 1081px) {
  .referral__items-el {
    border-radius: 0.938vw;
    min-height: 28.125vw;
    padding: 2.083vw 1.563vw 1vw;
  }
}
.referral__items-el:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(233, 227, 251, 0.1) 0%, #D07EEF 100%);
}
.referral__items-el img {
  position: absolute;
  object-fit: cover;
  inset: 0;
  z-index: 0;
}
@media screen and (min-width: 1081px) {
  .referral__items-el img {
    width: 100%;
    height: 100%;
  }
}
.referral__items-el-title {
  color: #4D1588;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .referral__items-el-title {
    font-size: 3.041vw;
  }
}
@media screen and (min-width: 1081px) {
  .referral__items-el-title {
    font-size: 1.823vw;
    height: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.affiliate__features {
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .affiliate__features {
    background: url("../img/affiliate-slider-bg.png") center no-repeat;
    background-size: cover;
    padding: 6.944vw 5.093vw;
  }
}
@media screen and (min-width: 1081px) {
  .affiliate__features {
    background: url("../img/affiliate-slider-bg-desk.png") center no-repeat;
    background-size: cover;
    padding: 5.573vw 7.448vw;
  }
}
@media screen and (max-width: 1080px) {
  .affiliate__features-items {
    overflow: hidden;
  }
}
@media screen and (min-width: 1081px) {
  .affiliate__features-items {
    overflow: visible;
  }
}
.affiliate__features-item {
  color: #290E5B;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1080px) {
  .affiliate__features-item {
    border-radius: 1.667vw;
    padding: 45.704vw 1.852vw 3.704vw 1.852vw;
    min-height: 99.444vw;
  }
}
@media screen and (min-width: 1081px) {
  .affiliate__features-item {
    border-radius: 0.938vw;
    min-height: 53.937vw;
    padding: 25vw 1.042vw 2.604vw;
  }
}
.affiliate__features-item-text {
  text-align: center;
  color: inherit;
}
@media screen and (max-width: 1080px) {
  .affiliate__features-item-text {
    font-size: 4.3vw;
  }
}
@media screen and (min-width: 1081px) {
  .affiliate__features-item-text {
    font-size: 2.604vw;
  }
}
.affiliate__features-item:first-child {
  color: #BAB1F0;
  background-image: url("../img/afl-1.png");
}
.affiliate__features-item:nth-child(2) {
  background-image: url("../img/afl-2.png");
}
.affiliate__features-item:nth-child(3) {
  background-image: url("../img/afl-3.png");
}
.affiliate__features-item:nth-child(4) {
  background-image: url("../img/afl-4.png");
}
.affiliate__features-item:nth-child(5) {
  background-image: url("../img/afl-5.png");
}
.affiliate__features-item:nth-child(6) {
  background-image: url("../img/afl-6.png");
}
.affiliate__features-item:nth-child(7) {
  background-image: url("../img/afl-7.png");
}
.affiliate__features-item:nth-child(8) {
  background-image: url("../img/afl-8.png");
}
.affiliate__features-item:nth-child(9) {
  background-image: url("../img/afl-9.png");
}
.affiliate__features-item:nth-child(10) {
  background-image: url("../img/afl-10.png");
}
.affiliate__features-item:nth-child(11) {
  background-image: url("../img/afl-11.png");
}
.affiliate__features .swiper-button-next,
.affiliate__features .swiper-button-prev {
  background: #342682;
}

.privacy b {
  font-weight: 700;
}
.privacy__screen {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: url("../img/privacy-screen-bg.png") center no-repeat;
  background-size: cover;
  position: relative;
}
.privacy__screen:before {
  content: "";
  background: url("../img/privacy-img.png") center no-repeat;
  background-size: cover;
  position: absolute;
}
@media screen and (max-width: 1080px) {
  .privacy__screen {
    min-height: 36.481vw;
    padding: 10vw;
  }
  .privacy__screen:before {
    left: 0;
    bottom: 0;
    width: 44.537vw;
    height: 34.074vw;
  }
}
@media screen and (min-width: 1081px) {
  .privacy__screen {
    min-height: 26.771vw;
    padding: 5vw;
  }
  .privacy__screen:before {
    left: 0;
    bottom: 0;
    width: 33.177vw;
    height: 25.26vw;
  }
}
@media screen and (max-width: 1080px) {
  .privacy__text {
    padding-left: 25vw;
    width: 85%;
    margin-left: auto;
  }
}
@media screen and (min-width: 1081px) {
  .privacy__text {
    padding-left: 15vw;
  }
}
.privacy__title {
  color: #200947;
}
@media screen and (min-width: 1081px) {
  .privacy__title {
    font-size: 3.229vw;
    margin-bottom: 0.6vw;
  }
}
@media screen and (max-width: 1080px) {
  .privacy__title {
    font-size: 3.889vw;
    margin-bottom: 1vw;
    font-weight: 800;
  }
}
.privacy__subtitle {
  color: #E6BFFF;
}
@media screen and (min-width: 1081px) {
  .privacy__subtitle {
    font-size: 1.823vw;
  }
}
@media screen and (max-width: 1080px) {
  .privacy__subtitle {
    font-size: 1.389vw;
    font-weight: 500;
  }
}
@media screen and (min-width: 1081px) {
  .privacy .inner-text {
    padding: 2.604vw 8.802vw;
  }
}
@media screen and (max-width: 1080px) {
  .privacy .inner-text {
    padding: 4.63vw 6.481vw;
  }
}
.privacy__footer {
  background: linear-gradient(98.43deg, #5B3280 -4.81%, #2D1B3A 95.96%);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
@media screen and (min-width: 1081px) {
  .privacy__footer {
    padding: 3.206vw 5.469vw 2vw;
  }
}
@media screen and (max-width: 1080px) {
  .privacy__footer {
    padding: 7vw 8.333vw;
  }
}
.privacy__footer .footer__img {
  margin-bottom: 0;
}
.privacy__footer-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4vw;
  width: 100%;
}
@media screen and (min-width: 1081px) {
  .privacy__footer-top {
    font-size: 3.646vw;
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.719vw;
    border-bottom: 0.208vw solid #fff;
  }
  .privacy__footer-top img {
    width: 14.948vw;
    object-fit: contain;
  }
}
@media screen and (max-width: 1080px) {
  .privacy__footer-top {
    font-size: 6.481vw;
    color: #fff;
    font-weight: 700 !important;
    padding-bottom: 0.2vw;
    border-bottom: 0.37vw solid #fff;
    margin-bottom: 5vw;
  }
  .privacy__footer-top img {
    width: 26.574vw;
    object-fit: contain;
  }
}
.privacy__link {
  position: relative;
  font-weight: 700;
}
@media screen and (min-width: 1081px) {
  .privacy__link {
    margin-right: 1vw;
    padding-right: 2vw;
  }
}
@media screen and (max-width: 1080px) {
  .privacy__link {
    margin-right: 3vw;
    padding-right: 4vw;
  }
  .privacy__link:active:after {
    right: -1%;
  }
}
.privacy__link:after {
  content: "";
  position: absolute;
  right: 0;
  transition: all 0.2s ease;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
}
@media screen and (min-width: 1081px) {
  .privacy__link:after {
    width: 1.5vw;
    height: 1.5vw;
    border-left: 0.25vw solid #fff;
    border-top: 0.25vw solid #fff;
  }
}
@media screen and (max-width: 1080px) {
  .privacy__link:after {
    width: 2.5vw;
    height: 2.5vw;
    border-left: 0.35vw solid #fff;
    border-top: 0.35vw solid #fff;
  }
}
@media screen and (min-width: 1081px) {
  .privacy__link:hover:after, .privacy__link:active:after {
    right: -1%;
  }
}

.thanks {
  background-color: #4a2f61;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 1081px) {
  .thanks {
    background-image: url("../img/thanks-bg-desk.png");
  }
}
@media screen and (max-width: 1080px) {
  .thanks {
    background-image: url("../img/thanks-bg-mob.png");
  }
}
@media screen and (max-width: 1080px) {
  .thanks__block {
    padding: 7.407vw 9.259vw 2vw;
    display: flex;
    min-height: 80vh;
  }
}
@media screen and (min-width: 1081px) {
  .thanks__block {
    padding: 11.198vw;
    display: flex;
    min-height: 100vh;
  }
}
@media screen and (min-width: 1081px) {
  .thanks__block-text {
    width: 56%;
  }
}
@media screen and (max-width: 1080px) {
  .thanks__block-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-width: 1081px) {
  .thanks__block .button {
    font-size: 2.344vw;
    min-width: 18.229vw;
    margin-left: 9vw;
  }
}
@media screen and (max-width: 1080px) {
  .thanks__block .button {
    margin-top: auto;
  }
}
.thanks__title {
  color: #E4CEFF;
}
@media screen and (min-width: 1081px) {
  .thanks__title {
    font-size: 5.208vw;
    line-height: 1;
    margin-bottom: 3vw;
  }
}
@media screen and (max-width: 1080px) {
  .thanks__title {
    font-size: 9.259vw;
    line-height: 1;
    margin-bottom: 3.704vw;
    text-align: center;
    z-index: 1;
  }
}
.thanks__subtitle {
  color: #F9F4FF;
}
@media screen and (min-width: 1081px) {
  .thanks__subtitle {
    font-size: 2.344vw;
    padding-left: 1vw;
    margin-bottom: 3.083vw;
  }
}
@media screen and (max-width: 1080px) {
  .thanks__subtitle {
    font-size: 4.167vw;
    text-align: center;
    z-index: 1;
  }
}
.thanks__img {
  position: absolute;
}
@media screen and (min-width: 1081px) {
  .thanks__img {
    max-width: 40vw;
    height: 48.646vw;
    right: 8%;
    bottom: 0;
    object-fit: cover;
  }
}
@media screen and (max-width: 1080px) {
  .thanks__img {
    width: 100%;
    object-fit: contain;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    display: none;
  }
}
@media screen and (min-width: 1081px) {
  .thanks .contact-us__footer {
    display: none;
  }
}
@media screen and (max-width: 1080px) {
  .thanks .contact-us__footer {
    margin-top: 3vw;
    padding: 3vw;
  }
}

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