@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&display=swap');

:root{
  --h-1: #ff4516;
  --h-2: #ff7f16;
  --h-3: #7c10e1;
  --h-4: #22db84;
  --h-5: #1654ff;
  --hover: var(--h-2);
  --transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --white: #fff;
  --black: #180707;
  --bg-dark: #11131d;
  --grey: #efe5e5f6;
}

body{
  direction: ltr;
  font-family: 'Karla', sans-serif !important;
  font-size:  16px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  letter-spacing: 1px;
}

a{
    text-decoration: none;
}

p {
  margin-bottom:12px;
 
}

ul, ol {
  margin-bottom: 12px;
  padding-left: 16px;
}

li {
  margin-bottom:10px;
}

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

.part{
  padding: 67px 0;
}

.holder {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 11px;
  padding-left: 11px;
}

.caption{
  text-transform: uppercase;
  font-weight: 900;
  font-size: 20px;
  color: var(--hover);
  text-align: center;
  margin-bottom: 30px;
}

.navbar{
  background-color: var(--bg-dark);
  border-bottom: 1px solid var(--hover);
  padding: 15px;
  transition: var(--transition);
}

.toggle-button {
  display: none;
  background-color: transparent;
  color: #fff;
  border: none;
  padding:  10px;
  cursor: pointer;
  margin: 0 auto;
}

.menu-link{
  color: var(--white);
  text-transform: uppercase;
  font-weight: 900;
  transition: var(--transition);
  text-align: center;
}


.menu-logo{
  display: flex;
  flex-direction: row;
  gap:  10px;
  align-items: center;
  justify-content: center;
}

.menu-logo-img{
  width: 57px;
  height: 57px;
}

.menu-logo-img > img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-title{
  color: var(--white);
  text-transform: uppercase;
  font-size:  20px;
  font-weight: 900;
  transition: var(--transition);
}

.menu-logo:hover > .menu-title,
.menu-logo:focus > .menu-title{
  color: var(--hover);
}

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

.menu{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}

.menu-item{
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: white;
}

.menu-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
}

.menu-icon{
  transition: var(--transition);
}
  
.menu-item:hover > .menu-link,
.menu-item:focus > .menu-link{
  color: var(--hover);
}
  
.menu-item:hover > .menu-icon,
.menu-item:focus > .menu-icon{
  color: var(--hover);
  -webkit-animation-name: icon-up;
  animation-name: icon-up;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}


.main-banner{
  overflow: hidden;
  background: url('galleryarchive/bg-assets/bg-all-06908dd519a204.jpg') no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.main-banner::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.151));
}

.main-banner-title{
  padding: 120px 0;
  position: relative;
}

.main-banner-title > .holder{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  font-weight: 900;
}

.main-banner-title > .holder > p{
  font-size: 20px;
  filter: drop-shadow(2px 2px 2px black);
}

.au{
  background: url('galleryarchive/bg-assets/opacity_bg-06908dd519a274.png') no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.au-text{
  text-align: center;
}

.delimeter{
  width: 100%;
  height: 2px;
  background-color: var(--grey);
  margin: 67px 0;
}

.au-img-wr{
  display: grid;
  grid-template-columns: 1fr;
  box-sizing: border-box;
  gap: 15px;
}

.au-img-box{
  box-sizing: border-box;
  height: 100%;
  position: relative;
  border: 1px solid var(--hover);
  border-radius: 0px;
  overflow: hidden;
}

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

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

.advanteges{
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--hover);
  color: var(--white);
  width: calc(100% - (11px * 2));
  height: 70%;
  padding:  11px;
  transform: translateY(100%);
  opacity: 0;
  transition: var(--transition);
}

.advanteges > p{
  text-align: center;
}

.au-img-box:hover > .advanteges,
.au-img-box:focus > .advanteges{
  transform: translateY(0%);
  opacity: 1;
}

.au-flex{
  display: flex;
  flex-direction: column;
}

.fundamental{
  background-color: var(--bg-dark);
  color: var(--white);
  border-top: 1px solid var(--hover);
  border-bottom: 1px solid var(--hover);
}

.fund-category{
  border: none;
}

.fundamental-box{
  display: grid;
  grid-template-columns: 1fr;
  box-sizing: border-box;
  gap: 11px;
}

.fundamental-item{
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.fundamental-img{
  height: 449px;
  position: relative;
  border:  1px solid var(--hover);
  border-radius: 0px;
  overflow: hidden;
}

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

.overview{
  transform: translateY(100%);
  background-color: var(--hover);
  opacity: 0;
  transition: var(--transition);
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - (11px * 2));
  height: 70%;
  padding: 11px;
  text-align: center;
}

