@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
  --style-1: #b565df;
  --style-2:#f45745;
  --style-3:#007566;
  --style-4:#05C7F2;
  --style-5:#f2c12e;
  --bg-1:#270909;
  --bg-2:#271c09;
  --bg-3:#0e2709;
  --bg-4:#092027;
  --bg-5:#1e0927;


 --border-color:rgba(255, 255, 255, .2);
  --border-20:18px;
--border-r:20px;
  
  --white:white;
  --black:black;
  --gap-25-30: 26px;
  --gap-30-40:33px;

}


html {
  box-sizing: border-box;
  
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
  
}


ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

body{
  line-height:1.5;
  background-color:#171717;
  direction: ltr;
  font-family: 'Barlow', sans-serif !important;
  font-size: 16px;
  margin: 0;
  padding: 0px;
}
ul,li{
  padding: 0px;
  margin: 0px;
  list-style: none;
}
p,li{
  padding: 5px 0px;
}
a{text-decoration: none;
  color: var(--white);
}

img{
  width: 100%;
  display: block;
}

.hdd-module {
  position: relative;
  width: 100%; 
  max-width: 1200px; 
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}

.title-rrt{
  text-align: center;
  color: var(--white);
    position: relative;
    font-size:clamp(22px,4vw,37px);
    font-weight: 700;
    margin: 20px auto;
    margin-top:  20px;
    
  }
  .sub-title-rrt{
    text-align: center;
    color: var( --white);
    margin-bottom: 20px;

  }
  
  nav{
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 99;
    width: 100%;
    background:transparent;
  }
  nav .wrapper{
    background: white;
    position: absolute;
    max-width: 860px;
    width: 100%;
    padding: 5px 33px;
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 49px;
    border-radius: 16px;
}
.logo-here{
  width: 55px;
}
@media (max-width:575px) {
  .logo-here{
    width: 55px;
  }
}
.logo-site{
  display: flex;
  align-items: center;
  gap: 18px;
}

.wrapper .logo-site a{
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
}
@media (max-width:1199px) {
  .wrapper .logo-site a{
    
    font-size: 18px;
  }
}
@media (max-width:575px) {
  .wrapper .logo-site a{
    
    font-size: 14px;
  }
}
.wrapper .nav-links{
  gap: var(--gap-25-30);
  display: inline-flex;
  transition: all 0.6s ease;
  
}
.nav-links li{
  list-style: none;
}

.nav-links li a{
  font-weight: 700;
  padding: 5px 0px;
  transition: color 0.4s ease;
  display: inline-block;
  color: var(--black);

}

.nav-links li a:hover {
  color: var(--style-5);
}


.nav-links .mobile-item{
  display: none;
}
.nav-links .drop-menu{
  position: absolute;
  background: #242526;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover {
  transition: all 0.2s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 600;
  border-radius: 0px;
}


.wrapper .btn{
  color: var(--black);
  font-size: 34px;
  cursor: pointer;
  display: none;
}
.menu-btn-img{
  width: 30px;
}

.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
  color: var(--white);
}
.radiobtn-menu {
  display: none!important;
}
@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    z-index: 3;
    position: fixed;
    height:430px ;
    width: 100%;
    
    left: 0;
    top: -100%;
    background: var(--style-5);
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.6s ease;
  }
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    top: 7%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 18px;
    display: block;
    font-size: 18px;
    color: var(--white);
    text-align: center;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.2s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 18px;
    font-weight: 600;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
  }
  
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 4px;
    font-size: 16px;
  }
  
}
nav input{
  display: none;
}

