@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&display=swap');

:root{
 --cb-1:#ff6944;
 --cb-2:#0583F2;
 --cb-3:#039743;
 --cb-4:#F2B705;
 --cb-5:#e65c00;

 --bg-1:#A68376;
 --bg-2:#4cb8bf;
 --bg-3:#919151;
 --bg-4:#F2594B;
 --bg-5:#574a3b;
 --bhero-1:rgba(166, 131, 118,0.5);
 --bhero-2:rgba(160, 214, 240, 0.5);
 --bhero-3:rgba(112, 145, 81, 0.5);
 --bhero-4:rgba(242, 89, 75,0.5);
 --bhero-5:rgba(247, 188, 120, 0.5);

--margin25:21px 0px;
--sec-padd:48px 0px;
--border-r:22px;
  --white:white;
  --black:black;
  --gap-25-30: 28px;
  --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.5;
  direction: ltr;
  font-family: 'Newsreader', sans-serif !important;
  font-size: 18px;
  margin: 0;
  padding: 0px;
}
ul,li{
  padding: 0px;
  margin: 0px;
  list-style: none;
}
p,li{
  padding: 6px 0px;
}
a{text-decoration: none;
  transition: all 0.3s ease;
}

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

.container-17vlb2{
  position: relative;
  width: 100%; 
  max-width:1233px; 
  margin: 0 auto;
  padding: 0  15px;
  box-sizing: border-box;
  z-index: 1;
}

#g1{
  display: flex;
}
#faq1{
  display: flex;
}
.title-box-17vlb2{
 margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.title-17vlb2 {
  font-size:clamp(20px,4vw,46px);
  color: var(--black); 
  text-align: center; 
  font-weight:500; 
}
.title-white-17vlb2{
  color: var(--white);
}
.image-container-17vlb2 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 180px;
}

.left-line-17vlb2, 
.right-line-17vlb2 {
  width: 48px; 
  height: 1px;
  background-color: var(--cb-3);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.left-line-17vlb2 {
  left: 0;
  animation: move-left-17vlb2 1s infinite alternate ease-in-out; 
}

.right-line-17vlb2 {
  right: 0;
  animation: move-right-17vlb2 1s infinite alternate ease-in-out; 
}
.image-box-17vlb2{
  width: 48px;
  height: 48px;
}
.image-17vlb2 {
  width: 100%;
  height:100%;
  z-index: 1;
  object-fit: contain;
}

@keyframes move-left-17vlb2 {
  0% {
    left: 0;
  }
  100% {
    left: -10px; 
  }
}


@keyframes move-right-17vlb2 {
  0% {
    right: 0;
  }
  100% {
    right: -10px; 
  }
}

.container-header-17vlb2{
  position: relative;
  margin: 0 auto;
  padding: 0 58px;
}
@media (max-width:1199px) {
  .container-header-17vlb2{
    padding: 0 15px;
  }
}
header{
  background-color: var(--bg-3);
  border-bottom: 1px solid var(--cb-3);
  width: 100%;
}
  .navbar {
    justify-content: space-between;
    display: flex;
    height: 79px;
    align-items: center;
    padding: 15px 15px;
    color: var(--black);
}
@media (max-width:991px) {
  .navbar{
    justify-content: space-between;
  }
}

.logo-thumb-17vlb2{
  display: flex;
  align-items: center;
  gap: 14px;
  color:var(--white);
  font-weight:700;
  font-size: 20px;
}
.logo-thumb-17vlb2:hover{
  color: var(--cb-3);
}
.logo-img-17vlb2{
  width: 50px;
}
.logo-img-17vlb2 img{
width: 100%;
height: 100%;
object-fit: cover;
}


.nav-list li {
    margin: 0  15px;
}

.nav-list a {
    text-decoration: none;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    gap: 6px;
}
.nav-list a svg{
  transition: all 0.3s ease;
  fill: var(--white);
}
.nav-list a:hover{
  color: var(--cb-3);
}
.nav-list a:hover svg{
  fill: var(--cb-3);
}
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}



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

    .nav-list {
      z-index: 12;
        display: flex;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 80px;
        left: 0;
        background-color: var(--white);
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.5s ease, opacity 0.5s ease;
        visibility: hidden;
    }

    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list li {
        margin: 20px 0;
        text-align: center;
    }
}
.menu-toggle {
  cursor: pointer;
  display: none; 
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 6px auto;
  transition: all 0.3s ease-in-out;
  background-color: #000;
}

