/* montserrat-600 - latin */
@font-face {
font-family: 'Satoshi';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url('/assets/fonts/Satoshi-Regular.otf'), 
}

/* montserrat-700 - latin */
@font-face {
font-family: 'Satoshi';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url('/assets/fonts/Satoshi-Medium.otf'), 
}

/* montserrat-800 - latin */
@font-face {
font-family: 'Satoshi';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url('/assets/fonts/Satoshi-Bold.otf'), 
}

/* montserrat-900 - latin */
@font-face {
font-family: 'Satoshi';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url('/assets/fonts/Satoshi-Black.otf'), 
}
@font-face {
font-family: 'kolton';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url('/assets/fonts/kolton-monica.otf'), 
}
:root {
--bolt-black: #222;
--white: #ffffff;
--sol-black: #454545;
--background-grey: #FBFBFB;
--button-grey: #f5f5f5;
--inactive-text: #A3A3A3;
--booked-red: #FFE6E6;
}
html{
    scroll-behavior: smooth;
    position: relative;
    overflow-x: hidden;
}
* {
box-sizing: border-box;
margin: 0px;
font-family: 'Satoshi', serif;
letter-spacing: -0.03em;
color: var(--bolt-black);
}

body{
    overflow-x: hidden;
    width: 100vw;
    position: relative;
}
.fade-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.4s 0.3s ease-in, transform 0.4s 0.3s ease-in;
  
}

/* when visible */
.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s 0.3s ease-in, transform 0.7s 0.3s ease-in;
}
h2{
    font-size: 55px;
    line-height: 55px;
    letter-spacing: -0.05em;
    font-weight: 700;
    text-align: center;
}

h3{
    letter-spacing: -0.05em;
    font-weight: 700;
}
h4{
    letter-spacing: -0.05em;
}
p{
    margin-top: 10px;
    font-size: 20px;
    
}


.navigation-bar-mobile{
    display: none;
    height: 0px;
    width: 0px;
    overflow: hidden;
}
.navigation-bar{
    height: 100px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: end;
    justify-content: center;
    transition: all 0.6s ease-in-out;
}
.navigation-mobile-burger{
    position: absolute;
    height: 60px;
    width: 60px;

    right: 20px;
    top: 10px;
    
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(13.149999618530273px);
    -webkit-backdrop-filter: blur(13.149999618530273px);
    border: #ffffff83 1px solid;
    border-radius: 30px;
    padding: 18px;
    display: none;
}
.navigation-mobile-burger img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-filter: invert(1);
}
.navigation-bar.opaque{
    height: 80px;
    background: rgba(255, 255, 255, 0.63);
    backdrop-filter: blur(13.149999618530273px);
    -webkit-backdrop-filter: blur(13.149999618530273px);
    align-items: center;
}
.navigation-bar.opaque .navigation-buttons-holder{
    align-items: center;
    
}
.navigation-bar.opaque .navigation-buttons-holder a{
    color: #222;
}
.navigation-bar.opaque .bolt-logo{
    height: 45px;
}
.navigation-bar.opaque .contact-bubble{
    margin-top: 0px;
    
}
.navigation-buttons-holder{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 80px;
}
.navigation-buttons-holder a{
    text-decoration: none;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    
    text-shadow: #00000065 0px 0px 10px;
    border: #ffffff00 solid 1px;
    padding-inline: 18px;
    padding-block: 7px;
    border-radius: 20px;
    margin-inline: 20px;
    transition: all 600ms ease-in-out;
    
}

