@import url('https://fonts.googleapis.com/css2?family=K2D:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

:root{
  --o-1: #485541;
  --o-2: #92ac6d;
  --o-3: #4c9d49;
  --o-4: #960038;
  --o-5: #f60239;
  --accent: var(--o-2);
  --white: #fff;
  --black: #000;
  --transition: 0.4s ease;
}

html{
  scroll-behavior: smooth;
}

*{
  box-sizing: border-box;
}

body{
  font-family: 'K2D', sans-serif !important;
  font-size: 16px;
  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;
}

.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;
  gap: 19px;
}

.col-30,
.col-70,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6{
  width: 100%;
  flex-grow: 1;
  box-sizing: border-box;
}

.header{
  background-color: var(--white);
  padding: 9px 0;
  box-shadow: 0 1px 1px rgba(0,0,0,0.12), 0 2px 2px rgba(0,0,0,0.12);
}

.nav-wrapper{
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: 11px;
}

.logo{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-wrap: wrap;
  background-color: var(--accent);
  padding: 10px 15px;
  border-radius: 30px;

  img{
    width: 70px;
    height: 70px;
    object-fit: contain;
  }

  h1{
    color: var(--white);
    transition: var(--transition);
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    transition: var(--transition);

    &:hover,
    &:focus{
      color: var(--black);
    }
  }
}

.menu{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
}

.menu-item{
  text-align: center;
  background-color: var(--accent);
  padding: 10px 15px;
  border-radius: 30px;

  a{
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);

    &:hover,
    &:focus{
      color: var(--black);
    }
  }
}

.header-row{
  background-color: var(--accent);
  padding: 11px;
}

