/* FONT */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:wght@100..900&display=swap');
@font-face {
    font-family: 'Starling';
    src: url('fonts/starling-roman.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Starling';
    src: url('fonts/starling-bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Starling';
    src: url('fonts/starling-bold-italic.otf') format('opentype');
    font-weight: bold;
    font-style: italic;
}





/* MAIN */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-margin-top: 4rem;
}

body {
    overflow-x: hidden;
    background-color: #000;
}

h1, h2, h3, h4, h5 {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 5rem;
    line-height: 1;
}

h2 {
    font-size: 3.75rem;
    line-height: 1;
}

h3 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h4 {
    font-size: 1.25rem;
    line-height: 1;
}

h5 {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.3125rem;
    line-height: 1.5;
}

p {
    font-family: 'Starling', serif;
    font-size: 1.25rem;
}

a {
    text-decoration: none;
}

ul {
    margin: 1rem;
}

ul li {
    list-style: none;
}

.custom-list ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.custom-list li {
   display: flex;
   gap: 0.5rem;
}

.small-text {
    font-size: 1rem;
}

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

.highlight-text {
    position: relative;
    display: inline-block;
}

.black-text {
    color: #000;
}

.highlight-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1.2em;
    background-color: #fdee00;
    z-index: -1;
    transform: rotate(-10deg);
    transform-origin: left;
    padding: 0 5px;
}

.divider-white {
    width: 100%;
    height: 1px;
    background-color: rgba(255,255,255,0.1);
}

.divider-white-full {
    width: 100%;
    height: 1px;
    background-color: rgba(255,255,255,1);
}

.divider-black {
    width: 100%;
    height: 1px;
    background-color: rgba(0,0,0,0.1);
}

img {
    width: 100%;
}

.zoom-hover {
    overflow: hidden;
    transition: transform 0.3s ease;
    z-index: 20;
}

.zoom-hover:hover {
    transform: scale(1.01);
    z-index: 20;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
}

.no-top-padding {
    padding-top: 0;
}

.star-rating {
    color: #fdee00;
}

.padding-bottom {
    padding-bottom: 2rem;
}

.lazyload {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
  
.lazyloaded {
    opacity: 1;
}







/* BGs */
.black-bg {
    background-color: black;
    color: #fff;
}

.yellow-bg {
    background-color: #fdee00;
}

.white-bg-low {
    background-color: rgba(255, 255, 255, 0.1);
}

.purple-bg {
    background: rgb(125, 83, 222);
    background: linear-gradient(325deg, rgba(125, 83, 222, 1) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: 1;
}

.skewed-bg {
    position: relative;
    z-index: 1;
    overflow: visible;
}

.skewed-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7d53de, #ffffff);
    transform: skewY(-10deg);
    transform-origin: top left;
    z-index: -1; 
    pointer-events: none;
}

.purple-black-gradient-bg {
    position: relative;
    width: 100%;
    height: 900px;
    background-color: black;
    overflow: hidden;
    color: #fff;
}

.purple-black-gradient-bg::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(125, 83, 222, 0.4) 0%, rgba(125, 83, 222, 0) 70%);
    mix-blend-mode: screen;
    filter: blur(250px);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    will-change: filter, transform;
}





/* BACKGROUND EFFECTS */
.blob-outer-container {
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 0;
    inset: 0;
    margin: auto;
    filter: blur(250px);
    opacity: 0.8;
}

.blob-inner-container {
    border-radius: 9999px;
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100vw;
    height: 100vh;
    min-width: 1200px;
    transform: scale(0.6);
}