.navigation-buttons-holder a.contact-bubble{
    flex: none;
    height: 60px;
    width: 16%;
    margin-top: 5px;
    border-radius: 30px;
    background-color: #ffffff34;
    border: #ffffff7e solid 1px;
    backdrop-filter: blur(5px);
    margin-right: 2.5%;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-row{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

}
.contact-arrow{
    width: 16px;
    height: 16px;
    background: url('/assets/images/arrow-dark.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.navigation-buttons-holder a.first-button{
    margin-left: auto;
}
.navigation-buttons-holder a.last-button{
    margin-right: auto;
}

.navigation-buttons-holder a.active-nav{
    background-color: #ffffff34;
    border: #ffffff7e solid 1px;
    backdrop-filter: blur(5px);
}

.navigation-buttons-holder a.bolded{
    font-weight: 700;
}
.bolt-logo{
    transition: all 0.6s ease-in-out;
    height: 55px;
    width: 12%;
    margin-left: 50px;
    margin-bottom: 10px;
    margin-right: auto;
    flex: none;
        position: relative;
    }
    img.color-logo{
        position: absolute;
        top: 0px;
        left: 0px;
        height: 100%;
        width: auto;
        opacity: 0;
        transition: all 0.3s ease-in-out;
    }
    .navigation-bar.opaque img.color-logo{
        opacity: 1;
    }
.bolt-logo img{
    height: 100%;
    width: auto;
}

.bolt-cameleon{
    height: 40px;
    width: auto;
    margin-right: 50px;
    margin-left: auto;
    flex: none;
}
.bolt-cameleon img{
    height: 100%;
    width: auto;
}


.hero-section{
    width: 100%;
    margin-top: -120px;
    
}
.hero-container{
    min-height: 90vh;
    margin-top: 2.5vw;
    width: 95%;
    margin-inline: 2.5%;
    background: url(/assets/images/hero-bg.png);
    background-size: cover;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 150px;
    

}
.character-container{
    position: absolute;
    bottom: 0px;
    left: 5%;
    width: 95%;

    display: flex;
    align-items: end;
    justify-content: space-between;
    z-index: 10;
    overflow-x: hidden;
    overflow-y: hidden;
}
.thank-you-hero .character-container{
    position: absolute;
    bottom: 0px;
    left: 10%;
    width: 80%;

    display: flex;
    align-items: end;
    justify-content: space-between;
}
.hero-mascot-image{
    width: 320px;
    height: 500px;
    margin-bottom: -1px;
} 
.hero-mascot-image.pink-mascot{
    width: 400px;
    height: 500px;
    margin-bottom: -7px;
}
.hero-mascot-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}
.hero-container h1{
    font-size: 100px;
    width: 95%;
    line-height: 120px;
    font-family: 'kolton', sans-serif;
    color: #fff;
    text-align: center;
    margin-bottom: auto;
    
}
.hero-container.thank-you-hero h1{
    margin-bottom: 20px;
    
    width: 95%;
}
.hero-container.thank-you-hero p{
    width: 80%;
    text-align: center;
    color: #fff;
    margin-bottom: 0px;
    font-size: 20px;
}
.thank-you-socials{
    margin-bottom: auto;
    z-index: 20;
}
.thank-you-socials .instagram-logo img{
    filter: invert(1);
    -webkit-filter: invert(1);
}
.hero-container.thank-you-hero a{
    
    
    color: #fff;
    font-weight: 800;
    text-decoration: underline;
}
.phone-screenshot{
    width: 30%;
    height: 20vw;
    margin-top: 100px;
    overflow-y: hidden;
}
.phone-screenshot img{
    transform: translateY(0%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: all 0.7s 0.3s ease-out;
}
.phone-screenshot img.under{
    transform: translateY(100%);
    transition: all 0.7s ease-out;
}
.phone-screenshot img.above{
    transform: translateY(50%);
    transition: all 0.7s ease-out;
}


.quote-section{
    width: 100%;
    
}
.quote-container{
    width: 70%;
    height: 90vh;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.quote-container h2{
    font-size: 80px;
    text-align: center;
    line-height: 80px;
    font-weight: 700;
}
.quote-container span{

    background: linear-gradient(90deg, #FFB773 0%, #FEABE6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}
.quote-container p{
        
        margin-top: 14px;
    }
    
    .quote-container p span{
        color: #000;
        font-weight: 800;
        margin-top: 14px;
    }



.works-section{
    width: 100%;
    padding-block: 0px;
    background-color: #ffffff;
    background: url(/assets/images/works-bg.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.works-container{
    width: 80%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.works-container p{
    text-align: center;
}
.works-cards-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center; 
    margin-block: 30px;
    gap: 30px;
}
.works-card{
    width: 100%;
    background: #ffffff84;
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    border-radius: 10px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    max-width: 400px;
    box-shadow: 2px 2px 5px #00000019;
}

.card-number-container{
    width: 40px;
    height: 40px;
    border-radius: 7px;
    background-color: #ffffff88;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: solid 2px #ffffffaa;
    
}
.works-card h3{
    margin-top: 10px;
    font-size: 27px;
}
.works-card p{
    margin-top: 10px;
    font-size: 17px;
    text-align: left;
}



.features-section{
    width: 100%;
    padding-block: 100px;
    overflow-x: hidden;
}
.features-container{
    width: 90%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.features-container p{
    text-align: center;
    width: 80%;
}
.features-row-3{
    width: 100%;
    display: flex;
    gap: 20px;
    margin-top: 40px;
    align-items: start;
    justify-content: center;
}
.feature-card{
    background-color: #F6f6f6;
    border-radius: 0px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px;
    opacity: 0;
    height: 100%;
    width: 100%;
    transition: opacity 0.4s 0.3s ease-in, transform 0.4s 0.3s ease-in;
    border-radius: 12px;
}
.feature-card img{
    height: 100%;
    width: 100%;
    object-fit: contain;
    padding: 0px;
    border-radius: 12px;
}
.feature-card p{
    flex: none;
    font-weight: 700;
    line-height: 17px;
}
.features-column-0{
    width: 20%;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 20px;
}
.features-column-1{
    width: 35%;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.features-column-2{
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.feature-row-2{
    width: 100%;
    display: flex;
    gap: 20px;
}
.feature-card-0{
    width: 100%;
    height: 17vw;
}
.feature-card-1{
    height: 14vw;
    width:70%;
}
.feature-card-2{
    height: 23vw;
    width: 100%;
}
.feature-card-3{
    height: 17vw;
    width: 100%;
}
.feature-card-4{
    height: 17vw;
    width: 100%;
}
.feature-card-6{
    width: 100%;
    height: 17vw;
}
.feature-card-5{
    height: 14vw;
    width: 70%;
}



/* when visible */
.feature-card.visible {
  opacity: 1;
  
  transition: opacity 0.7s 0.3s ease-in, transform 0.7s 0.3s ease-in;
}





.wallet-section{
    width: 100%;
    padding-block: 60px;
}
.wallet-container{
    width: 80%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
}
.wallet-benefits-row{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;

}
.wallet-card-container{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.wallet-card{
    width: 100%;
    height: 500px;
    perspective: 1000px;
}
.wallet-card img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* THIS is the animation magic */
  animation: float-3d 6s ease-in-out infinite;
  
  /* smoother rendering */
  transform-style: preserve-3d;
  will-change: transform;
}
.benefits-column{
    width: 100%;
    align-items: center;
    justify-content: center;
}
.benefits-column h3{
    font-size: 23px;
    line-height: 22px;
}
.benefits-column p{
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 50px;
    padding-left: 40px;
}
.check-title-row{
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 10px;
    margin-top: 30px ;
    margin-bottom: 10px;
}
.check{
    height: 16px;
    width: 30px;
}

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



@keyframes float-3d {
  0% {
    /* Start: Slightly down, tilted slightly left */
    transform: translateY(0px) rotateX(0deg) rotateY(-5deg);
    /* box-shadow: 0 5px 15px 0px rgba(0,0,0,0.1); */
  }
  50% {
    /* Middle: Floats UP, tilts slightly right. 
       This change in rotateY makes the edges look like they are moving 
       closer/further from the screen. */
    transform: translateY(-20px) rotateX(5deg) rotateY(5deg);
    
    /* Shadow gets softer and larger as card "lifts" up */
    /* box-shadow: 0 25px 30px 5px rgba(0,0,0,0.15); */
  }
  100% {
    /* End: Return to start to create the infinite loop */
    transform: translateY(0px) rotateX(0deg) rotateY(-5deg);
    /* box-shadow: 0 5px 15px 0px rgba(0,0,0,0.1); */
  }
}



.faq-section{
    position: relative;
    display: flex;
    flex-direction: column;
    margin-inline: 30px;
    margin-top: 30px;
    width: 85%;
    margin-inline: auto;
    z-index: 100;
}
.faq-top{
    position: relative;
   z-index: 100; 
   margin-top: -200px;
}
.faq-image-container{
    width: 40%;
    height: 35vw;
    position: relative;
    margin-left: auto;
    margin-right: 50px;
}
.faq-image-container img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.faq-categories-container{
    position: absolute;
    top: 20px;
    right: -40px;
    display: flex;
    flex-direction: column;
}
.faq-category{
    width: 350px;
    height: auto;
    padding: 15px;
    padding-inline: 20px;
    border: 2px solid rgba(255, 255, 255, 0.30);
    background: #d9d3d34f;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(13px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 28px;
    margin-top: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    transform: translateX(0px);
}
.faq-category:hover{
    transform: translateX(20px);
}
.faq-category.active-category{
    transform: translateX(20px);
}
.dropdown{
display: none;
}
.right-arrow{
    height: 30px;
    width: 30px;
    background: url("/assets/images/arrow-right.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.faq-questions-section{
    width: 100%;
    margin-inline: auto;
    padding-top: 0px;
    transition: all 600ms ease-in-out;
    opacity: 1;
    margin-top: 20px;
}
.faq-questions-section.blink{
    opacity: 0;
} 
.faq-question-container{
    border-bottom: solid 2px #eee;
    width: 100%;
    padding-inline: 30px;
    padding-block: 15px;
    display: flex;
    flex-direction: column;
    align-items: start;
    
    cursor: pointer;
}
.faq-q-arrow-row{
    display: flex;
    margin-block: 5px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.faq-question-container p{
    font-size: 22px;
    font-weight: 700;

}
.faq-header{
    text-align: left;
}
.faq-question-container b{
    height: 0px;
    color: white;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    overflow-y: hidden;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    transition: all 300ms ease-in-out,
    color 300ms 0ms ease-in-out;
}
.faq-question-container.clicked b{
    height: 100px;
    color: #222;
    transition: all 600ms ease-in-out,
    color 600ms 400ms ease-in-out;
}
.downwards-arrow{
    width: 20px;
    height: 20px;
    background: url("/assets/images/arrow-dark.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    rotate: 180deg;
    transition: all 600ms;
}
.faq-question-container.clicked .downwards-arrow{
    rotate: 0deg;
}


.instagram-section{
    width: 100%;
    position: relative;
}
.socials-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}
.instagram-cover{
    width: 100%;
    background-color: #fff;
    box-shadow: #22222225 -10px -10px 10px;
    padding: 10px;
    position: absolute;
    left: 0px;
    bottom: -60px;
    z-index: 100;
    /* height: 150px; */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 230px;
    gap: 20px;
}
.instagram-logo{
    width: 50px;
    height: 50px;
}
.instagram-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.instagram-pictures{
    display: flex;
    align-items: top;
    justify-content: center;
    
    padding-top: 200px;
    margin-bottom: 100px;
    
}
.instagram-pictures img{
    width: 15%;
    margin-left: -20px;
    transition: all 0.5s linear;
    box-shadow: 2px 2px 10px #00000043;
}
.instagram-pictures img:hover{
    transform: translateY(-120px);
}
.instagram-pictures img.lower{
    margin-top: 40px;
}
.instagram-pictures img:first-of-type{
    margin-left: 0px;
}




.banner-section{
    width: 100%;
    margin-top: 100px;
    background: url("/assets/images/banner-bg.png");
    background-size: cover;
    background-position: center;
    position: relative;

}

.banner-container{
    width: 60%;
    margin-inline: auto;
    padding-block: 100px;
    display: flex;
    flex-direction: column;
    position: relative;
    
}
.bottom-banner-mascot{
    position: absolute;
    right: 30px;
    bottom: 0px;
    height: 70%;
    width: 20%;
    /* transform: scaleX(-1); */
}
.bottom-banner-mascot img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom left;
}
.banner-container h2{
    font-family: 'kolton', sans-serif;
    
}
.banner-container p{
    text-align: center;
    margin-top: 10px;
}
.button-white{
    height: 60px;
    border-radius: 35px;
    padding-right: 5px;
    padding-left: 20px;
    display: flex;
    align-items: center;
    margin-inline: auto;
    margin-top: 40px;
    border: 0.5px solid rgba(255, 255, 255, 0.80);
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(1px);
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 1px 5px #00000050;
}
.button-white:hover{
    background: rgba(255, 255, 255, 0.70);
}

.button-white.navigation:hover{
    background: rgba(255, 255, 255, 0.70);
}
.button-white.navigation{
    height: 60px;
    border-radius: 35px;
    padding-right: 5px;
    margin-top: 0px;
    margin-right: 10px;
    padding-left: 20px;
    background: rgba(255, 255, 255, 0.30);
}
.button-white.navigation b{
    font-weight:800;
    font-size: 17px;
    margin-left: 0px;
    color: #fff;
    text-shadow: 0px 2px 4px #00000063;
}
.button-white.colorful.navigation b{
    font-weight:700;
    text-shadow: 0px 2px 4px #00000000;
}
.button-white.colorful:hover{
    background: linear-gradient(90deg, rgba(255, 183, 115, 0.70) 0%, rgba(254, 172, 229, 0.70) 100%), rgba(255, 255, 255, 0.50);
}
.button-white.colorful{
    
    background: linear-gradient(90deg, rgba(255, 183, 115, 0.50) 0%, rgba(254, 172, 229, 0.50) 100%), rgba(255, 255, 255, 0.50);
    text-shadow: none;
}
.button-white.new-colored:hover{
    background: linear-gradient(90deg, rgba(255, 183, 115, 0.70) 0%, rgba(254, 172, 229, 0.70) 100%), rgba(255, 255, 255, 0.50);
}
.button-white.new-colored{
    
    background: linear-gradient(90deg, rgba(255, 183, 115, 0.50) 0%, rgba(254, 172, 229, 0.50) 100%), rgba(255, 255, 255, 0.50);
    
}
@media (max-width: 767px) {

    .button-white.new-colored:hover{
        background: rgba(255, 255, 255, 0.70);
    }
    .button-white.new-colored{
        
        background:rgba(255, 255, 255, 0.30);
        
    }

}


.button-white-arrow.navigation{
    height: 50px;
    width: 50px;
    border-radius: 25px;
    padding: 12px;
    margin-left: 7px;
    background: rgba(255, 255, 255, 0.20);
}
.colorful .button-white-arrow.navigation{
    height: 50px;
    width: 50px;
    border-radius: 25px;
    padding: 12px;
    margin-left: 7px;
    background: rgba(255, 255, 255, 0.50);

}
.new-colored .button-white-arrow.navigation{
    height: 50px;
    width: 50px;
    border-radius: 25px;
    padding: 12px;
    margin-left: 7px;
    background: rgba(255, 255, 255, 0.50);

}
.button-white-arrow{
    height: 50px;
    width: 50px;
    border-radius: 30px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.5px solid rgba(255, 255, 255, 0.40);
    background: rgba(255, 255, 255, 0.481);
    backdrop-filter: blur(1px);
    margin-left: 15px;
}
.button-white-arrow b{
    font-weight: 700;
    font-size: 20px;
    text-shadow: #ffffff45 0px 0px 5px;
}
.button-arrow{
    width: 100%;
    height: 100%;
    margin-left: 5px;
}
.button-arrow img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}



.venues-section{
    width: 100%;
    margin-top: 0px;
}
.venues-container{
    width: 85%;
    margin-inline: auto;
    padding-block: 100px;
    display: flex;
    flex-direction: column;
    background: url(/assets/images/fanned-bg.png);
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    margin-bottom: 50px;
}
.venues-container p{
    width: 80%;
    margin-inline: auto;
    text-align: center;
    font-weight: 700;
}
.fanned-venues-container{
    display: flex;
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative;
    height: 250px;
}
.fanned-venue-card{
    width: 200px;
    height: 300px;
    position: absolute;
    left: 50%;
    z-index: 4;
}
.fanned-venue-card:hover{
    z-index: 9000;
}
    
.fanned-venue-card img{
    width: 200px;
    height: 300px;
    object-fit: contain;
    transition: all 0.3s ease-in-out;
    transform: translateY(0px);
}
.fanned-venue-card img:hover{
transform: translateY(-50px);
}

#fan0{
    transform: translateX(-400px) rotate(-12deg) translateY(20px);
    
}
#fan1{
    transform: translateX(-300px) rotate(-10deg) translateY(10px);
}
#fan2{
    transform: translateX(-200px) rotate(-6deg) translateY(5px);
}
#fan3{
    transform: translateX(-100px) rotate(-0deg) translateY(0px);
}
#fan4{
    transform: translateX(10px) rotate(6deg) translateY(5px);
}
#fan5{
    transform: translateX(100px) rotate(10deg) translateY(10px);
}
#fan6{
    transform: translateX(200px) rotate(12deg) translateY(20px);
}
#fan7{
    transform: translateX(300px);
}


.checkout-section{
    width: 100%;
    margin-top: 100px;
}
.checkout-container{
    width: 85%;
    margin-inline: auto;
    padding-block: 100px;
    padding-bottom: 0px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(242, 242, 242, 0.00) 42.8%, #F0F0F0 100%);
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    margin-bottom: 50px;
}
.heading-description-row{
    width: 90%;
    margin-inline: auto;
    display: flex;
    margin-bottom: 100px;
}
.heading-description-row h2{
    text-align: left;
    width: 100%;
}
.heading-description-row p{
    text-align: left;
    width: 100%;
    margin-top: 0px;
}
.checkout-images-row{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: space-between;
    gap: 30px;
    height: 60vh;
}
.venue-cards-image{
    width: 80%;
    height: auto;
}
.venue-cards-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    border-radius: 0px 0px 0px 30px;
}
.checkout-screenshot-image{
    width: 60%;
    margin-inline: auto;
}
.checkout-screenshot-image img{
    margin-inline: auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}
.mascot-image{
    width: 80%;
    
}
.mascot-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;

}