.menu-toggle.open .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.nav-list {
  list-style-type: none;
  display: flex; 
  justify-content: space-around;
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0s linear 0.5s; 
}

.nav-list.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition-delay: 0s; 
}

.nav-list.open {
  display: block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 7px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: black;
  padding: 14px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

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

  .nav-list {
      display: none; 
      flex-direction: column;
      text-align: center;
      transform: translateY(-100%);
      opacity: 0;
      visibility: hidden;
  }

  .nav-list.active {
    background: var(--bg-3);
      display: flex; 
      align-items: center;
      transition: transform 0.5s ease, opacity 0.5s ease;
  }

  .dropdown-content {
      display: none; 
      flex-direction: column;
      position: static;
  }

  .dropdown-content.show {
      display: flex; 
  }
}

.hero-17vlb2 {
  position: relative;
  min-height:  80vh; 
  overflow: hidden;
}

.hero-video-17vlb2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.hero-content-17vlb2 {
  padding-top:123px;
  padding-bottom: 58px;
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  display: flex;
  gap: var(--gap-25-30);
}

@media (max-width:767px) {
  .hero-content-17vlb2 {
    flex-direction: column;
  }
}
.title-hero-17vlb2 {
  font-size:clamp(20px,4vw,41px);
  margin-bottom: 20px;
}
.button-hero-17vlb2{
  display: flex;
  justify-content: center;
 margin: var(--margin25);
}
.hero-content-17vlb2 p {
  font-size: 20px;
  margin-bottom: 6px;
}
@media (min-width:992px) {
  .hero-content-17vlb2 p {
   
    margin-bottom: 28px;
  }
}
.hero-box-left-17vlb2{
  flex: 2;
}
.hero-box-right-17vlb2{
  border-radius: var(--border-r);
  background-color: rgba(0, 0, 0, 0.5);
  padding:15px;
  flex: 1;
  display: flex;
    align-items: center;
    justify-content: center;
}

.hero-17vlb2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bhero-3); 
  z-index: 1;
}
.box-stats-hero-17vlb2{
  display: flex;
  gap:15px;
  justify-content: center;
}
@media (max-width:991px) {
  .box-stats-hero-17vlb2{
    flex-direction: column;
  }
}

.section-about-17vlb2{
  padding: var(--sec-padd);
}


.thumb-about-17vlb2 {
  direction: initial;
  display: flex;
  gap: var(--gap-30-40);
  flex-direction: row-reverse;
  align-items: center;
}
@media (max-width:991px) {
  .thumb-about-17vlb2 {
    flex-direction: column-reverse;
  }
}
.box-about-left-17vlb2 {
  position: relative;
  width: 100%;
  max-width: 35%;
  margin-left: 123px;
  flex-direction: row-reverse;
  display: flex;
}
@media (max-width:575px) {
  .box-about-left-17vlb2 {
    margin-left:48px;
  }
}
@media (max-width:991px) {
  .box-about-left-17vlb2 {
    max-width: 75%;
  }
}
@media (max-width:767px) {
  .mob-comm-17vlb2{
    flex-direction: column-reverse!important;
  }
}
.thumb-img-about-17vlb2{
position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.box-img-about-17vlb2{
  padding: 14px;
  background-color: var(--white);
  border-radius: 210px;
position: absolute;
top: 50px;
left: -75px;
width: 155px;
height: 240px;
border-radius: 210px;
z-index: 2;
}
.box-img-about-17vlb2-2{
  top: 305px;
  left: -55px;
}
.box-img-about-17vlb2 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 210px;
}
.box-about-right-17vlb2{
  text-align: center;
}
@media (min-width:992px) {
  .box-about-right-17vlb2 {
    max-width: 55%;
  }
  
}

.video-cont-17vlb2 {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.video-cont-17vlb2::before {
  content: '';
  position: absolute;
  border-radius: 210px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bhero-3); 
  z-index: 1;
}
.video-element-17vlb2 {
  border-radius: 210px;
  width: 100%;
  min-height: 592px;
  object-fit: cover; 
}
.button-about-17vlb2{
  display: flex;
  justify-content: center;
 margin: var(--margin25);
}