.blob {
    position: absolute;
    width: 100vw;
    height: 100vh;
    inset: 0;
    margin: auto;
    background: conic-gradient(from 0deg, #7d53de1a, #7d53de33, #7d53de4d,
    #7d53de40, #7d53de66);
    animation: waveBlob 20s ease-in-out infinite alternate;
}

@keyframes waveBlob {
    0% {
        transform: scale(4.8) translateX(-5%) translateY(-3%);
    }
    25% {
        transform: scale(5.2) translateX(3%) translateY(5%);
    }
    50% {
        transform: scale(5.0) translateX(-3%) translateY(-4%);
    }
    75% {
        transform: scale(5.1) translateX(4%) translateY(2%);
    }
    100% {
        transform: scale(4.9) translateX(-2%) translateY(-3%);
    }
}

.gradient-circle-1 {
    position: absolute;
    top: -250px;
    left: 0; 
    margin: auto;
    width: 100%;
    height: 900px;
    background: radial-gradient(circle, rgba(125, 83, 222, 0.4) 0%, rgba(125, 83, 222, 0) 70%);
    mix-blend-mode: screen;
    filter: blur(300px);
    pointer-events: none; 
    z-index: 10;
    will-change: filter, transform;
}

.gradient-circle-1-green {
    position: absolute;
    top: -250p; 
    left: 0;
    margin: auto;
    width: 100%;
    height: 900px;
    background: radial-gradient(circle, rgba(51, 204, 0, 0.4) 0%, rgba(51, 204, 0, 0) 70%);
    mix-blend-mode: screen;
    filter: blur(300px);
    pointer-events: none;
    z-index: 10;
}

.gradient-circle-2 {
    position: absolute;
    top: -250px;
    left: -300px;
    width: 100%;
    height: 900px;
    background: radial-gradient(circle, rgba(125, 83, 222, 0.5) 0%, rgba(125, 83, 222, 0) 70%);
    mix-blend-mode: screen;
    filter: blur(300px);
    pointer-events: none;
    z-index: 10;
}

.gradient-circle-2-green {
    position: absolute;
    top: -250px; 
    left: -300px;
    width: 100%;
    height: 900px;
    background: radial-gradient(circle, rgba(51, 204, 0, 0.5) 0%, rgba(51, 204, 0, 0) 70%);
    mix-blend-mode: screen;
    filter: blur(300px);
    pointer-events: none;
    z-index: 10;
}

.gradient-circle-3 {
    position: absolute;
    top: -250px;
    left: 55%;
    width: 400px;
    height: 700px;
    background: radial-gradient(circle, rgba(125, 83, 222, 0.25) 0%, rgba(125, 83, 222, 0) 70%);
    mix-blend-mode: screen;
    filter: blur(300px);
    pointer-events: none;
    z-index: 10;
}

.gradient-circle-3-green {
    position: absolute;
    top: -250px;
    left: 55%;
    width: 400px;
    height: 700px;
    background: radial-gradient(circle, rgba(51, 204, 0, 0.25) 0%, rgba(51, 204, 0, 0) 70%);
    mix-blend-mode: screen;
    filter: blur(300px);
    pointer-events: none;
    z-index: 10;
}

.gradient-circle-4 {
    position: absolute;
    top: -250px; 
    right: -300px;
    width: 100%;
    height: 900px;
    background: radial-gradient(circle, rgba(125, 83, 222, 0.5) 0%, rgba(125, 83, 222, 0) 70%);
    mix-blend-mode: screen;
    filter: blur(300px);
    pointer-events: none;
    z-index: 10;
}

.gradient-circle-5 {
    position: absolute;
    top: -250px;
    right: 55%; 
    width: 400px;
    height: 700px;
    background: radial-gradient(circle, rgba(125, 83, 222, 0.25) 0%, rgba(125, 83, 222, 0) 70%);
    mix-blend-mode: screen;
    filter: blur(300px);
    pointer-events: none;
    z-index: 10;
}

.gradient-circle-6 {
    position: absolute;
    top: -250px;
    left: 0;
    margin: auto; 
    width: 100%;
    height: 900px;
    background: radial-gradient(circle, rgba(125, 83, 222, 0.25) 0%, rgba(125, 83, 222, 0) 70%);
    mix-blend-mode: screen;
    filter: blur(300px);
    pointer-events: none;
    z-index: 10;
}





/* CONTAINERS */
.container {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    margin: auto;
    padding-left: 5rem;
    padding-right: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.grid-2x1 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    box-sizing: border-box;
    gap: 1px;
    padding: 1px 0;
}

.grid-3x1 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    box-sizing: border-box;
    gap: 1rem;
}

