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

:root{
    --o-1: #DEC48B;
    --o-2: #D5CFBE;
    --o-3: #B2B09C;
    --o-4: #7F8379;
    --o-5: #757754;
    --accent: var(--o-2);
    --ob-1: #2d2223;
    --ob-2: #433c3a;
    --ob-3: #22272d;
    --ob-4: #222d27;
    --ob-5: #2d2922;
    --bg: var(--ob-2);
    --white: #fff;
    --black: #000;
    --transition: 0.4s ease;
}

html{
  scroll-behavior: smooth;
}

*{
  box-sizing: border-box;
  scrollbar-color: var(--accent) rgba(255, 206, 132, .1);
  scrollbar-width: thin;
}

body{
  font-family: 'Cormorant Garamond', sans-serif !important;
  font-size: 18px;
  direction: ltr;
  margin: 0;
  padding: 0;
  height: 100%;
  position: relative;
  box-sizing: border-box;
}

a{
  text-decoration: none;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.5rem;
}

ul ul, ol ul, ul ol, ol ol {
  margin-bottom: 0;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

img{
  width: 100%;
  display: block;
  box-sizing: border-box;
}

video{
  display: block;
  box-sizing: border-box;
}

h5{
  font-size: 1.1rem;
}

.module{
  padding: 100px 0;
  color: var(--white);
  background: var(--bg);
}
.modules{
  padding: 20px 0;
  color: var(--white);
  background: var(--bg);
}

.wrapper {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}

.row-2,
.row-3,
.row-4,
.row-5,
.row-6{
  display: flex;
  box-sizing: border-box;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  gap: 15px;
}

.col-10,
.col-80,
.col-30,
.col-70,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6{
  width: 100%;
  flex-grow: 1;
  box-sizing: border-box;
}

.header{
  position: relative;
  min-height: 600px;
  padding: 20px 0 160px;
  overflow: hidden;
  background-color: var(--bg);

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('visualtreasure/bg/bg-dark-0688a2f1b6b856.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.2;
  }

  .wrapper{
    position: relative;
    z-index: 2;
  }
}

.logo{
  margin-bottom: 20px;

  h1{
  color: var(--white);
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  margin: 0;
  transition: var(--transition);
 }

 &:hover h1,
 &:focus h1{
  color: var(--accent);
 }
}

.header-title{
  padding: 35px 0;
  text-align: center;
  color: var(--white);
  opacity: 0.8;
}

.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 5px;
  margin-bottom: 86px;
}

