@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Tokyo+Zoo&display=swap');

:root{
  --o-1: #9e2bb9;
  --o-2: #b92b7b;
  --o-3: #b92b2b;
  --o-4: #2bb934;
  --o-5: #2b91b9;
  --accent: var(--o-1);
  --o1-1: linear-gradient(90deg, #e039fdd8 20%, #6345EDd8 100%);
  --o1-2: linear-gradient(90deg, #fd39c9d8 20%, #dc45edd8 100%);
  --o1-3: linear-gradient(90deg, #fd3939d8 20%, #ed6945d8 100%);
  --o1-4: linear-gradient(90deg, #39fd49d8 20%, #45ed96d8 100%);
  --o1-5: linear-gradient(90deg, #39e9fdd8 20%, #459cedd8 100%);
  --bg: var(--o1-1);
  --white: #fff;
  --black: #000000;
  --transition: 0.4s ease;
}

html{
  scroll-behavior: smooth;
}

*{
  box-sizing: border-box;
}

body{
  font-family: 'Kanit', sans-serif !important;
  font-size: 17px;
  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: 70px 0;
  background-color: var(--black);
  color: var(--white);
}

.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-30,
.col-70,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6{
  width: 100%;
  flex-grow: 1;
  box-sizing: border-box;
}

.title{
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Zen Tokyo Zoo', sans-serif;
  color: var(--accent);
  transition: var(--transition);
  text-align: center;
  margin-bottom: 28px;
}

.header-wr{
  position: relative;
  background-color: var(--black);
}

.header{
  direction: ltr;
  min-height: 700px;
  overflow: hidden;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
  z-index: 2;
  opacity: 1;
  padding: 300px 0 100px;

  .row-2{
    position: relative;
    z-index: 3;
    flex-direction: row !important;
  }
}

.banner-img{
  display: none;
}


.nav{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  background: var(--bg);
  border-bottom: 1px solid var(--white);
  padding: 15px 0;
}

.nav-wr{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 13px;
}

.logo{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;

  img{
    width: 60px;
    height: 60px;
    object-fit: contain;
  }

  h1{
    color: var(--white);
    margin: 0;
    text-align: center;
    transition: var(--transition);
    font-weight: 500;
    font-family: 'Zen Tokyo Zoo', sans-serif;
  }

  &:hover h1,
  &:focus h1{
    color: var(--accent);
    text-shadow: 1px 1px 5px #ffffffd2, -1px -1px 5px #ffffffd2;
  }
}

.menu-list{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.menu-item{
  a{
    color: var(--white);
    transition: var(--transition);
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Zen Tokyo Zoo', sans-serif;

    &:hover,
    &:focus{
      color: var(--accent);
      text-shadow: 1px 1px 5px #ffffffd2, -1px -1px 5px #ffffffd2;
    }
  }
}

.head-title-box{
  min-height: 500px;
  background: var(--bg);
  border-radius: 0 30% 30% 0;
  border: 1px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 15px;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-right: 50px;
}

.head-text{
  color: var(--white);
  font-weight: 700;
  font-size: 26px;
  text-align: center;
}

.au{
  .row-2{
    row-gap: 50px;
  }
}

.au-img-wr{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.au-img{
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  height: 400px;
  padding: 15px;
  filter: drop-shadow(3px 5px 15px var(--accent));
  background-color: var(--black);
  border-radius: 30px;
  transition: var(--transition);

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  &:hover,
  &:focus{
    transform: scale(1.03);
  }
}

.au-box{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}

.au-img-sm{
  position: absolute;
  bottom: -25px;
  left: 45px;
  background-color: var(--black);
  border-radius: 30px;
  width: 200px;
  height: 200px;
  padding: 15px;
  filter: drop-shadow(3px 5px 15px var(--accent));
  transition: var(--transition);

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  &:hover,
  &:focus{
    transform: scale(1.03);
  }
}

.au-img-sm2{
  position: absolute;
  bottom: 55px;
  right: 35px;
  background-color: var(--black);
  border-radius: 30px;
  width: 150px;
  height: 150px;
  padding: 15px;
  filter: drop-shadow(3px 5px 15px var(--accent));
  transition: var(--transition);

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  &:hover,
  &:focus{
    transform: scale(1.03);
  }
}

.main1{
  background-image: var(--bg);

  .title{
    color: var(--white);
  }
}

.game1-box{
  background-color: var(--black);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 15px;
  padding: 15px;
}

.game1-img{
  width: 100%;
  height: 200px;
  display: inline-block;
  transition: var(--transition);

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
  }

  &:hover,
  &:focus{
    filter: drop-shadow(3px 5px 15px var(--accent));
  }
}

.main1-title{
  color: var(--white);
  font-weight: 700;
  text-align: center;
  font-size: 22px;
  transition: var(--transition);

  &:hover,
  &:focus{
    color: var(--accent);
  }
}

.main1-content{
  text-align: center;
}

#main1{
  display: none;
}

.delimeter{
  background: var(--black);
  background: radial-gradient(circle, var(--accent) 0%, var(--black) 85%);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  margin: 0 auto;
  height: 4px;
  animation: delimeter 3s linear infinite;
}
.delimeter-bt{
  background: var(--black);
  background: radial-gradient(circle, var(--accent) 0%, var(--black) 85%);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  margin: 0 auto;
  height: 4px;
  animation: delimeter 3s linear infinite;
}

.main2{
  position: relative;

  .row-2:nth-child(even){
    .main2-img{
      border-radius: 0 150px 150px 0;
    }

    .main2-desc{
      border-radius: 150px 0 0 150px;
    }
  }

  .row-2:nth-child(odd){
    .main2-img{
      border-radius: 150px 0 0 150px;
    }
    
    .main2-desc{
      border-radius: 0 150px 150px 0;
    }
  }
}

.main2-wr{
  display: flex;
  gap: 15px;
  flex-direction: column-reverse;
}

.main2-img{
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: inline-block;
  border: 1px solid var(--white);
  transition: var(--transition);

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  &:hover,
  &:focus{
    filter: drop-shadow(3px 5px 15px var(--accent));
  }
}

.main2-desc{
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--white);
  background-image: var(--bg);
  gap: 15px;
  padding: 15px;
}

.main2-title{
  display: inline-block;
  text-align: center;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  transition: var(--transition);
  font-family: 'Zen Tokyo Zoo', sans-serif;

  &:hover,
  &:focus{
    color: var(--black);
  }
}

.main2-content{
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.hp-list{
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.hp-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.step-games{
  direction: ltr;
}

.hp-step{
  transition: var(--transition);
  border-radius: 30px;
  height: 70px;
  width: 70px;
  background: radial-gradient(circle, var(--black) 24%, var(--accent) 90%);
  color: var(--white);
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  position: relative;
  z-index: 2;
}

.benefits{
  position: relative;
}

.ben-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 15px;
  gap: 15px;

  &:hover .ben-img,
  &:focus .ben-img{
    transform: translateY(-5px);
    filter: drop-shadow(3px 5px 15px var(--accent));
  }
}

.hp-text{
  margin-left: 15px;
}

.ben-img{
  width: 150px;
  height: 150px;
  background: var(--bg);
  border-radius: 100%;
  overflow: hidden;
  padding: 15px;
  transition: var(--transition);

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.ben-text{
  text-align: center;
}

.column{
  display: flex;
  flex-direction: column-reverse;
}


#gallery{
  direction: ltr !important;
  position: relative;
}

 .modal {
  display: none;
  position: fixed;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.9);
}

.modal-content{
  position: relative;
  padding: 0 30px;
  display: block;
  width: 100%;
  max-width: 700px;
  height: 400px;
  border-radius: 30px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(3px 5px 15px var(--accent));
  
  img{
    padding: 3px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
  }
}

.modal-content {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: translate(-50%, -50%) scale(0);
  }
  to {
    transform: translate(-50%, -50%) scale(1);
  }
}

.close {
  position: absolute;
  top: 10px;
  right: 40px;
  color: #f1f1f1;
  background-color: var(--black);
  font-size: 20px;
  font-weight: bold;
  transition: 0.3s;
  border-radius: 50%;
  padding: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close:hover,
.close:focus {
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
}

.prevImg,
.nextImg {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: var(--white);
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.nextImg {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prevImg:hover,
.nextImg:hover {
  color: var(--accent);
}

.gallery-img{
  cursor: pointer;
  border-radius: 30px;
  overflow: hidden;
  background-color: var(--black);
  filter: drop-shadow(3px 5px 15px var(--accent));

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }

  &:hover img,
  &:focus img{
    transform: scale(1.04);
  }
}

.gallery-wr{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.gallery-big{
  width: calc(100% / 5 - 10px);
  height: 250px;
}

.gsm-1{
  width: calc(100% / 5 - 10px);
  height: 250px;
}
.gsm-2{
  width: calc(100% / 5 - 10px);
  height: 250px;
}
.gsm-3{
  width: calc(100% / 5 - 10px);
  height: 250px;
}
.gsm-4{
  width: calc(100% / 5 - 10px);
  height: 250px;
}

.form-module{
  background: url('imagevault/background/bg-all-067c57dc2334ac.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  .title{
    color: var(--white);
  }
}

.form{
  width: 100%;
  margin: 0 auto;
  border-radius: 30px;
  border: 1px solid var(--white);
  background: var(--bg);
  display: flex;
  color: var(--white);
  flex-direction: column;
  gap: 15px;
  padding: 28px;
}

.contact-page-form-item{
  width: 100%;
}

.contact-page-form-item > input,
.contact-page-form-item > textarea,
.input-form--box_control,
.textarea-form--box_control{
  width: 100%;
  background-color: var(--bg);
  border-radius: 30px;
  padding: 15px 18px;
  outline: none;
  transition: var(--transition);
  border: 1px solid var(--white);

  &:hover,
  &:focus{
    box-shadow: 4px 4px 10px var(--white), -4px -4px 10px var(--white);
  }

  &::placeholder{
    color: #ffffff93;
  }
}

.privacy{
  color: var(--white);
  transition: var(--transition);
  display: inline-block;

  &:hover,
  &:focus{
    color: var(--black);
  }
}

.footer{
  background-color: var(--black);
  color: var(--white);
  position: relative;
  padding: 28px 0;
}

.disclaimer-wr{
  background: var(--bg);
  border-radius: 30px;
  border: px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  padding: 28px;
  animation: shake 5s linear infinite;
  margin-bottom: 28px;

  .title{
    color: var(--white);
  }
}

.disclaimer-img{
  width: 100px;
  height: 100px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.disclaimer-text{
  text-align: center;
  margin: 0;
}

.footer-list{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
  gap: 15px;
}

.footer-item{
  text-align: center;

  a{
    color: var(--white);
    transition: var(--transition);
    text-align: center;
    text-transform: uppercase;
    
    &:hover,
    &:focus{
      color: var(--accent);
    }
  }
}

.copyright{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px;

  p{
    margin: 0;
    color: #ffffff94;
  }
}

.contact-item{
  width: 100%;
  min-height: 200px;
  border-radius: 30px;
  background-color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(3px 3px 10px var(--accent));
  padding: 15px;

  a{
    color: var(--white);
    text-align: center;
    word-break: break-all;
    transition: var(--transition);
    font-weight: 700;
    font-size: 22px;

    &:hover,
    &:focus{
      color: var(--accent);
    }
  }
}

.adres{
  text-align: center;
  color: var(--white);
  font-size: 22px;
}

.contact-row{
  margin-bottom: 28px;
}

.privacy-module,
.page-module{
  position: relative;
}

.privacy-content{
  overflow: hidden;
  word-break: break-all;
}

.box-iframe{
  width: 100%;
  height: 400px;
  margin-bottom: 28px;

  iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 10px solid var(--accent);
    border-radius: 30px;
  }
}

.page-img{
  width: 100%;
  height: auto;
  background-color: var(--black);
  border-radius: 30px;
  padding: 15px;
  filter: drop-shadow(3px 3px 10px var(--accent));
  margin-bottom: 28px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

@media (max-width: 479px){
  .au-img-sm,
  .au-img-sm2{
    display: none;
  }
}

@media (min-width: 480px){
  .row-5{
    flex-direction: row;
  }

  .col-5{
    width: calc(50% - 15px);
  }

  .hp-item{
    flex-direction: row;
    gap: 30px;
  }
  
  .hpi-1{
    margin-left: 45px;
  }
  
  .hpi-2{
    margin-left: -5px;
  }

  .hpi-3{
    margin-left: 40px;  
  }

  .hpi-4{
    margin-left: -5px;
  }
}

@media (min-width: 480px) and (max-width: 575px){
  .au-img{
    max-width: 300px;
  }

  .au-img-sm{
    left: 0;
  }
}

@media (min-width: 576px) {
  .col-5{
    width: calc(50% - 15px);
  }
  .row-6{
    flex-direction: row;
  }

  .col-6{
    width: calc(50% - 15px);
  }

  .title{
    font-size: 28px;
  }

 .logo{
  flex-direction: row;
 }

 .header{
  padding-top: 200px;
 }

 .head-title-box{
    border-radius: 0 150px 150px 0;
    padding-top: 120px;
    padding-bottom: 120px;
    padding-right: 120px;
 }

 .main2-title{
  font-size: 26px;
 }

 .hp-step{
    &::after{
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    top: 50%;
    right: -15px;
    border-bottom: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    transform: translateY(-50%) rotate(315deg);
  }
 }

}

@media (max-width: 767px){
  .main2{
    .row-2{
      flex-wrap: nowrap;
      column-gap: 4px;
      flex-direction: row !important;
    }

    .col-30{
      width: 30%;
    }

    .col-70{
      width: 70%;
    }

    .row-2:nth-child(even){
      .main2-img{
        border-radius: 0 50px 50px 0;
      }

      .main2-desc{
        border-radius: 30px 0 0 30px;
      }
    }

    .row-2:nth-child(odd){
      .main2-img{
        border-radius: 50px 0 0 50px;
      }
      
      .main2-desc{
        border-radius: 0 30px 30px 0;
      }
    }
  }
}

@media (min-width: 768px){
  .row-2,
  .row-3,
  .row-4{
    flex-direction: row;
  }

  .col-2,
  .col-3,
  .col-4{
    width: calc(50% - 15px);
  }
 
  .col-5{
    width: calc(33.333% - 15px);
  }

  .col-6{
    width: calc(33.333% - 15px);
  }

  .col-30{
    width: calc(30% - 15px);
  }

  .col-70{
    width: calc(70% - 15px);
  }

  .module{
    padding: 100px 0;
  }

  .title{
    font-size: 32px;
  }

  .nav-wr{
    justify-content: space-between;
  }

  .main2-title{
  font-size: 28px;
 }

 .hp-step{
  width: 90px;
  height: 90px;
 }

 .banner-img{
    display: block;
    width: 200px;
    height: 200px;
    border-radius: 30px;
    background-color: var(--black);
    padding: 15px;
    filter: drop-shadow(3px 3px 10px var(--accent));
    position: absolute;
    bottom: 50px;
    right: 20px;
    animation: dice-animation 2s cubic-bezier(0.25, 1, 0.5, 1) forwards infinite;

    img{
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }

  .page-img{
    height: 400px;
  }
}



@media (min-width: 992px){
  .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);
  }

  .title{
    font-size: 38px;
  }

  .main2-desc,
  .main2-img{
    height: 200px;
  }

  .main2-content{
    -webkit-line-clamp: 3;
  }

  .gallery-wr{
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
}

.gallery-big{
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  height: 400px;
}

.gsm-1{
  position: absolute;
  width: 200px;
  height: 200px;
  top: 88px;
  left: 57px;
}
.gsm-2{
  position: absolute;
  width: 250px;
  height: 150px;
  bottom: 25px;
  left: 0px;
}
.gsm-3{
  position: absolute;
  width: 170px;
  height: 170px;
  top: -10px;
  right: 35px;
}
.gsm-4{
  position: absolute;
  width: 300px;
  height: 300px;
  bottom: 15px;
  right: 0px;
}

.banner-img{
  right: 50px;
}
}


@media (min-width: 1200px){
  .wrapper {
    max-width: 1300px;
  }

  .title{
    font-size: 46px;
  }
}

.btn-box{
  position: relative;
  z-index: 1;
  text-align: center;
}

.button{
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 2;
}

.button-1{
  background-color: var(--black);
  color: var(--white);
  padding: 17px 20px;
  border: none;
  transition: var(--transition);

  &:hover,
  &:focus{
    transform: translateY(-5px);
    filter: drop-shadow(3px 5px 15px var(--accent));
  }
}

.button-2{
  background-color: var(--white);
  color: var(--accent);
  padding: 18px 22px;
  border: 1px solid var(--accent);
  transition: var(--transition);

  &:hover,
  &:focus{
    background-color: var(--accent);
    border: 1px solid var(--white);
    color: var(--white);
  }
}

.button-3{
  background-color: var(--white);
  color: var(--accent);
  padding: 18px 22px;
  border: none;
  font-weight: 800;
  text-transform: uppercase;
  transition: var(--transition);
  border-radius: 30px;

  &:hover,
  &:focus{
    border-radius: 0px;
    box-shadow: 0px -25px 20px -20px rgba(0, 0, 0, 0.45), 25px 0 20px -20px rgba(0, 0, 0, 0.45), 0px 25px 20px -20px rgba(0, 0, 0, 0.45), -25px 0 20px -20px rgba(0, 0, 0, 0.45);
  }
}

.button-4 {
 display: inline-block;
 padding: 0.9rem 1.8rem;
 font-weight: 700;
 color: white;
 border: 3px solid var(--accent);
 cursor: pointer;
 position: relative;
 background-color: transparent;
 text-decoration: none;
 overflow: hidden;
 z-index: 1;
}

.button-4::before {
 content: "";
 position: absolute;
 left: 0;
 top: 0;
 width: 100%;
 height: 100%;
 background: var(--accent);
 transform: translateX(-100%);
 transition: all .3s;
 z-index: -1;
}

.button-4:hover::before {
 transform: translateX(0);
}

.button-5 {
  color: var(--black);
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--black);
  padding: 10px 20px;
  font-size: 17px;
  cursor: pointer;
  font-weight: bold;
  background: transparent;
  position: relative;
  transition: all 1s;
  overflow: hidden;
}

.button-5:hover {
  color: white;
}

.button-5::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color: var(--black);
  z-index: -1;
  transition: all 1s;
}

.button-5:hover::before {
  width: 160%;
}

@keyframes delimeter{
  0%{
    width: 100%;
  }
  50%{
    width: 60%;
  }
  100%{
    width: 100%;
  }
}

@keyframes shake {
  0%, 20% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  2%, 6%, 10%, 14%, 18% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  4%, 8%, 12%, 16% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
} 

@keyframes dice-animation {
  0% {
    bottom: 50px;
    transform: rotate(0deg);
  }
  30% {
    bottom: 300px;
    transform: rotate(180deg);
  }
  50% {
    bottom: 150px;
    transform: rotate(360deg);
  }
  70% {
    bottom: 200px;
    transform: rotate(540deg);
  }
  100% {
    bottom: 50px;
    transform: rotate(720deg);
  }
}