.section-games1-17vlb2{

  padding: var(--sec-padd);
  background-color: var(--bg-3);
}
@media (min-width:576px) {
  .section-games1-17vlb2{
    margin:15px;      
    border-radius: var(--border-r);
  }
  
}
.title-games1-17vlb2{
  color: var(--white);
}
.thumb-games1-17vlb2{
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.box-games1-17vlb2{
  width: 80%;
  background-color: var(--white);
  border-radius: var(--border-r);
  padding:15px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;

}

.line-games1-17vlb2{
  background-image: linear-gradient(90deg,var(--cb-3)  65%, var(--bg-3)  65%);
  width: 100%;
  max-width: 65px;
  height:4px;
}
.box-img-games1-17vlb2{
  height: 457px;
}
.box-img-games1-17vlb2 img{
width: 100%;
height: 100%;
object-fit: cover;
border-radius: var(--border-r);
}
.link-title-games1-17vlb2{
  color: var(--black);

}
.link-title-games1-17vlb2 h2{
  margin: 15px 0px;
}
.link-title-games1-17vlb2:hover{
  color: var(--cb-3);
}
.button-games1-17vlb2{
  display: flex;
  justify-content: center;
 margin: var(--margin25);
}

.container {
  position: relative;
}
.star {
  position: absolute;
  width: 20px;
  height: 20px; 
  background: var(--bhero-3);
  border-radius: 50%;
  animation: sparkle 1.5s infinite;
}

@keyframes sparkle {
  0% {
      transform: scale(0);
      opacity: 0;
  }
  50% {
      transform: scale(1);
      opacity: 1;
  }
  100% {
      transform: scale(0);
      opacity: 0;
  }
}

.star:nth-child(1) {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}

.star:nth-child(2) {
  top: 40%;
  left: 50%;
  animation-delay: 0.3s;
}

.star:nth-child(3) {
  top: 60%;
  left: 70%;
  animation-delay: 0.6s;
}

.star:nth-child(4) {
  top: 10%;
  left: 80%;
  animation-delay: 0.9s;
}

.star:nth-child(5) {
  top: 60%;
  left: 20%;
  animation-delay: 1.2s;
}

.section-games2-17vlb2{
  padding: var(--sec-padd);
}

.thumb-games2-17vlb2{
  display: flex;
  gap: var(--gap-25-30);
  flex-wrap: wrap;
}
.box-games2-17vlb2{
  width: 100%;
}
@media (min-width:768px) and (max-width:1023px) {
  .box-games2-17vlb2{
    width: calc(50% - 30px);
  }
}
@media (min-width:1024px)  {
  .box-games2-17vlb2{
    width: calc(33.33% - 30px);
  }
}
.hero-games2-17vlb2 {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 374px;
  border-radius: var(--border-r);
  overflow:hidden;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.3);

}

.hero-profile-img {
  height: 70%;
  object-fit: cover;
}

.hero-description-bk {
  background-image: linear-gradient(0deg , var(--bg-3),var(--cb-3));
  border-radius: 30px;
  position: absolute;
  top: 55%;
  left: -5px;
  height: 65%;
  width: 108%;
  transform: skew(19deg, -9deg);
}



.hero-logo {
  height: 51px;
  width: 51px;
  border-radius: 20px;
  background-color: #fff;
  position: absolute;
  bottom: 30%;
  left: 30px;
  overflow:hidden;
  box-shadow: 5px 5px 28px rgba(0, 0, 0, 0.7);
  animation: zoomAnimation 2s infinite alternate;

}
@keyframes zoomAnimation {
  from {
      transform: scale(1);
  }
  to {
      transform: scale(1.05); 
  }
}
@media (max-width:575px) {
  .hero-logo {
    display: none;}
}
.hero-logo img {
  height: 100%;
  object-fit: cover;
}
.link-category{
  font-weight:  700;
  color: var(--white);
}
.link-category:hover{
  color: var(--bg-3);
}
.hero-description {
  position: absolute;
  color: #fff;
  font-weight:  700;
 
  padding: 0px 15px;
  bottom: 26%;
}
@media (min-width:576px) {
  .hero-description {
    left: 145px;}
}
.hero-btn {
  position: absolute;
  right: 30px;
  bottom: 10%;
 
}