.btn-hero-rrt{
  display: flex;
  margin: 20px 0px;
}
.title-hero-rrt{
  margin: 20px 0px;
  color: var(--white);
  font-size: clamp(41px,6vw,108px);
  font-weight: 700;
  line-height: 1.5;

}
.sub-title-hero-rrt{
  color: var(--white);
  font-size: clamp(16px,4vw,24px);
}
.bl-hero-rrt{
  border: 1px solid var(--border-color);
  background-color: var(--bg-5);
  border-radius: 49px;
  flex-direction: column;
    min-height: 744px;
  margin-top:41px;
  margin-left: 26px;
  margin-right: 26px;
  padding-top: 50px;
  display: flex;
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 1280px) {
  .home-banner-section {
      margin-left:  33px;
      margin-right:  33px;
      padding-top: 130px;
  }
}
.circle-hero-rrt{
  width: 554px;
  height: 554px;
  border-radius: 50%;
  background-color: var(--style-5);
  position: absolute;
  right: 2%;
  top: 10%;
}

.img-hero-rrt{
  position: absolute;
  left: 20%;
  top: 10%;
  max-width: 449px;
  
}
.img-hero-rrt img {
  width: 70%;
  object-fit: contain;
}
@media (min-width:992px) {
  
.img-hero-rrt{
  animation: move 2s infinite alternate;
}}
@media  (max-width:767px) {
  .circle-hero-rrt{
    opacity: 0.5;
    width: 449px;
    height: 449px;
    top: 50%;
    left:  50%;
    transform: translate(-50%, -50%);

  }
  .img-hero-rrt{
    opacity: 0.5;
    top: 50%;
    left:  50%;
    transform: translate(-50%, -50%);
    
  }
  .img-hero-rrt img {
    width: 100%;
    object-fit: contain;
  
  }
}



@keyframes move {
  0% {
    left: 20%;
  }
  100% {
    left: 23%;
  }
}
.thumb-hero-rrt {
  direction: initial;
  padding-top:125px;
  display: flex;
  gap: var(--gap-30-40);
}
@media (min-width:992px) {
  .thumb-hero-rrt {
    padding-bottom: 85px;
}}
.box-hero-rrt {
  flex: 2;

}
.block-hero-rrt{
  flex: 1;
}
@media (max-width:991px) {
  .block-hero-rrt{
    display: none;
  }
  .box-hero-rrt {
    flex: 1;
    text-align: center;
  }
}

.bl-newwseller-rrt{
padding: 0px 15px;
}
.block-newwseller-rrt {
  z-index: 3;
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  background-color: rgba(0, 0, 0, .01);
  border: 1px solid var(--border-color);
  border-radius:var(--border-20);
  max-width: 960px;
margin-top: 41px;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width:992px) {
  .block-newwseller-rrt{
    margin-top: -50px;

  }
}

.title-newwseller-rrt {
  color: var(--white);
  font-size: clamp(21px,4vw,36px);
  text-align: center;
}
.form-newwseller-rrt {
  gap: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: var(--gap-30-40) 0px;

}
@media (max-width:575px) {
  .form-newwseller-rrt {
    flex-direction: column;
  }

}
.form-newwseller-rrt input{
  color: var(--white);
  background-color: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .2);
  border: 1px solid var(--border-color);
    width: 249px;
    height: 49px;
    margin-bottom: 0;
    padding-left:16px;
    padding-right:16px;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    border-radius: 14px;
}
.form-newwseller-rrt input::placeholder{
  font-size: 14px;
  color: var(--white);

}
.form-newwseller-rrt input:focus{
  border-color: var(--style-5);
}
.form-newwseller-rrt input:active{
  border-color: var(--style-5);
}
.btn-newwseller-rrt{
  cursor: pointer;
  border: 1px solid var(--style-5);
  background-color: var(--style-5);
  color: var(--white);
  text-align: center;
  text-transform: none;
  justify-content: center;
  padding: 16px 20px;
  font-weight: 600;
  line-height: 1em;
  transition: all .2s;
  display: flex;
  border-radius: 14px;
}
@media (max-width:575px) {
  .btn-newwseller-rrt{
    width: 249px;
  }
}
.btn-newwseller-rrt:hover{
  

    background-color: var(--white);
    color: var(--style-5);
 
}

.bl-benefic-rrt {
  padding: 37px 0px;
}