.business-section{
    width: 100%;
    margin-top: 30px;
}
.business-container{
    width: 85%;
    margin-inline: auto;
    padding-block: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #f9f9f9, #F9F9F9 100%);
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    margin-bottom: 50px;
}
.description-button-column{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: start;
    justify-content: start;
}
.button-white.colorful.side{
    margin-left: 0px;
}
.benefits-row-container{
    width: 90%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

}
.benefit-card{
    width: 100%;
    padding: 20px;
    stroke: #fff solid 3px;
    background-color: #fff;
    border-radius: 10px;
    height: 450px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s 0.1s ease-in-out;
}
.benefit-card.active{
     background-color: #fff;
    background: url(/assets/images/bussiness-bg.png), #fff;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    height: 450px;
    width: 200%;
    transition: all 0.3s ease-in-out;
}
.benefit-card.active b{
    color: #fff;
}
.benefit-card.active p{
    display: block;
}
.benefit-card b{
    font-size: 80px;
    color: #e1e1e1;
}
.benefit-logo{
    height: 50px;
    width: 50px;
    margin-top: auto;
    margin-bottom: 20px;
}
.benefit-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.benefit-card h3{
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 10px;
}
.benefit-card p{
    display: none;
    line-height: 20px;
    margin-bottom: 20px;
    font-size: 18px;
}
.popup-banner-section.hidden{
    display: none;
}
.popup-banner-section{
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: #ffffffbb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}
.popup-container{
    width: 1100px;
    height: 600px;
    
    background-color: #fff;
    flex: none;
    border-radius: 10px;
    display: flex;

    position: relative;
    box-shadow: 0px 0px 10px #22222225;
}
.popup-container img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}
.popup-image-container{
    width: 63%;
    height: 100%;
    display: flex;
    flex: none;
    background: url("/assets/images/hero-bg.png");
    background-position: center;
    background-size: cover;
    align-items: center;
    justify-content: center;
    border-radius: 10px 0px 0px 10px;

}
.popup-image-container h2{
    font-family: "kolton", serif;
    color: #fff;
    width: 90%;
    margin-inline: auto;
    line-height: 65px;
}
.fields-container{
    width: 37%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-inline: 20px;
}
.fields-container p{
    font-size: 14px;
    font-weight: 700;
}

input[type=text] {
  
  height: 50px;
  min-height: 50px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 15px;
  border: none;
  background-color: #ffffffaa;
  border: solid 2px var(--button-grey); 
  margin-bottom: 20px;
  color: black;
  font-weight: 700;
  box-shadow: 1px 1px 2px#00000030 ;
}
input[type=text].sidebar{
  margin-bottom: 10px;
  font-weight: 600;
}
input[type=number] {
  
  height: 50px;
  min-height: 50px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 15px;
  border: none;
  background-color: #ffffff53;
  border: solid 2px var(--button-grey); 
  margin-bottom: 20px;
  color: black;
  font-weight: 700;
  box-shadow: 1px 1px 2px#00000030 ;
}
input[type=number].sidebar{
  margin-bottom: 10px;
  font-weight: 600;
}
input::placeholder {
  color: #222; /* Replace with your desired color */
  opacity: 1;  /* Important for Firefox */
  font-weight: 700;
}
/* Chrome, Edge, Safari */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
.close-button{
    width: 18px;
    height: 18px;
    position: absolute;
    right: 18px;
    top: 18px;
    
    z-index: 10000;
}




.network-section{
    width: 85%;
    margin-top: 150px;
    margin-bottom: 120px;
    margin-inline: auto;
    position: relative;
    max-width: 1200px;
    margin-inline: auto;
}

.network-section img{
    width: 100%;
    height: auto;
    opacity: 0;
    
}

.network-section .socials-row img{
    
    opacity: 1;
    
}
.network-images{
    position: absolute;
    width: 125px;
    height: 150px;
    background-color: #eee;
    border-radius: 10px;
    top: 0px;

    opacity: 0;
    box-shadow: 1px 1px 5px #00000075;
    
}
.network-images.appear{
    opacity: 1;
}
.floating-text{
    width: 50%;
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    display: flex;
}
.network-section h2{
    
    font-size: 40px;
    text-align: center;
    line-height: 40px;

}
.floating-text b{
    

    text-align: center;


}
.network-images:nth-of-type(1){
    margin-left: 10px;
    margin-top: 60px;
    
    transition: all 700ms 000ms ease-in-out;
}
.network-images:nth-of-type(2){
    margin-left: 10px;
    margin-top: 220px;

    transition: all 700ms 100ms ease-in-out;
}
.network-images:nth-of-type(3){
    margin-left: 145px;
    margin-top: 10px;

    transition: all 700ms 200ms ease-in-out;
}
.network-images:nth-of-type(4){
    margin-left: 145px;
    margin-top: 170px;

    transition: all 700ms 300ms ease-in-out;
}
.network-images:nth-of-type(5){
    margin-left: 280px;
    margin-top: 70px;

    transition: all 700ms 400ms ease-in-out;
}
.network-images:nth-of-type(6){
    margin-left: 415px;
    margin-top: 20px;

    transition: all 700ms 500ms ease-in-out;
}
.network-images:nth-of-type(7){
    margin-left: 550px;
    margin-top: 50px;

    transition: all 700ms 600ms ease-in-out;
}
.network-images:nth-of-type(8){
    margin-left: 685px;
    margin-top: 20px;

    transition: all 700ms 700ms ease-in-out;
}
.network-images:nth-of-type(9){
    margin-left: 820px;
    margin-top: 85px;

    transition: all 700ms 800ms ease-in-out;
}
.network-images:nth-of-type(10){
    margin-left: 955px;
    margin-top: 10px;

    transition: all 700ms 900ms ease-in-out;
}
.network-images:nth-of-type(11){
    margin-left: 955px;
    margin-top: 170px;

    transition: all 700ms 1000ms ease-in-out;
}
.network-images:nth-of-type(12){
    margin-left: 1090px;
    margin-top: 70px;

    transition: all 700ms 1100ms ease-in-out;
}
.network-images:nth-of-type(13){
    margin-left: 1090px;
    margin-top: 230px;

    transition: all 700ms 1200ms ease-in-out;
}
.network-images img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    border-radius: 5px;
}

.only-mobile{
    display: none;
}

@media (min-width: 1024px) and (max-width: 1400px) {


    h2{
        font-size: 50px;
        line-height: 50px;
        letter-spacing: -0.05em;
        font-weight: 700;
    }

    h3{
        letter-spacing: -0.05em;
        font-weight: 700;
    }
    h4{
        letter-spacing: -0.05em;
    }
    p{
        font-size: 20px;
        
    }



    .navigation-bar-mobile{

        display: none;
        height: 0px;
        width: 0px;
        overflow: hidden;
    }
    .navigation-bar{
        height: 100px;
        position: sticky;
        top: 0;
        left: 0;
        z-index: 999;
        display: flex;
        align-items: end;
        justify-content: end;
        transition: all 0.6s ease-in-out;
    }
    .navigation-bar.opaque{
        background: rgba(255, 255, 255, 0.63);
        backdrop-filter: blur(13.149999618530273px);
        -webkit-backdrop-filter: blur(13px);
        align-items: center;
        justify-content: center;
    }
    .navigation-bar.opaque .navigation-buttons-holder{
        align-items: center;
    }
    .navigation-buttons-holder{
        width: 80%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-left: 10px;
    }
    .navigation-buttons-holder a{
        text-decoration: none;
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        text-shadow: #ffffff95 0px 0px 30px;
        margin-inline: 20px;
    }
    .bolt-logo{
        transition: all 0.6s linear;
        height: 50px;
        width: auto;
        margin-left: 30px;
        margin-right: auto;
        flex: none;
        position: relative;
    }
    img.color-logo{
        position: absolute;
        top: 0px;
        left: 0px;
        height: 100%;
        width: auto;

    }
    .bolt-logo img{
        height: 100%;
        width: auto;
        transition: all 0.6s linear;
    }
    
    .bolt-cameleon{
        height: 35px;
        width: auto;
        margin-right: 30px;
        margin-left: auto;
        flex: none;
    }
    .bolt-cameleon img{
        height: 100%;
        width: auto;
    }



    .hero-section{
        width: 100%;
        margin-top: -100px;
    }
    .hero-container{
        min-height: 90vh;
        margin-top: 2vw;
        width: 96%;
        margin-inline: 2%;
        background: url(/assets/images/hero-bg.png);
        background-size: cover;
        border-radius: 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 150px;
    }


    .hero-container h1{
        font-size: 90px;
        line-height: 100px;
        font-family: 'kolton', sans-serif;
        color: #fff;
        text-align: center;
    }

    .phone-screenshot{
        width: 30%;
        height: 20vw;
        margin-top: 100px;
    }
    .phone-screenshot img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }

    .hero-mascot-image{
        width: 300px;
        height: 600px;
    }
    .hero-mascot-image.pink-mascot{
        width: 370px;
        height: 500px;
        margin-bottom: -7px;
    }
    .quote-section{
        width: 100%;
        height: 90vh;
    }   
    .quote-container{
        width: 80%;
        margin-inline: auto;
    }
    .quote-container h2{
        font-size: 70px;
        text-align: center;
        line-height: 70px;
    }

    




    .works-section{
    width: 100%;
    padding-block: 0px;
    background-color: #ffffff;
}
.works-container{
    width: 90%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.works-container p{
    text-align: center;
}
.works-cards-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center; 
    margin-block: 30px;
    gap: 20px;
}
.works-card{
    width: 100%;
    background: #ffffff84;
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    border-radius: 10px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    max-width: 400px;
}

