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

:root{
  --stl-1:#78f700;
  --stl-2:#f7ca00;
  --stl-3:#f73200;
  --stl-4:#0163f6;
  --stl-5:#f70187;
  --bg-1:#0c3b03;
  --bg-2:#232709;
  --bg-3:#270909;
  --bg-4:#091127;
  --bg-5:#27091e;


 --border-color:rgba(255, 255, 255, .2);
  --border-20:21px;
--border-r:20px;
  --white:white;
  --light-gray:#ccc;
  --black:black;
  --gap-25-30: 27px;
  --gap-30-40:38px;

}


html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*, *: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{
  overflow-x: hidden;
  line-height: 1.4;
  background-color:var(--bg-2);
  direction: ltr;
  font-family: 'Philosopher', 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(--light-gray);
}

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

.cont-vbn {
  position: relative;
  width: 100%; 
  max-width: 1240px; 
  margin: 0 auto;
  padding: 0 19px;
  box-sizing: border-box;
}
.title-vbn {
  font-size:clamp(18px,4vw,28px);
  color: var(--white); 
  text-align: center; 
  font-weight:500; 
margin-bottom:var(--gap-25-30);
  letter-spacing: 1px; 
}

.title-vbn::after {
  content: '--- ● ● ● ---'; 
  display: block;
  color: var(--stl-2); 
  font-size:  12px; 
  text-align: center; 
  margin-top: 10px; 
  letter-spacing: 5px; 
  animation: bounce-text 1.2s infinite ease-in-out;
}
@keyframes bounce-text {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-5px);
  }
}

  
  nav{
    height: 80px;
    display: flex;
    justify-content: center;
    position: fixed;
    z-index: 99;
    border-bottom:1px solid rgba(255, 255, 255, .1);
    transition: background-color 0.2s ease;
    width: 100%;
    background:transparent;
  }

  
  nav.scrolled {
    background-color: #111;
  }
  nav .wrapper{
    background: transparent;

    position: fixed;
    max-width: 1380px;
    width: 100%;
    padding: 19px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 57px;
    border-radius: 18px;
}
.logo-here{
  width: 45px;
}
@media (max-width:575px) {
  .logo-here{
    width: 57px;
  }
}
.logo-site{
  display: flex;
  align-items: center;
  gap: 19px;
}

.wrapper .logo-site a{
  color: var(--black);
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
}
@media (max-width:1199px) {
  .wrapper .logo-site a{
    
    font-size: 19px;
  }
}
@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.4s ease;
  
}
.nav-links li{
  list-style: none;
}

.nav-links li a{
  font-size: clamp(18px,4vw,21px);
  font-weight: 900;
  display: block;
  text-decoration: none;
  color: var(--light-gray);
  line-height: 1;
  background-image: linear-gradient(to right, var(--stl-2), var(--stl-2) 50%, var(--light-gray) 50%);
  background-size: 200% 100%;
  background-position: -100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: .5s ease-in-out;
  position: relative;

}


.nav-links li a:hover {
  background-position: 0;
  background-image: linear-gradient(to right, var(--stl-2), var(--stl-2) 50%, var(--light-gray) 50%);
}
.nav-links li a::before{
  content: '';
  background: var(--stl-2);
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  transition: .5s ease-in-out;
}
.nav-links li a:hover::before {
  width: 100%;
}
.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;
}



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

.wrapper .btn.close-btn{
  position: absolute;
  right: 30px;
  top: 10px;
  color: var(--light-gray);
}
.radiobtn-menu {
  display: none!important;
}
@media screen and (max-width: 970px) {
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    z-index: 3;
    position: fixed;
    width: 100%;
    
    left: 0;
    top: -100%;
    background:#111;
    display: block;
    padding: 49px 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: rand_padding_vertical_small} 10px;
  }
  .nav-links li a{
    padding: 10px 19px;
    display: block;
    font-size: 19px;
    color: var(--light-gray);
    text-align: center;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 19px;
    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: 19px;
    font-weight: 500;
    padding-left: 19px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.2s ease;
  }
  
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 16px;
  }
  

nav input{
  display: none;
}
.hero-section-vbn{
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-gray);
  overflow: hidden;
}


.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(galleryarchive/bg/bg-dark-068d5348cefd75.jpg); 
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 10s ease-in-out;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding-top: 40vh;
}