.thumb-benefic-rrt {
  justify-content: center;
  display: flex;
  gap: var(--gap-25-30);
  flex-wrap: wrap;
}
.box-benefic-rrt {
  padding: 15px;
  display: flex;
  border: 1px solid var(--border-color);
  border-radius:var(--border-20);
  width: 100%;
  flex-direction: column;
  position: relative;
}
.box-decor-benefic-rrt{
  opacity: .1;
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 26px;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
  padding: 0px 18px;
}


@media (min-width:575px) and (max-width:991px) {
  .box-benefic-rrt {
    width: calc(50% - 30px);
  }
}
@media (min-width:992px)  {
  .box-benefic-rrt {
    width: calc(33.33% - 30px);
  }
}
.item-box-benefic-rrt{
  display: flex;
  flex: 1;
  padding: 13px;
  justify-content: center;
  align-items: center;
}
@media (max-width:575px) {
  .item-box-benefic-rrt{
    flex: 1;
    padding: 13px;
  }
}
.svg-box-benefic-rrt{
  display: flex;
  justify-content: center;
  margin: 20px 0px;
  transition: transform 0.2s ease-out;

}
.svg-box-benefic-rrt svg{
  transition: transform 0.2s ease-out;
  opacity: .7;
  fill: var(--style-5);
  transition: transform 0.2s ease-out;

}
.txt-benefic-rrt {
  color: var(--white);
  text-align: center;
}

.bll-games-rrt{
  padding: 37px 0px;
  margin-left: 26px;
  margin-right: 26px;
  background-color: var(--bg-5);
  border: 1px solid var(--border-color);
  border-radius: 49px;
  padding-bottom: 90px;
}
.games1-padd-rrt{
  margin: 20px;
}
.all-thumb-games-rrt{
  display: flex;
  flex-direction: column;
  gap: 49px;
  align-items: center;
}
.thumb-games-rrt{
  display: flex;
  align-items: center;
  gap: var(--gap-30-40);
}
@media (min-width:576px) and (max-width:991px) {
  .thumb-games-rrt{
    flex-direction: column;
    width: 70%;

  }
  
}
@media  (max-width:991px) {
  .thumb-games-rrt{
    flex-direction: column;
  

  }
  
}
.box-games-rrt{
  position: relative;
  flex: 1;
}

.box-img-games-rrt{
  
  clip-path: polygon(58% 0, 100% 18%, 81% 83%, 50% 100%, 0 90%, 18% 26%);
  width: 450px;
height: 430px;
}
@media (max-width:575px) {
  .box-img-games-rrt{
  
    width: 250px;
  height: 230px;
}}
.box-decor-games-rrt{
  
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 430px;
  height: 400px;
  clip-path: polygon(58% 0, 100% 18%, 81% 83%, 50% 100%, 0 90%, 18% 26%);
  background-color: var(--style-5);
  animation: moveInSquare 4s infinite;
}
@media (max-width:575px) {
  .box-decor-games-rrt{
    width: 230px;
    height: 200px;}
}
@keyframes moveInSquare {
  0% {
      transform: translate(0, 0) rotate(88deg);
  }
  25% {
      transform: translate(15px, -15px) rotate(88deg);
  }
  50% {
      transform: translate(15px, 15px) rotate(88deg);
  }
  75% {
      transform: translate(-15px, 15px) rotate(88deg);
  }
  100% {
      transform: translate(0, 0) rotate(88deg);
  }
}

.box-img-games-rrt img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.title-games-rrt {
  text-align: center;
  color: var(--white);
  font-size: clamp(26px,4vw,46px);
}
.txt-games-rrt {
  text-align: center;
  color: var(--white);
  font-size:16px;
}
.box-btn-rrt {
  display: flex;
  justify-content: center;
  margin: 20px 0px;
}

.bll-games2-rrt{
  padding: 37px 0px;
  position: relative;
}
.decor-bg-games2-rrt{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

}
.thumb-games2-rrt{
  display: flex;
  gap: var(--gap-25-30);
  flex-wrap: wrap;
}
.box-games2-rrt{
  border-radius: var(--border-20);
  width: 100%;
  height: 430px;
  display: block;
  position: relative;
  overflow: hidden;
}