.banner-img-xl{
  width: 100%;
  min-height: 500px;
  height: 100%;
  position: relative;
  
  img{
    border-radius: 30px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.header-title{
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 500px;
  height: 100%;
  color: var(--white);
  font-size: 22px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000b4;
  border-radius: 30px;
  padding: 19px;
}

.banner-img-sm{
  width: 100%;
  height: 240px;
  
  img{
    border-radius: 30px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.banner-img-lg{
  width: 100%;
  height: 345px;
  overflow: hidden;
  
  img{
    border-radius: 30px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.banner-img {
    transition: opacity 0.5s ease-in-out;
  }

  .banner-img.fade-out {
    opacity: 0.5;
  }

  .head-col{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
  }

  .au-img{
    width: 100%;
    
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 30px;
      transition: var(--transition);

      &:hover,
      &:focus{
        filter: brightness(0.7);
      }
    }
  }

  .au-img-1{
    height: 320px;
  }
  .au-img-2{
    height: 230px;
  }

.au-img-wr{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 11px;
}

.gallery-box{
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-row{
  margin: 0 auto;
}

.title {
  font-size: 24px; 
  font-weight: bold;
  margin-bottom: 20px;
}

.gradient {
  background: linear-gradient(90deg, var(--accent), #feb47b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-list {
  padding: 20px;
}

.stat-item {
  margin-bottom: 20px;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: #eee;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #feb47b);
  transition: width 1s ease-in-out;
}

.stat-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.hp-list{
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.hp-item{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
}

.hp-num{
  border-radius: 100%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(90deg, var(--accent), #feb47b);
  font-size: 24px;
  font-weight: 500;
}

.main1{
  background-color: var(--accent);

  .title{
    color: var(--white);
  }

  .gradient {
    background: linear-gradient(90deg, var(--white), #feb47b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.game1-box{
  width: 100%;
  height: 500px;
  display: inline-block;
  border-radius: 30px;
  overflow: hidden;
  position: relative;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.main1-desc{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background-color: #000000aa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  text-align: center;
  gap: 11px;
  padding: 19px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.main1-desc p {
  -webkit-line-clamp: 3;
	line-clamp: 3;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.main1-sm-box{
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.game2-box{
  width: 100%;
  height: calc(500px / 2 - 11px);
  display: inline-block;
  border-radius: 30px;
  overflow: hidden;
  position: relative;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.game1-box:hover .main1-desc, 
.game2-box:hover .main1-desc {
  opacity: 1 !important;
  visibility: visible !important;
}

.main1-title{
  font-weight: 900;
  font-size: 20px;
}

#main1{
  display: block;
}

.main2{
  background-color: var(--accent);

  .title{
    color: var(--white);
  }

  .gradient {
    background: linear-gradient(90deg, var(--white), #feb47b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .row-2{
    row-gap: 40px;
  }
}

.main2-box{
  border-radius: 30px;
  background-color: var(--white);
  display: flex;
  flex-direction: row;
}

.main2-img-wr{
  height: 385px;
  position: relative;
  width: 100%;
  max-width: 100px;
}

.main2-img{
  height: 400px;
  max-width: 200px;
  position: absolute;
  top: -15px;
  left: -5px;
  width: 100%;
  display: inline-block;
  box-shadow: 0 0 0 2px #feb47b, 8px 8px 0 0 #feb47b;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  &:hover img,
  &:focus img{
    filter: hue-rotate(45deg);
  }
}

.main2-desc{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 19px;
  padding: 19px;
}

.main2-title{
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  transition: var(--transition);

  &:hover,
  &:focus{
    color: var(--black);
  }
}

.main2-content{
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
  color: var(--black);
  text-align: center;
  margin: 0;
}

.rating{
  --d1: flex;
  --d2: none;
  display: var(--d2);
  align-items: center;
  flex-direction: row;
  gap: 5px;
  justify-content: center;

  svg{
    color: #feb47b;
    width: 15px;
    height: 15px;
  }

  .muted{
    color: #ccccccb7;
  }
}

.rating-num{
  --d2: flex;
  --d1: none;
  display: var(--d2);
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #feb47b;
  gap: 10px;
  font-weight: 500;
  font-size: 20px;

  svg{
    width: 16px;
    height: 16px;
  }
}

#form{
  background-color: #feb47b3f;
  background: url('artisticstorage/bg-assets/opacity_bg-0677fb6961df61.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  
  .title{
    text-align: center;
  }
}

.form{
  border-radius: 30px;
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  gap: 15px;
  padding: 29px;
  background: linear-gradient(90deg, var(--accent), #feb47b);
}

.contact-page{
  .form{
    background: transparent !important;
    padding: 0;
  }
}
.contact-page-form-item{
  width: 100%;
}

.contact-page-form-item > input,
.contact-page-form-item > textarea,
.input-control__componentitem,
.textarea-control__componentitem{
  width: 100%;
  border-radius: 30px;
  border: 1px solid var(--white);
  background-color: transparent;
  color: var(--white);
  transition: var(--transition);
  outline: none;
  padding: 11px 19px;

  &:hover,
  &:focus{
    box-shadow: 3px 3px 10px var(--white), -3px -3px 10px var(--white);
  }

  &::placeholder{
    color: #ffffffd2;
  }
}

.privacy{
  color: var(--white);
  transition: var(--transition);

  &:hover,
  &:focus{
    color: var(--black);
  }
}

.benefits{
  position: relative;

  &::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    opacity: 0.5;
    background: url('artisticstorage/other/mask-board-0677fb6961e37a.png ');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    animation: flashBen 10s linear infinite;
  }

  .wrapper{
    position: relative;
    z-index: 2;
  }
}

.ben-wr{
  display: flex;
  align-items: center;
}

.ben-box{
  border-radius: 30px;
  border: 4px solid var(--accent);
  background-color: var(--white);
  text-align: center;
  color: var(--accent);
  animation: flash 10s linear infinite;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 19px;
  padding: 19px;
}

.bb1{
  animation-delay: 2s;
}
.bb2{
  animation-delay: 4s;
}
.bb3{
  animation-delay: 6s;
}
.bb4{
  animation-delay: 8s;
}

.ben-img{
  width: 70px;
  height: 70px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.comment-box{
  border-radius: 30px;
  background-color: var(--accent);
  display: flex;
  flex-direction: row;
}

.commnet-img-wr{
  height: 285px;
  max-width: 100px;
  position: relative;
  width: 100%;
}

.comment-img{
  height: 300px;
  position: absolute;
  top: -15px;
  left: -5px;
  width: 100%;
  box-shadow: 0 0 0 2px #feb47b, 8px 8px 0 0 #feb47b;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
  }
  
  &:hover img,
  &:focus img{
    filter: hue-rotate(45deg);
  }
}

.comment-desc{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  justify-content: center;
  gap: 19px;
  padding: 19px;
}

.comment-author{
  font-weight: 700;
  color: var(--white);
  font-size: 22px;
  text-align: center;
  word-break: break-all;
}

.commnet-text{
  color: var(--white);
  text-align: center;
}

.comments{
  background-color: #feb47b3f;
  background: url('artisticstorage/bg-assets/opacity_bg-0677fb6961df61.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;

  .row-2{
    row-gap: 40px;
  }
}

.footer{
  overflow: hidden;
  background-color: var(--accent);
  padding: 29px 0;
}

.disclaimer-wr{
  border: 2px solid white;
  background: linear-gradient(90deg, var(--accent), #feb47b);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  animation: bounceIn 5s linear infinite;
  gap: 19px;
  padding: 29px 19px;

  .title{
    text-align: center;
    color: white;
  }
}

.disclaimer-img{
  width: 120px;
  height: 120px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.disclaimer-text{
  color: #fff;
  text-align: center;
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

.footer-nav-wr{
  background-color: var(--white);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 29px 19px;
}

.footer-nav{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 19px;

  a{
    color: var(--accent);
    transition: var(--transition);
    text-align: center;
    display: inline-block;

    &:hover,
    &:focus{
      color: var(--black);
    }
  }
}

.copyright{
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  justify-content: center;
  margin-top: 19px;

  p{
    color: var(--white);
    margin: 0;
  }
}

#benefits{
  display: block;
}

.faq-box{
  border-radius: 30px;
  position: relative;
  border: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: var(--transition);
  gap: 19px;
  padding: 19px;
  background: linear-gradient(90deg, var(--accent), #feb47bb0);

  &:hover,
  &:focus{
    filter: hue-rotate(45deg);
  }
}

.faq-img{
  width: 100%;
  height: 20px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.faq-question{
  text-align: center;
  color: var(--black);
  font-weight: 500;
}

.faq-answer{
  color: var(--white);
  text-align: center;
}

.category{
  .main1,
  .main2{
    background-color: var(--white) !important;

  .title{
    color: var(--accent);
  }

  .gradient {
    background: linear-gradient(90deg, var(--accent), #feb47b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    }
  }

  .main2-box{
    background-color: var(--accent);
  }

  .main2-content{
    color: var(--white);
  }

  .main2-title{
    color: var(--white);
    transition: var(--transition);

    &:hover,
    &:focus{
      color: var(--black);
    }
  }
}

.contact-wr{
  border-radius: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 19px;
  padding: 19px;
  background: linear-gradient(90deg, var(--accent), #feb47b);
}

.contact-item{
  text-align: center;

  a{
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    transition: var(--transition);
    text-align: center;
    word-break: break-all;

    &:hover,
    &:focus{
      color: var(--black);
    }
  }
}

.adres{
  color: var(--white);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.box-iframe{
  width: 100%;
  height: 400px;
  margin-bottom: 29px;

  iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 3px solid var(--accent);
    border-radius: 30px;
  }
}

.page-img{
  width: 100%;
  height: auto;
  padding: 15px;
  border-radius: 30px;
  border: 3px solid var(--accent);
  background: linear-gradient(90deg, var(--accent), #feb47b);

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.privacy-content{
  word-break: break-all;
  overflow: hidden;
}

.au-page-box{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 479px){
  .hp-item{
    flex-direction: column !important;
  }
}

@media(min-width: 480px){
  .commnet-img-wr{
    max-width: 200px;
  }
}

@media (min-width: 576px) {
  .row-5{
    flex-direction: row;
  }

  .col-5{
    width: calc(50% - 19px);
  }
  .row-6{
    flex-direction: row;
  }

  .col-6{
    width: calc(50% - 19px);
  }

  .logo{
    flex-direction: row;
  }

  .logo h1{
    font-size: 22px;
  }

  .title{
    font-size: 28px;
  }

  .main1-title{
    font-size: 22px;
  }

  .main2-img-wr{
    max-width: 200px;
    height: 285px;
  }

  .main2-img{
    height: 300px;
  }

  .rating{
    svg{
      width: 20px;
      height: 20px;
    }
  }

  .main2-content{
    -webkit-line-clamp: 5;
  }

  .page-img{
    height: 300px;
  }
}

@media (min-width: 480px) and (max-width: 767px){
  .au-img-wr{
    flex-direction: row;
    flex-wrap: wrap;
  }

  .au-img-1{
    width: calc(33.33% - 11px) !important;
  }
  .au-img-2{
    width: calc(50% - 11px) !important;
  }
}

@media (min-width: 575px) and (max-width: 767px){
    .ben-row{
    flex-direction: row;

    .col-4{
      width: calc(50% - 19px);
    }
  }
}

@media(max-width: 767px){
  .head-col{
    display: none;
  }

  .main1-desc{
    opacity: 1 !important;
    visibility: visible !important;
  }
}

@media (min-width: 768px){
  .row-2,
  .row-3,
  .row-4{
    flex-direction: row;
  }

  .col-2,
  .col-3,
  .col-4{
    width: calc(50% - 19px);
  }
 
  .col-5{
    width: calc(33.333% - 19px);
  }

  .col-6{
    width: calc(33.333% - 19px);
  }

  .col-30{
    width: calc(30% - 19px);
  }

  .col-70{
    width: calc(70% - 19px);
  }

  .logo h1{
    font-size: 24px;
  }

  .nav-wrapper{
    flex-direction: row;
  }

  .menu{
    margin-left: auto;
  }

  .banner-img-xl{
    min-height: 700px;

    img{
      min-height: 700px;
    }
  }

  .banner-img-lg {
    min-height: 440px;
  }

  .title{
    font-size: 36px;
  }

  .main1-title{
    font-size: 24px;
  }

  .page-img{
    height: 340px;
  }
}

@media (min-width: 768px) and (max-width: 991px){
  .main2-img-wr{
    max-width: 100px;
  }

  .main2-img{
    max-width: 100px;
  }

  .commnet-img-wr{
    max-width: 100px;
  }
}


@media (min-width: 992px){
  .col-3{
    width: calc(33.333% - 19px);
  }

  .col-4{
    width: calc(25% - 19px);
  }

  .col-5{
    width: calc(20% - 19px);
  }

  .col-6{
    width: calc(20% - 19px);
  }

  .logo h1{
    font-size: 26px;
  }

  .title{
    font-size: 42px;
  }

  .main1-title{
    font-size: 26px;
  }

  .ben-wr{
    min-height: 340px;
  }

  .bb1{
    margin-top: 40px;
  }
  .bb2{
    margin-bottom: 80px;
  }
  .bb3{
    margin-bottom: 120px;
  }
  .bb4{
    margin-top: 30px;
  }

  .page-img{
    height: 350px;
  }
}


@media (min-width: 1200px){
  .wrapper {
    max-width: 1300px;
  }

  .logo h1{
    font-size: 28px;
  }

  .title{
    font-size: 46px;
  }

  .page-img{
    height: 400px;
  }
}

.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(--white);
  border-radius: 30px;
  padding: 15px 17px;
  color: var(--accent);
  border: 1px solid var(--accent);
  transition: var(--transition);

  &:hover,
  &:focus{
    border: 2px dashed var(--black);
  }
}

.button-2{
  background-color: var(--black);
  color: var(--white);
  padding: 15px 18px;
  border: none;
  outline: none;
  transition: var(--transition);

  &:hover,
  &:focus{
    transform: rotate(-2deg) translateY(3px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.07), 0 4px 8px rgba(0,0,0,0.07), 0 8px 16px rgba(0,0,0,0.07), 0 16px 32px rgba(0,0,0,0.07), 0 32px 64px rgba(0,0,0,0.07);
  }
}

.button-3 {
  position: relative;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(45deg, #0ce39a, #69007f, #fc0987);
  padding: 14px 25px;
  border-radius: 10px;
  font-size: 1.25em;
  cursor: pointer;
}

.button-3 span {
  position: relative;
  z-index: 1;
}

.button-3::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: #272727;
  border-radius: 9px;
  transition: 0.5s;
}

.button-3:hover::before {
  opacity: 0.7;
}

.button-3::after {
  content: "";
  position: absolute;
  inset: 0px;
  background: linear-gradient(45deg, #0ce39a, #69007f, #fc0987);
  border-radius: 9px;
  transition: 0.5s;
  opacity: 0;
  filter: blur(20px);
}

.button-3:hover:after {
  opacity: 1;
}

.button-4 {
 background-color: #eee;
 border: none;
 padding: 1rem;
 border-radius: 1rem;
 color: lightcoral;
 box-shadow: 0 0.4rem #dfd9d9;
 cursor: pointer;
}

.button-4:active {
 color: white;
 box-shadow: 0 0.2rem #dfd9d9;
 transform: translateY(0.2rem);
}

.button-4:hover:not(:disabled) {
 background: lightcoral;
 color: white;
 text-shadow: 0 0.1rem #bcb4b4;
}

.button-4:disabled {
 cursor: auto;
 color: grey;
}

.button-5 {
  text-transform: uppercase;
  text-align: center;
  padding: 0.7em 2em;
  border: 3px solid #ff7b00;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
  color: #ff7b00;
  text-decoration: none;
  transition: 0.3s ease all;
  z-index: 1;
}

.button-5:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: '';
  background-color: #ff7b00;
  z-index: -1;
}

.button-5:hover, .button-5:focus {
  color: white;
}

.button-5:hover:before, .button-5:focus:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}

button:active {
  transform: scale(0.9);
}

@keyframes flashBen {
  0%, 5%, 10% {
  opacity: 0.5;
  }
  
  2%, 7% {
  opacity: 0;
  }
   100% {
  opacity: 0.5;
  }
} 

@keyframes flash {
  0%, 5%, 10% {
  opacity: 1;
  }
  
  2%, 7% {
  opacity: 0;
  }
   100% {
  opacity: 1;
  }
} 

@keyframes bounceIn {
  0%, 2%, 4%, 6%, 8%, 10% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }
  2% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  4% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }
  6% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  8% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }
  10% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
} 

@keyframes colorDesc{
  0%{
    color: var(--accent);
  }
  50%{
    color: #feb47b;
  }
  100%{
    color: var(--accent);
  }
}