.section-comments-17vlb2{
  background-color: var(--white);
  padding: var(--sec-padd);
}
.thumb-comments-17vlb2 {
  display: flex;
 
}
@media (max-width:767px) {
  .thumb-comments-17vlb2{
    flex-direction: column;
  }

}
@media (min-width:768px) and (max-width:1023px) {
  .thumb-comments-17vlb2 {
    flex-direction: column;
    height: 640px;
  }
}
@media (min-width:1024px) {
  .thumb-comments-17vlb2 {
    height: 340px;
  }
}

.box-comments-17vlb2 {
  flex: 1;
    display: flex;
    align-items: center;
}
@media (max-width:767px) {
  .box-comments-17vlb2 {
    flex-direction: column;
  }
}
.item-comments-17vlb2 {
  height: 100%;
width: 100%;
}
@media (min-width:768px) {
  .item-comments-17vlb2 {
    height: 100%;
   width: 50%;}
}
@media(max-width:1023px) {
  .item-comments-17vlb2 {
    height: 320px;
 
  }
}
.item-comments-17vlb2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-comments-txt-17vlb2{
  color: var(--white);
width: 100%;
  height: 100%;
  background-color: var(--cb-3);
  display: flex;
  flex-direction: column;
  padding: 0 31px;
  justify-content: center;
}
@media (min-width:768px) {
  .item-comments-txt-17vlb2{
   width: 50%;}
}

.section-faq-17vlb2{
  padding: var(--sec-padd);

  background-color: var(--bg-3);
}
@media (min-width:576px) {
  .section-faq-17vlb2{
    margin: 15px;
    border-radius: var(--border-r);
  }
}
.thumb-faq-17vlb2{
  direction: initial;
display: flex;
gap: var(--gap-25-30);
align-items: center;
flex-direction:row-reverse;
}
.box-faq-17vlb2{
flex: 1;
}
.thumb-faq-img-17vlb2{
display: flex;
flex-direction: column;
gap: 15px;

}
.box-faq-img-17vlb2{height: 320px;}
@media (max-width:767px) {

  .img-faq-17vlb2-none{
    display: none;
  }
}
.box-faq-img-17vlb2 img{
  border-radius: var(--border-r);

width: 100%;
height: 100%;
object-fit: cover;
}
.olcards {
  list-style: none;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  --cardsGap: 18px;
  gap: var(--cardsGap);
  padding-bottom: var(--cardsGap);
}
.olcards li {
  counter-increment: cardCount;

  color: white;
  --labelOffset: 18px;
  --arrowClipSize: 1.5rem;
  margin-top: var(--labelOffset);
  transition: transform 0.3s ease;
}
@media (min-width:576px) {
  .olcards li {
    display: flex;}
}
.olcards li:hover{
  transform: scale(1.05);
}
.olcards li::before {
  content: counter(cardCount, decimal-leading-zero);
  background: white;
  color: var(--cardColor);
  font-size: 21px;
  font-weight: 700;
  transform: translateY(calc(-1 * var(--labelOffset)));
  margin-right: calc(-1 * var(--labelOffset));
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 6px;
}

.olcards li .content {
  background-color: var(--cardColor);
  --inlinePadding:18px;
  --boxPadding: 15px;

  padding: var(--boxPadding) calc(var(--inlinePadding) + var(--arrowClipSize))
    var(--boxPadding) calc(var(--inlinePadding) + var(--labelOffset));
  grid-template-areas:
    "icon title"
    "icon text";
  gap: 0.25em 1em;
  clip-path: polygon(
    0 0,
    calc(100% - var(--arrowClipSize)) 0,
    100% 50%,
    calc(100% - var(--arrowClipSize)) 100%,
    calc(100% - var(--arrowClipSize)) calc(100% + var(--cardsGap)),
    0 calc(100% + var(--cardsGap))
  );
  position: relative;
}
@media (min-width:575px) {
  .olcards li .content{
    display: grid;
  }
}
.olcards li .content::before {
  content: "";
  position: absolute;
  width: var(--labelOffset);
  height: var(--labelOffset);
  background: var(--cardColor);
  left: 0;
  bottom: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  filter: brightness(0.75);
}
.olcards li .content::after {
  content: "";
  position: absolute;
  height: var(--cardsGap);
  width: var(--cardsGap);
  background: linear-gradient(to right, rgba(0, 0, 0, 0.25), transparent 50%);
  left: 0;
  top: 100%;
}
.olcards li .icon {
  width: 48px;
  align-self: center;
  font-size: 18px;
}
@media (max-width:575px) {
  .olcards li .icon {
    display: none;
  }
}
.icon img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.olcards li .content .title {
  font-size: 20px;
  margin-bottom: 20px;
}
.olcards li .content .text {
  grid-area: text;
}