@media (min-width:992px) {
  .box-games2-rrt{
    width: calc(33.33% - 30px);
  }
  
}
@media (min-width:576px) and (max-width:991px) {
  .box-games2-rrt{
    width: calc(50% - 30px);
  }
}
.box-img-games2-rrt {
  width: 100%;
  height: 430px;
}
.box-img-games2-rrt img{
  object-fit: cover;
  border-radius: var(--border-20);
    width: 100%;
    height: 100%;
}
.box-txt-games2-rrt{
  -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    text-align: center;
    background-color: rgba(255, 255, 255, .2);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
    padding: 20px;
    display: flex;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
    transform: translate3d(0, 220px, 0);
    transition: transform 0.2s ease;
  }
@media (max-width:575px) {
  .box-txt-games2-rrt {
    transform: translate3d(0, 0, 0); 
  }
}
@media (min-width:576px) {
  .box-games2-rrt:hover .box-txt-games2-rrt {
    transform: translate3d(0, 0, 0); 
  }
}

.link-title-games2-rrt{
  color: var(--white);
  transition: color 0.2s ease;
}
.link-title-games2-rrt:hover{
  color: var(--style-5);
}

.bll-about-rrt{
  padding: 37px 15px;
 
}
.block-about-rrt{
  position: relative;
  background-image: url(mediamansion/background/bg-dark-0687008d3abef6.jpg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
    background-color: rgba(0, 0, 0, .01);
    border: 1px solid var(--border-color);
    border-radius:var(--border-20);
    max-width: 960px;
    margin-top: 26px;
 
}

.block-about-rrt::before {
  position: absolute;
  content: "";
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  border-radius:var(--border-20);

}
.thumb-txt-about-rrt{
  position: relative;
  z-index: 1;
  display: flex;
  gap: var(--gap-30-40);
  padding-top: 26px;
  padding-bottom: 26px;
}
@media (max-width:767px) {
  .thumb-txt-about-rrt{
    flex-direction: column;
    align-items: center;
  }
}

.box-txt-about-left-rrt {
  flex: 2;
}
.box-txt-about-right-rrt{
  flex: 1;
}
.box-btn-about-rrt{
  display: flex;
  justify-content: end;
}
.txt-about-rrt{
  color: var(--white);
  font-size: clamp(21px,4vw,26px);
}
.thumb-stats-rrt{
  position: relative;
  z-index: 1;
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  background-color: rgba(0, 0, 0, .01);
  border: 1px solid var(--border-color);
  border-radius:var(--border-20);
  width: 690px;
 
  margin-bottom: 15px;
  padding: 20px 26px 26px ;

}
@media (max-width:991px) {
  .thumb-stats-rrt{
    width: 100%;
  }
}

.thumb-stats-num-rrt{
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  justify-content: space-between;
}
@media (max-width:767px) {
  .thumb-stats-num-rrt{
    justify-content:center ;
  }
}
.box-stat-rrt{
text-align: center;
 }
@media (max-width:767px) {
  .box-stat-rrt{
   width: calc(50% - 13px);
  }
}
@media (max-width:480px) {
  .box-stat-rrt{
   width: 100%;
  }
}
.title-stats-rrt{
  color: var(--white);
  font-size:16px;
}
.num-stat-rrt{
  color: var(--style-5);
  letter-spacing: -2.4px;
  font-family: Rubik, sans-serif;
  font-size: 53px;
  line-height: 1em;
}
.txt-stat-rrt{
color: var(--white);
}

.bll-step-rrt{
  padding: 37px 0px;
}
.step-picture-rrt {
  width: 370px;
  height: 554px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width:991px) {
  .box-step-left-rrt{
    width: 100%;
  }
  .step-picture-rrt {
    width: 100%;
    height: 393px;
}}
.step-picture-rrt img {
  border-radius:var(--border-20);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.thumb-howwork {
  display: flex;
  gap: var(--gap-30-40);
  align-items: center;
  flex-direction: row;
}
@media (max-width:991px) {
  .thumb-howwork {
    flex-direction: column;
  }
}

.box-step-right-rrt {
  width: 100%;
}
.box-step-item-rrt {
  display: flex;
  flex-direction: column;
 
}
.item-step-right-rrt {

  border-bottom: 1px solid var(--border-color);

}
.item-step-right-rrt p {
  margin: 20px 0px;
  color: var(--white);
  font-size: clamp(16px,4vw,21px);
  animation: shrink-grow 2s infinite;
}
@keyframes shrink-grow {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.98); 
  }
}
@media (max-width:991px) {
  .item-step-right-rrt p {
   text-align: center;
  }
}

