@import url('https://fonts.googleapis.com/css2?family=Prompt: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');



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

:root {


    --color1: #cfc396;
    --color2: #e3550e;
    --color3: #0ab7ed;
    --color4: #111;
    --white: #fff;
    --black: #000;

   
    --bg1:  #161829;
    --bg2:  #222434;
    --tetx: #EEEEEE;

    --tr1: .5s ease-in-out;

    --brd1: #303141;
    --brd2: #404250;
    --brd3: #4c4d5a;




    --rgb1: rgb(46 40 28 / 90%);
    
    
  }

  
body{
    font-family: 'Prompt', sans-serif !important;
    font-size: 18px;
    margin: 0;
    padding: 0px;
    line-height: 1.4;
    direction: ltr !important;
}




img{
  max-width: 100%;
}

ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

li, p{
  padding: 10px 0;
}

a {
  text-decoration: none;
}


.container{
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.asiaTitle{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 43px;
  position: relative;
  z-index: 1;
  gap: 10px;
}

 .asiaTitle h5{
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  font-size: clamp(23px, 5vw, 54px);
  position: relative;
  font-weight: 800;
  -webkit-background-clip: text;
  filter: drop-shadow(5px 5px 9px var(--black));
  color: var(--color1);
}



@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


canvas{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.nav-menu{
  z-index: 3;
  position: absolute;
  top: 15px;
  right: 30px;
  cursor: pointer;
}

.nav-menu h2{
  font-size: clamp(23px, 5vw, 35px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color2);
}

.menu-container {
  z-index: 2;
  position: absolute;
  height: 100%;
  width: 100%;
  background: var(--black);
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.list-items li a{
  list-style-type: none;
  font-size: clamp(29px, 5vw, 54px);
  margin-bottom: 15px;
  color: var(--color1);
  transition: var(--tr1);
  font-weight: 800;
}

.list-items li a:hover{
  color: var(--color2);
}


.asia-sh1{
  min-height: 70px;
  overflow: hidden;
  width: 100%;
  background: url(content/bg-assets/bg-dark-068d52f06213d0.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}


.asia-sh1::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(46 40 28 / 90%);
  z-index: -1;
}


.asia-sh1-main{
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 43px;
  padding: 203px 15px;
}


.asia-sh1-img{
  flex: 1;
}

.asia-sh1-content{
  flex: 2;
}

.asia-sh1-content-title a h2{
  display: flex;
  flex-direction: row-reverse;
  font-size: clamp(18px, 2.5vw, 29px);
  font-weight: 800;
  filter: drop-shadow(5px 5px 9px var(--black));
  color: var(--color2);
  text-transform: uppercase;
  padding-bottom: 43px; 
  transition: var(--tr1);
}

.asia-sh1-content-title a h2:hover{
  color: var(--color1);
}


.asia-sh1-logo img{
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 339px;
  object-fit: contain;
  animation: bl 5s linear infinite;
}

@keyframes bl{
  0%{
    filter: drop-shadow(1px 5px 7px var(--color2));
    -webkit-filter: drop-shadow(1px 5px 7px var(--color2));
  }

  50%{
    filter: drop-shadow(1px 5px 15px var(--color2));
    -webkit-filter: drop-shadow(1px 5px 15px var(--color2));
  }

  100%{
    filter: drop-shadow(1px 5px 43px var(--color2));
    -webkit-filter: drop-shadow(1px 5px 43px var(--color2));
  }
}


.asia-sh1-content h4 {
  font-size: clamp(23px, 5vw, 43px);
  font-weight: 800;
  filter: drop-shadow(5px 5px 9px var(--black));
  -webkit-filter: drop-shadow(5px 5px 9px var(--black));
  color: var(--color1);
}

.asia-sh1-btn{
  padding-top: 22px;
}



.asia-abou2{
  overflow: hidden;
  background: url(content/bg-assets/opacity_bg-068d52f062146a.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--rgb1);
  position: relative;
  z-index: 1;
  padding: 117px 15px;
}



.asia-abou2::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.asia-abou2 .container{
  display: flex;
  flex-direction: column;
}

.asia-about2-stat{
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 15px;
  padding: 15px 0 95px 0;
}

.asia-about2-stat-block{
  width: 100%;
  flex: 2;
  display: flex;
  align-items: center;
  gap: 43px;
  border-radius: 5px;
  background: var(--rgb1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 43px;
}

.asia-about2-stat-box{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.asia-about2-stat-box span{
  font-size: clamp(23px, 5vw, 43px);
  font-weight: 800;
  color: var(--color2);
  text-shadow: 1px 1px 1px var(--black), -1px -1px 1px var(--black);
}

.asia-about2-stat-box h2{
  font-weight: 800;
  font-size: clamp(14px, 2.5vw, 19px);
  color: var(--white);
}

.asia-about2-stat-img{
  flex: 1;
}

.asia-about2-stat-img img{
  width: 100%;
  object-fit: contain;
  height: 178px;
  animation: 5s linear aboutR infinite, bl 5s linear infinite;
}

@keyframes aboutR{
  0% {
    transform: rotate(5deg) translate3d(0, 0, 0);
  }
  35% {
    transform: rotate(-1deg) translate3d(0, 0, 0);
  }
  55% {
    transform: rotate(1deg) translate3d(0, 0, 0) ;
  }
  100% {
    transform: rotate(-5deg) translate3d(0, 0, 0);
  }
}

.asia-abut2Mb{
  padding: 15px 0 95px 0;
}

.asia-abou2-main{
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 43px;
}

.asia-abou2-sec{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.asia-abou2-img{
  display: flex;
  flex-direction: column;
}



.asia-abou2-content{
  flex: 1;
}

.asia-abou2-img img, .asia-abou2-secImg img{
  width: 100%;
  height: 339px;
  object-fit: contain;
  animation: 5s linear aboutR infinite, bl 5s linear infinite;
}

.asia-abou2-text{
  font-weight: 700;
  font-size: clamp(14px, 2.5vw, 18px);
  color: var(--white);
}

.asia-abou2-btn{
  padding-top: 20px;
}



.asia-about2-devs{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding:117px 0 15px 0;
}

.asia-about2-devs-main{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 43px;
}

.asia-about2-devs-block {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 5px 11px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: var(--tr1);
}

.asia-about2-devs-block:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0px 5px 22px var(--color1));
  -webkit-filter: drop-shadow(0px 5px 22px var(--color1));
}

.asia-about2-devs-block img{
  width: 100%;
  height: 339px;
  object-fit: cover;
}

.asia-about2-devs-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: var(--rgb1);
  color: var(--white);
  text-align: center;
  padding: 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.asia-about2-devs-info h2 {
  font-weight: 800;
  font-size: clamp(18px, 2.5vw, 19px);
  color: var(--color2);
}

.asia-about2-devs-info h4 {
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 18px);
  color: var(--white);
}



.asia-allGames2{
  overflow: hidden;
  width: 100%;
  background: url(content/bg-assets/bg-dark-068d52f06213d0.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  padding: 117px 15px;
}


.asia-allGames2::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(46 40 28 / 90%);
  z-index: -1;
}

.asia-allGames2-main{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 43px;
}


.asia-allGames2-block{
  position: relative;
  overflow: hidden;
  transition: var(--tr1);
  border-radius: 5px;
}


.asia-allGames2-block:after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 5px;
}

.asia-allGames2-block:hover .asia-allGames2-content{
  transform: translateY(0);
  animation: op 0.5s alternate;
  filter: drop-shadow(0px 5px 22px var(--color1));
  -webkit-filter: drop-shadow(0px 5px 22px var(--color1));
}

.asia-allGames2-block:hover {
  filter: drop-shadow(0px 5px 22px var(--color1));
  -webkit-filter: drop-shadow(0px 5px 22px var(--color1));
}

@keyframes op {
  0% {
      opacity: 0;
  }

  100% {
      opacity: 1;
  }
}

.asia-allGames2-img{
  width: 100%;
  display: block;
  height: 100%;
}

.asia-allGames2-img img{
  width: 100%;
  height: 339px;
  object-fit: cover;
  border-radius: 5px;
}

.asia-allGames2-content{
  position: absolute;
  color: var(--white);
  inset: 0;
  z-index: 2;
  transition: var(--tr1);
  background-color: var(--rgb1);
  transform: translateY(100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;  
  padding: 22px;
  border-radius: 5px;
  gap: 11px;
}


.asia-allGames2-content .asia-allGames2-content-title h2{
  font-weight: 800;
  font-size: clamp(19px, 2.5vw, 29px);
  color: var(--color2);
  transition: var(--tr1);
}

.asia-allGames2-content .asia-allGames2-content-title h2:hover{
  color: var(--white);
}

.asia-allGames2-content-text{
  font-weight: 400;
  font-size: clamp(18px, 2.5vw, 19px);
  color: var(--white);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}

.asia-allGames2-content-btn{
  padding: 22px 0;
}


.asia-allGames2-mainv2{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 43px;
}


.asia-allGames2V2-box{
  background-color: var(--rgb1);
  border-radius: 5px;
  box-shadow: 0 22px 43px var(--black);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--tr1);
}

.asia-allGames2V2-box:hover .asia-allGames2V2-image{
  filter: contrast(100%);
  -webkit-filter: contrast(100%);
} 

.asia-allGames2V2-image{
  width: 100%;
  filter: contrast(69%);
  -webkit-filter: contrast(69%);
  overflow: hidden;
  transition: var(--tr1);
}


.asia-allGames2V2-content{
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.asia-allGames2V2-title h4{
  font-weight: 800;
  font-size: clamp(18px, 2.5vw, 23px);
  color: var(--color2);
  transition: var(--tr1);
  padding-bottom: 22px;
  text-transform: uppercase;
}

.asia-allGames2V2-title h4:hover{
  color: var(--white);
}

.asia-allGames2V2-content-txt{
  font-weight: 400;
  font-size: clamp(14px, 2.5vw, 18px);
  color: var(--white);
}


.asia-rls-st1{
  background: url(content/bg-assets/opacity_bg-068d52f062146a.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--rgb1);
  position: relative;
  z-index: 1;
  padding: 117px 15px;
}



.asia-rls-st1::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.asia-rls-st1 .container{
  display: flex;
  flex-direction: column-reverse;
}

.asia-rlsMb{
  padding: 15px 0 95px 0;
}


.asia-rls-st1-main{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 43px;
}

.asia-rls-st1-block{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-radius: 5px;
  background: var(--rgb1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 22px;
  transition: var(--tr1);
}

.asia-rls-st1-block:hover{
  transform: translateY(-5px);
  filter: drop-shadow(0px 5px 22px var(--color1));
  -webkit-filter: drop-shadow(0px 5px 22px var(--color1));
}

.asia-rls-st1-block:hover .asia-rls-st1-img img{
  transform: translateX(59px);
  filter: drop-shadow(0px 5px 22px var(--color1));
  -webkit-filter: drop-shadow(0px 5px 22px var(--color1));
}

.asia-rls-st1-img img{
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: var(--tr1);
}

.asia-rls-st1-text p{
  font-weight: 800;
  font-size: clamp(14px, 2.5vw, 18px);
  color: var(--white);
}


.asia-qa1{
  padding:95px 0 15px 0;
}

.asia-qa1-main{
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.asia-qa1-video{
  flex: 1;
  width: 100%;
}


.asia-qa1-block{
  flex: 2;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 43px;
}


.asia-qa1-box{
  position: relative;
  width: 100%;
  background: var(--rgb1);
  color: var(--white);
  border-radius: 5px;
  transition: var(--tr1);
}

.asia-qa1-box:hover{
  transform: translateY(-5px);
  filter: drop-shadow(0px 5px 22px var(--color1));
  -webkit-filter: drop-shadow(0px 5px 22px var(--color1));
}

.asia-qa1-box:hover .asia-qa1-content-qus img{
  transform: translateX(15px);
  filter: drop-shadow(0px 5px 22px var(--color1));
  -webkit-filter: drop-shadow(0px 5px 22px var(--color1));
}

.asia-qa1-content{
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: var(--rgb1);
  padding: 22px;
  display: flex;
  gap: 22px;
  flex-direction: column;
}

.asia-qa1-image{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.asia-qa1-content-qus{
  display: flex;
  gap: 22px;
}

.asia-qa1-content-qus img{
  width: 55px;
  height: 55px;
  object-fit: contain;
  transition: var(--tr1);
}


 .asia-qa1-content-qus h2{
  font-weight: 800;
  font-size: clamp(18px, 2.5vw, 23px);
  color: var(--color2);
  -webkit-background-clip: text;
  filter: drop-shadow(5px 5px 9px var(--black));
  -webkit-filter: drop-shadow(5px 5px 9px var(--black));
  
}

.asia-qa1-content p{
  font-weight: 800;
  font-size: clamp(14px, 2.5vw, 18px);
  color: var(--white);
}

.asia-qa1-video-inner{
  position: sticky;
  top: 22px;
}

.asia-qa1-video-inner video {
  width: 100%;
  height:  379px;
  object-fit: cover;
}



.asia-form1{
  background: var(--black);
  padding: 117px 15px;
}


.asia-form1-main{
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 43px;
  padding: 30px 15px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}

.asia-form1-img{
  flex: 1;
}

.asia-form1-img img{
  width: 100%;
  height: 339px;
  object-fit: contain;
  animation: 5s linear aboutR infinite, bl 5s linear infinite;
}

.asia-form1-block .form{
  width: 100%;
}

.asia-form1-block{
  flex: 2;
  padding: 43px 15px;
  width: 100%;
  border-radius: 5px;
  display: flex;
  flex-direction: row-reverse;
  gap: 15px;
  align-items: center;
  justify-content: center;
  background: var(--rgb1);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
  box-shadow: 11px 10px 11px var(--color1);
  -webkit-box-shadow: 11px 10px 11px var(--color1);
}


.asia-form1-block-fields{
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.asia-form1-block-fields .input-control--rowcontrol{
  flex: 1;
}

.asia-form1-block-fields .input-control--rowcontrol::placeholder, .asia-form1-block-fields .textarea-control--rowcontrol::placeholder{
  color: var(--white);
}

.asia-form1-block-fields label{
  color: var(--white);
}

.asia-form1-block-fields .input-control--rowcontrol{
  display: block;
  width: 100%;
  padding: 11px;
  color: var(--white);
  border: 0;
  background-color: transparent;
  border: 1px solid var(--color2);
  outline: none;
  border-radius: 5px;
}

.asia-form1-block-fields  .textarea-control--rowcontrol{
  display: block;
  width: 100%;
  padding: 11px;
  color: var(--white);
  border: 0;
  background-color: transparent;
  border: 1px solid var(--color2);
  outline: none;
  border-radius: 5px;
}


.asia-form1-block-check{
  display: flex;
  gap: 11px;
  padding-top: 15px;
  color: var(--white);
} 

.asia-form1-block-check a{
  text-decoration: underline;
  color: var(--color2);
  padding-left: 11px;
  font-weight: 700;
}

.asia-form1-block-check-input {
  display: none;
}

.asia-form1-block-check-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 54px;
  font-size: 18px;
  color: var(--white);
}

.asia-form1-block-check-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border: 1px solid #333;
  border-radius: 5px;
  background: var(--white);
  transition: all 0.3s ease;
}

.asia-form1-block-check-label:hover::before {
  border-color: var(--color2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.asia-form1-block-check-label::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 10px;
  height: 11px;
  border: solid var(--white);
  border-width: 0 3px 3px 0;
  transform-origin: bottom left;
  transition: transform 0.3s ease;
  border-radius: 5px;
}

.asia-form1-block-check-input:checked + .asia-form1-block-check-label::before {
  background-color: var(--color2);
  border-color: var(--color2);
}

.asia-form1-block-check-input:checked + .asia-form1-block-check-label::after {
  transform: translateY(-100%) scale(1) rotate(45deg);
}

.asia-form1-block-btn{
  display: inline-block;
  padding: 15px 0;
}   


.asia-b1{
  border-top: 5px dashed var(--color1);
  background: var(--color4);
  padding:  30px 15px 15px 15px;
}


.asia-b1-logo{
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: center;
  align-items: center;
}

.asia-b1-logo a{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 22px;
  padding: 30px 0;
}

.asia-b1-logo img{
  object-fit: contain;
  width:  109px;
  height: 60px;
}

.asia-b1-logo  h2  {
  font-weight: 800;
  font-size: clamp(18px, 2.5vw, 19px);
  color: var(--color2);
  transition: var(--tr1);
  text-transform: uppercase;
}

.asia-b1-logo  h2:hover{
  color: var(--white);
}


.asia-b1 .asiaTitle{
  padding-bottom: 0 !important;
}

.asia-b1-dscl {
  padding: 22px 0;
}


.asia-b1-text{
  color: var(--black);
  margin-top: 22px;
  font-weight: 800;
  font-size: clamp(18px, 2.5vw, 19px);
  margin-bottom: 15px;
  background: var(--color1);
  padding: 43px;
  border-radius:  5px;
  filter: drop-shadow(1px 5px 22px var(--color1));
  -webkit-filter: drop-shadow(1px 5px 22px var(--color1));
}

.asia-b1-pl{
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  align-items: center;
  padding-top: 11px;
  padding-bottom: 22px;  
  text-align: center;
}


.asia-b1-pl a{
  font-size: clamp(18px, 2.5vw, 19px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color2);
  transition: var(--tr1);
}

.asia-b1-pl a:hover{
  color: var(--white);
}

.asia-b1-title{
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 43px;
}

.asia-b1-in, .asia-b1-dsImg{
  flex: 1;
}

.asia-b1-dsImg{
  display: flex;
  align-items: center;
  justify-content: center;
}

.asia-b1-dsImg img{
  width: 69px;
  height: 69px;
  object-fit: contain;
}

.asia-b1-in{
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--white);
}

.asia-b1-in h2{
  color: var(--color2);
}


.asia-allGames2Page{
  overflow: hidden;
  background: url(content/bg-assets/opacity_bg-068d52f062146a.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--rgb1);
  position: relative;
  z-index: 1;
  padding: 117px 15px;
}



.asia-allGames2Page::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}


.asia-str-one-game-main {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column-reverse;
  gap: 43px;
  border-radius: 5px;
}

.asia-str-one-game-inner{
  padding: 15px;
}

.asia-str-one-game-inner img{
  width: 100%;
  height: 379px;
  object-fit: contain;
  margin: 15px 0;
}


.asia-str-one-game-content {
  color: var(--white);
  font-size: clamp(14px,2.5vw,18px);
}

.asia-str-one-game-ifrm {
  width: 100%;
  padding: 30px;
  border-radius: 5px;
}

.asia-str-one-game-ifrm iframe{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
}

.asia-rating{
  display: flex;
  gap: 11px;
  align-items: center;
  justify-content: center;
  padding: 43px 0 0 0;
}

.asia-rating span{
  font-size: clamp(19px, 5vw, 29px);
  font-weight: 800;
  color: var(--color2);
  text-shadow: 1px 1px 1px var(--black), -1px -1px 1px var(--black);
}

.asia-rating svg{
  width: 25px;
  height: 25px;
  fill: var(--color2);
  filter: drop-shadow(1px 1px 1px var(--black)) drop-shadow(1px 1px 1px var(--black));
}



.asia-gt-cont-adres-main{
  position: relative;
  z-index: 1;
  padding:  117px 15px;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 43px;
}

.asia-gt-cont-adres-ins{
  display: flex;
  align-items: center;
  gap: 43px;
  flex: 1;
  background: url(content/bg-assets/bg-dark-068d52f06213d0.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--rgb1);
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  padding: 43px 22px;
}



.asia-gt-cont-adres-ins::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(46 40 28 / 90%);
  z-index: -1;
}


.asia-gt-cont-adres-im{
  display: flex;
  justify-content: center;
  align-items: center;
}


.asia-gt-cont-adres-im img{
  width: 339px;
  height: 339px;
  object-fit: contain;
}

.asia-gt-cont-adress{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.asia-gt-cont-adres-content a, .asia-gt-cont-adres-content div{
  font-weight: 700;
  font-size: clamp(14px, 2.5vw, 18px);
  color: var(--white);
  transition: var(--tr1);
  text-align: center;
}

.asia-gt-cont-adres-content a:hover{
  color: var(--color1);
}

.asia-gt-cont-adress-svg svg{
  width: 55px;
  height: 55px;
  fill: var(--color2);
}



.asia-gt-cont-main{
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 43px;
  padding: 30px 15px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}

.asia-gt-cont-adres-im{
  flex: 1;
}

.asia-gt-cont-adres-im img{
  width: 100%;
  height: 339px;
  object-fit: contain;
  animation: 5s linear aboutR infinite, bl 5s linear infinite;
}


.asia-gt-cont-block .asia-gt-cont-form{
  width: 100%;
}

.asia-gt-cont-block{
  flex: 2;
  padding: 43px 15px;
  width: 100%;
  border-radius: 5px;
  display: flex;
  flex-direction: row-reverse;
  gap: 15px;
  align-items: center;
  justify-content: center;
  background: var(--rgb1);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
  box-shadow: 11px 10px 11px var(--color1);
  -webkit-box-shadow: 11px 10px 11px var(--color1);
}


.asia-gt-cont-field{
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 11px 0;
}

.asia-gt-cont-field input{
  flex: 1;
}

.asia-gt-cont-field input::placeholder, .asia-gt-cont-field textarea::placeholder{
  color: var(--white);
}

.asia-gt-cont-field label{
  color: var(--white);
}

.asia-gt-cont-field input{
  display: block;
  width: 100%;
  padding: 11px;
  color: var(--white);
  border: 0;
  background-color: transparent;
  border: 1px solid var(--color2);
  outline: none;
  border-radius: 5px;
}

.asia-gt-cont-field  textarea{
  display: block;
  width: 100%;
  padding: 11px;
  color: var(--white);
  border: 0;
  background-color: transparent;
  border: 1px solid var(--color2);
  outline: none;
  border-radius: 5px;
}


.asia-gt-cont-check{
  display: flex;
  gap: 11px;
  padding-top: 15px;
  color: var(--white);
} 

.asia-gt-cont-check a{
  text-decoration: underline;
  color: var(--color1);
  padding-left: 11px;
  font-weight: 700;
}

.asia-gt-cont-check-input {
  display: none;
}

.asia-gt-cont-check-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 54px;
  font-size: 18px;
  color: var(--white);
}

.asia-gt-cont-check-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
  border: 3px solid #333;
  border-radius: 5px;
  background: var(--white);
  transition: all 0.3s ease;
}

.asia-gt-cont-check-label:hover::before {
  border-color: var(--color2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.asia-gt-cont-check-label::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 10px;
  height: 11px;
  border: solid var(--white);
  border-width: 0 3px 3px 0;
  transform-origin: bottom left;
  transition: transform 0.3s ease;
  border-radius: 5px;
}

.asia-gt-cont-check-input:checked + .asia-gt-cont-check-label::before {
  background-color: var(--color2);
  border-color: var(--color2);
}

.asia-gt-cont-check-input:checked + .asia-gt-cont-check-label::after {
  transform: translateY(-100%) scale(1) rotate(45deg);
}

.asia-gt-cont-btn{
  display: inline-block;
  padding: 15px 0;
}   


.asia-gt-cont-dpI{
  width: 100%;
}

.asia-gt-cont-dpI img{
  width: 100%;
  object-fit: cover;
  height: 259px;
}

.asia-pict{
  padding-top: 95px;
}

.asia-pict-main{
  height: 339px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 5px 11px rgba(0, 0, 0, 0.3);
}

.asia-pict-block{
  position: relative;
  width: 20%;
  height: inherit;
  padding:  15px;
  transition: width .5s ease;
  border-radius: 5px;
  box-shadow: 0 5px 11px rgba(0, 0, 0, 0.3);
}

.asia-pict-block img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s ease;
}

.asia-sd{
  position: absolute;
  z-index: 2;
  top: 132px;
  opacity: 0;
}


.asia-pict-block:hover img{
  opacity: .6;
}

.asia-pict-block:hover{
  width: 80%;
}

.asia-pict-block:hover .asia-sd{
  transition: all .5s ease;
  opacity: 1;
}


.asia-dPages{
  overflow: hidden;
  background: url(content/bg-assets/opacity_bg-068d52f062146a.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--rgb1);
  position: relative;
  z-index: 1;
  padding: 117px 15px;
}



.asia-dPages::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}






.asia-prav{
  overflow: hidden;
  background: url(content/bg-assets/opacity_bg-068d52f062146a.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--rgb1);
  position: relative;
  z-index: 1;
  padding: 117px 15px;
}



.asia-prav::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}