.section-about-17vlb2-page{

  padding: var(--sec-padd);

  background-color: var(--bg-3);
}
@media (min-width:576px) {
  .section-about-17vlb2-page{
    border-radius: var(--border-r);
    margin:15px;
  }
}
.txt-about-17vlb2{
  color: var(--white);
}

.section-form-17vlb2{
  padding: var(--sec-padd);

  background-color: var(--bg-3);
}
@media (min-width:576px) {
  .section-form-17vlb2{
    border-radius: var(--border-r);
    margin: 15px;
  }
}
.decor-17vlb2 {
  position: relative;
  max-width: 960px;
  margin: 0 auto ;
  background: white;
  border-radius: 30px;
}

.form-left-decoration-17vlb2,
.form-right-decoration-17vlb2 {
  content: "";
  position: absolute;
  width: 50px;
  height:  20px;
  background: var(--bg-3);
  border-radius:  20px;
}

.form-left-decoration-17vlb2 {
  bottom: 60px;
  left: -30px;
}

.form-right-decoration-17vlb2 {
  top: 60px;
  right: -30px;
}

.form-left-decoration-17vlb2:before,
.form-left-decoration-17vlb2:after,
.form-right-decoration-17vlb2:before,
.form-right-decoration-17vlb2:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 20px;
  border-radius: 28px;
  background: white;
}

.form-left-decoration-17vlb2:before {
  top: -20px;
}

.form-left-decoration-17vlb2:after {
  top: 20px;
  left: 10px;
}

.form-right-decoration-17vlb2:before {
  top: -20px;
  right: 0;
}

.form-right-decoration-17vlb2:after {
  top: 20px;
  right: 10px;
}

.circle-17vlb2 {
  position: absolute;
  bottom: 80px;
  left: -55px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
}

.form-inner-17vlb2 {
  padding: 48px;
}
.form-inner-17vlb2 label{
  margin: 6px 0px;
  font-weight:  500;
  color:var(--cb-3);
}
.input-custom--section__part,
.textarea-custom--section__part {
  margin:  15px 0px;
  outline: none;
  border: 1px solid #ccc; 
  display: block;
  width: 100%;
  padding: 0 20px;
  margin-bottom: 15px;
  background: #E9EFF6;
  line-height:  38px;
  border-radius: 20px;
}
.input-custom--section__part:focus,
.textarea-custom--section__part:focus{
  border: 1px solid var(--cb-3); 

}

.input-2 {
  margin: 15px 0px;
  outline: none;
  border: 1px solid #ccc; 
  display: block;
  width: 100%;
  padding: 0  20px;
  margin-bottom: 15px;
  background: #E9EFF6;
  line-height:38px;
  border-radius:  20px;
}
.input-2:focus {
  border: 1px solid var(--cb-3); 

}

.textarea-custom--section__part {
  resize: none;
}

.btn-form-17vlb2{
  display: flex;
  justify-content: center;
  margin: 21px 0px;
}
@media(min-width:481px) and (max-width:1100px){
  .decor-17vlb2 {
    width: 85%;
  }
}
@media(max-width:480px) {

  .form-left-decoration-17vlb2,
  .form-right-decoration-17vlb2,
  .circle-17vlb2 {
     display: none;
  }

  .form-inner-17vlb2 {
     padding: 30px 15px;
  }
  .decor-17vlb2 {
    width: 100%;
  }
  
}

.check-color-17vlb2{
  color: var(--cb-3);
}
.privacy-link-17vlb2{
  color: var(--cb-3);

}
.privacy-link-17vlb2:hover{
  opacity: 0.6;
  color: var(--cb-3);
  

}
.box-privacy-cont-17vlb2{
  display: flex;
  align-items: center;
  gap:6px;
}

.section-footer-17vlb2 {
  padding: var(--sec-padd);
  background-color:#1c1c0e;
}
@media (min-width:576px) {
  .section-footer-17vlb2 {
    margin:  15px;
    border-radius: var(--border-r);

  }
}