.grid-item {
    width: 100%;
    height: 100%;
    padding-top: 5rem;
}

.content-550 {
    width: 100%;
    max-width: 550px;
    margin: auto;
}

.content-600 {
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.content-900 {
    width: 100%;
    max-width: 900px;
    margin: auto;
}

.top-header {
    height: 40px;
    transition: top 0.3s ease;
    z-index: 100;
}





/* HEADER/NAVIGATION */
.container.header-container {
    position: sticky;
    z-index: 100;
}

.nav-primary .dropdown-toggle-btn {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 200;
}

.header {
    padding: .25rem 0;
    display: flex;
    justify-content: space-between;
    transition: background-color 0.3s;
}

.header .logo {
    display: flex;
    width: 100px;
    align-items: center;
    z-index: 200;
}

.header .logo img {
    width: 100px;
    display: block;
}

.nav-primary {
    display: flex;
    align-items: center;
}





/* DROPDOWN MENU */
.dropdown-toggle-btn {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 200;
}

.toggle_btn {
    position: relative;
}

.toggle_btn i {
    display: block;
    font-size: 2rem; 
    color: #fff;
    transition: opacity 0.3s ease;
}

.dropdown_menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 0;
    width: 100%;
    min-height: 100vh;
    background-color: #000;
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px); /* Safari support */
    color: white;
    display: none;
    transition: opacity 0.3s ease;
    z-index: 100;
    overflow-y: auto;
}

.dropdown-menu-links {
    width: 100%;
    max-width: 600px;
}

.dropdown-menu-links a:hover, .dropdown_social a:hover {
    color: #fdee00;
}

.dropdown_menu a {
    color: #fff;
    font-family: 'Inter Tight', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.dropdown_menu .parent-menu {
    pointer-events: none;
}

.dropdown_social {
    display: flex;
    gap: 1rem;
}

.dropdown_social a {
    font-size: 1.5rem;
}

.dropdown_menu .divider-white {
    margin: 15px 0;
}

.dropdown_menu.open {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10%;
}   

body.disable-scroll, html.disable-scroll {
    overflow: hidden;
}

/* Active link styling */
a.active {
    color: #fdee00;
    font-weight: bold;
}





/* FLY-OUT MENU */
.flyout-menu {
    position: fixed;
    top: 0;
    right: -250px; /* Initially hidden */
    width: 250px;
    height: 100%;
    background-color: #222;
    color: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    transition: right 0.3s ease-in-out;
    padding-top: 60px;
}

/* Button to open menu */
.menu-btn {
    position: fixed;
    top: 120px;
    right: 20px;
    padding: 10px 20px;
    font-size: 18px;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

/* Show menu */
.flyout-menu.open {
    right: 0;
    z-index: 1001;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Menu Links */
.flyout-menu nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.flyout-menu nav ul li {
    padding: 15px 0;
}

.flyout-menu nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: block;
    transition: 0.3s;
}

.flyout-menu nav ul li a:hover {
    background-color: #444;
}





/* BUTTONS */
.btn-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.btn-1, .btn-2, .btn-3, .dropdown-toggle-btn, form button {
    position: relative;
    display: inline-block;
    padding: 1rem 1.75rem;
    font-family: 'Inter Tight';
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    overflow: hidden;
    transform: skew(-10deg);
    z-index: 11;
}

.btn-3 {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    margin: 0;
}

.dropdown-toggle-btn {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

.btn-1, .btn-3 {
    background-color: #fdee00;
}

.btn-2, form button {
    background-color: #000;
}

.btn-1, .btn-2 {
    margin: 1rem 0;
}

.btn-1 a, .btn-3 a {
    text-decoration: none;
    color: #000;
}

.btn-2 a, form button {
    text-decoration: none;
    color: #fff;
}

.btn-1::before, .btn-3::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 25%, rgba(255,255,255,0.5) 75%);
    z-index: -1;
    transition: left 0.3s ease;
}

.btn-1:hover::before, .btn-3:hover::before, .btn-2:hover::before, .dropdown-toggle-btn:hover::before, form button:hover::before {
    left: 0;
}

.btn-1:hover, .btn-3:hover {
    background-color: #fdee00;
    color: #000;
    z-index: 100;
}

.btn-2::before, .dropdown-toggle-btn::before, form button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 25%, rgba(125, 83, 222,0.5) 75%);
    z-index: -1;
    transition: left 0.3s ease;
}

