:root {
  --primary-font: "Gilroy";
  --secondary-font: "Inter";
  --fz96: 6em;
  --fz64: 4em;
  --fz56: 3.5em;
  --fz52: 3.25em;
  --fz48: 3em;
  --fz44: 2.75em;
  --fz40: 2.5em;
  --fz36: 2.25em;
  --fz32: 2em;
  --fz28: 1.75em;
  --fz24: 1.5em;
  --fz20: 1.25em;
  --fz18: 1.125em;
  --section-padding: 64px 0;
  --section-padding-mobile: 35px 0;
  --main-color: #fff;
  --pink-color: #E400FF;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Gilroy", sans-serif;
  font-size: 16px;
  background-color: #111111;
}

body.active {
  overflow: hidden;
}

.container {
  width: 90%;
  max-width: 1368px;
  margin: 0 auto;
}

.secondary-header {
  font-size: var(--fz64);
  font-weight: 500;
  line-height: normal;
  text-align: center;
  color: var(--main-color);
}

.secondary-header span {
  color: var(--pink-color);
}

.pink-btn {
  width: 100%;
  border-radius: 24px;
  background-color: var(--pink-color);
  font-size: var(--fz18);
  color: var(--main-color);
  font-weight: 400;
  text-transform: lowercase;
  line-height: normal;
  border: none;
  cursor: pointer;
  transition: all ease .3s;
}

.pink-btn:hover {
  background-color: #af02c2;
}

a {
  text-decoration: none;
  color: #000;
}

img {
  max-width: 100%;
  display: block;
}

video {
  width: 100%;
}

ul {
  list-style: none;
}

h1,h2,h3,h4,h5,h6 {
  font-family: "Gilroy";
}

.source-countries-items {
  pointer-events: none;
}

/* REVEALING ANIMATION */
.reveal {
  position: relative;
  transform: translateY(3rem) translateX(0);
  opacity: 0;
  transition: 0.8s all ease;
}

.reveal.active {
  transform: translateY(0) translateX(0) !important;
  opacity: 1;
}

.delay-01 {
  transition-delay: 0.1s;
}
.delay-04 {
  transition-delay: 0.4s;
}
.delay-07 {
  transition-delay: 0.7s;
}
.delay-1 {
  transition-delay: 1s;
}
.delay-1-3 {
  transition-delay: 1.3s;
}
.delay-1-6 {
  transition-delay: 1.6s;
}

/*  header  */

.header {
  padding: 29px 0;
}

.main-nav-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.main-nav-content-left {
  width: 100%;
  max-width: 164px;
}