.thumb-disclainer-17vlb2 {
  display: flex;
  gap: var(--gap-25-30);
  flex-wrap: wrap;
  margin-bottom:  30px;

}
@media (max-width:767px) {
  .thumb-disclainer-17vlb2 {
    flex-direction: column;
  }
}
.box-disclaimer-17vlb2 {
  flex: 1;
}
.box-img-diclaimer-17vlb2{
  align-items: center;
  margin: 0 auto;
  width: 50%;
  display: flex;
  height: 320px;
}
@media (max-width:575px) {
  .box-img-diclaimer-17vlb2{
    width: 80%;}
}
.box-img-diclaimer-17vlb2 img{
width: 100%;
height: 123px;
object-fit: contain;
}

.box-link-footer-17vlb2{
  display: flex;
  flex-wrap: wrap;
  gap:  15px;
  justify-content: center;

}
.txt-disclaimer-17vlb2{
  text-align: center;
  color: var(--white);
  font-size: clamp( 16px,4vw,18px);
  font-weight:  700;
}
.footer-links-17vlb2{
  color: var(--white);
}
.footer-links-17vlb2:hover{
  color: var(--cb-3);
}
.box-copy-17vlb2{
  display: flex;
  justify-content: center;
}
.copy-title-17vlb2{
  margin-top: 28px;
  color: var(--white);
  font-size:  14px;
}

.section-contacts-17vlb2{
  padding: var(--sec-padd);
}
.all-thumb-cont-17vlb2{
  display: flex;
  gap: var(--gap-25-30);
  flex-direction:column-reverse ;
}
.login-box {

  width:100%;
  padding: 38px;
  margin: 20px auto;

  background: var(--bg-3);
  box-sizing: border-box;
  box-shadow: 0  15px  21px var(--bg-3);
  border-radius:var(--border-r);
}

.login-box p:first-child {
  margin: 0 0 30px;
  padding: 0;
  color: var(--cb-3);
  text-align: center;
  font-size: 16px;
  font-weight:  700;
  letter-spacing: 1px;
}

.login-box .user-box {
  position: relative;
}

.login-box .user-box input {
  width: 100%;
  padding: 15px 0;
  font-size: 18px;
  color: var(--cb-3);
  margin-bottom:28px;
  border: none;
  border-bottom: 1px solid var(--cb-3);
  outline: none;
  background: transparent;
}

.login-box .user-box label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 15px 0;
  font-size: 18px;
  color: var(--cb-3);
  pointer-events: none;
  transition: .5s;
}

.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label {
  top: -20px;
  left: 0;
  color: var(--cb-3);
  font-size:  14px;
}
.btn-contacts-page-17vlb2{
  display: flex;
  justify-content: center;
}


.thumb-contacts-17vlb2 {
  display: flex;
  gap: var(--gap-25-30);
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width:992px) {
.thumb-contacts-17vlb2{
  justify-content: space-between;
}
}