.fundamental-item:hover,
.fundamental-item:focus{
  box-shadow: 0px 50px 96px -20px rgba(254, 254, 255, 0.25), 0px 30px 60px -30px rgba(255, 255, 255, 0.3), inset 0px -2px 6px 0px rgba(255, 255, 255, 0.35);
}


.fundamental-item:hover > .overview,
.fundamental-item:focus > .overview{
  transform: translateY(0%);
  opacity: 1;
}

.fundamental-title{
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--white);
}

.fundamental-content{
  color: var(--grey);
  text-align: center;
}

.fund-block-one{
  display: block;
}

.central-img{
  width:356px;
  height:356px;
  transition: var(--transition);
}

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

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

.central-item{
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.central-item:hover > .central-img,
.central-item:focus > .central-img{
  filter: drop-shadow(4px 4px 6px rgba(255, 255, 255, 0.534)); 
}

.central-desc{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.central-title{
  color: var(--hover);
  transition: var(--transition);
  font-weight:  900;
  font-size: 20px;
  text-align: center;
}

.central-title:hover,
.central-title:focus{
  transform: translateY(-6px);
  -webkit-transform: translateY(-6px);
}

.central-content{
  text-align: center;
}

.faq{
  background: url('galleryarchive/bg-assets/opacity_bg-06908dd519a274.png') no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.faq-box{
  display: flex;
  flex-direction:  column;
  gap: 15px;
  height: 100%;
}

.faq-video{
  width: 100%;
  flex: 0.4;
  display: block;
}

.faq-img{
  width: 100%;
  flex: 0.4;
}

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

.faq-video > video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.faq-question{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap:  10px;
  font-weight:  900;
}

.faq-icon{
  color: var(--hover);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon > svg{
  width: 27px;
  height: 27px;
}

.faq-item:hover .faq-icon,
.faq-item:focus .faq-icon{
  -webkit-animation-name: icon-up;
  animation-name: icon-up;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.faq-answer-icon > svg{
  width: 20px;
  height: 20px;
  transform: rotate(270deg);
}

.faq-answer-icon{
  color: var(--hover);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-answer{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap:10px;
  margin-left: 33px;
}

.faq-item{
  display: flex;
  flex-direction: column;
  gap: 11px;
  background: white;
  padding: 11px;
  border-radius: 11px;
  border: 2px solid var(--hover);
}

.contact-form-part,
.form-part{
  background-color: var(--bg-dark);
  color: var(--white);
  border-top: 1px solid var(--hover);
  border-bottom: 1px solid var(--hover);
}

.form{
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap:  11px;
}

.contact-page-form > input,
.contact-page-form > textarea,
.input-maingroup--group,
.textarea-maingroup--group{
  width: 100%;
  padding: 11px 15px;
  border-radius: 0px;
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--hover);
  box-sizing: border-box;
}

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

.privacy:hover,
.privacy:focus{
  transform: translateY(-6px);
  -webkit-transform: translateY(-6px);
}

.form-btn{
  text-align:  center;
  margin-top: 24px;
}

.liders-part{
  background-color: var(--bg-dark);
  color: var(--white);
  border-top: 1px solid var(--hover);
  border-bottom: 1px solid var(--hover);
}

.liders-item{
  display: grid;
  grid-template-columns: repeat(1, 0.5fr 1fr 0.5fr);
  gap: 11px;
  padding: 11px;
  border: 2px solid var(--hover);
  border-radius: 0px;
}

.liders-img{
  width: 100%;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.liders-name{
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.score{
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.disclaimer-part{
  background: url('galleryarchive/bg-assets/opacity_bg-06908dd519a274.png') no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 31px 0;
}

.disclaimer{
  color: var(--white);
  padding:  30px;
  border: 1px solid var(--hover);
  border-radius: 0px;
  background: linear-gradient(45deg, #00f, #f00, #0f0, #00f);
  background-size: 400% 400%;
  animation: gradientAnimation 10s infinite;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
}

.disclaimer > p{
  text-transform: uppercase;
  letter-spacing: 1.1px;
  text-align: center;
}

.footer{
  background-color: var(--bg-dark);
  color: var(--white);
  padding: 31px 0;
  border-top: 1px solid var(--hover);
}

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

.footer-menu-item{
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: white;
}

  
.footer-menu-item:hover > .menu-link,
.footer-menu-item:focus > .menu-link{
  color: var(--hover);
}
  
.footer-menu-item:hover > .menu-icon,
.footer-menu-item:focus > .menu-icon{
  color: var(--hover);
  -webkit-animation-name: icon-up;
  animation-name: icon-up;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.footer-menu-box{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap:  11px;
}

.disclaimer-img{
  width: 80px;
  height: 80px;
}

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

.copyright-box{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.copyright{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap:  10px;
}

.how-play{
  background-color: var(--bg-dark);
  border-top: 1px solid var(--hover);
  border-bottom: 1px solid var(--hover);
  color: var(--white);
}

.how-play-box{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.how-play-item{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding:  30px;
  border: 2px solid var(--hover);
  border-radius: 0px;
}

.how-paly-num{
  flex: 0.3;
  font-size: 32px;
  font-weight:900;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.how-play-text{
  text-align: center;
  flex: 1;
}

.how-play-item:hover .how-paly-num,
.how-play-item:focus .how-paly-num{
  color: var(--hover);
  -webkit-animation-name: icon-up;
  animation-name: icon-up;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  color: var(--hover);
}

.start-winner{
  background: url('galleryarchive/bg-assets/opacity_bg-06908dd519a274.png') no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 31px 0;
}

.start-winner .caption{
  margin-bottom: 0;
}

.page-part{
  background: url('galleryarchive/bg-assets/opacity_bg-06908dd519a274.png') no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 31px 0;
}

.page-img{
  width: 100%;
  height: 100%;
  float: none;
  margin: 0 auto;
}

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

.part-iframe{
  background-color: var(--bg-dark);
  border-top: 1px solid var(--hover);
  border-bottom: 1px solid var(--hover);
}

.box-iframe{
  width: 100%;
  height: 100vh;
  overflow: hidden;
  border: 2px solid var(--hover);
  border-radius: 0px;
}

.box-iframe > iframe{
  width: 100%;
  height: 100vh;
  object-fit: cover;
  border: none;
}

.contact-page{
  background: url('galleryarchive/bg-assets/opacity_bg-06908dd519a274.png') no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.contact-wr{
  
  box-sizing: border-box;
  gap: 11px;

}

.contact-item{
  background-color: var(--bg-dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap:  11px;
  padding:  15px;
  border: 2px solid var(--hover);
  border-radius: 0px;
}

.contact-item > a{
  color: var(--hover);
  transition: var(--transition);
  text-align: center;
}

.contact-item:hover > a,
.contact-item:focus > a{
  transform: translateY(-6px);
  -webkit-transform: translateY(-6px);
}
.flex-rewWPP{
  display: flex;
  flex-direction: column-reverse;
}
.gapROP{
  gap: 27px;
}

.contact-text{
  text-align: center;
}

.map{
  overflow: hidden;
  border: 2px solid var(--hover);
  border-radius: 0px;
  height: 449px;
}

.map > iframe{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.polytik-box{
 word-wrap: break-word;
  
}
.polytik-box p{

text-indent: 2ch;
}
.polytik-box ul li,
.polytik-box ol li {
  margin-bottom: 5px;
}
.polytik-box ul,
.polytik-box ol {
  margin-bottom: 12px;
  padding-left:  20px;
  list-style: inside;
}
.polytik-box a,.polytik-box table{
color: inherit;
}


@media (min-width: 576px) {
  .holder {
    max-width: 540px;
  }

  .page-img{
    height:  252px;
    width:  252px;
    padding: 16px;
  }
}


@media (min-width: 768px){
  .holder {
    max-width: 720px;
  }

  .au-img-wr{
    grid-template-columns: repeat(2, 1fr);
  }

  .fundamental-box{
    grid-template-columns: repeat(2, 1fr);
  }

  .copyright{
    flex-direction: row;
  }

  .page-img{
    float: left;
    height:  356px;
    width:  356px;
  }

  .contact-wr{
    grid-template-columns: repeat(2, 1fr);
  }

  .main-banner-title{
    padding: 107px 0;
  }
}

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

  .toggle-button {
    display: block;
  }

  .navbar.show {
    flex-direction: column;
    text-align: center;
  }

  .navbar.show .menu-item {
    display: flex;
  }

  .navbar-box{
    gap:  15px;
  }

  .faq-img > img{
    height: 252px;
  }
}

@media (min-width: 992px){
  .part{
    padding: 112px 0;
  }

  .holder {
    max-width: 960px;
  }
      
  .menu{
    flex-direction: row;
    gap: 24px;
  }

  .navbar-box{
    flex-direction: row;
  }

  .slide > img{
    height: 500px;
  }
    
  .au-img-wr{
    grid-template-columns: repeat(4, 1fr);
  }

  .fundamental-box{
    grid-template-columns: repeat(3, 1fr);
  }

  .central-box{
    flex-direction: row-reverse;
  }

  .central-item,
  .central-desc{
    flex: 1;
  }

  .faq-box{
    flex-direction: row-reverse;
  }

  .form{
    width: 80%;
  }

  .disclaimer{
    padding: 31px 30px;
  }

  .footer-menu-box{
    flex-direction: row-reverse;
  }

  .how-play-item{
    flex-direction: row-reverse;
  }

  .main-banner-title{
    padding: 252px 0;
  }
}

@media (min-width: 1200px){
  .holder {
    max-width: 1140px;
  }
}


@keyframes icon-up{
  0%{
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  25%{
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  50%{
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  75%{
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  100%{
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

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


.custom-btn {
  color: #fff;
  border-radius: 1px;
  padding: 11px 24px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 5px 0px rgba(0,0,0,.1);
  outline: none;
}


.button-1 {
  border: none;
  background: rgb(251,33,117);
    background: linear-gradient(0deg, rgba(251,33,117,1) 0%, rgba(234,76,137,1) 100%);
    color: #fff;
    overflow: hidden;
}
.button-1:hover {
    text-decoration: none;
    color: #fff;
}
.button-1:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn1 3s ease-in-out infinite;
}
.button-1:hover{
  opacity: .7;
}
.button-1:active{
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.3),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}


@-webkit-keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}


.button-2 {
  appearance: button;
  background-color: #1899D6;
  border: solid transparent;
  border-radius: 18px;
  border-width: 0 0 1px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: din-round,sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .8px;
  line-height: 20px;
  margin: 0;
  outline: none;
  overflow: visible;
  padding:  15px 18px;
  text-align: center;
  text-transform: uppercase;
  touch-action: manipulation;
  transform: translateZ(0);
  transition: filter .2s;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}

.button-2:after {
  background-clip: padding-box;
  background-color: #1CB0F6;
  border: solid transparent;
  border-radius: 18px;
  border-width: 0 0 4px;
  bottom: -4px;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.button-2:main,
.button-2:focus {
  user-select: auto;
}

.button-2:hover:not(:disabled) {
  filter: brightness(1.1);
  -webkit-filter: brightness(1.1);
}

.button-2:disabled {
  cursor: auto;
}

.button-2:active {
  border-width: 4px 0 0;
  background: none;
}


.button-3 {
  background-color: #89d8d3;
background-image: linear-gradient(315deg, #89d8d3 0%, #03c8a8 74%);
  border: none;
  z-index: 1;
}
.button-3:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 1px;
   background-color: #4dccc6;
background-image: linear-gradient(315deg, #4dccc6 0%, #96e4df 74%);
  box-shadow:
   -7px -7px 20px 0px #fff9,
   -4px -4px 1px 0px #fff9,
   7px 7px 20px 0px #0002,
   4px 4px 5px 0px #0001;
  transition: all 0.3s ease;
}
.button-3:hover {
  color: #fff;
}
.button-3:hover:after {
  top: 0;
  height: 100%;
}
.button-3:active {
  top: 2px;
}


.button-4 {
  background: rgb(255,151,0);
  border: none;
  z-index: 1;
}
.button-4:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 5px;
  background-color: #eaf818;
  background-image: linear-gradient(315deg, #eaf818 0%, #f6fc9c 74%);
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5);
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 1px 0px rgba(0,0,0,.1);
  transition: all 0.3s ease;
}
.button-4:hover {
  color: #000;
}
.button-4:hover:after {
  top: auto;
  bottom: 0;
  height: 100%;
}
.button-4:active {
  top: 2px;
}

.button-5 {
  background: #b621fe;
  border: none;
  z-index: 1;
}
.button-5:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #663dff;
  border-radius: 5px;
   box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
   7px 7px 20px 0px rgba(0,0,0,.1),
   4px 4px 1px 0px rgba(0,0,0,.1);
  transition: all 0.3s ease;
}
.button-5:hover {
  color: #fff;
}
.button-5:hover:after {
  left: 0;
  width: 100%;
}
.button-5:active {
  top: 2px;
}



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

.pt-30{
  padding-top: 30px;
}