.main-nav-content-right {
  width: 100%;
  max-width: 820px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.nav-menu a {
  font-size: var(--fz20);
  font-weight: 400;
  line-height: normal;
  color: var(--main-color);
  border-bottom: 2px solid transparent;
  text-transform: lowercase;
  transition: all ease .3s;
}

.nav-menu span.active {
  color: var(--pink-color);
}

.mobile-menu-btn {
  display: none;
}

.mobile-menu-btn,
.close-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: var(--pink-color);
  cursor: pointer;
  background-image: url("../img/menu-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  transition: all ease .3s;
}

.mobile-menu-btn:hover,
.close-btn:hover {
  background-color: #EA32FF;
}

.close-btn {
  background-image: url("../img/close-icon.png");
  align-self: flex-end;
  justify-self: flex-end;
  position: absolute;
  top: 20px;
  right: 20px;
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  background-color: #111111;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  min-width: 300px;
  transform: translateX(100%);
  transition: all ease .3s;
  padding-top: 130px;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu .nav-menu {
  flex-direction: column;
  align-items: center;
  
  gap: 15px;
}

.nav-menu a:hover {
  border-color: var(--main-color);
}

.nav-menu a.active:hover {
  border-color: var(--pink-color);
}

.main-nav-content-right-btn {
  width: 100%;
  max-width: 180px;
}

.main-nav-content-right-btn .pink-btn {
  padding: 14px 0;
  font-size: var(--fz18);
  color: var(--main-color);
  font-weight: 400;
  text-transform: lowercase;
}

/*  top-section  */

.top-section::before , .payment::before{
  position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/gif.gif) center repeat;
    opacity: .1;
    z-index: -1;
}

.top-section {
  background-image: url("../img/top-section-bg.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 114px 0 130px 0;
  position: relative;
  z-index: 1;
}

.top-section-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-section-content-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-section-content-header h1 {
  font-size: var(--fz96);
  color: var(--main-color);
  font-weight: 500;
  line-height: 100%;
  max-width: 898px;
  text-align: center;
}

.top-section-content-header p {
  font-family: var(--secondary-font);
  font-size: var(--fz24);
  color: var(--main-color);
  font-weight: 300;
  line-height: 100%;
  max-width: 1123px;
  text-align: center;
  line-height: 42px;
  margin-top: 32px;
}

.top-section-content-header .pink-btn {
  max-width: 200px;
  padding: 14px 0;
  border: 1px solid #000;
  margin-top: 48px;
}

.top-section-content-number {
  margin-top: 129px;
  display: flex;
  justify-content: center;
  gap: 32px;
}

.top-section-content-number-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.top-section-content-number-item h4 {
  font-weight: 700;
  color: #111;
  font-size: var(--fz48);
  line-height: normal;
  text-align: center;
}

.top-section-content-number-item p {
  font-size: var(--fz20);
  color: #000;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

.vertical-dash {
  width: 3px;
  min-height: 157px;
  background-color: #000;
}

/*  advantages  */ 

.advantages {
  padding: var(--section-padding);
}

.advantages-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.advantages-content h2 span {
  color: var(--pink-color);
}

.advantages-content-items {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.advantages-content-item:nth-child(odd) {
  border-radius: 12px;
  border: 3px solid #2F002F;
}

.advantages-content-item {
  padding: 48px 28px;
}

.advantages-content-item h5,
.advantages-content-item p {
  text-align: center;
}

.advantages-content-item h5 {
  font-size: var(--fz24);
  font-weight: 500;
  color: var(--main-color);
}

.advantages-content-item p {
  margin-top: 24px;
  font-size: 1em;
  font-weight: 300;
  color: var(--main-color);
  line-height: 160%;
}

/*  advertisers  */

.advertisers {
  padding: var(--section-padding);
  background: #2F002F;
}

.advertisers .secondary-header {
  text-align: center;
}

.advertisers .secondary-header span {
  color: var(--pink-color);
}

.advertisers-slider {
  margin-top: 48px;
  padding-bottom: 63px;
}

.advertisers-slider-item {
  padding: 48px 68px;
  border-radius: 12px;
  border: 1px solid var(--pink-color);
  background: var(--pink-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 294px;
}

.advertisers-slider-item.swiper-slide {
  width: auto !important;
}

.advertisers-slider-item h5,
.advertisers-slider-item p {
  color: #fff;
  text-align: center;
}

.advertisers-slider-item h5 {
  font-weight: 500;
  font-size: var(--fz48);
}

.advertisers-slider-item p {
  max-width: 543px;
  margin-top: 8px;
}

.advertisers-slider-item-labels {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.advertisers-slider-item-labels img {
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.23)) drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.20)) drop-shadow(0px 9px 5px rgba(0, 0, 0, 0.12)) drop-shadow(0px 16px 6px rgba(0, 0, 0, 0.04)) drop-shadow(0px 25px 7px rgba(0, 0, 0, 0.00));
  transition: all ease .3s;
}

.advertisers-slider-item-icons a {
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.23)) drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.20)) drop-shadow(0px 9px 5px rgba(0, 0, 0, 0.12)) drop-shadow(0px 16px 6px rgba(0, 0, 0, 0.04)) drop-shadow(0px 25px 7px rgba(0, 0, 0, 0.00));
}

