@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Viaoda+Libre&display=swap');

:root{
    --o-1: #00fe6e;
    --o-2: #febd00;
    --o-3: #fe7200;
    --o-4: #00dcfe;
    --o-5: #c700fe;
    --accent: var(--o-4);
    --g-1: #216c3e;
    --g-2: #513d18;
    --g-3: #6c2121;
    --g-4: #213a6c;
    --g-5: #2e216c;
    --bg-1: var(--g-4);
    --h-1: #1b5531;
    --h-2: #433314;
    --h-3: #4d1818;
    --h-4: #17294d;
    --h-5: #211850;
    --bg-2: var(--h-4);
    --white: #fff;
    --black: #0a1b16;
    --transition: 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

html {
  scroll-behavior: smooth;
}

*{
  box-sizing: border-box;
}

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


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: 58px 0;
}

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

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

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

.header{
  position: relative;

  &::before{
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.97), rgba(0, 0, 0, 0.72)), url('pixelpantry/tematik-assets/tematik_big-068dce63eb1b40.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

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

.nav{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 12px 0;
  gap: 12px;
}

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

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

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

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

.menu-nav{
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 17px;
}

.menu-item{
  a{
    color: var(--white);
    transition: var(--transition);

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

.slider {
  position: relative;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 200%;
  transition: transform 0.3s ease-in-out;
}

.banner-1,
.banner-2{
  width: 100%;
  border: none;
  color: var(--white);

  .wrapper{
    height: 100%;
  }
}

.banner-1{
  .row-2{
    padding: 42px 0;
  }
}
.banner-2{
  .row-2{
    height: 100%;
  }
}

.slider .prev, .slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  color: white;
  font-size: 24px;
  padding: 10px;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.slider .prev {
  left: 0px;
  transition: var(--transition);

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

.slider .next {
  right: 0px;
  transition: var(--transition);

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

.banner{
  position: relative;
  direction: ltr !important;
}

.banner-img-1{
  width: 100%;
  height: 395px;
  padding: 0 20px;

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

.banner-1-desc{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.banner-title{
  padding: 0 20px;
  text-align: center;
}

.subtitle{
  color: #ffffffae;
  text-align: center;
  margin-top:  30px;
}

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

.banner-2-stat{
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 17px;
}

.banner-video{
  width: 100%;
  height: 395px;
  padding: 0 20px;
  box-sizing: border-box;

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

.banner-stat-item{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.banner-title,
.banner-title-2{
  font-size: 21px;
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
  text-align: center;
}

.banner-stat-num{
  font-size: 24px;
  color: var(--accent);
  
}

.how-play{
  background-color: var(--bg-1);
  color: var(--white);
}
.box-rand-section{
  display: flex;
  flex-direction:  column;
}
.how-play-box{
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hp-step{
  font-size: 112px;
  border-bottom: 2px solid #ffffff8a;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(21px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.hp-text{
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.benefits{
  background-color: var(--bg-2);
  color: var(--white);
}

.title{
  text-align: center;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 700;
}

.delimeter{
  width: 100%;
  height: 2px;
  background-color: #ffffff8a;
  margin: 17px 0;
}

.ben-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  gap: 12px;
  padding: 12px;

}

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

.ben-img{
  width: 111px;
  height: 111px;
  opacity: 0;
  transform: translateY(21px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;

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


.ben-img1 {
  transition-delay: 0.3s;
  }

  .ben-img2 {
    transition-delay: 0.6s;
  }

  .ben-img3 {
    transition-delay: 0.9s;
  }

  .ben-img4 {
    transition-delay: 1.2s;
  }

  .hp-step1{   
    transition-delay: 0.3s;
  }
  .hp-step2{   
    transition-delay: 0.6s;
  }
  .hp-step3{   
    transition-delay: 0.9s;
  }


.animate {
  opacity: 1;
  transform: translateY(0);
}

.main{
  background-color: var(--black);
  color: var(--white);
}

.game-box{
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  height: 398px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.animate-game {
  opacity: 1;
  transform: translateY(0);
}

.gb1{   
  transition-delay: 0.3s;
}
.gb2{   
  transition-delay: 0.6s;
}
.gb3{   
  transition-delay: 0.9s;
}
.gb4{   
  transition-delay: 1.2s;
}
.gb5{   
  transition-delay: 1.5s;
}
.gb6{   
  transition-delay: 1.8s;
}

.game-img-box{
  width: 100%;
  height: 100%;
  position: relative;
  transition: var(--transition);

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

.game-title{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background-color: #111111e3;
  color: var(--accent);
  width: 100%;
  padding: 20px 13px;
  box-sizing: border-box;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
}

.game-desc{
  background-color: #111111e3;
  width: 100%;
  height: 398px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 17px;
  position: absolute;
  top: 0;
  box-sizing: border-box;
  transform: translateY(100%);
  transition: var(--transition);
  opacity: 0;

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

.game-img-box:hover,
.game-img-box:focus{
  .game-desc{
    transform: translateY(0);
    opacity: 1;
  }

  .game-title{
    opacity: 0;
  }
}

.faq{
  background-color: var(--bg-2);
  color: var(--white);

  .row-2{
    margin-top:  22px;
  }
}

.faq-img-box{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}


.faq-chips{
  width: 50px;
  height: 50px;
  position: absolute;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;

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

}

.animate-chips {
  opacity: 0.9;
  transform: translateY(0) rotate(360deg);
}

.faq-chips1{
  top: 11%;
  left: 20%;
  transition-delay: 1s;
}
.faq-chips2{
  top: 74%;
  left: 37%;
  transition-delay: 0.6s;
}
.faq-chips3{
  top: 23%;
  left: 84%;
  transition-delay: 1.5s;
}

.faq-img{
  width: 100%;
  height: 395px;
  position: relative;
  z-index: 1;

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


.qa-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 16px;
}

.qa-card {
  height: 111px;
  min-height: 111px;
  box-sizing: border-box;
  flex-grow: 1;
  perspective: 1000px;
  cursor: pointer;
}

.qa-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.5s;
  transform-style: preserve-3d;
}

.qa-card:hover .qa-card-inner {
  transform: rotateY(180deg);
}

.qa-card-front, .qa-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 13px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

.qa-card-front {
  background-color: var(--bg-1);
  color: white;
  text-align: center;
}

.qa-card-back {
  background-color: var(--accent);
  color: white;
  transform: rotateY(180deg);
  text-align: center;
}

.gallery{
  background-color: var(--bg-1);
  color: var(--white);
  direction: ltr !important;

  .title{
    margin-bottom: 22px;
  }
}


.modal {
  display: none;
  position: fixed;
  z-index: 2;
  padding-top:  58px;
  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 {
  display: block;
  width: 80%;
  max-width: 737px;
  top: 50%;
  left: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
}

.close {
  position: absolute;
  top: 90px;
  right: 35px;
  color: var(--white);
  font-size: 30px;
  font-weight: 700;
  transition: 0.3s;
  cursor: pointer;
}

.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: 700;
  font-size: 20px;
  transition: 0.4s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.nextImg {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prevImg:hover,
.nextImg:hover {
  background-color: rgba(0,0,0,0.8);
}

.gallery-list{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap:  12px;
}

.gallery-item{
  width: 100%;
  height:  395px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);

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

  &:hover,
  &:focus{
    filter: drop-shadow(3px 3px 3px var(--accent));
  }
}

.footer{
  padding: 40px 0;
  background-color: var(--black);
  color: var(--white);
}

.form{
  width: 100%;
  margin: 0 auto;
  max-width: 737px;
  display: flex;
  flex-direction: column;
  margin-top: 25px;
  gap: 12px;
}

.contact-form-item{
  width: 100%;
}

.contact-form-item input::placeholder, .contact-form-item  textarea::placeholder{
  color: #fff;
}

.contact-form-item > input,
.contact-form-item > textarea,
.input-user-area__part,
.textarea-user-area__part{
  width: 100%;
  border: 2px solid var(--accent);
  padding: 18px;
  border-radius: 8px;
  background-color: transparent;
  box-sizing: border-box;
  color: var(--white);
}

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

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

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

.footer-nav{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 17px;
}

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

.copyright{
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;

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

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

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    background: #ffff;
  }
}

.disclaimer-box {
  padding: 20px;
  border-radius: 13px;
  background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #1dd1a1, #f368e0, #ff9ff3);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto  25px;
}

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

.disclaimer {
  color: rgb(0, 0, 0);
  font-weight: 700;
  text-align: center;
}

.form-title{
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
}

.footer-menu-item{
  a{
    color: var(--white);
    transition: var(--transition);
    text-align: center;

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

.form-box{
  padding: 25px;
}

.au-module{
  background-color: var(--bg-1);
  color: var(--white);
}


.au-video{
  width: 100%;
  height: 395px;
  padding: 0 20px;
  box-sizing: border-box;

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

.team{
  background-color: var(--bg-2);
  color: var(--white);

  .title{
    margin-bottom: 22px;
  }
}
.auc-text{
  min-height: 395px;
}

.dev-img{
  width: 100%;
  height: 395px;

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

.dev-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  gap: 17px;

  &:hover,
  &:focus{
    filter: drop-shadow(3px 3px 3px var(--accent));
  }
}

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

.page-module{
  background-color: var(--bg-1);
  color: var(--white);

  .title{
    margin-bottom: 22px;
  }
}

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

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.blck-random-asec{
  display: flex;
  flex-direction: column-reverse;
}
.rating{
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: center;
  color: var(--accent);
}

.play-now-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: start;
  padding: 17px;
  gap: 17px;
}

.content-text{
  min-height:  398px;
}

.play-now{
  font-weight: 500;
  font-size:18px;

  span{
    color: var(--accent);
    font-weight: 500;
    font-size:20px;
  }
}

.box-iframe{
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 100vh;

  iframe{
    border: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.comment-module{
  background-color: var(--bg-2);
  color: var(--white);
}

.feedback-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}

.feedback-img{
  width: 196px;
  height: 196px;

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

.feedback-descr{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 17px;
}

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

.contact-module{
  background-color: var(--bg-1);
  color: var(--white);

  .title{
    margin-bottom: 22px;
  }
}

.contact-page-item{
  background-color: var(--accent);
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  gap: 17px;
  padding: 17px;
  transition:  var(--transition);

  &:hover,
  &:focus{
    filter: drop-shadow(3px 3px 3px var(--white));
  }

  a{
    color: var(--white);
    text-align: center;
    word-break: break-all;
    transition: var(--transition);
    display: inline-block;

    &:hover,
    &:focus{
      transform: scale(1.02);
    }
  }

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

.map{
  width: 100%;
  height: 398px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 22px;

  iframe{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    filter: brightness(0.5);
    transition: var(--transition);

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

.form-module{
  background-color: var(--bg-2);
  color: var(--white);

  .title{
    margin-bottom: 22px;
  }

}

.privacy-module{
  background-color: var(--bg-1);
  color: var(--white);
}

.privacy-box{
  word-break: break-all;
  overflow: hidden;
}

@media (max-width: 575px){
  .menu-nav{
    justify-content: center;
  }

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

  .qa-card{
    min-height: 123px;
    height: 123px;
  }

}

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

  .row-5{
    flex-direction: row-reverse;
  }

  .col-5{
    width: calc(50% - 17px);
  }

  .banner-title,
  .banner-title-2{
    font-size: 26px;
  }

  .how-play-box{
    flex-direction: row;
  }
  
  .hp-step{
    border-right: 1px solid #ffffff8a;
    border-bottom: none;
  }
  
  .gallery-item{
    width: calc(50% - 12px);
  }

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

@media (max-width: 767px){
  .how-play{
    .row-3{
      flex-direction: column !important;
    }
  }

  .game-title{
    display: none;
  }

  .game-desc{
    transform: translateX(0);
    opacity: 0.8;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .game-title-desc{
    color: var(--accent);
    padding: 20px 12px;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
  }

  .faq-chips{
    display: none;
  }
}

@media (min-width: 768px){
  .wrapper {
    max-width: 737px;
  }

  .row-2,
  .row-3,
  .row-4{
    flex-direction: row-reverse;
  }

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

  .nav{
    flex-direction: row;
  }

  .banner-1{
    .row-2{
      padding: 100px 0;
    }
  }

  .banner-title,
  .banner-title-2{
    font-size: 25px;
  }

  .how-play{
    .row-3{
      flex-direction: row !important;
    }
  }

  .game-title-desc{
    display: none;
  }

  .page-img{
    width:  298px;
    margin: 0 auto;
    padding: 17px;
    float: right;
  }

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

@media (min-width: 992px){
  .wrapper {
    max-width: 960px;
  }

  .col-3{
    width: calc(33.333% - 17px);
  }

  .col-4{
    width: calc(25% - 17px);
  }
  .col-5{
    width: calc(20% - 17px);
  }

  .banner-1{
    .row-2{
      padding: 111px 0;
    }
  }

  .banner-title,
  .banner-title-2{
    font-size: 36px;
  }

  .main{
    .col-3{
      --w-1: calc(33.333% - 17px);
      --w-2: calc(50% - 17px);
      width: var(--w-1);
    }
  }

  .gallery-item{
    width: calc(25% -  12px);
  }

  .au-video{
    margin: 0 auto;
    width: 50%;
    height: 395px;
    padding: 17px;
    float: right;
  }

  .page-img{
    width: 50%;
    height: 510px;
  }
}

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


.form-btn{
  text-align: center;
  margin: 20px auto 0;
}

.button-1 {
  border: none;
  display: inline-flex;
  padding: 0.74rem 1.4rem;
  background-color: var(--accent);
  color: #ffffff;
  font-size: 0.74rem;
  line-height: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  align-items: center;
  border-radius: 0.4rem;
  user-select: none;
  gap: 0.74rem;
  box-shadow: 0 4px 6px -1px var(--bg-1), 0 2px 4px -1px var(--bg-1);
  transition: all 0.6s ease;
  text-align: center;
}

.button-1:hover {
  box-shadow: 0 13px 15px -3px var(--white), 0 4px 6px -2px var(--white);
}

.button-2 {
padding: 13px;
  color: #fff;
  border-radius: 5px;
  padding: 13px 24px;
  font-weight: 500;
  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;
  background: var(--accent);
  background: linear-gradient(0deg, var(--bg-1) 0%, var(--bg-2) 100%);
  border: none;
  font-size: 0.75rem;
 }
 
 .button-2:before {
  height: 0%;
  width: 2px;
 }
 
 .button-2:hover {
  box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5),
               -4px -4px 6px 0 rgba(116, 125, 136, .5), 
     inset -4px -4px 6px 0 rgba(255,255,255,.2),
     inset 4px 4px 6px 0 rgba(0, 0, 0, .4);
 }
 

.button-3 {
  color: white;
  text-decoration: none;
  border: none;
  font-size: 18px;
  background: none;
  font-weight: 500;
}

.button-3::before {
  margin-left: auto;
}

.button-3::after, .button-3::before {
  content: '';
  width: 0%;
  height: 2px;
  background: #f44336;
  display: block;
  transition: 0.5s;
}

.button-3:hover::after, .button-3:hover::before {
  width: 100%;
}

.button-4 {
  padding: 0.6em 1em;
  border: : 3 solid var(--accent);
  transition: ease-in-out 0.3s;
  background-color: transparent;
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
 }
 
 .button-4:hover {
  transform: scale(1.2) rotate(10deg);
  background-color: var(--accent);
  color: white;
 }


.button-5 {
  cursor: pointer;
  font-family: inherit;
  font-weight: bold;
  color: var(--bg-1);
  background-color: #f8f8fd;
  padding: 0.8em 2.2em;
  border-radius:  40em;
  border: 5 solid var(--bg-1);
  box-shadow: 0px 8px var(--accent);
  transition: var(--transition);
}

.button-5:hover,
.button-5:focus {
  position: relative;
  top: 8px;
  border: 5 solid var(--bg-1);
  box-shadow: 0px 0px;
}


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