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

:root {
  --bg-1: #0d0b1e; 
  --text-1: #00eaff; 

  --bg-2: #1b002e; 
  --text-2: #ffcc00; 

  --bg-3: #ff0080; 
  --text-3: #ffffff; 

  --bg-4: #00eaff; 
  --text-4: #000; 

  --bg-5: #ffcc00; 
  --text-5: #ffffff;

  --bq-1: #1d1940; 

  --bq-2: #340058; 

  --bq-3: #b9025e; 

  --bq-4: #00a6b5; 

  --bq-5: #c79f00; 
}

*{
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body{
  background-color: var(--bg-5);
  direction: ltr;
  font-family: 'Amaranth', sans-serif !important;
  font-size: clamp(13px, 4vw, 16px);
  margin: 0;
  padding: 0px;
  line-height: 1.5;
}


p, li{
  padding: 6px 0;
  line-height: 1.5;
}

li{
  margin: 0 6px;
}

a{
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

img{
  display: block;
  max-width: 100%;
  max-height: 100%;
}

ul{
  margin: 0;
  padding: 0;
}

.section-container{
  width: auto;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 480px) {
  .section-container{
  max-width: 450px;
  }
}
@media screen and (min-width: 575px){
  .section-container{
    max-width: 540px;
  }
}
@media screen and (min-width: 768px) {
  .section-container{
  max-width: 730px;
  }
}
@media screen and (min-width: 992px) {
  .section-container{
    max-width: 960px;
  }
}

@media screen and (min-width: 1200px){
  .section-container{
    max-width: 1170px;
    }
}

@media (min-width: 1400px){
  .section-container{
    max-width: 1274px;
  }
}

.page-privacy{
  padding: 77px 0;
  overflow: hidden;
  width: 100%;
}

.content-politics{
  font-size: clamp(16px, 4vw, 18px);
  color: var(--text-5);
  text-align: justify;
}

.page-privacy a{
  transition: 0.3s ease;
  color: var(--text-5);
}

.page-privacy a:hover{
  color: var(--text-5);
  opacity: 0.5;
}

.page-privacy li{
  list-style: inside;
}

.header-wrapper{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  padding: 15px 0;
}

.header-bar{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.brand-logo{
  transition: 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  gap: 6px;
}

.logo-image img{
  max-height: 42px;
  object-fit: contain;
  width: 100%;
}

.logo-text h2{
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
  margin: 0;
}

.brand-logo:hover{
  opacity: 0.5;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
}

.menu-link {
  font-size: clamp(16px, 4vw, 18px);
  color: #fff;
  padding: 12px;
  transition: 0.3s ease;
}

.menu-link:hover {
  opacity: 0.5;
  color: var(--text-5);
}

.hero-section {
  padding: 122px 0;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
  position: absolute;
  z-index: 2;
  text-align: center;
}

.hero-content h1 {
  margin: 0;
  animation: ScaleText 8s infinite ease-in-out;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--text-5);
  font-size: clamp(30px, 4vw, 50px);
}

@keyframes ScaleTextMedia {
  0%, 100%{
    transform: scale(1);
  }

  50%{
    transform: scale(0.8);
  }
}

@keyframes ScaleText {
  0%, 100%{
    transform: scale(1);
  }

  50%{
    transform: scale(1.1);
  }
}

.hero-content p {
  padding: 0;
  color: #fff;
  opacity: 0.8;
}

.background-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide-item {
  filter: brightness(0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide-item.active {
  opacity: 1;
}
.slide-item1 {
  background-image: url('imagevault/background/bg-all-069d8cf51b35f4.jpg');
}
.slide-item2 {
  background-image: url('imagevault/background/bg-all-169d8cf51b3619.jpg');
}
.slide-item3 {
  background-image: url('imagevault/background/bg-all-269d8cf51b363b.jpg');
}
.slide-item4 {
  background-image: url('imagevault/background/bg-all-369d8cf51b365d.jpg');
}
.primary-button {
  border-radius: 0px;
  cursor: pointer;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #fff;
  padding: 6px 15px;
  font-size: clamp(16px, 4vw, 18px);
  font-weight: bold;
  background: transparent;
  position: relative;
  transition: all 1s;
  overflow: hidden;
}

.primary-button:hover {
  color:#060606;
}

.primary-button::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color: #fff;
  z-index: -1;
  transition: all 1s;
}

.primary-button:hover::before {
  width: 160%;
}

.info-section {
  min-height: 70vh;
  display: flex;
  flex-direction: row-reverse;
}

.info-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 77px 0;
}

.info-text {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 26px;
  padding: 0 35px;
}

.info-text h2 {
  margin: 0;
  color: var(--text-5);
  font-size: clamp(30px, 4vw, 50px);
}

.info-text .primary-button {
  color: var(--text-5);
  border: 1px solid var(--text-5);
}

.info-text .primary-button:hover {
  color:var(--bg-5);
}

.info-text .primary-button::before {
  background-color: var(--text-5);
}

.info-description {
  opacity: 0.8;
  font-weight: normal;
  color: var(--text-5);
  font-size: clamp(16px, 4vw, 16px);
}

.info-image {
  flex: 1;
  overflow: hidden;
}

.info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ScaleText 8s infinite ease-in-out;
}

.game-steps-lay{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: var(--bq-5);
}

.game-steps {
  display: flex;
  flex-direction: column;
  gap: 77px;
  padding: 77px 0;
}

.game-steps h2 {
  margin: 0;
  text-align: center;
  color: var(--text-5);
  font-size: clamp(30px, 4vw, 50px);
}

.game-steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.game-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 26px;
}