.btn-2:hover, .dropdown-toggle-btn:hover, form button:hover {
    background-color: #000;
    color: #fff;
}







/* HOMEPAGE */
.hero-container {
    height: auto;
    padding: 5rem;
    animation: slideshow 1s;
    overflow: hidden;
}

@keyframes slideshow {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
    
}

.hero-container h5 {
    margin-bottom: 0.5rem;
}

.hero-container img {
    width: 100%;
    margin: auto;
}

.hero-container .hero-img {
    mix-blend-mode: screen;
}

/* CLIENTS */
.clients-container {
    color: #808080;
}

.clients-wrapper {
    width: 100%;
    margin: auto;
    text-align: center;
}

.clients-wrapper h5 {
    padding: 20px 0;
}

.clients-wrapper .client-logos {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 50px;
}

.client-logos .client-logo-item img {
    width: 100%;
    margin: 20px 0;
}

.client-logos .client-logo-item:nth-child(n+8) {
    display: none;
}

/* THE FUTURE */
.future-container {
    padding: 10rem;
    color: #fff;
}

.future-wrapper img {
    width: 100%;
}

.future-wrapper h2, .future-wrapper h5, .backdrops-wrapper-top h2, .backdrops-wrapper-top h5, .staging-wrapper h2, .staging-wrapper h5 {
    margin-bottom: 0.5rem;
}

.future-wrapper p, .backdrops-wrapper-top p, .staging-wrapper p, .grid-2x1 p {
    font-size: 1.5rem;
}

/* GOOGLE REVIEWS */
.google-reviews-wrapper {
    margin-top: 100px;
    color: #808080;
}

.google-reviews-wrapper .black-overlay {
    position: relative;
    background-color: #000;
    margin-top: -100px;
    width: 100%;
    height: 100px;
    z-index: 50 !important;
}

/* BOOTH */
.grid-2x1 .grid-item img {
    padding-top: 2rem;
}

/* BACKDROPS */
.backdrops-container, .staging-container {
    width: 100%;
}

.backdrops-wrapper-top, .staging-wrapper {
    position: relative;
    width: 100%;
    padding: 5rem 0 0;
}

.backdrops-wrapper-bottom {
    position: relative;
    width: 100%;
    padding: 0 0 5rem;
}





/* ABOUT */
.about-hero-bg {
    position: relative;
    z-index: 1;
    overflow: visible;
    width: 100%;
    height: 50vh;
}

.about-hero-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/images/products/BIGDAY_FullBooth_LowAngle_Left.jpg);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
    transform-origin: top left;
    z-index: -1; 
    pointer-events: none;
    opacity: 1;
}

.about-wrapper {
    justify-content: center;
    align-items: center;
}

.grid-2x1.about-wrapper {
    gap: 5rem;
}

.statement {
    min-height: 50vh;
    padding: 5rem 0;
}

.fun-fact {
    padding: 5rem 0;
}

.fun-fact .grid-3x1 .grid-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    border-radius: 5px;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.fun-fact h1 {
    padding-bottom: 1rem;
}

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

.difference-wrapper {
    padding: 0;
}

.difference-wrapper p {
    font-size: 1.25rem;
}