.card-number-container{
    width: 40px;
    height: 40px;
    border-radius: 7px;
    background-color: #ffffff77;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    
}
.works-card h3{
    margin-top: 10px;
    font-size: 27px;
}
.works-card p{
    margin-top: 10px;
    font-size: 17px;
    text-align: left;
}


.feature-card{
    border-radius: 10px;
    
}
.features-row-3{
    gap: 15px;
}
.feature-row-2{
    gap: 15px;
}
.features-column-0{
    gap: 15px;
}
.features-column-1{
    gap: 15px;
}
.features-column-2{
    gap: 15px;
}
.feature-card{
    background-color: #F6f6f6;
    border-radius: 12px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
}
.feature-card img{
    height: 100%;
    width: 100%;
    object-fit: contain;
    padding: 0px;
    
}
.feature-card p{
    flex: none;
    font-weight: 700;
    line-height: 15px;
    font-size: 17px;
}


.instagram-cover{

    bottom: -70px;
    height: 150px;
}
.instagram-cover img{
    height: 150px;
    max-width: 95vw;
    object-fit: contain;
}
.instagram-pictures img{
    height: 240px;
    width: auto;
    border-width: 3px;
}

.fanned-venue-card{
    width: 180px;
    height: 300px;
    position: absolute;
    left: 50%;

}
.fanned-venue-card img{
    width: 180px;
    height: 300px;
    object-fit: contain;
}
/* #fan0{
    transform: translateX(-300px);
}
#fan1{
    transform: translateX(-250px);
}
#fan2{
    transform: translateX(-200px);
}
#fan3{
    transform: translateX(-100px);
}
#fan4{
    transform: translateX(10px);
}
#fan5{
    transform: translateX(100px);
}
#fan6{
    transform: translateX(200px);
}
#fan7{
    transform: translateX(250px);
} */






.popup-banner-section{
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: #ffffffbb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}
.popup-container{
    width: 900px;
    height: 500px;
    
    background-color: #fff;
    flex: none;
    border-radius: 10px;
    display: flex;

    position: relative;
}
.popup-container img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}
.popup-image-container{
    width: 63%;
    height: 100%;
    display: flex;
    flex: none;
    background: url("/assets/images/hero-bg.png");
    background-position: center;
    background-size: cover;
    align-items: center;
    justify-content: center;
    border-radius: 10px 0px 0px 10px;

}
.fields-container{
    width: 37%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-inline: 20px;
}
.fields-container p{
    font-size: 14px;
    font-weight: 700;
}

input[type=text] {
  
  height: 50px;
  min-height: 50px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 15px;
  border: none;
  background-color: #ffffffaa;
  border: solid 2px var(--button-grey); 
  margin-bottom: 20px;
  color: black;
  font-weight: 700;
  box-shadow: 1px 1px 2px#00000030 ;
}
input[type=text].sidebar{
  margin-bottom: 10px;
  font-weight: 600;
}
.close-button{
    width: 18px;
    height: 18px;
    position: absolute;
    right: 18px;
    top: 18px;
    
    z-index: 10000;
}


.instagram-logo{
    width: 50px;
    height: 50px;
}
.instagram-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.network-section{
        width: 1090px;
        margin-top: 100px;
        margin-bottom: 60px;
        margin-inline: auto;
        max-width: 1090px;
    }
    
    .network-section img{
        width: 100%;
        height: auto;
        opacity: 0;
    }
    
    
.network-section img{
    width: 100%;
    height: auto;
    
}

.network-images{
    position: absolute;
    width: 110px;
    height: 135px;
    background-color: #eee;
    border-radius: 10px;
    top: 0px;

    
}
.network-images img{
    opacity: 1;
}
.network-images.appear{
    opacity: 1;
}
.floating-text{
    width: 50%;
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    display: flex;
}
.network-section h2{
    
    font-size: 40px;
    text-align: center;
    line-height: 40px;

}
.floating-text b{
    

    text-align: center;


}
.network-images:nth-of-type(1){
    margin-left: 0px;
    margin-top: 60px;
}
.network-images:nth-of-type(2){
    margin-left: 0px;
    margin-top: 205px;
}
.network-images:nth-of-type(3){
    margin-left: 120px;
    margin-top: 10px;
}
.network-images:nth-of-type(4){
    margin-left: 120px;
    margin-top: 155px;
}
.network-images:nth-of-type(5){
    margin-left: 240px;
    margin-top: 70px;
}
.network-images:nth-of-type(6){
    margin-left: 360px;
    margin-top: 20px;
}
.network-images:nth-of-type(7){
    margin-left: 480px;
    margin-top: 50px;
}
.network-images:nth-of-type(8){
    margin-left: 600px;
    margin-top: 20px;
}
.network-images:nth-of-type(9){
    margin-left: 720px;
    margin-top: 85px;
}
.network-images:nth-of-type(10){
    margin-left: 840px;
    margin-top: 10px;
}
.network-images:nth-of-type(11){
    margin-left: 840px;
    margin-top: 155px;
}
.network-images:nth-of-type(12){
    margin-left: 960px;
    margin-top: 70px;
}
.network-images:nth-of-type(13){
    margin-left: 960px;
    margin-top: 215px;
}
.network-images img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

.only-mobile{
    display: none;
}


}



