<style>
/* UNIVERSAL WEB STYLES */

.main.container {
    max-width: 100% !important;
    width: 100% !important;
}

.nested-container {
    width: 100% !important;
}

@media only screen and (min-width: 320px) {
    .main.container {
        max-width: 100% !important;
        width: 100% !important;
    }
}

@media only screen and (min-width: 320px) {
    .container {
        max-width: none !important;
        width: 100% !important;

    }
}

.search-bar {
    margin-top: 16px;
}

.search-section {
    width: 95% !important;
    margin: auto !important;
}

#search-bar {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 100px !important;
    color: #000 !important;
    /* <-- This makes typed text black */
    border: 2px solid #191C1B !important;
    /* box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) !important; */
}


span {
    font-size: unset !important;

}

.breadcrumbs {
    display: none;
}

.explore-link {
    color: #0070f3;
    text-decoration: none;
    transition: all 0.2s ease;
}

.explore-link:hover {
    text-decoration: underline;
    /* Or your brand color */
}

/* FONT STYLE*/

/* title */
h1 {
    font-size: 96px;
    font-family: Oswald !important;
    text-transform: uppercase;
    font-weight: 700;
    font-style: italic;
}



/* section title */
h2 {
    font-size: 64px;
    font-family: Oswald !important;
    text-transform: uppercase;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 16px;
}

/* sub section title */
h3 {
    font-size: 32px;
    font-style: normal;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 900;
    line-height: normal;
    margin-bottom: 16px;
    text-transform: uppercase;
}

/* card title */
h4 {
    font-size: 16px;
    font-style: normal;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 8px;
}

/* card sub title */
h5 {
    font-size: 14px;
    font-style: normal;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 8px;
    text-transform: none !important;
}

/* small title  */
h6 {
    font-size: 12px;
    font-style: normal;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500;
    line-height: normal;
}


@media all and (min-width:320px) and (max-width:768px) {
    h1 {
        font-size: 48px !important;
        font-family: Oswald !important;
        text-transform: uppercase;
        font-weight: 700;
        font-style: italic;
    }

    h2 {
        font-size: 32px !important;
        font-family: Oswald !important;
        text-transform: uppercase;
        font-weight: 700;
        font-style: italic;
        margin-bottom: 16px;
    }

    h3 {
        font-size: 24px !important;
        font-style: normal;
        font-family: 'Roboto', sans-serif !important;
        font-weight: 900;
        line-height: normal;
        margin-bottom: 16px;
        text-transform: uppercase;
    }

    h4 {
        font-size: 12px !important;
        font-style: normal;
        font-family: 'Roboto', sans-serif !important;
        font-weight: 700;
        line-height: normal;
        margin-bottom: 8px;
    }

    /* small title  */
    h6 {
        font-size: 10px;
        font-style: normal;
        font-family: 'Roboto', sans-serif !important;
        font-weight: 500;
        line-height: normal;
    }



}

@media all and (min-width:769px) and (max-width:1024px) {
    h1 {
        font-size: 64px !important;
        font-family: Oswald !important;
        text-transform: uppercase;
        font-weight: 700;
        font-style: italic;
    }

    h2 {
        font-size: 48px !important;
        font-family: Oswald !important;
        text-transform: uppercase;
        font-weight: 700;
        font-style: italic;
        margin-bottom: 32px;
    }
}



/* FLEX CONTAINERS */

.flex-display {
    display: flex;
}


.flex-container-row {
    display: flex;
    flex-direction: row;
}

.flex-container-row-2 {
    display: flex;
    flex-direction: row;
}

.justify-center {
    justify-content: center;
    display: flex;
    flex-direction: column;
}


.flex-container-column {
    display: flex;
    flex-direction: column;
}

.align-left {
    align-items: start;
}

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

.align-stretch {
    align-items: stretch;
}

.gap-8 {
    gap: 8px;
}

.gap-16 {
    gap: 16px;
}

.gap-32 {
    gap: 32px;
}


@media all and (max-width:768px) {
    .desktop-wrapper {
        display: none;
    }

    .mobile-wrapper {
        display: block;
    }

    .mobile-space-container {
        height: 48px;
    }
}

@media all and (min-width:769px) {
    .desktop-wrapper {
        display: block;
    }

    .mobile-wrapper {
        display: none;
    }
}

.footer-content .footer-container {
    padding: 32px !important;
}


@media (min-width: 1025px) {
    .footer-content .footer-container {
        padding: 96px !important;
    }
}

@media all and (min-width:320px) and (max-width:768px) {

    .flex-container-row {
        display: flex;
        flex-direction: column;
    }
}

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

    .flex-container-row-2 {
        display: flex;
        flex-direction: column;
    }
}




/* CONTAINERS */

.space-container {
    height: 96px;
}

@media all and (max-width:1024px) {
    .space-container {
        height: 48px;
    }
}

.intro-container {
    padding: 96px;
    z-index: 2;
    position: relative;
}

@media all and (max-width:1024px) {
    .intro-container {
        padding: 32px;
        z-index: 2;
        position: relative;
    }

    .intro-container-2 {
        padding: 32px;
        position: relative;
    }
}


.intro-container-2 {
    /* bigger padding */
    padding: 128px;
    position: relative;
}

.body-container {
    padding: 0px 96px 96px 96px;
    position: relative;
}


.container-30 {
    width: 30%;
    height: 100%;
    position: relative;
}

@media all and (min-width:320px) and (max-width:1024px) {
    .container-30 {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-break: break-word;
    }
}

.container-25 {
    width: 25%;
    height: 100%;
    position: relative;
}

@media all and (min-width:320px) and (max-width:768px) {
    .container-25 {
        width: 100%;
        height: 100%;
        flex: 1 1 100%;
        position: relative;
    }
}

.container-50 {
    width: 50%;
    height: 100%;
    position: relative;
}

@media all and (min-width:320px) and (max-width:768px) {
    .container-50 {
        width: 100%;
        height: 100%;
        position: relative;
    }
}

.container-70 {
    width: 70%;
    height: 100%;
    position: relative;
}

@media all and (min-width:320px) and (max-width:1024px) {
    .container-70 {
        width: 100%;
        height: 100%;
        position: relative;
    }
}

/* BUTTON CONTAINERS */

.storm-button-container {
    width: fit-content;
    display: flex;
    gap: 16px;
    flex-direction: row !important;
    justify-content: left !important;
    margin-top: 32px;

}

@media (min-width: 320px) and (max-width: 768px) {
    .storm-button-container {
        margin: unset !important;
    }
}


@media all and (max-width:1024px) {
    .storm-button-container {
        width: fit-content;
        display: flex;
        gap: 16px;
        flex-direction: row;
        justify-content: left !important;
        flex-wrap: wrap;
        margin-top: 8px;
    }
}



/* card button */
.storm-button-container-2 {
    width: fit-content;
    display: flex;
    align-items: center;
    margin-top: 16px !important;
    gap: 16px;
    flex-direction: column;
    margin: auto;
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translate(-50%, -00%);
}

/* center */
.storm-button-container-3 {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-direction: row;
    margin: auto;
    margin-top: 24px !important;
}

/* left */
.storm-button-container-4 {
    width: fit-content;
    display: flex;
    gap: 16px;
    flex-direction: row;
    justify-content: left !important;
    margin-top: 8px;
}

@media all and (max-width:1024px) {
    .storm-button-container-4 {
        width: fit-content;
        display: flex;
        gap: 16px;
        flex-direction: row;
        justify-content: left !important;
        margin: auto;
        margin-top: 8px;
    }
}


.storm-button-container-5 {
    width: fit-content;
    display: flex;
    gap: 16px;
    flex-direction: column;
    align-items: center;
    margin: auto;
    margin-top: 8px;

}


.storm-button-container-6 {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-direction: row;
    margin: auto;
    padding: 24px;
}

/*  BUTTON CONTAINER END */


/* BUTTON STYLES */
.btn {
    padding: 16px 32px !important;
    border-radius: 100px;
    text-decoration: none !important;
    width: fit-content;
    font-weight: 700 !important;
    font-size: 12px !important;
    line-height: 20px !important;
    letter-spacing: 0.1px !important;
    display: flex !important;
    gap: 16px;
    align-items: center;

}

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

    /* SMALL BUTTON */
    .btn {
        padding: 8px 16px !important;
        border-radius: 100px;
        text-decoration: none !important;
        width: fit-content;
        font-weight: 700 !important;
        font-size: 10px !important;
        line-height: 20px !important;
        letter-spacing: 0.1px !important;
        display: flex !important;
        gap: 8px;
        align-items: center;
    }
}




/* btn default*/
.btn.default {
    border: solid 2px #FAFDFA !important;
    background-color: #FAFDFA !important;
    color: #191C1B !important;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25) !important;
}

.btn.default:hover {
    border: solid 2px #FAFDFA !important;
    background-color: #FAFDFA !important;
    color: #191C1B !important;
    box-shadow: 0px 1px 2px 3px rgba(0, 0, 0, 0.05) !important;

}

.btn.default.active {
    background-color: #191C1B !important;
    border: solid 2px #191C1B !important;
    color: #FAFDFA !important;
    box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.15) !important;
}

/* btn default outline*/
.btn.default.outline {
    border: solid 2px #FAFDFA !important;
    background-color: transparent !important;
    color: #191C1B !important;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25) !important;
}

.btn.default.outline:hover {
    border: solid 2px #FAFDFA !important;
    background-color: #FAFDFA !important;
    color: #191C1B !important;
    box-shadow: 0px 1px 2px 3px rgba(0, 0, 0, 0.05) !important;
}

.btn.default.outline.active {
    border: solid 2px #FAFDFA !important;
    background-color: #FAFDFA !important;
    color: #191C1B !important;
    box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.15) !important;
}

/* btn default no outline*/
.btn.default.outline.none {
    background-color: transparent !important;
    border: solid 2px transparent !important;
    color: #191C1B !important;
    display: flex !important;
}

.btn.default.outline.none:hover {
    border: solid 2px #FAFDFA !important;
    background-color: #FAFDFA !important;
    color: #191C1B !important;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25) !important;
}

.btn.default.outline.none.active {
    border: solid 2px #FAFDFA !important;
    background-color: #FAFDFA !important;
    color: #191C1B !important;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25) !important;
}

/* btn default dark*/
.btn.default.dark {
    background-color: #FAFDFA !important;
    border: solid 2px #FAFDFA !important;
    color: #191C1B !important;
    display: flex !important;
    justify-content: center;
}

.btn.default.dark:hover {
    background-color: #191C1B !important;
    border: solid 2px #191C1B !important;
    color: #FAFDFA !important;
    box-shadow: 0px 4px 16px 0px rgba(255, 255, 255, 0.25) !important;
}

.btn.default.dark.active {
    background-color: #191C1B !important;
    border: solid 2px #191C1B !important;
    color: #FAFDFA !important;
    box-shadow: 0px 4px 16px 0px rgba(255, 255, 255, 0.25);
}

/* btn default dark outline*/
.btn.default.dark.outline {
    background-color: transparent !important;
    border: solid 2px #FAFDFA !important;
    color: #FAFDFA !important;
    display: flex !important;
    justify-content: center;
}

.btn.default.dark.outline:hover {
    background-color: #191C1B !important;
    border: solid 2px #191C1B !important;
    color: #FAFDFA !important;
    box-shadow: 0px 4px 16px 0px rgba(255, 255, 255, 0.25) !important;
}

.btn.default.dark.outline.active {
    background-color: #191C1B !important;
    border: solid 2px #191C1B !important;
    color: #FAFDFA !important;
    box-shadow: 0px 4px 16px 0px rgba(255, 255, 255, 0.25);
}


/* Storm */
.btn.storm {
    background-color: transparent !important;
    border: solid 2px #D1E7E1 !important;
    color: #0B1F1B !important;
}

.btn.storm:hover {
    background-color: #71D8C4 !important;
    border: solid 2px #71D8C4 !important;
    color: #003730 !important;
}

.btn.storm.active {
    background-color: #71D8C4 !important;
    border: solid 2px #71D8C4 !important;
    color: #003730 !important;
}

/* btn roto-grip*/

.btn.roto-grip {
    background-color: transparent !important;
    border: solid 2px #FFDAD7 !important;
    color: #370D0D !important;
}

.btn.roto-grip:hover {
    background-color: #FFB3AF !important;
    border: solid 2px #FFB3AF !important;
    color: #68000E !important;
}

.btn.roto-grip.active {
    background-color: #FFB3AF !important;
    border: solid 2px #FFB3AF !important;
    color: #68000E !important;
}

/* btn global*/

.btn.global {
    background-color: transparent !important;
    border: solid 2px #FCDEB5 !important;
    color: #271901 !important;
}

.btn.global:hover {
    background-color: #FFBA3E !important;
    border: solid 2px #FFBA3E !important;
    color: #432C00 !important;
}

.btn.global.active {
    background-color: #FFBA3E !important;
    border: solid 2px #FFBA3E !important;
    color: #432C00 !important;
}

.btn.global.disabled {
    background-color: #FFDEAE !important;
    border: solid 2px #FFDEAE !important;
    color: #FCDEB5 !important;
}

/* NEXT PREV BUTTONS */
/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 46%;
    width: auto;
    padding: 16px;
    background-color: #191C1B !important;
    color: #FAFDFA !important;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    text-decoration: none;
}

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

    .prev,
    .next {
        cursor: pointer;
        position: absolute;
        top: 46%;
        width: auto;
        padding: 8px;
        background-color: #191C1B !important;
        color: #FAFDFA !important;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
        text-decoration: none;
    }

}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 4px 0 0 4px;
}

/* Position the "next button" to the right */
.prev {
    left: 0;
    border-radius: 0px 4px 4px 0px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: #FAFDFA !important;
    color: #191C1B !important;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25) !important;
    text-decoration: none !important;
}

.prev svg,
.next svg {
    display: block;
}



/* dropdown info containers */
/* FAQ item wrapper */

.faq-container {
    width: 50%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* 👈 ensures top-down expansion */
}

.faq-item {
    padding: 16px;
    cursor: pointer;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25) !important;
}

/* FAQ question row */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}


/* Arrow SVG */
.faq-arrow {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-arrow svg {
    transition: transform 0.3s ease;
}

/* Answer hidden by default */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease;
    opacity: 0;
    padding-top: 0;
    display: flex;
    flex-direction: column;
}

/* When active, show answer and rotate arrow */
.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 24px;
    border-top: 1px solid black;

}

.faq-item.active .faq-arrow svg {
    transform: rotate(180deg);
}

@media all and (min-width:320px) and (max-width:1024px) {
    .faq-container {
        width: 100%;
        margin: auto;
    }
}

/* TAB COMPONENT */
.tabs {
    padding: 16px 32px;
    margin: auto;
    margin-bottom: 32px;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 4px 32px 2px rgba(0, 0, 0, 0.25);
    width: 85%;
    display: flex;
    gap: 16px;
}

/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */

/* HOMEPAGE */
/* SLIDESHOW CONTAINER */
.banner-container {
    width: 100%;
    position: relative !important;
    margin: auto;
    margin-top: -96px;
    background-color: #191C1B;
}

/* Hide the images by default */
.mySlides {
    display: none;
    position: relative;
    transition: opacity 2s ease-in-out;
    /* Add this line for a smoother transition */
}

.slide img {
    max-height: unset !important;
    max-width: unset !important;
}

/* SLIDER DOTS */
/* The dots/bullets/indicators */
.dot-container {
    width: fit-content;
    position: absolute;
    bottom: 64px;
    left: 96px;
    z-index: 3;
}

.dot {
    cursor: pointer;
    height: 4px;
    width: 32px;
    margin: 0 2px;
    background-color: #FAFDFA;
    display: inline-block;
    border-radius: 100px 0px 100px 0px;
    transition: background-color 0.6s ease;
}


.dot:hover {
    background-color: #191C1B;
    box-shadow: 1px 1px 1px 0px rgba(255, 255, 255, 0.25) !important;
}

.dot.active {
    background-color: #191C1B;
    box-shadow: 1px 1px 1px 0px rgba(255, 255, 255, 0.25) !important;
}

/*BANNERS*/
/* DESKTOP 1920 x 1080 */

.slide {
    width: 100%;
    height: 700px;
    position: relative;
    overflow: hidden;
    margin-top: 64px;
}

.slide-background {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 0;

    visibility: visible;
    opacity: 1;
}

.slide-foreground {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    /* Prevent interaction with hidden elements */
}

.slide-foreground img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}


/* Styles for screen sizes between 320px and 768px */
@media all and (min-width: 320px) and (max-width: 768px) {

    .slide {
        width: 100%;
        height: 700px;
        position: relative;
        overflow: hidden;
        margin-top: 32px;
    }

    .slide-background {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }

    .slide-foreground {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        /* Allow interaction when visible */
        margin-top: 64px;
    }
}




/* the ballroom  */
.product-container {
    padding: 32px;
    width: fit-content;
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin: auto;
}


.brand-stripe {
    padding: 16px;
    height: auto;
    background-color: #191C1B;
}

.brand-stripe img {
    height: 37px !important;
}


.ball {
    width: 200px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    border-radius: unset !important;
    overflow: unset !important;
    text-wrap: auto;
}

@media all and (min-width:320px) and (max-width:425px) {
    .ball {
        width: 150px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        border-radius: unset !important;
        overflow: unset !important;
        text-wrap: auto;
    }
}

/* EVENTS */

.upcoming-events {

    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/medias/SPI-EVENTS-BANNER.jpg?fv=978E66CFA9463D184BFC1CC7AE037295-272955") no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;

}

@media all and (max-width:768px) {
    .upcoming-events {
        background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/medias/SPI-EVENTS-BANNER MOBILE.png") no-repeat center;
        background-size: cover;
        background-attachment: scroll;
        position: relative;
    }
}

.event-card {

    display: flex;
    flex-direction: row;
    gap: 16px;
}

.event {
    width: 400px;
    padding-top: 64px;
    padding-bottom: 64px;
    padding-left: 32px;
    padding-right: 32px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: 16px;
    /* M3/Elevation Light/2 */
    box-shadow: 0px 2px 6px 2px rgba(0, 0, 0, 0.15), 0px 1px 2px 0px rgba(0, 0, 0, 0.30);
}

.event-card-container {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 32px;
    margin-bottom: 4px;
    width: max-content;
    height: 100%;
}

/* WHY CHOOSE STORM */
.choose-storm-container {
    padding: 96px;
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/medias/SPI-HOME-ABOUT-BANNER.jpg?fv=E231A6D7AC5DF4E6001965462ABF58F4-108257") no-repeat center;
    background-size: cover;
    position: relative;

}

.choose-storm {
    width: fit-content;
    margin: auto;

    display: flex;
    flex-direction: row;
    gap: 32px;
    margin-bottom: 32px;
}

.why {
    padding: 32px;
    width: fit-content;
    height: auto;
    border-radius: 16px;
    background: #23312E;

}

.home-container {
    width: 85%;
    margin: auto;
    border-radius: 16px;
    box-shadow: 0px 2px 32px 16px rgba(0, 0, 0, 0.09) !important;
}

.home-container-2 {
    width: 85%;
    margin: auto;
    border-radius: 16px;
    box-shadow: 0px 2px 32px 16px rgba(0, 0, 0, 0.09) !important;
}

.banner-button-container {
    width: 500px;
    text-align: left;
    position: absolute;
    bottom: 96px;
    left: 96px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 3;
    transform: unset !important;
}

/* SMALL PHONE */
@media all and (min-width:320px) and (max-width:425px) {

    .home-container {
        width: 100%;
        margin: auto;

        border-radius: 16px;

    }

    .dot-container {
        width: fit-content;
        position: absolute;
        bottom: 32px;
        left: 16px;
    }

    .banner-button-container {
        width: 300px;
        position: absolute;
        bottom: 64px;
        left: 16px;
        /* Center horizontally */
        display: flex;
        justify-content: center;
    }

}

/* LARGE PHONE - SMALL TABLET */
@media all and (min-width:426px) and (max-width:768px) {

    .home-container {
        width: 85%;
        margin: auto;

        border-radius: 16px;

    }

    .dot-container {
        width: fit-content;
        position: absolute;
        bottom: 32px;
        left: 16px;
    }

    .banner-button-container {
        width: 400px;
        position: absolute;
        bottom: 64px;
        left: 16px;
        /* Center horizontally */
        display: flex;
        justify-content: center;
    }
}

/* LARGE TABLET*/
@media all and (min-width:769px) and (max-width:1024px) {


    .dot-container {
        width: fit-content;
        position: absolute;
        bottom: 32px;
        left: 32px;
    }

    .banner-button-container {
        width: fit-content;
        position: absolute;
        bottom: 64px;
        left: 32px;
        /* Center horizontally */
        display: flex;
        justify-content: center;
    }
}

/* SMALL LAPTOP */
@media all and (min-width:1025px) and (max-width:1440px) {



    .dot-container {
        width: fit-content;
        position: absolute;
        bottom: 32px;
        left: 32px;
    }

    .banner-button-container {
        width: fit-content;
        position: absolute;
        bottom: 64px;
        left: 32px;
        /* Center horizontally */
        display: flex;
        justify-content: center;
    }



}

/* LARGE LAPTOP */
@media all and (min-width:1441px) and (max-width:1880px) {}

/* LARGE LAPTOP */
@media all and (min-width:1881px) and (max-width:1920px) {}

/* 4K SCREEN */
@media all and (min-width:2560px) {
    .slide {
        width: 100%;
        height: 900px;
        position: relative;
        overflow: hidden;
        margin-top: 64px;
    }

}


/* END HOME WEB PAGE  */

/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */


/* ABOUT US LANDING PAGE */

.about-links {
    width: 100%;
    height: fit-content;
}


.hero-container {
    height: 100vh !important;
    overflow: hidden;
    position: relative;
}

/* History */
.history-container {}

.kfc-bucket {}

/* campus img */
.campus-view {
    margin-top: 64px;
    overflow: hidden;
    background-color: #000000;

}

/* Purpose */
.purpose-container {
    position: relative;
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/ABOUT/storm-lanes.jpg") no-repeat center;
    background-size: cover;
    background-attachment: fixed;
    padding: 96px;
}

.purpose-container h3 {
    font-size: 160px;

}


/* Value */
.value-container {
    position: relative;
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/ABOUT/storm-blue.jpg") no-repeat center top;
    background-size: cover;
    background-attachment: fixed;
    padding: 96px;
}


/* Visions */
.our-visions {
    display: flex;
    flex-direction: row;
    gap: 64px;
    margin-top: 32px;
}

.vision-tile {
    width: 100%;
    display: block;
    text-align: left;
}

.vision-tile img {
    margin-bottom: 8px;
    border-radius: 16px;
}

.value-scroll {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: auto;

}

.value-tile {
    text-align: left;
    padding: 32px;
    background-color: rgba(0, 0, 0, 0.80);
    border-radius: 16px;
}


.hero-text {
    width: max-content;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-0%, -50%);
    white-space: nowrap;
    /* Prevents the text from wrapping to the next line */
    z-index: 2;
}

.hero-text h1 {
    font-size: 288px;
}

/* SMALL PHONE */
@media all and (min-width:320px) and (max-width:425px) {

    .h1-variant-2 {
        font-family: 'Roboto', sans-serif !important;
        font-size: 48px;
        text-transform: uppercase;
    }

    /* hero text */
    .hero-container {
        height: 50vh !important;
        overflow: hidden;
        position: relative;
    }

    .hero-text {
        width: 80%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) !important;
        white-space: normal;
    }

    .hero-text h1 {
        font-size: 48px !important;
        text-align: center;
    }

    .body-container {
        padding: 0px 32px 48px 32px;
    }

    .purpose-container {
        padding: 32px;
        background-attachment: scroll;
    }

    .purpose-container h3 {
        font-size: 48px;

    }

    .our-visions {
        display: flex;
        flex-direction: column;
        gap: 32px;
        margin-top: 32px;
    }

    .value-container {
        padding: 32px;
        background-attachment: scroll;
    }

    .value-scroll {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin: auto;
    }

    .history-container img {
        width: 100%;
    }

    .bill-chrisman img {
        width: 100%;
    }

}

/* LARGE PHONE - SMALL TABLET */
@media all and (min-width:426px) and (max-width:768px) {

    .h1-variant-2 {
        font-family: 'Roboto', sans-serif !important;
        font-size: 64px;
        text-transform: uppercase;
    }

    /* hero text */
    .hero-container {
        height: 80vh !important;
        overflow: hidden;
        position: relative;
    }

    .hero-text {
        width: 80%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) !important;
        white-space: normal;
    }

    .hero-text h1 {
        font-size: 64px !important;
        text-align: center !important;
    }





    .body-container {
        padding: 0px 64px 64px 64px;
    }

    .purpose-container {
        padding: 64px;
        background-attachment: scroll;
    }

    .purpose-container h3 {
        font-size: 64px;

    }

    .our-visions {
        display: flex;
        flex-direction: column;
        gap: 32px;
        margin-top: 32px;
    }

    .value-container {
        padding: 64px;
        background-attachment: scroll;
    }

    .value-scroll {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin: auto;
    }

    .history-container img {
        width: 100%;
    }

    .bill-chrisman img {
        width: 100%;
    }
}

/* LARGE TABLET*/
@media all and (min-width:769px) and (max-width:1024px) {
    .h1-variant-2 {
        font-family: 'Roboto', sans-serif !important;
        font-size: 96px;
        text-transform: uppercase;
    }

    .our-visions {
        display: flex;
        flex-direction: column;
        gap: 64px;
        margin-top: 32px;
    }

    .value-scroll {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin: auto;
    }

    .purpose-container h3 {
        font-size: 96px;

    }


    .history-container img {
        width: 100%;
    }

    .bill-chrisman img {
        width: 100%;
    }

}

/* SMALL LAPTOP */
@media all and (min-width:1025px) and (max-width:1440px) {

    .h1-variant-2 {
        font-family: 'Roboto', sans-serif !important;
        font-size: 128px;
        text-transform: uppercase;
    }

    .purpose-container h3 {
        font-size: 128px;

    }

    .history-container img {
        width: 70%;
    }

    .bill-chrisman img {
        width: 70%;
    }

}



/* LARGE LAPTOP */
@media all and (min-width:1441px) and (max-width:2560px) {}

/* 4K SCREEN */
@media all and (min-width:2560px) {
    .purpose-container h3 {
        font-size: 288px;

    }
}


/* END ABOUT WEB PAGE  */

/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */



/* VIDEO */
.video-banner {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: -6px;
    border: 0;
    z-index: 5;
    position: relative;
}


.large-video-display {
    flex: 0 0 auto;
    width: 640px;
    /* or whatever size you want */
    scroll-snap-align: center;
    scroll-snap-stop: always;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

@media all and (min-width:320px) and (max-width:425px) {
    .large-video-display {
        width: 280px
    }
}

@media all and (min-width:426px) and (max-width:768px) {
    .large-video-display {
        width: 380px
    }
}

/* END VIDEO  */

/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */

.card {
    /* WITH PADDING (SAME AS CARD-4 BUT WITHOUT A BUTTON - NON FUNCTIONAL) */
    padding: 32px !important;
    width: 300px !important;
    border-radius: 16px !important;
    background-color: white !important;
    box-shadow: 0px 0px 24px 2px rgba(0, 0, 0, 0.09) !important;
    text-wrap: auto !important;
    position: relative;
}

.card-2 {
    /* (CONTENT CARD) */
    width: 300px !important;
    height: 520px !important;
    background-color: white !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0px 0px 24px 2px rgba(0, 0, 0, 0.09) !important;
    position: relative !important;
}

.card-3 {
    /*(BLOG CARD / VIDEO CARD) */
    width: 300px !important;
    height: auto !important;
    background-color: white !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0px 0px 24px 2px rgba(0, 0, 0, 0.09) !important;
    position: relative !important;
}

.card-4 {
    /* (PRODUCT CARD) */
    width: 300px !important;
    padding: 32px !important;
    background-color: #F5F5F5 !important;
    border-radius: 16px !important;
    box-shadow: none !important;
    position: relative !important;
    border: unset !important;
    text-wrap: auto;
}

.card-4:hover {
    padding: 32px !important;
    background-color: white !important;
    border-radius: 16px !important;
    box-shadow: 0px 0px 24px 2px rgba(0, 0, 0, 0.09) !important;
    position: relative !important;
}

.card-5 {
    /* (ATHLETE HIGHLIGHT CARD) */
    width: 300px !important;
    height: 550px !important;
    background-color: white !important;
    border-radius: 16px !important;
    box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.15) !important;
}

.card-6-product-bar {
    /* PRODUCT BAR  */
    padding: 32px;
    width: 150px;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0px 4px 32px 2px rgba(0, 0, 0, 0.09);
}


.card-22 {
    /* NO PADDING - WITH SHADOW (CONTENT CARD - NO BUTTON (LEADERSHIP CARDS)) */
    width: 300px;
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.15);
    position: relative;
}

.card-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    /* <<< THIS is the wrap you need */
    gap: 16px;
    justify-content: center;
}


@media all and (min-width:320px) and (max-width:1440px) {
    .card-row {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: unset;

    }
}

.card-wrapper {
    flex: 1 1 100%;
    /* grow: yes, shrink: yes */
    min-width: 250px;
    /* don’t go smaller than this */
    max-width: 700px;
    /* don’t go bigger than this */
    display: flex;
    justify-content: center;
    flex-direction: column
}

@media all and (min-width:320px) and (max-width:768px) {
    .card-wrapper {
        flex: 1 1 100%;
        /* grow: yes, shrink: yes */
        min-width: 250px;
        /* don’t go smaller than this */
        max-width: 768px;
        /* don’t go bigger than this */
        display: flex;
        justify-content: center;
        flex-direction: column
    }
}

@media all and (min-width:769px) and (max-width:1024px) {
    .card-wrapper {
        flex: 1 1 100%;
        min-width: 350px;
        max-width: 350px;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
}


@media all and (min-width:1025px) and (max-width:1440px) {
    .card-wrapper {
        flex: 1 1 100%;
        min-width: 450px;
        max-width: 450px;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
}




.full-card {
    flex: 1;
    /* Fills parent height */
    display: flex;
    flex-direction: column;
    padding: 32px;
    background-color: #F3F3F5;
    border-radius: 16px;
    position: relative;


}

.full-card-text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
}

.full-card-cta {
    position: absolute;
    bottom: 64px;
    left: 64px;
    z-index: 10;
    /* 👇 These fix the wrapping */
    width: auto;
    max-width: calc(100% - 32px);
    /* accounts for left+right padding */
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
}


@media all and (min-width:320px) and (max-width:425px) {
    .full-card-cta {
        position: absolute;
        bottom: 24px;
        left: 24px;
        z-index: 10;
    }
}



@media all and (min-width:426px) and (max-width:1024px) {
    .full-card-cta {
        position: absolute;
        bottom: 32px;
        left: 32px;
        z-index: 10;
        width: auto;
        max-width: calc(100% - 32px);
        white-space: normal;
        word-break: break-word;
        overflow-wrap: break-word;
    }
}





.full-card-product {
    flex: 1;
    padding: 32px;
    background-color: #F5F5F5 !important;
    border-radius: 16px !important;
    box-shadow: none !important;
    position: relative !important;
    border: unset !important;
    text-wrap: auto;
}


.full-card-product:hover {

    padding: 32px;
    background-color: white !important;
    border-radius: 16px !important;
    box-shadow: 0px 0px 24px 2px rgba(0, 0, 0, 0.09) !important;
    position: relative !important;
}

.gradient {
    position: relative;
    /* 🔥 this is required */
    overflow: hidden;
}

.gradient::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    /* 👈 controls how far up the gradient goes */
    background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
    pointer-events: none;
    z-index: 1;
}

.gradient:hover::after {
    opacity: 0;
}

.gradient:hover .full-card-text {
    text-shadow: 0 0 8px rgba(0, 0, 0, 1);
    /* Stronger on hover */
}


.full-section {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.full-section-copy {
    position: absolute;
    top: 64px;
    /* Stick to top */
    left: 50%;
    /* Move horizontal anchor to center */
    transform: translateX(-50%);
    /* Shift back by 50% of its width for true centering */
}





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

    .card {
        /* WITH PADDING - NO SHADOW (SOCIAL CARD)  */
        padding: 16px !important;
        width: 186px !important;
        background-color: white;
        border-radius: 16px;
    }




    .card-22 {
        width: 250px;
    }


    .card-3 {
        width: 230px !important;


    }

    .card-4 {
        /* (PRODUCT CARD) */
        width: 150px !important;
        padding: 32px !important;
        background-color: #F5F5F5 !important;
        border-radius: 16px !important;
        box-shadow: none !important;
        position: relative !important;
        border: unset !important;
        text-wrap: auto;
    }



    .video-card {
        width: 250px;


    }

}

@media all and (min-width:320px) and (max-width:768px) {

    .card-2 {
        width: 230px !important;
        height: 400px !important;
    }

    .card-5 {
        width: 250px !important;
        height: 420px !important;
        background-color: white;
        border-radius: 16px;
        box-shadow: 0px 4px 16px 2px rgba(0, 0, 0, 0.09);
    }

}