.hero:hover .hero-image {
  transform: scale(1.1);
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1); 
  }
}
.hero-image {
  animation: zoomInOut 10s ease-in-out infinite;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.85);
}
.thumb-hero-vbn{
  position: relative;
  z-index: 15;
  height: 100%;
  display: flex;

  flex-direction: column;
  min-height: 100vh;
  padding: 155px 0;
  justify-content: center;
  align-items: center;
}
.hero-vbn{
  color: var(--white);
  margin: 0 auto 14px;
  padding: 0 19px;
  font-size: 32px;
  text-transform: uppercase;

  text-align: center;
  overflow: hidden;
  position: relative;

}
@media (min-width:575px) {
  .hero-vbn{
    font-size:clamp(65px,5vw,120px);
    line-height: 1;
  }
}
.neoh_fn_down .fn__svg,.neoh_fn_down .icon {
  display: block;
  left: 50%;
  margin-left: -9px;
  position: absolute
}

.neoh_fn_down {
  position: absolute;
  bottom: 24px;
  z-index: 15;
  text-decoration: none;
  color: white;
  padding-top: 57px;
}

.neoh_fn_button,.neoh_fn_services .item_num span {
  font-size: 16px;
  text-align: center;
}
.neoh_fn_down:hover,.neoh_fn_down:hover {
  color: var(--stl-2)
}
.neoh_fn_down:hover .icon:after, .arrow:after {
  background-color: var(--stl-2);


}
.neoh_fn_down:hover .fn__svg{
  fill: var(--stl-2);
}

.neoh_fn_down .icon {
  top: -16px;
  width: 18px;
  height: 40px;
  color: #aaa;
  -webkit-animation: 1.2s infinite bottomArrow;
  animation: 1.2s infinite bottomArrow;
  transition: .2s;
}

.neoh_fn_down .icon:after {
  content: '';
  position: absolute;
  width: 2px;
  height: 40px;
  background-color: #aaa;
  left: 50%;
  margin-left: -1px;
  transition: .2s
}

.neoh_fn_down .fn__svg {
  bottom: -4px;
  transform: rotate(90deg);
  z-index: 3;
  fill:var(--light-gray);
  transition: .2s;
}
.text-vbn{
  font-size: clamp(16px,4vw,21px);
}

@keyframes bottomArrow {
  0% {
      transform: translate(0,0);
      opacity: 0
  }

  50% {
      opacity: 1
  }

  100% {
      transform: translate(0,20px);
      opacity: 0
  }
}

@keyframes topArrow {
  0% {
      transform: translate(0,0);
      opacity: 0
  }

  50% {
      opacity: 1
  }

  100% {
      transform: translate(0,-20px);
      opacity: 0
  }
}

.about-section-ind-vbn {
  padding: 49px 0px;
}

.abouts-thumb-vbn {
  display: flex;
  gap: var(--gap-30-40);
  flex-direction: row;
}
@media (max-width:991px) {
  .abouts-thumb-vbn {

    flex-direction: column-reverse;
  }
}
.about-box-vbn {
  flex: 1;
}
.about-box-img-vbn {
position: relative;
}
@media (max-width:991px) {
  .about-box-img-vbn {
    height: 342px;
    }
}
.about-box-img-vbn img {
  object-fit: cover;
  border-radius: var(--border-r);
  width: 100%;
  height:  411px;
  position: relative;
  z-index: 3;
  box-shadow: 0 0 50px rgba(0, 0, 0, .6);
}
.about-box-img-vbn::after{
  border-radius: var(--border-r);
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--stl-2);
  left: 0;
  top: 0;
  transform: rotate(5deg);
}
.txt-aboutus-idx-vbn{
  color: var(--white);
  font-size: clamp(16px,4vw,18px);
  font-weight: 500;
}
.btn-aboutus-idx-vbn{
  display: flex;
  justify-content: center;
}