.difference-container .difference-wrapper.sticky {
    top: 40px;
    position: -webkit-sticky;
    position: sticky;
    z-index: 50;
}

.difference-wrapper .grid-3x1 {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1px;
    text-align: center;
    margin-bottom: 1px;
}

.difference-wrapper .grid-3x1 .grid-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2.5rem 0;
}

.difference-wrapper .grid-3x1 div:nth-child(even) {
    color: #fdee00;
}

.brands-container {
    padding-top: 5rem;
    padding-bottom: 5rem !important;
}

.brands-container .wrapper .grid-2x1 {
    display: none;
}

.brands-container .wrapper .grid-3x1 .grid-item, .brands-container .wrapper .grid-2x1 .grid-item {
    padding-top: 2rem;
}

.team-wrapper .grid-2x1 {
    gap: 2rem;
}

.team-shot img {
    height: 70vh;
    object-fit: cover;
    object-position: 85% center;
    border-radius: 10px;
}





/* TESTIMONIALS */
.testimonial-wrapper {
    padding: 5rem 0;
}

.testimonial-wrapper .content-550 {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.testimonial-wrapper .content-550 p {
    font-size: 1.5rem;
}





/* PRICING */
.pricing-wrapper {
    padding: 5rem 0 1px;
    color: #000;
}

.upgrades-wrapper h5 {
    margin-bottom: 20px;
}

.pricing-wrapper .content-550 {
    margin: 0 auto 2rem; 
}

.pricing-wrapper .pricing-table {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.pricing-wrapper .pricing-item {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 100%;
    padding: 2.5rem;
    text-align: center;
    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);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pricing-wrapper .pricing-item:hover {
    transform: scale(1.01);
    z-index: 20;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2);
}

.pricing-item .pkg-title {
    text-transform: uppercase;
    margin-top: 50px;
}

.pricing-item .pkg-price {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: #000;
    color: #fff;
    margin: auto auto 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
    gap: 10px; 
    overflow: hidden; 
}

.pricing-item .pkg-price h2, .pricing-item .pkg-price h5 {
    margin-bottom: 0;
}

.pricing-item.pricing-highlight {
    background-color: #000;
    color: #fff;
}

.pricing-item .pkg-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.pkg-details p {
    font-size: 1rem;
}

.pkg-recommendation {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    top: 0;
    left: 0;
    padding: 5%;
    background-color: #000;
    color: #fff;
    width: 100%;
    justify-content: center;
    font-style: italic;
    z-index: 20;
}

.upgrades-wrapper {
    position: relative;
    padding: 5rem 0;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.upgrades-wrapper .upgrades-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.upgrades-list .upgrades-item {
    display: flex;
    gap: 5px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(30px);
    border-radius: 5px;
    padding: 5%;
    height: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.upgrades-wrapper .upgrades-item:hover {
    transform: scale(1.05);
    z-index: 20;
}

.upgrades-list .upgrades-item .featured {
    color: #fedd00;
    font-size: 16px;
    font-style: italic;
}

.guarantee-wrapper {
    color: #fff;
    margin-bottom: 5rem;
}

.guarantee-wrapper h2 {
    color: #33cc00;
    margin-bottom: 1rem;
}

.guarantee-wrapper p {
    font-size: 1.5rem;
}

.guarantee-wrapper .gradient-circle-1-green {
    display: none;
}

.faq-wrapper {
    max-width: 600px;
    margin: 5rem auto;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(125, 83, 222);
    background: linear-gradient(325deg, rgba(125, 83, 222, 1) 0%, rgba(255, 255, 255, 1) 100%);
    border-radius: 5px;
    border: none;
    padding: 20px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    border-radius: 5px;
    outline: none;
    position: relative;
}

.faq-header h3 {
    margin-bottom: 0;
}

.faq-icon {
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;  
}

.faq-content {
    overflow: hidden; /* Ensure content does not overflow */
    height: 0; /* Start with max-height of 0 */
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    -webkit-transition: max-height 0.3s ease-out, padding 0.3s ease-out; 
    padding: 0 10px;
}

.faq-content.open {
    height: 100%;
    padding: 2rem 10px;
    -webkit-transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg); /* Rotate icon when content is open */
}

.cta-wrapper {
    width: 100%;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    color: #fff;
    justify-content: center;
    text-align: center;
}





/* BOOKING FORM */
.booking-form {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5rem;
}

.booking-form-wrapper {
    height: 100%;
    justify-content: center;
    align-items: center;
}

.booking-form-wrapper h5 {
    margin: 50px 0;
}

.booking-form .black-overlay {
    position: absolute;
    background-color: #000;
    bottom: -50;
    width: 100%;
    height: 60px;
    z-index: 50 !important;
}





/* NEWSLETTER SIGNUP */
.signup-container {
    height: 100vh;
    color: #fff;
    overflow: hidden;
}

.signup-wrapper .content-550 {
    text-align: center;
    margin: 0 auto 20px;
}

.signup-wrapper .content-550 p {
    font-size: 25px;
}

.signup-wrapper .more-details {
    width: 100%;
    max-width: 550px;
    margin: auto;
}

.signup-wrapper .more-details p {
    margin: 20px 0;
}

#newsletter-container button {
    font-family: 'Inter Tight' !important;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    overflow: hidden;
    transform: skew(-10deg);
    z-index: 11;
}

#newsletter-container button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 25%, rgba(255,255,255,0.5) 75%);
    z-index: -1;
    transition: left 0.3s ease;
}