.logo-img{
  width: 70px;
  height: 70px;
  display: inline-block;
  filter: drop-shadow(2px 2px 2px #ffffffa9) drop-shadow(-2px -2px 2px #ffffffa9);
  
  img{
    transition: var(--transition);
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  &:hover img,
  &:focus img{
    transform: scale(1.1);
    filter: drop-shadow(2px 2px 2px var(--accent)) drop-shadow(-2px -2px 2px var(--accent));
  }
}

.burger-4 input[type = "checkbox"] {
  -webkit-appearance: none;
  display: none;
  visibility: hidden;
}

.burger-4 .bar {
  display: block;
  position: relative;
  cursor: pointer;
  width: 30px;
  height: 30px;
}

.burger-4 .bar span {
  position: absolute;
  width: 30px;
  height: 4.5px;
  background: var(--white);
  border-radius: 100px;
  display: inline-block;
  transition: 0.3s ease;
  left: 0;
}

.burger-4 .bar span.top {
  top: 0;
}

.burger-4 .bar span.middle {
  top: 50%;
  transform: translateY(-50%);
}

.burger-4 .bar span.bottom {
  bottom: 0;
}

.burger-4 input[type]:checked ~ span.top {
  transform: rotate(45deg);
  transform-origin: top left;
  width: 48px;
  left: 5px;
}

.burger-4 input[type]:checked ~ span.bottom {
  transform: rotate(-45deg);
  transform-origin: top left;
  width: 48px;
  bottom: -1px;
}

.burger-4 input[type]:checked ~ span.middle {
  transform: translateX(-20px);
  opacity: 0;
}

.menu{
    background: #111111b8;
    position: fixed;
    left: 50%;
    top: 0;
    display: flex;
    flex-direction: row;
    transition: var(--transition);
    gap: 15px;
    padding: 14px;
    align-items: center;
    justify-content: center;
    width: auto;
    border-radius: 8px;
    transform: translate(-50%, -100%);
}

.menu.active{
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
}

.menu-item{
  width: 60px;
  height: 60px;
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 8px;
  padding: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);

  &:hover,
  &:focus{
    color: var(--accent);
    border: 1px solid var(--accent);
  }

  svg{
    width: 40px;
    height: 40px;
  }
}

.gamers-box{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 14px;
  margin-top: 15px;
  gap: 15px;
}

.gamers-item{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 700px;
  color: var(--white);
  margin: 0 auto;
  gap: 15px;

  span{
    font-weight: 800;
  }
}

.gamers-name{
  font-weight: 700;
}

.gamers-num{
  font-size: 26px;
  font-weight: 900;
}

.gamers-accent{
  color: var(--accent);
}

.progress-bar {
  display: flex;
  width: 100%;
  height: 30px;
  border-radius: 10px;
  overflow: hidden;
  max-width: 700px;
  margin: 45px auto 0;
}
.progress {
  height: 100%;
}
.progress.accent {
  background-color: var(--accent);
}
.progress.white {
  background-color: white;
}

.title{
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}

.main1{
  background: url('visualtreasure/bg/opacity_bg-0688a2f1b6b931.png'), var(--bg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}

.main1-link{
  position: relative;
  width: 100%;
  height: 300px;
  display: inline-block;
  padding: 14px;
  margin-bottom: 15px;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border: 1px solid var(--white);
    border-radius: 10px;
    transition: var(--transition);
  }

  &::after{
    position: absolute;
    content: '';
    top: 14px;
    left: 14px;
    bottom: 14px;
    right: 14px;
    border: 1px solid var(--white);
    border-radius: 10px;
    transition: var(--transition);
  }

  &:hover::after,
  &:focus::after{
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    opacity: 0;
  }
  &:hover::before,
  &:focus::before{
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    opacity: 0;
  }
}

.main1-title{
  color: var(--white);
  font-weight: 700;
  text-align: center;
  font-size: 20px;
  display: inline-block;
  transition: var(--transition);
  width: 100%;

  &:hover,
  &:focus{
    color: var(--accent);
  }
}

.main1-content{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1111119a;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 15px;

  p{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    color: var(--white);
    text-align: center;
  }
}

#main1{
  display: block;
}

.main2{
  direction: ltr;
  background: url('visualtreasure/bg/opacity_bg-0688a2f1b6b931.png'), var(--bg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}

.main2-box{
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--white);
  box-shadow: 4px 4px 0px 0 var(--accent); 
}

.main2-img-wr{
  width: 100%;
  height: 300px;
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  clip-path: polygon(82% 0, 0 0, 0 100%);
  transition: var(--transition);
  filter: saturate(0.3);

  &:hover,
  &:focus{
    filter: saturate(1);
  }
}