.asia-prav-main{
  word-break: break-all;
  position: relative;
  z-index: 1;
  color: var(--white);
  overflow: hidden;
}

.asia-prav h1,h2,h3{
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
}

.asia-prav  a{
    text-decoration: underline;
    color: var(--white) !important;
    word-break: break-all;
}

.asia-prav ol li {
    color: var(--white) !important;
}

.asia-prav ul{
    list-style: disc !important;
    text-align: left;
    margin: 11px;
}


.button-1{
  padding: 10px 11px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
  background-color: var(--color2);
  border: none;
  border-radius: 5px;
  box-shadow: 0px 9px 11px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
}

.button-1:hover {
  background-color: var(--color1);
  box-shadow: 0px 11px 22px var(--color1);
  color: var(--white);
  transform: translateY(-7px);
}

.button-1:active {
  transform: translateY(-1px);
}
 

.button-2 {
  color: var(--white);
  font-size: 16px;
  background-color: var(--color2);
  border: 1px solid var(--color1);
  border-radius: 5px;
  cursor: pointer;
  padding: 10px;
  box-shadow: 0px 5px 0px var(--color1);
  transition: all 0.1s;
}

.button-2:active {
  box-shadow: 0px 1px 0px var(--color1);
  position: relative;
  top: 1px;
}