@media all and (min-width:769px) and (max-width:1024px) {
    .card-2 {
        width: 250px !important;
        height: 500px !important;
    }
}



@media all and (min-width: 320px) and (max-width: 768px) {
    .card-info {

        text-align: left;

        display: flex;
        flex-direction: column;
        justify-content: space-between;
        text-wrap: auto;
    }

}

.card-info {

    text-align: left;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-wrap: auto;
}



.card-info-2 {
    /* CENTERED - PADDING 32px */
    padding: 32px;
    text-decoration: none !important;
    text-align: center;
    font-family: 'Roboto', sans-serif !important;
    display: flex;
    flex-direction: column;
    text-wrap: auto;
}

@media all and (min-width:320px) and (max-width:768px) {

    .card-info-2 {
        /* CENTERED - PADDING 32px */
        padding: 16px;
        text-decoration: none !important;
        text-align: center;
        font-family: 'Roboto', sans-serif !important;
        display: flex;
        flex-direction: column;
        text-wrap: auto;
    }

    .card-info-2 p {
        margin-top: 0px;
    }
}

/* UI CARD BACKGROUND */
.card-background {
    height: auto;
    position: relative;
    overflow: hidden;

}


.card-background img {
    width: 100%;

}

.card-background img:hover {
    transform: scale(1.1);
    transition-duration: 0.5s;

}





/* END CARDS  */

/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */



/* CARD CONTAINERS  */
.ui-card-container {
    display: flex;
    gap: 16px;
    justify-content: center;
    padding: 32px;


}

/* overflow always */
.overflow {
    flex-flow: row;
    width: max-content;

}


/* wrap until overflow */
.contain {
    flex-flow: row;
}


/* always wrap */
.wrap {
    flex-flow: row wrap;
}

.auto-margin {
    margin: auto;
}




.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-content: center;
    /* Center the grid if there's extra space */
    justify-items: center;
    gap: 16px;
}

.padding-32 {
    padding: 32px;
}

@media all and (min-width:320px) and (max-width:1024px) {
    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        justify-content: center;
        /* Center the grid if there's extra space */
        justify-items: center;
        gap: 8px;
    }
}




@media all and (min-width:320px) and (max-width:768px) {
    .ui-card-container {
        padding: 16px;
        gap: 8px;
    }




}

@media all and (min-width:320px) and (max-width:1440px) {
    .contain {
        flex-flow: row;
        width: max-content;
    }

}




.tech-card {

    padding: 16px;
    width: 200px;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.15);

}

@media all and (max-width:1440px) {}

/* END CARD CONTAINERS  */

/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */



/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */




/*  TEXT STYLE  */

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

.white-text {
    color: #FAFDFA;
}

.grey-text {
    color: #A9A9A9;
}


.body-text {
    font-family: Roboto, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    width: 55%;
    margin: auto !important;
}

@media all and (min-width:320px) and (max-width:1024px) {
    .body-text {
        font-family: Roboto, sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: normal;
        width: 100%;
        margin: auto !important;
    }
}

/* USE FOR SECTION WITH PADDING */
.title-container {
    padding: 96px 32px 0px 32px;
}

@media all and (min-width:320px) and (max-width:768px) {
    .title-container {
        padding: 32px 32px 0px 32px;
    }
}

/* USE FOR SECTION NO PADDING */
.title-container-2 {
    padding: 0px 32px 0px 32px;
}


/* USE FOR SECTION little PADDING */
.title-container-3 {
    padding: 32px 32px 0px 32px;
}



/* END TEXT STYLE  */

/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */





/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */




/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */



/* BRAND LANDING PAGE */

.brand-section {
    width: 100%;
    height: 700px;
    position: relative;
    overflow: hidden;
}

.banner-brand-logo {
    width: 315px;
    height: 315px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-top: 96px;
}

.brand-background {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 0;
}

.brand-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.brand-forground {
    width: 50%;
    height: fit-content;
    position: absolute;
    right: 0%;
    top: 45%;
    transform: translate(0%, -50%);
}

.brand-forground img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.brand-info {
    position: absolute;
    left: 128px;
    top: 50%;
    transform: translate(0%, -50%);
    text-align: left;
}

.brand-info img {
    width: 300px;
}

.up-scroll {
    transform: translateY(-100%);
    transition: transform 0.6s ease-in-out;
}

.down-scroll {
    transform: translateY(100%);
    transition: transform 0.6s ease-in-out;
}

/* SMALL PHONE */
@media all and (min-width:320px) and (max-width:425px) {
    .brand-info {
        position: absolute;
        left: 20px;
        top: 192px;
        transform: translate(0%, -0%);
        text-align: left;
        width: 300px;
    }

    .brand-info svg {
        margin-bottom: 64px;
        width: 250px;
    }

    .brand-forground {
        width: 100%;
        height: fit-content;
        position: absolute;
        top: unset;
        right: 50%;
        bottom: 160px;
        transform: translate(50%, 0%);
    }
}

/* LARGE PHONE - SMALL TABLET */
@media all and (min-width:426px) and (max-width:768px) {
    .brand-info {
        position: absolute;
        left: 64px;
        top: 192px;
        transform: translate(0%, -00%);
        text-align: left;
    }



    .brand-forground {
        width: 80%;
        height: fit-content;
        position: absolute;
        top: unset;
        right: 50%;
        bottom: 160px;
        transform: translate(50%, 0%);
    }
}

/* LARGE TABLET*/
@media all and (min-width:769px) and (max-width:1024px) {
    .brand-info {
        position: absolute;
        left: 96px;
        top: 50%;
        transform: translate(0%, -50%);
        text-align: left;
    }


}

/* SMALL LAPTOP */
@media all and (min-width:1025px) and (max-width:1440px) {}

/* LARGE LAPTOP */
@media all and (min-width:1441px) and (max-width:1880px) {}

/* LARGE LAPTOP */
@media all and (min-width:1881px) and (max-width:1920px) {}

/* 4K SCREEN */
@media all and (min-width:1921px) and (max-width:2560px) {}


/* BRAND LANDING PAGE END */

/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */


/* BRAND LANDING PAGE NEW */

.brand-hero-section {
    height: 500px;
    position: relative;
}

.brand-hero-logo {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    border-radius: 100%;
    background-color: white;
    padding: 32px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25) !important;
}

.brand-hero-logo img {

    display: block !important;
    position: static;

}


.global-brand-background {
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/900-global-brand-page/background/global-apparel-background.png") no-repeat center;
    background-size: cover;
    position: relative;
}



/* BRAND LANDING PAGE NEW END */

/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */



/* COMMUNITY WEB PAGE */



.community-hero {}


.community-image-slide-container {
    width: 40%;
    height: 100%;

    float: right;
    position: relative;
}

.community-image-slide-container img {}

.community-image-1,
.community-image-2,
.community-image-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease-in-out;
}

.community-image-1 {

    transform: translate(-50%, -50%) rotate(9.151deg);
}

.community-image-2 {

    transform: translate(-50%, -50%) rotate(0deg);
}

.community-image-3 {

    transform: translate(-50%, -50%) rotate(-9.879deg);
}

