/* BOOTH & LIGHTS */
.hero-wrapper .content-900 {
    z-index: 10;
}

.hero-wrapper p, .booth-wrapper p  {
    font-size: 1.5rem;
}

.hero-wrapper h3, .booth-wrapper h2 {
    margin-bottom: 1rem;
}

.booth-container {
    padding-top: 5rem;
    padding-bottom: 5rem;
 }

.booth-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-top: 5rem;
}

.booth-benefits .benefit-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    border-radius: 5px;
    padding: 2.5rem;
    height: 100%;
}

.benefit-item a {
    color: #fdee00;
    font-style: italic;
}

.benefit-item a:hover {
    text-decoration: underline;
}

.benefit-item i {
    color: rgba(125, 83, 222,1);
}

.benefit-item p {
    margin-top: 0.5rem;
}

.booth-benefits.x-pro img, .booth-benefits.x-pro video {
    mix-blend-mode: screen;
}

.staging-container {
    padding: 0;
    animation: slideshow 1s;
}





/* SPEAKER */
.speaker-container {
    padding-top: 5rem;
}





/* EXPLORE */
.container.explore-container {
    padding: 5rem 2rem;
}

.explore-container h5 {
    color: #808080;
    margin-bottom: 1rem;
}

.explore-wrapper {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
}

.explore-wrapper .explore-item {
    padding: 2rem 0;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.explore-item a {
    text-decoration: none;
    color: #fff;
}

.explore-wrapper .explore-item:hover {
    transform: scale(1.1);
}


.explore-wrapper .explore-item h4 {
    margin-bottom: 1rem;
}

.explore-wrapper .explore-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    display: block;
}





/* CTA */
.booth-cta {
    padding: 5rem 0;
}

.booth-cta .content-600 {
    position: relative;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(125, 83, 222, 0.5) 0%, rgba(255, 255, 255, 0) 50%), rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(30px);
    background-color: #000;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
}





/* RESPONSIVE - MOBILE - 478px */
@media only screen and (max-width: 478px) {
    .container.hero-container {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .hero-wrapper {
        padding-right: 2rem;
        padding-left: 2rem;
    }
    .hero-wrapper video, .hero-wrapper img {
        width: 700px !important;
        overflow: hidden;
    }
    .hero-wrapper h3, .booth-wrapper h2 {
        margin-bottom: 0.5rem;
    }
    .booth-wrapper {
        padding: 5rem 0 0;
    }
    .booth-img {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .booth-img img {
        width: 700px;
    }
    .hero-container .booth-benefits {
        grid-template-columns: repeat(1, 1fr);
        padding: 2rem 2rem 0;
    }
    .booth-benefits {
        grid-template-columns: repeat(1, 1fr);
        padding-bottom: 5rem;
    }
    .explore-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
    .explore-container h5 {
        text-align: center;
    }
    .padding-bottom-5 {
        padding-bottom: 5rem !important;
    }
    .staging-container .hero-container {
       min-height: 70vh !important;
    }
    .booth-cta .content-600 {
        padding: 2.5rem 0;
    }

}