#newsletter-container button:hover::before {
    left: 0;
}

#newsletter-container button:hover {
    background-color: #fdee00;
    color: #000;
    z-index: 100;
}

#mlb2-5666530.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow input {
    transform: skew(-10deg);
    font-family: 'Inter Tight' !important;
}

.footer-col.signup #mlb2-5666530.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-horizontalRow button {
    font-size: 10px !important;
}





/* CONTACT */
.contact-container {
    width: 100%;
    padding: 5rem;
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-wrapper h1 {
    margin-bottom: 1rem;
}

.contact-wrapper a {
    color: #000;
    font-weight: 700;
}

.contact-container form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
}

.contact-inquiry {
    padding-top: 1rem;
    padding-bottom: 0.25rem;
}

form input, form textarea {
    border: none;
    border-radius: 5px;
    margin: 10px 0;
    padding: 1rem;
    outline: none;
    background-color: #fff;
}

.success-msg {
    height: 50vh;
}

.social-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-links hr {
    width: 100%;
    margin-bottom: 20px;
}

.social-links h3 {
    padding-bottom: 1rem;
}

.contact-social {
    bottom: 40px;
    width: 170px;
    display: flex;
    justify-content: space-between;
}

.contact-social a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid #000;
    border-radius: 50%;
    font-size: 20px;
    color: #000;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.contact-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #000;
    z-index: -1;
    transition: .5s;
}

.contact-social a:hover:before {
    width: 100%;
}

.contact-social a:hover {
    color: #fff;
}





/* FOOTER */
footer {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5% 0 1%;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100px;
    display: block;
}

.footer-content {
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-bottom: 5%;
}

.footer-content h5 {
    color: #808080;
    margin-bottom: 10px;
}

.footer-content p, .footer-content a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    margin: 5px 0;
}

.footer-content a:hover {
    color: #fdee00;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col.signup #newsletter-container {
    width: 100%;

}

.footer-bottom {
    margin-top: 2%;
}

.footer-bottom p {
    font-size: 12px;
    color: #808080;
}

.footer-social {
    margin: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.footer-social .social-links {
    display: flex;
    gap: 1rem;
}
    
.footer-social a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: #fdee00;
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
}

/* MOBILE FOOTER */
@media(max-width: 768px) {
    footer {
        justify-content: center;
    }
    .footer-content {
        display: none;
    }
}

@media(min-width: 768px) {
    .footer-social {
        display: none;
    }
}