.advertisers-slider-item-icons a, .advertisers-slider-item-label, .advertisers-slider-item-labels svg {
  transition: all .3s ease;
}
.advertisers-slider-item-icons a:hover, .advertisers-slider-item-label:hover , .advertisers-slider-item-labels img:hover{
  transform: translateY(2px);
  filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.23)) drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.20)) drop-shadow(0px 9px 5px rgba(0, 0, 0, 0.12)) drop-shadow(0px 16px 6px rgba(0, 0, 0, 0.04)) drop-shadow(0px 25px 7px rgba(0, 0, 0, 0.00));
}

p.advertisers-slider-item-label {
  border-radius: 8px;
  background: #FFF;
  font-size: var(--fz24);
  color: #000;
  font-weight: 400;
  padding: 10px 19px;
  line-height: 100%;
  margin-top: 0;
}

.advertisers-slider-item-icons {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.advertisers-slider-item-labels.shadow div{
  box-shadow: 
  0px 1px 2px 0px rgba(0, 0, 0, 0.23),
  0px 4px 4px 0px rgba(0, 0, 0, 0.20),
  0px 9px 5px 0px rgba(0, 0, 0, 0.12),
  0px 16px 6px 0px rgba(0, 0, 0, 0.04),
  0px 25px 7px 0px rgba(0, 0, 0, 0.00);
}

.swiper-pagination-bullet {
  width: 24px;
  height: 24px;
  background: rgba(234, 50, 255, 0.30);
  border-radius: 0;
}

.swiper-pagination-bullet-active {
  background: #EA32FF;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

/*  payment  */

.payment {
  position: relative;
  padding: var(--section-padding);
  background: url("../img/payment-bg.png") no-repeat center/cover;
  z-index: 1;
}

.payment-content-header p {
  color: var(--main-color);
  font-size: var(--fz24);
  font-weight: 300;
  line-height: 160%;
  text-align: center;
  margin-top: 18px;
}

.payment-content-items {
  margin-top: 48px;
  display: grid;
  column-gap: 8px;
  row-gap: 10px;
  grid-template-areas: 
  "first second"
  "third third";
  grid-template-columns: 1fr 1fr;
}

.payment-content-item:nth-child(1) {
  grid-area: first;
}
.payment-content-item:nth-child(2) {
  grid-area: second;
}
.payment-content-item:nth-child(3) {
  grid-area: third;
}

.payment-content-item:nth-child(3) p {
  max-width: 594px;
}

.payment-content-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 12px;
  border: 3px solid #42C1C2;
  background: #111;
  padding: 70px 80px;
  transition: all .3s ease;
}
.payment-content-item:hover {
  box-shadow: inset 0 0 30px rgba(0, 255, 255, 0.5);
}

.payment-content-item h4 {
  color: var(--main-color);
  font-size: var(--fz48);
  font-weight: 500;
  text-align: center;
}

.payment-content-item p {
  margin-top: 16px;
  color: var(--main-color);
  font-size: 1em;
  font-weight: 300;
  line-height: 160%;
  text-align: center;
}

/*  source  */

.source {
  padding: var(--section-padding);
}

.source-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.source-content-left,
.source-content-right {
  width: 100%;
}

.source-content-left {
  max-width: 764px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.source-content-right {
  max-width: 508px;
}

.source-content-left .secondary-header {
  text-align: left;
}

.source-content-left-text h5 {
  color: var(--main-color);
  font-size: var(--fz28);
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 30px;
}

.source-content-left-text p {
  color: var(--main-color);
  font-size: var(--fz20);
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 30px;
}

.source-content-left-text p:last-child {
  margin-bottom: 0;
}

.source-content-left .pink-btn {
  padding: 16px 0;
  max-width: 200px;
}

.source-content-right-items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}

.source-content-right-item {
  position: relative;
  border-radius: 12px;
  border: 3px solid #2F002F;
  background: #E400FF;
  padding: 35px 0 42px 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
  transition: all 0.5s ease;
}

.source-content-right-item::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg, 
    transparent, 
    transparent 30%, 
    rgba(0,255,255,0.5)
  );
  transform: rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.source-content-right-item:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(0,255,255,0.5);
}