.main2-img{
  width: 100%;
  height: 300px;

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

.main2-desc{
  clip-path: polygon(82% 0, 100% 0, 100% 100%, 0% 100%);
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: end;
  justify-content: end;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background-color: #01010161;
}

.main2-content{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: var(--white);
  text-align: center;
  max-width: 200px;
  margin-left: auto;
  margin-top: 0;
  margin-bottom: 0;
}

.main2-title{
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  transition: var(--transition);

  &:hover,
  &:focus{
    color: var(--accent);
  }
}

.comments-wrapper{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 14px;
}

.commnets-item{
  width: 100%;
  display: flex;
  height: min-content;
  flex-grow: 1;
  flex-direction: column-reverse;
  gap: 14px;
}

.comment-box{
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid var(--white);
  box-shadow: 4px 4px 0px 0 var(--accent); 
  transition: var(--transition);

  &:hover,
  &:focus{
    transform: scale(1.02);
    box-shadow: 1px 1px 0px 0 var(--accent); 
  }
}

.author-box{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 14px;
}

.author-img{
  width: 45px;
  height: 45px;

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

.rating{
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  color: var(--accent);
}

.muted{
  display: block;
}

#au{
  direction: ltr;
  box-shadow: -12px -8px 40px 0px rgba(152,152,152,0.12) inset;
}

.au-img{
  width: 100%;
  height: 300px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.au-box{
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 15px;
}


.au-wr{
  width: 100%;
  min-height: 300px;
}

.au-img-wr{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#form{
  direction: ltr;
  position: relative;
  box-shadow: -12px -8px 40px 0px rgba(152,152,152,0.12) inset;
}

.form{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-page-form-item{
  width: 100%;
}
.contact-page-form-item > input::placeholder,
.contact-page-form-item > textarea::placeholder,
.input-usercomponent--control::placeholder,
.textarea-usercomponent--control::placeholder{
  color: white;
}

.contact-page-form-item > input,
.contact-page-form-item > textarea,
.input-usercomponent--control,
.textarea-usercomponent--control{
  color: #fff;
  width: 100%;
  background-color: transparent;
  border-radius: 10px;
  border: 1px solid var(--white);
  box-shadow: 4px 4px 0px 0 var(--accent); 
  padding: 15px;
  transition: var(--transition);

  &:hover,
  &:focus{
    transform: scale(1.02);
    box-shadow: 1px 1px 0px 0 var(--accent); 
  }
}

.privacy{
  color: var(--white);
  display: inline-block;
  transition: var(--transition);

  &:hover,
  &:focus{
    color: var(--accent);
  }
}

.liders{
  direction: ltr;
  position: relative;
  box-shadow: -12px -8px 40px 0px rgba(152,152,152,0.12) inset;
}

.liders-list{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.liders-item{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid var(--white);
  box-shadow: 4px 4px 0px 0 var(--accent); 
  transition: var(--transition);

  &:hover,
  &:focus{
    transform: scale(1.02);
    box-shadow: 1px 1px 0px 0 var(--accent); 
  }
}

.liders-img{
  width: 45px;
  height: 45px;

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

.benefits{
  background: url('visualtreasure/bg/opacity_bg-2688a2f1b6b94d.png'), var(--bg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}

.ben-box{
  border-radius: 10px;
  border: 1px solid var(--white);
  text-align: center;
  box-shadow: 4px 4px 0px 0 var(--accent); 
  padding: 15px;
  transition: var(--transition);

  &:hover,
  &:focus{
    transform: scale(1.02);
    box-shadow: 1px 1px 0px 0 var(--accent); 
  }
}

.ben-img{
  width: 150px;
  height: 150px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.ben-img-1 img{
  animation: rubberBand 10s infinite;
  animation-delay: 2s;
}

.ben-img-2 img{
  animation: shake 10s infinite;
  animation-delay: 4s;
}

.ben-img-3 img{
  animation: swing 10s infinite;
  animation-delay: 6s;
}

.ben-img-4 img{
  animation: tada 10s infinite;
  animation-delay: 8s;
}

.ben-col{
  display: flex;
  align-items: center;
  justify-content: center;
}

.ben-wr{
  border-radius: 10px;
  padding: 15px;
  box-shadow: -12px -8px 40px 0px rgba(152,152,152,0.12) inset;
}

.footer{
  color: var(--white);
  position: relative;
  padding: 50px 0 28px;
  overflow: hidden;
  background-color: var(--black);

  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('visualtreasure/bg/bg-dark-0688a2f1b6b856.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.1;
  }

  .wrapper{
    position: relative;
    z-index: 2;
  }
}

.disclaimer-img{
  width: 100px;
  height: 100px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.disclaimer-wr{
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  border: 1px solid var(--white);
  text-align: center;
  background-color: rgba(163, 152, 152, 0.301);
  box-shadow: 4px 4px 0px 0 var(--accent); 
  padding: 15px;
  animation: discl 5s linear infinite;
  margin-bottom: 50px;
}

.disclaimer-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-nav{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.footer-item{
  text-align: center;

  a{
    color: var(--white);
    transition: var(--transition);
    text-align: center;

    &:hover,
    &:focus{
      color: var(--accent);
    }
  }
}

.copyright{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 15px;

  p{
    color: #ffffff92;
    margin: 0;
  }
}

.btn-up {
  position: fixed;
  background-color: transparent;
  border: 1px solid var(--white);
  right: 20px;
  bottom: 20px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  transition: 0.5s;
  z-index: 3;
}

.btn-up::before {
  content: "";
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/%3E%3C/svg%3E");
}

.btn-up_hide {
  display: none;
}

.btn-up:hover {
  transform: translateY(-5px);
  background-color: var(--accent);
}

.contact-module{
  background: url('visualtreasure/bg/opacity_bg-2688a2f1b6b94d.png'), var(--bg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}

.contact-box{
  border-radius: 10px;
  border: 1px solid var(--white);
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 0px 0 var(--accent); 
  padding: 15px;
  transition: var(--transition);

  &:hover,
  &:focus{
    transform: scale(1.02);
    box-shadow: 1px 1px 0px 0 var(--accent); 
  }

  a{
    color: var(--white);
    word-break: break-all;
    transition: var(--transition);

    &:hover,
    &:focus{
      color: var(--accent);
    }
  }
}

.box-iframe{
  width: 100%;
  height: 100vh;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--white);
  box-shadow: 4px 4px 0px 0 var(--accent); 
  margin-bottom: 15px;

  iframe{
    width: 100%;
    height: 100vh;
    border: none;
    object-fit: cover;
  }
}
.footer-linkImg {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}

.footer-linkImg a img {
  max-height: 50px;
  width: auto;
  display: block;
  box-sizing: content-box;
}
@media (max-width: 575px){
  .footer-linkImg a img{
        max-height: 30px;
  }}
.page-img-wr{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.page-img{
  width: 100%;
  height: auto;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

@media (max-width: 479px){
  .menu.active{
    top: 120px;
  }

  .menu{
    gap: 14px;
  }

  .menu-item{
    width: 50px;
    height: 50px;

    svg{
      width: 35px;
      height: 35px;
    }
  }

  .main2-content{
    display: none;
  }
}


@media (min-width: 480px) {
  .logo h1{
    font-size: 24px;
  }
}

@media (min-width: 576px) {
  .row-5{
    flex-direction: row-reverse;
  }

  .col-5{
    width: calc(50% - 15px);
  }
  .row-6{
    flex-direction: row-reverse;
  }

  .col-6{
    width: calc(50% - 15px);
  }

  .logo h1{
    font-size: 26px;
  }

  .title{
    font-size: 26px;
  }

  .main1-title,
  .main2-title{
    font-size: 22px;
  }

  .main2-content{
    max-width: 300px;
  }

  .comments-wrapper{
    flex-direction: row;
  }

  .commnets-item{
    width: calc(50% - 14px);
  }

  .page-img{
    height: 300px;
  }
}

@media (min-width: 768px){
  .row-2,
  .row-3,
  .row-4{
    flex-direction: row-reverse;
  }

  .col-2,
  .col-3,
  .col-4{
    width: calc(50% - 15px);
  }
 
  .col-5{
    width: calc(33.333% - 15px);
  }

  .col-6{
    width: calc(33.333% - 15px);
  }

  .logo h1{
    font-size: 32px;
  }

  .title{
    font-size: 32px;
  }

  .main1-title{
    font-size: 24px;
  }

  .main1-content{
    opacity: 0;
    transition: var(--transition);
    transform: scale(0);
  }

  .main1-link:hover,
  .main1-link:focus{
    .main1-content{
      opacity: 1;
      transform: scale(1);
    }
  }
  
  .main2-content{
    max-width: 220px;
    text-align: end;
  }

  .main2-title{
    max-width: 200px;
    text-align: end;
  }

  .comments-wrapper{
    flex-direction: row;
  }

  .commnets-item{
    width: calc(33.33% - 14px);
  }

  .au-row{
    flex-direction: row;
  }

  #form{
    .row-2{
      flex-direction: row;
    }

    &::before{
      position: absolute;
      content: '';
      top: 0;
      right: 0;
      width: 48%;
      height: 100%;
      background: url('visualtreasure/bg/bg-dark-2688a2f1b6b87b.jpg');
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      animation: backgroundFadeForm 10s infinite;
    }
  }

  .liders{
    .row-2{
      flex-direction: row;
    }
  }

  #au{
    position: relative;

    &::before{
      position: absolute;
      content: '';
      top: 0;
      left: 0;
      width: 48%;
      height: 100%;
      background: url('visualtreasure/bg/bg-dark-0688a2f1b6b856.jpg');
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      animation: backgroundFade 10s infinite;
    }
  }

  .au-wr{
    padding: 50px 28px;
  }

  .header::before{
    background-size: 100% 100%;
    animation: header 10s linear;
  }

  .liders{
  &::before{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 48%;
    height: 100%;
    background: url('visualtreasure/bg/bg-dark-4688a2f1b6b89c.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    animation: backgroundFadeLiders 10s infinite;
  }
}

  .page-img{
    height: 350px;
  }

}

@media (min-width: 992px){
  .wrapper{
    padding: 0 35px;
  }
  .col-3{
    width: calc(33.333% - 15px);
  }

  .col-4{
    width: calc(25% - 15px);
  }

  .col-5{
    width: calc(20% - 15px);
  }

  .col-6{
    width: calc(20% - 15px);
  }

  .col-80{
    width: calc(80% - 15px);
  }

  .col-10{
    width: calc(10% - 15px);
  }

  .logo h1{
    font-size: 46px;
  }

  .title{
    font-size: 36px;
  }

  .main1-title{
    font-size: 26px;
  }
  .main2-title{
    font-size: 24px;
  }

  .main2-content{
    max-width: 300px;
  }

  .main2-title{
    max-width: 250px;
  }

  .page-img{
    height: 400px;
  }
}


@media (min-width: 1200px){
  .wrapper {
    max-width: 1170px;
  }

  .col-6{
    width: calc((100% / 6) - 15px);
  }

  .logo h1{
    font-size: 58px;
  }

  .title{
    font-size: 42px;
  }

  .page-img{
    height: 450px;
  }
}

.btn-box{
  position: relative;
  z-index: 1;
  text-align: center;
}

.button{
  cursor: pointer;
  display: inline-block;
}

.button-1,
.button-2,
.button-3,
.button-4{
  .background{
    display: none;
  }
}

.button-1 {
  display: inline-flex;
  align-items: center;
  font-family: inherit;
  cursor: pointer;
  font-weight: 700;
  padding: 20px;
  color: white;
  background: #DEC48B;
  background: linear-gradient(
    0deg,
    rgb(167, 120, 20) 0%,
    rgb(247, 237, 102) 100%
  );
  border: none;
  box-shadow: 0 0.7em 1.5em -0.5em #a79b1498;
  letter-spacing: 0.05em;
  border-radius: 20em;
}


.button-1:hover {
  box-shadow: 0 0.5em 1.5em -0.5em #a7911498;
}


.button-2 {
  position: relative;
  border: none;
  background: var(--accent);
  color: var(--white);
  padding: 17px 19px;
  font-weight: bold;
  text-transform: uppercase;
  transition: 0.2s;
  border-radius: 5px;
  opacity: 0.8;
  letter-spacing: 1px;
  box-shadow: #59554a 0px 7px 2px, #000 0px 8px 5px;
}

.button-2:hover {
  opacity: 1;
}


.button-3 {
  cursor: pointer;
  position: relative;
  padding: 10px 24px;
  font-size: 18px;
  color: var(--accent);
  border: 2px solid var(--accent);
  background-color: transparent;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
}

.button-3::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: var(--accent);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.button-3:hover::before {
  scale: 3;
}

.button-3:hover {
  color: #212121;
  scale: 1.1;
  box-shadow: 0 0px 20px rgba(117, 113, 103, 0.4);
}

.button-4 {
  --black: #000000;
  --ch-black: #141414;
  --eer-black: #1b1b1b;
  --night-rider: #2e2e2e;
  --white: #ffffff;
  --af-white: #f3f3f3;
  --ch-white: #e1e1e1;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 15px;
  border: none;
  color: white;
  position: relative;
  cursor: pointer;
  font-weight: 700;
  transition-duration: .2s;
  background-color: var(--ch-black);
}

.button-4:before, .button-4:after {
  content: '';
  position: absolute;
  left: -2px;
  top: -2px;
  border-radius: 10px;
  background: linear-gradient(45deg, 
  var(--ch-black), var(--eer-black),
  var(--night-rider), var(--ch-white), var(--night-rider), 
	var(--eer-black), var(--ch-black),var(--ch-black));
  background-size: 400%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  z-index: -1;
  animation: steam 20s linear infinite;
}

.button:after {
  filter: blur(50px);
}

.button-5 {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #757754, #999a81); 
  color: white;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 1.5rem;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s, box-shadow 0.5s;
  border: none;
  cursor: pointer;
  padding: 15px 17px;
}

.button-5:hover {
  transform: scale(1.1) rotate(3deg) skewX(12deg);
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
}

.button-5 .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #b1b384;
  z-index: 0;
}

.button-5 .text {
  position: relative;
  z-index: 10;
}
.privacy-box {
  word-break: break-all;
}

@keyframes rubberBand {
  0% {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  }
  3% {
  -webkit-transform: scale3d(1.25, 0.75, 1);
  transform: scale3d(1.25, 0.75, 1);
  }
  4% {
  -webkit-transform: scale3d(0.75, 1.25, 1);
  transform: scale3d(0.75, 1.25, 1);
  }
  5% {
  -webkit-transform: scale3d(1.15, 0.85, 1);
  transform: scale3d(1.15, 0.85, 1);
  }
  6% {
  -webkit-transform: scale3d(.95, 1.05, 1);
  transform: scale3d(.95, 1.05, 1);
  }
  7% {
  -webkit-transform: scale3d(1.05, .95, 1);
  transform: scale3d(1.05, .95, 1);
  }
  10% {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  }
  100%{
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

} 

@keyframes shake {
  0%, 10%, 100% {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  }
  1%, 3%, 5%, 7%, 9% {
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0);
  }
  2%, 4%, 6%, 8% {
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0);
  }
  } 

  @keyframes swing {
    2% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
    }
    4% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
    }
    6% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
    }
    8% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
    }
    10% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    }
    100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
    }
  }
  
    @keyframes tada {
      0% {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
      }
      1%, 2% {
      -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
      transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
      }
      3%, 5%, 7%, 9% {
      -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
      transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
      }
      4%, 6%, 8% {
      -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
      transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
      }
      10% {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
      }
      100% {
      -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
      }
      } 

      @keyframes backgroundFadeLiders {
        0% {
          background: url('visualtreasure/bg/bg-dark-4688a2f1b6b89c.jpg');
          background-repeat: no-repeat;
          background-position: center;
          background-size: cover;
        }
        50% {
          background: url('visualtreasure/bg/bg-dark-6688a2f1b6b8bb.jpg');
          background-repeat: no-repeat;
          background-position: center;
          background-size: cover;
        }
        100% {
          background: url('visualtreasure/bg/bg-dark-4688a2f1b6b89c.jpg');
          background-repeat: no-repeat;
          background-position: center;
          background-size: cover;
        }
      }

      @keyframes steam {
        0% {
          background-position: 0 0;
        }
      
        50% {
          background-position: 400% 0;
        }
      
        100% {
          background-position: 0 0;
        }
      }

      @keyframes backgroundFade {
        0% {
          background: url('visualtreasure/bg/bg-dark-0688a2f1b6b856.jpg');
          background-repeat: no-repeat;
          background-position: center;
          background-size: cover;
        }
        50% {
          background: url('visualtreasure/bg/bg-dark-2688a2f1b6b87b.jpg');
          background-repeat: no-repeat;
          background-position: center;
          background-size: cover;
        }
        100% {
          background: url('visualtreasure/bg/bg-dark-0688a2f1b6b856.jpg');
          background-repeat: no-repeat;
          background-position: center;
          background-size: cover;
        }
      }

      @keyframes backgroundFadeForm {
        0% {
          background: url('visualtreasure/bg/bg-dark-2688a2f1b6b87b.jpg');
          background-repeat: no-repeat;
          background-position: center;
          background-size: cover;
        }
        50% {
          background: url('visualtreasure/bg/bg-dark-4688a2f1b6b89c.jpg');
          background-repeat: no-repeat;
          background-position: center;
          background-size: cover;
        }
        100% {
          background: url('visualtreasure/bg/bg-dark-2688a2f1b6b87b.jpg');
          background-repeat: no-repeat;
          background-position: center;
          background-size: cover;
        }
      }

      @keyframes header {
        0%{
          background-size: 130% 100%;
        }
        100%{
          background-size: 100% 100%;
        }
      }

      @keyframes discl {
        0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        }
        10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        }
        30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        }
        40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        }
        100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        }
      } 