/* tablet */
@media (min-width: 768px) and (max-width: 1023px) {


    h2{
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -0.05em;
    font-weight: 700;
    }

    h3{
        letter-spacing: -0.05em;
        font-weight: 700;
    }
    h4{
        letter-spacing: -0.05em;
    }
    p{
        font-size: 17px;
        
    }



    .navigation-bar-mobile{
    position: fixed;
    top: 0px;
    left: unset;
    right: 0px;
    display: none;
    width: 50%;
    height: 100vh;
    z-index: 8000;
    background-color: #ffffff83;
    backdrop-filter: blur(13.1px);
    -webkit-backdrop-filter: blur(13px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    opacity: 1;
    transition: all 0.3s 0s ease-in-out;
}
.navigation-bar-mobile .bolt-logo{
    margin-right: 00px;
    margin-left: 00px;
    margin-top: 80px;
    margin-bottom: 40px;
    height: 50px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.navigation-bar-mobile.hide-bar{    
    opacity: 0;
    width: 0%;
    display: none;
    transition: all 0.3s 0.3s ease-in-out;
}
.navigation-bar-mobile a{
    font-size: 27px;
    margin-top: 25px;
    text-decoration: none;
    opacity: 1;
    transition: all 0.3s 0.3s ease-in-out;
}
.navigation-bar-mobile a:nth-child(1) {
  transition-delay: 0s;
}

.navigation-bar-mobile a:nth-child(2) {
    transition-delay: 0.1s;
}

.navigation-bar-mobile a:nth-child(3) {
    transition-delay: 0.2s;
}
.navigation-bar-mobile a:nth-child(4) {
    transition-delay: 0.3s;
}
.navigation-bar-mobile a:nth-child(5) {
    transition-delay: 0.4s;
}
.navigation-bar-mobile a:nth-child(6) {
    transition-delay: 0.5s;
}
.navigation-bar-mobile a:nth-child(7) {
    transition-delay: 0.6s;
}
.navigation-bar-mobile a:nth-child(8) {
    transition-delay: 0.7s;
}
.navigation-bar-mobile a:nth-child(9) {
    transition-delay: 0.8s;
}
.navigation-bar-mobile a:nth-child(10) {
    transition-delay: 0.9s;
}
.navigation-bar-mobile.hide-bar a{
    opacity: 0;
    
    transition: all 0.3s 0s ease-in-out;
}
.navigation-bar{
    height: 100px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: end;
    justify-content: center;
    transition: all 0.6s ease-in-out;
}
.navigation-mobile-burger{
    display: block;
}
#form{
        padding: 0px;
        display: block;
        margin-top: 00px;
    }
.navigation-bar.opaque{
    background: rgba(255, 255, 255, 0.63);
    backdrop-filter: blur(13.149999618530273px);
    -webkit-backdrop-filter: blur(13px);
}
.navigation-buttons-holder{
    width: 80%;
    display: flex;
    align-items: end;
    justify-content: end;
    gap: 50px;
}
.navigation-buttons-holder a{
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    color: #222;
    display: none;
    text-shadow: #ffffff95 0px 0px 30px;
    
}
.bolt-logo{
    height: 50px;
    width: auto;
    margin-left: 30px;
    margin-right: auto;
    flex: none;
}


.bolt-cameleon{
    height: 30px;
    width: 23px;
    margin-right: 30px;
    margin-left: auto;
    flex: none;
    background: url("/assets/images/burger.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.bolt-cameleon img{
    opacity: 0;
}


.hero-section{
    margin-top: -100px;
}
    .hero-container{
        min-height: 90vh;
        margin-top: 2.5vw;
        width: 95%;
        margin-inline: 2.5%;
        background: url(/assets/images/hero-bg.png);
        background-size: cover;
        border-radius: 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 150px;
    }

    .hero-container h1{
        font-size: 80px;
        line-height: 90px;
        font-family: 'kolton', sans-serif;
        color: #fff;
        text-align: center;
    }
    .character-container{
        left: 0px;
        width: 100%;
    }
    .hero-mascot-image{
        width: 250px;
        height: 500px;
    }
    .hero-mascot-image.pink-mascot{
    width: 300px;
    height: 500px;
    margin-bottom: -7px;
}
    .phone-screenshot{
        width: 40%;
        height: 30vw;
        margin-top: 100px;
    }
    .phone-screenshot img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }

    .quote-section{
        width: 100%;
        margin-top: 100px;
    }   
    .quote-container{
        width: 80%;
        margin-inline: auto;
        height: 50vh;
    }
    .quote-container h2{
        font-size: 50px;
        text-align: center;
        line-height: 50px;
    }
    .works-section{
        width: 100%;
        padding-block: 30px;
        background-color: #ffffff;
    }
    .works-container{
        width: 90%;
        margin-inline: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .works-container p{
        text-align: center;
    }
    .works-cards-container{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center; 
        margin-block: 30px;
        gap: 10px;
    }
    .works-card{
        width: 100%;
        background: #ffffff84;
        backdrop-filter: blur(13px);
        -webkit-backdrop-filter: blur(13px);
        border-radius: 10px;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        max-width: 400px;
    }

    .card-number-container{
        width: 40px;
        height: 40px;
        border-radius: 7px;
        background-color: #ffffff77;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        
    }
    .works-card h3{
        margin-top: 10px;
        font-size: 23px;
    }
    .works-card p{
        margin-top: 10px;
        font-size: 15px;
        text-align: left;
    }



    .features-container{
        width: 100%;
    }
    .feature-card{
        border-radius: 7px;
    }
    .features-row-3{
        gap: 10px;
    }
    .feature-row-2{
        gap: 10px;
    }
    .features-column-0{
        gap: 10px;
    }
    .features-column-1{
        gap: 10px;
    }
    .features-column-2{
        gap: 10px;
    }

    .feature-card{
    background-color: #F6f6f6;
    border-radius: 12px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px;
}
.feature-card img{
    height: 100%;
    width: 100%;
    object-fit: contain;
    padding: 0px;
    border-radius: 12px;
}
.feature-card p{
    flex: none;
    font-weight: 700;
    line-height: 14px;
    font-size: 15px;
}


    .wallet-benefits-row{
        gap: 30px;
    }
    .benefits-column h3{
    font-size: 20px;
    line-height: 19px;
    }
    .benefits-column p{
        font-size: 15px;
        line-height: 15px;
        margin-bottom: 40px;
        padding-left: 40px;
    }


    .faq-section{
        display: flex;
        margin-inline: 30px;
        margin-top: 30px;
        width: 95%;
        margin-inline: auto;
    }
    .faq-image-container{
        width: 40%;
        height: 35vw;
        position: relative;
        margin-left: auto;
        margin-right: 50px;
        aspect-ratio: 1;
    }
    .faq-image-container img{
        width: 100%;
        height: 100%;
        
    }
    .faq-categories-container{
        position: absolute;
        top: 20px;
        right: -40px;
        display: flex;
        flex-direction: column;
    }
    .faq-category{
        width: 230px;
        height: auto;
        padding: 15px;
        padding-inline: 20px;
        border: 2px solid rgba(255, 255, 255, 0.30);
        background: #d9d3d34f;
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 20px;
        margin-top: 10px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s;
    }
    .faq-category:hover{
        transform: translateX(20px);
    }
    .right-arrow{
        height: 30px;
        width: 30px;
        background: url("/assets/images/arrow-right.png");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
    .faq-questions-section{
        width: 100%;
        margin-inline: auto;
        padding-top: 0px;
    } 
    .faq-question-container{
        border-bottom: solid 2px #eee;
        width: 100%;
        padding-inline: 30px;
        padding-block: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }
    .faq-question-container p{
        font-size: 17px;
        font-weight: 700;

    }
    .faq-question-container b{
        height: 0px;
        color: white;
        width: 100%;
        font-size: 15px;
        font-weight: 600;
        overflow-y: hidden;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        transition: all 300ms ease-in-out,
        color 300ms 0ms ease-in-out;
    }
    .faq-question-container.clicked b{
        height: 100px;
        color: #222;
        transition: all 600ms ease-in-out,
        color 600ms 400ms ease-in-out;
    }
    .downwards-arrow{
        width: 17px;
        height: 17px;
        background: url("/assets/images/arrow-dark.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        rotate: 180deg;
    }



    .instagram-cover{

        bottom: -70px;
        height: 130px;
    }
    .instagram-cover img{
        height: 130px;
        max-width: 95vw;
        object-fit: contain;
    }
    .instagram-pictures img{
        height: 180px;
        width: auto;
        border-width: 3px;
    }



    .fanned-venue-card{
    width: 180px;
    height: 300px;
    position: absolute;
    left: 50%;

}
.fanned-venue-card img{
    width: 180px;
    height: 300px;
    object-fit: contain;
}
.venues-container{
    width: 100%;
}
/* #fan0{
    transform: translateX(-300px);
}
#fan1{
    transform: translateX(-250px);
}
#fan2{
    transform: translateX(-200px);
}
#fan3{
    transform: translateX(-100px);
}
#fan4{
    transform: translateX(10px);
}
#fan5{
    transform: translateX(100px);
}
#fan6{
    display: none;

    transform: translateX(200px);
} */
#fan7{
    display: none;
    transform: translateX(250px);
}



.business-section{
    width: 100%;
    margin-top: 100px;
}
.business-container{
    width: 100%;
    margin-inline: auto;
    padding-block: 100px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #f9f9f9, #F9F9F9 100%);
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    margin-bottom: 50px;
    
}
.description-button-column{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: start;
    justify-content: start;
}
.button-white.colorful.side{
    margin-left: 0px;
}
.benefits-row-container{
    width: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    overflow-x: scroll;
    padding-inline: 20px;
    scrollbar-width: 0px;
    
}
.benefits-row-container::-webkit-scrollbar{
    display: none;
}
.benefit-card{
    width: 320px;
    padding: 20px;
    stroke: #fff solid 3px;
    background: url(/assets/images/bussiness-bg.png), #fff;
    background-color: #fff;
    border-radius: 10px;
    height: 450px;
    display: flex;
    flex-direction: column;
    height: 600px;
    width: 450px;
    flex: none;
}
.benefit-card.active{
     background-color: #fff;
    background: url(/assets/images/bussiness-bg.png), #fff;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    height: 600px;
    width: 450px;
    flex: none;
}
.benefit-card.active b{
    color: #fff;
}
.benefit-card.active p{
    display: block;
}
.benefit-card b{
    font-size: 80px;
    color: #fff;
}
.benefit-logo{
    height: 50px;
    width: 50px;
    margin-top: auto;
    margin-bottom: 20px;
}
.benefit-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.benefit-card h3{
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 10px;
}
.benefit-card p{
    display: block;
    line-height: 20px;
    margin-bottom: 20px;
    font-size: 18px;
}


.popup-banner-section{
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: #ffffffbb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}
.popup-container{
    width: 700px;
    height: 400px;
    
    background-color: #fff;
    flex: none;
    border-radius: 10px;
    display: flex;

    position: relative;
}
.popup-container img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}
.popup-image-container{
    width: 55%;
    height: 100%;
    display: flex;
    flex: none;
    background: url("/assets/images/hero-bg.png");
    background-position: center;
    background-size: cover;
    align-items: center;
    justify-content: center;
    border-radius: 10px 0px 0px 10px;

}
.fields-container{
    width: 45%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-inline: 20px;
}
.fields-container p{
    font-size: 14px;
    font-weight: 700;
}

input[type=text] {
  
  height: 45px;
  min-height: 45px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 15px;
  border: none;
  background-color: #ffffffaa;
  border: solid 2px var(--button-grey); 
  margin-bottom: 20px;
  color: black;
  font-weight: 700;
  box-shadow: 1px 1px 2px#00000030 ;
}
input[type=text].sidebar{
  margin-bottom: 10px;
  font-weight: 600;
}
.close-button{
    width: 18px;
    height: 18px;
    position: absolute;
    right: 18px;
    top: 18px;
    
    z-index: 10000;
}



.instagram-logo{
    width: 50px;
    height: 50px;
}
.instagram-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.network-section{
    width: 868px;
    margin-top: 100px;
    margin-bottom: 122px;
    margin-inline: auto;
}
.network-section img{
    width: 100%;
    height: auto;
    opacity: 0;
}
.network-images{
    position: absolute;
    width: 85px;
    height: 110px;
    background-color: #eee;
    border-radius: 5px;
    top: 0px;

    
}
.network-images img{
    opacity: 1;

}
.network-images.appear{
    opacity: 1;
}
.floating-text{
    width: 50%;
    position: absolute;
    top: 95%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column;
    display: flex;
}
.network-section h2{
    font-size: 35px;
    text-align: center;
    line-height: 40px;
}
.floating-text b{
    text-align: center;
}
.network-images:nth-of-type(1){
    margin-left: 0px;
    margin-top: 60px;
}
.network-images:nth-of-type(2){
    margin-left: 0px;
    margin-top: 180px;
}
.network-images:nth-of-type(3){
    margin-left: 95px;
    margin-top: 10px;
}
.network-images:nth-of-type(4){
    margin-left: 95px;
    margin-top: 130px;
}
.network-images:nth-of-type(5){
    margin-left: 190px;
    margin-top: 50px;
}
.network-images:nth-of-type(6){
    margin-left: 285px;
    margin-top: 10px;
}
.network-images:nth-of-type(7){
    margin-left: 380px;
    margin-top: 50px;
}
.network-images:nth-of-type(8){
    margin-left: 475px;
    margin-top: 10px;
}
.network-images:nth-of-type(9){
    margin-left: 570px;
    margin-top: 75px;
}
.network-images:nth-of-type(10){
    margin-left: 665px;
    margin-top: 10px;
}
.network-images:nth-of-type(11){
    margin-left: 665px;
    margin-top: 130px;
}
.network-images:nth-of-type(12){
    margin-left: 760px;
    margin-top: 70px;
}
.network-images:nth-of-type(13){
    margin-left: 760px;
    margin-top: 190px;
}
.network-images img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

.only-mobile{
    display: none;
}

}

/* large mobile */
@media (min-width: 481px) and (max-width: 767px) {


    h2{
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -0.05em;
    font-weight: 700;
    }

    h3{
        letter-spacing: -0.05em;
        font-weight: 700;
    }
    h4{
        letter-spacing: -0.05em;
    }
    p{
        font-size: 17px;
        
    }




    .navigation-bar-mobile{
        position: fixed;
        top: 0px;
        left: 0px;
        display: none;
        width: 100%;
        height: 100vh;
        z-index: 8000;
        background-color: #ffffff83;
        backdrop-filter: blur(13.1px);
        -webkit-backdrop-filter: blur(13px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        opacity: 1;
        transition: all 0.3s 0s ease-in-out;
    }
    .navigation-bar-mobile .bolt-logo{
        margin-right: 00px;
        margin-left: 00px;
        margin-top: 40px;
        margin-bottom: 20px;
        height: 40px;
        width: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        
    }
    .navigation-bar-mobile.hide-bar{    
        opacity: 0;
        display: none;
        transition: all 0.3s 0.3s ease-in-out;
    }
    .navigation-bar-mobile a{
        font-size: 27px;
        margin-top: 20px;
        text-decoration: none;
        opacity: 1;
        transition: all 0.3s 0.3s ease-in-out;
    }
    .navigation-bar-mobile a:nth-child(1) {
      transition-delay: 0s;
    }
    
    .navigation-bar-mobile a:nth-child(2) {
        transition-delay: 0.1s;
    }
    
    .navigation-bar-mobile a:nth-child(3) {
        transition-delay: 0.2s;
    }
    .navigation-bar-mobile a:nth-child(4) {
        transition-delay: 0.3s;
    }
    .navigation-bar-mobile a:nth-child(5) {
        transition-delay: 0.4s;
    }
    .navigation-bar-mobile a:nth-child(6) {
        transition-delay: 0.5s;
    }
    .navigation-bar-mobile a:nth-child(7) {
        transition-delay: 0.6s;
    }
    .navigation-bar-mobile a:nth-child(8) {
        transition-delay: 0.7s;
    }
    .navigation-bar-mobile a:nth-child(9) {
        transition-delay: 0.8s;
    }
    .navigation-bar-mobile a:nth-child(10) {
        transition-delay: 0.9s;
    }
    .navigation-bar-mobile.hide-bar a{
        opacity: 0;
        transition: all 0.3s 0s ease-in-out;
    }
    .navigation-bar{
        height: 90px;
        position: sticky;
        top: 0;
        left: 0;
        z-index: 999;
        display: flex;
        align-items: end;
        justify-content: center;
        transition: all 0.6s ease-in-out;
    }
    .navigation-mobile-burger{
    display: block;
}
    .navigation-bar.opaque{
        background: rgba(255, 255, 255, 0.63);
        backdrop-filter: blur(13.149999618530273px);
        -webkit-backdrop-filter: blur(13px);
    }
    .navigation-buttons-holder{
        width: 80%;
        height: 100%;
        display: flex;
        align-items: end;
        justify-content: end;
        
    }
    .navigation-bar.opaque .navigation-buttons-holder{
        align-items: center;
    }
    #form{
        padding: 0px;
        display: block;
        margin-top: 0px;
    }
    .navigation-buttons-holder a{
        display: none;
        text-decoration: none;
        font-size: 20px;
        font-weight: 700;
        color: #222;
        text-shadow: #ffffff95 0px 0px 30px;
    }
    .bolt-logo{
        height: 40px;
        width: auto;
        margin-left: 30px;
        margin-right: auto;
        flex: none;
    }
    .bolt-logo img{
        height: 100%;
        width: auto;
    }
    
    .bolt-cameleon{
        height: 25px;
        width: auto;
        width: 23px;
        margin-right: 10px;
        margin-left: auto;
        flex: none;
        background: url("/assets/images/burger.png");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
    .bolt-cameleon img{
        height: 100%;
        width: auto;
        opacity: 0;
    }

    .hero-section{
    margin-top: -90px;
}
    .hero-container{
        min-height: 90vh;
        margin-top: 2.5vw;
        width: 95%;
        margin-inline: 2.5%;
        background: url(/assets/images/hero-bg.png);
        background-size: cover;
        background-position: center;
        border-radius: 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
    }
    .thank-you-hero .character-container{
        width: 90%;
        left: 5%;
    }
.character-container{
    width: 100%;
    left: 0px;


}
    .hero-container h1{
        margin-top: 100px;
        font-size: 60px;
        line-height: 70px;
        font-family: 'kolton', sans-serif;
        color: #fff;
        text-align: center;
    }
    .phone-screenshot{
        width: 40%;
        height: 40vw;
        margin-top: 100px;
    }
    .thank-you-hero .phone-screenshot img{
        display: none;
    }
    .thank-you-hero .hero-mascot-image{
        width: 200px;
        height: 400px;
    }
    .character-container{
        left: -5%;
        width: 110%;
    }
    .hero-mascot-image{
        width: 200px;
        height: 300px;
    }
    .hero-mascot-image.pink-mascot{
        width: 250px;

    }
    .phone-screenshot img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }



    .quote-section{
        width: 100%;
        margin-top: 100px;
    }   
    .quote-container{
        width: 90%;
        margin-inline: auto;
        height: 50vh;
    }
    .quote-container h2{
        font-size: 50px;
        text-align: center;
        line-height: 50px;
    }


    .works-section{
        width: 100%;
        padding-block: 100px;
        background-color: #ffffff;
        background-size: cover;
    }
    .works-container{
        width: 90%;
        margin-inline: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .works-container p{
        text-align: center;
    }
    .works-cards-container{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; 
        margin-block: 30px;
        gap: 10px;
    }
    .works-card{
        width: 100%;
        background: #ffffff84;
        backdrop-filter: blur(13px);
        -webkit-backdrop-filter: blur(13px);
        border-radius: 10px;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        max-width: unset;
    }

    .card-number-container{
        width: 40px;
        height: 40px;
        border-radius: 7px;
        background-color: #ffffff77;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        
    }
    .works-card h3{
        margin-top: 10px;
        font-size: 23px;
    }
    .works-card p{
        margin-top: 10px;
        font-size: 15px;
        text-align: left;
    }


    .features-section{
        margin-top: 10px;
        margin-bottom: 10px;
        padding-block: 30px;
    }
    .feature-card{
        border-radius: 5px;
    }
    .features-row-3{
        gap: 7px;
    }
    .feature-row-2{
        gap: 7px;
    }
    .features-column-0{
        gap: 7px;
    }
    .features-column-1{
        gap: 7px;
    }
    .features-column-2{
        gap: 7px;

    }

    .feature-card-0{
        height: 24vw;
        width: 100%;
    }
    .feature-card-1{
        height: 17vw;
        width: 100%;
    }
    .feature-card-5{
        height: 17vw;
        width: 100%;
    }
    .feature-card-6{
        height: 24vw;
        width: 100%;
    }

    .feature-card{
        background-color: #F6f6f6;
       
        padding: 20px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0px;
    }
    .feature-card img{
        height: 100%;
        width: 100%;
        object-fit: contain;
        padding: 0px;
        border-radius: 5px;
    }
    .feature-card p{
        flex: none;
        font-weight: 700;
        line-height: 12px;
        font-size: 10px;
    }


    .wallet-section{
        width: 100%;
        padding-block: 30px;
        margin-top: 30px;
    }
    .wallet-container{
        width: 90%;
    }
    .wallet-card{
        height: 300px;
        margin-top: 30px;
    }
    .wallet-benefits-row{
        flex-direction: column;
        gap: 30px;
    }
    .benefits-column h3{
    font-size: 23px;
    line-height: 22px;
    }
    .benefits-column p{
        font-size: 18px;
        line-height: 18px;
        margin-bottom: 40px;
        padding-left: 40px;
    }





    .features-container{
        width: 110%;
        margin-left: -5%;
    }





    .faq-section{
        display: flex;
        flex-direction: column;
        margin-inline: 30px;
        margin-top: 30px;
        width: 90%;
        margin-inline: auto;
    }
    .faq-image-container{
        width: 100%;
        height: 90vw;
        position: relative;
        margin-left: auto;
        margin-right: 0px;
    }
    .faq-image-container img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .faq-categories-container{
        position: absolute;
        bottom: 20px;
        right: 10px;
        display: flex;
        flex-direction: column;
    }
    .faq-category{
        width: 210px;
        height: auto;
        padding: 15px;
        padding-inline: 20px;
        border: 2px solid rgba(255, 255, 255, 0.30);
        background: #d9d3d34f;
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 18px;
        margin-top: 10px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s;
    }
    .faq-category:hover{
        transform: translateX(20px);
    }
    .right-arrow{
        height: 20px;
        width: 20px;
        background: url("/assets/images/arrow-right.png");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
    .faq-questions-section{
        width: 100%;
        margin-inline: auto;
        margin-top: 10px;
    } 
    .faq-question-container{
        border-bottom: solid 2px #eee;
        width: 100%;
        padding-inline: 5px;
        padding-block: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }
    .faq-question-container p{
        font-size: 19px;
        font-weight: 700;

    }
    .faq-question-container b{
        height: 0px;
        color: white;
        width: 100%;
        font-size: 16px;
        font-weight: 600;
        overflow-y: hidden;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        transition: all 300ms ease-in-out,
        color 300ms 0ms ease-in-out;
    }
    .faq-question-container.clicked b{
        height: 100px;
        color: #222;
        transition: all 600ms ease-in-out,
        color 600ms 400ms ease-in-out;
    }
    .downwards-arrow{
        width: 15px;
        height: 15px;
        background: url("/assets/images/arrow-dark.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        rotate: 180deg;
        margin-left: auto;
    }



    .instagram-cover{

        bottom: -60px;
        height: 120px;
    }
    .instagram-cover img{
        height: 120px;
        max-width: 95vw;
        object-fit: contain;
    }
    .instagram-pictures img{
        height: 200px;
        width: auto;
        border-width: 2px;
    }
    .will-go-insta{
        display: none;
    }

    .venues-section{
        margin-top: 30px;
    }
    .venues-container{
        width: 95%;
        padding-top: 20px;
        padding-bottom: 50px;
        margin-bottom: 50px;
    }
    .fanned-venue-card{
        width: 150px;
        height: 300px;
        position: absolute;
        left: 50%;

    }
    .fanned-venue-card img{
        width: 150px;
        height: 300px;
        object-fit: contain;
    }
    #fan0{
        transform: translateX(-220px) rotate(-12deg) translateY(20px);
    }
    #fan1{
        transform: translateX(-170px) rotate(-8deg) translateY(10px);
    }
    #fan2{
        transform: translateX(-120px) rotate(-4deg) translateY(5px);
    }
    #fan3{
        transform: translateX(-70px) rotate(0deg) translateY(0px);
    }
    #fan4{
        transform: translateX(-10px) rotate(6deg) translateY(5px);
    }
    #fan5{
        transform: translateX(30px) rotate(8deg) translateY(10px);
    }
    #fan6{
        

        transform: translateX(80px) rotate(12deg) translateY(20px);
    }
    #fan7{
        display: none;
        transform: translateX(150px);
    }


    .checkout-section{
    width: 100%;
    margin-top: 30px;
}
.checkout-container{
    width: 90%;
    margin-inline: auto;
    padding-block: 30px;
    padding-bottom: 0px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(242, 242, 242, 0.00) 42.8%, #F0F0F0 100%);
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    margin-bottom: 50px;
}
.heading-description-row{
    width: 90%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 100px;
}
.heading-description-row h2{
    text-align: left;
    width: 100%;
}
.heading-description-row p{
    text-align: left;
    width: 100%;
    margin-top: 10px;
}
.checkout-images-row{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: space-between;
    gap: 30px;
    height: 50vh;
}
.venue-cards-image{
    width: 80%;
    height: auto;
    display: none;
}
.venue-cards-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    border-radius: 0px 0px 0px 30px;
}
.checkout-screenshot-image{
    width: 60%;
    margin-inline: auto;
}
.checkout-screenshot-image img{
    margin-inline: auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}