.info-item-17vlb2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
transition: all 0.3s ease;
  border-radius:var(--border-r);
  background-color: var(--bg-3);
  padding:15px;
  width: 100%;
  box-shadow: 0 15px 21px var(--bg-3);
  
}
.info-item-17vlb2 a div {
  word-break: break-all;
}
.info-item-17vlb2:hover{
  transform: scale(1.05);
}
@media (min-width:575px) and (max-width:991px) {
  .info-item-17vlb2 {
    width:calc(50% - 30px);
  }
}
@media (min-width:992px) {
  .info-item-17vlb2 {
    width:calc(33.33% - 30px);
  }
}
.box-txt-cont-17vlb2{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title-conts-17vlb2{
  color: var(--white);
  font-size: clamp(16px,4vw,21px);
}
.txt-address-17vlb2 {
  text-align: center;
  color: var(--white);
}
.link-contacts-17vlb2{
  color: var(--white);
}
.link-contacts-17vlb2:hover{

  color: var(--cb-3);
}
.flex-sectionTY1{
  display: flex;
  flex-direction: column-reverse;
}
.main-igri{
   display: flex;
   gap: 31px;
  flex-direction: column-reverse;
}


.section-main-page-17vlb2{
  padding: var(--sec-padd);
  background-color: var(--bg-3);
}
@media (min-width:576px) {
  .section-main-page-17vlb2{
    margin: 15px;
    border-radius: var(--border-r);

  }
}

.thumb-img-main-17vlb2 {
 display: flex;
 align-items: center;
 justify-content: center;
 
}

.main-page-17vlb2 {
  height: 428px;
  object-fit: contain;
}
@media (max-width:575px) {
  
.main-page-17vlb2 {
  height: auto;
}
}
.txt-main-page-17vlb2 {
  color: var(--white);
}

.privacy-section-17vlb2 {
  word-break: break-all;
  padding: var(--sec-padd);
  background-color: var(--bg-3);
}
@media (min-width:576px) {
  
  .privacy-section-17vlb2{
    margin: 15px;
    border-radius: var(--border-r);

  }
}
.privacy-17vlb2 {
  color: var(--white);
  word-break: break-word;
}
.privacy-17vlb2 h1{
  font-size: clamp(24px,4vw,28px);
}

.privacy-17vlb2 ul li,
.privacy-17vlb2 ol li {
  margin-bottom: 4px;
}
.privacy-17vlb2 ul,
.privacy-17vlb2 ol {
  margin-bottom: 14px;
  padding-left:  20px;
  list-style: inside;
}
.privacy-17vlb2 a,.privacy-17vlb2 table{
color: inherit;
}
.privacy-17vlb2 p{
margin-bottom:  6px;
text-indent: 2ch;
}

.button-17vlb2-1 {
  padding: 15px  15px;
  background-color: var(--cb-3);
  color: white;
  text-decoration: none;
  font-size: 18px;
  border-radius: 1px;
  cursor:pointer;
}

.button-17vlb2-1:hover {
  opacity: 0.8;
  background-color: var(--cb-3);
}
.button-17vlb2-2 {
  cursor: pointer;
  width: fit-content;
  display: flex;
  padding:14px 20px;
  gap: 0.4rem;
  border: none;
  font-weight: bold;
  border-radius: 28px;
  cursor: pointer;
  text-shadow: 2px 2px 3px rgb(136 0 136 / 50%);
  background: linear-gradient(
      15deg,
      #ff6944,
      #039743,
      #0583F2,
      #de6f3d,
      #f09f33,
      #de6f3d,
      #e65c00,
      #039743,
      #0583F2
    )
    no-repeat;
  background-size: 300%;
  background-position: left center;
  transition: background 0.3s ease;
  color: #fff;
}

.button-17vlb2-2:hover {
  background-size: 320%;
  background-position: right center;
}

.button-17vlb2-3 {
  padding: 18px 20px;
cursor: pointer;
  border: none;
  border-radius: 48px;
  background: var(--cb-3);
  font-size:  18px;
  color: #ffffff;
  font-family: inherit;
  font-weight:500;
 }
 
 .button-17vlb2-3:hover {
  animation: shake3856 0.3s linear infinite both;
 }
 
 @keyframes shake3856 {
  0% {
   -webkit-transform: translate(0);
   transform: translate(0);
  }
 
  20% {
   -webkit-transform: translate(-2px, 2px);
   transform: translate(-2px, 2px);
  }
 
  40% {
   -webkit-transform: translate(-2px, -2px);
   transform: translate(-2px, -2px);
  }
 
  60% {
   -webkit-transform: translate(2px, 2px);
   transform: translate(2px, 2px);
  }
 
  80% {
   -webkit-transform: translate(2px, -2px);
   transform: translate(2px, -2px);
  }
 
  100% {
   -webkit-transform: translate(0);
   transform: translate(0);
  }
 }


.button-17vlb2-4 {
 padding: 15px 15px;
  font-size: 18px;
  background: var(--cb-3);
  border: none;
  border-radius: 48px;
  color: #000;
  outline: none;
  cursor: pointer;
  transition: all 0.4s;
}

.button-17vlb2-4:hover {
  box-shadow: inset 0 0 0 4px #ff6944, 
              inset 0 0 0 8px #F2B705, 
              inset 0 0 0 12px #039743,
              inset 0 0 0 16px #0583F2;
  background: #073b4c;
  color: #fff;
}
.button-17vlb2-5 {
  position: relative;
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 21px;
  display: inline-block;
  cursor: pointer;
  border-radius: 28px;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
  font-weight: 500;
  color:var(--white);
  background-color: var(--cb-3);
}

.button-17vlb2-5:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.2);
}

.button-17vlb2-5:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.button-17vlb2-5::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}

.button-17vlb2-5::after {
  background-color: var(--cb-3);
}

.button-17vlb2-5:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}