.honor-score-container {
    background: linear-gradient(90deg, #0E176A 0%, #0944C2 100%);
    border-radius: 16px;

}

.honor-score-gallery {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin: auto;
    width: max-content;
}

.event-container-cwp {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.event-card {
    width: fit-content;
    padding: 32px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    box-shadow: 0px 4px 32px 2px rgba(0, 0, 0, 0.09);
    margin: auto;
    border-radius: 16px;
}

.event-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.event-details-container {
    display: flex;
    flex-direction: row;
    gap: 16px;

}

.event-detail {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;

}

.honor-score-cards img {
    width: 200px;
}

/* SMALL PHONE */
@media all and (min-width:320px) and (max-width:425px) {


    .community-image-slide-container {
        width: 60%;
        height: 40%;
        float: none;
        position: absolute;
        top: unset;
        left: 50%;
        bottom: 0px;
        transform: translate(-50%, -00%);
    }

    .community-image-slide-container img {
        width: 80%;
    }


    .honor-score-container {
        background: linear-gradient(90deg, #0E176A 0%, #0944C2 100%);
        border-radius: 16px 16px 0px 0px !important;
        margin-bottom: 0px;
    }




    .event-container-cwp {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .event-card {
        width: 100%;
        padding: 0px;
        display: flex;
        flex-direction: column;
        gap: 0px;
        align-items: center;
        justify-content: center;
        box-shadow: 0px 4px 32px 2px rgba(0, 0, 0, 0.09);
        margin: auto;
        border-radius: 16px;
    }

    .event-details-container {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .event-info {
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding: 32px;
    }
}

/* LARGE PHONE - SMALL TABLET */
@media all and (min-width:426px) and (max-width:768px) {


    .community-image-slide-container {
        width: 250px;
        height: 40%;
        float: none;
        position: absolute;
        top: unset;
        left: 50%;
        bottom: 0px;
        transform: translate(-50%, -00%);
    }


    .community-image-slide-container img {
        width: 80%;
    }

    .honor-score-container {
        background: linear-gradient(90deg, #0E176A 0%, #0944C2 100%);
        border-radius: 16px 16px 0px 0px;
        margin-bottom: 0px;
    }

    .event-container-cwp {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .event-card {
        padding: 32px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
        justify-content: center;
        box-shadow: 0px 4px 32px 2px rgba(0, 0, 0, 0.09);
        margin: auto;
        border-radius: 16px;
    }

    .event-details-container {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }


}

/* LARGE TABLET*/
@media all and (min-width:769px) and (max-width:1024px) {


    .community-image-slide-container {
        width: 60%;
        height: 60%;
        float: none;
        position: absolute;
        top: 6%;
        left: 75%;
        transform: translate(-50%, -00%);
    }


    .community-image-slide-container img {
        width: 50%;
    }


    .event-details-container {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
}

/* SMALL LAPTOP */
@media all and (min-width:1025px) and (max-width:1440px) {
    .community-hero {
        height: 700px;
    }

    .community-image-slide-container {
        width: 50%;
        height: 90%;
        float: right;
        position: relative;
    }
}

/* LARGE LAPTOP */
@media all and (min-width:1441px) and (max-width:1880px) {}

/* LARGE LAPTOP */
@media all and (min-width:1881px) and (max-width:1920px) {}

/* 4K SCREEN */
@media all and (min-width:1921px) and (max-width:2560px) {
    .community-hero {
        height: 1150px;
    }
}


/* COMMUNITY WEB PAGE END */

/* --------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */


/* PRODUCTS LANDING PAGE */
.product-banner {
    position: relative;
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/PRODUCTS_LANDING_PAGE/PRODUCT PAGE BANNER.jpg") no-repeat center;
    background-size: cover;
    margin-bottom: 96px;
    height: 700px;
}


.products-hero-info {
    width: 50%;
    margin: auto;
    position: relative;
    top: 50%;
}

.hero-products-bar {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: fit-content;
    margin: auto;
    padding: 32px;
}

.products-bar-container {
    position: absolute;
    bottom: -128px;
    left: 50%;
    transform: translateX(-50%);
}

.brand-card-container {
    display: flex;
    flex-flow: row;
    gap: 16px;
    padding: 32px;
    margin: auto;
    width: fit-content;
}

.products-brand-card {
    padding: 32px;
    width: 250px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0px 4px 32px 2px rgba(0, 0, 0, 0.09);
    position: relative;
}

.brand-card img {
    width: 100%;
    height: 100%;
}

.products-find-a-pro-shop {
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/PRODUCTS_LANDING_PAGE/products-storm-pro-shop.png") no-repeat center top;
    background-size: cover;
}

/* SMALL PHONE */
@media all and (min-width:320px) and (max-width:425px) {
    .products-hero-info {
        width: 76%;
        margin: auto;
        position: relative;
        top: 320px;
    }

    .products-bar-container {
        position: static;
        transform: translateX(-00%);
        margin-top: 320px;
    }

    .products-brand-card {
        padding: 32px;
        width: 150px;
        height: 250px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
        border-radius: 16px;
        box-shadow: 0px 4px 32px 2px rgba(0, 0, 0, 0.09);
    }



    .products-find-a-pro-shop {
        background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/PRODUCTS_LANDING_PAGE/products-storm-pro-shop.png") no-repeat left top;
        background-size: cover;
    }

}

/* LARGE PHONE - SMALL TABLET */
@media all and (min-width:426px) and (max-width:768px) {
    .products-hero-info {
        width: 76%;
        margin: auto;
        position: relative;
        top: 320px;
    }

    .products-bar-container {
        position: static;
        transform: translateX(-00%);
        margin-top: 352px;
    }

    .products-brand-card {
        padding: 32px;
        width: 150px;
        height: 250px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
        border-radius: 16px;
        box-shadow: 0px 4px 32px 2px rgba(0, 0, 0, 0.09);
    }





}

/* LARGE TABLET*/
@media all and (min-width:769px) and (max-width:1024px) {
    .products-hero-info {
        width: 76%;
        margin: auto;
        position: relative;
        top: 320px;
    }

    .products-bar-container {
        position: static;
        transform: translateX(-00%);
        margin-top: 352px;
    }

    .products-brand-card {
        padding: 32px;
        width: 150px;
        height: 250px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
        border-radius: 16px;
        box-shadow: 0px 4px 32px 2px rgba(0, 0, 0, 0.09);
    }





}

/* SMALL LAPTOP */
@media all and (min-width:1025px) and (max-width:1440px) {

    .products-hero-info {
        width: 76%;
        margin: auto;
        position: relative;
        top: 352px;
    }

    .products-bar-container {
        position: static;
        transform: translateX(-00%);
        margin-top: 384px;
    }


}


/* LARGE LAPTOP */
@media all and (min-width:1441px) and (max-width:1880px) {}

/* LARGE LAPTOP */
@media all and (min-width:1881px) and (max-width:1920px) {}

/* 4K SCREEN */
@media all and (min-width:1921px) and (max-width:2560px) {
    .products-find-a-pro-shop {
        background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/PRODUCTS_LANDING_PAGE/products-storm-pro-shop.png") no-repeat left;
        background-size: cover;
    }

    .products-hero-info {
        width: 50%;
        margin: auto;
        position: relative;
        top: 600px;
    }


}

/* PRODUCTS LANDING PAGE END */

/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */






/* RSM WEB PAGE */

.map-container {

    width: 100%;
    margin: auto;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25) !important;
    height: 600px;
    overflow: hidden;
    cursor: grab;
    border-radius: 16px;
}


.map {
    width: 100%;
    height: 170%;
    background-image: url('https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/RSM_WEBPAGE/RSM MAP4.svg');
    /* Replace with your image path */
    background-size: contain;
    /* This ensures the image covers the entire container */
    background-position: center;
    /* This centers the image in the container */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    position: relative;
    cursor: inherit;
}

.rsm {
    width: 50px;
    /* Set the width of the circle */
    height: 50px;
    /* Set the height equal to the width */
    background-color: #71D8C4;
    /* Set the background color */
    border-radius: 50%;
    /* This makes the element a circle */
}

.rsm:hover {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) !important;
}


.rsm-featured {
    display: flex;
    padding: 32px;
}

@media all and (max-width:1024px) {
    .rsm {
        width: 35px;
        height: 35px;
        background-color: #71D8C4;
        border-radius: 50%;
    }

    .rsm-featured {
        display: flex;
        padding: 0px;
    }
}

@media all and (max-width:768px) {
    .rsm {
        width: 25px;
        height: 25px;
        background-color: #71D8C4;
        border-radius: 50%;
    }
}






/* RSM REGION RESPONSIVE DESIGN */

@media all and (min-width:320px) and (max-width:425px) {
    .north-east {
        position: absolute;
        left: 80.5%;
        top: 34.41%;
    }

    .east-central {

        position: absolute;
        left: 74.64%;
        top: 49.02%;

    }

    .south-east {

        position: absolute;
        left: 72.64%;
        bottom: 30.41%;

    }

    .north-central {

        position: absolute;
        left: 60.61%;

        top: 39.22%;
    }

    .south-central {

        position: absolute;
        left: 49.41%;
        bottom: 29.41%;
    }

    .central {
        position: absolute;
        left: 44.90%;
        top: 34.31%;
    }

    .north-west {
        position: absolute;
        left: 25.64%;
        top: 25.61%;
    }

    .south-west {
        position: absolute;
        left: 28.10%;
        bottom: 39.22%;
    }

    .house-account {
        position: absolute;
        left: 18%;
        bottom: 18%;
    }
}

@media all and (min-width:426px) and (max-width:505px) {
    .north-east {
        position: absolute;
        left: 82.5%;
        top: 34.41%;
    }

    .east-central {

        position: absolute;
        left: 75.64%;
        top: 49.02%;

    }

    .south-east {

        position: absolute;
        left: 72.64%;
        bottom: 31.41%;

    }

    .north-central {

        position: absolute;
        left: 60.61%;

        top: 39.22%;
    }

    .south-central {

        position: absolute;
        left: 49.41%;
        bottom: 29.41%;
    }

    .central {
        position: absolute;
        left: 44.90%;
        top: 34.31%;
    }

    .north-west {
        position: absolute;
        left: 25.64%;
        top: 24.61%;
    }

    .south-west {
        position: absolute;
        left: 25.10%;
        bottom: 39.22%;
    }

    .house-account {
        position: absolute;
        left: 14%;
        bottom: 22%;
    }
}

@media all and (min-width:506px) and (max-width:577px) {
    .north-east {
        position: absolute;
        left: 79.5%;
        top: 32.41%;
    }

    .east-central {

        position: absolute;
        left: 73.64%;
        top: 49.02%;

    }

    .south-east {

        position: absolute;
        left: 69.64%;
        bottom: 29.41%;

    }

    .north-central {
        position: absolute;
        left: 58.61%;
        top: 39.22%;
    }

    .south-central {

        position: absolute;
        left: 49.41%;
        bottom: 29.41%;
    }

    .central {
        position: absolute;
        left: 44.90%;
        top: 34.31%;
    }

    .north-west {
        position: absolute;
        left: 25.64%;
        top: 24.61%;
    }

    .south-west {
        position: absolute;
        left: 28.10%;
        bottom: 39.22%;
    }

    .house-account {
        position: absolute;
        left: 18%;
        bottom: 18%;
    }
}

@media all and (min-width:578px) and (max-width:661px) {
    .north-east {
        position: absolute;
        left: 74.5%;
        top: 32.41%;
    }

    .east-central {

        position: absolute;
        left: 70.64%;
        top: 49.02%;

    }

    .south-east {

        position: absolute;
        left: 67.64%;
        bottom: 29.41%;

    }

    .north-central {

        position: absolute;
        left: 57.61%;

        top: 39.22%;
    }

    .south-central {

        position: absolute;
        left: 49.41%;
        bottom: 29.41%;
    }

    .central {
        position: absolute;
        left: 46.90%;
        top: 34.31%;
    }

    .north-west {
        position: absolute;
        left: 32.64%;
        top: 24.61%;
    }

    .south-west {
        position: absolute;
        left: 31.10%;
        bottom: 39.22%;
    }

    .house-account {
        position: absolute;
        left: 23%;
        bottom: 18%;
    }
}


@media all and (min-width:662px) and (max-width:768px) {
    .north-east {
        position: absolute;
        left: 70.5%;
        top: 32.41%;
    }

    .east-central {

        position: absolute;
        left: 67.64%;
        top: 49.02%;

    }

    .south-east {

        position: absolute;
        left: 62.64%;
        bottom: 29.41%;

    }

    .north-central {

        position: absolute;
        left: 57.61%;

        top: 39.22%;
    }

    .south-central {

        position: absolute;
        left: 49.41%;
        bottom: 29.41%;
    }

    .central {
        position: absolute;
        left: 46.90%;
        top: 34.31%;
    }

    .north-west {
        position: absolute;
        left: 34.64%;
        top: 24.61%;
    }

    .south-west {
        position: absolute;
        left: 34.10%;
        bottom: 39.22%;
    }

    .house-account {
        position: absolute;
        left: 27%;
        bottom: 18%;
    }
}

@media all and (min-width:769px) and (max-width:874px) {
    .north-east {
        position: absolute;
        left: 83.04%;
        top: 32.41%;
    }

    .east-central {

        position: absolute;
        left: 76.64%;
        top: 49.02%;

    }

    .south-east {

        position: absolute;
        left: 73.64%;
        bottom: 29.41%;

    }

    .north-central {

        position: absolute;
        left: 60.61%;

        top: 39.22%;
    }

    .south-central {

        position: absolute;
        left: 49.41%;
        bottom: 29.41%;
    }

    .central {
        position: absolute;
        left: 45.90%;
        top: 34.31%;
    }

    .north-west {
        position: absolute;
        left: 24.64%;
        top: 24.61%;
    }

    .south-west {
        position: absolute;
        left: 27.10%;
        bottom: 39.22%;
    }

    .house-account {
        position: absolute;
        left: 15%;
        bottom: 20%;
    }
}

@media all and (min-width:875px) and (max-width:1024px) {
    .north-east {
        position: absolute;
        left: 79.04%;
        top: 32.41%;
    }

    .east-central {

        position: absolute;
        left: 72.64%;
        top: 49.02%;

    }

    .south-east {

        position: absolute;
        left: 69.64%;
        bottom: 29.41%;

    }

    .north-central {

        position: absolute;
        left: 59.61%;

        top: 39.22%;
    }

    .south-central {

        position: absolute;
        left: 49.41%;
        bottom: 29.41%;
    }

    .central {
        position: absolute;
        left: 46.90%;
        top: 34.31%;
    }

    .north-west {
        position: absolute;
        left: 24.64%;
        top: 24.61%;
    }

    .south-west {
        position: absolute;
        left: 28.10%;
        bottom: 39.22%;
    }

    .house-account {
        position: absolute;
        left: 17%;
        bottom: 15.22%;
    }
}

@media all and (min-width:1025px) and (max-width:1342px) {
    .north-east {
        position: absolute;
        left: 80.04%;
        top: 32.41%;
    }

    .east-central {

        position: absolute;
        left: 73.64%;
        top: 49.02%;

    }

    .south-east {

        position: absolute;
        left: 69.64%;
        bottom: 29.41%;

    }

    .north-central {

        position: absolute;
        left: 59.61%;

        top: 39.22%;
    }

    .south-central {

        position: absolute;
        left: 49.41%;
        bottom: 29.41%;
    }

    .central {
        position: absolute;
        left: 44.90%;
        top: 34.31%;
    }

    .north-west {
        position: absolute;
        left: 24.64%;
        top: 24.61%;
    }

    .south-west {
        position: absolute;
        left: 29.10%;
        bottom: 39.22%;
    }

    .house-account {
        position: absolute;
        left: 17%;
        bottom: 15.22%;
    }
}

@media all and (min-width:1343px) and (max-width:1553px) {
    .north-east {
        position: absolute;
        left: 76.04%;
        top: 29.41%;
    }

    .east-central {

        position: absolute;
        left: 69.64%;
        top: 49.02%;

    }

    .south-east {

        position: absolute;
        left: 67.64%;
        bottom: 29.41%;

    }

    .north-central {

        position: absolute;
        left: 58.61%;

        top: 39.22%;
    }

    .south-central {

        position: absolute;
        left: 49.41%;
        bottom: 29.41%;
    }

    .central {
        position: absolute;
        left: 46.90%;
        top: 34.31%;
    }

    .north-west {
        position: absolute;
        left: 29.64%;
        top: 19.61%;
    }

    .south-west {
        position: absolute;
        left: 31.10%;
        bottom: 39.22%;
    }

    .house-account {
        position: absolute;
        left: 22%;
        bottom: 15.22%;
    }
}


@media all and (min-width:1554px) and (max-width:1799px) {
    .north-east {
        position: absolute;
        left: 72.04%;
        top: 29.41%;
    }

    .east-central {

        position: absolute;
        left: 65.64%;
        top: 49.02%;

    }

    .south-east {

        position: absolute;
        left: 62.64%;
        bottom: 29.41%;

    }

    .north-central {

        position: absolute;
        left: 57.61%;

        top: 39.22%;
    }

    .south-central {

        position: absolute;
        left: 49.41%;
        bottom: 29.41%;
    }

    .central {
        position: absolute;
        left: 46.90%;
        top: 34.31%;
    }

    .north-west {
        position: absolute;
        left: 35.64%;
        top: 19.61%;
    }

    .south-west {
        position: absolute;
        left: 34.10%;
        bottom: 39.22%;
    }

    .house-account {
        position: absolute;
        left: 26%;
        bottom: 15.22%;
    }
}


@media all and (min-width:1800px) and (max-width:1980px) {
    .north-east {
        position: absolute;
        left: 83.04%;
        top: 29.41%;
    }

    .east-central {

        position: absolute;
        left: 75.64%;
        top: 49.02%;

    }

    .south-east {

        position: absolute;
        left: 72.64%;
        bottom: 26.41%;

    }

    .north-central {

        position: absolute;
        left: 60.61%;

        top: 39.22%;
    }

    .south-central {

        position: absolute;
        left: 49.41%;
        bottom: 29.41%;
    }

    .central {
        position: absolute;
        left: 43.9%;
        top: 34.31%;
    }

    .north-west {
        position: absolute;
        left: 23.64%;
        top: 19.61%;
    }

    .south-west {
        position: absolute;
        left: 19.1%;
        bottom: 39.22%;
    }

    .house-account {
        position: absolute;
        left: 14%;
        bottom: 15.22%;
    }

}

@media all and (min-width:1981px) and (max-width:2269px) {
    .north-east {
        position: absolute;
        left: 67.04%;
        top: 29.41%;
    }

    .east-central {

        position: absolute;
        left: 63.64%;
        top: 49.02%;

    }

    .south-east {

        position: absolute;
        left: 60.64%;
        bottom: 29.41%;

    }

    .north-central {

        position: absolute;
        left: 56.61%;

        top: 39.22%;
    }

    .south-central {

        position: absolute;
        left: 49.41%;
        bottom: 29.41%;
    }

    .central {
        position: absolute;
        left: 46.90%;
        top: 34.31%;
    }

    .north-west {
        position: absolute;
        left: 35.64%;
        top: 19.61%;
    }

    .south-west {
        position: absolute;
        left: 36.10%;
        bottom: 39.22%;
    }

    .house-account {
        position: absolute;
        left: 30%;
        bottom: 15.22%;
    }
}


@media all and (min-width:2270px) and (max-width:2513px) {
    .north-east {
        position: absolute;
        left: 65.04%;
        top: 29.41%;

    }

    .east-central {

        position: absolute;
        left: 61.64%;
        top: 49.02%;

    }

    .south-east {

        position: absolute;
        left: 58.64%;
        bottom: 29.41%;

    }

    .north-central {

        position: absolute;
        left: 54.61%;

        top: 39.22%;
    }

    .south-central {

        position: absolute;
        left: 49.41%;
        bottom: 29.41%;
    }

    .central {
        position: absolute;
        left: 46.90%;
        top: 34.31%;
    }

    .north-west {
        position: absolute;
        left: 35.64%;
        top: 19.61%;
    }

    .south-west {
        position: absolute;
        left: 36.10%;
        bottom: 39.22%;
    }

    .house-account {
        position: absolute;
        left: 33%;
        bottom: 15.22%;
    }
}

@media all and (min-width:2514px) and (max-width:2559px) {
    .north-east {
        position: absolute;
        left: 64.04%;
        top: 29.41%;
    }

    .east-central {

        position: absolute;
        left: 60.64%;
        top: 49.02%;

    }

    .south-east {

        position: absolute;
        left: 58.64%;
        bottom: 29.41%;

    }

    .north-central {

        position: absolute;
        left: 54.61%;

        top: 39.22%;
    }

    .south-central {

        position: absolute;
        left: 49.41%;
        bottom: 29.41%;
    }

    .central {
        position: absolute;
        left: 46.90%;
        top: 34.31%;
    }

    .north-west {
        position: absolute;
        left: 35.64%;
        top: 19.61%;
    }

    .south-west {
        position: absolute;
        left: 36.10%;
        bottom: 39.22%;
    }

    .house-account {
        position: absolute;
        left: 35%;
        bottom: 15.22%;
    }

}

@media all and (min-width:2560px) and (max-width:3000px) {
    .north-east {
        position: absolute;
        left: 60.04%;
        top: 31.41%;

    }

    .east-central {

        position: absolute;
        left: 58%;
        top: 49.02%;

    }

    .south-east {

        position: absolute;
        left: 56.64%;
        bottom: 29.41%;

    }

    .north-central {

        position: absolute;
        left: 52.61%;

        top: 39.22%;
    }

    .south-central {

        position: absolute;
        left: 49.41%;
        bottom: 29.41%;
    }

    .central {
        position: absolute;
        left: 48.90%;
        top: 34.31%;
    }


    .north-west {
        position: absolute;
        left: 40.64%;
        top: 19.61%;
    }

    .south-west {
        position: absolute;
        left: 42.10%;
        bottom: 39.22%;
    }

    .house-account {
        position: absolute;
        left: 39%;
        bottom: 15.22%;
    }

}


/* SMALL PHONE */
@media all and (min-width:320px) and (max-width:425px) {

    .rsm-content-image {
        margin-bottom: 8px;
    }

    .map-container {
        width: 100%;
        margin: auto;

        height: 400px;
        overflow: hidden;
        cursor: grab;
    }

    .map {
        width: 350%;
        margin: auto;
    }


    .flex-container-column-2 {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .flex-container-row-3 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .flex-container-row-4 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }




}

/* LARGE PHONE - SMALL TABLET */
@media all and (min-width:426px) and (max-width:768px) {

    .rsm-content-image {
        margin-bottom: 8px;
    }

    .map-container {
        width: 100%;
        margin: auto;

        height: 400px;
        overflow: hidden;
        cursor: grab;
    }

    .map {
        width: 300%;
    }


    .flex-container-column-2 {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .flex-container-row-3 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .flex-container-row-4 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }





}

/* LARGE TABLET*/
@media all and (min-width:769px) and (max-width:1024px) {

    .rsm-content-image {
        margin-bottom: 8px;
    }

    .map-container {
        width: 100%;
        margin: auto;

        height: 600px;
        overflow: hidden;
        cursor: grab;
    }

    .map {
        width: 100%;
    }


    .flex-container-column-2 {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .flex-container-row-3 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .flex-container-row-4 {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .container-50 {
        width: 100%;
        position: relative;
        padding: 0px;
    }




}

/* SMALL LAPTOP */
@media all and (min-width:1025px) and (max-width:1440px) {}

/* LARGE LAPTOP */
@media all and (min-width:1441px) and (max-width:2560px) {}

/* 4K SCREEN */
@media all and (min-width:2560px) {
    .map {
        width: 100%;
        height: 200%;
    }

    .map-container {
        width: 100%;
        margin: auto;
        box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.25) !important;
        height: 800px;
        overflow: hidden;
        cursor: grab;
        border-radius: 16px;
    }
}

/* END RSM WEB PAGE */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */

/* EXPLORE WEB PAGE */

.explore-banner {
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/EXPLORE_LANDING_PAGE/EXPLORE PAGE BANNER 1.jpg") no-repeat center;
    background-size: cover;
}

.bowling-101-background {
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/EXPLORE_LANDING_PAGE/BOWLING 101 BACKGROUND.jpg") no-repeat center;
    background-size: cover;
    height: 950px;
}


.bowling-101-icons-container {
    display: flex;
    flex-direction: row;
    gap: 64px;
    width: fit-content;
}


.bowling-101-icons {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.icon {
    display: flex;
    flex-direction: row;
}

.winstorm-instructions {
    width: 50%;
    margin: auto;
}

.bowling-101-container {
    display: flex;
    flex-direction: row;
    gap: 64px;
    justify-content: center;
}

/* SMALL PHONE */
@media all and (min-width:320px) and (max-width:425px) {
    .bowling-101-container {
        display: flex;
        flex-direction: column;
        gap: 64px;
        justify-content: center;
        height: fit-content;
    }

    .bowling-101-icons-container {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .bowling-101-icons {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .icon svg {
        width: 100%;
    }

    .icon {
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
    }

}

/* LARGE PHONE - SMALL TABLET */
@media all and (min-width:426px) and (max-width:768px) {
    .bowling-101-container {
        display: flex;
        flex-direction: column;
        gap: 64px;
        justify-content: center;
        height: fit-content;
    }

    .bowling-101-icons-container {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .bowling-101-icons {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .icon svg {
        width: 100%;
    }

    .icon {
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
    }
}

/* LARGE TABLET*/
@media all and (min-width:769px) and (max-width:1024px) {
    .bowling-101-container {
        display: flex;
        flex-direction: column;
        gap: 64px;
        justify-content: center;
        height: fit-content;
    }
}

/* SMALL LAPTOP */
@media all and (min-width:1025px) and (max-width:1440px) {
    .bowling-101-container {
        display: flex;
        flex-direction: column;
        gap: 64px;
        justify-content: center;
        height: fit-content;
    }
}

/* LARGE LAPTOP */
@media all and (min-width:1441px) and (max-width:1880px) {}

/* LARGE LAPTOP */
@media all and (min-width:1881px) and (max-width:1920px) {}

/* 4K SCREEN */
@media all and (min-width:1921px) and (max-width:2560px) {}


/* EXPLORE WEB PAGE END */

/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */


/* MEMORY LANE WEB PAGE */

.memory-lane-info {
    position: absolute;
    top: 50%;
    left: 96px;
    transform: translateY(-50%);

}

.memory-lane-banner {
    position: relative;
    height: 750px;
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/MEMORY_LANE_WEBPAGE/MEMORY LANE BANNER.jpg") no-repeat center;
    background-size: cover;
}


.memory-lane-info-container {
    display: flex;
    flex-direction: row;
    gap: 16px
}



.memory-lane-icon {
    width: 56px;
    height: 56px;
    margin: 16px auto;
}

.museum-image {
    width: 400px;
}

/* SMALL PHONE */
@media all and (min-width:320px) and (max-width:425px) {
    .memory-lane-banner {
        position: relative;
        height: 500px;
        background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/MEMORY_LANE_WEBPAGE/MEMORY LANE BANNER-MOBILE1.jpg") no-repeat center;
        background-size: cover;
    }

    .memory-lane-info {
        position: absolute;
        top: unset;
        bottom: 0px;
        left: 32px;
        transform: translateY(-50%);
    }

    .expanding-flex-cards {
        display: flex;
        flex-direction: column;
        gap: 32px;
        width: 100%;

    }

    .info-box {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: relative;
        overflow: hidden;
        border-radius: 16px;
    }


}

/* LARGE PHONE - SMALL TABLET */
@media all and (min-width:426px) and (max-width:768px) {
    .memory-lane-banner {
        position: relative;
        height: 600px;
        background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/medias/MEMORY LANE BANNER-MOBILE1.jpg?fv=2F14A09F957E479B1208B3A86D545113-18524") no-repeat center;
        background-size: cover;
    }

    .memory-lane-info {
        position: absolute;
        top: unset;
        bottom: 0px;
        left: 32px;
        transform: translateY(-50%);
    }

    .expanding-flex-cards {
        display: flex;
        flex-direction: column;
        gap: 32px;

    }

    .info-box {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: relative;
        overflow: hidden;
        border-radius: 16px;
    }


}

/* LARGE TABLET*/
@media all and (min-width:769px) and (max-width:1024px) {
    .memory-lane-banner {
        position: relative;
        height: 700px;
        background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/medias/MEMORY LANE BANNER-MOBILE1.jpg?fv=2F14A09F957E479B1208B3A86D545113-18524") no-repeat right;
        background-size: contain;
    }

    .memory-lane-info {
        position: absolute;
        top: unset;
        bottom: 0px;
        left: 32px;
        transform: translateY(-50%);
    }

    .info-box {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: relative;
        overflow: hidden;
        border-radius: 16px;
    }

    .expanding-flex-cards {
        display: flex;
        flex-direction: column;
        gap: 32px;

    }

    .memory-lane-bill {
        width: 100%;
    }
}

/* SMALL LAPTOP */
@media all and (min-width:1025px) and (max-width:1440px) {
    .info-box {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: relative;
        overflow: hidden;
        border-radius: 16px;
    }

    .expanding-flex-cards {
        display: flex;
        flex-direction: column;
        gap: 32px;
        height: 850px;
        width: 75%;
        margin: auto;
    }
}

/* LARGE LAPTOP */
@media all and (min-width:1441px) and (max-width:1880px) {
    .info-box {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: relative;
        overflow: hidden;
        border-radius: 16px;
    }

}

/* LARGE LAPTOP */
@media all and (min-width:1881px) and (max-width:1920px) {
    .info-box {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: relative;
        overflow: hidden;
        border-radius: 16px;
    }



}

/* 4K SCREEN */
@media all and (min-width:1921px) and (max-width:2560px) {
    .info-box {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: relative;
        overflow: hidden;
        border-radius: 16px;
    }

    .expanding-flex-cards {
        display: flex;
        flex-direction: column;
        gap: 32px;
        height: 1000px;
        width: 50%;
        margin: auto;
    }
}

/* END MEMORY LANE WEB PAGE */

/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */


/* NEW WINSTORM WEB PAGE */

.winstorm-logo {
    margin-bottom: 32px;
}

.winstorm-container {
    padding: 96px;
    position: relative;
}


/* LARGE TABLET*/
@media all and (min-width:320px) and (max-width:1024px) {
    .winstorm-container {
        padding: 32px;
        position: relative;
    }
}



.lanetalk-winstorm-logo {
    width: 40%;
}

.lanetalk-winstorm-logo-hp {
    width: 70%;
}

.lane-talk-api-leaderboard-container {

    overflow: hidden;
    background-color: #000000;
    background-size: cover;
    padding: 128px;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 32px;


}

.lane-talk-api-leaderboard-container:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}



.lane-talk-api-leaderboard-container-page {
    position: relative;
    display: flex;
    flex-direction: row;
    padding: 128px;
    gap: 32px;
}

.lane-talk-api-leaderboard {
    background-color: white;
    border-radius: 16px;
    margin: auto;
    padding: 32px;
}


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

.laneTalk-info,
.lane-talk-api-leaderboard {
    position: relative;
    z-index: 2;
    /* Ensure child elements appear above the darkened background */
    text-align: center;
    width: fit-content;
    margin-bottom: 32px;
}



.laneTalk-info>ol>li {
    color: white !important;
    text-align: left;
    width: 50%;
    margin-bottom: 8px;
    /* Adjust this value as needed */

}

.powered-by {
    display: flex;
    flex-direction: row;
    gap: 32px;

    justify-content: center;
}

.powered-by-image-container {
    width: 50%;
}

.leaderboard-container {

    width: 100%;
    max-height: 400px;
    min-height: 400px;
    overflow: auto;

}

.leaderboard-title {
    padding: 32px 32px 32px 32px;
    width: auto;
    background-color: #0083AE;
    border-radius: 16px;
}


.leaderboard-parameters {
    margin: 32px;
    justify-content: space-between;
    display: flex;
    flex-direction: row;
}


.leaderboard-parameters p {
    margin-bottom: 0px !important;
}




#leaderboard {
    width: 100%;
    border-collapse: collapse;
    margin: 0px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

#leaderboard th,
#leaderboard td {
    vertical-align: middle !important;
    text-align: center !important;

}

#leaderboard tbody tr:not(:last-child) {
    background-color: #0083AE;
    border-bottom: 8px solid white;
}

#leaderboard tbody tr:last-child {
    background-color: #0083AE;
}


#leaderboard td {
    overflow: visible;
    text-overflow: ellipsis;
    white-space: nowrap;

}

tbody {
    width: 100%;
}

.fixed-width-table {
    width: 100%;
    /* or a fixed width like 500px */
    table-layout: fixed;
}


/* DATA CELLS */
.score-cell {
    font-size: 48px;
    font-weight: bold;
    color: white;
    padding: 32px;

}

.date-cell {
    font-size: 16px;
    color: white;
    padding: 32px 32px 32px 32px;
}



.player-cell {
    display: flex;
    flex-direction: column;
    /* Use flex display to arrange child elements horizontally */
    font-style: normal;
    font-size: 16px;
    color: white;
    padding: 32px 32px 32px 32px;
    text-transform: uppercase;
}

.player-name {
    color: white;
    font-weight: 900;
}


.location-span {
    text-transform: none;
}



#leaderboard td div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    white-space: normal;
    text-align: left;
}


#leaderboard td div div {
    font-size: 12px;
    color: white;
}

/* PAGINATION */

#pagination {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0px 0px 0px;
}





.lanetalk-background {
    background-color: #0C0C0C;
    padding: 0px 96px 96px 96px;
}


/* mystery score box */
.mystery-container {
    background-color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 96px;
    margin: auto;
    margin-bottom: 32px;
    position: relative;
    /* Add this to position the confetti container relative to it */
}

#confetti-container {
    position: absolute;
    width: 100%;
    height: 200%;
    pointer-events: none;
}

.ticker-container {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 300px;
    font-weight: 900;
    color: white;
    flex-direction: row;
    gap: 32px;
    margin-top: 8px;

}

@media all and (min-width:320px) and (max-width:768px) {
    .ticker-container {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 32px;
        font-weight: 900;
        color: white;
        flex-direction: row;
        gap: 8px;
        margin-top: 8px;
    }

    .mystery-container {
        background-color: white;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 32px;
        margin: auto;
        margin-bottom: 32px;
        position: relative;
    }
}

@media all and (min-width:769px) and (max-width:1024px) {
    .ticker-container {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 64px;
        font-weight: 900;
        color: white;
        flex-direction: row;
        gap: 16px;
        margin-top: 8px;
    }

    .mystery-container {
        background-color: white;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 64px;
        margin: auto;
        margin-bottom: 32px;
        position: relative;
    }
}

@media all and (min-width:1025px) and (max-width:1440px) {
    .ticker-container {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 128px;
        font-weight: 900;
        color: white;
        flex-direction: row;
        gap: 32px;
        margin-top: 8px;
    }
}


.ticker-digit {
    padding: 96px;
    border-radius: 16px !important;
    width: 100%;
    aspect-ratio: 1 / 1.25;
    background-color: #0083A4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 300px;
    font-weight: 900;
    color: white;
    box-sizing: border-box;
}


@media all and (min-width:320px) and (max-width:425px) {
    .ticker-digit {
        padding: 16px;
        border-radius: 4px !important;
        width: 100%;
        aspect-ratio: 1 / 1.25;
        background-color: #0083A4;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        font-weight: 900;
        color: white;
        box-sizing: border-box;
    }
}

@media all and (min-width:426px) and (max-width:768px) {
    .ticker-digit {
        padding: 32px;
        border-radius: 8px !important;
        width: 100%;
        aspect-ratio: 1 / 1.25;
        background-color: #0083A4;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 64px;
        font-weight: 900;
        color: white;
        box-sizing: border-box;
    }
}


@media all and (min-width:769px) and (max-width:1024px) {
    .ticker-digit {
        padding: 64px;
        border-radius: 16px !important;
        width: 100%;
        aspect-ratio: 1 / 1.25;
        background-color: #0083A4;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 96px;
        font-weight: 900;
        color: white;
        box-sizing: border-box;
    }
}






.digit {
    display: block;
    transition: transform 0.5s ease-in-out;
}


.disabled {
    pointer-events: none;
    opacity: 0.5;
}





/* SMALL PHONE */
@media all and (min-width:320px) and (max-width:425px) {

    .lane-talk-api-leaderboard-container-page {
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 32px;
        gap: 32px;
    }

    .leaderboard-container {
        width: 95%;
        max-height: 400px;
        min-height: 400px;
        overflow: auto;
        margin: auto;
    }

    .leaderboard-parameters {
        margin: 16px;
        justify-content: space-between;
        display: flex;
        flex-direction: row;
    }

    .lanetalk-winstorm-logo {
        width: 100%;
    }

    .powered-by {
        display: flex;
        flex-direction: column;
        gap: 0px;
        margin-bottom: 0px;
        justify-content: center;
    }

    .laneTalk-info,
    .lane-talk-api-leaderboard {
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .laneTalk-info>ol>li {
        color: white !important;
        text-align: left;
        width: 100%;

        margin-bottom: 8px;
        /* Adjust this value as needed */

    }

    .powered-by-image-container {
        width: 100%;
    }


    .laneTalk-info {
        padding: 0px 32px 0px 32px;
    }

    .lane-talk-api-leaderboard {
        background-color: white;
        padding: 8px 0px;
        border-radius: 16px;
        margin: auto;
        width: 100%;
    }

    .search-bar {
        margin: auto;
        width: 80%;
    }

    .leaderboard-title {
        padding: 32px 32px 32px 32px;
        width: auto;

        border-radius: 16px;
        margin: 0px 8px 0px 8px;

    }

    .player-cell {
        display: flex;

        font-style: normal;
        font-size: 12px;

        padding: 16px;
    }

    .score-cell {
        font-size: 12px;
        font-weight: bold;

        padding: 0px;
    }

    .date-cell {
        font-size: 12px;

        padding: 0px;
    }

    #leaderboard th,
    #leaderboard td {
        text-align: center;
    }

    #leaderboard {
        width: 100%;
        border-collapse: collapse;

        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        overflow: hidden;
    }










    .lane-talk-api-leaderboard-container {
        overflow: hidden;
        background-color: #000000;
        background-size: cover;
        padding: 0px;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 32px;
        padding-top: 32px;
    }

}

/* LARGE PHONE - SMALL TABLET */
@media all and (min-width:426px) and (max-width:768px) {

    .lane-talk-api-leaderboard-container {
        overflow: hidden;
        background-color: #000000;
        background-size: cover;
        padding: 32px;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 32px;

        padding-top: 32px;
    }

    .lanetalk-winstorm-logo {
        width: 100%;
    }

    .lane-talk-api-leaderboard-container-page {
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 32px;
        gap: 48px;
    }

    .powered-by {
        display: flex;
        flex-direction: column;
        gap: 0px;
        justify-content: center;
    }

    .powered-by-image-container {
        width: 100%;
    }

    .lane-talk-api-leaderboard {
        background-color: white;
        border-radius: 16px;
        margin: auto;
        padding: 16px;
        width: 80%;
    }

    .laneTalk-info,
    .lane-talk-api-leaderboard {
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .laneTalk-info>ol>li {
        color: white !important;
        text-align: left;
        width: 70%;
        margin-bottom: 8px;
        /* Adjust this value as needed */

    }









    .player-cell {
        display: flex;
        font-style: normal;
        font-size: 12px;
        padding: 16px;
    }

    .score-cell {
        font-size: 12px;
        font-weight: bold;
        padding: 0px;
    }

    .date-cell {
        font-size: 12px;
        padding: 0px;
    }

    #leaderboard th,
    #leaderboard td {
        text-align: center;
    }

    #leaderboard {
        width: 100%;
        border-collapse: collapse;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        overflow: hidden;
    }

}

/* LARGE TABLET*/
@media all and (min-width:769px) and (max-width:1024px) {

    .lanetalk-winstorm-logo {
        width: 80%;
    }

    .lane-talk-api-leaderboard-container-page {
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 96px;
        gap: 64px;
    }

    .laneTalk-info,
    .lane-talk-api-leaderboard {
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .laneTalk-info>ol>li {
        color: white !important;
        text-align: left;
        width: 80%;
        margin-bottom: 8px;
        /* Adjust this value as needed */

    }


    .lane-talk-api-leaderboard-container {
        overflow: hidden;
        background-color: #000000;
        background-size: cover;
        padding: 128px;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 32px;

    }

}

/* SMALL LAPTOP */
@media all and (min-width:1025px) and (max-width:1440px) {

    .lane-talk-api-leaderboard-container-page {
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 128px;
    }

    .mystery-container {
        background-color: white;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 64px;
        margin: auto;
        margin-bottom: 32px;
        position: relative;
    }




}

/* LARGE LAPTOP */
@media all and (min-width:1441px) and (max-width:2560px) {}

/* 4K SCREEN */
@media all and (min-width:2560px) {}


/* SMALL PHONE */
@media all and (min-width:320px) and (max-width:425px) {
    .winstorm-logo img {
        width: 100%;
    }
}

/* LARGE PHONE - SMALL TABLET */
@media all and (min-width:426px) and (max-width:768px) {
    .winstorm-logo img {
        width: 80%;
    }
}

/* LARGE TABLET*/
@media all and (min-width:769px) and (max-width:1024px) {
    .winstorm-logo img {
        width: 80%;
    }
}

/* SMALL LAPTOP */
@media all and (min-width:1025px) and (max-width:1440px) {}

/* LARGE LAPTOP */
@media all and (min-width:1441px) and (max-width:1880px) {}

/* LARGE LAPTOP */
@media all and (min-width:1881px) and (max-width:1920px) {}

/* 4K SCREEN */
@media all and (min-width:1921px) and (max-width:2560px) {}

/* NEW WINSTORM WEB PAGE END */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */

/* NEWSROOM */

.news-highlight-container {
    border-radius: 16px 52px 52px 16px;
    background-color: #191C1B;
    margin: auto;
    display: flex;
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    overflow: hidden;
    min-height: 300px;
    /* ✅ Force visible height */

}



.highlight-image {
    flex: 1;
    overflow: hidden;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media all and (min-width:320px) and (max-width:768px) {
    .news-highlight-container {
        border-radius: 16px 52px 52px 16px;
        background-color: #191C1B;
        margin: auto;
        display: flex;
        flex-direction: column-reverse;
        text-align: left;
        justify-content: space-between;
    }
}

@media all and (min-width:769px) and (max-width:1024px) {
    .news-highlight-container {
        border-radius: 16px 52px 52px 16px;
        background-color: #191C1B;
        margin: auto;
        display: flex;
        flex-direction: column-reverse;
        text-align: left;
        justify-content: space-between;
        width: 70%;
    }
}

.newsroom-title-container {
    width: 50%;
}

.newsroom-attributes {
    display: flex;
    flex-direction: row;
    gap: 32px;
    text-align: left;
}

.newsroom-body {
    display: flex;
    flex-direction: row;
    gap: 64px;
    padding: 32px 96px 0px 96px;
}

.newsroom-card-links-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.newsroom-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.newsroom-links a {
    text-decoration: underline !important;
}

/* .newsroom-body-text ul {
    list-style-type: disc !important;
    margin-left: 32px !important;
} */

.newsroom-questions {
    background-color: #008375 !important;
    text-align: center;
}






@media all and (max-width:1024px) {
    .newsroom-title-container {
        width: 100%;
    }

    .newsroom-attributes {
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: start;
    }

    .newsroom-body {
        display: flex;
        flex-direction: column;
        gap: 64px;
        padding: 0px 32px 0px 32px;
    }
}

@media all and (min-width:1025px) and (max-width:1440px) {
    .newsroom-title-container {
        width: 75%;
    }
}

/* NEWSROOM END */

/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */


/* LEVEL WEB PAGE */

.level-intro-container {
    position: relative;
    height: 150vh;
    /* Ensure enough scroll space */

    background-color: black;
    /* Ensure visibility */
}

.level-hero-wp {}

.level-text-container {
    position: relative;

}

.lab-series {
    padding: 96px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lab-series-svg {
    position: relative;
    z-index: 3;
}


.lab-series-1 {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.spi-lab-copy {
    font-size: 64px;
    position: relative;
    z-index: 3;
}



.level-bowling-ball-1 {
    width: 1300px;
    position: absolute;
    right: -35%;
    top: 50%;
    transform: translate(0%, -50%);
    height: fit-content;
    opacity: 0;
    /* Initially hidden */
}

.level-bowling-ball-2 {
    width: 700px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.level-bowling-ball-3 {
    width: 1600px;
    position: relative;
    top: -714px;
    left: -556px;
}

.level-bowling-ball-4 {
    width: 1300px;
    position: relative;
    top: -420px;
    right: 8px;
}

.level-ball-hightlight {
    height: 800px;
}

.level-detail {
    height: 800px;
}



.level-weightblock {
    width: 800px;
    position: relative;
    top: -178px;
    right: -231px;
}

.level-flex-container {
    display: flex;
    flex-direction: row;
}

.level-flex-container-2 {
    display: flex;
    flex-direction: row;
    gap: 32px;
}



.level-parralax {
    z-index: 2;
    position: relative;
    height: 100vh;
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/medias/Frame 31.png") no-repeat center;
    background-size: cover;
    overflow: hidden;
    /* Ensure no scrollbars show */


}

.level-highlight {
    position: relative;
    z-index: 0;
    padding: 96px;
}

.level-highlight h1 {
    font-size: 96px;
    font-style: normal;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 900;
    margin-bottom: 48px;
}

.level-highlight h2 {
    font-size: 96px;
    text-decoration: underline;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 900;
    margin-bottom: 48px;
}

/* .level-highlight h1,
.level-highlight h2,
.level-highlight .storm-button-container-3 {
    opacity: 0; 
    transform: translateY(20px); 
} */


.level-intro {
    display: flex;
    flex-direction: row;
}


.level-intro h1 {
    font-size: 128px;
    position: absolute;
    z-index: 3;
}

.level-copy-1 {
    top: -193px;
    left: 196px;
}

.level-copy-2 {
    top: -61px;
    right: 401px;
}

.level-details-container {
    margin-left: 64px;
    z-index: 3;
    position: relative;
}

.level-downloads {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-left: 32px;
}

.level-tech-container {
    width: 90%;
    margin: auto;
}

.how-it-rolls-container {
    width: 90%;
    margin: auto;


}

.level-cover {
    z-index: 3;
    position: relative;
}

.level-weightblock-animation {
    z-index: 1;
    position: relative;
}

.powered-by-ai {
    z-index: 2;
    position: relative;
}


.level-weight-card {
    background-color: white;
    width: fit-content;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;

}

.ui-card-container.level {
    display: flex;
    flex-flow: wrap;
    gap: 16px;
    justify-content: center;
    padding: 32px;
    margin: auto;

}

.level-tech-specs {
    height: fit-content;
}

.button-pop {
    opacity: 0;
}


/* SMALL PHONE */
@media all and (min-width:320px) and (max-width:425px) {

    .lab-series {
        padding: 32px;
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .level-text-container {
        position: relative;
        height: 800px;
    }

    .lab-series-svg {
        width: 100%;
        height: fit-content;
    }

    .spi-lab-copy {
        font-size: 32px;
        z-index: 3;
        height: fit-content;
        width: min-content;
        margin-bottom: 0px;
    }

    .level-highlight {
        position: relative;
        z-index: 0;
        padding: 32px;
    }

    .level-bowling-ball-1 {
        width: 500px;
        position: absolute;
        right: -204px;
        bottom: 0%;
        transform: translate(0%, 0%);
    }

    .level-bowling-ball-2 {
        width: 100%;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .level-bowling-ball-2 img {
        width: 90%;
    }


    .level-highlight h2 {
        font-size: 32px;
        text-decoration: underline;
        font-family: 'Roboto', sans-serif !important;
        font-weight: 900;
        margin-bottom: 48px;
    }

    .level-highlight h1 {
        font-size: 32px;
        font-style: normal;
        font-family: 'Roboto', sans-serif !important;
        font-weight: 900;
        margin-bottom: 48px;
    }


    .level-intro {
        display: flex;
        flex-direction: column;
    }

    .level-bowling-ball-3 {
        width: 500px;
        position: relative;
        top: -119px;
        left: -193px;
    }

    .level-ball-hightlight {
        height: 220px;
    }

    .level-intro h1 {
        font-size: 48px;
        position: absolute;
        z-index: 3;
    }

    .level-copy-2 {
        top: -30px;
        right: 11px;
    }

    .level-copy-1 {
        top: -85px;
        left: 6px;
    }


    .level-details-container {
        margin-left: 0px;
    }

    .level-bowling-ball-4 {
        width: 150%;
        position: relative;
        top: 0%;
        left: 50%;
        transform: translate(-50%, -0%);
    }

    .level-bowling-ball-4 img {
        width: 100%;
    }

    .level-flex-container {
        display: flex;
        flex-direction: column-reverse;
    }

    .level-flex-container-2 {
        display: flex;
        flex-direction: column;
    }

    .level-detail {
        height: fit-content;
    }

    .level-weightblock {
        width: 100%;
        position: relative;
        top: 0px;
        right: 0px;
    }

    .level-downloads {
        display: flex;
        flex-direction: column;
        gap: 16px;

    }

    .level-tech-container {
        width: 100%;
        margin: auto;
    }

    .ui-card-container.level {
        display: flex;
        flex-flow: row;
        gap: 16px;
        justify-content: unset;
        padding: 32px 0px;
        margin: auto;
        width: fit-content;
    }

    .level-weight-card {
        background-color: white;
        width: 150px;
        padding: 32px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
    }

}

@media all and (min-width:426px) and (max-width:510px) {
    .level-bowling-ball-3 {
        width: 500px;
        position: relative;
        top: -176px;
        left: -219px;
    }

    .level-text-container {
        position: relative;
        height: 800px;
    }

    .level-ball-hightlight {
        height: 100px;
    }

    .level-copy-1 {
        top: -72px;
        left: 37px;
    }

    .level-copy-2 {
        top: -16px;
        right: 31px;
    }

    .level-intro h1 {
        font-size: 48px;
        position: absolute;
        z-index: 3;
    }

}

@media all and (min-width:511px) and (max-width:680px) {
    .level-bowling-ball-3 {
        width: 600px;
        position: relative;
        top: -176px;
        left: -256px;
    }

    .level-ball-hightlight {
        height: 250px;
    }

    .level-copy-1 {
        top: 7px;
        left: 113px;
    }

    .level-copy-2 {
        top: 71px;
        right: 105px;
    }

    .level-intro h1 {
        font-size: 48px;
        position: absolute;
        z-index: 3;
    }

}

@media all and (min-width:681px) and (max-width:768px) {
    .level-bowling-ball-3 {
        width: 700px;
        position: relative;
        top: -198px;
        left: -213px;
    }

    .level-ball-hightlight {
        height: 300px;
    }

    .level-copy-1 {
        top: -5px;
        left: 88px;
    }

    .level-copy-2 {
        top: 74px;
        right: 132px;
    }

    .level-intro h1 {
        font-size: 64px;
        position: absolute;
        z-index: 3;
    }


}

/* LARGE PHONE - SMALL TABLET */
@media all and (min-width:426px) and (max-width:768px) {

    .lab-series {
        padding: 32px;
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .lab-series-svg {
        width: 100%;
        height: fit-content;
    }

    .spi-lab-copy {
        font-size: 32px;
        z-index: 3;
        height: fit-content;
        width: min-content;
        margin-bottom: 0px;
    }

    .level-bowling-ball-1 {
        width: 750px;
        position: absolute;
        right: -339px;
        bottom: 8px;
        transform: translate(0%, -21%);
    }

    .level-bowling-ball-2 {
        width: 100%;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }



    .level-bowling-ball-2 img {
        width: 90%;
    }


    .level-highlight {
        position: relative;
        z-index: 0;
        padding: 32px;
    }

    .level-highlight h2 {
        font-size: 48px;
        text-decoration: underline;
        font-family: 'Roboto', sans-serif !important;
        font-weight: 900;
        margin-bottom: 48px;
    }

    .level-highlight h1 {
        font-size: 32px;
        font-style: normal;
        font-family: 'Roboto', sans-serif !important;
        font-weight: 900;
        margin-bottom: 48px;
    }


    .level-intro {
        display: flex;
        flex-direction: column;
    }

    .ui-card-container.level {
        display: flex;
        flex-flow: row;
        gap: 16px;
        justify-content: unset;
        padding: 32px 0px;
        margin: auto;
        width: fit-content;
    }

    .level-weight-card {
        background-color: white;
        width: 150px;
        padding: 32px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
    }









    .level-details-container {
        margin-left: 0px;
    }

    .level-bowling-ball-4 {
        width: 150%;
        position: relative;
        top: 0%;
        left: 50%;
        transform: translate(-50%, -0%);
    }

    .level-bowling-ball-4 img {
        width: 100%;
    }

    .level-flex-container {
        display: flex;
        flex-direction: column-reverse;
    }

    .level-flex-container-2 {
        display: flex;
        flex-direction: column;
    }

    .level-detail {
        height: fit-content;
    }

    .level-weightblock {
        width: 100%;
        position: relative;
        top: 0px;
        right: 0px;
    }

    .level-downloads {
        display: flex;
        flex-direction: column;
        gap: 16px;

    }

    .level-tech-container {
        width: 100%;
        margin: auto;
    }
}

/* LARGE TABLET*/
@media all and (min-width:769px) and (max-width:1024px) {

    .lab-series {
        padding: 32px;
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .lab-series-svg {
        width: 100%;
        height: fit-content;
    }

    .spi-lab-copy {
        font-size: 32px;
        z-index: 3;
        height: fit-content;
        width: min-content;
        margin-bottom: 0px;
    }

    .level-bowling-ball-1 {
        width: 1000px;
        position: absolute;
        right: -466px;
        bottom: 0px;
        transform: translate(0%, -35%);
    }

    .level-bowling-ball-2 {
        width: 100%;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .level-bowling-ball-2 img {
        width: 90%;
    }


    .level-highlight h2 {
        font-size: 48px;
        text-decoration: underline;
        font-family: 'Roboto', sans-serif !important;
        font-weight: 900;
        margin-bottom: 48px;
    }

    .level-highlight h1 {
        font-size: 48px;
        font-style: normal;
        font-family: 'Roboto', sans-serif !important;
        font-weight: 900;
        margin-bottom: 48px;
    }


    .level-ball-hightlight {
        height: 600px;
    }

    .level-intro h1 {
        font-size: 96px;
        position: absolute;
        z-index: 3;
    }

    .level-bowling-ball-3 {
        width: 1100px;
        position: relative;
        top: -178px;
        left: -441px;
    }

    .level-intro {
        display: flex;
        flex-direction: column;
    }


    .level-copy-1 {
        top: 159px;
        left: 23px;
    }

    .level-copy-2 {
        top: 255px;
        right: 48px;
    }








    .level-details-container {
        margin-left: 0px;
    }

    .level-bowling-ball-4 {
        width: 150%;
        position: relative;
        top: 0%;
        left: 50%;
        transform: translate(-50%, -0%);
    }

    .level-bowling-ball-4 img {
        width: 100%;
    }

    .level-flex-container {
        display: flex;
        flex-direction: column-reverse;
    }

    .level-flex-container-2 {
        display: flex;
        flex-direction: column;
    }

    .level-detail {
        height: fit-content;
    }

    .level-weightblock {
        width: 100%;
        position: relative;
        top: 0px;
        right: 0px;
    }

    .level-downloads {
        display: flex;
        flex-direction: column;
        gap: 16px;

    }

    .level-tech-container {
        width: 100%;
        margin: auto;
    }

}

/* SMALL LAPTOP */
@media all and (min-width:1025px) and (max-width:1440px) {

    .level-bowling-ball-1 {
        width: 800px;
        position: absolute;
        right: -300px;
        top: 50%;
        transform: translate(0%, -51%);
        height: fit-content;
    }

    .lab-series-svg {
        width: 100%;
        height: fit-content;
    }

    .spi-lab-copy {
        font-size: 40px;
        height: fit-content;
        margin-bottom: 0px;
    }

    .level-bowling-ball-3 {
        width: 1400px;
        position: relative;
        top: -570px;
        left: -556px;
    }

    .level-copy-1 {
        top: -187px;
        left: 95px;
    }

    .level-copy-2 {
        top: -61px;
        right: 77px;
    }

    .level-details-container {
        margin-left: 16px;
    }

    .level-weightblock {
        width: 800px;
        position: relative;
        top: -178px;
        right: -47px;
    }

    .level-bowling-ball-4 {
        width: 1400px;
        position: relative;
        top: -444px;
        right: 220px;
    }

}

/* LARGE LAPTOP */
@media all and (min-width:1441px) and (max-width:1880px) {

    .lab-series-svg {
        width: 100%;
        height: fit-content;
    }

    .level-bowling-ball-3 {
        width: 1500px;
        position: relative;
        top: -714px;
        left: -556px;
    }

    .level-bowling-ball-4 {
        width: 1100px;
        position: relative;
        top: -322px;
        right: 77px;
    }

    .level-weightblock {
        width: 700px;
        position: relative;
        top: -178px;
        right: -102px;
    }

    .level-copy-2 {
        top: -61px;
        right: 106px;
    }
}

/* LARGE LAPTOP */
@media all and (min-width:1881px) and (max-width:1920px) {}

/* 4K SCREEN */
@media all and (min-width:1921px) and (max-width:2560px) {}

@media all and (min-width:2560px) {}

/* LEVEL WEB PAGE END */

/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */



/* DUAL THREAT */

.dual-threat-background {
    width: 100%;
    height: 1700px;

    position: relative;
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/RG_Dual_Threat_Landing_Page/dual-threat-background.jpg") no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}

.dual-threat-background-rg-brand-page {
    width: 100%;
    height: 1800px;
    position: relative;
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/RG_Dual_Threat_Landing_Page/dual-threat-background.jpg") no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}

.dual-threat-background-2 {
    width: 100%;
    height: 1100px;
    position: relative;
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/RG_Dual_Threat_Landing_Page/dual-threat-background.jpg") no-repeat center;
    background-size: cover;
    background-attachment: fixed;
}



.dual-threat-copy {
    display: flex;
    flex-direction: row;
    gap: 96px;
    align-items: center;
    justify-content: center;
    padding: 128px 0px 96px 0px;
}

.dual-threat-destruction {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.dominate-section {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.dominate-stripe {
    position: absolute;
    width: 150%;
    font-size: 32px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    color: black;
    background: white;
    padding: 16px 0;
    white-space: nowrap;
    transform-origin: center;

}

.dominate-stripe span {
    display: inline-block;
    margin-right: 50px;
    font-size: 32px !important;
    font-weight: 900 !important;
}

/* Position the two stripes exactly like your screenshot */
.stripe1 {
    top: 30%;
    left: -10%;
    transform: rotate(6.521deg);
    z-index: 2;
    box-shadow: 0px 4px 16.4px 1px rgba(0, 0, 0, 0.40);
}

.stripe2 {
    top: 30%;
    left: -10%;
    transform: rotate(-3.622deg);
    color: rgba(0, 0, 0, 0.40);
    background: #C8C8C8;
    z-index: 1;
}


.dual-threat-body-background {

    position: absolute;
    left: 0px;
    top: -227px;
    z-index: 1;
    width: 100%;
    height: 252px;
    object-fit: cover;
    overflow: hidden;
}

.dual-threat-body-background-2 {
    position: absolute;
    left: 0px;
    z-index: 1;
    width: 100%;
    height: 252px;
    object-fit: cover;
    overflow: hidden;
    transform: rotate(180deg);
    top: 166px;
}

.threat-compare {
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: center;
    width: 50%;
    margin: auto;
}



.threat-tech-spec-scroll {}

.quote-container {
    position: absolute;
    /* Makes it position relative to its nearest positioned ancestor */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Moves it back by half its width & height */
    display: flex;
    flex-direction: row;
    gap: 96px;
    width: 80%;
    margin: auto;
    justify-content: center;
}


.rg-threat-compare-chart {
    width: 70%;
    margin: auto;
}


.threat-video-compare {
    display: none;
}

.threat-video-compare.active {
    display: block;
    width: 50%;
    margin: auto;
}




@font-face {
    font-family: 'DINOT-CondBlack';
    src: url('https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/RG_Dual_Threat_Landing_Page/Fonts/DINOT-CondBlack.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DINOT-CondMedium';
    src: url('https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/RG_Dual_Threat_Landing_Page/Fonts/DINOT-CondMedium.woff2') format('woff2');
    font-weight: 400 !important;
    font-style: normal;
}

@font-face {
    font-family: 'DINOT-Black';
    src: url('https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/RG_Dual_Threat_Landing_Page/Fonts/DINOT-Black.otf') format('woff2');
    font-weight: 400 !important;
    font-style: normal;
}

@font-face {
    font-family: 'DINOT-Medium';
    src: url('https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/RG_Dual_Threat_Landing_Page/Fonts/DINOT-Medium.woff2') format('woff2');
    font-weight: 400 !important;
    font-style: normal;
}

.title-with-button-container h2 {
    font-family: 'DINOT-Medium', sans-serif !important;
    font-size: 96px;
    font-weight: 400 !important;
    margin-bottom: 48px;
    font-style: normal !important;
}

.compare-meter-section h1 {
    font-family: 'DINOT-Medium', sans-serif !important;
    font-size: 96px;
    font-weight: 400 !important;
    margin-bottom: 48px;
    font-style: normal !important;
}

.threat-ball-intro h3 {
    font-family: 'DINOT-Black', sans-serif !important;
    font-size: 64px;
    font-style: normal !important;
}

.dual-threat-video-compare h1 {
    font-family: 'DINOT-CondBlack', sans-serif !important;
    color: #CE0E2D !important;
    font-style: normal !important;
    font-size: 288px !important;
}

.dual-threat-video-compare h3 {
    font-family: 'DINOT-CondMedium', sans-serif !important;
    font-size: 96px;
    font-weight: 400 !important;
    margin-bottom: 0px;
}

.rg-smile {
    position: absolute;
    top: 0px;
    right: 48px;
}





.oil-flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}


.dt-ball-compare-meter {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.compare-meter-balls {}


.meter-oil-level {
    display: flex;
    justify-content: end;
}

.title-with-button-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}


.dual-threat-style {
    position: relative;

}

.look-svg {
    position: absolute;
    top: 0px;
    right: 300px;
}


.dual-threat-tech-specs {
    height: 300px;
    overflow: scroll;

}

.rg-dual-threat-apparel img {
    width: 350px;
}

.dt-ball-compare-meter-mobile {
    display: none;
}


.roto-scroll-to-continue svg {
    width: 48px;
    height: fit-content;
    display: block;
    margin: auto;
}



@media all and (min-width:320px) and (max-width:425px) {

    .dual-threat-background-rg-brand-page {
        width: 100%;
        height: 1550px;
    }

    .rg-page-compare {
        width: 300px !important;
        margin: auto;
    }


    .dual-threat-text-header svg {
        width: 250px;
        height: fit-content;
    }


    .dual-threat-copy {
        display: flex;
        flex-direction: column;
        gap: 48px;
        align-items: center;
        justify-content: center;
        padding: 96px 0px 32px 0px;
    }

    .dual-threat-destruction svg {
        width: 250px;
        height: fit-content;
    }

    .dt-roto-grip-logo svg {
        width: 50px;
        height: fit-content;
    }

    .roto-scroll-to-continue svg {
        width: 48px;
        height: fit-content;
    }

    .dominate-section {
        position: relative;
        overflow: hidden;
        height: 300px;
    }

    .stripe1 {
        top: 10%;
        left: -10%;
        transform: rotate(6.521deg);
        z-index: 2;
        box-shadow: 0px 4px 16.4px 1px rgba(0, 0, 0, 0.40);
    }

    .stripe2 {
        top: 30%;
        left: -10%;
        transform: rotate(-3.622deg);
        color: rgba(0, 0, 0, 0.40);
        background: #C8C8C8;
        z-index: 1;
    }

    .dominate-stripe span {
        display: inline-block;
        margin-right: 10px;
    }

    .dual-threat-background {
        width: 100%;
        height: 1000px;
        background-attachment: unset;
    }

    .dual-threat-background-2 {
        width: 100%;
        background-attachment: unset;
    }


    .dual-threat-body-background {
        position: absolute;
        left: 0px;
        top: -74px;
        z-index: 1;
        width: 100%;
        height: 97px;
        object-fit: cover;
        overflow: hidden;
    }

    .threat-ball-intro h3 {
        font-family: 'DINOT-Black', sans-serif !important;
        font-size: 32px;
        font-style: normal !important;
    }

    .threat-compare {
        display: flex;
        flex-direction: column;
        gap: 32px;
        justify-content: center;
        width: 100%;
        margin: auto;
    }



    .dual-threat-tech-specs {
        overflow: scroll;
        height: fit-content;
    }

    .dual-threat-body-background-2 {
        position: absolute;
        left: 0px;
        z-index: 1;
        width: 100%;
        height: 84px;
        object-fit: cover;
        overflow: hidden;
        transform: rotate(180deg);
        top: 32px;
    }

    .quote-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        gap: 32px;
        width: fit-content;
        margin: auto;
        justify-content: center;
    }

    .dual-threat-video-compare h3 {
        font-family: 'DINOT-CondMedium', sans-serif !important;
        font-size: 32px;
        font-weight: 400 !important;
        margin-bottom: 0px;
    }

    .dual-threat-video-compare h1 {
        font-family: 'DINOT-CondBlack', sans-serif !important;
        color: #CE0E2D !important;
        font-style: normal !important;
        font-size: 64px !important;
    }

    .rg-smile {
        position: absolute;
        top: -43px;
        right: 0px;
    }

    .rg-smile svg {
        width: 100px;
        height: fit-content;
    }

    .compare-meter-section h1 {
        font-family: 'DINOT-Medium', sans-serif !important;
        font-size: 48px !important;
        font-weight: 400 !important;
        margin-bottom: 48px;
        font-style: normal !important;
    }

    .title-with-button-container h2 {
        font-family: 'DINOT-Medium', sans-serif !important;
        font-size: 48px;
        font-weight: 400 !important;
        margin-bottom: 48px;
        font-style: normal !important;
    }

    .rg-dual-threat-apparel img {
        width: 150px;
    }

    .title-with-button-container {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 16px;
    }

    .dt-ball-compare-meter {
        display: flex;
        flex-direction: row;
        justify-content: center;
        display: none;
    }

    .dt-ball-compare-meter-mobile {
        display: block;
    }

    .look-svg {
        position: absolute;
        top: 96px;
        right: 0px;
    }

    .look-svg svg {
        width: 100px;
        height: fit-content;
    }

    .dual-threat-background-2 {
        width: 100%;
        height: 1600px;
    }

    .threat-video-compare.active {
        display: block;
        width: 100%;
        margin: auto;
    }

}


@media all and (min-width:426px) and (max-width:768px) {

    .dual-threat-background-rg-brand-page {
        width: 100%;
        height: 1550px;
    }

    .rg-page-compare {
        width: 300px !important;
        margin: auto;
    }

    .dual-threat-text-header svg {
        width: 250px;
        height: fit-content;
    }


    .dual-threat-copy {
        display: flex;
        flex-direction: column;
        gap: 48px;
        align-items: center;
        justify-content: center;
        padding: 96px 0px 32px 0px;
    }

    .dual-threat-destruction svg {
        width: 250px;
        height: fit-content;
    }

    .dt-roto-grip-logo svg {
        width: 50px;
        height: fit-content;
    }

    .roto-scroll-to-continue svg {
        width: 48px;
        height: fit-content;
    }

    .dominate-section {
        position: relative;
        overflow: hidden;
        height: 300px;
    }

    .stripe1 {
        top: 20%;
        left: -10%;
        transform: rotate(6.521deg);
        z-index: 2;
        box-shadow: 0px 4px 16.4px 1px rgba(0, 0, 0, 0.40);
    }

    .stripe2 {
        top: 30%;
        left: -10%;
        transform: rotate(-3.622deg);
        color: rgba(0, 0, 0, 0.40);
        background: #C8C8C8;
        z-index: 1;
    }

    .dominate-stripe span {
        display: inline-block;
        margin-right: 10px;
    }

    .dual-threat-background {
        width: 100%;
        height: 1000px;
        background-attachment: unset;
    }


    .dual-threat-background-2 {
        width: 100%;
        background-attachment: unset;
    }

    .dual-threat-body-background {
        position: absolute;
        left: 0px;
        top: -92px;
        z-index: 1;
        width: 100%;
        height: 114px;
        object-fit: cover;
        overflow: hidden;
    }

    .threat-ball-intro h3 {
        font-family: 'DINOT-Black', sans-serif !important;
        font-size: 48px;
        font-style: normal !important;
    }

    .threat-compare {
        display: flex;
        flex-direction: column;
        gap: 32px;
        justify-content: center;
        width: 100%;
        margin: auto;
    }

    .dual-threat-tech-specs {
        overflow: scroll;
        height: fit-content;
    }

    .dual-threat-body-background-2 {
        position: absolute;
        left: 0px;
        z-index: 1;
        width: 100%;
        height: 199px;
        object-fit: cover;
        overflow: hidden;
        transform: rotate(180deg);
        top: 32px;
    }

    .quote-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        gap: 32px;
        width: fit-content;
        margin: auto;
        justify-content: center;
    }

    .dual-threat-video-compare h3 {
        font-family: 'DINOT-CondMedium', sans-serif !important;
        font-size: 32px;
        font-weight: 400 !important;
        margin-bottom: 0px;
    }

    .dual-threat-video-compare h1 {
        font-family: 'DINOT-CondBlack', sans-serif !important;
        color: #CE0E2D !important;
        font-style: normal !important;
        font-size: 64px !important;
    }

    .rg-smile {
        position: absolute;
        top: -43px;
        right: 0px;
    }

    .rg-smile svg {
        width: 100px;
        height: fit-content;
    }

    .compare-meter-section h1 {
        font-family: 'DINOT-Medium', sans-serif !important;
        font-size: 48px !important;
        font-weight: 400 !important;
        margin-bottom: 48px;
        font-style: normal !important;
    }

    .title-with-button-container h2 {
        font-family: 'DINOT-Medium', sans-serif !important;
        font-size: 48px;
        font-weight: 400 !important;
        margin-bottom: 48px;
        font-style: normal !important;
    }

    .rg-dual-threat-apparel img {
        width: 150px;
    }

    .title-with-button-container {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 16px;
    }

    .dt-ball-compare-meter {
        display: flex;
        flex-direction: row;
        justify-content: center;
        display: none;
    }

    .dt-ball-compare-meter-mobile {
        display: block;
    }

    .look-svg {
        display: none;
    }

    .look-svg svg {
        width: 100px;
        height: fit-content;
    }

    .dual-threat-background-2 {
        width: 100%;
        height: 1600px;
    }

    .threat-video-compare.active {
        display: block;
        width: 100%;
        margin: auto;
    }

}


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

    .rg-page-compare {
        margin: auto;
        margin-top: 64px;
        width: 80%;
    }

    .dual-threat-background-rg-brand-page {
        width: 100%;
        height: 1230px;
    }


    .dual-threat-text-header svg {
        width: 350px;
        height: fit-content;
    }


    .dual-threat-copy {
        display: flex;
        flex-direction: row;
        gap: 48px;
        align-items: center;
        justify-content: center;
        padding: 96px 0px 32px 0px;
    }

    .dual-threat-destruction svg {
        width: 250px;
        height: fit-content;
    }

    .dt-roto-grip-logo svg {
        width: 50px;
        height: fit-content;
    }

    .roto-scroll-to-continue svg {
        width: 48px;
        height: fit-content;
    }

    .dominate-section {
        position: relative;
        overflow: hidden;
        height: 300px;
    }

    .stripe1 {
        top: 50%;
        left: -10%;
        transform: rotate(6.521deg);
        z-index: 2;
        box-shadow: 0px 4px 16.4px 1px rgba(0, 0, 0, 0.40);
    }

    .stripe2 {
        top: 60%;
        left: -10%;
        transform: rotate(-3.622deg);
        color: rgba(0, 0, 0, 0.40);
        background: #C8C8C8;
        z-index: 1;
    }

    .dominate-stripe span {
        display: inline-block;
        margin-right: 10px;
    }

    .dual-threat-background {
        width: 100%;
        height: 1000px;
        background-attachment: unset;
    }

    .dual-threat-background-2 {
        width: 100%;
        background-attachment: unset;
    }


    .dual-threat-body-background {
        position: absolute;
        left: 0px;
        top: -143px;
        z-index: 1;
        width: 100%;
        height: 164px;
        object-fit: cover;
        overflow: hidden;
    }


    .threat-ball-intro h3 {
        font-family: 'DINOT-Black', sans-serif !important;
        font-size: 48px;
        font-style: normal !important;
    }

    .threat-compare {
        display: flex;
        flex-direction: row;
        gap: 32px;
        justify-content: center;
        width: 100%;
        margin: auto;
    }




    .dual-threat-body-background-2 {
        position: absolute;
        left: 0px;
        z-index: 1;
        width: 100%;
        height: 177px;
        object-fit: cover;
        overflow: hidden;
        transform: rotate(180deg);
        top: 134px;
    }

    .dual-threat-background-2 {
        width: 100%;
        height: 1100px;
    }

    .quote-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: row;
        gap: 32px;
        width: 80%;
        margin: auto;
        justify-content: center;
    }

    .dual-threat-video-compare h3 {
        font-family: 'DINOT-CondMedium', sans-serif !important;
        font-size: 48px;
        font-weight: 400 !important;
        margin-bottom: 0px;
    }

    .dual-threat-video-compare h1 {
        font-family: 'DINOT-CondBlack', sans-serif !important;
        color: #CE0E2D !important;
        font-style: normal !important;
        font-size: 128px !important;
    }

    .rg-smile {
        position: absolute;
        top: -43px;
        right: 0px;
    }

    .rg-smile svg {
        width: 250px;
        height: fit-content;
    }

    .compare-meter-section h1 {
        font-family: 'DINOT-Medium', sans-serif !important;
        font-size: 48px !important;
        font-weight: 400 !important;
        margin-bottom: 48px;
        font-style: normal !important;
    }

    .title-with-button-container h2 {
        font-family: 'DINOT-Medium', sans-serif !important;
        font-size: 48px;
        font-weight: 400 !important;
        margin-bottom: 48px;
        font-style: normal !important;
    }

    .rg-dual-threat-apparel img {
        width: 150px;
    }

    .title-with-button-container {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 16px;
    }

    .dt-ball-compare-meter {
        display: flex;
        flex-direction: row;
        justify-content: center;
        display: none;
    }

    .dt-ball-compare-meter-mobile {
        display: block;
    }

    .look-svg {
        display: none;
    }

    .look-svg svg {
        width: 100px;
        height: fit-content;
    }

    .threat-video-compare.active {
        display: block;
        width: 100%;
        margin: auto;
    }

}



@media all and (min-width:1025px) and (max-width:1440px) {


    .rg-page-compare {
        margin: auto;
        margin-top: 64px;
        width: 80%;
    }

    .dual-threat-background-rg-brand-page {
        width: 100%;
        height: 1450px;
    }


    .dual-threat-text-header svg {
        width: 450px;
        height: fit-content;
    }


    .dual-threat-copy {
        display: flex;
        flex-direction: row;
        gap: 48px;
        align-items: center;
        justify-content: center;
        padding: 96px 0px 32px 0px;
    }

    .dual-threat-destruction svg {
        width: 350px;
        height: fit-content;
    }

    .dt-roto-grip-logo svg {
        width: 50px;
        height: fit-content;
    }

    .roto-scroll-to-continue svg {
        width: 48px;
        height: fit-content;
    }

    .dominate-section {
        position: relative;
        overflow: hidden;
        height: 300px;
    }

    .stripe1 {
        top: 53%;
        left: -10%;
        transform: rotate(6.521deg);
        z-index: 2;
        box-shadow: 0px 4px 16.4px 1px rgba(0, 0, 0, 0.40);
    }

    .stripe2 {
        top: 30%;
        left: -10%;
        transform: rotate(-3.622deg);
        color: rgba(0, 0, 0, 0.40);
        background: #C8C8C8;
        z-index: 1;
    }

    .dominate-stripe span {
        display: inline-block;
        margin-right: 10px;
    }

    .dual-threat-background {
        width: 100%;
        height: 1250px;
    }


    .dual-threat-body-background {
        position: absolute;
        left: 0px;
        top: -164px;
        z-index: 1;
        width: 100%;
        height: 225;
        object-fit: cover;
        overflow: hidden;
    }


    .threat-ball-intro h3 {
        font-family: 'DINOT-Black', sans-serif !important;
        font-size: 48px;
        font-style: normal !important;
    }

    .threat-compare {
        display: flex;
        flex-direction: row;
        gap: 32px;
        justify-content: center;
        width: 100%;
        margin: auto;
    }





    .dual-threat-body-background-2 {
        position: absolute;
        left: 0px;
        z-index: 1;
        width: 100%;
        height: 177px;
        object-fit: cover;
        overflow: hidden;
        transform: rotate(180deg);
        top: 134px;
    }

    .dual-threat-background-2 {
        width: 100%;
        height: 1100px;
    }

    .quote-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: row;
        gap: 32px;
        width: 80%;
        margin: auto;
        justify-content: center;
    }

    .dual-threat-video-compare h3 {
        font-family: 'DINOT-CondMedium', sans-serif !important;
        font-size: 64px;
        font-weight: 400 !important;
        margin-bottom: 0px;
    }

    .dual-threat-video-compare h1 {
        font-family: 'DINOT-CondBlack', sans-serif !important;
        color: #CE0E2D !important;
        font-style: normal !important;
        font-size: 160px !important;
    }

    .rg-smile {
        position: absolute;
        top: -43px;
        right: 32px;
    }

    .rg-smile svg {
        width: 200px;
        height: fit-content;
    }

    .compare-meter-section h1 {
        font-family: 'DINOT-Medium', sans-serif !important;
        font-size: 48px !important;
        font-weight: 400 !important;
        margin-bottom: 48px;
        font-style: normal !important;
    }

    .title-with-button-container h2 {
        font-family: 'DINOT-Medium', sans-serif !important;
        font-size: 48px;
        font-weight: 400 !important;
        margin-bottom: 48px;
        font-style: normal !important;
    }

    .rg-dual-threat-apparel img {
        width: 200px;
    }

    .title-with-button-container {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 16px;
    }

    .dt-ball-compare-meter {
        display: flex;
        flex-direction: row;
        justify-content: center;
        display: none;
    }

    .dt-ball-compare-meter-mobile {
        display: block;
    }

    .look-svg {
        display: none;
    }

    .look-svg svg {
        width: 100px;
        height: fit-content;
    }


    .threat-video-compare.active {
        display: block;
        width: 100%;
        margin: auto;
    }


}

@media all and (min-width:1441px) and (max-width:1880px) {

    .threat-compare {
        display: flex;
        flex-direction: row;
        gap: 32px;
        justify-content: center;
        width: 70%;
        margin: auto;
    }

    .dual-threat-text-header svg {
        width: 600px;
        height: fit-content;
    }


    .dual-threat-destruction svg {
        width: 500px;
        height: fit-content;
    }

    .dt-roto-grip-logo svg {
        width: 50px;
        height: fit-content;
    }


    .rg-smile {
        position: absolute;
        top: -84px;
        right: -60px;
    }

    .dual-threat-video-compare h1 {
        font-family: 'DINOT-CondBlack', sans-serif !important;
        color: #CE0E2D !important;
        font-style: normal !important;
        font-size: 224px !important;
    }
}



@media all and (min-width:1921px) {

    .dual-threat-background-rg-brand-page {
        width: 100%;
        height: 2000px;
    }

    .dual-threat-body-background img {
        width: 100%;
    }

    .dual-threat-body-background {
        position: absolute;
        left: 0px;
        top: -298px;
        z-index: 1;
        width: 100%;
        height: 381px;
        object-fit: cover;
        overflow: hidden;
    }

    .dual-threat-body-background-2 img {
        width: 100%;
    }

    .dual-threat-body-background-2 {
        position: absolute;
        left: 0px;
        z-index: 1;
        width: 100%;
        height: 308px;
        object-fit: cover;
        overflow: hidden;
        transform: rotate(180deg);
        top: 166px;
    }

    .dual-threat-background-2 {
        width: 100%;
        height: 1300px;
    }

    .rg-dual-threat-apparel img {
        width: 450px;
    }
}


@media all and (min-width:2560px) {
    .dominate-section {
        position: relative;
        overflow: hidden;
        height: 650px;
    }

    .dual-threat-background-rg-brand-page {
        width: 100%;
        height: 2200px;
    }
}


/* DUAL THREAT END */

/* --------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */




/* EQUINOX */

.equinox-flex-container {
    display: flex;
    flex-direction: row;
    position: relative;
    z-index: 1;
}


.equinox-graphic-1 {
    position: absolute;
    top: -1024px;
    left: -748px;
    z-index: 0;

    width: 1872.32px;
    height: 1872.191px;
}


.equinox-graphic-2 {
    position: absolute;
    top: 0px;
    right: -368px;
    z-index: 0;
    width: 1000px;
    height: 1000px;
}

.equinox-graphic-3 {
    position: absolute;
    bottom: -685px;
    left: 63%;
    transform: translateX(-50%) rotate(40.133deg);
    z-index: 0;
    width: 1651px;
    height: 1000px;
}

.equinox-intro {
    position: relative;
}

.equinox-ball {
    width: 900px;
    height: fit-content;
    margin: auto;
    position: relative;
    z-index: 2;
}


.equinox-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-51%, -50%);
}


.equinox-flex-container2 {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.equinox-info h2 {
    font-style: normal !important;

}

.equinox-tab-container {
    margin-left: 64px;
    z-index: 3;
    position: relative;
    height: 300px;
}

.equinox-tabs {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-bottom: 20px;

}

.equinox-tab {
    background: none;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    outline: none;
    transition: color 0.3s;
    color: #616161 !important;
}

.equinox-tab.active {
    color: #FFFFFF !important;
    /* Active tab color */

}

.equinox-tab-content {
    margin: auto;
    width: 100%;
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.equinox-tab-content.active {
    display: block;
}

.equinox-core-images {
    width: 100%;
    margin: auto;
}

.equinox-image-content {
    display: none;
}

.equinox-image-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.ball-weight-card {
    background-color: #f5f5f5;
    width: 150px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    height: fit-content;
    transition: color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    /* Smooth transition for hover effects */
}





@media all and (min-width:320px) and (max-width:425px) {
    .equinox-80 svg {
        width: 100%;
        height: fit-content;
        margin-bottom: 32px;
    }

    .equinox-flex-container {
        display: flex;
        flex-direction: column-reverse;
        position: relative;
        z-index: 1;
    }

    .equinox-flex-container2 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .equinox-oil-pattern {
        margin: auto;
        width: 150px;
    }


    .equinox-tab-container {
        margin-left: 0px;
        z-index: 3;
        position: relative;
        height: 400px;
    }

    .equinox-core-images {
        width: 100%;
        margin: auto;
    }

    .equinox-ball {

        width: 100%;
        height: fit-content;
        margin: auto;
        position: relative;
        z-index: 2;
        margin-bottom: 96px;
    }

    .equinox-tab-content {
        margin: auto;
        width: 100%;
        display: none;
        animation: fadeIn 0.3s ease-in-out;
    }


    .equinox-graphic-2 {
        position: absolute;
        top: -49px;
        right: -346px;
        z-index: 0;
        width: 700px;
        height: 700px;
    }

    .equinox-graphic-1 {
        position: absolute;
        top: -219px;
        left: -161px;
        z-index: 0;
        width: 700px;
        height: 700px;
    }


    .equinox-graphic-3 {
        position: absolute;
        bottom: -379px;
        left: 50%;
        transform: translateX(-50%) rotate(40.133deg);
        z-index: 0;
        width: 700px;
        height: 700px;
    }
}


@media all and (min-width:426px) and (max-width:768px) {
    .equinox-80 svg {
        width: 100%;
        height: fit-content;
        margin-bottom: 32px;
    }

    .equinox-flex-container {
        display: flex;
        flex-direction: column-reverse;
        position: relative;
        z-index: 1;
    }

    .equinox-flex-container2 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .equinox-oil-pattern {
        margin: auto;
    }


    .equinox-tab-container {
        margin-left: 0px;
        z-index: 3;
        position: relative;
        height: 375px;
    }

    .equinox-core-images {
        width: 100%;
        margin: auto;
    }

    .equinox-ball {

        width: 100%;
        height: fit-content;
        margin: auto;
        position: relative;
        z-index: 2;
        margin-bottom: 128px;
    }

    .equinox-tab-content {
        margin: auto;
        width: 100%;
        display: none;
        animation: fadeIn 0.3s ease-in-out;
    }



    .equinox-graphic-2 {
        position: absolute;
        top: -49px;
        right: -346px;
        z-index: 0;
        width: 700px;
        height: 700px;
    }

    .equinox-graphic-1 {
        position: absolute;
        top: -219px;
        left: -161px;
        z-index: 0;
        width: 700px;
        height: 700px;
    }

    .equinox-graphic-3 {
        position: absolute;
        bottom: -379px;
        left: 50%;
        transform: translateX(-50%) rotate(40.133deg);
        z-index: 0;
        width: 700px;
        height: 700px;
    }


}

@media all and (min-width:769px) and (max-width:1024px) {
    .equinox-80 svg {
        width: 100%;
        height: fit-content;
        margin-bottom: 32px;
    }

    .equinox-flex-container {
        display: flex;
        flex-direction: column-reverse;
        position: relative;
        z-index: 1;
    }

    .equinox-flex-container2 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .equinox-tab-container {
        margin-left: 0px;
        z-index: 3;
        position: relative;
        height: 350px;
    }

    .equinox-oil-pattern {
        margin: auto;
    }



    .equinox-core-images {
        width: 100%;
        margin: auto;
    }

    .equinox-ball {

        width: 100%;
        height: fit-content;
        margin: auto;
        position: relative;
        z-index: 2;
        margin-bottom: 128px;
    }


}


@media all and (min-width:1025px) and (max-width:1440px) {
    .equinox-80 svg {
        width: 100%;
        height: fit-content;
        margin-bottom: 32px;
    }

    .equinox-flex-container {
        display: flex;
        flex-direction: column-reverse;
        position: relative;
        z-index: 1;
    }

    .equinox-flex-container2 {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-top: 64px;
    }

    .equinox-tab-container {
        margin-left: 0px;
        z-index: 3;
        position: relative;
        height: 375px;
    }

    .ball-weight-card {
        background-color: white;
        width: 100px;
        padding: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        height: fit-content;
        transition: color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
        /* Smooth transition for hover effects */
    }


    .equinox-oil-pattern {
        margin: auto;
    }


    .reaction-graph-container {
        width: 100%;
        margin-top: 0px !important;
        margin-bottom: 0px !important;
        margin: auto;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .container-70 {
        width: 100%;
        height: 100%;
        position: relative;
    }

}


@media all and (min-width:1441px) and (max-width:1880px) {
    .equinox-flex-container2 {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-top: 64px;
    }

    .equinox-tab-container {

        z-index: 3;
        position: relative;
        height: 350px;
    }
}

/* EQUINOX END */

/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */

/* BACKGROUND COLORS */

.black-background {
    background-color: #000000 !important;
}

.dark-background-2 {
    background-color: #191C1B !important;
}

.grey-backgound {
    background-color: grey;
}

.global-background-color {
    background-color: #FFDEAE;
}

/* BACKGROUND COLORS END */

/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */

/* SCROLL CONTENT */

.scroll-content1 {
    height: fit-content;
    /* Adjust height dynamically */
    overflow-x: scroll;
    /* Enable horizontal scrolling */
    overflow-y: hidden;
    /* 🔥 Prevent vertical scrolling */
    position: relative;
    z-index: 1;

}

.scroll-content2 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 50%;
    /* Ensures snapping centers the item */
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 40px 0;
}

/* SCROLL CONTENT END */

/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */


/* ZEN THE LINE YOU TRUST */

.zen-background {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 0;
    visibility: visible;
    opacity: 1;
}

.zen-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}


.zen-the-line-you-trust {
    height: 1400px !important;
}

.zen-svg {
    position: absolute;
    top: 288px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;

}

.zen-svg svg {
    margin-bottom: 64px;
}

.zen-the-line-you-trust h3 {
    color: #FFF;
    font-family: "Petit Formal Script" !important;
    font-weight: 400;
    font-style: normal;
    font-size: 48px;
    line-height: normal;
    text-transform: none;

}

.zen-weightblock {
    position: relative;
    z-index: 3;
}

.zen-flex-container {
    display: flex;
    flex-direction: row;
    align-items: center;

}


.zen-timeline-container {
    display: flex;
    flex-direction: column;
    gap: 32px;

}

.zen-ball {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: center;
    justify-content: center;
}

.zen-ball-img img {
    width: 400px;
}

.zen-tech-container {
    display: flex;
    flex-flow: row wrap;
    gap: 16px;
    justify-content: center;
    padding: 0px;
    margin: auto;
    width: fit-content;
}

.zen-tech-card {
    width: 150px;
}



.zen-spotlight-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}


.zen-spotlight-images img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.zen-spotlight-images img:nth-child(1) {
    z-index: 4;
    transform: translate(-50%, -50%) rotate(12.444deg);
}

.zen-spotlight-images img:nth-child(2) {
    transform: translate(-50%, -50%);
}

.zen-spotlight-images img:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-5.924deg);
}

.zen-spotlight-images img:nth-child(4) {
    transform: translate(-50%, -50%) rotate(-20.56deg);
}


.zen-product-card {
    /* NO PADDING - WITH SHADOW (CONTENT CARD) */
    width: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.15);
    position: relative;
    padding: 8px;
}

.zen-product-card:hover {
    background-color: #191C1B;
}

.text-wrap {
    text-wrap: auto;
}

.zen-tech-card h5 {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

@media all and (min-width:320px) and (max-width:425px) {

    .zen-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        left: 0;
    }

    .zen-svg svg {
        margin-bottom: -32px;
        width: 320px;
    }

    .zen-svg {
        position: absolute;
        top: 32px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }

    .zen-the-line-you-trust h3 {
        color: #FFF;
        font-family: "Petit Formal Script" !important;
        font-weight: 400;
        font-style: normal;
        font-size: 24px;
        line-height: normal;
        text-transform: none;
    }

    .zen-the-line-you-trust {
        height: 300px !important;
    }

    .zen-flex-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .zen-spotlight-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 750px;
    }

    .zen-product-card {
        width: 250px;
    }

    .zen-spotlight-svg svg {
        width: 250px;
    }

    .zen-spotlight-images img {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 70%;
    }




    .zen-ball {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: unset;
    }

    .zen-tech-container {
        display: flex;
        flex-flow: row;
        gap: 16px;
        justify-content: center;
        padding: 0px;
        margin: auto;
        width: fit-content;
    }

    .zen-timeline-container {
        display: flex;
        flex-direction: column;
        gap: 64px;
    }

    .zen-tech-card img {
        width: 100%;
    }

    .zen-tech-card {
        width: 100px;
    }

    .zen-tech-card h5 {
        font-size: 12px !important;
    }

}

@media all and (min-width:426px) and (max-width:768px) {

    .zen-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        left: 0;
    }

    .zen-svg svg {
        margin-bottom: -32px;
        width: 320px;
    }

    .zen-svg {
        position: absolute;
        top: 32px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }

    .zen-tech-card {
        width: 100px;
    }


    .zen-the-line-you-trust h3 {
        color: #FFF;
        font-family: "Petit Formal Script" !important;
        font-weight: 400;
        font-style: normal;
        font-size: 32px;
        line-height: normal;
        text-transform: none;
    }

    .zen-the-line-you-trust {
        height: 500px !important;
    }

    .zen-flex-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .zen-spotlight-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 900px;
    }

    .zen-product-card {
        width: 250px;
    }

    .zen-spotlight-svg svg {
        width: 250px;
    }

    .zen-spotlight-images img {
        position: absolute;
        left: 50%;
        top: 40%;
        transform: translate(-50%, -50%);
        width: 70%;
    }




    .zen-ball {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: unset;
    }

    .zen-tech-container {
        display: flex;
        flex-flow: row;
        gap: 16px;
        justify-content: center;
        padding: 0px;
        margin: auto;
        width: fit-content;
    }

    .zen-timeline-container {
        display: flex;
        flex-direction: column;
        gap: 64px;
    }

    .zen-tech-card img {
        width: 100%;
    }

}

@media all and (min-width:769px) and (max-width:1024px) {
    .zen-svg svg {
        margin-bottom: -32px;
        width: 320px;
    }

    .zen-svg {
        position: absolute;
        top: 96px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }



    .zen-the-line-you-trust {
        height: 700px !important;
    }

    .zen-flex-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .zen-spotlight-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 900px;
    }

    .zen-product-card {
        width: 250px;
    }

    .zen-spotlight-svg svg {
        width: 250px;
    }

    .zen-spotlight-images img {
        position: absolute;
        left: 50%;
        top: 40%;
        transform: translate(-50%, -50%);
        width: 70%;
    }

    .zen-ball {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: unset;
    }

    .zen-tech-container {
        display: flex;
        flex-flow: row;
        gap: 16px;
        justify-content: center;
        padding: 0px;
        margin: auto;
        width: fit-content;
    }

    .zen-timeline-container {
        display: flex;
        flex-direction: column;
        gap: 64px;
    }

    .zen-tech-card img {
        width: 100%;
    }

    .zen-tech-card {
        width: 100px;
    }
}

@media all and (min-width:1025px) and (max-width:1440px) {
    .zen-ball {
        display: flex;
        flex-direction: row;
        gap: 8px;
        align-items: center;
    }

    .zen-tech-container {
        display: flex;
        flex-flow: row wrap;
        gap: 16px;
        justify-content: center;
        padding: 0px;
        margin: auto;
        width: fit-content;
    }

    .zen-spotlight-images img {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 50%;
    }
}


@media all and (min-width:1921px) and (max-width:2560px) {
    .zen-the-line-you-trust {
        height: 1750px !important;
    }
}


@media all and (min-width:2561px) {
    .zen-the-line-you-trust {
        height: 1800px !important;
    }
}


/* ZEN THE LINE YOU TRUST END */

/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */

/* 3G RACER LANDING NEW */

.THREEG-logo-container {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 450px;
    width: 450px;
    z-index: 2;
}

.THREEG-logo-container-landing-page {
    position: absolute;
    top: 50%;
    left: 96px;
    transform: translateY(-50%);
    height: 450px;
    width: 450px;
    z-index: 2;
}

@media all and (min-width:320px) and (max-width:768px) {
    .THREEG-logo-container-landing-page {
        position: absolute;
        top: 96px;
        left: 50%;
        transform: translateX(-50%);
        height: 300px;
        width: 300px;
        z-index: 2;
    }
}

.shoe-character-image {
    text-wrap: auto;
}

.THREEG-logo {
    width: 100%;
    height: 100%;
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/3G_RACERS/3G Step Up Logo-no arrow.png") no-repeat center;
    background-size: cover;
    background-size: contain;

}

.THREEG-logo-white {
    width: 100%;
    height: 100%;
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/3G-brand-page/logo/3g-logo-white.png") no-repeat center;
    background-size: cover;
    background-size: contain;

}

.THREEG-logo-arrow {
    position: relative;
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/3G_RACERS/3G Step Up Logo 21.png") no-repeat center;
    background-size: contain;
    width: 100px;
    height: 100px;
    top: -197px;
    left: 254px;
}

.THREEG-logo-arrow-landing-page {
    position: relative;
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/3G_RACERS/3G Step Up Logo 21.png") no-repeat center;
    background-size: contain;
    width: 158px;
    height: 165px;
    top: -153px;
    left: 254px;
}


@media all and (min-width:320px) and (max-width:768px) {
    .THREEG-logo-arrow-landing-page {
        width: 75px;
        height: 107px;
        top: -102px;
        left: 185px;
    }
}

.racer-stripe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
}

