@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&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:20px;
--border-r:15px;
  
  --white:white;
  --black:black;
  --gap-25-30: 28px;
  --gap-30-40:34px;

}


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: 'IBM Plex Serif', 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: 23px auto;
    margin-top:  23px;
    
  }
  .sub-title-rrt{
    text-align: center;
    color: var( --white);
    margin-bottom: 23px;

  }
  
  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 34px;
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 57px;
    border-radius: 16px;
}
.logo-here{
  width: 50px;
}
@media (max-width:575px) {
  .logo-here{
    width: 50px;
  }
}
.logo-site{
  display: flex;
  align-items: center;
  gap: 18px;
}

.wrapper .logo-site a{
  color: var(--black);
  font-size: 23px;
  font-weight: 500;
  text-decoration: none;
}
@media (max-width:1199px) {
  .wrapper .logo-site a{
    
    font-size: 18px;
  }
}
@media (max-width:575px) {
  .wrapper .logo-site a{
    
    font-size: 13px;
  }
}

.wrapper .nav-links{
  gap: var(--gap-25-30);
  display: inline-flex;
  transition: all 0.4s ease;
  
}
.nav-links li{
  list-style: none;
}

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

}

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


.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.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a{
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 500;
  border-radius: 0px;
}


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

.wrapper .btn.close-btn{
  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-4);
    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.4s 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.3s 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: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s 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: 23px 0px;
}
.title-hero-rrt{
  margin: 23px 0px;
  color: var(--white);
  font-size: clamp(28px,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: 2px solid var(--border-color);
  background-color: var(--bg-4);
  border-radius: 57px;
  flex-direction: column;
    min-height: 804px;
  margin-top:45px;
  margin-left: 28px;
  margin-right: 28px;
  padding-top: 79px;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.img-hero-rrt{
  position: absolute;
  left: 20%;
  top: 10%;
  max-width: 378px;
  
}
.img-hero-rrt img {
  width: 70%;
  object-fit: contain;
}
@media (min-width:992px) {
  
.img-hero-rrt{
  animation: move 3s infinite alternate;
}}
@media  (max-width:767px) {
  .circle-hero-rrt{
    opacity: 0.5;
    width: 378px;
    height: 378px;
    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:104px;
  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: 2px solid var(--border-color);
  border-radius:var(--border-20);
  max-width: 960px;
margin-top: 45px;
  padding-top: 79px;
  padding-bottom: 79px;
}
@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: 2px solid var(--border-color);
    width: 259px;
    height: 57px;
    margin-bottom: 0;
    padding-left:16px;
    padding-right:16px;
    font-size: 13px;
    font-weight: 500;
    outline: none;
    border-radius: 13px;
}
.form-newwseller-rrt input::placeholder{
  font-size: 13px;
  color: var(--white);

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

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

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

.thumb-benefic-rrt {
  justify-content: center;
  display: flex;
  gap: var(--gap-25-30);
  flex-wrap: wrap;
}
.box-benefic-rrt {
  padding: 17px;
  display: flex;
  border: 2px 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: 28px;
  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: 23px 0px;
  transition: transform 0.3s ease-out;

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

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

.bll-games-rrt{
  padding: 41px 0px;
  margin-left: 28px;
  margin-right: 28px;
  background-color: var(--bg-4);
  border: 2px solid var(--border-color);
  border-radius: 57px;
  padding-bottom: 90px;
  margin-top: 80px;
}
.games1-padd-rrt{
  margin: 23px;
}
.all-thumb-games-rrt{
  display: flex;
  flex-direction: column;
  gap: 57px;
  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-4);
  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: 23px 0px;
}

.bll-games2-rrt{
  padding: 41px 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: 2px 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.3s 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.3s ease;
}
.link-title-games2-rrt:hover{
  color: var(--style-4);
}

.bll-about-rrt{
  padding: 41px 15px;
 
}
.block-about-rrt{
  position: relative;
  background-image: url(imagevault/dir-bg/bg-dark-0689389b20511b.jpg);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
    background-color: rgba(0, 0, 0, .01);
    border: 2px solid var(--border-color);
    border-radius:var(--border-20);
    max-width: 960px;
    margin-top: 28px;
 
}

.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: 28px;
  padding-bottom: 28px;
}
@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,28px);
}
.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: 2px solid var(--border-color);
  border-radius:var(--border-20);
  width: 690px;
 
  margin-bottom: 15px;
  padding: 20px 28px 28px ;

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

.thumb-stats-num-rrt{
  margin-top: 28px;
  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-4);
  letter-spacing: -2.4px;
  font-family: Rubik, sans-serif;
  font-size: 60px;
  line-height: 1em;
}
.txt-stat-rrt{
color: var(--white);
}