.bbl-form-rrt{
  background-image: url(mediamansion/background/bg-dark-0687008d3abef6.jpg), url(mediamansion/background/bg-dark-2687008d3abf29.jpg);
  background-position: top left, bottom right; 
  background-size: 50% 100%, 50% 100%;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
}

.bll-disclaimer-rrt {
  padding: 37px 0px;
}

.thumb-diclaimer-rrt {
  max-width: 1100px;
}
.thumb-block-discl-rrt{
  display: flex;
  gap: var(--gap-25-30);
  align-items: center;
  flex-direction: row;

}
@media (max-width:767px) {
  .thumb-block-discl-rrt{
    flex-direction: column;
  }
}
.disclaimer-rrt {
  flex: 2;

}
.box-discl-rrt{
  background-color: red;
  border-radius: var(--border-20);
  border: 1px solid var(--border-color);
  padding: 20px;
}
.txt-diclaimer-rrt {
  color: var(--white);
  font-size:16px;
  font-weight: 700;
  text-align: center;
  animation: shrink-grow 2s infinite;

}
.box-img-disclaimer-rrt {
  flex: 1;
}
.img-18-rrt img{
  width: 100%;
  height: 177px;
  object-fit: contain;
}

.bbl-form-rrt{
  padding: 37px 0px;
}
.thumb-form-rrt {
  padding: 20px;
  border-radius: var(--border-20);
  background-color: var(--bg-5);
}