.racer-stripe img {
    width: 100%;
}

.shoe-hero-image {
    position: relative;
    width: 50%;
    height: 100%;
    margin: auto;
    z-index: 2;
    left: 96px;
    
}



.shoe {
    position:absolute;
    width: 400px;
    opacity: 0;
    /* Start hidden */

}

@media all and (min-width:320px) and (max-width:425px){
    .shoe-hero-image {
        position: relative;
        width: 50%;
        height: 100%;
        margin: auto;
        z-index: 2;
        left: 0px;
    }

    .shoe {
        width: 200px;
      
    
    }
}

@media all and (min-width:426px) and (max-width:768px){
    .shoe-hero-image {
        position: relative;
        width: 50%;
        height: 100%;
        margin: auto;
        z-index: 2;
        left: 0px;
    }

    .shoe {
        width: 250px;
      
    
    }
}


@media all and (min-width:769px) and (max-width:1440px){
    .shoe-hero-image {
        position: relative;
        width: 50%;
        height: 100%;
        margin: auto;
        z-index: 2;
        left: 0px;
    }

    .shoe {
        width: 300px;
      
    
    }
}




.racer-white {
    top: 50%;
    left: 15%;
    transform: translate(-50%, -50%) !important;
}

.racer-black {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
}


.racer-mesh {
    top: 50%;
    left: 85%;
    transform: translate(-50%, -50%) !important;
}