.game-step-item img {
  object-fit: contain;
  width: 100%;
  height: 86px;
}

.game-step-item h5 {
  margin: 0;
  opacity: 0.8;
  font-weight: normal;
  color: var(--text-5);
  font-size: clamp(16px, 4vw, 16px);
}

.gambla-benefit-lay{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: var(--bq-5);
}

.gambla-benefit{
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 35px;
  padding: 77px 0;
}

.gambla-benefit-img{
  flex: 1;
}

.gambla-benefit-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gambla-benefit-text{
  flex: 1;
  justify-content: center;
  padding: 35px 0;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.gambla-benefit-text h2{
  margin: 0;
  color: var(--text-5);
  font-size: clamp(30px, 4vw, 50px);
}

.gambla-benefit-box{
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.gambla-benefit-card{
  direction: initial;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
}

.gambla-benefit-card h5{
  margin: 0;
  font-weight: normal;
  opacity: 0.8;
  color: var(--text-5);
  flex: 1;
  font-size: clamp(16px, 4vw, 16px);
}

.gambla-benefit-card svg{
  width: 51px;
  height: 51px;
  fill: var(--text-5);
}


.games{
  display: none;
  flex-direction: column;
  gap: 77px;
  padding: 77px 0;
}

.games h2{
  margin: 0;
  text-align: center;
  color: var(--text-5);
  font-size: clamp(30px, 4vw, 50px);
}

.games-content{
  max-height: 50vh;
  justify-content: space-between;
  gap: 35px;
  display: flex;
  flex-direction: row-reverse;
}

.games-card{
  border: 1px solid #ffffff33;
  flex: 1;
  overflow: hidden;
  position: relative;
}

.games-card__img{
  height: 100%;
  position: relative;
}

.games-card__img img{
  animation: ScaleText 8s infinite ease-in-out;
  filter: brightness(0.5);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.games-card__text{
  position: absolute;
  left: 0;
  z-index: 1;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 26px;
  padding: 26px;
}

.games-card__title{
  text-transform: uppercase;
  color: var(--text-5);
  font-size: clamp(20px, 4vw, 30px);
  font-weight: bold;
  transition: 0.3s ease;
}

.games-card__title:hover{
  opacity: 0.5;
}

.games-content-box{
  display: flex;
  gap: 35px;
  flex-direction: column;
  flex: 1;
}

.catalog{
  padding: 77px 0;
  display: none;
  flex-direction: column;
  gap: 77px;
}

.catalog h2{
  text-align: center;
  color: var(--text-5);
  font-size: clamp(30px, 4vw, 50px);
}

.game-catalog-box{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.game-catalog-card{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: transparent;
  background-image: linear-gradient(180deg, #FFFFFF2B 0%, #FFFFFF00 100%);
  transition: 0.5s ease;
  border: 1px solid #ffffff2b;
  border-radius: 26px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.game-catalog-card:hover{
  border: 1px solid var(--text-5);
}

.game-catalog-img{
  width: 100%;
}

.game-catalog-img img{
  border-radius: 26px;
  width: 100%;
  height: 231px;
  object-fit: cover;
}

.menu-game-title{
  flex: 1;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.menu-game-title a h5{
  margin: 0;
  transition: 0.3s ease;
  font-size: clamp(18px, 4vw, 22px);
  color: #fff;
}

.menu-game-title a h5:hover{
  color: var(--text-5);
}

.rating{
display: flex;
flex-direction: row;
align-items: center;
gap: 6px;
}

.rating svg{
  width: 25px;
  height: 25px;
  fill: var(--text-5);
}

.team-section-lay{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: var(--bq-5);
}

.team-section {
  display: flex;
  flex-direction: column;
  gap: 77px;
  padding: 77px 0;
}

.team-section h2 {
  margin: 0;
  text-align: center;
  color: var(--text-5);
  font-size: clamp(22px, 4vw, 50px);
}

.team-container {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(4, 1fr);
}

.team-card {
  transition: 1s ease;
  overflow: hidden;
  position: relative;
}

.team-card img {
  filter: brightness(0.8);
  transition: 1s ease;
  object-fit: cover;
  width: 100%;
  height: 325px;
  position: relative;
}

.team-card:hover img {
  filter: brightness(0.5);
  transform: scale(1.1);
}

.team-card h5 {
  color: #fff;
  font-size: clamp(18px, 4vw, 19px);
  transition: 1s ease;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px;
}

.team-card:hover h5 {
  margin: 0;
  opacity: 0;
  transform: translateX(-100%) scale(1.5);
}

.wrapper-playing{
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 26px;
  padding: 77px 26px;
  border-radius: 25px;
  box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
  direction: initial;
  margin: 77px 0;
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.wrapper-playing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-image: url(imagevault/background/bg-all-469d8cf51b367d.jpg);
  background-position: center;
  filter: brightness(0.5);
  background-size: cover;
  z-index: -1;
}

.wrapper-playing h2{
  margin: 0;
  color: var(--text-5);
  font-size: clamp(30px, 4vw, 50px);
}

.footer-lay{
  position: relative;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.footer-lay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(imagevault/background/bg-all-569d8cf51b369e.jpg);
  background-position: center;
  filter: brightness(0.5);
  background-size: cover;
  z-index: -1;
}

.footer{
  padding: 77px 0;
  display: flex;
  flex-direction: column;
  gap: 77px;
}

.footer-top{
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 77px;
}

.disclaimer{
  animation: ScaleText 8s infinite ease-in-out;
  border: 1px solid var(--text-5);
  border-radius: 12px;
  flex: 1;
  gap: 26px;
  background-color: var(--bq-5);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 26px;
}

.disclaimer h2{
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(18px, 4vw, 22px);
  color: var(--text-5);
}

.disclaimer p{
  padding: 0;
  font-size: clamp(16px, 4vw, 18px);
  color: var(--text-5);
  opacity: 0.8;
}

.privacy{
  flex: 1;
}

.privacy ul {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 15px;
}

.privacy ul li a {
  font-size: clamp(16px, 4vw, 18px);
  transition: 0.3s ease;
  text-decoration: none;
  color: #fff;
}

.privacy ul li a:hover{
  color: #fff;
  opacity: 0.5;
}

.footer-bottom{
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.footer-bottom p{
  padding: 0;
  color: #fff;
  font-size: clamp(16px, 4vw, 18px);
}

.footer-bottom img{
  max-width: 86px;
}

.layout {
  padding: 77px 0;
  display: flex;
  gap: 77px;
  flex-direction: column;
}

.game-wrapper {
  width: 100%;
  height: 100vh;
}

.game-wrapper iframe {
  border: none;
  width: 100%;
  height: 100%;
}

.heading {
  padding-top: 77px;
  color: var(--text-5);
  text-align: center;
  font-size: clamp(30px, 4vw, 50px);
}

.content-block {
  overflow: hidden;
  position: relative;
}

.content-image {
  object-fit: contain;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 26px;
  float: right;
  width: 39%;
  margin: 35px;
  margin-top: 0;
  margin-right: 0;
}

.content-text {
  color: var(--text-5);
  font-size: clamp(16px, 4vw, 18px);
}

.content-text ul {
  list-style: inside;
}

.content-text li {
  opacity: 0.9;
}

.contacts-box{
  margin: 77px 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px;
}
.contacts-box a {
  cursor: auto;
}
.cont-card{
  border: 1px solid var(--text-5);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  border-bottom-left-radius: 15px;
  border-top-right-radius: 15px;
  padding: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.cont-card svg{
  width: 39px;
  height: 39px;
  fill: var(--text-5);
}

.cont-card a{
  flex: 1;
}

.cont-card a h5{
  margin: 0;
  transition: 0.3s ease;
  font-size: clamp(18px, 4vw, 22px);
  color: var(--text-5);
}

.cont-card a h5:hover{
  opacity: 0.5;
}

.cont-card h5{
  margin: 0;
  flex: 1;
  font-size: clamp(18px, 4vw, 22px);
  color: var(--text-5);
}

.kontact-form{  
  margin: 77px auto;
  border: 1px solid #ffffff33;
  backdrop-filter: blur(10px);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 26px;
  background-color: var(--bq-5);
  padding: 26px;
  width: 70%;
  display: flex;
  flex-direction: column;
}

.kontact-form h2{
  margin: 0;
  text-align: center;
  color: #fff;  
  font-size: clamp(25px, 4vw, 30px);
  margin-bottom: 26px;
}

.input-kontact-form .inputs-kontact, .input-kontact-form .textarea-kontact{
  outline: none;
  margin: 6px 0;
}

.input-position{
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.input-kontact-form .inputs-kontact {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #060606;
  color: #8789a1;
  background-color: #f5f7f9;
  box-shadow: 4px 4px #060606;
  padding: 12px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 18px; 
}

.input-kontact-form .textarea-kontact{
  width: 100%;
  border-radius: 6px;
  border: 1px solid #060606;
  color: #8789a1;
  background-color: #f5f7f9;
  box-shadow: 4px 4px #060606;
  padding: 12px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 18px; 
  resize: vertical;
  min-height: 35px;
  max-height: 133px;
}

.input-kontact-form .inputs-kontact::placeholder, .input-kontact-form .textarea-kontact::placeholder{
  color: #060606;
  font-size: clamp(14px, 4vw, 16px);
}

.input-kontact-form .inputs-kontact:focus, .input-kontact-form .textarea-kontact:focus{
  color: #060606;
}

.kontact-form button{
  margin: 0 auto;
}

.form-lay{
  padding: 77px 0;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: var(--bq-5);
}

.form-block{
  border: 1px solid #ffffff33;
  backdrop-filter: blur(10px);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 26px;
  background-color: var(--bg-5);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.title-box h2{
  margin: 0;
  text-align: center;
  color: #fff;  
  font-size: clamp(25px, 4vw, 30px);
}

.osn-form {
  position: relative;
  display: flex;
  flex-direction: column;
}

.input-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-container label{
  font-size: clamp(14px, 4vw, 16px);
  color: #fff;
}

.input-container .input-input-item-section, .input-container .textarea-input-item-section {
  outline: none;
  margin: 6px 0;
}

.input-container .input-input-item-section {
  border-radius: 6px;
  border: 1px solid #060606;
  color: #8789a1;
  background-color: #f5f7f9;
  box-shadow: 4px 4px #060606;
  padding: 12px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 18px; 
}

.input-container .textarea-input-item-section {
  border-radius: 6px;
  border: 1px solid #060606;
  color: #8789a1;
  background-color: #f5f7f9;
  box-shadow: 4px 4px #060606;
  padding: 12px; 
  font-size: clamp(14px, 4vw, 16px); 
  line-height: 18px; 
  resize: vertical;
  min-height: 35px;
  max-height: 133px;
}

.input-container .input-input-item-section:focus, .input-container .textarea-input-item-section:focus{
  color: #060606;
}

.input-container .input-input-item-section::placeholder, .input-container .textarea-input-item-section::placeholder{
  color: #060606;
  font-size: clamp(14px, 4vw, 16px);
}

.check{
  transition: 0.3s ease;
  color: #fff;
}

.check:hover{
  opacity: 0.5;
  color: #fff;
}

.form-check {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
  padding: 15px 0;
}

.form-check .form-check-input{
  margin: 0;
}

.form-button{
  margin: 0 auto;
}

.ui-checkbox {
  --primary-color: #1677ff;
  --secondary-color: #fff;
  --primary-hover-color: #4096ff;
  --checkbox-diameter: 20px;
  --checkbox-border-radius: 5px;
  --checkbox-border-color: #d9d9d9;
  --checkbox-border-width: 1px;
  --checkbox-border-style: solid;
  --checkmark-size: 1.2;
}

.ui-checkbox,
.ui-checkbox *,
.ui-checkbox *::before,
.ui-checkbox *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.ui-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: var(--checkbox-diameter);
  height: var(--checkbox-diameter);
  border-radius: var(--checkbox-border-radius);
  background: var(--secondary-color);
  border: var(--checkbox-border-width) var(--checkbox-border-style) var(--checkbox-border-color);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

.ui-checkbox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  box-shadow: 0 0 0 calc(var(--checkbox-diameter) / 2.5) var(--primary-color);
  border-radius: inherit;
  opacity: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  -o-transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
  transition: all 0.5s cubic-bezier(0.12, 0.4, 0.29, 1.46);
}

.ui-checkbox::before {
  top: 40%;
  left: 50%;
  content: "";
  position: absolute;
  width: 4px;
  height: 7px;
  border-right: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(0);
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(0);
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
  opacity: 0;
  -webkit-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
  -o-transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
  transition: all 0.1s cubic-bezier(0.71, -0.46, 0.88, 0.6),opacity 0.1s;
}

.ui-checkbox:hover {
  border-color: var(--primary-color);
}

.ui-checkbox:checked {
  background: var(--primary-color);
  border-color: transparent;
}

.ui-checkbox:checked::before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  transform: translate(-50%, -50%) rotate(45deg) scale(var(--checkmark-size));
  -webkit-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  -o-transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
  transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
}

.ui-checkbox:active:not(:checked)::after {
  -webkit-transition: none;
  -o-transition: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  transition: none;
  opacity: 1;
}

.nav-toggle {
  cursor: pointer;
  display: none;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 100;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  transition: all 0.5s;
}

.nav-toggle span:nth-of-type(2) {
  top: calc(50% - 7px);
}

.nav-toggle span:nth-of-type(3) {
  top: calc(50% + 7px);
}

.nav-toggle.active span:nth-of-type(1) {
  display: none;
}

.nav-toggle.active span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(45deg);
}

.nav-toggle.active span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, 0%) rotate(-45deg);
}

.nav-panel {
  padding: 50px 0;
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: #060606;
  transform: translateY(-100%);
  transition: transform 0.5s;
}

.nav-panel.open {
  transform: translateY(0);
}

.nav-panel nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

.nav-panel ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  padding: 0;
}

.nav-panel li {
  list-style-type: none;
}

.nav-panel li a {
  letter-spacing: 2px;
  text-align: center;
  font-size: clamp(18px, 4vw, 20px);
  color: #fff;
}

.nav-panel li a:hover {
  opacity: 0.6;
  color: #fff;
}

@media (max-width: 1199px) {
  .disclaimer{
    animation: ScaleTextMedia 8s infinite ease-in-out;
  }
}

@media (max-width: 991px) {
  .nav-toggle{
    display: block;
  }

  .navigation{
    display: none;
  }

  .game-steps-container{
    grid-template-columns: repeat(2, 1fr);
  }

  .game-catalog-box{
    grid-template-columns: repeat(2, 1fr);
  }

  .team-container{
    grid-template-columns: repeat(2, 1fr);
  }
  .kontact-form{
    width: 100%;
  }

  .footer-top{
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .info-image img{
    max-height: 60vh;
  }

  .input-position{
    flex-direction: column;
    gap: 0;
  }

  .contacts-box{
    grid-template-columns: repeat(1, 1fr);
  }

  .gambla-benefit-img img{
    max-height: 60vh;
  }

  .game-steps-container{
    grid-template-columns: repeat(1, 1fr);
  }

  .info-section{
    flex-direction: column;
  }

  .gambla-benefit{
    flex-direction: column;
  }

  .info-text{
    padding: 0;
  }

  .game-catalog-box{
    grid-template-columns: repeat(1, 1fr);
  }

  .team-container{
    grid-template-columns: repeat(1, 1fr);
  }

  .games-content{
    max-height: none;
    flex-direction: column;
  }
  .games-card__img {
    height: 350px;
  }
  .games{
    gap: 35px;
  }

  .content-image {
    width: 100%;
    margin: 0;
    margin-bottom: 35px;
  }
}
@media (max-width: 767px) {
  .info-image2{
    display: none;
  }
}

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

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