.source-content-right-item:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(150%);
}

.source-content-right-item span {
  color: var(--main-color);
  font-size: var(--fz40);
  font-weight: 500;
}

.source-countries {
  margin-top: 64px;
}

.source-countries-items {
  max-width: 100%;
  overflow: hidden;
}


.source-countries-item span {
  color: #000;
  text-align: center; 
  font-size: var(--fz32);
  font-weight: 400;
  line-height: normal;
  padding: 15px 32px;
  background-color: #fff;
  border-radius: 5px;
  display: inline-block;
}

.source-countries .swiper-wrapper{
  transition-timing-function: linear!important;
}

.source-countries .swiper-slide {
  width: auto!important;
}

/*  faq  */

.faq {
  background: #2F002F;
  padding: 46px 0 145px 0;
}

.faq-content-items {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-content-item {
  cursor: pointer;
  border-radius: 12px;
  border: 1px solid #E400FF;
  overflow: hidden;
}

.faq-content-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background-color: #2F002F;
}

.faq-content-item-icon {
  width: 100%;
  max-width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease .3s;
  border-radius: 8px;
  border: 1px solid #F0F0F0;
  background-image: url("../img/arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #FFF;
  box-shadow: 
  0px 2px 4px 0px rgba(0, 0, 0, 0.07), 
  0px 0.4px 0.65px 0px rgba(0, 0, 0, 0.04);
}

.faq-content-item-label {
  font-size: var(--fz28);
  letter-spacing: -0.28px;
  font-weight: 500;
  line-height: 128%;
  color: #F6F7FF;
}

.faq-content-item-bottom {
  height: 0;
  /* margin-top: 16px; */
  color: #222;
  font-size: var(--fz20);
  line-height: 150%;
  letter-spacing: -0.2px;
  overflow: hidden;
  opacity: 0;
  transition: all ease 0.3s;
}

.faq-content-item.active .faq-content-item-icon {
  transform: rotateX(180deg);
}

.faq-content-item.active .faq-content-item-top {
  background-color: var(--pink-color);
}

.faq-content-item.active .faq-content-item-bottom {
  height: auto;
  opacity: 1;
  padding: 32px 68px;
  background-color: #fff;
}

/*  footer  */

.footer {
  background: #111;
  padding: 24px 0 32px 0;
}

.copy {
  margin-top: 70px;
  text-align: center;
  font-size: var(--fz20);
  font-weight: 300;
  color: var(--main-color);
}

/*  pop-up  */

.pop-up {
  position: fixed;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%), url("../img/pop-up-bg.png");
  top: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  height: 100vh;
  transform: translateY(-120%);
  transition: all ease .3s;
  overflow: scroll;
}

.pop-up.active {
  transform: translateY(0%);
}

.pop-up-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 40px 0;
}

.pop-up .container {
  height: 100%;
}

