@import url('https://fonts.googleapis.com/css2?family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');

:root{
  --o-1: #ca1919;
  --o-2: #ff6804;
  --o-3: #0078ff;
  --o-4: #33cbcb;
  --o-5: #691dff;
  --accent: var(--o-5);
  --ob-1: #1c2c1e;
  --ob-2: #4b674a;
  --ob-3: #91b9d6;
  --ob-4: #0b2852;
  --ob-5: #060b0d;
  --bg1: var(--ob-5);
  --om-1: #B7CB99;
  --om-2: #132015;
  --om-3: #1b3242;
  --om-4: #2671da;
  --om-5: #cec2ff;
  --bg2: var(--om-5);
  --white: #fff;
  --black: #000;
  --transition: 0.4s ease;
}

html{
  scroll-behavior: smooth;
}

*{
  box-sizing: border-box;
}

body{
  font-family: 'Libre Caslon Text', sans-serif !important;
  font-size: 18px;
  direction: ltr;
  margin: 0;
  padding: 0;
  height: 100%;
  position: relative;
  box-sizing: border-box;
}

a{
  text-decoration: none;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.5rem;
}

ul ul, ol ul, ul ol, ol ol {
  margin-bottom: 0;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

img{
  width: 100%;
  display: block;
  box-sizing: border-box;
}

video{
  display: block;
  box-sizing: border-box;
}

h5{
  font-size: 1.1rem;
}

.module{
  padding: 100px 0;
}

.wrapper {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 18px;
  padding-left: 18px;
  box-sizing: border-box;
}

.row-2,
.row-3,
.row-4,
.row-5,
.row-6{
  display: flex;
  box-sizing: border-box;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 18px;
}

.col-30,
.col-70,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6{
  width: 100%;
  flex-grow: 1;
  box-sizing: border-box;
}


.logo{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;

  img{
    width: 80px;
    height: 80px;
    object-fit: contain;
  }

  h1{
    color: var(--white);
    text-transform: inherit;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    margin: 0;
    transition: var(--transition);
 }

 &:hover h1,
 &:focus h1{
  color: var(--accent);
 }
}


.title{
  font-size: 20px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 18px;
}


.nav{
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: var(--transition);
  z-index: 1000;
  padding: 18px 0;
}

.nav.scrolled {
  background: #1c1d20;
}

.nav-box{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 11px;
  flex-wrap: wrap;
}

.menu{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.menu-item{
  text-align: center;

  a{
    color: var(--white);
    transition: var(--transition);

    &:hover,
    &:focus{
      color: var(--accent);
    }
  }
}

.header{
  background-color: var(--bg1);
  color: var(--bg2);
  padding: 300px 0 0;
  overflow: hidden;
  direction: ltr !important;

  .wrapper{
    position: relative;
  }
}

.banner{
  border-top-left-radius: 856px;
  border-top-right-radius: 856px;
  max-width: 856px;
  margin: 0 auto;
  height: 330px;
  padding: 50px 4px 4px;
  position: relative;
  z-index: 2;
  background-color: var(--bg2);
}

.banner-bg{
  position: relative;
  top: 80%;
  left: 50%;
  z-index: 0;
  opacity: 0.8;

  span{
    position: absolute;
    display: block;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    z-index: -1;

    &::before,
    &::after{
      position: absolute;
      content: "";
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border: 1px solid var(--bg2);
      animation: videoTwo 5s linear infinite;
      border: 1px solid var(--bg2);
      animation-delay: 1s;
    }
    
  }

  span:nth-child(1)::before {
    animation-delay: 5s;
  }

  span:nth-child(1)::after {
    animation-delay: 1s;
  }

  span:nth-child(2)::before {
    animation-delay: 6s;
  }

  span:nth-child(2)::after {
    animation-delay: 2s;
  }

  span:nth-child(3)::before {
    animation-delay: 7s;
  }

  span:nth-child(3)::after {
    animation-delay: 3s;
  }

  span:nth-child(4)::before {
    animation-delay: 8s;
  }

  span:nth-child(4)::after {
    animation-delay: 4s;
  }
}

@keyframes videoTwo {
  0% {
    transform: translate(-50%, -50%) scale(2.3);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(5);
    opacity: 0;
    width: 300px;
    height: 300px;
  }
}

.banner-img{
  background: url('galleryarchive/other-dir/christmas-tree-0684997158ffe4.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 300px;
  height: 400px;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 28%;
  z-index: 2;
  animation: swing 10s linear infinite;
  animation-fill-mode: both;
  transform-origin: top center;
}

@keyframes swing {
    2% {
      transform: rotate3d(0, 0, 1, 15deg);
    }
    4% {
      transform: rotate3d(0, 0, 1, -10deg);
    }
    6% {
      transform: rotate3d(0, 0, 1, 5deg);
    }
    8% {
      transform: rotate3d(0, 0, 1, -5deg);
    }
    10% {
      transform: rotate3d(0, 0, 1, 0deg);
    }
    100% {
      transform: rotate3d(0, 0, 1, 0deg);
    }
  }

  .stat-item{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 11px;
  }


  .banner-content{
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
  }

  .num{
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    text-shadow: 1px 1px 1px var(--bg1), -1px -1px 1px var(--bg1);
  }

  .num span {
    color: var(--accent);
  }

  .stat-text{
    color: var(--white);
    text-shadow: 1px 1px 1px var(--bg1), -1px -1px 1px var(--bg1);
  }

  .gamers{
    display: flex;
    flex-direction: column;
    gap: 11px;
    align-items: start;
    justify-content: center;
  }

  .gamers-box{
    padding: 4px 11px 4px 29px;
    border: 1px solid var(--accent);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .gamers-img{
    border-radius: 50%;
    display: inline-block;
    width: 49px;
    min-width: 49px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    margin-left: -15px;

    img{
      width: 46px;
      min-width: 46px;
      height: 46px;
      border-radius: 50%;
    }
  }

  .stat-dummy{
    display: none;
  }

  .au{
    background: url('galleryarchive/bg-assets/opacity_bg-0684997158fe0d.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
  }

  .au-img-wr{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .au-img{
    width: 100%;
    height: 300px;

    img{
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }

  .au-wr{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .au-box{
    display: flex;
    flex-direction: column;
    gap: 11px;
  }

  .animation .au-img img{
    animation: 3s linear lightSpeedIn;
  }

  @keyframes lightSpeedIn {
    0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
    }
    60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
    }
    80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
    }
    100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    }
  } 

  .steps{
    background-color: var(--bg1);
    color: var(--bg2);
  }

  .step-title-wr{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .step-arrow{
    width: 150px;
    height: 100%;
  
    img{
      width: 100%;
      height: 100%;
      object-fit: contain;
      animation: arrow 3s linear infinite;
    }
  }

  @keyframes arrow{
    50% {
      transform: rotate(10deg);
    }
  }

  .step-video-wr{
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: center;
  }

  .step-video{
    width: 100%;
    height: 200px;
    border-radius: 100px;
    overflow: hidden;

    video{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .step-box{
    padding: 11px;
    background: #11111147;
    border-radius: 9px;
    height: 100%;
    border: 1px solid rgba(85, 74, 255, 0.1);
    transition: var(--transition);

    &:hover,
    &:focus{
      transform: rotate3d(0, 0, 1, 3deg);
    }
  }

  .step-num{
    font-size: 120px;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.5;
    float: left;
    padding: 11px;
  }

  .step-text{
    padding: 40px 11px 11px;
    min-height: 160px;
    color: var(--white);
  }

  .steps-row{
    margin-top: 29px;
  }

  .arrow-col{
    display: none;
  }

  .main1{
    background: url('galleryarchive/bg-assets/opacity_bg-0684997158fe0d.png') no-repeat center;
    background-size: cover;
  }

  .main1-box{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }

  .main1-img{
    width: 100%;
    height: 250px;
    border-radius: 50%;
    display: inline-block;
    transition: var(--transition);
    background-color: var(--white);
    border: 1px solid var(--accent);
    padding: 10px;
    z-index: 1;
    position: relative;

    &::before{
      position: absolute;
      content: '';
      top: 10px;
      left: 10px;
      bottom: 10px;
      right: 10px;
      background-color: var(--accent);
      opacity: 0;
      transition: var(--transition);
      border-radius: 50%;
    }
    
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }

    &:hover::before,
    &:focus::before{
      opacity: 0.3;
    }

  }

  .main1-title{
    background-color: var(--bg1);
    color: var(--white);
    border-radius: 100px;
    width: 100%;
    text-align: center;
    transition: var(--transition);
    padding: 29px 11px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    font-weight: 900;
    font-size: 20px;

    &:hover,
    &:focus{
      background-color: var(--accent);
      color: var(--bg2);
      font-size: 20px;
    }
  }

#main1{
  display: block;
}

.main2-wr{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(85, 74, 255, 0.1);

  &::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--bg2);
    opacity: 0.1;
    transition: var(--transition);
  }

  &::after{
    position: absolute;
    content: '';
    width: 200%;
    height: 300px;
    top: -30%;
    left: -50%;
    background-color: var(--bg2);
    opacity: 0.5;
    transform: rotate(-30deg);
    transition: var(--transition);
  }

  &:hover::after,
  &:focus::after{
    opacity: 0.8;
  }
  &:hover::before,
  &:focus::before{
    opacity: 0.2;
  }

  &:hover .main2-img,
  &:focus .main2-img{
    transform: translateY(-3px);
  }
}

.main2-box{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  gap: 18px;
  padding: 18px;
}

.main2-img{
  width: 100%;
  height: 150px;
  margin: 50px auto;
  display: inline-block;
  cursor: pointer;
  transition: var(--transition);

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 29px;
    border: 1px solid rgba(85, 74, 255, 0.1);
    transition: var(--transition);
  }

  &:hover img,
  &:focus img{
    border: 1px solid var(--accent);
  }
}

.main2-title{
  font-size: 20px;
  font-weight: 900;
  color: var(--accent);
  text-align: center;
  transition: var(--transition);

  &:hover,
  &:focus{
    color: var(--bg1);
  }
}

.main2-content{
  margin-bottom: 18px;

  span{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    color: var(--black);
    text-align: center;
  }
}

.main2-gamers{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  width: 100%;
  gap: 11px;
  border-top: 1px solid rgba(85, 74, 255, 0.1);
  border-bottom: 1px solid rgba(85, 74, 255, 0.1);
}

.del{
  width: 1px;
  height: 18px;
  background-color: rgba(85, 74, 255, 0.1);
}

.main2-gamers-item{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 4px 0;
  width: 50%;
}

.rating{
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  justify-content: center;

  span{
    width: 15px;
    height: 15px;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.muted{
  color: #ccccccc2 !important;
}

.benefits{
  background-color: var(--bg1);
  color: var(--bg2);
  overflow: hidden;
}

.ben-box{
  display: flex;
  height: 100%;
  gap: 18px;
  flex-direction: column;
}

.ben-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 11px;
  background: #11111147;
  border-radius: 9px;
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(85, 74, 255, 0.1);

  &:hover,
  &:focus{
    transform: rotate3d(0, 0, 1, 3deg);
  }
}

.ben-img{
  width: 100%;
  height: 200px;
  animation: rubberBand 3s linear infinite;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100px;
  }
}


@keyframes rubberBand {
  0% {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  }
  30% {
  -webkit-transform: scale3d(1.25, 0.75, 1);
  transform: scale3d(1.25, 0.75, 1);
  }
  40% {
  -webkit-transform: scale3d(0.75, 1.25, 1);
  transform: scale3d(0.75, 1.25, 1);
  }
  50% {
  -webkit-transform: scale3d(1.15, 0.85, 1);
  transform: scale3d(1.15, 0.85, 1);
  }
  65% {
  -webkit-transform: scale3d(.95, 1.05, 1);
  transform: scale3d(.95, 1.05, 1);
  }
  75% {
  -webkit-transform: scale3d(1.05, .95, 1);
  transform: scale3d(1.05, .95, 1);
  }
  100% {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  }
  } 

.ben-title-row{
  margin-bottom: 29px;
}

.ben-img-sm{
  width: 150px;
  height: 150px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.ben-text{
  text-align: center;
  color: var(--white);
}

.qa{
  background: url('galleryarchive/bg-assets/opacity_bg-0684997158fe0d.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.animation-qa{
  .au-img img{
    animation: lightSpeedOut 3s linear;
  }
}

@keyframes lightSpeedOut {
  0% {
  opacity: 1;
  }
  100% {
  -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
  transform: translate3d(100%, 0, 0) skewX(30deg);
  opacity: 0;
  }
} 

.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  border-radius: 9px;
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(85, 74, 255, 0.1);

  &:hover,
  &:focus{
    transform: rotate3d(0, 0, 1, 3deg);
  }
}

.faq-header {
  cursor: pointer;
  padding: 29px 18px;
  font-size: 16px;
  border: none;
  outline: none;
  text-align: left;
  width: 100%;
  transition: background-color 0.3s ease;
  background: var(--bg2);
  color: var(--white);

}
.faq-header:hover {
  background-color: var(--bg1);
}
.faq-content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  background-color: white;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.faq-content.show {
  padding: 18px;
  max-height: 200px; 
}

.form{
  background-color: var(--bg1);
  position: relative;

  &::before{
    position: absolute;
    content: '';
    bottom: -1px;
    left: 0;
    content: "";
    max-width: 720px;
    width: 100%;
    height: 210px;
    background: var(--accent);
    -webkit-clip-path: polygon(0 0, 100% 100%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 100%, 100% 100%, 0% 100%);
  }

  .row-2{
    margin-bottom: 29px;
  }

  .wrapper{
    position: relative;
    z-index: 2;
  }

  .title{
    color: var(--white);
  }
}

.form-img-wr{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.form-img{
  width: 200px;
  height: 200px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: rotateIn 6s linear infinite;
  }
}

@keyframes rotateIn {
  0% {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotate3d(0, 0, 1, -200deg);
  transform: rotate3d(0, 0, 1, -200deg);
  opacity: 0;
  }
  45% {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: none;
  transform: none;
  opacity: 1;
  }

  50% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  90% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
} 
  
.form-wr{
  background-color: var(--bg2);
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 18px;
}

.form-box{
  display: flex;
  flex-direction: column;
  gap: 11px;
  color: var(--white);
}

.contact-page-form-item{
  width: 100%;
}

.contact-page-form-item > input,
.contact-page-form-item > textarea,
.input-controlbox__element,
.textarea-controlbox__element{
  width: 100%;
  padding: 11px;
  background: #11111147;
  border-radius: 9px;
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(85, 74, 255, 0.1);
  color: var(--white);
  transition: var(--transition);
  outline: none;

  &:hover,
  &:focus{
    border: 1px solid var(--accent);
  }

  &::placeholder{
    color: var(--white);
  }
}

.contact-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  justify-content: center;
}

.contact-item{
  width: 250px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid var(--white);
  background-color: var(--bg1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 29px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  z-index: 1;

  a{
    color: var(--white);
    transition: var(--transition);
    text-align: center;
    word-break: break-all;

    &:hover,
    &:focus{
      color: var(--accent);
    }
  }

  &:hover,
  &:focus{
    transform: translateY(-3px);
  }
}

.adres{
  text-align: center;
  color: var(--white);
  margin-top: 29px;
}

.dcenter{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.privacy{
  color: var(--white);
  transition: var(--transition);

  &:hover,
  &:focus{
    color: var(--accent);
  }
}

.form-bg{
  background-color: var(--black);
  margin-top: -50px;
  height: 50px;
}

.footer{
  background-color: var(--black);
  color: var(--white);
  padding: 29px 0;
}

.disclaimer-wr{
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  border-radius: 100px;
  border: 1px solid rgba(85, 74, 255, 0.1);
  background-color: var(--accent);
  color: var(--white);
  padding: 29px;
  animation: 5s linear flash infinite;
  margin-top: 29px;
}

@keyframes flash {
  0%, 25%, 50% {
  opacity: 1;
  max-width: 800px;
  }
  
  12%, 37% {
  opacity: 0.5;
  max-width: 850px;
  }

  100%{
    opacity: 1;
    max-width: 800px;
  }
} 

.disclaimer-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;

  .title{
    color: var(--black);
  }
}

.disclaimer-img{
  width: 100px;
  height: 100px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.disclaimer-text{
  text-align: center;
  margin: 0;
  max-width: 700px;
  margin: 0 auto;
}

.footer-nav{
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 29px;
  gap: 11px;
}

.footer-item{
  text-align: center;
  a{
    color: var(--white);
    transition: var(--transition);

    &:hover,
    &:focus{
      color: var(--accent);
    }
  }
}

.copyright{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 29px;

  p{
    margin: 0;
    color: var(--accent);
    opacity: 0.5;
  }
}

.contact-form{
  background-color: var(--accent);

  &::before{
    background-color: var(--bg1);
  }

  .form-wr{
    background-color: var(--bg2);
  }
}

.contact-title{
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-module{
  background: url('galleryarchive/bg-assets/opacity_bg-0684997158fe0d.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.box-iframe{
  width: 100%;
  height: 700px;
  margin-bottom: 29px;

  iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 29px;
    border: 1px solid rgba(85, 74, 255, 0.1);
  }
}

.page-img{
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 29px;
  background-color: var(--bg1);
  border: 1px solid rgba(85, 74, 255, 0.1);
  margin-bottom: 29px;
  padding: 18px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.gallery{
  background-color: var(--black);
  padding: 2px 0;
  direction: ltr !important;
}

.parent {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.parent > div{
  width: calc((100% / 7));

  img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(85, 74, 255, 0.1);
  }

  &:hover > img,
  &:hover > img{
    opacity: 0.8;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 8;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  display: block;
  width: calc(100% - 30px);
  max-width: 800px;
  height: 400px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  border: 1px solid rgba(85, 74, 255, 0.1);

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 29px;
  }
}

.modal-content {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: translate(-50%, -45%) scale(0);
  }
  to {
    transform: translate(-50%, -45%) scale(1);
  }
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--white);
  border-radius: 50%;
  color: var(--black);
  font-size: 40px;
  transition: var(--transition);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: var(--accent);
}

.category-page{
  .main2-gamers-item{
    width: 100%;
  }
}

.privacy-content{
  word-break: break-all;
}

@media (min-width: 480px) {
  .logo h1{
    font-size: 22px;
  }
}

@media (max-width: 575px){
  .form-bg{
    display: none;
  }

  .logo img{
    width: 60px;
    height: 60px;
  }

  .nav-box{
    justify-content: center !important;
  }
}

@media (min-width: 576px) {
  .row-5{
    flex-direction: row-reverse;
  }

  .col-5{
    width: calc(50% - 18px);
  }
  .row-6{
    flex-direction: row-reverse;
  }

  .col-6{
    width: calc(50% - 18px);
  }


  .title{
    font-size: 26px;
  }

  .page-img{
    height: 300px;
  }

  .main1-title{
    font-size: 22px;
  }
  .main2-title{
    font-size: 22px;
  }

  .contact-box{
    flex-direction: row !important;
    gap: 0;
    direction: ltr;
  }

  .contact-item{
    height: 250px;
  }

  .ci-2{
    margin-left: -18px;
    z-index: 2;
  }

  .form-wr{
    -webkit-clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 100% 100%, 20% 100%, 0 100%, 0 0);
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 100% 100%, 20% 100%, 0 100%, 0 0);
    transform: translateY(50px);
    padding: 80px 33px 50px;
  }

  .form{
    padding-bottom: 0 !important;
    margin-bottom: 50px;
  }

  .page-img{
    height: 300px;
  }
}

@media (max-width: 767px){
  .d-column{
    flex-direction: column !important;
  }
}

@media (min-width: 768px){
  .row-2,
  .row-3,
  .row-4{
    flex-direction: row-reverse;
  }

  .col-2,
  .col-3,
  .col-4{
    width: calc(50% - 18px);
  }
 
  .col-5{
    width: calc(33.333% - 18px);
  }

  .col-6{
    width: calc(33.333% - 18px);
  }

  .logo h1{
    font-size: 24px;
  }

  .title{
    font-size: 32px;
  }


  .page-img{
    height: 350px;
  }

  .gamers,
  .stat-item{
    align-items: center;
  }

  .num{
    font-size: 56px;
  }

  .banner-content{
    top: 0;
  }

  .step-title-row{
    flex-direction: row;
  }

  
  .arrow-col{
    display: block;
  }

  .main1-title{
    font-size: 24px;
  }

  .main2-title{
    font-size: 24px;
  }

  .ben-title-row,
  .steps-row{
    flex-direction: row !important;
  }

  .main2{
    position: relative;

    &::before{
      position: absolute;
      content: '';
      top: 0;
      right: 0;
      content: "";
      width: 30%;
      height: 100%;
      background: var(--accent);
    }
  
    .wrapper{
      position: relative;
      z-index: 2;
    }

    .col-3{
      background-color: var(--white);
      border-radius: 18px;
    }
  }

  .form{
    .row-2{
      flex-direction: row !important;
    }
  }

  .page-img{
    height: 350px;
  }
}

@media (min-width: 768px) and (max-width: 991px){
.contact-box{
  flex-direction: column !important;
  gap: 11px;
}

.contact-item{
  height: 150px;
}
}

@media (min-width: 992px){
  .wrapper{
    padding: 0 34px;
  }
  .col-3{
    width: calc(33.333% - 18px);
  }

  .col-4{
    width: calc(25% - 18px);
  }

  .col-5{
    width: calc(20% - 18px);
  }

  .col-6{
    width: calc(20% - 18px);
  }

  .title{
    font-size: 36px;
  }

  .page-img{
    height: 400px;
  }

  .stat-dummy{
    display: block;
  }

  .banner-img{
    width: 400px;
    height: 600px;
  }

  .banner{
    height: 400px;
  }

  .main1-img{
    height: 300px;
  }

  .page-img{
    height: 400px;
  }
}


@media (min-width: 1200px){
  .wrapper {
    max-width: 1170px;
  }

  .col-6{
    width: calc((100% / 6) - 18px);
  }

  .title{
    font-size: 42px;
  }

  .page-img{
    height: 450px;
  }
}

.btn-box{
  position: relative;
  z-index: 1;
  text-align: center;
}

.button{
  cursor: pointer;
  display: inline-block;
}

.button-1{
  background-color: var(--accent);
  color: var(--white);
  padding: 18px 18px;
  border-radius: 8px;
  border: none;
  transition: var(--transition);

  &:hover,
  &:focus{
    transform: scale(1.02);
  }
}

.button-2{
  background-color: var(--accent);
  color: var(--white);
  padding: 18px 24px;
  border-radius: 100px;
  border: none;
  transition: var(--transition);

  &:hover,
  &:focus{
    filter: drop-shadow(3px 3px 13px var(--white)) drop-shadow(3px 3px 13px var(--white));
  }
}

.button-3{
  background-color: var(--bg1);
  color: var(--white);
  padding: 18px;
  border-radius: 4px;
  border: none;
  transition: var(--transition);

  &:hover,
  &:focus{
    background-color: var(--white);
    color: var(--bg1);
  }
}

.button-4 {
  appearance: button;
  background-color: var(--bg1);
  border: solid transparent;
  border-radius: 15px;
  border-width: 0 0 4px;
  box-sizing: border-box;
  color: var(--black);
  cursor: pointer;
  display: inline-block;
  outline: none;
  padding: 13px 16px;
  text-align: center;
  text-transform: inherit;
  transform: translateZ(0);
  transition: filter .2s;
}

.button-4:after {
  background-clip: padding-box;
  background-color: #d2ebac;
  border: solid transparent;
  border-radius: 15px;
  border-width: 0 0 4px;
  bottom: -4px;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.button-4,
.button-4:focus {
  user-select: auto;
}

.button-4:hover:not(:disabled) {
  filter: brightness(1.1);
  -webkit-filter: brightness(1.1);
}


.button-5 {
  background-color: var(--accent);
  border: 0;
  border-radius: 56px;
  color: #fff;
  cursor: pointer;
  outline: 0;
  padding:  18px 21px;
  position: relative;
  text-align: center;
  transition: all .3s;
}

.button-5:before {
  background-color: initial;
  background-image: linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
  border-radius: 124px;
  content: "";
  height: 50%;
  left: 4%;
  opacity: .5;
  position: absolute;
  top: 0;
  transition: all .3s;
  width: 92%;
}

.button-5:hover {
  box-shadow: rgba(255, 255, 255, .2) 0 3px 18px inset, rgba(0, 0, 0, .1) 0 3px 4px, rgba(0, 0, 0, .1) 0 11px 11px;
  transform: scale(1.05);
}

.privacyPopup {
  width: calc(100% - 60px);
  font-family: "Arial";
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  padding: 10px;
  text-align: center;
  position: fixed;
  bottom: 25px;
  left: calc(50% - 15px);
  transform: translateX(-50%);
  max-width: 300px;
  border-radius: 12px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0 15px;
  z-index: 9999;
}

.privacyPopup h1 {
  font-size: 20px;
}

.privacyPopup span {
  margin: 0;
  font-size: 16px;
  display: inline-block;
  word-wrap: break-word;
  max-width: 100%;
}

.button {
  border: none;
  cursor: pointer;
  padding: 10px 30px;
  margin: 10px;
  font-size: 16px;
  transition: background-color 0.3s ease;
  background: #571a9b !important;
  color: #fff;
  border-radius: 2px 25px 25px 2px;
}

.customizeButton {
  color: #571a9b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
}

.customizeButton svg {
  width: 20px;
  height: 15px;
}

.agreeButton {
  color: white;
}

.optionsPanel {
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  position: fixed;
  bottom: 150px;
  left: calc(50% - 15px);
  transform: translateX(-50%);
  width: auto;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  z-index: 4;
  border-radius: 10px;
  max-width: 300px;
  width: calc(100% - 60px);
  margin: 0 15px;
}

.optionsPanel .centerText {
  font-size: 19px;
  font-weight: 600;
}

.optionsPanel label {
  margin: 10px 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.optionsPanel label input[type="checkbox"] {
  display: none;
}

.optionsPanel label input[type="checkbox"] + .toggle {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  background-color: #ccc;
  border-radius: 20px;
  cursor: pointer;
}

.optionsPanel label input[type="checkbox"] + .toggle:before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  border-radius: 50%;
  left: 4px;
  transition: all 0.3s ease;
}

.optionsPanel label input[type="checkbox"]:checked + .toggle {
  background-color: #571a9b;
}

.optionsPanel label input[type="checkbox"]:checked + .toggle:before {
  left: 20px;
}

.submitButton {
  color: white;
}

.hidden {
  display: none !important;
}

.centerText {
  text-align: center;
  margin-bottom: 35px;
}

.alignCenter {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 320px) and (max-width: 420px) {
  .privacyPopup {
      max-height: 40vh;
      overflow: auto;
      padding: 8px;
      font-size: 13px;
  }

  .privacyPopup h1 {
      font-size: 18px;
  }

  .privacyPopup span, .optionsPanel label, .button, .customizeButton {
      font-size: 13px;
  }

  .button, .customizeButton svg {
      padding: 8px 20px;
      margin: 5px;
  }

  .optionsPanel {
      padding: 15px;
  }
}

.dop__style_padd{
  padding: 172px 0 0 !important;
}