.mascot-image{
    width: 80%;
    
}
.mascot-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;

}



.business-section{
    width: 100%;
    margin-top: 30px;
}
.business-container{
    width: 100%;
    margin-inline: auto;
    padding-block: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #f9f9f9, #F9F9F9 100%);
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    margin-bottom: 50px;
    
}
.description-button-column{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: start;
    justify-content: start;
}
.button-white.colorful.side{
    margin-left: 0px;
}
.button-white.navigation.colorful{
    margin-top: 0px;
}
.benefits-row-container{
    width: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    overflow-x: scroll;
    padding-inline: 20px;
    scrollbar-width: 0px;
    
}
.benefits-row-container::-webkit-scrollbar{
    display: none;
}
.benefit-card{
    width: 270px;
    padding: 20px;
    stroke: #fff solid 3px;
    background-color: #fff;
    background: url(/assets/images/bussiness-bg.png), #fff;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    border-radius: 10px;
    height: 400px;
    display: flex;
    flex-direction: column;
    flex: none;
    height: 500px;
    width: 350px;
    
}
.benefit-card.active{
     background-color: #fff;
    background: url(/assets/images/bussiness-bg.png), #fff;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    height: 500px;
    width: 350px;
    flex: none;
}
.benefit-card.active b{
    color: #fff;
}
.benefit-card.active p{
    display: block;
}
.benefit-card b{
    font-size: 80px;
    color: #fff;
}
.benefit-logo{
    height: 50px;
    width: 50px;
    margin-top: auto;
    margin-bottom: 20px;
}
.benefit-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.benefit-card h3{
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 10px;
}
.benefit-card p{
    display: block;
    line-height: 17px;
    margin-bottom: 20px;
    font-size: 16px;
}