.pop-up-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pop-up-content-items {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.pop-up-content-item-text {
  margin-top: 37px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.pop-up-content-item-img {
  border-radius: 12px;
  border: 3px solid #E400FF;
  box-shadow: 0px 391px 110px 0px rgba(0, 0, 0, 0.00), 0px 250px 100px 0px rgba(0, 0, 0, 0.03), 0px 141px 84px 0px rgba(0, 0, 0, 0.10), 0px 63px 63px 0px rgba(0, 0, 0, 0.18), 0px 16px 34px 0px rgba(0, 0, 0, 0.21);
  overflow: hidden;
  max-width: 422px;
}

.pop-up-content-item-text h4 {
  color: var(--main-color);
  font-size: var(--fz36);
  text-transform: uppercase;
  font-weight: 500;
}

.pop-up-content-item-text p {
  color: var(--main-color);
  font-size: var(--fz24);
  font-weight: 300;
}

.pop-up-content-item-text a {
  padding: 14px 30px;
  background-color: var(--pink-color);
  border-radius: 24px;
  color: #fff;
  font-size: var(--fz20);
  font-weight: 500;
  transition: all ease .3s;
}

.pop-up-content-item-text a:hover {
  background-color: #c400da;
}

.pop-up-close {
  position: absolute;
  width: 48px;
  height: 48px;
  background-image: url("../img/pop-up-close-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  right: 32px;
  top: 32px;
  cursor: pointer;
}

@media screen and (max-width: 1560px) {
  .top-section-content-header h1 {
    font-size: var(--fz56);
  }
}

@media screen and (max-width: 1280px) {
  .pop-up-content {
    align-items: start;
  }

  .pop-up-content-items {
    flex-direction: column;
    align-items: center;
  }

  .pop-up-content-item:last-child {
    margin-bottom: 40px;
  }

  .pop-up-wrap {
    padding-top: 100px;
  }
}

@media screen and (max-width: 992px) {
  body {
    font-size: 14px;
  }

  

  .top-section-content-header p {
    font-size: var(--fz20);
    line-height: 32px;
  }

  .secondary-header {
    font-size: var(--fz40);
  }

  .mobile-menu-btn {
    display: flex;
  }

  .header .main-nav-content-right .nav-menu,
  .header .main-nav-content-right .main-nav-content-right-btn {
    display: none;
  }

  .header .main-nav-content-right {
    justify-content: end;
  }

  .advertisers-slider {
    margin-left: 20px;
    margin-right: 20px;
  }

  .advantages-content-items {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    gap: 20px;
  }

  .payment-content-item {
    padding: 34px 40px;
  }

  .advantages-content-item {
    max-width: 422px;
    border-radius: 12px;
    border: 3px solid #2F002F;
  }

  .advertisers-slider-item {
    height: auto;
    padding: 24px 34px;
  }

  p.advertisers-slider-item-label {
    font-size: 1em;
  }

  .source-content-left .secondary-header {
    text-align: center;
  }

  .source-content-left {
    align-items: center;
  }

  .source-content {
    flex-direction: column;
    align-items: center;
  }

  .payment-content-items {
    grid-template-areas: 
    "first"
    "second"
    "third";
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .payment-content-item {
    max-width: 680px;
  }

  .footer .main-nav-content {
    flex-direction: column;
  }


}

@media screen and (max-width: 768px) {
  .top-section-content-number {
    flex-direction: column;
    align-items: center;
  }

  .vertical-dash {
    display: none;
  }

  .footer .main-nav-content-right {
    flex-direction: column;
    align-items: center;
  }

  .footer .nav-menu {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .advantages-content-items {
    grid-template-columns: 1fr;
  }
  .faq {
    padding: 46px 0;
  }
  .advertisers-slider-item-icons svg{
    width: 48px;
  }
}

@media screen and (max-width: 660px) {
  .advertisers-slider-item.swiper-slide {
    width: 100% !important;
  }
}

@media screen and (max-width: 480px) {
  .top-section-content-header h1 {
    font-size: var(--fz48);
  }

  .advertisers-slider-item-icons {
    gap: 12px;
  }

  .faq-content-item-label {
    font-size: var(--fz20);
  }

  .faq-content-item-top {
    padding: 20px;
  }

  .advertisers-slider-item h5,
  .payment-content-item h4 {
    font-size: var(--fz36);
  }

  .advertisers .secondary-header {
    padding: 0 20px;
  }

  .source-content-right-item span {
    font-size: var(--fz28);
  }

  .source-content-right-item {
    padding: 20px 0;
  }

  .faq-content-item.active .faq-content-item-bottom {
    padding: 20px;
  }
}