.button-2:hover{
  box-shadow: 0px 0px 0px var(--color1);
}


.button-3 {
  background: var(--color1);
  border-radius: 5px;
  border: 1px solid transparent;
  text-shadow: 1px 1px 1px var(--black);
  box-shadow: 9px 9px 22px 0px var(--black);
  padding: 10px 43px;
  line-height: 22px;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}

.button-3:hover {
  box-shadow: none;
  opacity: 80%;
}


.button-4 {
  background: var(--black);
  color: var(--color1);
  border: 1px solid var(--color1);
  padding: 10px;
  font-size: 16px;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.button-4:hover {
  border-color: var(--color2);
  color: var(--white);
  box-shadow: 0 10px 10px -5px var(--color2);
  transform: translateY(-5px);
}

.button-5 {
  font-size: 11px;
  padding: 10px;
  position: relative;
  font-family: inherit;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s;
  line-height: 1.4;
  border: 1px solid var(--color2);
  color: var(--color1);
  box-shadow:
    inset 0 0 10px rgba(243, 78, 22, 0.4),
    0 0 9px 3px rgba(243, 78, 22, 0.1);
    background: transparent;
}

.button-5:hover {
  color: var(--color2);
  box-shadow:
    inset 0 0 10px var(--color1),
    0 0 9px 3px var(--black);
}











@media (max-width: 992px) {
  .asia-sh1-main{
    flex-direction: column;
  }

  .asia-about2-stat-block{
    flex-direction: column;
  }

  .asia-about2-stat-block{
    flex: 1;
  }

  .asia-abou2-main{
    flex-direction: column;
  }

  .asia-about2-devs-main{
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .asia-allGames2-block .asia-allGames2-content{
    transform: translateY(0);
    opacity: 1 !important;
  }

  .asia-allGames2-main{
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .asia-allGames2-block {
    filter: drop-shadow(0px 4px 22px var(--color1));
    -webkit-filter: drop-shadow(0px 4px 22px var(--color1));
  }

  .asia-allGames2-mainv2{
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .asia-rls-st1-main{
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .asia-qa1-main{
    flex-direction: column;
  }

  .asia-qa1-block{
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .asia-form1-main{
    flex-direction: column;
  }

  .asia-gt-cont-adres-ins{
    flex-direction: column;
  }

  .asia-gt-cont-main{
    flex-direction: column;
  }
}



@media (max-width: 768px){
  .asia-about2-devs-main{
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .asia-allGames2-main{
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .asia-allGames2-mainv2{
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .asia-rls-st1-main{
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .asia-gt-cont-adres-ins{
    flex-direction: column;
  }

  .asia-pict-main{
    flex-direction: column;
    height: auto;
    gap: 37px;
  }

  .asia-pict-block{
    width: 100%;
    object-fit: cover;
    height: 339px;
  }

  .asia-pict-block:hover{
    width: 100%;
  }

}


@media (max-width: 575px){
          
    button{
        width: 100%;
    }

    .asia-about2-stat{
      flex-direction: column;
    }

    .asia-form1-block-check-label, .asia-gt-cont-check-label{
      flex-direction: column;
      text-align: center;
      padding-left: 37px;
    }

    .asia-b1-title{
      flex-direction: column;
    }

    .asia-str-one-game-inner img{
      height: auto;
    }

    .asia-b1-in{
      flex-direction: column;
    }

    .asia-str-one-game-ifrm{
      padding: 0;
    }

    .asia-sh1-logo img{
      height: 178px;
    }

    .asia-gt-cont-main, .asia-form1-main{
      padding: 0;
    }
    
}

.pt-0{
  padding-top: 0;
}


.footer-logos {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-direction: row;
  flex-wrap: wrap;

  a img {
    max-height: 50px;
    width: 100%;
    display: block;
    max-width: none;
    transition: 0.3s linear;
    
    &:hover,
    &:hover{
      transform: scale(0.96);
      opacity: 0.8;
    }
  }
}