.shoe-feature-image-container-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two columns */
    grid-template-rows: auto;
    /* Rows adjust based on content */
    gap: 20px;
    /* Adjust space between boxes */
    width: 80%;
    /* Set container width */
    height: 100%;
    /* Set container height */
    margin: auto;
    /* Center the grid */
}

.shoe-feature-image {
    /* Outline for visualization */
    box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.15);
    background-color: white;
    border-radius: 16px;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.shoe-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image fills the space without distortion */

}

.tall {
    grid-row: span 2;
    /* Makes the first box take up two rows */
}

.tall img {
    width: 100%;
    height: 100%;
}

.wide {
    height: 100%;
    /* Set a height for the two right-side boxes */
}

.dial-system h1 {
    font-style: normal !important;
}



.compare-container {
    display: flex;
    flex-flow: row;
    gap: 64px;
    justify-content: center;
    padding: 32px;
    margin: auto;
    width: 80%;

}



.compare-column {
    display: flex;
    flex-direction: column;
    padding: 32px;
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.15);
    position: relative;

}

.shoe-characteristics {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.shoe-character-image {
    text-wrap: auto;
}

.shoe-character-image img {
    margin-bottom: 8px;
}

.free-shipping-banner {
    display: none !important;

}

@media all and (min-width:320px) and (max-width:425px) {

    .THREEG-logo-container {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        height: 200px;
        width: 250px;
        z-index: 2;
    }

    .THREEG-logo-arrow {
        top: -88px;
        left: 135px;
        width: 50px;
        height: 50px;
    }


    .racer-stripe {
        position: absolute;
        top: 70%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }

    .racer-stripe img {

        height: 200px;
    }


  


    .racer-white {
        top: 50%;
        left: 25%;
        transform: translate(-50%, -50%) !important;
    }

    .racer-black {
        top: 65%;
        left: 50%;
        transform: translate(-50%, -50%) !important;
    }

    .racer-mesh {
        top: 80%;
        left: 80%;
        transform: translate(-50%, -50%) !important;
    }

    .racer-logo {
        width: 100%;
    }

    .shoe-feature-image-container-1 {
        display: flex;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 20px;
        flex-direction: column;
        width: 100%;
        height: 100%;
        margin: auto;
    }

    .compare-container {
        display: flex;
        flex-flow: row;
        gap: 16px;
        justify-content: center;
        padding: 32px;
        margin: auto;
        width: 80%;
        width: max-content;
    }

    .compare-column {
        display: flex;
        flex-direction: column;
        padding: 32px;
        background-color: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.15);
        position: relative;
        width: 200px;
    }

    .shoe-character-image img {
        margin-bottom: 8px;
        width: 75px;
    }

    .shoe-characteristics {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

}


@media all and (min-width:426px) and (max-width:768px) {


    .THREEG-logo-container {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        height: 300px;
        width: 300px;
        z-index: 2;
    }

    .THREEG-logo-arrow {

        top: -132px;
        left: 152px;
    }



    .racer-stripe {
        position: absolute;
        top: 70%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }

    .racer-stripe img {
        width: unset;
        height: 200px;
    }

    .racer-white {
        top: 70%;
        left: -10%;
        transform: translate(-50%, -50%) !important;
    }

    .racer-black {
        top: 70%;
        left: 50%;
        transform: translate(-50%, -50%) !important;
    }

    .racer-mesh {
        top: 70%;
        left: 115%;
        transform: translate(-50%, -50%) !important;
    }

   





    .racer-logo {
        width: 100%;
    }

    .shoe-feature-image-container-1 {
        display: flex;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 20px;
        flex-direction: column;
        width: 100%;
        height: 100%;
        margin: auto;
    }

    .compare-container {
        display: flex;
        flex-flow: row;
        gap: 16px;
        justify-content: center;
        padding: 32px;
        margin: auto;
        width: 80%;
        width: max-content;
    }

    .compare-column {
        display: flex;
        flex-direction: column;
        padding: 32px;
        background-color: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.15);
        position: relative;
        width: 200px;
    }

    .shoe-character-image img {
        margin-bottom: 8px;
        width: 75px;
    }

    .shoe-characteristics {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

}

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

    .THREEG-logo-container {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        height: 300px;
        width: 300px;
        z-index: 2;
    }

    .THREEG-logo-arrow {

        top: -132px;
        left: 152px;
    }



    .racer-stripe {
        position: absolute;
        top: 70%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }

    .racer-stripe img {
        width: unset;
        height: 250px;
    }

    .racer-white {
        top: 70%;
        left: 0px;
        transform: translate(-50%, -50%) !important;
    }

    .racer-black {
        top: 70%;
        left: 50%;
        transform: translate(-50%, -50%) !important;
    }

    .racer-mesh {
        top: 70%;
        left: 100%;
        transform: translate(-50%, -50%) !important;
    }

    .compare-container {
        gap: 32px !important;
    }


    .shoe-character-image img {
        margin-bottom: 8px;
        width: 75px;
    }

    .shoe-characteristics {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .shoe-feature-image-container-1 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 8px;
        width: 100%;
        height: 100%;
        margin: auto;
    }

   





}


@media all and (min-width:1025px) and (max-width:1440px) {

    .THREEG-logo-container {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        height: 300px;
        width: 300px;
        z-index: 2;
    }

    .THREEG-logo-arrow {

        top: -132px;
        left: 152px;
    }


    .compare-container {
        gap: 32px !important;
    }


    .shoe-character-image img {
        margin-bottom: 8px;
        width: 75px;
    }

    .shoe-characteristics {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .shoe-feature-image-container-1 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 8px;
        width: 100%;
        height: 100%;
        margin: auto;
    }

 

    .racer-stripe {
        position: absolute;
        top: 70%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }

    .racer-stripe img {
        width: unset;
        height: 250px;
    }

    .racer-white {
        top: 70%;
        left: 0px;
        transform: translate(-50%, -50%) !important;
    }

    .racer-black {
        top: 70%;
        left: 50%;
        transform: translate(-50%, -50%) !important;
    }

    .racer-mesh {
        top: 70%;
        left: 100%;
        transform: translate(-50%, -50%) !important;
    }



}

@media all and (min-width:1441px) and (max-width:1880px) {}

@media all and (min-width:1920px) {}

@media all and (min-width:2560px) {}

/* 3G RACER NEW END */

/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */

/* 3G BRAND PAGE */

.g-arrows {
    position: absolute;
    right: 0px;
    top: 32px;
}


/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */

/* REACTION CHARTS CODED */



.reaction-graph-container.active {
    width: 50%;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

    .reaction-graph-container.active {
        width: 100%;
        margin-top: 0px !important;
        margin-bottom: 0px !important;
        margin: auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

}

.reaction-graph {}


.graph-labels {
    position: relative;
    height: 16px;
}

.reaction-graph h3 {
    color: #191c1b !important;
    font-size: 32px;
    text-align: left;
    margin-bottom: 0px;
}

.graph-labels p {
    position: absolute;
    bottom: 0px;
    margin: 0px !important;
    font-size: 10px;
}

.g-left {
    left: 0px;
}

.g-center {
    left: 50%;
    transform: translateX(-50%);
}

.g-right {
    right: 0px
}


.graph-review {
    margin-top: 16px;
}

.graph-review p {
    font-size: 16px;
    margin: auto;
    width: fit-content;
}


.progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #393939;
    /* Light greenish-blue */
    overflow: hidden;
    border-radius: 50px;
    height: 15px;
    padding: 5px;
}

.segment {
    flex: 1;
    height: 100%;
    background-color: #393939;
    /* Match bar background */
    border: 1px solid #191c1b;
    /* Thin dividing lines */
}

.segment.active {
    background-color: #191c1b;
    /* Dark color for the center highlight */
    border: 1px solid #191c1b;

}

.segment:first-child {
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.segment:last-child {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

/* BRANDED GRAPHS */
.progress-bar.global {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EDE2CC;
    /* Light greenish-blue */
    overflow: hidden;
    border-radius: 50px;
    height: 15px;
    padding: 5px;
}

.segment.global {
    flex: 1;
    height: 100%;
    background-color: #EDE2CC;
    /* Match bar background */
    border: 1px solid #FFB71B;
    /* Thin dividing lines */
}

.segment.global.active {
    background-color: #FFB71B;
    /* Dark color for the center highlight */
    border: 1px solid #FFB71B;

}


.progress-bar.roto {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFDAD7;
    /* Light greenish-blue */
    overflow: hidden;
    border-radius: 50px;
    height: 15px;
    padding: 5px;
}

.segment.roto {
    flex: 1;
    height: 100%;
    background-color: #FFDAD7;
    /* Match bar background */
    border: 1px solid #5D3F3E;
    /* Thin dividing lines */
}

.segment.roto.active {
    background-color: #5D3F3E;
    /* Dark color for the center highlight */
    border: 1px solid #5D3F3E;

}


.progress-bar.storm {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #CAD9D8;
    /* Light greenish-blue */
    overflow: hidden;
    border-radius: 50px;
    height: 15px;
    padding: 5px;
}

.segment.storm {
    flex: 1;
    height: 100%;
    background-color: #CAD9D8;
    /* Match bar background */
    border: 1px solid #00958E;
    /* Thin dividing lines */
}

.segment.storm.active {
    background-color: #00958E;
    /* Dark color for the center highlight */
    border: 1px solid #00958E;

}


/* Apply descending z-index values for each segment */
.segment-1 {
    z-index: 1;
}

.segment-2 {
    z-index: 2;
}

.segment-3 {
    z-index: 3;
}

.segment-4 {
    z-index: 4;
}

.segment-5 {
    z-index: 5;
}

.segment-6 {
    z-index: 6;
}

.segment-7 {
    z-index: 7;
}

.segment-8 {
    z-index: 8;
}

.segment-9 {
    z-index: 9;
}

.segment-10 {
    z-index: 10;
}

.segment-11 {
    z-index: 11;
    /* Highest z-index */
}



@media all and (min-width:320px) and (max-width:425px) {

    .reaction-graph-container {
        width: 100%;
        margin-top: 0px !important;
        margin-bottom: 0px !important;
        margin: auto;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
}

@media all and (min-width:426px) and (max-width:768px) {
    .reaction-graph-container {
        width: 100%;
        margin-top: 0px !important;
        margin-bottom: 0px !important;
        margin: auto;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
}

@media all and (min-width:769px) and (max-width:1024px) {
    .reaction-graph-container {
        width: 100%;
        margin-top: 0px !important;
        margin-bottom: 0px !important;
        margin: auto;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
}

@media all and (min-width:1025px) and (max-width:1440px) {}

@media all and (min-width:1441px) and (max-width:1880px) {}

@media all and (min-width:1881px) and (max-width:1920px) {}

@media all and (min-width:1921px) and (max-width:2560px) {}

@media all and (min-width:2561px) {}

/* REACTION CHARTS */

/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */



/* ORIGIN EX */

.origin-hero {
    position: relative;
    height: 100vh;
}

.origin-text-style {
    font-family: "Noto Serif", serif !important;
    font-weight: 700 !important;
    font-style: normal !important;
}


.origin-logo-svg {
    margin: auto;
    width: min-content;
    margin-bottom: 128px;
}



.flex-center2 {
    display: flex;
    flex-direction: column;
    margin: auto;
    text-align: center;
    align-items: center;
    justify-content: center;
}


.origin-cover-logo {
    width: 500px;
    margin: auto;

}

.origin-cover-rotation img {
    width: 100%;
}

.origin-reaction-graph-container {
    position: relative;
}

.progress-bar.origin {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D9D9D9;
    overflow: hidden;
    border-radius: 50px;
    height: 15px;
    padding: 5px;
}


.segment.origin {
    flex: 1;
    height: 100%;
    background-color: #D9D9D9;
    border: 1px solid #000000;
}


.segment.origin.active {
    flex: 1;
    height: 100%;
    background-color: #0E3463;
    border: 1px solid #0E3463;
}



.segment.origin-ex.active {
    flex: 1;
    height: 100%;
    background-color: #AE5A24;
    border: 1px solid #AE5A24;
}

.segment.origin-overlap.active {
    flex: 1;
    height: 100%;
    background-color: #6C4A3E;
    border: 1px solid #6C4A3E;
}


.graph-legend {
    padding: 16px;
    border-radius: 100px;

}

.graph-legend h4 {
    margin-bottom: 0px !important;
}




.origin-ball-animation-conatiner {
    position: relative;
    width: 100%;
    max-width: 450px;
    /* or whatever your layout allows */
    margin: auto;
    aspect-ratio: 1 / 1;
    /* preserves space relative to width */
}

.origin-image {
    width: max-content;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.originEX-image {
    width: max-content;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.ellipse-core-image {
    width: max-content;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}


.origin-graph-key-container {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 32px;
    justify-content: center;
}

.origin-graph-key {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
}


.origin-key-color {
    width: 25px;
    height: 25px;
    border-radius: 100px;
}

@media all and (min-width:320px) and (max-width:425px) {
    .origin-logo-svg svg {
        width: 250px;
        height: 250px;
    }

    .origin-logo-svg {
        margin: auto;
        width: min-content;
        margin-bottom: 96px;
        margin-top: 48px;
    }

    .origin-text-style {
        font-family: "Noto Serif", serif !important;
        font-weight: 700 !important;
        font-style: normal !important;
        font-size: 32px !important;
    }

    .origin-cover-logo {
        width: 100%;
        margin: auto;
    }

    .origin-cover-logo svg {
        width: 100%;
        height: 250px;
    }

    .origin-hero {
        position: relative;
        height: 800px;
    }

    .origin-ball-animation-conatiner {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: auto;
        aspect-ratio: 1 / 1;
    }

    .ellipse-core-image {
        width: max-content;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
        width: 100%;
    }

    .originEX-image {
        width: max-content;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        width: 100%;
    }

    .origin-image {
        width: max-content;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        width: 100%;
    }

    .origin-key-color {
        width: 15px;
        height: 25px;
        border-radius: 100px;
    }
}


@media all and (min-width:426px) and (max-width:768px) {
    .origin-logo-svg svg {
        width: 350px;
        height: 350px;
    }

    .origin-logo-svg {
        margin: auto;
        width: min-content;
        margin-bottom: 96px;
        margin-top: 48px;
    }

    .origin-text-style {
        font-family: "Noto Serif", serif !important;
        font-weight: 700 !important;
        font-style: normal !important;
        font-size: 32px !important;
    }

    .origin-cover-logo {
        width: 100%;
        margin: auto;
    }

    .origin-cover-logo svg {
        width: 100%;
        height: 450px;
    }

    .origin-hero {
        position: relative;
        height: 800px;
    }

    .origin-ball-animation-conatiner {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: auto;
        aspect-ratio: 1 / 1;
    }

    .ellipse-core-image {
        width: max-content;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
        width: 100%;
    }

    .originEX-image {
        width: max-content;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        width: 100%;
    }

    .origin-image {
        width: max-content;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        width: 100%;
    }
}


@media all and (min-width:769px) and (max-width:1024px) {
    .origin-logo-svg svg {
        width: 350px;
        height: 350px;
    }

    .origin-logo-svg {
        margin: auto;
        width: min-content;
        margin-bottom: 96px;
        margin-top: 48px;
    }

    .origin-text-style {
        font-family: "Noto Serif", serif !important;
        font-weight: 700 !important;
        font-style: normal !important;

    }

    .origin-cover-logo {
        width: 100%;
        margin: auto;
    }

    .origin-cover-logo svg {
        width: 100%;
        height: 450px;
    }

    .origin-hero {
        position: relative;
        height: 800px;
    }

    .origin-ball-animation-conatiner {
        position: relative;
        width: 100%;
        max-width: 100%;
        margin: auto;
        aspect-ratio: 1 / 1;
    }

    .ellipse-core-image {
        width: max-content;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 3;
        width: 100%;
    }

    .originEX-image {
        width: max-content;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        width: 100%;
    }

    .origin-image {
        width: max-content;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        width: 100%;
    }
}

@media all and (min-width:1025px) and (max-width:1440px) {
    .origin-logo-svg svg {
        width: 250px;
        height: 250px;
    }

    .origin-logo-svg {
        margin: auto;
        width: min-content;
        margin-bottom: 64px;
    }


    .origin-hero {
        position: relative;
        height: 726px;
    }

}



@media all and (min-width:2560px) {
    .origin-logo-svg svg {
        width: 600px;
        height: 600px;
    }
}







/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */




/* PHAZE AI WEB PAGE */

.phaze-ball-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.phaze-ball-container img {
    margin-right: -240px;
    /* This creates overlap */
}

.phaze-hero-text1 h1 {
    font-size: 228px !important;
}

.phaze-hero-text h3 {
    font-size: 96px !important;
}

.phaze-hero-text h4 {
    font-weight: 300 !important;
    font-size: 32px !important;
}

.phaze-hero-text-1 {
    position: absolute;
    right: 20%;
    top: 20%;
    z-index: 1;
}

.phaze-hero-text-2 {
    position: absolute;
    right: 10%;
    top: 45%;
    z-index: 1;
}

.phaze-ai-tech {
    padding: 0px 96px 96px 96px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin: auto;
    width: max-content;
}

.phaze-ai-tech img {
    width: 200px;
}

.power-edge-bottle-phaze-ai {
    transform: rotate(26.476deg);
}

.phaze-ai-numbers-container {
    flex-direction: row;
    gap: 32px;
    margin-top: 32px;
}

.phaze-ai-numbers h1 {
    font-size: 64px;
    font-family: 'Roboto', sans-serif !important;
    font-style: normal;
    font-weight: 900;
}

.phaze-vertical-line {
    width: 3px;
    height: 100px;
    background-color: white;
    margin: 0 auto;
}

.phaze-ai-background {
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/PHAZE_AI/Phaze AI 1.jpg") no-repeat center;
    background-size: cover;
    position: relative;
    /* Ensures the pseudo-element is positioned correctly */
}

.phaze-ai-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Adjust the opacity as needed */
    z-index: 1;
    pointer-events: none;
    /* Ensures the overlay doesn't interfere with interactions */
}



.phaze-back h2 {
    position: relative;
    z-index: 5;
}

/* SMALL PHONE */


@media all and (min-width:320px) and (max-width:425px) {

    .phaze-ball-container {
        display: block;
        position: relative;
        z-index: 2;
        width: 320px;
        margin: auto;
        height: 450px;
        overflow: hidden;
    }

    .phaze-ball-container img {
        margin-right: 0px;
        margin-top: 0px;
    }


    .phaze {
        width: 50%;
        position: absolute;
        top: 48px;
        left: 8px;
    }

    .phazeii {
        width: 75%;
        position: absolute;
        top: 0px;
        left: 96px;
    }

    .phazeai {
        width: 100%;
        position: absolute;
        left: 0px;
        top: 128px;
    }

    .phaze-hero-text h3 {
        font-size: 48px !important;
    }



    .phaze-hero-text-1 {
        position: static;

    }


    .phaze-hero-text-2 {
        position: static;
        margin-top: 16px;
    }


    .phaze-hero-text1 h1 {
        font-size: 64px !important;
    }

    .phaze-ai-numbers-container {
        flex-direction: column;
        gap: 16px;
    }

    .phaze-vertical-line {
        width: 100px;
        height: 3px;
        background-color: white;
        margin: 0 auto;
    }

    .ball-cards {
        width: fit-content;
        margin: auto;
    }

    .power-edge-bottle-phaze-ai {
        transform: rotate(20.476deg);
    }


}

/* LARGE PHONE - SMALL TABLET */
@media all and (min-width:426px) and (max-width:768px) {

    .phaze-ball-container {
        display: block;
        position: relative;
        z-index: 2;
        width: 426px;
        margin: auto;
        height: 550px;
    }

    .phaze {
        width: 50%;
        position: absolute;
        top: 48px;
        left: 0px;
    }

    .phazeii {
        width: 70%;
        position: absolute;
        top: 0px;
        right: 0px;
    }

    .phazeai {
        width: 100%;
        position: absolute;
        left: 0px;
        top: 128px;
    }


    .phaze-ball-container img {
        margin-right: 0px;
        margin-top: 0px;
    }




    .phaze-hero-text h3 {
        font-size: 64px !important;
    }



    .phaze-hero-text-1 {
        position: static;

    }


    .phaze-hero-text-2 {
        position: static;
        margin-top: 16px;
    }


    .phaze-hero-text1 h1 {
        font-size: 64px !important;
    }

    .phaze-ai-numbers-container {
        flex-direction: column;
        gap: 16px;
    }

    .phaze-vertical-line {
        width: 100px;
        height: 3px;
        background-color: white;
        margin: 0 auto;
    }

    .ball-cards {
        width: fit-content;
        margin: auto;
    }

    .power-edge-bottle-phaze-ai {
        transform: rotate(20.476deg);
    }
}

/* LARGE TABLET*/
@media all and (min-width:769px) and (max-width:1024px) {

    .phaze-ball-container {
        display: block;
        position: relative;
        z-index: 2;
        width: 769px;
        margin: auto;
        height: 650px;
    }

    .phaze {
        width: 30%;
        position: absolute;
        top: 48px;
        left: 200px;
    }

    .phazeii {
        width: 50%;
        position: absolute;
        top: 0px;
        right: 37px;
    }

    .phazeai {
        width: 70%;
        margin-top: 135px !important;
    }


    .phaze-ball-container img {
        margin-right: 0px;
        margin-top: 0px;
    }







    .phaze-hero-text-1 {
        position: static;
        text-align: center !important;

    }


    .phaze-hero-text-2 {
        position: static;
        margin-top: 16px;
        text-align: center !important;
    }


    .phaze-hero-text1 h1 {
        font-size: 128px !important;
    }

    .phaze-ai-numbers-container {
        flex-direction: row;
        gap: 16px;
    }

    .phaze-vertical-line {
        width: 3px;
        height: 100px;
        background-color: white;
        margin: 0 auto;
    }

    .power-edge-bottle-phaze-ai {
        transform: rotate(20.476deg);
        width: 100%;
    }
}


/* SMALL LAPTOP */
@media all and (min-width:1025px) and (max-width:1440px) {
    .phaze-ball-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        height: 70%;
        position: relative;
        z-index: 2;
        width: fit-content;
        justify-content: center;
        margin: auto;
    }

    .phaze {
        width: 20%;

    }

    .phazeii {
        width: 30%;

    }

    .phazeai {
        width: 50%;
    }

    .phaze-ball-container img {
        margin-right: -160px;
    }

    .phaze-hero-text-1 {
        position: absolute;
        right: 50%;
        top: 60%;
        z-index: 1;
    }

    .phaze-hero-text-2 {
        position: absolute;
        right: 20%;
        top: 75%;
        z-index: 1;
    }
}

/* LARGE LAPTOP */
@media all and (min-width:1441px) and (max-width:1880px) {
    .phaze-ball-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        height: 70%;
        position: relative;
        z-index: 2;
        width: fit-content;
        justify-content: center;
        margin: auto;
    }

    .phaze {
        width: 20%;

    }

    .phazeii {
        width: 30%;

    }

    .phazeai {
        width: 50%;
    }

    .phaze-ball-container img {
        margin-right: -160px;
    }

    .phaze-hero-text-1 {
        position: absolute;
        right: 50%;
        top: 60%;
        z-index: 1;
    }

    .phaze-hero-text-2 {
        position: absolute;
        right: 20%;
        top: 75%;
        z-index: 1;
    }
}

/* LARGE LAPTOP */
@media all and (min-width:1881px) and (max-width:1920px) {}

/* 4K SCREEN */
@media all and (min-width:1921px) and (max-width:2560px) {}


@media all and (min-width:2560px) {
    .phaze {
        width: 20%;

    }

    .phazeii {
        width: 30%;

    }

    .phazeai {
        width: 40%;
    }
}


/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */



/* ROLLING THUNDER WEB PAGE  */


.RT-title {
    color: #191c1b !important;
    font-size: 367px;
    text-align: center !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    z-index: 1
}

/* BAG */

.RT-bag {
    position: relative;
    z-index: 2;
    margin: auto;
    width: 600px;
    height: 926px;
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/ROLLING_THUNDER/Rolling Thunder Bag.png") no-repeat center;
    background-size: contain;

}

/* BASE */
.RT-base {
    width: 100%;
    height: 100%;
    margin-bottom: 16px;

}

.base-info {
    display: flex;
    flex-direction: row;
    gap: 32px;
}

.base-image {
    width: 50%;
    height: 100%;
}

.RT-info {
    width: 50%;
    position: sticky;
    top: 350px;
    height: min-content;
}

.RT-info-2 {
    width: 90%;

}

/* STABLE BALL CUPS */
.cup-info {
    display: flex;
    flex-direction: row;
    gap: 32px;
}

.cup-image {
    width: 50%;
}


/* SMALL PHONE */
@media all and (min-width:320px) and (max-width:425px) {

    .RT-title {
        font-size: 64px !important;
        color: #191C1B !important;
        text-align: center !important;
        margin-bottom: 32px !important;
    }


    .RT-bag {
        position: relative;
        z-index: 2;
        margin: auto;
        width: 70%;
        height: 196px;
        top: 0px;
    }


    .base-info {
        display: flex;
        flex-direction: column;

    }

    .base-image {
        width: 100%;
        height: 100%;
    }

    .RT-info {
        width: 100%;
        position: sticky;
        top: 350px;
        height: min-content;
    }


    .cup-info {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .cup-image {
        width: 100%;
    }


    .RT-info-2 {
        width: 100%;

    }
}

/* LARGE PHONE - SMALL TABLET */
@media all and (min-width:426px) and (max-width:768px) {
    .RT-title {
        font-size: 96px !important;
        color: #191C1B !important;
        text-align: center !important;
        margin-bottom: 0px !important;
    }


    .RT-bag {
        position: relative;
        z-index: 2;
        margin: auto;
        width: 80%;
        height: 300px;
        top: 32px;
    }


    .base-info {
        display: flex;
        flex-direction: column;

    }



    .base-image {
        width: 100%;
        height: 100%;
    }

    .RT-info {
        width: 100%;
        position: sticky;
        top: 350px;
        height: min-content;
    }


    .cup-info {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .cup-image {
        width: 100%;
    }


    .RT-info-2 {
        width: 100%;

    }
}

/* LARGE TABLET*/
@media all and (min-width:769px) and (max-width:1024px) {
    .RT-title {
        font-size: 160px !important;
        color: #191C1B !important;
        text-align: center !important;
        margin-bottom: 0px !important;
        text-align: center !important;
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -60%);
        z-index: 1;
    }

    .RT-bag {
        position: relative;
        z-index: 2;
        margin: auto;
        width: 80%;
        height: 400px;
        top: 64px;
    }
}

/* SMALL LAPTOP */
@media all and (min-width:1025px) and (max-width:1440px) {
    .RT-title {
        font-size: 224px !important;
        color: #191C1B !important;
        text-align: center !important;
        margin-bottom: 0px !important;
        text-align: center !important;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -60%);
        z-index: 1;
    }

    .RT-bag {
        position: relative;
        z-index: 2;
        margin: auto;
        width: 80%;
        height: 600px;
        top: 64px;
    }
}

/* LARGE LAPTOP */
@media all and (min-width:1441px) and (max-width:2560px) {
    .RT-title {
        font-size: 288px !important;
        color: #191C1B !important;
        text-align: center !important;
        margin-bottom: 0px !important;
        text-align: center !important;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -60%);
        z-index: 1;
    }

    .RT-bag {
        position: relative;
        z-index: 2;
        margin: auto;
        width: 80%;
        height: 600px;
        top: 64px;
    }
}

/* 4K SCREEN */
@media all and (min-width:2560px) {}

/* END ROLLING THUNDER WEB PAGE  */

/* ----------------------------------------------------------------------------- */



/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */



/* ION MAX WEB PAGE  */

.ion-max-banner {
    padding: 0px 96px 0px 96px;
    background-color: #000000;
    position: relative;
}

.ion-max-headline {
    position: absolute;
    top: 50%;
    left: 288px;
    text-align: left;
}

.ionmax-background {
    background-color: #FFC7D5;

}

.ionmax-background-2 {
    background-color: #4C3560;
}


/* btn ionmax*/
.ionmax-button {
    color: #4A355F !important;
    background-color: #FFC7D5 !important;
    border: solid 2px #FFC7D5 !important;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none !important;
}

.ionmax-button:hover {
    color: #4A355F !important;
    background-color: #FFFFFF !important;
    border: solid 2px #FFFFFF !important;
}

.ionmax-button-2 {
    color: #4A355F !important;
    background-color: transparent;
    border: 2px solid #4A355F;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none !important;
}

.ionmax-button-2:hover {
    color: #FFC7D5 !important;
    background-color: #4A355F !important;
    border: solid 2px #4A355F !important;
}



.btn.ionmax {
    background-color: transparent !important;
    border: solid 2px #4A355F !important;
    color: #4A355F !important;
}

.btn.ionmax:hover {
    background-color: #4A355F !important;
    border: solid 2px #4A355F !important;
    color: #FFC7D5 !important;
}

.btn.ionmax.active {
    background-color: #4A355F !important;
    border: solid 2px #4A355F !important;
    color: #FFC7D5 !important;
}

.compare-hover-button-ion {
    color: #FFC7D5 !important;
    background-color: transparent;
    border: 2px solid #FFC7D5;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none !important;
}

.compare-hover-button-ion:hover {
    color: #4A355F !important;
    background-color: #FFC7D5 !important;
    border: solid 2px #FFC7D5 !important;
}

.compare-hover-button-ion.active {
    color: #4A355F !important;
    background-color: #FFC7D5 !important;
    border: solid 2px #FFC7D5 !important;
}



/* SPLINE TECH ANIMATION */
#spline-section {

    width: 100% !important;
    height: 80vh !important;
    overflow: hidden;
    position: relative;
    background-color: #FFC7D5;
}

.spline-container {
    height: 100%;
}



/* .spline-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

spline-viewer {
    width: 100%;
    height: 100%;
    display: block;
} */






.curve-svg {

    width: 100%;
    height: 200px;
    /* Adjust height for curve depth */
    pointer-events: none;
    /* Ensure SVG doesn't capture clicks */
    z-index: 2;
    /* Place SVG above background */
    margin-bottom: -5px;
}

/* NRG COVERSTOCK CARDS */
.nrg-card {
    text-align: left;
    width: 415px;
    border-radius: 16px;
    background: rgba(255, 199, 213, 0.10);
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    align-self: stretch;
}

.nrg-card img {
    width: 48px;
    height: 48px;
}

/* 50% MORE FLARE */
.max-hero-title {
    margin: auto
}

.max-hero-title h1 {
    font-size: 500px;
    font-family: 'Roboto', sans-serif !important;
    font-style: normal;
    font-weight: 900;
    margin: auto;

}

.max-hero-title h2 {
    font-size: 96px;
    font-family: 'Roboto', sans-serif !important;
    font-style: normal;
    font-weight: 900;
    margin: auto;
}



/* RG & DIFF */

.ionmax-tech-container {
    flex-direction: row;
    gap: 32px;
}


.ionmax-tech h1 {
    font-size: 64px;
    font-family: 'Roboto', sans-serif !important;
    font-style: normal;
    font-weight: 900;
    color: #4A355F;
}

.vertical-line {
    width: 3px;
    height: 100px;
    /* Adjust the height as needed */
    background-color: #4A355F;
    /* Color of the vertical line */
    margin: 0 auto;
    /* Center the line horizontally */
}




/* CONTEST SECTION */
.ionmax-background-3 {
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/ION_MAX/Rectangle 372.png") no-repeat center;
    background-size: cover;
    position: relative;
    /* Ensures the pseudo-element is positioned correctly */
}

.ionmax-background-3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Adjust the opacity as needed */
    z-index: 1;
    pointer-events: none;
    /* Ensures the overlay doesn't interfere with interactions */
}

.max-contest-content {
    position: relative;
    z-index: 2;
    /* Higher z-index to ensure text is above the overlay */
    padding: 20px;
    /* Optional: Adjust padding as needed */
}


.scroll-left-instruction-container {
    display: none;
    gap: 16px;
    justify-content: center;

}

.arrow {
    margin-top: 4px;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
}

.arrow1 {
    margin-top: 4px;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid black;
    border-right: 2px solid black;
    transform: rotate(45deg);
}


/* Full-page loading screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    /* Black background */
    color: #fff;
    /* White text */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    /* Ensure it's on top of everything */
}