.bll-step-rrt{
  padding: 41px 0px;
}
.step-picture-rrt {
  width: 370px;
  height: 590px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width:991px) {
  .box-step-left-rrt{
    width: 100%;
  }
  .step-picture-rrt {
    width: 100%;
    height: 327px;
}}
.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: 2px solid var(--border-color);

}
.item-step-right-rrt p {
  margin: 23px 0px;
  color: var(--white);
  font-size: clamp(16px,4vw,21px);
  animation: shrink-grow 3s 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(imagevault/dir-bg/bg-dark-0689389b20511b.jpg), url(imagevault/dir-bg/bg-dark-2689389b205140.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: 41px 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: 2px solid var(--border-color);
  padding: 23px;
}
.txt-diclaimer-rrt {
  color: var(--white);
  font-size:16px;
  font-weight: 700;
  text-align: center;
  animation: shrink-grow 3s infinite;

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

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

.main_form {
  max-width: 870px;
  margin: 23px auto;
}
.forms-width-rrt {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.main_form label{
  color: var(--white);
  font-size:clamp(12px,4vw,21px);
}
.input-mainboxcontrol{
  outline: none;
  background-color: var(--border-color);
    color: var(--white);
    border: 2px 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-mainboxcontrol:focus{
  border: 2px solid var(--style-4);

}
.input-mainboxcontrol::placeholder{
  color: var(--white);
font-size:clamp(12px,4vw,21px);
}
.textarea-mainboxcontrol{
  min-width: 100%;
  max-width: 870px;
  outline: none;
  background-color: var(--border-color);
    color: var(--white);
    border: 2px 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-mainboxcontrol:focus{
  border: 2px solid var(--style-4);

}
.textarea-mainboxcontrol::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.3s ease;
font-size: clamp(11px,3vw,18px);
  color: var(--white);
}
.checingcoda:hover {
  color: var(--style-4);
}
.btn-form-rrt {
  display: flex;
  justify-content: center;
  margin: 23px 0px;
}

.bll-footer-rrt{
  padding: 41px 0px;
  background-color: var(--bg-4);
}
.logo-footer{
  margin: 28px 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.3s ease;
  font-size: 17px;
}
.footer-links-rrt:hover {
  color: var(--style-4);
}
.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: 23px 0px;
  color: var(--white);
  font-size: clamp(20px,4vw,26px);
}

.bll-aboutus-page-rrt{
  border: 2px solid var(--border-color);
    background-color: var(--bg-4);
    border-radius: 57px;
    flex-direction: column;
      min-height: 804px;
    margin-top: 45px;
    margin-left: 28px;
    margin-right: 28px;
    padding-top: 79px;
    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: 23px 0px;

}
.box-img-gallery-rrt {
  height: 189px;
  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: 2px solid var(--style-4);
  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-4);
  font-size: 27px;
  font-weight: 700;
  cursor: pointer;
}

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

.container-contacts-rrt {
  display: flex;
  padding: 17px;
  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: 34px;
    padding: 45px;

  }
}

@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.3s ease;
}
.ctnraa-rrt:hover{
  color: var(--style-4);
}

.contact-form {
  background: var(--bg-4);
  padding: 28px;
  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: 23px;
  margin-bottom: 20px;
}
.inpt-ctnr {
  outline: none;
  width: 100%;
  padding: 17px;
  margin-bottom: 20px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
}
.inpt-ctnr:focus{
  border: 2px solid var(--style-4);

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


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

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

.game-main-rrt {
  margin-top: 80px;
  width: 100%;
  height: 100vh;
}

.bbl-privacy-dxc{
  padding: 41px 0px;
}
   .privacy-rrt{
    word-break: break-all;
    color: var(--white);
   }
.privacy-rrt li {
  list-style: square !important;
  margin: 0 15px;
}
.bbl-btn-1{
  border: 2px solid var(--style-4);
  background-color: var(--style-4);
  color: var(--white);
  text-align: center;
  text-transform: none;
  border-radius: 13px;
  justify-content: center;
  padding: 16px 23px;
  font-family: Rubik, sans-serif;
  font-weight: 500;
  line-height: 1em;
  transition: all .3s;
  display: flex;
}
.bbl-btn-1:hover{
background-color: var(--white);
color: var(--style-4);
}
.bbl-btn-2 {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  font-size: 17px;
  font-weight: 700;
  color: white;
  border: 3px solid var(--style-4);
  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-4);
  transform: translateX(-100%);
  transition: all .3s;
  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-4);
  background-color: transparent;
  border: 2px solid var(--bg-4);
  box-shadow: 0 0 0px 1px var(--style-4);
    0 0 10px 2px var(--style-4),
    inset 0 0 0px 1px var(--style-4),
    inset 0 0 10px 2px var(--style-4);
  transition: 100ms;
}

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

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

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

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

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

.bbl-btn-5:hover {
  outline-offset: 4.5px;
  background: var(--style-4);
  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-4);
  color: white;
  width: 50px;
  height: 45px;
  font-size: 23px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
  align-content: center;
}

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


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


@media(max-width: 560px){
  .thumb-hero-rrt{
    flex-direction: column !important;
  }
}

#cookie-banner .close{
  position: relative !important;
  right: auto !important;
  top: auto !important;
  font-size: initial !important;
  font-weight: initial !important;
}

.mt80{
  margin-top: 130px;
}