.popup-banner-section{
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: #ffffffbb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}
.popup-container{
    width: 482px;
    height: 700px;
    
    background-color: #fff;
    flex: none;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    position: relative;

}
.popup-container img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}
.popup-image-container{
    width: 100%;
    height: 100%;
    display: flex;
    flex: none;
    background: url("/assets/images/hero-bg.png");
    background-position: center;
    background-size: cover;
    align-items: start;
    justify-content: center;
    border-radius: 10px 10px 10px 10px;

}
.popup-image-container h2{
    font-family: "kolton", serif;
    margin-top: 50%;
    line-height: 45px;
}
.fields-container{
    transform: translateY(-100%);
    width: 100%;
    height: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-inline: 20px;
    padding-block: 20px;
}
.fields-container p{
    font-size: 14px;
    font-weight: 700;
}

input[type=text] {
  
  height: 50px;
  min-height: 50px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 15px;
  border: none;
  background-color: #ffffff53;
  border: solid 2px white; 
  margin-bottom: 20px;
  color: black;
  font-weight: 700;
  box-shadow: 1px 1px 2px#00000030 ;
  backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
input[type=text].sidebar{
  margin-bottom: 10px;
  font-weight: 600;
}
.close-button{
    width: 18px;
    height: 18px;
    position: absolute;
    right: 18px;
    top: 18px;
    
    z-index: 10000;
}


.bottom-banner-mascot{
    position: absolute;
    right: 30px;
    bottom: 0px;
    height: 70%;
    width: 30%;
}



.instagram-logo{
    width: 40px;
    height: 40px;
}
.instagram-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}



.network-section{
        width: 90%;
        margin-top: 100px;
        margin-bottom: 0px;
        margin-inline: auto;
    }
    
    .network-section img{
        width: 100%;
        height: auto;
        opacity: 1;
    }
    
    .network-images{
       display: none;
    }
    .floating-text{
        display: none;
    }


    .only-mobile{
    display: flex;
    }
    .only-mobile.socials-row{
        margin-top: 0px;
        margin-bottom: 100px;
    }
}
/* mobile */
@media (max-width: 480px) {

    h2{
        font-size: 36px;
        line-height: 40px;
        letter-spacing: -0.05em;
        font-weight: 700;
    }

    h3{
        letter-spacing: -0.05em;
        font-weight: 700;
    }
    h4{
        letter-spacing: -0.05em;
    }
    p{
        font-size: 15px;
        
    }


    .navigation-bar-mobile{
    position: fixed;
    top: 0px;
    left: 0px;
    display: none;
    width: 100%;
    height: 100vh;
    z-index: 8000;
    background-color: #ffffff83;
    backdrop-filter: blur(13.1px);
    -webkit-backdrop-filter: blur(13px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    opacity: 1;
    transition: all 0.3s 0s ease-in-out;
}
.navigation-bar-mobile .bolt-logo{
    margin-right: 00px;
    margin-left: 0px;
    margin-top: 40px;
    margin-bottom: 20px;
    height: 40px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.navigation-bar-mobile.hide-bar{    
    display: none;
    opacity: 0;
    transition: all 0.3s 0.3s ease-in-out;
}
.navigation-bar-mobile a{
    font-size: 25px;
    margin-top: 20px;
    text-decoration: none;
    opacity: 1;
    transition: all 0.3s 0.3s ease-in-out;
}
.navigation-bar-mobile a:nth-child(1) {
  transition-delay: 0s;
}

.navigation-bar-mobile a:nth-child(2) {
    transition-delay: 0.1s;
}

.navigation-bar-mobile a:nth-child(3) {
    transition-delay: 0.2s;
}
.navigation-bar-mobile a:nth-child(4) {
    transition-delay: 0.3s;
}
.navigation-bar-mobile a:nth-child(5) {
    transition-delay: 0.4s;
}
.navigation-bar-mobile a:nth-child(6) {
    transition-delay: 0.5s;
}
.navigation-bar-mobile a:nth-child(7) {
    transition-delay: 0.6s;
}
.navigation-bar-mobile a:nth-child(8) {
    transition-delay: 0.7s;
}
.navigation-bar-mobile a:nth-child(9) {
    transition-delay: 0.8s;
}
.navigation-bar-mobile a:nth-child(10) {
    transition-delay: 0.9s;
}
.navigation-bar-mobile.hide-bar a{
    opacity: 0;

    transition: all 0.3s 0s ease-in-out;
}
.button-white.navigation{
    height: 50px;
    border-radius: 35px;
    padding-right: 5px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    padding-left: 15px;
    background: rgba(255, 255, 255, 0.30);
}
.button-white-arrow.navigation{
    height: 40px;
    width: 40px;
    border-radius: 25px;
    padding: 12px;
    margin-left: 7px;
    background: rgba(255, 255, 255, 0.50);
}
.colorful .button-white-arrow.navigation{
    height: 40px;
    width: 40px;
    border-radius: 25px;
    padding: 12px;
    margin-left: 7px;
    background: rgba(255, 255, 255, 0.50);
}
.button-white.navigation.colorful{
    background: linear-gradient(90deg, rgba(255, 183, 115, 0.50) 0%, rgba(254, 172, 229, 0.50) 100%), rgba(255, 255, 255, 0.50);

}
.button-white.navigation b{
    font-weight: 800;
    font-size: 13px;
    margin-left: 0px;
    color: #fff;
}
.navigation-bar{
    height: 80px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: end;
    transition: all 0.6s ease-in-out;
}
.navigation-mobile-burger{
    display: block;
}
#form{
        padding: 0px;
        display: block;
        margin-top: 0px;
        margin-left: 5px;
    }
.navigation-bar.opaque{
    background: rgba(255, 255, 255, 0.63);
    backdrop-filter: blur(13.149999618530273px);
    -webkit-backdrop-filter: blur(13px);
}
.navigation-buttons-holder{
    width: 80%;
    display: flex;
    align-items: end;
    justify-content: end;
    
}
.navigation-buttons-holder a{
    display: none;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    color: #222;
    text-shadow: #ffffff95 0px 0px 30px;
}
.bolt-logo{
    height: 35px;
    width: auto;
    margin-left: 20px;
    margin-right: auto;
    flex: none;
    margin-top: 20px;
}
.navigation-bar.opaque .bolt-logo{
    height: 35px;
    width: auto;
    margin-left: 20px;
    margin-top: 0px;
}
.bolt-logo img{
    height: 100%;
    width: auto;
}

.bolt-cameleon{
    height: 25px;
    width: auto;
    width: 23px;
    margin-right: 10px;
    margin-left: auto;
    flex: none;
    background: url("/assets/images/burger.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.bolt-cameleon img{
    height: 100%;
    width: auto;
    opacity: 0;
}

.hero-section{
    margin-top: -80px;
    height: 55vh;
}

    .hero-container{
        min-height: 55vh;
        height: 60vh;
        margin-top: 2.5vw;
        width: 95%;
        margin-inline: 2.5%;
        background: url(/assets/images/hero-bg.png);
        background-size: cover;
        background-position: center;
        border-radius: 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 0px;
    }
    .hero-container.thank-you-hero{
        min-height: 95vh;
        margin-top: 2.5vw;
        width: 95%;
        margin-inline: 2.5%;
        background: url(/assets/images/hero-bg.png);
        background-size: cover;
        background-position: center;
        border-radius: 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 0px;
    }
.thank-you-hero .character-container{
        width: 90%;
        left: 5%;
    }
    .character-container{
        min-height: unset;
        height: 60vh;
    width: 100%;
    left: 0px;
    }
    .hero-container h1{
        margin-top: 15vh;
        font-size: 45px;
        line-height: 60px;
        font-family: 'kolton', sans-serif;
        color: #fff;
        text-align: center;
    }
    .thank-you-hero.hero-container h1{
         margin-top: 12vh;
    }
    .thank-you-hero.hero-container p{
         width: 90%;
    }
    .phone-screenshot{
        width: 40%;
        height: 50vw;
        margin-top: 50px;
    }
    .phone-screenshot img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }

    .thank-you-hero .phone-screenshot{
        display: none;
    }
    .thank-you-hero .hero-mascot-image{
        width: 150px;
        height: 300px;
    }
    .character-container{
        width: 110%;
        left: -5%;
    }
    .hero-mascot-image{
        width: 150px;
        height: 200px;
    }
    .hero-mascot-image.pink-mascot{
        width: 180px;
        height: 200px;
        margin-right: -20px;
        margin-bottom: -4px;
    }



    .quote-section{
        width: 100%;
        margin-top: 70px;
    }   
    .quote-container{
        width: 90%;
        margin-inline: auto;
        height: 50vh;
    }
    .quote-container h2{
        font-size: 40px;
        text-align: center;
        line-height: 40px;
    }


    .works-section{
        width: 100%;
        padding-block: 60px;
        padding-bottom: 20px;
        background-color: #ffffff;
        background-size: cover;
    }
    .works-container{
        width: 90%;
        margin-inline: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .works-container p{
        text-align: center;
    }
    .works-cards-container{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; 
        margin-block: 30px;
        gap: 10px;
    }
    .works-card{
        width: 100%;
        background: #ffffff84;
        backdrop-filter: blur(13px);
        -webkit-backdrop-filter: blur(13px);
        border-radius: 10px;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        max-width: unset;
    }

    .card-number-container{
        width: 40px;
        height: 40px;
        border-radius: 7px;
        background-color: #ffffff77;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        
    }
    .works-card h3{
        margin-top: 10px;
        font-size: 23px;
    }
    .works-card p{
        margin-top: 10px;
        font-size: 15px;
        text-align: left;
    }


    .features-section{
        margin-top: 10px;
        margin-bottom: 10px;
        padding-block: 30px;
    }
    .feature-card{
        border-radius: 5px;
    }
    .features-row-3{
        gap: 7px;
    }
    .feature-row-2{
        gap: 7px;
    }
    .features-column-0{
        gap: 7px;
    }
    .features-column-1{
        gap: 7px;
    }
    .features-column-2{
        gap: 7px;
    }

    .feature-card{
        background-color: #F6f6f6;
       
        padding: 20px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0px;
    }
    .feature-card img{
        height: 100%;
        width: 100%;
        object-fit: contain;
        padding: 0px;
        border-radius: 5px;
    }
    .feature-card p{
        flex: none;
        font-weight: 700;
        line-height: 12px;
        font-size: 10px;
    }
    .feature-card-0{
        height: 24vw;
        width: 100%;
    }
    .feature-card-1{
        height: 17vw;
        width: 100%;
    }
    .feature-card-5{
        height: 17vw;
        width: 100%;
    }
    .feature-card-6{
        height: 24vw;
        width: 100%;
    }


    .wallet-section{
        width: 100%;
        padding-block: 30px;
    }
    .wallet-container{
        width: 90%;
        margin-top: 30px;
    }
    .wallet-card{
        height: 250px;
        margin-top: 30px;
    }
    .wallet-benefits-row{
        flex-direction: column;
        gap: 0px;
    }
    .benefits-column h3{
    font-size: 20px;
    line-height: 20px;
    }
    .benefits-column p{
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 40px;
        padding-left: 40px;
    }

    .faq-section{
        display: flex;
        flex-direction: column;
        margin-inline: 30px;
        margin-top: 30px;
        width: 90%;
        margin-inline: auto;
    }
    .faq-header{
        text-align: left;
        font-size: 30px;
        
    }
    .faq-image-container{
        width: 100%;
        height: 90vw;
        position: relative;
        margin-left: auto;
        margin-right: 0px;
    }
    .faq-image-container img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .faq-categories-container{
        position: absolute;
        bottom: 20px;
        right: 10px;
        display: flex;
        flex-direction: column;
    }
    .faq-category{
        width: 180px;
        height: auto;
        padding: 10px;
        padding-inline: 20px;
        border: 2px solid rgba(255, 255, 255, 0.30);
        background: #d9d3d34f;
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(13px);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 14px;
        margin-top: 10px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s;
    }
    .faq-category:hover{
        transform: translateX(20px);
    }
    .right-arrow{
        height: 20px;
        width: 20px;
        background: url("/assets/images/arrow-right.png");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }
    .faq-questions-section{
        width: 100%;
        margin-inline: auto;
        margin-top: 10px;
    } 
    .faq-question-container{
        border-bottom: solid 2px #eee;
        width: 100%;
        padding-inline: 5px;
        padding-block: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }
    .faq-question-container p{
        font-size: 17px;
        font-weight: 700;

    }
    .faq-question-container b{
        height: 0px;
        color: white;
        width: 100%;
        font-size: 14px;
        font-weight: 600;
        overflow-y: hidden;
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: center;
        transition: all 300ms ease-in-out,
        color 300ms 0ms ease-in-out;
    }
    .faq-question-container.clicked b{
        height: 100px;
        color: #222;
        transition: all 600ms ease-in-out,
        color 600ms 400ms ease-in-out;
    }
    .downwards-arrow{
        width: 15px;
        height: 15px;
        background: url("/assets/images/arrow-dark.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        rotate: 180deg;
        margin-left: auto;
    }



    .features-container{
        width: 110%;
        margin-left: -5%;
    }



    .instagram-cover{

        bottom: -50px;
        height: 100px;
    }
    .instagram-cover img{
        height: 100px;
        max-width: 95vw;
        object-fit: contain;
    }
    .instagram-pictures img{
        height: 150px;
        width: auto;
        border-width: 2px;
    }
    .will-go-insta{
        display: none;
    }
    .venues-section{
        margin-top: 0px;
    }
    .venues-container{
        width: 98%;
        padding-top: 20px;
        padding-bottom: 50px;
        margin-bottom: 50px;
    }
    .fanned-venues-container{
        margin-bottom: 0px;
        height: 200px;
    }
    .fanned-venue-card{
        width: 120px;
        height: 160px;
        position: absolute;
        left: 50%;

    }
    .fanned-venue-card img{
        width: 120px;
        height: 180px;
        object-fit: contain;
    }
    #fan0{
        transform: translateX(-200px);
    }
    #fan1{
        transform: translateX(-150px);
    }
    #fan2{
        transform: translateX(-100px);
    }
    #fan3{
        transform: translateX(-50px);
    }
    #fan4{
        transform: translateX(10px);
    }
    #fan5{
        transform: translateX(50px);
    }
    #fan6{
        

        transform: translateX(100px);
    }
    /* #fan7{
        display: none;
        transform: translateX(150px);
    } */