.step-section-vbn{
  padding: 49px 0px;
}
.step-thumb-vbn{
  display: flex;
  gap: var(--gap-25-30);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 23px;
}
.step-all-box-vbn:hover .steps-box-vbn{
  border: 2px solid var(--stl-2);

}
.step-all-box-vbn{
  width: 100%;
}
.step-box-margin-vbn{
  margin-top: 38px;
}
.steps-box-vbn{
  padding: 46px 28px 43px;
  border: 2px solid #666;
  border-radius: 5px;
  transition: .2s;
}
@media (min-width:767px) and (max-width:1199px) {
  .step-all-box-vbn{
    width: calc(50% - 30px);
  }
}
@media (min-width:1200px) {
  .step-all-box-vbn{
    width: calc(25% - 30px);
  }
}
.step-number-vbn{
  position: relative;
    padding-left: 16px;
    display: flex;
}
.step-content-vbn p {
  color: var(--light-gray);
}
.step-number-vbn span{
  background-color: #252525;
  color: var(--light-gray);
  min-width: 46px;
  line-height: 30px;
  display: flex;
  justify-content: center;
  position: relative;
  transition: .2s;
  font-weight: 500;
  letter-spacing: .5px;
}
.step-all-box-vbn:hover .step-number-vbn span {
  background-color: var(--stl-2);
  color: #fff
}
.step-number-vbn span:before{
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  transition: .2s;
    border-width: 0 0 30px 12px;
    border-bottom-color: #252525;
    right: 100%;
    top: 0;

}
 .step-all-box-vbn:hover .step-number-vbn span:before {
 border-bottom-color: var(--stl-2);

 }
.step-number-vbn span:after {
  content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    transition: .2s;
  border-width: 30px 0 0 12px;
  border-left-color: #252525;
  left: 100%;
  top: 0;
}
.step-all-box-vbn:hover .step-number-vbn span:after {
  border-left-color: var(--stl-2);

 }

.games1-section-vbn{
padding: 49px 0px;
}
.title-games-margin-top-vbn{
  margin-top: 57px;
}
.games1-box-thumb-vbn{
  display: flex;
  flex-direction: row;
  gap: var(--gap-25-30);
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 100px;
}
@media (max-width:767px) {
  .games1-box-thumb-vbn{
    flex-direction: column;
  }
}
.games1-box-thumb-vbn:last-child{
  margin-bottom: 0;
}
.games1-items-boxes-vbn{
  flex: 1;
}
.games1-txt-vbn{
  color: var(--light-gray);
  text-align: center;
}
.games1-img-vbn{
  position: relative;
  height: 342px;
  
}
.games1-img-vbn img{
  object-fit:cover;
  border-radius: var(--border-r);
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
  box-shadow: 0 0 50px rgba(0, 0, 0, .6);
  
}
.games1-img-vbn::after{
  content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--stl-2);
    left: 0;
    top: 0;
    transform: rotate(5deg);
    border-radius: var(--border-r);
}
.btn-games1-vbn{
  display: flex;
  justify-content: center;
  margin: 20px 0px;
}

.games2-section-vbn{
padding: 49px 0px;
}
.games2-thumb-vbn{
  display: flex;
  gap: var(--gap-30-40);
  flex-wrap:wrap ;
  justify-content: center;
}
.title-priv {
  color:var(--stl-2);
}
.card {
  position: relative;
  width: 100%;
  background-color:var(--stl-2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
  box-shadow: 0 0 0 5px var(--stl-2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (max-width:767px) {
  .card {
    flex-direction: column;
  }
}
@media (min-width:768px) {
  .card{
    width: calc(50% - 40px);
    height: 411px;
  }
  
}
.overlay{
  height: 100%;
  width: 100%;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .6);
}
.title-card-vbn-games2{
  color: var(--white);
  font-size: clamp(16px,4vw,21px);
  position: absolute;
  top: auto;
  left: 50%;
  width: 55%;
  text-align: center;
  transform: translateX(-50%);
 
}
@media (max-width:767px) {

  .title-card-vbn-games2{
    display: none;
  }
  .overlay{
    display: none;
  }
}
.card-bg-vbn{
  width: 100%;
  height: 100%;
}
.card-bg-vbn img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width:767px) {
  .card-bg-vbn img{
    height: 342px;
  }
}


.card__image {
  width: 100%;
  height: 100%;
}

@media (min-width:768px) {
  .card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
  }
}

