@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Extra+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');

:root{
  --c-1: linear-gradient(0deg, #f54a48, #dc2ffa 100%);
  --c-2: linear-gradient(to bottom, #770d0d, #df6c00);
  --c-3: linear-gradient(to right, #00c6ff, #0072ff);
  --c-4: linear-gradient(to bottom, #c21500, #ffc500);
  --c-5: linear-gradient(to right, #34e89e, #0f3443);
  --gradient: var(--c-5);
  --gr-hover: linear-gradient(180deg, #ff7527 0%, #fabf28 100%);
  --d-1: #1f071e, #67184b;
  --d-2: #820d0b, #5a3208;
  --d-3: #140d57, #2860a5;
  --d-4: #3d1a00, #756513;
  --d-5: #000000, #1d2e22;
  --hero: var(--d-5);
  --e-1: #250725;
  --e-2: #491705;
  --e-3: #0a0725;
  --e-4: #251e07;
  --e-5: #072513;
  --dark-bg: var(--e-5);
  --white: #fff;
  --black: #040807;
  --transition: 0.4s linear;
  --nav-box: #d3c9c1;
}

body{
  direction: ltr;
  font-family: 'Fira Sans Extra Condensed', sans-serif !important;
  font-size: 18px;
  margin: 0;
  padding: 0px;
  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;
}



.wrapper {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.row-2,
.row-3,
.row-4{
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  gap: 17px;
}

.col-2,
.col-3,
.col-4{
  width: 100%;
  box-sizing: border-box;
  flex-grow: 1;
}


.hero-bg{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  -webkit-mask: repeating-linear-gradient(360deg, black 0, #000000e0 1px,white 1px, white 110px);
}

.hero-bg:before{
  content: '';
  display:block;
  width:100%;
  height:100%;
  background: linear-gradient(to bottom, var(--hero));
  -webkit-mask: repeating-linear-gradient(90deg, black 0,#000000e0 1px,white 1px, white 110px)
}

.hero-content{
  position: relative;
  z-index: 1;
}

.menu{
  cursor: pointer;
  width: 25px;
  height: 25px;
  color: var(--white);
  transition: var(--transition);

  svg{
    width: 25px;
    height: 25px;
  }

  &:hover,
  &:focus{
    background: var(--gr-hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.btn-close{
  width: 44px;
  height: 44px;
  background: var(--gradient);
  padding: 7px 12px 10px 12px;
  border-radius: 0.25em;
  color: #ffffff;
  transition: var(--transition);
  cursor: pointer;

  svg{
    width: 100%;
    height: 100%;
    transition: var(--transition);
  }

  &:hover,
  &:focus {
    background: var(--gr-hover);
  }
}

.menu-nav{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drop-menu{
  display: flex;
  flex-direction: column;
}

.nav-wr{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.nav-list{
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 17px;
  flex-grow: 1;
}

.menu-item{
  a{
    padding: 17px;
    color: var(--white);
    transition: var(--transition);
    display: inline-block;
  }

  &:hover > a,
  &:focus > a{
    color: var(--black);
    background: var(--gr-hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
  }
}

.hero{
  position: relative;
}

.hero::after{
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background: url('bg/0-image-display-srPy.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.nav-box-header{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.nav-box{
  display: flex;
  position: fixed;
  top: 0;
  right: -400px;
  transition: var(--transition);
  background-color: var(--nav-box);
  color: var(--black);
  width: 400px;
  height: 100vh;
  flex-direction: column;
  overflow-x: hidden;
  gap: 17px;
  padding: 17px;
}

.logo-box{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 4px;
}

.logo-img{
  width: 50px;
  height: 50px;

  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.logo-title{
  font-weight: 900;
  font-size: 20px;
  line-height: 20px;
  transition: var(--transition);
  background-color: var(--black);
  background-image: var(--gradient);
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;

  &:hover,
  &:focus{
    background-image: var(--gr-hover);
  }
}

.delimeter{
  width: 100%;
  height: 2px;
  background: var(--gradient);
}

.drop-item-icon{
  transition: var(--transition);
  width: 25px;
  height: 25px;

  svg{
    width: 25px;
    height: 25px;
  }
}

.drop-item{
  display: flex;
  flex-direction: row;
  align-items: center;

  a{
    color: var(--black);
    transition: var(--transition);
    width: 100%;
    height: 100%;
    padding: 10px 0;
  }

  &:hover > a,
  &:focus > a{
    color: #ff7527;
  }

  &:hover .drop-item-icon,
  &:focus .drop-item-icon{
    color: #ff7527;
  }
}

.hero-main{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 250px 0;
  gap: 17px;
}

.hero-logo-box{
  transition: var(--transition);

  .logo-img{
    width: 100px;
    height: 100px;
  }

  .logo-title{
    font-size: 56px;
    font-weight: 900;
    line-height: 56px;
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    background: transparent;
  }
}

.hero-logo-box:hover,
.hero-logo-box:focus{
  transform: scale(1.02);
  -webkit-transform: scale(1.02);
}



.online-store{
  color: var(--white);
}

.hero-contact{
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.hero-contact-item{
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--transition);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);

  svg{
    width: 25px;
    height: 25px;
    transition: var(--transition);
  }

  &:hover svg,
  &:focus svg{
    color: #ff7527;
  }
}

.ben-box{
  background: var(--gradient);
  border-radius: 20px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
  gap: 17px;
  padding: 17px;

  &:hover,
  &:focus{
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
  }
}

.ben-row{
  margin-top: -100px;
  position: relative;
}

.ben-title{
  color: var(--white);
  font-weight: 700;
}

.ben-text{
  color: var(--white);
}

.dark-bg{
  background-color: var(--dark-bg);
  color: var(--white);
}

.ben-icon{
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;

  svg{
    width: 60px;
    height: 60px;
    color: #ff7527;
  }
}

.module{
  padding: 100px 0;
}

.open-hours{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}

.open-hours::before{
  position: absolute;
  content: '';
  top: -60px;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: var(--white);
  width: 1px;
  height: 50px;
}

.open-hours::after{
  position: absolute;
  content: '';
  bottom: -60px;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: var(--white);
  width: 1px;
  height: 50px;
}

.au-module{
  background: linear-gradient(to top, var(--hero));
  color: var(--white);
}

.nav-box-au{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 17px;
  padding: 17px;
}

.title{
  display: inline-flex;
  flex-direction: row;
  gap: 17px;
  align-items: center;
  justify-content: center;

  hr{
    opacity: 1.25;
    height: 2px;
    width: 60px;
    border: none;
    background: var(--gr-hover);
  }

  h3{
    font-size: 20px;
    line-height: 26px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--white);
  }
}

.au-img{
  display: none;
  height: 100%;
  padding: 17px;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  gap: 10px;
}

.au-img-main{
  width: 250px;
  height: 250px;
  border-radius: 100%;
  overflow: hidden;
  background: var(--gr-hover);
  padding: 4px;

  img{
    width: 100%;
    height: 100%;
    border-radius: 100%;
    object-fit: cover;
    transition: opacity 1s ease-in-out;
  }
}

.thumbnail{
  width: 100%;
  height: 100%;
  border-radius: 100%;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.thumbnail.active{
  background: var(--gr-hover);
  padding: 4px;
}

.au-img-thumbnails{
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;

  div{
    width: 50px;
    height: 50px;
  }
}

.thumbnail.active,
.thumbnail:hover {
  opacity: 1;
}

.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}

#au-block{
  display: none;
}

.au-trust{
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  gap: 17px;
}

.video-player{
  width: 100%;
  height: 400px;
  object-fit: cover;
  background: var(--gr-hover);
  padding: 4px;
}

.au-block{
  justify-content: center;
  height: 100%;
  align-items: center;
}

.trust-text{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;

  span{
    font-size: 24px;
    font-weight: 400;
    background: var(--gr-hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.main-col{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.main-box{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.main-col::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: var(--gradient);
}

.main-img{
  width: 100%;
  height: 300px;
  position: relative;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: var(--transition);
  }

  &:hover > img,
  &:focus > img{
    filter: grayscale(0);
  }
}

.content{
  text-align: center;
  display: none;
}

.main-title{
  text-align: center;

  h3{
    font-size: 24px;
    font-weight: 400;
    color: var(--white);
    transition: var(--transition);
    margin: 0;
  }

  &:hover > h3,
  &:focus > h3{
    transform: scale(1.03);
    -webkit-transform: scale(1.03);
  }
}

.main-desc{
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  justify-content: center;
  padding: 17px;
}

.main-price{
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  background: var(--gr-hover);
  font-size: 24px;
  font-weight: 600;
}

.main-btn{
  text-align: center;
}

.ho{
  background: url('snapshot/photos_header_66b71b4a0a71c2.49013663.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.ho::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.7;
}

.ho-box{
  position: relative;
  min-height: 300px;
  display: none;
}

.ho-item{
  width: 200px;
  height: 200px;
  border-radius: 100%;
  background: var(--gr-hover);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ho-1{
  position: absolute;
  top: 0;
  left: 0%;
}
.ho-2{
  position: absolute;
  top: 46%;
  left: 40%;
}
.ho-3{
  position: absolute;
  top: -14%;
  left: 74%;
}

.ho-ar{
  width: 500px;
  position: absolute;
}

.ho-ar1{
  top: -15%;
  left: 5%;
  transform: rotate(156deg);
}

.ho-ar2{
  top: -36%;
  left: 45%;
  transform: rotate(294deg);
}

.ho-num{
  font-size: 46px;
  font-weight: 500;
}

.qa-box{
  display: none;
  position: relative;
}

.faq-section{
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.question{
  cursor: pointer;
  background-color: var(--white);
  padding: 10px;
  color: var(--black);
}

.answer{
  color: var(--white);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.answer.open {
  max-height: 200px;
  padding: 10px;
}

.qa-title{
  height: 100%;
  display: flex;
  justify-content: center;
}

.slider {
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  margin: 0 auto;
  direction: ltr !important;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
  font-size: 1.2em;
  display: flex;
  flex-direction: column;
  gap:  24px;
}

.com-title{
  display: flex;
  flex-direction: column;

  hr{
    transform: rotate(90deg);
    background: white;
  }
}

.author{
  background: var(--gr-hover);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer{
  background-color: var(--black);
  color: var(--white);
  padding: 30px 0;
}

.form-module{
  background: url('snapshot/photos_header_66b71b4a8f4152.03730835.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.form-module::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0.7;
}

.form-row{
  position: relative;
}

.form{
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 17px;
}

.contact-page-form-box{
  width: 100%;
}

.contact-page-form-box > input,
.contact-page-form-box > textarea,
.input-j6477479,
.textarea-j6477479{
  width: 100%;
  box-sizing: border-box;
  background-color: var(--white);
  padding: 15px;
  border: none;
  border-radius: 20px;
}

.privacy{
  color: var(--white);
  transition: var(--transition);

  &:hover,
  &:focus{
    background: var(--gr-hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.footeer-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 17px;
}

.footer-privacy-box{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
  gap: 17px;
}

.footer-politik-privacy{
  a{
    color: var(--white);
    transition: var(--transition);
  }

  &:hover,
  &:focus{
    background: var(--gr-hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.column{
  display: flex;
  flex-direction: column-reverse;
}

.page-img{
  width: 100%;
  height: auto;
  position: relative;
  box-shadow: 0px -25px 20px -20px #ff7527, 25px 0 20px -20px #ff7527, 0px 25px 20px -20px #ff7527, -25px 0 20px -20px #ff7527;
  padding: 17px;
  
  img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.page-price{
  position: absolute;
  top: 0;
  right: 0;
  padding: 15px;
  background: var(--gr-hover);
  font-size: 24px;
  font-weight: 600;
}

.page-wr{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 17px;
}

.contact-box{
  display: flex;
  height: 100%;
  justify-content: center;
  flex-direction: column-reverse;
  gap: 17px;
}

.contact-page-item{
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0px -25px 20px -20px #ff7527, 25px 0 20px -20px #ff7527, 0px 25px 20px -20px #ff7527, -25px 0 20px -20px #ff7527;
  padding: 17px;
}

.map{
  height: 100%;
  width: 100%;

  iframe{
    object-fit: cover;
    width: 100%;
    height: 100%;
    border: none;
  }
}

.contact-link{
  color: var(--white);
  transition: var(--transition);
  word-break: break-all;

  &:hover,
  &:focus{
    background: var(--gr-hover);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.contact-adres{
  color: var(--white);
}

.rel-mod{
  background: linear-gradient(to top, var(--hero));
}

.rel-col{
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.rel-col::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: var(--gradient);
}

@media (max-width: 480px){
  .nav-box{
    width: 100%;
  }

  .menu-item{
    a{
      padding: 10px;
    }
  }
}

@media(max-width: 575px){
  .hero-logo-box{
    flex-direction: column;
    align-items: center;

    .logo-title{
      font-size: 26px;
      text-align: center;
    }

    .logo-img{
      width: 70px;
      height: 70px;
    }
  }

  .ho-wr{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .ho-item{
    position: relative !important;
    left: 0 !important;
    margin: 0 auto;
  }
}

@media (min-width: 576px) {
  .wrapper {
    max-width: 540px;
  }

  .au-img-thumbnails{
    div{
      width: 100px;
      height: 100px;
    }
  }

  .page-img{
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 767px){
  .ho-3 {
    position: absolute;
    top: -14%;
    left: 61%;
  }

  .ho-2 {
    position: absolute;
    top: 46%;
    left: 35%;
  }

  .qa-row{
    flex-direction: column !important;
  }

  .form-row{
    flex-direction: column-reverse !important;
  }
}

@media (min-width: 768px){
  .wrapper {
    max-width: 720px;
  }

  .row-2,
  .row-3,
  .row-4{
    flex-direction: row;
  }

  .col-2,
  .col-3,
  .col-4{
    width: calc(50% - 17px);
  }

  .au-img{
    flex-direction: row;
  }

  .au-img-thumbnails{
    flex-direction: column;
  }

  .au-img-thumbnails{
    div{
      width: 70px;
      height: 70px;
    }
  }

  .slider {
    width: 80%;
  }

  .footer-privacy-box{
    flex-direction: row;
  }

  .page-img{
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 991px){
  .ho-ar{
    display: none;
  }
}

@media (min-width: 992px){
  .wrapper {
    max-width: 960px;
  }

  .col-4{
    width: calc(25% - 17px);
  }

  .col-3{
    width: calc((100% / 3) - 17px);
  }

  .main-col{
    --w-1: calc((100% / 3) - 17px);
    --w-2: calc(50% - 17px);
    width: var(--w-2) !important;
  }

  .au-img-main{
    width: 350px;
    height: 350px;
  }

  .au-img-thumbnails{
    div{
      width: 100px;
      height: 100px;
    }
  }

  .ho-3{
    left: 76%;
  }
}

@media (min-width: 1200px){
  .wrapper {
    max-width: 1170px;
  }

  .au-img-main{
    width: 400px;
    height: 400px;
  }

  .page-img{
    width: 400px;
    height: 400px;
  }
}

.button-1 {
  padding: 15px 20px;
  font-size: 16px;
  background: transparent;
  border: none;
  position: relative;
  color: #ff0000;
  z-index: 1;
  text-align: center;
  display: inline-block;
}

.button-1::after,
.button-1::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all .4s;
}

.button-1::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: #ffaa00;
  border-radius: 10px;
}

.button-1::after {
  transform: translate(10px, 10px);
  width: 35px;
  height: 35px;
  background: #7b72722e;
  backdrop-filter: blur(5px);
  border-radius: 50px;
}

.button-1:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}

.button-1:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.button-1:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}

.button-2 {
  padding: 1.3em 3em;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #000;
  background: #fff;
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
  outline: none;
  display: inline-block;
  text-align: center;
}

.button-2:hover,
.button-2:focus {
  background: var(--gr-hover);
  box-shadow: 0px 15px 20px rgba(229, 229, 46, 0.4);
  color: #fff;
  transform: translateY(7px);
}

.button-3 {
  position: relative;
  padding: 15px;
  text-align: center;
  display: inline-flex;
  border-radius: 45px;
  border: none;
  background-color: rgb(38 33 119);
  color: white;
  box-shadow: 0px 10px 10px rgb(210, 187, 253) inset,
  0px 5px 10px rgba(5, 5, 5, 0.212),
  0px -10px 10px rgb(124, 54, 255) inset;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.button-3::before {
  width: 70%;
  height: 2px;
  position: absolute;
  background-color: rgba(250, 250, 250, 0.678);
  content: "";
  filter: blur(1px);
  top: 7px;
  border-radius: 50%;
}

.button-3::after {
  width: 70%;
  height: 2px;
  position: absolute;
  background-color: rgba(250, 250, 250, 0.137);
  content: "";
  filter: blur(1px);
  bottom: 7px;
  border-radius: 50%;
}

.button-3:hover {
  animation: jello-horizontal 0.9s both;
}

@keyframes jello-horizontal {
  0% {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, 0.95, 1);
  }

  100% {
    transform: scale3d(1, 1, 1);
  }
}

.button-4 {
  background: linear-gradient(140.14deg, #000000 15.05%, #d6361f 114.99%)
      padding-box,
    linear-gradient(142.51deg, #ff9465 8.65%, #af1905 88.82%) border-box;
  border-radius: 7px;
  border: 2px solid transparent;

  text-shadow: 1px 1px 1px #00000040;
  box-shadow: 8px 8px 20px 0px #45090059;

  padding: 10px 40px;
  line-height: 20px;
  cursor: pointer;
  transition: all 0.3s;
  color: white;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  display: inline-block;
}

.button-4:hover {
  box-shadow: none;
  opacity: 80%;
}

.button-5 {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  background-color: #11984b;
  border: none;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.button-5::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-color: #57575700;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  z-index: -1;
}

.button-5::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
  background-size: 30px 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.button-5:hover {
  background-color: #23cc3f;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
}

.button-5:hover::before {
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.button-5:hover::after {
  opacity: 1;
}