#fan0{
    display: none;
        transform: translateX(-240px) rotate(-12deg) translateY(20px);
    }
    #fan1{
        transform: translateX(-170px) rotate(-6deg) translateY(10px);
    }
    #fan2{
        transform: translateX(-130px) rotate(-2deg) translateY(5px);
    }
    #fan3{
        transform: translateX(-80px) rotate(0deg) translateY(0px);
    }
    #fan4{
        transform: translateX(-20px) rotate(2deg) translateY(5px);
    }
    #fan5{
        transform: translateX(20px) rotate(6deg) translateY(10px);
    }
    #fan6{
        

        transform: translateX(70px) rotate(8deg) translateY(15px);
    }

    .checkout-section{
    width: 100%;
    margin-top: 0px;
}
.checkout-container{
    width: 90%;
    margin-inline: auto;
    padding-block: 30px;
    padding-top: 15px;
    padding-bottom: 0px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(242, 242, 242, 0.00) 42.8%, #F0F0F0 100%);
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    margin-bottom: 50px;
}
.heading-description-row{
    width: 90%;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.heading-description-row h2{
    text-align: left;
    width: 100%;
}
.heading-description-row p{
    text-align: left;
    width: 100%;
    margin-top: 10px;
}
.checkout-images-row{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: space-between;
    gap: 30px;
    height: 35vh;
}
.venue-cards-image{
    width: 80%;
    height: auto;
    display: none;
}
.venue-cards-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    border-radius: 0px 0px 0px 30px;
}
.checkout-screenshot-image{
    width: 60%;
    margin-inline: auto;
}
.checkout-screenshot-image img{
    margin-inline: auto;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}
.mascot-image{
    width: 80%;
    
}
.mascot-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;

}


.business-section{
    width: 100%;
    margin-top: 30px;
}
.business-container{
    width: 100%;
    margin-inline: auto;
    padding-block: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #f9f9f9, #F9F9F9 100%);
    background-size: cover;
    background-position: center;
    border-radius: 00px;
    margin-bottom: 50px;
    
}
.description-button-column{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: start;
    justify-content: start;
}
#form.colorful{
    background: linear-gradient(90deg, rgba(255, 183, 115, 0.50) 0%, rgba(254, 172, 229, 0.50) 100%), rgba(255, 255, 255, 0.50);
}
.button-white.colorful.side{

    margin-left: 0px;
}
.benefits-row-container{
    width: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    overflow-x: scroll;
    padding-inline: 20px;
    scrollbar-width: 0px;
    
}
.benefits-row-container::-webkit-scrollbar{
    display: none;
}
.benefit-card{
    width: 280px;
    padding: 20px;
    stroke: #fff solid 3px;
    background-color: #fff;
    background: url(/assets/images/bussiness-bg.png), #fff;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    border-radius: 10px;
    height: 340px;
    height: 420px;
    width: 300px;
    display: flex;
    flex-direction: column;
    flex: none;
}
.benefit-card.active{
     background-color: #fff;
    background: url(/assets/images/bussiness-bg.png), #fff;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    height: 420px;
    width: 300px;
    flex: none;
}
.benefit-card.active b{
    color: #fff;
}
.benefit-card.active p{
    display: block;
}
.benefit-card b{
    font-size: 80px;
    color: #fff;
}
.benefit-logo{
    height: 50px;
    width: 50px;
    margin-top: 60px;
    margin-bottom: 20px;
}
.benefit-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.benefit-card h3{
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 10px;
}
.benefit-card p{
    display: block;
    line-height: 17px;
    margin-bottom: 20px;
    font-size: 16px;
}








.popup-banner-section{
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: #ffffffbb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}
.popup-container{
    width: 90%;
    height: 90%;
    
    background-color: #fff;
    flex: none;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    position: relative;
    
}
.popup-container img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}
.popup-image-container{
    width: 100%;
    height: 100%;
    display: flex;
    flex: none;
    background: url("/assets/images/hero-bg.png");
    background-position: center;
    background-size: cover;
    align-items: start;
    justify-content: center;
    border-radius: 10px 10px 10px 10px;

}
.popup-image-container h2{
    font-family: "kolton", serif;
    margin-top: 50%;
    color: #ffffff;
    line-height: 40px;
}
.fields-container{
    transform: translateY(-100%);
    width: 100%;
    height: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-inline: 20px;
    padding-block: 20px;
}
.fields-container p{
    font-size: 14px;
    font-weight: 700;
}

input[type=text] {
  
  height: 50px;
  min-height: 50px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 15px;
  border: none;
  background-color: #ffffff53;
  border: solid 2px white; 
  margin-bottom: 20px;
  color: black;
  font-weight: 700;
  box-shadow: 1px 1px 2px#00000030 ;
  backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
input[type=text].sidebar{
  margin-bottom: 10px;
  font-weight: 600;
}
.close-button{
    width: 18px;
    height: 18px;
    position: absolute;
    right: 18px;
    top: 18px;
    
    z-index: 10000;
}


.bottom-banner-mascot{
    position: absolute;
    right: 30px;
    bottom: 0px;
    height: 70%;
    width: 25%;
    
}


.instagram-logo{
    width: 30px;
    height: 30px;
}
.instagram-logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}



.network-section{
    width: 85%;
    margin-top: 100px;
    margin-bottom: 0px;
    margin-inline: auto;
}

.network-section img{
    width: 100%;
    height: auto;
    opacity: 1;
}

.network-images{
    display: none;
}

.floating-text{
    display: none;
}

.only-mobile{
    display: flex;
    }
.only-mobile.socials-row{
    margin-top: 0px;
    margin-bottom: 100px;
    gap: 10px;
}

}