.main_form {
  max-width: 870px;
  margin: 20px auto;
}
.forms-width-rrt {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.main_form label{
  color: var(--white);
  font-size:clamp(12px,4vw,21px);
}
.input-customcolumn__part{
  outline: none;
  background-color: var(--border-color);
    color: var(--white);
    border: 1px solid rgba(12, 14, 18, .2);
    border-radius: 18px;
    height: auto;
    margin-bottom: 0;
    padding: 16px 16px;
    font-size:clamp(12px,4vw,21px);

    line-height: 1em;
}
.input-customcolumn__part:focus{
  border: 1px solid var(--style-5);

}
.input-customcolumn__part::placeholder{
  color: var(--white);
font-size:clamp(12px,4vw,21px);
}
.textarea-customcolumn__part{
  min-width: 100%;
  max-width: 870px;
  outline: none;
  background-color: var(--border-color);
    color: var(--white);
    border: 1px solid rgba(12, 14, 18, .2);
    border-radius: 18px;
    min-height: 85px;
    margin-bottom: 0;
    padding: 16px 16px;
    font-size:clamp(12px,4vw,21px);

    line-height: 1em;
}
.textarea-customcolumn__part:focus{
  border: 1px solid var(--style-5);

}
.textarea-customcolumn__part::placeholder{
  color: var(--white);
font-size:clamp(12px,4vw,21px);
}

.cntr {
  display: flex;
  gap: 5px;
  align-items: center;
}

.check-color-rrt {
  font-size: clamp(11px,3vw,18px);

  color: var(--white);
}
.checingcoda {
  transition: color 0.4s ease;
font-size: clamp(11px,3vw,18px);
  color: var(--white);
}
.checingcoda:hover {
  color: var(--style-5);
}
.btn-form-rrt {
  display: flex;
  justify-content: center;
  margin: 20px 0px;
}

.bll-footer-rrt{
  padding: 37px 0px;
  background-color: var(--bg-5);
}
.logo-footer{
  margin: 26px 0px;
}
.thumb-footer-rrt {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flex-link-politik-rrt {
  display: flex;
  gap: var(--gap-30-40);
}
@media (max-width:767px) {
  .flex-link-politik-rrt{
    flex-direction: column;
    align-items: center;
  }
}
.footer-links-rrt{
  transition: color 0.4s ease;
  font-size: 15px;
}
.footer-links-rrt:hover {
  color: var(--style-5);
}
.link-logo-footer-rrt{
  gap: 13px;
  font-size: clamp(21px,4vw,36px);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width:767px) {
  .link-logo-footer-rrt{
    flex-direction: column;}
}
.logo-footer-rrt{
  width: 150px;
  object-fit: contain;
}
.copy-title {
  text-align: center;
  margin: 20px 0px;
  color: var(--white);
  font-size: clamp(20px,4vw,26px);
}

.bll-aboutus-page-rrt{
  border: 1px solid var(--border-color);
    background-color: var(--bg-5);
    border-radius: 49px;
    flex-direction: column;
      min-height: 744px;
    margin-top: 41px;
    margin-left: 26px;
    margin-right: 26px;
    padding-top: 50px;
    display: flex;
    position: relative;
    overflow: hidden;
}
.descrip-about-rrt{
  color: var(--white);
  text-align: center;
}
.thumb-gallery-about-rrt {
  display: flex;
  gap: var(--gap-30-40);
  flex-wrap: wrap; 
     justify-content: center;
     margin: 20px 0px;

}
.box-img-gallery-rrt {
  height: 172px;
  width: 100%;
}
@media (min-width:576px) and (max-width:767px) {

  .box-img-gallery-rrt{
    width: calc(50% - var(--gap-30-40));
  }
  
}
@media (min-width:768px) {
  .box-img-gallery-rrt{
    width: calc(33.33% - var(--gap-30-40));
  }
  
}
.box-img-gallery-rrt img {
  border-radius: var(--border-20);
  border: 1px solid var(--style-5);
  width: 100%;
  object-fit: cover;
  height: 100%;
  cursor:pointer;
}
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  margin: 10% auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

.close {
  position: absolute;
  top: 10px;
  right: 25px;
  color: var(--bg-5);
  font-size: 31px;
  font-weight: 700;
  cursor: pointer;
}

.bl-contcts-rrt{
  padding: 37px 0px;
}

.container-contacts-rrt {
  display: flex;
  padding: 15px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
@media (max-width:767px) {
  .container-contacts-rrt {
    flex-direction: column;
    gap: 18px;
  }
}
@media (min-width:768px) {
  .container-contacts-rrt{
    gap: 33px;
    padding: 41px;

  }
}

@media (min-width:768px) {
  .contact-info {
    max-width: 45%;
  }
}

.contact-info .icon {
  margin-right: 10px;
  color: red;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--white);

  font-size: clamp(18px,4vw,21px);

}
.ctnraa-rrt{
  font-size: clamp(18px,4vw,21px);
  color: var(--white);
  transition: color 0.2s ease;
}
.ctnraa-rrt:hover{
  color: var(--style-5);
}

.contact-form {
  background: var(--bg-5);
  padding: 26px;
  border-radius: 8px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

@media (min-width:768px) {
  .contact-form {
    max-width: 45%;}
}
.contact-form h2 {
  color: var(--white);

  font-size: 20px;
  margin-bottom: 20px;
}
.inpt-ctnr {
  outline: none;
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}
.inpt-ctnr:focus{
  border: 1px solid var(--style-5);

}
.btn-cntrk-rrt{
  margin: 20px 0px;
  display: flex;
  justify-content: center;
}


.bll-main-page-rrt {
  padding: 37px 0px;
}
.direction-sec{
  display: flex;
  flex-direction: column;
  
}

.main-page-rrt {
  width: 100%;
  object-fit: contain;
  height: 548px;
}
@media (max-width:575px) {
  .main-page-rrt {
    height: auto;
  }
}
.txt-main-page-rrt {
  color: var(--white);
}

.game-main-rrt {
  height: 548px;
}

.bbl-privacy-dxc{
  padding: 37px 0px;
}
   .privacy-rrt{
    word-break: break-all;
    color: var(--white);
   }
.privacy-rrt li {
  list-style: square !important;
  margin: 0 15px;
}
.bbl-btn-1{
  border: 1px solid var(--style-5);
  background-color: var(--style-5);
  color: var(--white);
  text-align: center;
  text-transform: none;
  border-radius: 13px;
  justify-content: center;
  padding: 16px 20px;
  font-family: Rubik, sans-serif;
  font-weight: 600;
  line-height: 1em;
  transition: all .2s;
  display: flex;
}
.bbl-btn-1:hover{
background-color: var(--white);
color: var(--style-5);
}
.bbl-btn-2 {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  font-size: 15px;
  font-weight: 700;
  color: white;
  border: 4px solid var(--style-5);
  cursor: pointer;
  position: relative;
  background-color: transparent;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  font-family: inherit;
 }
 
 .bbl-btn-2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color:var(--style-5);
  transform: translateX(-100%);
  transition: all .2s;
  z-index: -1;
 }
 
 .bbl-btn-2:hover::before {
  transform: translateX(0);
 }
 .bbl-btn-3 {
  padding: 0.5em 2em 0.5em 2.5em;
  font-size: 1em;
  font-weight: 700;
  border-radius: 15px;
  color: #fff6fb;
  letter-spacing: 0.3em;
  text-shadow: -2px 2px 5px var(--style-5);
  background-color: transparent;
  border: 1px solid var(--bg-5);
  box-shadow: 0 0 0px 1px var(--style-5);
    0 0 10px 2px var(--style-5),
    inset 0 0 0px 1px var(--style-5),
    inset 0 0 10px 2px var(--style-5);
  transition: 100ms;
}

.bbl-btn-3:hover {
  box-shadow: 0 0 0px 1px var(--style-5),
    0 0 10px 2px var(--style-5),
    inset 0 0 0px 1px var(--style-5),
    inset 0 0 30px 2px var(--style-5);
  text-shadow: 0 0 10px var(--style-5);
  transform: translateY(-5px);
}

.bbl-btn-3:active {
  box-shadow: 0 0 0px 1px var(--style-5),
    0 0 25px 2px var(--style-5),
    inset 0 0 0px 1px var(--style-5),
    inset 0 0 30px 2px var(--style-5);
  transform: translateY(1px);
}

.bbl-btn-4 {
  padding: 15px 18px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid #414141;
  color: white;
  background-color: transparent;
  cursor: pointer;
  border-radius: 13px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.bbl-btn-4:hover {
  border-color: var(--style-5);
  box-shadow: 0 0 20px var(--style-5);
}

.bbl-btn-4:active {
  box-shadow: 0 0 10px var(--style-5);
}
.bbl-btn-5 {
  background: #282936;
  padding: 10px 2rem;
  outline: 2.5px solid var(--style-5);
  outline-offset: 3px;
  border: 0;
  color: white;
  font-size: 16px;
  border-radius: 100rem;
  transition: 0.4s;
  font-weight: 600;
}

.bbl-btn-5:hover {
  outline-offset: 4.5px;
  background: var(--style-5);
  font-size: 1.1rem;
}

.bbl-btn-5:hover::after {
  opacity: 1;
}
.scroll-to-top {
  position: fixed;
  bottom: 16px;
  right: 16px;
  display: none; 
  background-color: var(--style-5);
  color: white;
  width: 55px;
  height: 45px;
  font-size: 20px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.2s ease;
  align-content: center;
}

.scroll-to-top:hover {
  opacity: 0.9;
  background-color: var(--style-[rand_number_5]);
}


.show {
  display: block;
}
#games1{
  display: flex;
}