/* RESPONSIVE - MOBILE - 478px */
@media only screen and (max-width: 478px) {
    
    /* TYPOGRAPHY */
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.25rem;
    }
    h4 {
        font-size: 1rem;
    }
    h5 {
        font-size: 0.625rem;
    }
    p {
        font-size: 1rem !important;
    }

    /* CONTAINERS */
    .container {
        padding: 0 2rem;
        overflow: hidden;
    }
    .top-header {
        display: none;
    }
    .header-container {
        background-color: rgba(0,0,0,1);
    }
    .grid-2x1 {
        grid-template-columns: repeat(1, 1fr);
    }
    
    /* NAVIGATION/DROPDOWN-MENU */
    .nav-primary .btn-3 {
        display: none;
    }
    .dropdown_menu.open {
        padding: 2rem;
        top: 2rem;
    }
    .dropdown_social {
        margin-top: 1rem;
    }
    
    /* BUTTONS */
   .btn-1, .btn-2 {
        font-size: 1rem;
        margin: 0.625rem 0 0;
        padding: 1rem 2.5rem;
        min-width: 250px;
    }
    .btn-2 {
        text-align: center;
        /* background: transparent;  */
    }
    .btn-2 a {
        color: #fdee00;
        /* text-decoration: underline; */
    }

    .dropdown-toggle-btn {
        padding: 1rem 0;
    }

    .btn-container {
        flex-direction: column;
        margin-top: 0.5rem;
    }
    
    /* HOMEPAGE */
    .hero-container {
        padding: 5rem 0;
        min-height: 80vh;
    }
    .hero-container .wrapper {
        justify-content: center;
        align-items: center;
    }
    .hero-container .wrapper .content-900 {
        padding: 0 2rem;
    }

    /* CLIENTS */
    .clients-container {
        overflow: hidden;
    }
    .clients-wrapper .client-logos {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        row-gap: 0;
    }
    .client-logos .client-logo-item:nth-child(n+8) {
        display: block;
    }

     /* FUTURE */
     .future-container {
        padding: 5rem 2rem;
    }
    .future-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .future-wrapper img, .staging-container img {
        margin-top: 2rem;
    }

    /* TESTIMONIALS */
    .testimonial-wrapper .content-550 h5 {
        margin-top: -0.5rem;
    }

    /* ABOUT */
    .grid-2x1.about-wrapper {
        padding: 0 2rem;
        text-align: center;
        gap: 1rem;
    }
    .grid-2x1.about-wrapper .content-600 {
        order: 1;
        padding: 0 1rem;
    }
    .grid-2x1.about-wrapper img {
        order: 2;
    }
    .wrapper.fun-fact {
        padding: 2rem;
    }
    .fun-fact .grid-3x1 {
        grid-template-columns: repeat(1, 1fr);
    }
    .difference-container {
        padding-top: 5rem;
    }
    .difference-wrapper .grid-3x1 {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .difference-container .wrapper.statement {
        padding: 5rem 0;
    }
    .brands-container .wrapper .grid-3x1 {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }
    .brands-container .wrapper .grid-3x1 .grid-item {
        padding: 0;
    }
    .statement {
        min-height: 40vh;
        padding: 0 2rem;
    }
    .container.about-hero-bg {
        height: 25vh;
    }
    .team-wrapper .grid-2x1 {
        gap: 0;
    }
    .team-wrapper .grid-2x1 .testimonial-wrapper {
        order: 2;
        padding: 2rem 0 5rem;
    }
    .team-wrapper .grid-2x1 .team-shot {
        order: 1;
        padding-top: 5rem;
    }
    
    /* BOOTH */
    .booth-wrapper-top .grid-2x1 {
        gap: 0;
    }
    .grid-2x1 .grid-item {
        padding-top: 5rem;
        padding-right: 2rem;
        padding-left: 2rem;
    }
    .grid-2x1 .grid-item h3 {
        font-size: 2rem;
    }
    .grid-2x1 .grid-item h3, .grid-2x1 .grid-item h5  {
        margin-bottom: 0.25rem;
    }
    .backdrops-wrapper-bottom {
        margin-top: 1rem;
    }

    /* PRICING */
    .pricing-wrapper {
        padding: 1rem 0;
    }
    .pricing-wrapper .content-550 {
        margin: 4rem auto; 
    }
    .pricing-table {
        flex-direction: column;
        margin-top: -2rem;
    }
    .pricing-item .pkg-title {
        margin-top: 2rem;
    }
    .pricing-item .pkg-price {
        width: 200px;
        height: 200px;
    }
    .upgrades-wrapper .upgrades-list {
        display: grid;
        grid-template-columns: repeat(1,1fr);
        margin: 0;
    }
    .upgrades-wrapper .upgrades-list.x {
        margin-top: 20px;
    }
    .upgrades-wrapper .divider-white.x {
        display: none;
    }
    .upgrades-wrapper .divider-white {
        margin: 20px 0;
    }
    .upgrades-wrapper h5 {
        margin-bottom: 0;
    }
    .guarantee-wrapper .gradient-circle-1-green {
        display: block;
        margin-top: -100px;
        width: 100px;
    }

    /* HOMEPAGE CTA */
    .future-container .future-wrapper .cta-wrapper {
        padding-bottom: 5rem;
    }

    /* BOOKING FORM */
    .booking-form {
        padding: 1rem;
    }
    .booking-form .black-overlay {
    bottom: -150;
    }

    /* CONTACT */
    .contact-container {
       padding: 5rem 2rem;
    }
    .social-links {
        display: none;
    }

    /* FOOTER */
    .footer-logo {
        margin: auto;
        margin-bottom: 20px;
    }
    .footer-bottom p {
        text-align: center;
        font-size: 0.65rem !important;
        margin: 1rem 0;
    }

  }





  /* RESPONSIVE - TABLET */
  @media only screen and (min-width:479px) and (max-width:1024px) {
        /* TYPOGRAPHY */
        h1 {
            font-size: 3rem;
        }
        h2 {
            font-size: 2.5rem;
        }
        h3 {
            font-size: 1.5rem;
        }
        h4 {
            font-size: 1.25rem;
        }
        h5 {
            font-size: 0.625rem;
            margin-bottom: 0.5rem;
        }
        p {
            font-size: 1rem !important;
        }

        /* CONTAINERS */
        .top-header {
            display: none;
        }
        .header-container {
            background-color: rgba(0,0,0,1);
        }

        /* HOME */
        .backdrops-container .purple-bg .content-550 {
            padding-top: 1rem;
        }

        /* ABOUT */
        .wrapper.team-wrapper .grid-2x1 .wrapper.testimonial-wrapper {
            padding-left: 5rem;
        }
        .wrapper.team-wrapper .team-shot {
            padding-right: 5rem;
        }
        .wrapper.team-wrapper .team-shot img {
            object-position: 80% center;
        }
        .brands-container .wrapper .grid-3x1 {
            display: none;
        }
        .brands-container .wrapper .grid-2x1 {
            display: grid;
        }
        .container.statement h3 {
            font-size: 2.5rem;
        }

        /* GRADIENT EFFECTS */
        .gradient-wrapper {
            display: none;
        }

        /* NAVIGATION/DROPDOWN-MENU */
        .nav-primary .btn-3 {
            display: none;
        }
        .dropdown_menu.open {
            padding: 2rem;
            top: 2rem;
        }
        .dropdown_social {
            margin-top: 1rem;
        }

        /* FOOTER */
        .footer-content {
            grid-template-columns: repeat(3, 1fr);
        }
        .footer-col.signup {
            grid-column: span 3;
            text-align: center;
            padding-top: 2rem;
        }
        .footer-bottom p {
            text-align: center;
            font-size: 0.75rem !important;
            margin: 1rem 0;
        }
    
  }