/* MOBILE RESPONSIVE DESIGN */
@media all and (max-width:768px) {
    .tech-animation {
        display: none !important;
    }
}


@media all and (min-width:320px) and (max-width:650px) {
    .scroll-left-instruction-container {
        display: flex;
        gap: 16px;
        justify-content: center;

    }
}

/* SMALL PHONE */
@media all and (min-width:320px) and (max-width:425px) {
    .ion-max-banner {
        padding: 0px 0px 0px 0px;
        background-color: #000000;
        position: relative;
        height: 400px;
    }



    .ion-max-headline {
        position: absolute;
        top: 50%;
        left: 32px;
        text-align: left;
    }

    .reaction-graph-container {
        width: 100%;
        margin-top: 32px !important;
        margin-bottom: 64px !important;
        margin: auto;
        display: flex;
        flex-direction: row;
        gap: 32px;
        overflow: scroll;
        justify-content: left !important;

    }

    .reaction-graph-container-compare {
        width: 100%;
        margin-top: 32px !important;
        margin-bottom: 64px !important;
        margin: auto;
        display: flex;
        flex-direction: row;
        gap: 32px;
        overflow: scroll;
        justify-content: left !important;
    }

    .curve-svg {
        width: 100%;
        height: 40px;
        pointer-events: none;
        z-index: 2;
        margin-bottom: -7px;
    }

    /* SPLINE ANIMATION */

    #spline-section {
        width: 100% !important;
        height: 110vh !important;
        overflow: hidden;
        position: relative;
        background-color: #FFC7D5;
    }

    .nrg-card {
        text-align: left;
        width: auto;
        border-radius: 16px;
        background: rgba(255, 199, 213, 0.10);
        padding: 48px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        align-self: stretch;
    }

    .max-hero-title h1 {
        font-size: 96px;
        font-family: 'Roboto', sans-serif !important;
        font-style: normal;
        font-weight: 900;
        margin: auto;
    }

    .max-hero-title h2 {
        font-size: 32px;
        font-family: 'Roboto', sans-serif !important;
        font-style: normal;
        font-weight: 900;
        margin: auto;
    }

    .vertical-line {
        width: 100px;
        height: 3px;
        background-color: #4A355F;
        margin: 0 auto;
    }

    .ionmax-tech-container {
        flex-direction: column;
        gap: 32px;
    }

}

/* LARGE PHONE - SMALL TABLET */
@media all and (min-width:426px) and (max-width:768px) {
    .ion-max-banner {
        padding: 0px 0px 0px 0px;
        background-color: #000000;
        position: relative;
        height: auto;
    }



    .ion-max-headline {
        position: absolute;
        top: 60%;
        left: 64px;
        text-align: left;
    }

    .reaction-graph-container {
        width: 100%;
        margin-top: 32px !important;
        margin-bottom: 64px !important;
        margin: auto;
        display: flex;
        flex-direction: row;
        gap: 32px;
        overflow: scroll;
        justify-content: left !important;

    }

    .reaction-graph-container-compare {
        width: 100%;
        margin-top: 32px !important;
        margin-bottom: 64px !important;
        margin: auto;
        display: flex;
        flex-direction: row;
        gap: 32px;
        overflow: scroll;
        justify-content: left !important;
    }

    .curve-svg {
        width: 100%;
        height: 100px;
        pointer-events: none;
        z-index: 2;
        margin-bottom: -7px;
    }

    /* SPLINE ANIMATION */

    #spline-section {
        width: 100% !important;
        height: 90vh !important;
        overflow: hidden;
        position: relative;
        background-color: #FFC7D5;
    }

    .nrg-card {
        text-align: left;
        width: auto;
        border-radius: 16px;
        background: rgba(255, 199, 213, 0.10);
        padding: 48px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        align-self: stretch;
    }

    .max-hero-title h1 {
        font-size: 160px;
        font-family: 'Roboto', sans-serif !important;
        font-style: normal;
        font-weight: 900;
        margin: auto;
    }

    .max-hero-title h2 {
        font-size: 64px;
        font-family: 'Roboto', sans-serif !important;
        font-style: normal;
        font-weight: 900;
        margin: auto;
    }

    .vertical-line {
        width: 100px;
        height: 3px;
        background-color: #4A355F;
        margin: 0 auto;
    }

    .ionmax-tech-container {
        flex-direction: column;
        gap: 32px;
    }

}

/* LARGE TABLET*/
@media all and (min-width:769px) and (max-width:1024px) {
    .ion-max-banner {
        padding: 0px 0px 0px 0px;
        background-color: #000000;
        position: relative;
        height: 600px;
    }


    .ion-max-headline {
        position: absolute;
        top: 60%;
        left: 96px;
        text-align: left;
    }

    .ion-max-headline h1 {
        font-size: 64px;
    }

    .reaction-graph-container {
        width: 100%;
        margin-top: 32px !important;
        margin-bottom: 64px !important;
        margin: auto;
        display: flex;
        flex-direction: row;
        gap: 32px;
        overflow: scroll;
        justify-content: left !important;

    }

    .reaction-graph-container-compare {
        width: 100%;
        margin-top: 32px !important;
        margin-bottom: 64px !important;
        margin: auto;
        display: flex;
        flex-direction: row;
        gap: 32px;
        overflow: scroll;
        justify-content: left !important;
    }

    .curve-svg {
        width: 100%;
        height: 100px;
        pointer-events: none;
        z-index: 2;
        margin-bottom: -7px;
    }

    /* SPLINE ANIMATION */

    #spline-section {
        width: 100% !important;
        height: 90vh !important;
        overflow: hidden;
        position: relative;
        background-color: #FFC7D5;
    }



    .nrg-card {
        text-align: left;
        width: auto;
        border-radius: 16px;
        background: rgba(255, 199, 213, 0.10);
        padding: 48px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        align-self: stretch;
    }

    .max-hero-title h1 {
        font-size: 288px;
        font-family: 'Roboto', sans-serif !important;
        font-style: normal;
        font-weight: 900;
        margin: auto;
    }




    .vertical-line {
        width: 100px;
        height: 3px;
        background-color: #4A355F;
        margin: 0 auto;
    }

    .ionmax-tech-container {
        flex-direction: column;
        gap: 32px;
    }



}

/* SMALL LAPTOP */
@media all and (min-width:1025px) and (max-width:1440px) {

    .ion-max-headline {
        position: absolute;
        top: 50%;
        left: 96px;
        text-align: left;
    }

    .ion-max-headline h1 {
        font-size: 64px;
    }

    .max-hero-title h1 {
        font-size: 300px;
        font-family: 'Roboto', sans-serif !important;
        font-style: normal;
        font-weight: 900;
        margin: auto;
    }

    .max-hero-title h2 {
        font-size: 64px;
        font-family: 'Roboto', sans-serif !important;
        font-style: normal;
        font-weight: 900;
        margin: auto;
    }

    .nrg-card {
        text-align: left;
        width: 415px;
        border-radius: 16px;
        background: rgba(255, 199, 213, 0.10);
        padding: 32px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        align-self: stretch;
    }

    .curve-svg {
        width: 100%;
        height: 150px;
        pointer-events: none;
        z-index: 2;
        margin-bottom: -7px;
    }
}

/* LARGE LAPTOP */
@media all and (min-width:1441px) and (max-width:2559px) {
    .ion-max-headline {
        position: absolute;
        top: 50%;
        left: 160px;
        text-align: left;
    }

    .ion-max-headline {
        position: absolute;
        top: 50%;
        left: 96px;
        text-align: left;
    }



}

@media all and (min-width:1441px) and (max-width:1900px) {
    .curve-svg {
        width: 100%;
        height: 150px;
        pointer-events: none;
        z-index: 2;
        margin-bottom: -6px;
    }
}


/* 4K SCREEN */
@media all and (min-width:2560px) {
    .ion-max-headline {
        position: absolute;
        top: 50%;
        left: 352px;
        text-align: left;
    }

    .ion-max-headline h1 {
        font-size: 128px;
    }



    #spline-section {
        width: 100% !important;
        height: 64vh !important;
        overflow: hidden;
        position: relative;
        background-color: #FFC7D5;
    }

    .curve-svg {
        width: 100%;
        height: 310px;
        pointer-events: none;
        z-index: 2;
        margin-bottom: -7px;
    }


}

/* NOKIA N9 & IPHONE 14 MAX BANNER FIX */
@media all and (min-width: 430px) and (max-width: 480px) and (min-height: 854px) and (max-height: 932px) {
    .ion-max-banner {
        padding: 0px 0px 0px 0px;
        background-color: #000000;
        position: relative;
        height: 350px;
    }
}


/* NOKIA LUMIA 520 & IPHONE 4 SPLINE ANIMATION FIX */
@media all and (min-width: 320px) and (max-width: 320px) and (min-height: 480px) and (max-height: 533px) {

    .spline-container {
        height: 120%;
    }

}


/* NEXUS 5 (DOESNT FUCKING WORK SO DONT WORRY - BULLSHIT) & IPHONE 5/SE (WORKS FINE) SPLINE ANIMATION FIX */
@media all and (min-width: 320px) and (max-width: 360px) and (min-height: 568px) and (max-height: 640px) {


    .spline-container {
        height: 120%;
    }
}

/* SURFACE DUO BANNER & SPLINE ANIMATION FIX */
@media all and (min-width: 540px) and (max-width: 540px) and (min-height: 720px) and (max-height: 720px) {

    .ion-max-banner {
        padding: 0px 0px 0px 0px;
        background-color: #000000;
        position: relative;
        height: 350px;
    }

    .spline-container {
        height: 120%;
    }
}


/* TABLET FIXES */

/*( IPAD AIR ) */
@media all and (min-width: 820px) and (max-width: 820px) and (min-height: 1180px) and (max-height: 1180px) {
    .ion-max-banner {
        padding: 0px 0px 0px 0px;
        background-color: #000000;
        position: relative;
        height: 700px;
    }

    #spline-section {
        width: 100% !important;
        height: 80vh !important;
        overflow: hidden;
        position: relative;
        background-color: #FFC7D5;
    }

    .curve-svg {
        width: 100%;
        height: 100px;
        pointer-events: none;
        z-index: 2;
        margin-bottom: -7px;
    }


    .vertical-line {
        width: 100px;
        height: 3px;
        background-color: #4A355F;
        margin: 0 auto;
    }

    .ionmax-tech-container {
        flex-direction: column;
        gap: 32px;
    }
}

/*( IPAD PRO | SURFACE PRO 7 ) */
@media all and (min-width: 912px) and (max-width: 1024px) and (min-height: 1366px) and (max-height: 1368px) {
    .ion-max-banner {
        padding: 0px 0px 0px 0px;
        background-color: #000000;
        position: relative;
        height: 700px;
    }

    #spline-section {
        width: 100% !important;
        height: 60vh !important;
        overflow: hidden;
        position: relative;
        background-color: #FFC7D5;
    }

    .curve-svg {
        width: 100%;
        height: 160px;
        pointer-events: none;
        z-index: 2;
        margin-bottom: -7px;
    }



    .vertical-line {
        width: 100px;
        height: 3px;
        background-color: #4A355F;
        margin: 0 auto;
    }

    .ionmax-tech-container {
        flex-direction: column;
        gap: 32px;
    }
}


/*( NEXUS 10 | ASUS ZENBOOK ) */
@media all and (min-width: 800px) and (max-width: 853px) and (min-height: 1280px) and (max-height: 1280px) {
    .ion-max-banner {
        padding: 0px 0px 0px 0px;
        background-color: #000000;
        position: relative;
        height: 700px;
    }

    #spline-section {
        width: 100% !important;
        height: 60vh !important;
        overflow: hidden;
        position: relative;
        background-color: #FFC7D5;
    }

    .curve-svg {
        width: 100%;
        height: 160px;
        pointer-events: none;
        z-index: 2;
        margin-bottom: -7px;
    }



    .vertical-line {
        width: 100px;
        height: 3px;
        background-color: #4A355F;
        margin: 0 auto;
    }

    .ionmax-tech-container {
        flex-direction: column;
        gap: 32px;
    }
}





/* END ION MAX WEB PAGE  */

/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */

/* WAREHOUSE MEDIA: VIDEO LIBRARY | MULTIMEDIA*/

.warehouse-banner {
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/MEDIA_THUMBNAILS/Storm_generic background 6.jpg") no-repeat center;
    background-size: cover;
    position: relative;

}

.video-listing-container {
    display: flex;
    flex-flow: row wrap;
    gap: 16px 8px;
    justify-content: center;
    padding: 16px 32px 32px 32px;

}



.time-stamp {
    padding: 4px 8px;
    background-color: rgba(50, 50, 50, .7);
    position: absolute;
    right: 16px;
    bottom: 16px;
    border-radius: 8px;
}

.time-stamp p {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin: 0px;
}


.storm1 {
    background-color: #D1E7E1 !important;
    color: #000000 !important;
}

.storm1:hover {
    background-color: #71D8C4 !important;
    color: #000000 !important;
}

.roto-grip1 {
    background-color: #FFDAD7 !important;
    color: #000000 !important;
}

.roto-grip1:hover {
    background-color: #FFB3AF !important;
    color: #000000 !important;
}

.global1 {
    background-color: #FCDEB5 !important;
    color: #000000 !important;
}

.global1:hover {
    background-color: #FFBA3E !important;
    color: #000000 !important;
}

.layouts1 {
    background-color: #F8E0E0 !important;

    color: #000000 !important;
}

.layouts1:hover {
    background-color: #F4B8B8 !important;
    color: #000000 !important;
}

.surface1 {
    background-color: #FCD9B3 !important;

    color: #000000 !important;
}

.surface1:hover {
    background-color: #F7AE72 !important;
    color: #000000 !important;
}

.lane-play1 {
    background-color: #FFF4B3 !important;

    color: #000000 !important;
}

.lane-play1:hover {
    background-color: #FFE066 !important;
    color: #000000 !important;
}

.ball-care1 {
    background-color: #DFFFD8 !important;

    color: #000000 !important;
}

.ball-care1:hover {
    background-color: #B3F3A6 !important;
    color: #000000 !important;
}

.technology1 {
    background-color: #D6E9FF !important;

    color: #000000 !important;
}

.technology1:hover {
    background-color: #99C2FF !important;
    color: #000000 !important;
}

.arsenal-building1 {
    background-color: #E8D6FF !important;

    color: #000000 !important;
}

.arsenal-building1:hover {
    background-color: #CC99FF !important;
    color: #000000 !important;
}

.terminology1 {
    background-color: #FFD6FF !important;

    color: #000000 !important;
}

.terminology1:hover {
    background-color: #FF99FF !important;
    color: #000000 !important;
}

.technique1 {
    background-color: #FFD9E9 !important;

    color: #000000 !important;
}

.technique1:hover {
    background-color: #FFB6DC !important;
    color: #000000 !important;
}

.fitness1 {
    background-color: #E6D5C3 !important;

    color: #000000 !important;
}

.fitness1:hover {
    background-color: #D2B48C !important;
    color: #000000 !important;
}

.travel1 {
    background-color: #B3E6E6 !important;

    color: #000000 !important;
}

.travel1:hover {
    background-color: #00B3B3 !important;
    color: #000000 !important;
}

.product-insight1 {
    background-color: #A9A6FF !important;

    color: #000000 !important;
}

.product-insight1:hover {
    background-color: #8783FF !important;
    color: #000000 !important;
}

.tags-container {
    width: 100%;
    margin-bottom: 8px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
}

.tag {
    padding: 4px 8px;
    border-radius: 100px;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    line-height: 20px !important;
    letter-spacing: 0.1px !important;

}

.media-container {
    display: flex;
    flex-flow: row wrap;
    gap: 16px 8px;
    justify-content: center;
    padding: 32px;
    margin: auto;
}




.video-playlist-card {
    width: 400px;
    height: 300px;
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.15);
    position: relative;

}

.playlist-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 32px;
    padding: 32px;
}

.new-video {
    width: 800px;
    margin: auto;
    box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.15);
    border-radius: 16px;

}

.new-video-container {
    margin-top: -192px;
}

.selected-filters {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tag {
    background-color: #191C1B !important;
    color: #FAFDFA !important;
    display: flex !important;
    justify-content: center;
    width: max-content;
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    border: none !important;

}

.close-btn {
    margin-left: 8px;
    font-weight: bold;
    cursor: pointer;
}





@media all and (min-width:320px) and (max-width:425px) {
    .video-playlist-card {
        width: 250px;
        height: fit-content;
        background-color: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.15);
        position: relative;
    }

    .playlist-container {
        display: flex;
        flex-flow: row;
        justify-content: center;
        gap: 16px;
        width: max-content;
        padding: 32px;
    }


}

@media all and (min-width:426px) and (max-width:768px) {
    .video-playlist-card {
        width: 250px;
        height: fit-content;
        background-color: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.15);
        position: relative;
    }

    .playlist-container {
        display: flex;
        flex-flow: row;
        justify-content: center;
        gap: 16px;
        width: max-content;
        padding: 32px;
    }


}

/* END OF WAREHOUSE MEDIA: VIDEO LIBRARY  */

/* ----------------------------------------------------------------------------- */





/* AI CORE WEB PAGE */

/* Core Image Animation */
.ai-core-container {
    margin-top: 64px;
}

#image-animation-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

}

#sequence-image-animation {
    max-width: 100%;
    max-height: 100%;
    transition: 1s ease-in-out;
}


/* Core Stat */


.ai-stat {
    width: 100%;
    height: 375px;
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/AI_CORE/more-strikes.png") no-repeat center;
    background-size: contain;
}



/* AI Info */
.ai-logo {
    width: 50%;
    height: 50%;

    margin: auto;
    margin-bottom: 32px;
}

.ai-background {
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/AI_CORE/AI-background.png") no-repeat center;
    background-size: cover;
    margin-bottom: 96px;
}

.ai-info {
    width: 70%;
    margin: auto;

}


.ai-core-video-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}


/* SMALL PHONE */
@media all and (min-width:320px) and (max-width:425px) {
    #image-animation-container {
        width: 100%;
        height: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
    }



    .ai-stat {
        width: 100%;
        height: 300px;
        background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/AI_CORE/more-strikes-mobile.png") no-repeat center;
        background-size: contain;
    }

    .ai-info {
        width: 100%;
        margin: auto;
    }

    .ai-logo {
        width: 100%;
        height: 50%;
        margin: auto;
        margin-bottom: 32px;
    }

    .ai-background {

        background-size: cover;
        margin-bottom: 32px;
    }

    .ai-core-container {
        margin-top: 32px;
    }


}

/* LARGE PHONE - SMALL TABLET */
@media all and (min-width:426px) and (max-width:768px) {

    #image-animation-container {
        width: 100%;
        height: 450px;
        display: flex;
        justify-content: center;
        align-items: center;
    }



    .ai-stat {
        width: 100%;
        height: 400px;
        background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/AI_CORE/more-strikes-mobile.png") no-repeat center;
        background-size: contain;
    }

    .ai-info {
        width: 100%;
        margin: auto;
    }

    .ai-logo {
        width: 80%;
        height: 50%;
        margin: auto;
        margin-bottom: 32px;
    }

    .ai-background {

        background-size: cover;
        margin-bottom: 64px;
    }

    .ai-core-container {
        margin-top: 64px;
    }




}

/* LARGE TABLET*/
@media all and (min-width:769px) and (max-width:1024px) {
    #image-animation-container {
        width: 100%;
        height: 450px;
        display: flex;
        justify-content: center;
        align-items: center;
    }




    .ai-info {
        width: 100%;
        margin: auto;
    }

    .ai-logo {
        width: 80%;
        height: 50%;
        margin: auto;
        margin-bottom: 32px;
    }
}

/* SMALL LAPTOP */
@media all and (min-width:1025px) and (max-width:1440px) {
    .ai-info {
        width: 100%;
        margin: auto;
    }
}

/* LARGE LAPTOP */
@media all and (min-width:1441px) and (max-width:2560px) {}

/* 4K SCREEN */
@media all and (min-width:2560px) {}




/* END OF AI CORE WEB PAGE  */

/* ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */

/* MODAL WTF HAPPENED THE FIRST TIME */

.modal {
    display: none;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.8);
}



.video-modal-content {
    border-radius: 4px;
    width: 100%;
    max-height: 800px;
    position: relative;
    margin: auto;
    top: 160px;
    left: 50%;
    transform: translate(-50%, -00%);
    position: absolute;
}

/* Styling for the modal popup */
.modal-popup {
    display: none;
    position: fixed;
    z-index: 1000000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    margin: 15% auto;
    width: fit-content;
    max-width: 800px;
    position: relative;
    border-radius: 8px;
    padding: 8px !important;
}

@media all and (min-width:320px) and (max-width:768px) {
    .modal-content {
        margin: 96px auto;
        width: fit-content;
        max-width: 800px;
        position: relative;
        border-radius: 8px;
    }
}

#modalContent {
    background-color: white;
    border-radius: 16px;
    width: fit-content;
    margin: auto;
}

.close {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    color: #FAFDFA;
    font-size: 64px;
    font-weight: bold;
    cursor: pointer;
    opacity: .5;
    text-shadow: none !important;
}

.close:hover {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    color: #FAFDFA;
    font-size: 64px;
    font-weight: bold;
    cursor: pointer;
    opacity: 1;
    text-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.25) !important;
}


.video-container {
    height: auto;
    width: 800px;
    padding-bottom: 56.25%;
    padding-top: 25px;
}

@media all and (min-width:320px) and (max-width:425px) {
    .video-container {
        width: 300px;
    }
}

@media all and (min-width:426px) and (max-width:768px) {
    .video-container {
        width: 400px;
    }
}

@media all and (min-width:769px) and (max-width:1024px) {
    .video-container {
        width: 500px;
    }
}




/* ----------------------------- */
/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */

/* FORM INPUT */

.input-group {
    margin-bottom: 20px;
    position: relative;
}

.input-label {
    position: absolute;
    top: -0.75rem;
    left: 1rem;
    background: #1a1a1a;
    padding: 4px 8px;
    color: #d7c8b3;
    font-size: 12px;
}


input[type="text"] {
    width: 100%;
    padding: 32px;
    border: 1px solid #d7c8b3;
    border-radius: 8px !important;
    background-color: transparent;
    color: #fff;
    font-size: 16px;
    box-sizing: border-box;
    line-height: normal;
}

input[type="text"]:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px #FFBA3E !important;
    border-color: #FFBA3E !important;
}

.input-hint {
    margin-top: 0.5rem;
    color: #d7c8b3;
    font-size: 0.9rem;
}


/* COVE & EMBER WEB PAGE */

.cove-ember-headline {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}


.cove-ember-headline svg {
    width: 50%;
}


/* ember and cover layout chart */

/* grid key */
.ember-cove-key-container {
    border-radius: 16px;
    padding: 32px;
    width: fit-content;
}

.key-dot-container {
    display: flex;
    gap: 8px;
    align-items: center;

}

.key-dot-container h5 {
    margin-bottom: 0px;
    color: #D2C4B4;
    font-weight: 400;
}

.key-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.emberCove-graph-container {
    position: relative;
    width: 90%;
    height: 500px;
    font-family: sans-serif;
    color: #D2C4B4;
}


/* grid */
.graph-grid {
    position: relative;
    z-index: 0;
    top: 0;
    left: 40px;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    border-left: 2px solid #4a3c2d;
    border-bottom: 2px solid #4a3c2d;
}

.v-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    border-left: 2px solid #4a3c2d;
}

.h-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 0;
    border-top: 2px solid #4a3c2d;
}

.y-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.8rem;
    padding-left: 4px;
}

.x-labels {
    position: absolute;
    bottom: -1.5rem;
    left: 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    padding-top: 0.5rem;
}

.point-wrapper {
    position: absolute;
    transform: translate(-50%, -5px);
    text-align: center;
    cursor: pointer;
    /* 👈 Shows hand cursor */
    z-index: 10;
    /* ✅ just needs to be above .graph-svg */
}

.point {
    width: 10px;
    height: 10px;
    background: #FFBA3E;
    border-radius: 50%;
    margin: 0 auto;
}

.point-label {
    font-size: 12px;
    color: #FFBA3E;
    margin-top: 4px;
    font-weight: 900;
}

.point-wrapper:hover .point {
    transform: scale(1.4);
    transition: transform 0.2s ease;
    box-shadow: 0 0 6px #FFBA3E;
}

.point-wrapper:hover .point-label {
    text-decoration: underline;
}


.point-wrapper.user-point {
    position: absolute;
    transform: translate(-50%, -5px);
    text-align: center;
    pointer-events: none;
    z-index: 1000;
}

.point-wrapper.user-point .point {
    background: #F9F3F2;

}

.point-wrapper.user-point .point-label {
    color: #F9F3F2;
    text-transform: uppercase;
}

.graph-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    /* ✅ Keep lines underneath */
}

.graph-line {

    stroke-width: 0.5;
}

.graph-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.y-axis-label {
    position: absolute;
    left: 0px;
    top: 60%;
    transform: rotate(-90deg) translateY(-50%);
    transform-origin: left center;
    font-weight: 600;
    font-size: 14px;
    color: #D2C4B4;
}

.x-axis-label {
    margin-top: 32px;
    font-weight: 600;
    font-size: 14px;
    color: #D2C4B4;
}

/* ember & cove layout chips */

.ec-layout-chip {
    width: 100px;
    padding: 8px;
    border-radius: 8px;
    background-color: #FCDEB5;
    color: #271901;
    position: absolute;
    font-size: 0.75rem;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    z-index: 99;
}

#layout-chips {
    transition: opacity 0.3s ease;
}

#layout-chips.hidden {
    opacity: 0;
    pointer-events: none;
}

/* toggle */

.toggle-wrapper {
    position: relative;
    display: inline-block;
    width: 120px;
    height: 62px;
    margin-bottom: 0px;
    padding: 32px;
}

.toggle-input {
    display: none;
}

.toggle-track {
    box-sizing: border-box;
    background-color: #3D342A;
    border: 4px solid #C2B6A5;
    border-radius: 999px;
    width: 100%;
    height: 100%;
    position: relative;
    transition: background-color 0.3s ease;
}

.toggle-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 50px;
    height: 50px;
    background-color: #E8DACB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left 0.3s ease;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.05), 0 0 0 20px rgba(255, 255, 255, 0.03);
}

.toggle-icon {
    font-size: 24px;
    color: #2B2017;
}

/* Move thumb right when checked */
.toggle-input:checked+.toggle-track .toggle-thumb {
    left: calc(100% - 52px);
}


.user-card-display {
    display: none;
    padding: 32px;
    background-color: #F9F3F2;
    width: 80%;
    margin-top: 16px;
    margin-left: 96px;
    border-radius: 16px;
}

@media all and (min-width:320px) and (max-width:768px) {
    .user-card-display {
        display: none;
        padding: 32px;
        background-color: #F9F3F2;
        width: fit-content;
        margin-top: 16px;
        margin-left: 0px;
        border-radius: 16px;
    }




}

.user-result-card {
    background-color: white;
    padding: 8px;
    border-radius: 8px;
    display: none;
    /* Hide by default */
}

.ember-cove-core-cover-container {
    position: relative;
    background-color: #EAE1D9;
    overflow: hidden;

}

.slider-track {
    display: flex;
    width: 200%;
    transition: transform 0.6s ease-in-out;
}

.ec-slide {
    flex: 0 0 100%;
    width: 100%;
}

.ember-cove-cover-highlights {
    width: fit-content;
    margin: auto;
}

.ember-cove-cover-highlights ul {
    text-align: left;
    list-style-type: disc !important;
    /* ✅ adds bullet points */

}


.ember-cover {
    width: 75%
}

.cove-cover {
    width: 75%
}


.progress-bar.ember-cove {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D9D9D9;
    overflow: hidden;
    border-radius: 50px;
    height: 15px;
    padding: 5px;
}


.segment.ember-cove {
    flex: 1;
    height: 100%;
    background-color: #D9D9D9;
    border: 1px solid #000000;
}


.segment.ember.active {
    flex: 1;
    height: 100%;
    background-color: #D6330A;
    border: 1px solid #000000;
}



.segment.cove.active {
    flex: 1;
    height: 100%;
    background-color: #87CCB9;
    border: 1px solid #000000;
}

.segment.ember-cove-overlap.active {
    flex: 1;
    height: 100%;
    background-color: #F1AD92;
    border: 1px solid #000000;
}

.graph-wrapper-container {
    position: relative;
}

.cove-ember-products {
    width: 50%;
    margin: auto;
}

.tenpin-toolkit img {
    width: 300px;
}