.card__content {

  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 14px;
  box-sizing: border-box;
  background-color:#313131;
 
  transform-origin: bottom;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (min-width:768px) {
  .card__content {
    position: absolute;
    transform: rotateX(-90deg);
  }
}
.card:hover .card__content {
  transform: rotateX(0deg);
}

.card__title {
  margin: 0;
  font-size: 16px;
  color: var(--stl-2);
  font-weight: 900;
}
@media (min-width:768px) and (max-width:1024px) {
  .card__title {
    text-align: center;
    margin: 0;
    font-size: 24px;
}}
@media (min-width:1025px) {
  .card__title {
    text-align: center;

    font-size: 27px;
}
}
.card:hover svg {
  scale: 0;
}
.card-btn-vbn{
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  color: var(--white);
}
@media (min-width:768px) {
  .card-btn-vbn{
    display: flex;
    justify-content: center;
  }
}
.card-btn-vbn:hover{
  color: var(--stl-2);
}
.card__description {
  margin: 10px 0 10px;
  font-size: 12px;
  color: var(--white);
  line-height: 1.4;
}
@media (min-width:768px) and (max-width:1024px) {
  .card__description {
    text-align: center;
    font-size: 16px;
}}
@media (min-width:1025px) {
  .card__description {
    text-align: center;

    font-size: 22px;
}
}

.faq-section-vbn{
  padding: 49px 0px;
}
.thumb-faq-vbn{
  display: flex;
  gap: var(--gap-25-30);
  flex-wrap: wrap;
  justify-content: center;
}
.title-txt-faq-vbn{
  font-size: clamp(16px,4vw,20px);
  color: var(--white);
  text-align: center;
}
.faq-svg-box-vbn{
  border: 1px solid var(--stl-2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  fill: var(--stl-2);
  width: 65px;
  height: 65px;
}
.faq-svg-box-vbn svg{
  padding: 14px;
  width: 65px;
  height: 65px;}
.flip {
  position: relative;
}

.flip > .front, .flip > .back {
  display: block;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-duration: 0.5s;
  transition-property: transform, opacity;
}
.flip > .front {
  transform: rotateY(0deg);
}
.flip > .back {

  opacity: 1;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  transform: rotateY(0deg);
}
@media (min-width:768px) {
  .flip > .back {
    position: absolute;
    opacity: 0;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    transform: rotateY(-180deg);
  }
}

.flip:hover > .front {
  transform: rotateY(180deg);
}
.flip:hover > .back {
  opacity: 1;
  transform: rotateY(0deg);
}
.flip.flip-vertical > .back {
  transform: rotateX(-180deg);
}
.flip.flip-vertical:hover > .front {
  transform: rotateX(180deg);
}
.flip.flip-vertical:hover > .back {
  transform: rotateX(0deg);
}
.flip {
  position: relative;
  display: inline-block;
width: 100%;

}
@media (min-width:575px){
  .flip{
width: calc(50% - 30px);
  }
}

.flip > .front, .flip > .back {
  color: white;
  text-align: center;
  background-size: cover !important;
  background-position: center !important;

  padding: 1em 2em;
  background: #313131;
  border-radius: 14px;
  display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media (min-width:768px) {
  .flip > .front, .flip > .back {
     height: 220px;}
}
.text-shadow {
  text-shadow: 1px 1px rgba(0, 0, 0, 0.04), 2px 2px rgba(0, 0, 0, 0.04), 3px 3px rgba(0, 0, 0, 0.04), 4px 4px rgba(0, 0, 0, 0.04), 0.125rem 0.125rem rgba(0, 0, 0, 0.04), 6px 6px rgba(0, 0, 0, 0.04), 7px 7px rgba(0, 0, 0, 0.04), 8px 8px rgba(0, 0, 0, 0.04), 9px 9px rgba(0, 0, 0, 0.04), 0.3125rem 0.3125rem rgba(0, 0, 0, 0.04), 11px 11px rgba(0, 0, 0, 0.04), 12px 12px rgba(0, 0, 0, 0.04), 13px 13px rgba(0, 0, 0, 0.04), 14px 14px rgba(0, 0, 0, 0.04), 0.625rem 0.625rem rgba(0, 0, 0, 0.04), 16px 16px rgba(0, 0, 0, 0.04), 17px 17px rgba(0, 0, 0, 0.04), 18px 18px rgba(0, 0, 0, 0.04), 19px 19px rgba(0, 0, 0, 0.04), 1.25rem 1.25rem rgba(0, 0, 0, 0.04);
}
@media (max-width:767px) {
  .flip{
    display: flex;
    gap: 14px;
    flex-direction: column;
  }
}

.form-section-vbn {
  padding: 49px 0px;
  position: relative;
  width: 100vw; 
  overflow: hidden;
  background: url(galleryarchive/bg/bg-dark-168d5348cefd9d.jpg) no-repeat center center;
  background-size: cover;
}
.form-section-vbn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 1; 
}
.content
{position: relative;
z-index: 2;}

.input-maincolumn-component{
  width: 100%;
    padding: 14px;
    margin: 14px 0;
    border: none;
    border-radius: 5px;
    outline: none;
    background-color: var(--bg-2);
    color: #fff;
}
.input-maincolumn-component::placeholder{
  color: var(--white);
}
.input-maincolumn-component:focus{
  box-shadow:0px 0px 13px var(--stl-2);
}
.textarea-maincolumn-component{
  width: 100%;
    padding: 14px;
    margin: 14px 0;
    border: none;
    border-radius: 5px;
    outline: none;
    background-color: var(--bg-2);
    color: #fff;
}
.textarea-maincolumn-component::placeholder{
  color: var(--white);
}
.textarea-maincolumn-component:focus{
  box-shadow:0px 0px 13px var(--stl-2);
}

.forms-width-vbn {
  max-width: 960px;
  background-color: #111;
  padding: 34px;
  border-radius: 14px;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
}
@media (max-width:767px) {
  
.forms-width-vbn {

  padding: 15px;
}}
.forms-width-vbn label{
  color: var(--white);
}

.cntr {
  display: flex;
  gap:  5px;
}
.check-color-vbn{
  font-size: clamp(12px,4vw,17px);
}

.checingcoda {
  color: var(--white);
}
.checingcoda:hover {
  color: var(--stl-2);
}
.btn-form-vbn {
  display: flex;
  justify-content: center;
  margin:30px 0px;

}

.disclaimer-section-vbn{
  padding: 49px 0px;
}


.thumb-block-discl-vbn {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  padding: 24px;
  border-radius: var(--border-r);
  border: 2px dashed var(--stl-2);
  background-color: #111;
}
.img-bg-discl-vbn{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.09;
}
.img-bg-discl-vbn img {
  width: 100%;
height: 100%;
object-fit: cover;
}
@media (min-width:992px) {
  .thumb-block-discl-vbn {
    max-width: 1024px;}
}


.txt-diclaimer-vbn {
  color: var(--white);
  text-align: center;
  font-size: clamp(18px,4vw,21px);
}

.footer-section-vbn {
  padding: 49px 0px;
  background-color: #111;
}

.thumb-logo-footer-vbn {
  display: flex;
  justify-content: center;
  gap: 14px;
  align-items: center;
}
@media (max-width:575px) {
  .thumb-logo-footer-vbn{
    flex-direction:  column-reverse;
  }
}
.link-logo-footer-vbn {
  display: flex;
  align-items: center;
  gap:5px;
}
.box-logo-footer-vbn {
  width: 65px;
}
.logo-footer-vbn {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.box-img-disclaimer-vbn {
  width: 95px;
}
.img-18-vbn {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flex-link-politik-vbn {
  margin:30px 0px;
flex-wrap: wrap;
  display: flex;
    justify-content: space-around;
    gap: 14px;
}
.footer-links-vbn {
  font-size:16px;
  text-align: center;
  display: block;
  text-decoration: none;
  color: var(--light-gray);
  line-height: 1;
  background-image: linear-gradient(to right, var(--stl-2), var(--stl-2) 50%, var(--light-gray) 50%);
  background-size: 200% 100%;
  background-position: -100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: .5s ease-in-out;
  position: relative;
}
.footer-links-vbn:hover {
  background-position: 0;
  background-image: linear-gradient(to right, var(--stl-2), var(--stl-2) 50%, var(--light-gray) 50%);
}
.footer-links-vbn::before{
  content: '';
  background: var(--stl-2);
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  transition: .5s ease-in-out;
}
.footer-links-vbn:hover::before {
  width: 100%;
}

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

.contacts-section-vbn{
  padding: 49px 0px;

}
.contact-form {
  background-color: #111;
  padding: 34px;
  border-radius: 14px;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  margin: 0 auto;
}
@media (max-width:767px) {
  .contact-form {
    padding: 15px;}
}

.contact-form h2 {
  margin-bottom: 16px;
}
.box-privacy-cont-vbn{
  align-items: center;
  display: flex;
  gap: 5px;
}
.check-color-vbn{
  color: var(--white);
}
.checingcoda{
  color: var(--white);
}
.checingcoda:hover{
  color: var(--stl-2);
}

.inpt-ctnr {
  width: 100%;
  padding: 14px;
  margin: 14px 0;
  border: none;
  border-radius: 5px;
  outline: none;
}

.contact-form .inpt-ctnr {
  background-color:var(--bg-2);
  color: #fff;
}
.contact-form .inpt-ctnr:focus{
  box-shadow:0px 0px 13px var(--stl-2);
}

.contact-form .inpt-ctnr::placeholder{
  color: var(--white);
}
.btn-cntrk-vbn{
  display: flex;
  justify-content: center;
  cursor: pointer;
  margin:30px 0px;
}
.allthumb-cont-vbn{
  display: flex;

}
.thumb-cont-address-vbn{
  display: flex;
  gap: 20px;
  margin:30px 0px;
  flex-wrap: wrap;
    justify-content: center;
  
}
.thumb-cont-address-vbn li{
  cursor: pointer;
  width: 100%;
  background-color: var(--white);
  padding: 14px;
  display: flex;
    gap: 14px;
    align-items: center;
    color: var(--black);
    justify-content: center;
    border: 2px dashed var(--stl-2);
    border-radius: var(--border-r);
  }

.ctnraa-vbn{
  color: var(--black);
}
.thumb-cont-address-vbn li:hover .ctnraa-vbn{
  color: var(--stl-2);
 
}
@media (min-width:768px) {
  .thumb-cont-address-vbn li{
    width:calc(33.33% - 15px);
  }
}
.thumb-cont-address-vbn li:hover span{
  fill: var(--stl-2);
}
.thumb-cont-address-vbn a {
  word-break:break-all;
}
.box-address-vbn{
  background-color: var(--white);
  padding: 14px;
  margin-bottom: 24px;
  border: 2px dashed var(--stl-2);
  border-radius: var(--border-r);
}

.box-address-vbn p{
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--black);
  text-align: center;
}

.privacy-section-vbn{
  word-break: break-all;
  padding: 49px 0px;
}
.privacy-vbn {
  color: var(--white);
}
.privacy-vbn ul {
  margin: 0 25px;
   list-style: square;
}
.privacy-vbn li{
  list-style: square !important;
}
.aboutus-section-page-vbn {
  padding: 49px 0px;
}

.thumba-about-vbn {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-direction: row;
  
}
@media (max-width:767px) {
  .thumba-about-vbn{
    flex-direction:  column-reverse;
  }
}
.box-about-us-page-vbn {
  flex: 1;
}
.descrip-about-vbn {
  color: var(--white);
}
.gallery {
  --g: 8px;  
  --s: 400px; 
  
  display: grid;
  border-radius: 50%;
}
.gallery > img {
  grid-area: 1/1;
  width: 400px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  transform: translate(var(--_x,0),var(--_y,0));
 
  z-index: 0;
  transition: .2s, z-index 0s .2s;
}
.gallery img:hover {
  --_i: 1;
  z-index: 1;
  transition: transform .2s, clip-path .2s .2s, z-index 0s;
}
.gallery:hover img {
  transform: translate(0,0);
}
.gallery > img:nth-child(1) {
  clip-path: polygon(50% 50%,calc(50%*var(--_i,0)) calc(120%*var(--_i,0)),0 calc(100%*var(--_i,0)),0 0,100% 0,100% calc(100%*var(--_i,0)),calc(100% - 50%*var(--_i,0)) calc(120%*var(--_i,0)));
  --_y: calc(-1*var(--g))
}
.gallery > img:nth-child(2) {
  clip-path: polygon(50% 50%,calc(100% - 120%*var(--_i,0)) calc(50%*var(--_i,0)),calc(100% - 100%*var(--_i,0)) 0,100% 0,100% 100%,calc(100% - 100%*var(--_i,0)) 100%,calc(100% - 120%*var(--_i,0)) calc(100% - 50%*var(--_i,0)));
  --_x: var(--g)
}
.gallery > img:nth-child(3) {
  clip-path: polygon(50% 50%,calc(100% - 50%*var(--_i,0)) calc(100% - 120%*var(--_i,0)),100% calc(100% - 120%*var(--_i,0)),100% 100%,0 100%,0 calc(100% - 100%*var(--_i,0)),calc(50%*var(--_i,0)) calc(100% - 120%*var(--_i,0)));
  --_y: var(--g)
}
.gallery > img:nth-child(4) {
  clip-path: polygon(50% 50%,calc(120%*var(--_i,0)) calc(50%*var(--_i,0)),calc(100%*var(--_i,0)) 0,0 0,0 100%,calc(100%*var(--_i,0)) 100%,calc(120%*var(--_i,0)) calc(100% - 50%*var(--_i,0)));
  --_x: calc(-1*var(--g))
}


.section-main-page-vbn {
  padding: 49px 0px;
}
.drc-flx{
  display: flex;
  flex-direction: column-reverse;
}

.thumb-img-main-vbn {
display: flex;
justify-content: center;
  position: relative;
}

.main-page-vbn {
  border-radius: var(--border-r);
  border: 2px dashed var(--stl-2);
  object-fit: contain;
  height: auto;
  z-index: 2;
  position: relative;

}

@media (min-width:576px) and (max-width:991px) {
  .main-page-vbn{
    width: 60%;
  }
}
@media (min-width:992px) {
  .main-page-vbn{
    width: 49%;
  }
}
.txt-main-page-vbn {
  color: var(--white);
}
.section-page-frame {
  padding: 49px 0px;
}

.game-main-vbn {
  width: 100%;
  height: 100vh;

  iframe{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 2px solid var(--stl-4);
  }
}

.vbn-btn-1{
  border: 2px solid var(--stl-2);
  background-color: var(--stl-2);
  color: var(--white);
  text-align: center;
  text-transform: none;
  border-radius: 14px;
  justify-content: center;
  padding: 16px 23px;
  line-height: 1em;
  transition: all .2s;
  display: flex;
  cursor:pointer;
}
.vbn-btn-1:hover{
background-color: var(--white);
color: var(--stl-2);
}
.vbn-btn-2 {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  font-size: 16px;
  font-weight: 900;
  color: var(--white);
  border: 2 solid var(--stl-2);
  border-radius:14px;
  cursor: pointer;
  position: relative;
  background-color: transparent;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  font-family: inherit;
 }
 
 .vbn-btn-2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color:var(--stl-2);
  transform: translateX(-100%);
  transition: all .2s;
  z-index: -1;
 }
 
 .vbn-btn-2:hover::before {
  transform: translateX(0);
 }
 .vbn-btn-3 {
  display: block;
  width: fit-content;
  max-width: 100%;
  text-decoration: none;
  color:var( --stl-2);
  text-transform: uppercase;
  border: 2px solid var(--light-gray);
  border-radius: 5px;
  line-height: 46px;
  padding: 0 25px ;
  position: relative;
  cursor:pointer;
}
.vbn-btn-3:hover{
  color:var(--white);
  border-color: var(--stl-2);
}

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

.vbn-btn-4:hover {
  border-color: var(--stl-2);
  box-shadow: 0 0 20px var(--stl-2);
}

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

.vbn-btn-5:hover {
  outline-offset: 4.5px;
  background: var(--stl-2);
}

.vbn-btn-5:hover::after {
  opacity: 1;
}

#g1{
  display: flex;
}

.scroll-to-top {
  z-index: 9999;
  direction: initial;
  position: fixed;
  bottom: 20px;
  right: 30px;
  width: 57px;
  height: 57px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-icon {
  position: absolute;
  z-index: 10;
  left: 15px;
  top: 11px;
}
.arrow-icon path{
  stroke: var(--white);
}
.progress-ring {
  fill: var(--stl-2);
  transform: rotate(-90deg); 
}

.progress-ring__circle {
  transition: 0.35s stroke-dashoffset;
  transform-origin: 50% 50%;
  stroke:var(--stl-2)
}


.pt-100{
  padding-top: 100px;
}


.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;
    }
  }
}
