@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&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: 'Lato', 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:9px;
  font-size:  15px;
  line-height:1.5;
}

ul, ol {
  margin-bottom: 9px;
  padding-left: 19px;
}

li {
  margin-bottom: 9px;
}

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

.wrapper {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 10px;
  padding-left: 10px;
  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: 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: 10px;
}

.logo{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
  flex-wrap: wrap;
  background-color: var(--accent);
  padding: 10px 19px;
  border-radius: 30px;

  img{
    width: 66px;
    height: 66px;
    object-fit: contain;
  }

  h1{
    color: var(--white);
    transition: var(--transition);
    margin: 0;
    font-size: 19px;
    font-weight: 900;
    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 19px;
  border-radius: 30px;

  a{
    color: var(--white);
    font-weight: 700;
    transition: var(--transition);

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

.header-row{
  background-color: var(--accent);
  padding: 10px;
}

.banner-img-xl{
  width: 100%;
  min-height: 500px;
  height: 100%;
  position: relative;
  
  img{
    border-radius: 29px;
    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: 19px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000b4;
  border-radius: 29px;
  padding: 19px;
}

.banner-img-sm{
  width: 100%;
  height: 240px;
  
  img{
    border-radius: 29px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.banner-img-lg{
  width: 100%;
  height: 345px;
  overflow: hidden;
  
  img{
    border-radius: 29px;
    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:  14px;
  }

  .au-img{
    width: 100%;
    
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 29px;
      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: 10px;
}

.gallery-box{
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-row{
  margin: 0 auto;
}

.title {
  font-size: 24px; 
  font-weight: 900;
  margin-bottom: 21px;
}

.gradient {
  background: linear-gradient(90deg, var(--accent), #feb47b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-list {
  padding: 19px;
}

.stat-item {
  margin-bottom: 19px;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: #eee;
  border-radius:  3px;
  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: 10px;
}

.hp-num{
  border-radius: 50%;
  width:  55px;
  height:  55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(90deg, var(--accent), #feb47b);
  font-size: 24px;
  font-weight:700;
}

.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: 580px;
  display: inline-block;
  border-radius:  29px;
  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:29px;
  background-color: #000000aa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--white);
  text-align: center;
  gap: 10px;
  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: 10px;
}

.game2-box{
  width: 100%;
  height: calc(580px / 2 - 10px);
  display: inline-block;
  border-radius: 29px;
  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:  19px;
}

#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:  32px;
  }
}

.main2-box{
  border-radius: 29px;
  background-color: var(--white);
  display: flex;
  flex-direction: row;
}

.main2-img-wr{
  height: 440px;
  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: 19px;
  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: 9px;
  justify-content: center;

  svg{
    color: #feb47b;
    width: 19px;
    height: 19px;
  }

  .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: 700;
  font-size: 19px;

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

#form{
  background-color: #feb47b3f;
  background: url('artisticstorage/back/opacity_bg-069cd1b700ac1f.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  
  .title{
    text-align: center;
  }
}

.form{
  border-radius: 29px;
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  gap: 19px;
  padding: 30px;
  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-fieldarea-component,
.textarea-fieldarea-component{
  width: 100%;
  border-radius: 29px;
  border: 1px dashed var(--white);
  background-color: transparent;
  color: var(--white);
  transition: var(--transition);
  outline: none;
  padding: 10px 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/tematik-assets/mask-board-069cd1b700ac89.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: 29px;
  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: 66px;
  height: 66px;

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

.comment-box{
  border-radius: 29px;
  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: 900;
  color: var(--white);
  font-size: 19px;
  text-align: center;
  word-break: break-all;
}

.commnet-text{
  color: var(--white);
  text-align: center;
}

.comments{
  background-color: #feb47b3f;
  background: url('artisticstorage/back/opacity_bg-069cd1b700ac1f.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;

  .row-2{
    row-gap: 32px;
  }
}

.footer{
  overflow: hidden;
  background-color: var(--accent);
  padding: 30px 0;
}

.disclaimer-wr{
  border:1px solid white;
  background: linear-gradient(90deg, var(--accent), #feb47b);
  border-radius: 29px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  animation: bounceIn 5s linear infinite;
  gap: 19px;
  padding: 30px 19px;

  .title{
    text-align: center;
    color: white;
  }
}

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

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

.disclaimer-text{
  color: #fff;
  text-align: center;
  margin: 0;
  font-size: 19px;
  font-weight: 700;
}

.footer-nav-wr{
  background-color: var(--white);
  border-radius:  29px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 30px 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;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  justify-content: center;
  margin-top: 19px;

  p{
    color: var(--white);
    margin: 0;
  }
}

#benefits{
  display: block;
}

.faq-box{
  border-radius: 29px;
  position: relative;
  border: 4px 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: 21px;

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

.faq-question{
  text-align: center;
  color: var(--black);
  font-weight:700;
}

.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: 29px;
  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:900;
    transition: var(--transition);
    text-align: center;
    word-break: break-all;

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

.adres{
  color: var(--white);
  text-align: center;
  font-size: 19px;
  font-weight: 900;
}
.flex-rewJK{
  display: flex;
  gap: 50px;
  flex-direction:  column;
}

.box-iframe{
  width: 100%;
  height: 100vh;

  iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 4px solid var(--accent);
    border-radius: 29px;
  }
}

.page-img{
  width: 100%;
  height: auto;
  padding:  19px;
  border-radius: 29px;
  border:4px solid var(--accent);
  background: linear-gradient(90deg, var(--accent), #feb47b);

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

.privacy-content{
  word-break: break-all;
  
}
.privacy-content ul li,
.privacy-content ol li {
  margin-bottom: 4px;
}
.privacy-content ul,
.privacy-content ol {
  margin-bottom: 14px;
  padding-left:  19px;
  list-style: inside;
}
.privacy-content a,.privacy-content table{
color: inherit;
}
.privacy-content p{
margin-bottom:  9px;
text-indent: 3ch;
}

.au-page-box{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 13px;
}

@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: 19px;
  }

  .title{
    font-size: 28px;
  }

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

  .main2-img-wr{
    max-width: 200px;
    height: 285px;
  }

  .main2-img{
    height: 300px;
  }

  .rating{
    svg{
      width:19px;
      height:19px;
    }
  }

  .main2-content{
    -webkit-line-clamp: 5;
  }

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

@media (min-width: 480px) and (max-width: 767px){
  .au-img-wr{
    flex-direction: row;
    flex-wrap: wrap;
  }

  .au-img-1{
    width: calc(33.33% - 10px) !important;
  }
  .au-img-2{
    width: calc(50% - 10px) !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:1230px;
  }

  .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: 29px;
  padding: 10px  19px;
  color: var(--accent);
  border: 1px solid var(--accent);
  transition: var(--transition);

  &:hover,
  &:focus{
    border:1px dashed var(--black);
  }
}

.button-2{
  background-color: var(--black);
  color: var(--white);
  padding: 10px 19px;
  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: 13px  26px;
  border-radius: 10px;
  font-size: 17px;
  cursor: pointer;
}

.button-3 span {
  position: relative;
  z-index: 1;
}

.button-3::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: #272727;
  border-radius:10px;
  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: 10px;
  transition: 0.5s;
  opacity: 0;
  filter: blur(20px);
}

.button-3:hover:after {
  opacity: 1;
}

.button-4 {
 background-color: #eee;
 border: none;
 padding: 17px;
 border-radius: 17px;
 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: 13px 26px;
  border: 4px solid #ff7b00;
  border-radius: 1px;
  position: relative;
  box-shadow: 0 1px 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);
  }
}


.footer-logos {
  display: flex;
  justify-content: center; 
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-direction: row;
  flex-wrap: wrap;

  a img {
    max-height: 50px;
    width: 100%;
    display: block;
    max-width: none;
    transition: 0.3s linear;
    
    &:hover,
    &:hover{
      transform: scale(0.96);
      opacity: 0.8;
    }
  }
}