@media all and (min-width:320px) and (max-width:768px) {
    .cove-ember-headline svg {
        width: 100%;
    }

    .slider-track {
        width: 100%;
    }

    .ec-slide {
        flex: 0 0 100%;
        width: 100%;
    }

    .emberCove-graph-container {
        position: relative;
        width: 250%;
        height: 350px;
        font-family: sans-serif;
        color: #D2C4B4;
        margin-left: 40px;
    }

    .graph-wrapper {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: unset;
        overflow: scroll;
    }

    .y-labels {
        position: absolute;
        top: 0;
        left: -40px;
        width: 40px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        font-size: 8px;
        padding-left: 4px;
    }

    .x-labels {
        position: absolute;
        bottom: -1.5rem;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        font-size: 8px;
        padding-top: 0.5rem;
    }

    .graph-grid {
        position: relative;
        z-index: 0;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: grid;
        grid-template-columns: repeat(9, 1fr);
        border-left: 2px solid #4a3c2d;
        border-bottom: 2px solid #4a3c2d;
    }

    .point-label {
        font-size: 8px;
        color: #FFBA3E;
        margin-top: 2px;
        font-weight: 500;
    }

    .x-axis-label {
        margin-top: 24px;
        font-weight: 600;
        font-size: 8px;
        color: #D2C4B4;
    }

    .y-axis-label {
        position: absolute;
        left: unset;
        left: -68px;
        top: 50%;
        transform: rotate(-90deg) translateY(-50%);
        transform-origin: unset;
        font-weight: 600;
        font-size: 8px;
        color: #D2C4B4;
    }

    .ec-layout-chip {
        width: 50px;
        padding: 8px;
        border-radius: 8px;
        background-color: #FCDEB5;
        color: #271901;
        position: absolute;
        font-size: 8px;
        transform: translate(-50%, -50%);
        white-space: nowrap;
        z-index: 99;
    }

    .cove-ember-products {
        width: 100%;
        margin: auto;
    }


}


@media all and (min-width:769px) and (max-width:1024px) {
    .graph-grid {
        position: relative;
        z-index: 0;
        top: 0;
        left: unset;
        width: 100%;
        height: 100%;
        display: grid;
        grid-template-columns: repeat(9, 1fr);
        border-left: 2px solid #4a3c2d;
        border-bottom: 2px solid #4a3c2d;
    }

    .y-labels {
        position: absolute;
        top: 0;
        left: -44px;
        width: 40px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        font-size: 0.8rem;
        padding-left: 4px;
    }

    .x-labels {
        position: absolute;
        bottom: -1.5rem;
        left: 0px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        font-size: 0.8rem;
        padding-top: 0.5rem;
    }

    .y-axis-label {
        position: absolute;
        left: -40px;
        top: 50%;
        transform: rotate(-90deg) translateY(-50%);
        transform-origin: left center;
        font-weight: 600;
        font-size: 14px;
        color: #D2C4B4;
    }
}

@media all and (min-width:1025px) and (max-width:1440px) {
    .ember-cove-key-container {
        border-radius: 16px;
        padding: 16px;
        width: fit-content;
    }

    .y-axis-label {
        position: absolute;
        left: 32px;
        top: 50%;
        transform: rotate(-90deg) translateY(-50%);
        transform-origin: left center;
        font-weight: 600;
        font-size: 14px;
        color: #D2C4B4;
    }
}

@media all and (min-width:2560px) {
    .cove-ember-headline svg {
        width: 50%;
    }

    .cove-ember-headline {
        display: flex;
        flex-direction: column;
        gap: 32px;
        justify-content: center;
        align-items: center;
    }
}


/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */

/*  HERO SECTION */


.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-info {
    text-align: left;
    position: absolute;
    top: 96px !important;
    left: 64px !important;
    z-index: 1;
    width: 50%;
}

.banner-logo {
    width: 500px;
}


/* HERO IMAGE WRAPPER */
.hero-img-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hero-img {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    /* Can be adjusted per breakpoint */
    height: auto;
    display: block;
    max-width: unset !important;
}

.image-fill {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.image-fill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.brand-hero-section {
    height: 300px;
}

.brand-hero-logo {
    width: 200px;
    height: 200px;
    border-radius: 100%;
    background-color: #000000;
}



@media all and (min-width:320px) and (max-width:768px) {
    .hero-info {
        text-align: left;
        position: absolute;
        top: 8px !important;
        left: unset !important;
        margin: 16px;
        z-index: 1;
        width: unset;
    }



    .banner-logo {
        width: 300px;
    }
}

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

    .banner-logo {
        width: 400px;
    }


}



@media all and (min-width:320px) and (max-width:768px) {
    .hero-img {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        width: 200%;
        /* Can be adjusted per breakpoint */
        height: auto;
        display: block;
        max-width: unset !important;
    }

}

@media all and (min-width:769px) and (max-width:1024px) {
    .hero-img {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        width: 150%;
        /* Can be adjusted per breakpoint */
        height: auto;
        display: block;
        max-width: unset !important;
    }
}


/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */


/* PARTNERS WEB PAGE */

.partner-container {
    background-color: #f2f2f2f2;
    padding: 32px;
}

@media all and (min-width:320px) and (max-width:768px) {
    .partner-container {
        background-color: #f2f2f2f2;
        padding: 32px 0px;
    }
}



/* DOWNLOADS */

.downloads-container {
    width: fit-content;
    margin: auto;
    text-align: center;
}

/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */



/* BALL CARE GUIDE */

.cleaner-feature-container {
    padding: 96px;
    background-color: #003730;
    overflow: hidden;
    position: relative;
    margin-bottom: 96px;
}

.feature-image-container {
    width: 100%;
    position: relative;
    margin-top: 32px;
}

.feature-image {
    width: 10%;
    margin: auto;
    margin-bottom: 32px !important;
}

.feature-info {
    width: 50%;
    text-align: center;
    margin: auto;
}

.key-cleaning-steps {
    margin: auto;
    padding: 32px 288px 0px 288px;
    text-align: center;
}

.key-cleaning-steps>ul {
    display: flex;
    gap: 16px;
    flex-direction: column;
    text-align: left;
    width: fit-content;
    margin: auto !important;
}

.surface-container {
    padding: 96px 96px 96px 96px;
}

.cleaning-container {
    padding: 0px 96px 96px 96px;
}

.resurface-guide {
    padding: 0px;
    text-align: left;
}


.edge ol {
    text-align: left !important;
}

.steps {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: row;
    gap: 32px;
    margin-bottom: 32px !important;
}


/* PRODUCT SLIDER */
.slider-container {
    width: 80%;
    max-width: 1200px;
    position: relative;
    margin: auto;
    overflow: hidden;
}



.ball-care-product {
    display: none;
    /* Hide all slides by default */
    gap: 16px;
}


.ball-care-product.active {
    min-width: 100%;
    display: flex;
    gap: 32px;
    justify-content: space-between;
    box-sizing: border-box;
    height: min-content;
}


.info {
    width: 100%;
    text-align: left;
}


/* Progress Dots */
.progress-dots {
    margin-top: 32px;
}





/* SMALL PHONE */
@media all and (min-width:320px) and (max-width:425px) {

    .cleaner-feature-container {
        padding: 32px;
        margin-bottom: 48px;
    }

    .feature-info {
        width: 100%;
        text-align: center;
        margin: auto;
    }

    .feature-image {
        width: 30%;
        margin: auto;
    }

    .surface-container {
        padding: 48px 32px;
    }

    .cleaning-container {
        padding: 0px 32px 48px 32px;
    }

    .resurface-guide {
        padding: 0px 32px;
        text-align: left;
    }



    .key-cleaning-steps {
        margin: auto;
        padding: 32px 32px 0px 32px;
        text-align: center;
    }

    .steps {
        width: 900px;
        margin: auto;
        display: flex;
        flex-direction: row;
        gap: 32px;
    }

    .key-cleaning-steps>ul {
        display: flex;
        gap: 16px;
        flex-direction: column;
        text-align: left;
        margin: auto !important;
    }

    .slide {
        min-width: 100%;
        display: flex;
        gap: 32px;
        justify-content: space-between;
        box-sizing: border-box;
        flex-direction: column;
    }

    .product1 {
        background-color: #E9E9E9;
        border-radius: 16px;
        text-align: center;
        display: block;
        height: min-content;
        padding: 8px;
    }





    .slider-container {
        width: 80%;
        position: relative;
        margin: auto;
        height: fit-content;
    }


    .ball-care-product {
        display: none;
        gap: 16px;
        flex-direction: column;
    }


}

/* LARGE PHONE - SMALL TABLET */
@media all and (min-width:426px) and (max-width:768px) {

    .cleaner-feature-container {

        margin-bottom: 64px;
    }

    .steps {
        width: 100%;
        margin: auto;
        display: flex;
        flex-direction: row;
        gap: 32px;
    }

    .surface-container {
        padding: 64px;
    }

    .key-cleaning-steps {
        margin: auto;
        padding: 32px 32px 0px 32px;
        text-align: center;
    }

    .feature-info {
        width: 100%;
        text-align: center;
        margin: auto;
    }

    .feature-image {
        width: 40%;
        margin: auto;
        margin-bottom: 32px !important;
    }


    .key-cleaning-steps>ul {
        display: flex;
        gap: 16px;
        flex-direction: column;
        text-align: left;
        margin: auto !important;
    }

    .resurface-guide {
        padding: 0px 32px;
        text-align: left;
    }

    .steps {
        width: 900px;
        margin: auto;
        display: flex;
        flex-direction: row;
        gap: 32px;
    }

    .slide {
        min-width: 100%;
        display: flex;
        gap: 32px;
        justify-content: space-between;
        box-sizing: border-box;
        flex-direction: column;
    }

    .product1 {
        background-color: #E9E9E9;
        border-radius: 16px;
        text-align: center;
        display: block;
        height: min-content;
        width: 300px;
        padding: 16px;
    }




    .slider-container {
        width: 80%;
        position: relative;
        margin: auto;
        height: fit-content;
    }


    .ball-care-product {
        display: none;
        gap: 16px;
        flex-direction: column;
    }

}

/* LARGE TABLET*/
@media all and (min-width:769px) and (max-width:1024px) {

    .steps {
        width: 100%;
        margin: auto;
        display: flex;
        flex-direction: row;
        gap: 32px;
    }

    .key-cleaning-steps>ul {
        display: flex;
        gap: 16px;
        flex-direction: column;
        text-align: left;
        margin: auto !important;
    }

    .feature-image {
        width: 20%;
        margin: auto;
    }

    .key-cleaning-steps {
        margin: auto;
        padding: 32px 64px 0px 64px;
        text-align: center;
    }

    .slide {
        min-width: 100%;
        display: flex;
        gap: 32px;
        justify-content: space-between;
        box-sizing: border-box;
        flex-direction: column;
    }

    .product1 {
        background-color: #E9E9E9;
        border-radius: 16px;
        text-align: center;
        display: block;
        height: min-content;
        width: 300px;
        padding: 48px;
    }

    .slider-container {
        width: 80%;
        position: relative;
        margin: auto;
        height: fit-content;
    }


    .ball-care-product {
        display: none;
        gap: 16px;
        flex-direction: column;
    }

}

/* SMALL LAPTOP */
@media all and (min-width:1025px) and (max-width:1440px) {
    .resurface-guide {
        padding: 0px;
        text-align: left;
    }

    .steps {
        width: 100%;
        margin: auto;
        display: flex;
        flex-direction: row;
        gap: 32px;
    }

    .key-cleaning-steps {
        margin: auto;
        padding: 32px 96px 0px 96px;
        text-align: center;
    }



    .key-cleaning-steps>ul {
        display: flex;
        gap: 16px;
        flex-direction: column;
        text-align: left;
        margin: auto !important;
    }

    .slide {
        min-width: 100%;
        display: flex;
        gap: 32px;
        justify-content: space-between;
        box-sizing: border-box;
        flex-direction: column;
    }

}

/* LARGE LAPTOP */
@media all and (min-width:1441px) and (max-width:2560px) {

    .key-cleaning-steps {
        margin: auto;
        padding: 32px 192px 0px 192px;
        text-align: center;
    }

    .key-cleaning-steps>ul {
        display: flex;
        gap: 16px;
        flex-direction: column;
        text-align: left;
        margin: auto !important;
    }
}

/* 4K SCREEN */
@media all and (min-width:2560px) {}

/* END OF BALL CARE  */

/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */



/* BOWLING 101 LANDING PAGE */


.bowl-tec-hero-copy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
}

.bowl-tec-hero-copy h1 {
    font-size: 192px;
}


@media all and (min-width:320px) and (max-width:768px) {
    .bowl-tec-hero-copy h1 {
        font-size: 64px !important;
    }
}


@media all and (min-width:769px) and (max-width:1024px) {
    .bowl-tec-hero-copy h1 {
        font-size: 128px !important;
    }
}

@media all and (min-width:1025px) and (max-width:1440px) {
    .bowl-tec-hero-copy h1 {
        font-size: 160px !important;
    }
}


.bolt-2 {
    position: absolute;
    top: 329px;
    left: -147px;
    transform: rotate(304deg);
}


.bolt-4 {
    position: absolute;
    top: -317px;
    right: -409px;
}

@media all and (min-width:320px) and (max-width:768px) {

    .bolt-4 {
        position: absolute;
        top: -305px;
        right: -507px;
    }

    .bolt-2 {
        position: absolute;
        top: 332px;
        left: -239px;
        transform: rotate(304deg);
    }
}

@media all and (min-width:769px) and (max-width:1024px) {
    .bolt-4 {
        position: absolute;
        top: -315px;
        right: -586px;
    }

    .bolt-2 {
        position: absolute;
        top: 380px;
        left: -243px;
        transform: rotate(304deg);
    }
}


@media all and (min-width:1025px) and (max-width:1440px) {
    .bolt-4 {
        position: absolute;
        top: -329px;
        right: -460px;
    }

    .bolt-2 {
        position: absolute;
        top: 380px;
        left: -235px;
        transform: rotate(304deg);
    }
}


/* AI CORE SECTION */

.bowl-tec-amplified-inertia {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

@media all and (min-width:320px) and (max-width:768px) {
    .bowl-tec-amplified-inertia {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
    }
}



.bowl-tec-amplifeid-inertia-ball {
    position: absolute;
    bottom: -252px;
    /* stick to bottom */
    left: 50%;
    /* move horizontal anchor to center */
    transform: translateX(-50%);
    /* shift back half its own width */
    width: 700px;
    height: 700px;
}

.ai-background1 {
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/BOWL-TEC/ai-core-home-banner-dark.png") no-repeat center;
    background-size: cover;

}

.ai-center {
    display: flex;
    flex-direction: column;
    margin: auto;
    text-align: left;
    justify-content: center;
}



/* SMALL PHONE */
@media all and (min-width:320px) and (max-width:425px) {

    .ai-center {
        display: flex;
        flex-direction: column-reverse;
        margin: auto;
        text-align: left;
        justify-content: end;
    }


}

/* LARGE PHONE - SMALL TABLET */
@media all and (min-width:426px) and (max-width:768px) {



    .ai-center {
        display: flex;
        flex-direction: column;
        margin: auto;
        text-align: left;
        justify-content: end;
    }


}

/* LARGE TABLET*/
@media all and (min-width:769px) and (max-width:1024px) {


    .bowl-tec-hero-copy {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: max-content;
    }


    .ai-center {
        display: flex;
        flex-direction: column-reverse;
        margin: auto;
        text-align: left;
        justify-content: end;
    }



}

/* SMALL LAPTOP */
@media all and (min-width:1025px) and (max-width:1440px) {}

/* LARGE LAPTOP */
@media all and (min-width:1441px) and (max-width:1880px) {}

/* LARGE LAPTOP */
@media all and (min-width:1881px) and (max-width:1920px) {}

/* 4K SCREEN */
@media all and (min-width:1921px) and (max-width:2560px) {}




/* BOWLING 101 LANDING PAGE END */

/* --------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */

.storm-senior-logo img {
    width: 600px;
}


.senior-club {
    height: 700px;
}


.find-a-coach-container {
    position: relative;
    display: flex;
    flex-direction: row;
    z-index: 0;
}

/* The left container */

.find-a-coach {
    height: 700px !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

}

.container-50.find-a-coach {
    position: relative;
    z-index: 1;

}




/* Right container holds the scrolling logic */
.container-70.coaches {
    position: relative;
    z-index: 2;
    overflow: visible;
    /* Make sure it doesn't clip */
}

.ui-card-coach-container {
    display: flex;
    flex-flow: row;
    gap: 32px;
    justify-content: center;
    padding: 32px;
    width: max-content;

}


.senior-scroll {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: scroll;
    z-index: 10;
    pointer-events: auto;
    white-space: nowrap;
    display: flex;
    align-items: center;
    background: transparent;
}



.senior-scroll::-webkit-scrollbar-track {
    background: transparent;
    /* background behind the bar */
}





@media all and (min-width:320px) and (max-width:768px) {
    .storm-senior-logo img {
        width: 40%;
    }

    .find-a-coach-container {
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .find-a-coach {
        height: 575px !important;
        background-color: #00b3b3;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
}


@media all and (min-width:769px) and (max-width:1024px) {
    .storm-senior-logo img {
        width: 400px;
    }
}

@media all and (min-width:1025px) and (max-width:1440px) {
    .storm-senior-logo img {
        width: 50%;
    }
}

/* --------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */


/* PRO STAFF (ALL ATHLETES) WEB PAGE  */

.player-highlight-container {
    position: relative;
    height: 1000px;
    margin-bottom: 32px;
}

.player-page-banner {
    height: 700px;
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/PRO_STAFF/ASSETS/athlete-page-banner-sketch 2.png") no-repeat center;
    background-size: cover;
}

@media all and (min-width:320px) and (max-width:768px) {
    .player-page-banner {
        height: 750px;
    }
}

.player-page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Adjust transparency */
    z-index: 1;
    /* Place it under the text but above the image */
}

.pro-staff {
    position: relative;
    text-align: left;
    z-index: 2;
    /* Higher z-index than the overlay to ensure it's above */
    width: fit-content;
    padding: 96px 288px 96px 288px;
}

/* HIGHLIGHT CONATINER */
.player-highlight {
    display: flex;
    gap: 16px;
    overflow: scroll;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    overflow-x: auto;
    /* Ensure it can still scroll horizontally */
    padding: 0px 288px 96px 288px;
}

/* Hides scrollbar for WebKit browsers (Chrome, Safari) */
.player-highlight::-webkit-scrollbar {
    display: none;
}


/* PLAYER CARD (HIGHLIGHT BANNER) */
.player-card {
    width: 274px;
    height: auto;
    flex-shrink: 0;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 0px 19.5px -1px rgba(0, 0, 0, 0.50);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, border-radius 0.3s ease;
    /* Smooth transition */
    overflow: hidden;
    /* Ensures content stays within the border radius */
}

.player-card:hover {
    transform: scale(1.1);
    border-radius: 16px;
    /* Ensure the border radius is preserved */
}


.player-banner {
    width: auto;
    height: auto;
    flex-shrink: 0;
    background-color: transparent !important;
}

.player-img {
    width: 172px;
    height: 172px;
    flex-shrink: 0;
    margin: auto;
    margin-top: -96px;
    position: relative;
    z-index: 2;
    transform-origin: center;

}



/* PLAYER INFO */
.player-info-container {}

.player-flag {
    width: 61px;
    height: auto;
    flex-shrink: 0;
    margin: auto;

}

.player-info {
    padding: 32px;
}


/* PLAYER FILTER */

.pro-staff-tab-container {
    width: 95% !important;
    padding: 32px !important;
    margin: auto !important;
    margin-bottom: 32px !important;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0px 4px 32px 2px rgba(0, 0, 0, 0.25) !important;
    display: flex;
    flex-direction: column;

}

@media all and (min-width:320px) and (max-width:768px) {
    .pro-staff-tab-container {
        padding: 16px 0px !important;
        margin-bottom: 16px !important;
        border-radius: 16px;
        background: #FFF;
        box-shadow: 0px 4px 32px 2px rgba(0, 0, 0, 0.25);
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
}

.pro-staff-tab {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: left;
    align-items: center;
}

.staff-tab {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

/* DROPDOWN MENU */

.filter-container {}

.filter {
    position: relative;
}

.filter-btn {}

.filter-options {
    display: none;
    width: max-content;
    position: absolute;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    z-index: 10;
    margin-top: 8px;
    box-shadow: 0px 4px 32px 2px rgba(0, 0, 0, 0.09);
}

.filter-options label {
    display: flex;
    margin-bottom: 5px;
}

.filter-options input[type="checkbox"] {
    margin-right: 5px;
}

.filter-btn .icon {
    margin-left: 8px;
    /* Adds spacing between text and icon */
    font-size: 16px;
}

.filter-btn .icon.active {
    content: "?";
    /* Unicode for "X" symbol */
}

.filter-btn .icon.inactive {
    content: "?";
    /* Unicode for down arrow */
}


/* PLAYER LISTING */
.player-listing-conatainer {
    padding: 0px 288px 96px 288px;
}

hr {
    border: none;
    /* Remove default border */
    height: 2px;
    /* Set the height of the line */
    background-color: #ccc;
    /* Set the color of the line */
    /* Additional styling if needed */
}

.player-listing {
    display: block;
}

.player-container {
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px;
    border-radius: 16px;
    position: relative;
    z-index: 5;
    box-shadow: 0px 4px 32px 2px rgba(0, 0, 0, 0.09);
    margin-bottom: 16px;
}

.player-container:hover {
    cursor: pointer;
}

.player {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* Ensures items are vertically aligned */
}

.country-info {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    /* Ensures the flag and country name are centered */

    gap: 8px;
}

.player-img2 {
    width: 172px;
    height: 172px;
    flex-shrink: 0;
    transform-origin: center;
}


.storm-profile-border {
    border: 8px solid #008776;
    border-radius: 50%;
    /* This makes the element circular */
}


.storm-brand:hover {
    background-color: #D1E7E1;
    box-shadow: 0px 4px 32px 2px rgba(0, 0, 0, 0.25);
}



.roto-profile-border {
    border: 8px solid #D12030;
    border-radius: 50%;
    /* This makes the element circular */
}

.roto-brand:hover {
    background-color: #FFDAD7;
    box-shadow: 0px 4px 32px 2px rgba(0, 0, 0, 0.25);
}

.global-profile-border {
    border: 8px solid #FCB326;
    border-radius: 50%;
    /* This makes the element circular */
}


.global-brand:hover {
    background-color: #FCDEB5;
    box-shadow: 0px 4px 32px 2px rgba(0, 0, 0, 0.25);
}


.youth-profile-border {
    border: 8px solid #00AFF9;
    border-radius: 50%;
    /* This makes the element circular */
}


.youth-brand:hover {
    background-color: #B5D4E7;
    box-shadow: 0px 4px 32px 2px rgba(0, 0, 0, 0.25);
}

.susba-profile-border {
    border: 8px solid #003EA7;
    border-radius: 50%;
    /* This makes the element circular */
}

.susba-brand:hover {
    background-color: #7A9AC4;
    box-shadow: 0px 4px 32px 2px rgba(0, 0, 0, 0.25);
}

.hof-profile-border {
    border: 8px solid #65318F;
    border-radius: 50%;
    /* This makes the element circular */
}

.hof-brand:hover {
    background-color: #C7A6D7;
    box-shadow: 0px 4px 32px 2px rgba(0, 0, 0, 0.25);
}


.pba50-profile-border {
    border: 8px solid #000000;
    border-radius: 50%;
    /* This makes the element circular */
}

.pba50-brand:hover {
    background-color: #AAB2BD;
    box-shadow: 0px 4px 32px 2px rgba(0, 0, 0, 0.25);
}

/* SMALL PHONE */
@media all and (min-width:320px) and (max-width:425px) {

    .player-highlight-container {
        position: relative;
        height: auto;
        margin-bottom: 32px;
    }

    .pro-staff {
        position: relative;
        text-align: left;
        z-index: 2;
        width: fit-content;
        padding: 32px;
    }

    .player-highlight {
        display: flex;
        gap: 16px;
        overflow: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
        overflow-x: auto;
        padding: 0px 32px 32px 32px;
    }



    .player-listing-conatainer {
        padding: 0px 32px;
    }



    .player-container {
        width: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 32px;
        border-radius: 16px;
        position: relative;
        z-index: 5;
        box-shadow: 0px 4px 32px 2px rgba(0, 0, 0, 0.09);
        margin-bottom: 16px;
    }

    .player {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .player-info {
        padding: 16px;
    }



    .player-img {
        width: 100px;
        height: 100px;
        flex-shrink: 0;
        margin: auto;
        margin-top: -96px;
        position: relative;
        z-index: 2;
        transform-origin: center;
    }

    .country-info {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        text-align: right;
    }
}

/* LARGE PHONE - SMALL TABLET */
@media all and (min-width:426px) and (max-width:768px) {

    .player-highlight-container {
        position: relative;
        height: auto;
        margin-bottom: 64px;
    }

    .pro-staff {
        position: relative;
        text-align: left;
        z-index: 2;
        width: fit-content;
        padding: 64px;
    }

    .player-highlight {
        display: flex;

        overflow: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
        overflow-x: auto;
        padding: 0px 64px 64px 64px;
    }




    .player-listing-conatainer {
        padding: 32px;
    }



    .player-container {
        width: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 32px;
        border-radius: 16px;
        position: relative;
        z-index: 5;
        box-shadow: 0px 4px 32px 2px rgba(0, 0, 0, 0.09);
        margin-bottom: 16px;
    }

    .player {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .player-info {
        padding: 32px 32px 16px 32px;
    }

    .player-img {
        width: 100px;
        height: 100px;
        flex-shrink: 0;
        margin: auto;
        margin-top: -96px;
        position: relative;
        z-index: 2;
        transform-origin: center;
    }


    .country-info {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        text-align: right;
    }

}

/* LARGE TABLET*/
@media all and (min-width:769px) and (max-width:1024px) {

    .player-highlight-container {
        position: relative;
        height: 850px;
    }

    .pro-staff {
        position: relative;
        text-align: left;
        z-index: 2;
        width: fit-content;
        padding: 64px;
    }

    .player-highlight {
        display: flex;

        overflow: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
        overflow-x: auto;
        padding: 0px 64px 64px 64px;
    }





    .player-listing-conatainer {
        padding: 64px;
    }



}

/* SMALL LAPTOP */
@media all and (min-width:1025px) and (max-width:1440px) {

    .pro-staff {
        position: relative;
        text-align: left;
        z-index: 2;
        width: fit-content;
        padding: 96px;
    }

    .player-highlight {
        display: flex;

        overflow: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
        overflow-x: auto;
        padding: 0px 96px;
    }




    .player-listing-conatainer {
        padding: 96px;
    }
}

/* LARGE LAPTOP */
@media all and (min-width:1441px) and (max-width:2560px) {}

/* 4K SCREEN */
@media all and (min-width:2560px) {}




/* END OF PRO STAFF WEB PAGE  */

/* ----------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------*/
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */


/* BOWLING BALL BASICS */

.anatomy-container {
    padding: 96px 288px;
    background-color: #1C352F;
}

.anatomy-container img {
    margin-bottom: 48px;
    width: 50%;
}

.anatomy-details-container {
    padding: 128px 288px 128px 288px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    text-align: left;
}

.cover-container {
    display: flex;
    flex-direction: column;
}

.cover {
    display: flex;
    flex-direction: row;
}

.cover-expand {
    margin-top: 32px;
    display: none;


}


.info-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* ANATOMY IMAGES */
.cover-image {
    width: 15%;

    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/BALL_ANATOMY/cover-anatomy.png") no-repeat center;
    background-size: contain;
}

.inner-core-image {
    width: 15%;

    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/BALL_ANATOMY/core-anatomy.png") no-repeat center;
    background-size: contain;
}


.weightblock-image {
    width: 15%;

    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/BALL_ANATOMY/weightblock-anatomy.png") no-repeat center;
    background-size: contain;
}


.drop-down {
    width: 24px;
    height: 24px;

}

.types-container {
    display: flex;
    flex-direction: row;
    gap: 32px;
    margin-bottom: 32px;
}

.type {
    width: 100%;


}


.cover-grit-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.cover-grit {
    width: 100%;
    margin: auto;
    margin-top: 32px;
    display: flex;
    flex-direction: row;
    gap: 32px;
}


.core-video-container {
    display: flex;
    flex-direction: row;
    gap: 32px;
    margin-top: 32px;
}

/* SMALL PHONE */
@media all and (min-width:320px) and (max-width:425px) {

    .anatomy-container img {
        margin-bottom: 48px;
        width: 100%;
    }



    .anatomy-container {
        padding: 32px;

    }

    .anatomy-details-container {
        padding: 48px 32px;
        display: flex;
        flex-direction: column;
        gap: 32px;
        text-align: left;
    }

    .cover {
        display: flex;
        flex-direction: column-reverse;
        gap: 32px;
    }

    .cover-image {
        width: 100%;
        height: 250px;

    }

    .inner-core-image {
        width: 100%;
        height: 250px;

    }

    .weightblock-image {
        width: 100%;
        height: 250px;

    }



    .types-container {
        display: flex;
        flex-direction: column;
        gap: 32px;
        margin-top: 16px;
        margin-bottom: 32px;
    }

    .cover-grit {
        width: 100%;
        margin: auto;
        margin-top: 32px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .core-video-container {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
    }
}

/* LARGE PHONE - SMALL TABLET */
@media all and (min-width:426px) and (max-width:768px) {

    .anatomy-container img {
        margin-bottom: 48px;
        width: 100%;
    }

    .anatomy-container {
        padding: 64px;

    }

    .anatomy-details-container {
        padding: 64px;
        display: flex;
        flex-direction: column;
        gap: 32px;
        text-align: left;
    }

    .cover {
        display: flex;
        flex-direction: column-reverse;
        gap: 32px;
    }

    .cover-image {
        width: 100%;
        height: 250px;

    }

    .inner-core-image {
        width: 100%;
        height: 250px;

    }

    .weightblock-image {
        width: 100%;
        height: 250px;

    }



    .types-container {
        display: flex;
        flex-direction: column;
        gap: 32px;
        margin-top: 16px;
        margin-bottom: 32px;
    }

    .cover-grit {
        width: 100%;
        margin: auto;
        margin-top: 32px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .core-video-container {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
    }
}

/* LARGE TABLET*/
@media all and (min-width:769px) and (max-width:1024px) {

    .anatomy-container {
        padding: 96px;

    }

    .anatomy-details-container {
        padding: 96px;
        display: flex;
        flex-direction: column;
        gap: 48px;
        text-align: left;
    }

    .cover {
        display: flex;
        flex-direction: column-reverse;
    }

    .cover-image {
        width: 100%;
        height: 500px;

    }

    .inner-core-image {
        width: 100%;
        height: 500px;

    }

    .weightblock-image {
        width: 100%;
        height: 500px;

    }



    .types-container {
        display: flex;
        flex-direction: column;
        gap: 32px;
        margin-top: 16px;
        margin-bottom: 32px;
    }

    .cover-grit {
        width: 100%;
        margin: auto;
        margin-top: 32px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .core-video-container {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
    }
}

/* SMALL LAPTOP */
@media all and (min-width:1025px) and (max-width:1440px) {

    .anatomy-container {
        padding: 96px 128px;

    }

    .anatomy-details-container {
        padding: 128px;
        display: flex;
        flex-direction: column;
        gap: 48px;
        text-align: left;
    }

    .cover-image {
        width: 65%;
    }

    .inner-core-image {
        width: 65%;
    }

    .weightblock-image {
        width: 65%;
    }


}

/* LARGE LAPTOP */
@media all and (min-width:1441px) and (max-width:2560px) {}

/* 4K SCREEN */
@media all and (min-width:2560px) {}

/* END OF BOWLING BALL BASICS */

/* ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------  */
/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */



/* LAYOUTS WEB PAGE */

.pin-buffer-layout-diagram {
    width: 50%;
    height: auto;
    margin: auto;
    margin-top: 64px;
}

@media all and (min-width:320px) and (max-width:768px) {
    .pin-buffer-layout-diagram {
        width: 90%;
        height: auto;
        margin: auto;
        margin-top: 32px;
    }
}

@media all and (min-width:769px) and (max-width:1024px) {
    .pin-buffer-layout-diagram {
        width: 75%;
        height: auto;
        margin: auto;
        margin-top: 64px;
    }

}

.layout-icon {
    width: 150px;
    height: 150px;
    margin-bottom: 32px;
}


.layout-card {
    /* NO PADDING - WITH SHADOW (CONTENT CARD) */
    width: 300px;
    height: 500px;
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 4px 16px 2px rgba(0, 0, 0, 0.09);
    position: relative;
}

/* SMALL PHONE */
@media all and (min-width:320px) and (max-width:425px) {
    .pin-buffer-layout-diagram {
        width: 90%;
        height: auto;
        margin: auto;
        margin-top: 64px;
        margin-bottom: 32px;
    }

}

/* LARGE PHONE - SMALL TABLET */
@media all and (min-width:426px) and (max-width:768px) {}

/* LARGE TABLET*/
@media all and (min-width:769px) and (max-width:1024px) {}

/* SMALL LAPTOP */
@media all and (min-width:1025px) and (max-width:1440px) {}

/* LARGE LAPTOP */
@media all and (min-width:1441px) and (max-width:2560px) {}

/* 4K SCREEN */
@media all and (min-width:2560px) {}


/* END LAYOUTS WEB PAGE */




/* ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------  */
/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */



/* TERMINOLOGY WEB PAGE */

.general-bowling-terms-container {
    margin-top: 64px;
}

.term-card {}

.term-card h2 {
    font-style: normal;
    color: #808080 !important;
}

.term-card h2:hover {
    font-style: normal;
    color: #000000 !important;
    text-decoration: underline;
}

.term-listing-container {
    display: flex;
    flex-flow: row wrap;
    gap: 0px 64px;
    justify-content: left;
    padding: 0px 16px 32px 16px;

}

.term-popup {
    position: relative;
    z-index: 2 !important;
    background-color: white;
    padding: 32px;
}

.term-info {
    padding: 32px;
    text-align: left;
    width: 300px;
    overflow: scroll;
}

.term-info h1 {
    font-style: normal !important;
    font-size: 32px !important;
}

.term-media {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.term-media img {
    width: 700px;
    height: 400px;
}

.modal-content-terms {
    margin: 15% auto;
    width: fit-content;
    position: relative;
    border-radius: 8px;

}

#modalContentTerms {
    background-color: white;
    padding: 32px;
    border-radius: 16px;
    display: flex;
    flex-direction: row-reverse;
    height: 400px;

}

/* SMALL PHONE */
@media all and (min-width:320px) and (max-width:425px) {


    .general-bowling-terms-container {
        margin-top: 32px;
    }

    .modal-content-terms {
        margin: 200px auto;
        width: 80%;
        position: relative;
        border-radius: 8px;
    }

    #modalContentTerms {
        background-color: white;
        padding: 32px;
        border-radius: 16px;
        display: flex;
        flex-direction: column-reverse;
        height: 600px;
        justify-content: start;
    }

    .term-info {
        padding: 0px;
        text-align: left;
        width: 100%;
        overflow: scroll;
        margin-top: 16px;
    }

    .term-listing-container {
        display: flex;
        flex-flow: row wrap;
        gap: 0px 48px;
        justify-content: left;
        padding: 16px 32px 48px 32px;
    }

    .term-media img {
        width: fit-content;
        height: fit-content;
    }
}

/* LARGE PHONE - SMALL TABLET */
@media all and (min-width:426px) and (max-width:768px) {

    .general-bowling-terms-container {
        margin-top: 32px;
    }

    .term-media img {
        width: fit-content;
        height: fit-content;
    }

    .modal-content-terms {
        margin: 200px auto;
        width: 80%;
        position: relative;
        border-radius: 8px;
    }

    .term-info {
        padding: 0px;
        text-align: left;
        width: 100%;
        overflow: scroll;
        margin-top: 16px;
    }

    #modalContentTerms {
        background-color: white;
        padding: 32px;
        border-radius: 16px;
        display: flex;
        flex-direction: column-reverse;
        height: 600px;
        justify-content: start;
    }

    .term-media img {
        width: fit-content;
        height: fit-content;
    }

    .term-listing-container {
        display: flex;
        flex-flow: row wrap;
        gap: 0px 64px;
        justify-content: left;
        padding: 16px;
    }
}

/* LARGE TABLET*/
@media all and (min-width:769px) and (max-width:1024px) {}

/* SMALL LAPTOP */
@media all and (min-width:1025px) and (max-width:1440px) {}

/* LARGE LAPTOP */
@media all and (min-width:1441px) and (max-width:1880px) {}

/* LARGE LAPTOP */
@media all and (min-width:1881px) and (max-width:1920px) {}

/* 4K SCREEN */
@media all and (min-width:1921px) and (max-width:2560px) {}

/* TERMINOLOGY WEB PAGE END */

/* --------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------  */
/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */

/* BUYERS GUIDE PAGE */


.buyer-banner {
    width: 100%;

    position: relative;
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/BUYERS-GUIDE/Buyers-guide-banner.png") no-repeat center;
    background-size: cover;
}


.skill-container {
    padding-bottom: 96px;
    background-color: #003730;

}


.skill-path {
    display: flex;
    gap: 16px;
    margin: auto;
    width: fit-content;
    margin-bottom: 64px;
}

.path-container {
    overflow: hidden;
    width: 100%;
    border-radius: 16px;
}

.path-container a {
    text-decoration: none !important;
}

.path {
    position: relative;
    height: 100%;
    border-radius: 16px;
    text-align: left;
}

.path-content {
    position: relative;
    z-index: 2;
    /* Ensure text remains in front */
    padding: 32px;
}

.new-bowler {
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/medias/BOWLING BALL BASICS.png?fv=C0D442F6F36D4C929BA69FBC4C2A9253-176210") no-repeat center;
    background-size: cover !important;


}

.advanced-bowler {
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/medias/ELEVATE YOUR GAME.png?fv=A15C2092D1C09569904FC8E3E41BA7B3-116765") no-repeat center;
    background-size: cover !important;


}


.ball-factors-container {
    width: 50%;
    margin: auto;
    display: block !important;
    color: black !important;
}







/* PHONE */
@media all and (min-width:320px) and (max-width:425px) {

    .path-content {
        position: relative;
        z-index: 2;
        padding: 0px;
    }

    .skill-container {

        padding-bottom: 32px;
    }


    .path {
        position: relative;
        border-radius: 16px;
        text-align: left;
    }

    .ball-factor {
        padding: 32px;
        width: 165px;
        height: 100%;
        border: solid 2px #B1CCC5;
        border-radius: 16px;
    }

    .ball-factors-container {
        width: 80%;
        margin: auto;
    }



}

/* TABLET */
@media all and (min-width:426px) and (max-width:768px) {

    .path-content {
        position: relative;
        z-index: 2;
        padding: 16px;
    }

    .skill-container {

        padding-bottom: 64px;
    }

    .ball-factors-container {
        width: 80%;
        margin: auto;
    }




}

/* TABLET L */
@media all and (min-width:769px) and (max-width:1024px) {

    .ball-factor {
        padding: 32px;
        width: 200px;
        height: 100%;
        border: solid 2px #B1CCC5;
        border-radius: 16px;
    }

    .ball-factors-container {
        width: 80%;
        margin: auto;
    }



}

/* LAPTOP */
@media all and (min-width:1025px) and (max-width:1440px) {}

/* LAPTOP L */
@media all and (min-width:1441px) and (max-width:2560px) {}

/* 4K */
@media all and (min-width:2560px) {}

/* END OF BUYERS GUIDE PAGE */

/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------  */
/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */



/* STORM JUNIOR WEB PAGE */



.storm-junior-background {
    background-color: #090D1B;
    border-radius: 0px 0px 0px 150px;
    height: 300px;
}

.storms-commitment {
    display: flex;
    flex-direction: row;
}

.syc-images {
    width: 100%;
    height: 550px;

    position: relative;
}



/* Example positioning for a collage look */
/* Overlapping arrangement */
.syc-image-1 {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -40%);
    /* Moves the element back by 50% of its width and height */
    z-index: 1;
    width: 45%;
}

.syc-image-2 {
    position: absolute;
    top: 70%;
    left: 25%;
    transform: translate(-50%, -50%);
    /* Moves the element back by 50% of its width and height */
    z-index: 2;
    width: 35%;

}

.syc-image-3 {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 25%;
}

.college-gallery {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin: auto;
    width: max-content;
    padding: 32px;
}

.find-a-coach-container {
    position: relative;
    display: flex;
    flex-direction: row;
}

.find-a-coach {
    height: 700px;
    background-color: #00b3b3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

}

.coach-carousel {

    position: absolute;
    background-color: #65318F;
    top: 20%;
    left: 40%;
}

.coaches {}


.ui-card-coach-container {
    display: flex;
    flex-flow: row;
    gap: 32px;
    justify-content: center;
    padding: 32px;
    margin: auto;
    width: max-content;
}




/* SMALL PHONE */
@media all and (min-width:320px) and (max-width:425px) {


    .syc-image-1 {
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -40%);
        z-index: 1;
        width: 85%;
    }

    .syc-image-2 {
        position: absolute;
        top: 80%;
        left: 35%;
        transform: translate(-50%, -50%);
        z-index: 2;
        width: 65%;
    }

    .syc-image-3 {
        position: absolute;
        top: 80%;
        left: 75%;
        transform: translate(-50%, -50%);
        z-index: 3;
        width: 50%;
    }


    .syc-images {
        width: 100%;
        height: 450px;
        margin-bottom: 48px;
        position: relative;
    }

    .storms-commitment {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .storm-junior-background {
        background-color: #090D1B;
        border-radius: 0px 0px 0px 32px;
        height: 300px;
    }

    .find-a-coach-container {
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .container-70 {
        width: 100%;
        position: relative;
    }
}

/* LARGE PHONE - SMALL TABLET */
@media all and (min-width:426px) and (max-width:768px) {


    .syc-image-1 {
        position: absolute;
        top: 30%;
        left: 30%;
        transform: translate(-50%, -40%);
        z-index: 1;
        width: 45%;
    }

    .syc-image-2 {
        position: absolute;
        top: 22%;
        left: 65%;
        transform: translate(-50%, -50%);
        z-index: 2;
        width: 35%;
    }

    .syc-image-3 {
        position: absolute;
        top: 60%;
        left: 65%;
        transform: translate(-50%, -50%);
        z-index: 3;
        width: 50%;
    }



    .syc-images {
        width: 100%;
        height: 450px;

        position: relative;
    }

    .storms-commitment {
        display: flex;
        flex-direction: column;
    }

    .storm-junior-background {
        background-color: #090D1B;
        border-radius: 0px 0px 0px 32px;
        height: 300px;
    }

    .find-a-coach-container {
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .container-70 {
        width: 100%;
        position: relative;
    }
}

/* LARGE TABLET*/
@media all and (min-width:769px) and (max-width:1024px) {

    .storms-commitment {
        display: flex;
        flex-direction: row;
        gap: 32px;
    }


    .syc-image-1 {
        position: absolute;
        top: 35%;
        left: 50%;
        transform: translate(-50%, -40%);
        z-index: 1;
        width: 75%;
    }


    .syc-image-2 {
        position: absolute;
        top: 75%;
        left: 25%;
        transform: translate(-50%, -50%);
        z-index: 2;
        width: 55%;
    }


    .syc-image-3 {
        position: absolute;
        top: 85%;
        left: 65%;
        transform: translate(-50%, -50%);
        z-index: 3;
        width: 55%;
    }


    .storm-junior-background {
        background-color: #090D1B;
        border-radius: 0px 0px 0px 96px;
        height: 450px;
    }

    .container-70 {
        width: 100%;
        position: relative;
    }
}

/* SMALL LAPTOP */
@media all and (min-width:1025px) and (max-width:1440px) {


    .storms-commitment {
        display: flex;
        flex-direction: row;
        gap: 32px;
    }


    .syc-image-1 {
        position: absolute;
        top: 25%;
        left: 50%;
        transform: translate(-50%, -40%);
        z-index: 1;
        width: 100%;
    }


    .syc-image-2 {
        position: absolute;
        top: 50%;
        left: 15%;
        transform: translate(-50%, -50%);
        z-index: 2;
        width: 75%;
    }

    .syc-image-3 {
        position: absolute;
        top: 80%;
        left: 55%;
        transform: translate(-50%, -50%);
        z-index: 3;
        width: 85%;
    }

    .storm-junior-background {
        background-color: #090D1B;
        border-radius: 0px 0px 0px 150px;
        height: 350px;
    }
}

/* LARGE LAPTOP */
@media all and (min-width:1441px) and (max-width:1880px) {}

/* LARGE LAPTOP */
@media all and (min-width:1881px) and (max-width:1920px) {}

/* 4K SCREEN */
@media all and (min-width:1921px) and (max-width:2560px) {
    .syc-images {
        width: 100%;
        height: 950px;

        position: relative;
    }

    .storm-junior-background {
        background-color: #090D1B;
        border-radius: 0px 0px 0px 150px;
        height: 400px;
    }
}

/* STORM JUNIOR WEB PAGE END */






/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------  */
/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */










/* SYC WEB PAGE  */
.storm-button-container {
    width: fit-content;
    display: flex;
    gap: 8px;
    flex-direction: row !important;
    justify-content: left !important;
    margin-top: 16px;
}


.tile-container {
    width: 100%;
    text-align: left;
    color: #191c1b !important;
}

/* CHARITIES */
.charity-container {
    padding: 0px 192px 96px 192px;
    display: flex;
    flex-direction: row;
    gap: 96px;
}

.charity-container-child {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.charity-info {
    text-align: left !important;
}

/* SUPPORTERS */

.support-container {
    padding: 0px 160px 96px 160px;
    display: flex;
    flex-direction: row;
    gap: 64px;
}

.supporters {
    width: 40%;
}

.offical-scorer {
    width: 60%;
}

.gridS {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
}

.img-wrapperS {
    overflow: hidden;

}

.img-wrapperS>img {
    display: inline-block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    transition: 200ms ease-in-out;

}

.img-wrapperS>a:hover>img.zoom {
    transform: scale(1.1);
    transition: 200ms ease-in-out;
}


/* EVENTS */

.event-container {
    padding: 0px 96px 96px 96px;

}

.full-event-schedule {
    padding: 0px 96px 96px 96px;

}

.calender {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    width: fit-content;
    justify-content: center;
}

.SYC-event {
    width: 400px;
    padding: 32px;
    background: white;
    position: relative;
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.15));
    text-align: left;

}

.SYC-event-info {
    text-align: left !important;
    margin-bottom: 16px;
}


.events {
    display: flex;
    flex-direction: row;
    gap: 32px;
    width: 100%;
}




.event {
    position: relative;
    width: 100%;
    height: auto;

}


.SYC-info {
    position: absolute;
    top: 32px;
    left: 32px;
}



/* SYC OPTIONS */

.syc-options {
    padding: 0px 96px 96px 96px;
    display: flex;
    flex-direction: row;
    gap: 32px;
}

.option {
    padding: 64px;
    background-color: #DCE2F9;

    h1 {
        color: #151B2C !important;
    }

}

.option:hover {
    padding: 64px;
    background-color: #B1C5FF;

    h1 {
        color: #002C70 !important;
    }

}


.option1 {
    width: 100%;
}

.option1>a {
    text-decoration: none !important;
}



.syc-button-color {
    color: #151B2C !important;
    background-color: #DCE2F9;
}

.syc-button:hover {
    color: #002C70 !important;
    background-color: #B1C5FF;
    transition-duration: 0.5s;


}

.small-button {

    font-size: 10px !important;
    padding: 8px 12px !important;
    border-radius: 100px;
    text-decoration: none !important;
}

.view-button {
    margin-top: 20px !important;
    /* Adjust the value as needed */
}

.disabled {
    color: #1B1B1F !important;
    background-color: #DFDDE2 !important;
    border: 2px solid #DFDDE2 !important;
}

.disabled:hover {
    color: #1B1B1F !important;
    background-color: #DFDDE2 !important;
    border: 2px solid #DFDDE2 !important;
}

.champions-container {
    padding: 0px 96px 96px 96px;
}

/* SMALL PHONE */
@media all and (min-width:320px) and (max-width:425px) {

    .syc-button-container {
        display: flex;
        gap: 16px;
        flex-direction: column;
    }

    .charity-container {
        padding: 0px 32px 48px 32px;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .support-container {
        padding: 0px 32px 48px 32px;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .supporters {
        width: 100%;
    }

    .offical-scorer {
        width: 100%;
    }

    .full-event-schedule {
        padding: 0px 32px 48px 32px;
    }

    .SYC-event {
        width: 100%;
        padding: 32px;
        background: white;
        position: relative;
        filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.15));
    }

    .events {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .event-container {
        padding: 0px 32px 48px 32px;
    }

    .champions-container {
        padding: 0px 32px 48px 32px;
    }
}

/* LARGE PHONE - SMALL TABLET */
@media all and (min-width:426px) and (max-width:768px) {

    .charity-container {
        padding: 0px 64px 64px 64px;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .support-container {
        padding: 0px 64px 64px 64px;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .supporters {
        width: 100%;
    }

    .offical-scorer {
        width: 100%;
    }

    .full-event-schedule {
        padding: 0px 64px 64px 64px;
    }

    .SYC-event {
        width: 200px;
        padding: 32px;
        background: white;
        position: relative;
        filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.15));
    }

    .events {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .event-container {
        padding: 0px 64px 64px 64px;
    }

    .champions-container {
        padding: 0px 64px 64px 64px;
    }

}

/* LARGE TABLET*/
@media all and (min-width:769px) and (max-width:1024px) {

    .charity-container {

        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .support-container {

        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .supporters {
        width: 100%;
    }

    .offical-scorer {
        width: 100%;
    }

    .SYC-event {
        width: 200px;
        padding: 32px;
        background: white;
        position: relative;
        filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.15));
    }

    .events {
        display: flex;
        flex-direction: row;
        gap: 32px;
    }

    .event-container {

        overflow: scroll;
    }

}

/* SMALL LAPTOP */
@media all and (min-width:1025px) and (max-width:1440px) {
    .SYC-event {
        width: 200px;
        padding: 32px;
        background: white;
        position: relative;
        filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.15));
    }

    .charity-container {
        padding: 0px 192px 96px 192px;
        display: flex;
        flex-direction: column;
        gap: 96px;
    }
}

/* LARGE LAPTOP */
@media all and (min-width:1441px) and (max-width:2560px) {}

/* 4K SCREEN */
@media all and (min-width:2560px) {}



/* END OF SYC WEB PAGE  */

/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------  */
/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */

/* EVOLUTION WEB PAGE */
.evolution-logo {
    position: absolute;
    width: 500px;
    height: 500px;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media all and (min-width:320px) and (max-width:425px) {
    .evolution-logo {
        position: absolute;
        width: 300px;
        height: 300px;
        z-index: 10;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media all and (min-width:426px) and (max-width:768px) {
    .evolution-logo {
        position: absolute;
        width: 400px;
        height: 400px;
        z-index: 10;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}



/* END EVOLUTION WEB PAGE */
/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------  */
/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */

.find-seek-contest-container {
    height: 500px;
}

.contest-image {}


/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------  */
/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */


/* HELP & SUPPORT */
.size-chart {
    width: 100%;
    border-collapse: collapse;
    font-family: sans-serif;
    text-align: left;
}

.size-chart th {
    background-color: #2c6693;
    /* blue header */
    color: white;
    padding: 10px;
}

.size-chart td {
    padding: 10px;
}

.size-chart tr:nth-child(even) {
    background-color: #f2f2f2;
    /* light gray for striped rows */
}

.size-chart tr:nth-child(odd) {
    background-color: #ddd;
    /* slightly darker gray for contrast */
}


/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------  */
/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */

/* SURFACE GUIDE */


.simple-breakdown {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    color: #fff;
    font-family: sans-serif;
    max-width: 100%;
    overflow-x: auto;
    min-width: 300px;
    /* or whatever your table needs */

}

.simple-breakdown h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.simple-breakdown table {
    width: 100%;
    border-collapse: collapse;
}

.simple-breakdown th,
.simple-breakdown td {
    border-top: 1px solid #444;
    padding: 12px 10px;
    text-align: left;
}

.simple-breakdown thead th {
    font-weight: 600;
    border-bottom: 2px solid #555;
}

.simple-breakdown tbody td strong {
    color: #fff;
    font-weight: bold;
}


/* Optional: better scroll on small screens */
@media (max-width: 768px) {
    .simple-breakdown {
        padding: 16px;
    }

    .simple-breakdown h3 {
        font-size: 1.2rem;
    }

    .simple-breakdown th,
    .simple-breakdown td {
        font-size: 14px;
        padding: 10px 8px;
    }
}

.surface-images {
    width: 60%;
    margin: auto;
}

@media all and (min-width:320px) and (max-width:768px) {
    .surface-images {
        width: 80%;
        margin: auto;
    }
}

.abralon-container {}



.abralon-images {
    position: absolute;
    right: -197px;
    top: -89px;
}

.abralon-images img {
    width: 80%;
}

@media all and (min-width:320px) and (max-width:768px) {
    .grit-image img {
        width: 100%;
    }
}

@media all and (min-width:320px) and (max-width:1024px) {
    .abralon-container {
        height: 100%;
        overflow: hidden;
    }

    .abralon-images {
        display: none;
    }



}

@media all and (min-width:1025px) and (max-width:1440px) {
    .abralon-images {
        position: absolute;
        right: -465px;
        top: -89px;
    }
}

@media all and (min-width:1441px) and (max-width:1880px) {
    .abralon-images {
        position: absolute;
        right: -248px;
        top: -89px;
    }
}

.surface-support {
    margin-top: 96px;
}

.edge-container {
    display: none;
    gap: 48px;
    align-items: center;
    flex-direction: row;
}

@media all and (min-width:320px) and (max-width:1440px) {
    .edge-container {
        display: none;
        gap: 32px;
        align-items: center;
        flex-direction: column;
    }
}

/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------  */
/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */

/* MASTER LANDING PAGE */

.master {

    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/master-brand-page/brand-landing-page-master-background.png") no-repeat center;
    background-size: cover;
    position: relative;


}

.master-logo {
    position: sticky;
}

.master-fans-container {
    width: 100%;
    background-color: #1A1C1E;
    position: relative;

}

.master-fans-sports {
    width: 100%;
    height: 900px;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.master-fans-mlb {
    width: 50%;
    background-color: darkseagreen;
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/master-brand-page/sport-towels/MLB Towels.png") no-repeat center;
    background-size: cover;
    overflow: hidden;
}

.master-fans-nfl {
    width: 50%;
    background-color: darkslateblue;
    background: url("https://stormproducts.nyc3.cdn.digitaloceanspaces.com/web_page_content/master-brand-page/sport-towels/NFL Towels.png") no-repeat center;
    background-size: cover;
    overflow: hidden;

}



@media all and (min-width:320px) and (max-width:425px) {
    .master-fans-sports {
        width: 100%;
        height: 300px;
        display: flex;
        flex-direction: row;
        overflow: hidden;
        gap: 12px;
    }

    .master-fans-container {
        width: 100%;
        height: 500px;
        background-color: #1A1C1E;
        position: relative;
    }
}

/* ----------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------- */

/* POWER EDGE WEB PAGE */

.power-edge-background {
    background-color: white;
    z-index: 1;
}

.power-edge-button {
    position: relative !important;
    z-index: 5 !important;
    margin: auto !important;
    margin-top: 32px !important;
}

.power-edge-expand-section {
    display: none;
    padding: 96px 160px 64px 160px;
}


.power-edge-phaze-ai-container {
    display: flex;
    flex-direction: row;
    margin-bottom: 48px;
}

.power-edge-phaze-ai-info {
    display: flex;
    flex-direction: column;
    margin: auto;
    width: 40%;
    text-align: left;
}

.power-edge-phaze-ai-ball {}


/* HOW POWER EDGE WORKS PINNED SECTION */
.how-power-edge-works {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.how-to-power-edge-container {
    display: flex;
    flex-direction: row;
    gap: 32px;
    width: max-content;
    padding: 0px 64px 96px 64px
}

.how-to-power-edge {
    width: 100vw;
    /* Adjust width to fit fewer items in view at once */
    flex-shrink: 0;
    /* Prevent shrinking */
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.pin-spacer {
    background-color: black;
    width: 100% !important;
}

.abrasive-container {
    padding: 96px 32px;
}

.abrasive-table {
    display: flex;
    flex-direction: row;
    gap: 8px;

    width: 60%;
    margin: auto;
}

.abrasive-chart {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.edge-compare-container {

    width: fit-content;
    margin: auto;
}

.edge-comparison {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
    margin: auto;
    padding:32px;
}

.compare-graph {
    position: relative;
    padding-bottom: 16px;
    width: fit-content;
    margin: auto;
}

.rough-text {
    position: absolute;
    bottom: 0px;
    left: 0px;
    margin-bottom: 0px !important;
    color: #000000 !important;
}

.smooth-text {
    position: absolute;
    bottom: 0px;
    left: 50%;
    /* Center the text horizontally */
    transform: translateX(-50%);
    /* Shift it back by 50% of its width */
    margin-bottom: 0px !important;
    color: #000000 !important;
}

.power-text {
    position: absolute;
    bottom: 0px;
    right: 0px;
    margin-bottom: 0px !important;
    color: #000000 !important;
}

/* EDGE ABRASIVE TABLE */
.edge-table-container {
    margin-top: 48px;
    overflow-x: auto;
    /* Enable horizontal scrolling for small screens */
}

.edge-table {
    width: 100%;
    table-layout: auto;
    margin: auto;
    border-collapse: collapse;
    text-align: center;
}


.edge-table td,
.edge-table th {
    padding: 12px;
    /* Reduced padding for mobile */
    border: 1px solid #000000;
    text-align: center;
}

/* Media query for screens 480px and smaller */
@media (max-width: 480px) {

    .edge-table th,
    .edge-table td {
        display: block;

        text-align: left;
    }

    .edge-table tr {
        display: block;
        margin-bottom: 20px;
    }

    .edge-table td::before {
        content: attr(data-label);
        font-weight: bold;
        display: inline-block;
        margin-right: 10px;
    }

    /* Add horizontal scrolling for smaller screens if needed */
    .edge-table-container {
        overflow-x: auto;
    }
}









/* SMALL PHONE */
@media all and (min-width:320px) and (max-width:425px) {
    .intro-container-2 {
        padding: 48px;

        position: relative;
    }

    .flex-container-row-2 {
        display: flex;
        flex-direction: column-reverse;
        gap: 16px;
        justify-content: center;
    }



    .power-container {
        padding: 32px;
        height: auto;
    }


    .power-edge-expand-section {
        display: none;
        padding: 32px;
    }

    .power-edge-phaze-ai-container {
        display: flex;
        flex-direction: column-reverse;
        margin-bottom: 0px;
    }

    .power-edge-phaze-ai-info {
        display: flex;
        flex-direction: column;
        margin: auto;
        width: auto;
        text-align: left;
        padding: 32px;
        align-items: center;
    }

    .power-edge-phaze-ai-ball {
        display: flex;
        justify-content: flex-end;
    }

    .power-edge-phaze-ai-ball img {
        width: 50%;
    }


    .how-power-edge-works {
        position: relative;
        height: auto;
        overflow: hidden;
    }

    .how-to-power-edge {
        width: 100%;
        flex-shrink: 0;
    }

    .how-to-power-edge-container {
        padding: 0px 32px 48px 32px;
        display: flex;
        flex-direction: column;
        gap: 32px;
        width: auto;
    }

    .abrasive-container {
        padding: 0px;
        margin-top: 48px;
        margin-bottom: 64px;

    }

    .abrasive-table {
        display: flex;
        flex-direction: column;
        gap: 32px;
        width: 100%;
        margin: auto;
    }

    .abrasive-chart {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 16px;
        margin-top: 16px;
    }

    .compare-graph {
        position: relative;
        padding-bottom: 16px;
        width: fit-content;
        height: 100%;
    }

    .edge-compare-container {
        width: 100%;
        margin: auto;
    }

    .edge-comparison {
        display: flex;
        flex-direction: row;
        gap: 16px;
        width: max-content;
        margin: auto;
    }

    .edge-image img {
        width: 100%;
    }

}

/* LARGE PHONE - SMALL TABLET */
@media all and (min-width:426px) and (max-width:768px) {
    .intro-container-2 {
        padding: 48px;
        position: relative;
    }

    .flex-container-row-2 {
        display: flex;
        flex-direction: column-reverse;
        gap: 16px;
        justify-content: center;
    }




    .power-container {
        padding: 48px;
        height: auto;
    }



    .power-edge-expand-section {
        display: none;
        padding: 32px;
    }

    .power-edge-phaze-ai-container {
        display: flex;
        flex-direction: column-reverse;
        margin-bottom: 0px;
    }

    .power-edge-phaze-ai-info {
        display: flex;
        flex-direction: column;
        margin: auto;
        width: auto;
        text-align: left;
        padding: 32px;
        align-items: center;
    }

    .power-edge-phaze-ai-ball {
        display: flex;
        justify-content: flex-end;
    }

    .power-edge-phaze-ai-ball img {
        width: 50%;
    }

    .how-power-edge-works {
        position: relative;
        height: auto;
        overflow: hidden;
    }

    .how-to-power-edge {
        width: 100%;
        flex-shrink: 0;
    }

    .how-to-power-edge-container {
        padding: 0px 64px 64px 64px;
        display: flex;
        flex-direction: column;
        gap: 48px;
        width: auto;
    }

    .edge-compare-container {
        width: 100%;
        margin: auto;
    }

    .edge-comparison {
        display: flex;
        flex-direction: row;
        gap: 16px;
        width: max-content;
        margin: auto;
    }

    .edge-image img {
        width: 100%;
    }

    .compare-graph {
        position: relative;
        padding-bottom: 16px;
        width: fit-content;
        height: 100%;
    }

    .abrasive-container {
        padding: 0px;
        margin-top: 48px;
        margin-bottom: 64px;

    }

    .abrasive-table {
        display: flex;
        flex-direction: column;
        gap: 32px;
        width: 100%;
        margin: auto;
    }

    .abrasive-chart {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 16px;
        margin-top: 16px;
    }
}

/* LARGE TABLET*/
@media all and (min-width:769px) and (max-width:1024px) {

    .intro-container-2 {
        padding: 64px;
        position: relative;
    }

    .power-edge-phaze-ai-container {
        display: flex;
        flex-direction: row;
    }

    .power-edge-phaze-ai-info {
        display: flex;
        flex-direction: column;
        margin: auto;
        width: 100%;
        text-align: left;
        padding: 48px;

    }

    .power-edge-phaze-ai-ball {
        display: flex;
        justify-content: flex-end;
    }

    .power-edge-phaze-ai-ball img {
        width: 100%;
    }

    .power-edge-expand-section {
        display: none;
        padding: 96px 64px 64px 64px;
    }

    .power-edge-expand-section {
        display: none;
        padding: 96px 64px 64px 64px;
    }

    .abrasive-table {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 60%;
        margin: auto;
    }

    .abrasive-chart {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 16px;
        margin-top: 16px;
    }

    .edge-compare-container {
        width: 100%;
        margin: auto;
    }

}

/* SMALL LAPTOP */
@media all and (min-width:1025px) and (max-width:1440px) {

    .power-edge-phaze-ai-container {
        display: flex;
        flex-direction: row;
    }

    .power-edge-phaze-ai-ball {
        display: flex;
        justify-content: flex-end;
        width: 50%;
    }

    .power-edge-phaze-ai-ball img {
        width: 100%;
    }

    .power-edge-phaze-ai-info {
        display: flex;
        flex-direction: column;
        margin: auto;
        width: 30%;
        text-align: left;
    }


}

/* LARGE LAPTOP */
@media all and (min-width:1441px) and (max-width:2560px) {}

/* 4K SCREEN */
@media all and (min-width:2560px) {}


/* POWER EDGE BOTTLE RESPONSIVE DESIGN */

@media all and (min-width:320px) and (max-width:425px) {
    .power-container {
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        gap: 16px;
        justify-content: center;
        padding: 48px;
    }

    .power-edge-bottle {
        position: absolute;
        top: 189px;
        right: -32px;
        transform: rotate(-26.476deg);
        z-index: 0;
        width: 70%;
    }


}

@media all and (min-width:426px) and (max-width:768px) {

    .power-container {
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        gap: 16px;
        justify-content: center;
        padding: 48px;
    }

    .power-edge-bottle {
        position: absolute;
        top: 117px;
        right: -32px;
        transform: rotate(-26.476deg);
        z-index: 0;
        width: 300px;

    }


}

@media all and (min-width:769px) and (max-width:1024px) {
    .power-container {
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        gap: 16px;
        justify-content: center;
        padding: 48px;
    }

    .power-edge-bottle {
        position: absolute;
        top: 52px;
        right: -87px;
        transform: rotate(-26.476deg);
        z-index: 0;
        width: 350px;

    }


}

@media all and (min-width:1025px) and (max-width:1440px) {
    .power-container {
        height: 1050px;
        display: flex;
        flex-direction: row;
        gap: 16px;
        justify-content: center;
    }

    .power-edge-bottle {
        position: absolute;
        top: 0px;
        right: -32px;
        transform: rotate(-26.476deg);
        z-index: 0;
        width: 400px;
    }



}

@media all and (min-width:1441px) and (max-width:1920px) {
    .power-container {
        height: 1050px;
        display: flex;
        flex-direction: row;
        gap: 16px;
        justify-content: center;
    }

    .power-edge-bottle {
        position: absolute;
        top: 0px;
        right: 10%;
        transform: rotate(-26.476deg);
        z-index: 0;
        width: 400px;
    }


}

@media all and (min-width:1921px) {

    .intro-container-2 {
        padding: 256px;
        position: relative;
    }

    .power-container {
        height: 1200px;
        display: flex;
        flex-direction: row;
        gap: 16px;
        justify-content: center;
    }

    .power-edge-bottle {
        position: absolute;
        top: 0%;
        right: 96px;
        transform: rotate(-26.476deg);
        z-index: 0;
        width: 400px;

    }
}


/* END POWER EDGE WEB PAGE */


</style>