/*
Theme Name: SEA
Author: Ed Austin
Author URI: edaustin.co.uk
Description: Custom theme for sales excellence advisors
Version: 1.0
*/

/* General rules */
:root {
    --blue: #005454;
    --highlight: #FF90C1;
    --body: 1.5vw;
    --headerText: clamp(8pt, 2vw, 1rem);
    --blueType: 2vw;
    --hover: clamp(8pt, 2vw, 2rem);
    --smallTitle: 2.65vw;
    --blockQuote: 3vw;
    --subtitle: 6.35vw;
    --title: 7vw;
    --left-right: 16vw;
    --nav: 1vw;
    --overlay: 1.25vw;
}

body {
    /* max-width: 1512px; */
    margin: auto;
    overflow-x: hidden;
}

p,
span {
    font-family: "Urbanist", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: var(--body);
    line-height: 160%;
    color: white;
}

a {
    font-family: "Urbanist", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: var(--nav);
    line-height: 160%;
    color: white;
}

blockquote {
    font-family: "Calistoga", serif;
    font-weight: 200;
    font-style: normal;
    font-size: var(--blockQuote);
}

h1 {
    font-family: "Calistoga", serif;
    font-weight: 200;
    font-style: normal;
    font-size: var(--title);
}

h2 {
    font-family: "Calistoga", serif;
    font-weight: 200;
    font-style: normal;
    font-size: var(--subtitle);
}

h3 {
    font-family: "Calistoga", serif;
    font-weight: 200;
    font-style: normal;
}

a {
    text-decoration: none;
    color: white;
}

li {
    list-style: none;
}


/*--------------------------------
Backgrounds
--------------------------------*/

/* black-green */
.homeMain,
.partnershipMain,
.consultMain {
    padding-top: 20vw;
    padding-bottom: 5vw;
    width: 100vw;
    min-height: 65vh;
    background: rgb(22, 22, 22);
    background: var(--DARK-dark-to-light-gradient, linear-gradient(180deg, #161616 40.07%, #008480 92.19%));
}

/* green-dark green */
.assetsMain,
.newsMain,
.storyMain,
.aboutMain,
.salesMain,
.eventMain,
.cookieMain {
    padding-top: 20vw;
    padding-bottom: 5vw;
    width: 100vw;
    min-height: 65vh;
    background: rgb(22, 22, 22);
    background: var(--DARK-light-to-dark-gradient, linear-gradient(180deg, #48F0EB 0%, #007774 87%));
}

/* green-black */
.contactMain {
    padding-top: 20vw;
    padding-bottom: 5vw;
    width: 100vw;
    min-height: 65vh;
    background: rgb(22, 22, 22);
    background: linear-gradient(180deg, #008480 0%, #161616 52.13%);
}


/*--------------------------------
Splash screen 
--------------------------------*/
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease;
}

.splash-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*--------------------------------
Header 
--------------------------------*/
.header-hidden {
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.sea-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-wrap: wrap;
    padding: 3.5vw;
    padding-bottom: 0;

    .sea-header-logo {
        width: 12vw;

        #Layer_2 {
            fill: black;
            height: 10vw;
        }

        #Layer_2 .cls-1 {
            fill: black;
        }
    }

    .mobile-menu-overlay,
    .menu-toggle {
        display: none;
    }

    .sea-header-nav {
        width: 79vw;

        .navWrap {
            display: flex;
            flex-wrap: wrap;
            justify-content: end;
            margin-top: 0;

            .navItem {
                margin-right: 3%;
                width: 15%;
                padding: 1%;
                border-radius: 10px;

                a {
                    color: black;
                }

                &:hover {
                    a {
                        color: var(--highlight);
                    }
                }
            }

            .about {
                width: 10%;
            }

            .drop:hover {
                background-color: #F8FFFD;
                border-radius: 10px;
                background: rgba(248, 255, 253, 0.75);
                box-shadow: 0px 232px 65px 0px rgba(0, 84, 84, 0.00), 0px 149px 59px 0px rgba(0, 84, 84, 0.01), 0px 84px 50px 0px rgba(0, 84, 84, 0.05), 0px 37px 37px 0px rgba(0, 84, 84, 0.09), 0px 9px 20px 0px rgba(0, 84, 84, 0.10);

                .head {
                    color: var(--highlight);
                }

                a {
                    color: black;

                    &:hover {
                        color: var(--highlight);
                    }
                }

                li {
                    display: block;
                }
            }

            ul {
                padding: 0;

                li {
                    display: none;
                }
            }
        }

        .contact {
            padding: 1% 3%;
            border-radius: 10px;
            border: solid 1px black;
            max-height: 1.5vw;

            a {
                color: black;
            }

            /* &:hover {
                a {
                    color: var(--highlight);
                }
            } */
        }
    }

    /* Pages with different color schemes */
    body.page-id-110 &,
    body.page-id-343 &,
    body.page-id-108 &,
    body.page-id-337 & {
        #Layer_2 {
            fill: white !important;
        }

        .cls-1 {
            fill: white !important;
        }

        .contact {
            border: solid 1px white !important;

            a {
                color: white !important;
            }
        }

        .navItem {
            a {
                color: white !important;
            }

            a:hover {
                color: var(--highlight) !important;
            }
        }

        .drop:hover {
            a {
                color: black !important;
            }

            a:hover {
                color: var(--highlight) !important;
            }
        }

        /* Black Hamburger Menu */
        @media (max-width: 768px) {
            .menu-toggle span {
                background-color: white !important;
            }

            #Layer_2 .cls-1 {
                fill: white !important;
            }
        }
    }

}

/*--------------------------------
Home
--------------------------------*/
.homeMain {
    max-width: 100vw;
    padding-bottom: 6vw;

    .one {
        max-width: 100vw;
        /* margin-top: 8vw; */

        img {
            width: 100%;
        }

        .openerText {
            max-width: 68vw;
            margin: 0 var(--left-right);

            h1 {
                background: linear-gradient(90deg, #ACACAC 0%, #FFF 15.97%, #C5C1C1 37%, #FFF 65%, #ACACAC 100%);
                background-clip: text;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                margin-bottom: 1vw;
                font-size: 5.7vw;
            }

            p {
                font-size: var(--smallTitle);
                text-align: center;
                margin-bottom: 10vw;
                color: white;
            }
        }
    }

    .two {
        max-width: 68vw;
        margin: 0 var(--left-right);

        .video video {
            width: 100%;
            height: auto;
            display: block;
            margin-bottom: 10vw;
            border-radius: 20px;
        }


        .cardSection {
            h2 {
                margin-top: 0;
                margin-bottom: 5vw;
                color: white;
            }

            .buttonWrapper {
                width: 100%;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                align-items: center;

                a {
                    margin: 10px;
                    padding: 10px;
                    border-radius: 10px;
                    background-color: aliceblue;
                    border: solid 1px black;
                }
            }

            .cards {
                display: flex;
                justify-content: space-between;
                gap: 20px;
                margin-bottom: 50px;

                .card {
                    position: relative;
                    width: 30%;
                    overflow: hidden;
                    border-radius: 15px;
                    transition: background-color 0.3s ease-in-out;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        transition: opacity 0.3s ease-in-out;
                        border-radius: inherit;
                    }

                    .overlay {
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background-color: var(--highlight);
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        opacity: 0;
                        transition: opacity 0.3s ease-in-out;
                        z-index: 1;
                        border-radius: inherit;

                        p {
                            color: white;
                            font-size: 1.5rem;
                            text-align: center;
                            padding: 20px;
                            margin: auto;
                        }
                    }

                    &:hover {
                        img {
                            opacity: 0;
                        }

                        .overlay {
                            opacity: 1;
                        }
                    }
                }
            }

            .cardBody {
                margin-top: 10vh;
                display: flex;
                flex-wrap: wrap;

                .left {
                    width: 45%;
                    margin-right: 10%;
                }

                .right {
                    width: 45%;
                }

                .subheading {
                    font-family: "Calistoga", serif;
                    font-size: var(--smallTitle);
                }

            }
        }

        .events {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            /* 3 events per row */
            gap: 20px;
            /* Space between the events */
        }

        .event-card {
            position: relative;
            width: 100%;
            padding-bottom: 100%;
            /* Maintain square aspect ratio */
            overflow: hidden;
            border-radius: 15px;
            text-decoration: none;
            /* Remove underline from link */
        }

        .event-card img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
            transition: transform 0.3s ease;
        }

        .event-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 26, 97, 0);
            /* Transparent by default */
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease, background-color 0.3s ease;
            border-radius: 15px;
        }

        .event-overlay h3 {
            color: var(--highlight);
            font-size: 1.5rem;
            line-height: 120%;
            text-align: center;
            margin: 0;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        /* Hover Effects */
        .event-card:hover img {
            transform: scale(1.05);
            /* Slight zoom on hover */
        }

        .event-card:hover .event-overlay {
            background-color: rgba(0, 0, 0, 0.5);
            /* Solid color on hover */
            opacity: 1;
        }

        .event-card:hover .event-overlay h3 {
            opacity: 1;
            /* Fade in the title */
        }

    }
}

/*--------------------------------
Event page
--------------------------------*/
.eventWrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 var(--left-right) 15vw var(--left-right);
}

.eventWrapper .event-title {
    text-align: left;
    width: 100%;
    background: var(--Light-Text-gradient, linear-gradient(90deg, #003B3B 0%, #026461 10.5%, #003B3B 24%, #026461 56.5%, #003B3B 89.5%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eventWrapper .event-image {
    width: 100%;
}

.eventWrapper .event-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    margin: auto;
    border-radius: 20px;
}

.eventWrapper .related-events {
    width: 100%;
}

.eventWrapper .related-events h2 {
    background: var(--Light-Text-gradient, linear-gradient(90deg, #003B3B 0%, #026461 10.5%, #003B3B 24%, #026461 56.5%, #003B3B 89.5%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eventWrapper .partnersCarousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: auto;
}

.eventWrapper .carouselTrack {
    display: flex;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
    white-space: nowrap;
}

.eventWrapper .partnerCard {
    position: relative;
    flex-shrink: 0;
    width: 20.65vw;
    height: auto;
    margin: 0 1vw;
    transition: transform 0.3s ease-in-out;
    text-decoration: none;
    color: inherit;
    border-radius: 15px;
    overflow: hidden;
}

.eventWrapper .partnerCard img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    display: block;
    object-fit: cover;
}

.eventWrapper .event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(255, 26, 97, 0);
    opacity: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    border-radius: 15px;
}

.eventWrapper .event-overlay h3 {
    color: var(--highlight);
    font-size: 1.5rem;
    margin: 0;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: break-word;
    line-height: 120%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.eventWrapper .partnerCard:hover .event-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.eventWrapper .partnerCard:hover .event-overlay h3 {
    opacity: 1;
}

/* Carousel navigation buttons */
button.carouselPrev,
button.carouselNext {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
    display: none;
}

button.carouselPrev:hover,
button.carouselNext:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carouselPrev {
    left: 0;
}

.carouselNext {
    right: 0;
}

.eventWrapper .partnerCard.center {
    transform: scale(1.1);
    z-index: 1;
}

.eventWrapper .contactWrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 var(--left-right);
}

.eventWrapper .contactForm {
    width: 83vw;
    margin-bottom: 8vw;
}

.eventWrapper .contactForm h1 {
    margin-bottom: 20px;
    background: linear-gradient(to right, #188281 0%, #30D1CC 50%, #0A8B87 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eventWrapper .contactForm form {
    display: flex;
}

.eventWrapper .contactForm .left {
    width: 30vw;
    height: 15vw;
    margin-right: 5vw;
}

.eventWrapper .contactForm .left p {
    margin-bottom: 1.85vw;
}

.eventWrapper .contactForm .right {
    width: 48vw;
    height: 15vw;
}

.eventWrapper .contactForm .right p {
    margin-bottom: 0;
}

.eventWrapper .contactForm input[type="text"],
.eventWrapper .contactForm input[type="email"] {
    width: 30vw;
    padding: 1vw;
    height: 1vw;
    background-color: #f7f7f7;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: var(--body);
}

.eventWrapper .contactForm textarea {
    width: 48vw;
    background-color: #f7f7f7;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: var(--body);
    height: 12.9vw;
    padding: 0;
}

.eventWrapper .contactForm .submit {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    margin-top: 2vw;
}

.form-success-message{
    text-align: center;
}

.eventWrapper .contactForm input[type="submit"] {
    padding: 0.8vw 1.2vw;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, 0);
    color: white;
    border: solid 1px white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.eventWrapper .contactWrapper .contactInfo {
    margin-top: 2vw;
    flex-basis: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eventWrapper .contactWrapper .contactInfo p {
    margin: 0;
}

/* Button & Form Toggle Styling */
.eventWrapper .contactButtonWrapper {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.eventWrapper .open-contact-form {
    margin-top: 5vw;
    padding: 1vw 2vw;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, 0);
    color: white;
    border: solid 1px white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hide the form initially */
.eventWrapper .hidden-form {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Show the form when active */
.eventWrapper .contactForm.active {
    display: block;
    opacity: 1;
}


/*--------------------------------
About
--------------------------------*/
.aboutWrapper {
    h1 {
        background: #161616;
        background: linear-gradient(to right, #161616 0%, #008480 54%, #161616 94%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .opener {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 var(--left-right) 15vw var(--left-right);

        .openerContent {
            max-width: 100%;
            display: flex;
            flex-wrap: wrap;

            h1 {
                width: 100%;
                font-size: var(--title);
                margin-top: 0;
                margin-bottom: 5vw;
                background: #161616;
                background: linear-gradient(to right, #161616 0%, #008480 54%, #161616 94%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

            img,
            video {
                width: 100%;
                aspect-ratio: 16/9;
                height: auto;
                object-fit: cover;
                margin-bottom: 3vw;
                border-radius: 25px;
                -webkit-box-shadow: -11px 11px 40px -4px rgba(255, 87, 137, 0.5);
                box-shadow: -11px 11px 40px -4px rgba(255, 87, 137, 0.5);
            }

            .openerBody {
                width: 100;

                p {
                    color: white;
                }

                .openerBlue p {
                    color: white;
                    font-size: var(--blueType);
                    font-weight: bold;
                }
            }

            a {
                margin: 10px;
                padding: 10px;
                border-radius: 10px;
                background-color: aliceblue;
                border: solid 1px black;
            }
        }
    }

    .leadership {
        margin: 0 var(--left-right) 15vw var(--left-right);

        .wrap {
            display: flex;
            flex-wrap: wrap;

            .leader {
                width: 100%;
                display: flex;
                flex-wrap: wrap;
                margin-bottom: 5vw;

                .left {
                    width: 30%;

                    img {
                        max-width: 100%;
                        width: 100%;
                        aspect-ratio: 1/1;
                        object-fit: cover;
                        border-radius: 1000px;
                    }
                }

                .right {
                    width: 60%;
                    padding-left: 10%;

                    h3 {
                        font-size: var(--blockQuote);
                        margin-bottom: 0;
                        color: white;
                    }

                    p {
                        font-size: var(--body);
                    }

                    .job {
                        font-size: var(--smallTitle);
                        color: white;
                        margin: 0;
                    }
                }
            }
        }
    }

    .team {
        margin: 0 var(--left-right) 15vw var(--left-right);

        .wrap {
            display: grid;
            grid-template-columns: repeat(3, 30%);
            gap: 5%;

            .team-member {
                position: relative;
                text-align: center;
            }

            .team-member .image-container {
                position: relative;
                overflow: hidden;
                border-radius: 1000px;
                /* Keeps the image circular */
            }

            .team-member img {
                width: 100%;
                aspect-ratio: 1/1;
                object-fit: cover;
                display: block;
                transition: transform 0.3s ease-in-out;
                border-radius: 1000px;
            }

            .team-member .overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5);
                color: white;
                display: flex;
                justify-content: center;
                align-items: center;
                opacity: 0;
                transition: opacity 0.3s ease-in-out;
                border-radius: 1000px;
                font-size: var(--smallTitle);

                .title {
                    color: var(--highlight);
                    font-family: "Calistoga", serif;
                }
            }

            .team-member:hover .overlay {
                opacity: 1;
            }

            .team-member:hover img {
                transform: scale(1.05);
                /* Slight zoom effect */
            }

            .team-member h3 {
                margin-top: 1rem;
                font-size: var(--smallTitle);
                color: white;
                /* Adjust based on your theme */
            }
        }
    }

    .network {
        margin: 0 var(--left-right) 15vw var(--left-right);

        h1 {
            background: var(--Light-Text-gradient, linear-gradient(90deg, #003B3B 0%, #026461 10.5%, #003B3B 24%, #026461 56.5%, #003B3B 89.5%));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .wrap {
            display: grid;
            grid-template-columns: repeat(3, 30%);
            gap: 5%;
            margin-top: 10vw;

            h3 {
                font-size: var(--smallTitle);
                text-align: center;
                color: white;
            }

            .bold {
                font-size: var(--blueType);
            }

            img {
                width: 100%;
                aspect-ratio: 1/1;
                object-fit: cover;
                border-radius: 1000px;
            }
        }

    }

    .aboutSlider {
        padding-bottom: 10vh;
    }

    .sliderWrapper {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        padding: 20px;
        border-radius: 10px;
        background-color: white;
        -webkit-box-shadow: 11px 11px 40px -4px rgba(255, 87, 137, 0.5);
        box-shadow: 11px 11px 40px -4px rgba(255, 87, 137, 0.5);
    }

    .aboutSliderContent {
        position: relative;
        overflow: hidden;
    }

    .slide {
        display: none;
        font-size: 1.2rem;
        line-height: 1.5;
        color: #333;
        padding: 20px;

        p {
            font-size: var(--smallTitle);
            font-family: "Calistoga", serif;
            font-weight: 200;
            font-style: normal;
            color: #FF90C1;
        }
    }

    .slide.active {
        display: block;
    }

    .slider-controls {
        text-align: center;
        margin-top: 10px;
    }

    .dot {
        height: 10px;
        width: 10px;
        margin: 0 5px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        cursor: pointer;
    }

    .dot.active {
        background-color: #333;
    }
}

/*--------------------------------
Partnerships
--------------------------------*/
.partnershipWrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 var(--left-right) 15vw var(--left-right);

    .secondSectionContent {
        width: 100%;

        h2 {
            background: linear-gradient(90deg, #ACACAC 0%, #FFF 15.97%, #C5C1C1 37%, #FFF 65%, #ACACAC 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-top: 0;
        }

        .subtitle {
            font-weight: bold;
        }

        .partnersCarousel {
            position: relative;
            width: 100%;
            overflow: hidden;
            /* max-width: 900px; */
            margin: 5vw auto;

        }

        .carouselTrack {
            display: flex;
            transition: transform 0.4s ease-in-out;
            will-change: transform;
            white-space: nowrap;
        }

        .partnerCard {
            flex-shrink: 0;
            width: 20.65vw;
            height: auto;
            margin: 0 1vw;
            transition: transform 0.3s ease-in-out;
        }

        .partnerCard img {
            width: 100%;
            height: auto;
            border-radius: 15px;
        }

        button.carouselPrev,
        button.carouselNext {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            font-size: 24px;
            z-index: 10;
            display: none;
        }

        button.carouselPrev:hover,
        button.carouselNext:hover {
            background-color: rgba(0, 0, 0, 0.8);
        }

        .carouselPrev {
            left: 0;
        }

        .carouselNext {
            right: 0;
        }

    }

    .seconSectionBottom {

        display: grid;
        grid-template-columns: repeat(2, 45%);
        gap: 10%;

        .partnerLeftTitle,
        .partnerRightTitle {
            font-size: var(--smallTitle);
            font-family: "Calistoga", serif;
            color: white;
        }

        p {
            font-size: var(--body);
        }
    }
}

/*--------------------------------
Sales & Marketing
--------------------------------*/
.salesWrapper {

    .sales_intro {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 var(--left-right) 15vw var(--left-right);

        h1 {
            width: 100%;
            margin: 0;
            background: #161616;
            background: linear-gradient(to right, #161616 0%, #005454 54%, #161616 94%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 5vw;
        }

        p {
            color: #ffffff;
            font-size: var(--blueType);
            width: 100%;
            margin: 0;
        }
    }

    .sales_section_one,
    .sales_section_three {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 var(--left-right) 15vw var(--left-right);

        .content {
            width: 40%;
            margin-right: 5%;
            order: 1;

            h2 {
                font-size: var(--smallTitle);
                margin-top: 0;
                color: white;
            }

            p {
                color: white;
            }

        }

        img {
            width: 55%;
            height: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            border-radius: 25px;
            -webkit-box-shadow: 11px 11px 40px -4px rgba(255, 87, 137, 0.5);
            box-shadow: 236px 281px 103px 0px rgba(248, 171, 205, 0.01), 151px 180px 94px 0px rgba(248, 171, 205, 0.04), 85px 101px 79px 0px rgba(248, 171, 205, 0.15), 38px 45px 59px 0px rgba(248, 171, 205, 0.26), 9px 11px 32px 0px rgba(248, 171, 205, 0.29);
            order: 2;
        }
    }

    .sales_section_two,
    .sales_section_four {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 var(--left-right) 15vw var(--left-right);

        .content {
            width: 40%;
            margin-left: 5%;
            order: 2;

            p {
                color: white;
            }

            h2 {
                font-size: var(--smallTitle);
                margin-top: 0;
                color: white;
            }
        }

        img {
            width: 55%;
            height: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            border-radius: 25px;
            -webkit-box-shadow: -11px 11px 40px -4px rgba(255, 87, 137, 0.5);
            box-shadow: 236px 281px 103px 0px rgba(248, 171, 205, 0.01), 151px 180px 94px 0px rgba(248, 171, 205, 0.04), 85px 101px 79px 0px rgba(248, 171, 205, 0.15), 38px 45px 59px 0px rgba(248, 171, 205, 0.26), 9px 11px 32px 0px rgba(248, 171, 205, 0.29);
            order: 1;
        }
    }

    .sales_section_one,
    .sales_section_two {
        p {
            color: #F8FFFD;
        }
    }

    .quote {
        margin: 0 var(--left-right) 15vw var(--left-right);

        blockquote {
            padding: 3vw;
            text-align: center;
            border-radius: 25px;
            background: #F8FFFD;
            box-shadow: 236px 281px 103px 0px rgba(248, 171, 205, 0.01), 151px 180px 94px 0px rgba(248, 171, 205, 0.04), 85px 101px 79px 0px rgba(248, 171, 205, 0.15), 38px 45px 59px 0px rgba(248, 171, 205, 0.26), 9px 11px 32px 0px rgba(248, 171, 205, 0.29);

            p {
                color: #FF90C1;
                font-family: "Calistoga", serif;
                font-size: var(--smallTitle);
            }

        }
    }
}

/*--------------------------------
Consultancy services
--------------------------------*/
.consultancyWrapper {
    width: 68vw;
    margin: 0 var(--left-right);

    .opener {
        h1 {
            margin: 0;
            margin-bottom: 5vw;
            color: white;
        }

        p {
            font-size: var(--blueType);
        }

        video {
            border-radius: 25px;
            width: 100%;
            margin: 7.5vw 0 10vw 0;
            box-shadow: 236px 281px 103px 0px rgba(248, 171, 205, 0.01), 151px 180px 94px 0px rgba(248, 171, 205, 0.04), 85px 101px 79px 0px rgba(248, 171, 205, 0.15), 38px 45px 59px 0px rgba(248, 171, 205, 0.26), 9px 11px 32px 0px rgba(248, 171, 205, 0.29);
        }
    }

    .service-card {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        margin-bottom: 10vw;
        box-shadow: 236px 281px 103px 0px rgba(248, 171, 205, 0.01), 151px 180px 94px 0px rgba(248, 171, 205, 0.04), 85px 101px 79px 0px rgba(248, 171, 205, 0.15), 38px 45px 59px 0px rgba(248, 171, 205, 0.26), 9px 11px 32px 0px rgba(248, 171, 205, 0.29);
    }

    .service-card img {
        width: 100%;
        display: block;
        max-height: 40vw;
        object-fit: cover;
    }

    .service-overlay {
        position: absolute;
        top: 85%;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: white;
        color: white;
        display: flex;
        flex-direction: column;
        padding: 1.5vw 2vw;
        box-sizing: border-box;
        transition: top 0.5s ease;
        border-radius: 15px;
    }

    .service-card.expanded .service-overlay {
        top: 0;
    }

    .service-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 1.5vw;
        align-items: center;
        font-family: "Calistoga", serif;
        background: linear-gradient(90deg, #161616 0%, #008480 54%, #161616 97.5%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .service-title {
        font-size: 2rem;
        transition: font-size 0.3s ease;
        margin: 0;
    }

    .service-card.expanded .service-title {
        font-size: 3.5rem;
        transition: font-size 0.3s ease;
    }


    .service-toggle {
        background: transparent;
        border: none;
        cursor: pointer;
        transition: transform 0.5s ease;
        background-color: #002625;
        border-radius: 300px;
        padding: 8px 10px;
    }

    .service-toggle svg {
        width: 1vw;
        height: 1vw;
    }

    .service-card.expanded .service-toggle {
        transform: rotate(180deg);
    }

    .service-content {
        display: flex;
        margin-top: 3vw;

        .bold-text {
            width: 33%;
            padding-right: 7%;

            p {
                font-size: 2.3vw !important;
                line-height: 110%;
                color: #005454;
                margin-top: 1vw;
                font-weight: bold;
            }
        }

        .body-text {
            width: 60%;

            p {
                font-size: var(--overlay) !important;
                color: black;
                margin-top: 1vw;
            }
        }
    }
}

/*--------------------------------
News
--------------------------------*/
.newsWrapper {
    margin: 0 var(--left-right);
    width: 68vw;

    h1 {
        margin-top: 0;
        background: #1C8383;
        background: var(--Light-Text-gradient, linear-gradient(90deg, #003B3B 0%, #026461 10.5%, #003B3B 24%, #026461 56.5%, #003B3B 89.5%));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .one {
        display: grid;
        grid-template-columns: repeat(2, 45%);
        gap: 10%;
        row-gap: 5%;
        width: 100%;
        height: 105%;

        .story {
            h2 {
                margin: 1vw 0 0 0;
                font-size: var(--smallTitle);
                line-height: 110%;
                background: var(--Light-Text-gradient, linear-gradient(90deg, #003B3B 0%, #026461 10.5%, #003B3B 24%, #026461 56.5%, #003B3B 89.5%));
                background-clip: text;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                position: relative;
                z-index: 5;
            }

            img {
                width: 100%;
                aspect-ratio: 3/4;
                object-fit: cover;
                border-radius: 25px;
                border-radius: 25px;
                background: #D9D9D9;
                box-shadow: 130px 155px 57px 0px rgba(248, 171, 205, 0.01), 83px 99px 52px 0px rgba(248, 171, 205, 0.04), 47px 56px 44px 0px rgba(248, 171, 205, 0.15), 21px 25px 32px 0px rgba(248, 171, 205, 0.26), 5px 6px 18px 0px rgba(248, 171, 205, 0.29);
            }
        }
    }

    .two {
        max-width: 83vw;
        padding-top: 10vw;

        .cardSection {
            h2 {
                margin-top: 0;
                margin-bottom: 5vw;
                background: var(--Light-Text-gradient, linear-gradient(90deg, #003B3B 0%, #026461 10.5%, #003B3B 24%, #026461 56.5%, #003B3B 89.5%));
                background-clip: text;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

            .buttonWrapper {
                width: 100%;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                align-items: center;

                a {
                    margin: 10px;
                    padding: 10px;
                    border-radius: 10px;
                    background-color: aliceblue;
                    border: solid 1px black;
                }
            }

            .cards {
                display: flex;
                justify-content: space-between;
                gap: 20px;
                margin-bottom: 50px;

                .card {
                    position: relative;
                    width: 30%;
                    overflow: hidden;
                    border-radius: 15px;
                    transition: background-color 0.3s ease-in-out;

                    img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        transition: opacity 0.3s ease-in-out;
                        border-radius: inherit;
                    }

                    .overlay {
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background-color: var(--highlight);
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        opacity: 0;
                        transition: opacity 0.3s ease-in-out;
                        z-index: 1;
                        border-radius: inherit;

                        p {
                            color: white;
                            font-size: 1.5rem;
                            text-align: center;
                            padding: 20px;
                            margin: auto;
                        }
                    }

                    &:hover {
                        img {
                            opacity: 0;
                        }

                        .overlay {
                            opacity: 1;
                        }
                    }
                }
            }

            .cardBody {
                margin-top: 10vh;
                display: flex;
                flex-wrap: wrap;

                .left {
                    width: 45%;
                    margin-right: 10%;
                }

                .right {
                    width: 45%;
                }

                .subheading {
                    font-family: "Calistoga", serif;
                    font-size: var(--smallTitle);
                }

            }
        }

        .events {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            /* 3 events per row */
            gap: 20px;
            /* Space between the events */
        }

        .event-card {
            position: relative;
            width: 100%;
            padding-bottom: 100%;
            /* Maintain square aspect ratio */
            overflow: hidden;
            border-radius: 15px;
            text-decoration: none;
            /* Remove underline from link */
        }

        .event-card img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
            transition: transform 0.3s ease;
        }

        .event-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 26, 97, 0);
            /* Transparent by default */
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease, background-color 0.3s ease;
            border-radius: 15px;
        }

        .event-overlay h3 {
            color: var(--highlight);
            font-size: 1.5rem;
            text-align: center;
            margin: 0;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        /* Hover Effects */
        .event-card:hover img {
            transform: scale(1.05);
            /* Slight zoom on hover */
        }

        .event-card:hover .event-overlay {
            background-color: rgba(0, 0, 0, 0.5);
            /* Solid color on hover */
            opacity: 1;
        }

        .event-card:hover .event-overlay h3 {
            opacity: 1;
            /* Fade in the title */
        }

    }
}

/*--------------------------------
Story
--------------------------------*/
.storyWrapper {

    margin: 0 var(--left-right);

    .free {


        .featured-image {
            img {
                border-radius: 25px;
                width: 100%;
                margin-bottom: 5%;
                aspect-ratio: 4/3;
                object-fit: cover;
                max-height: 40vw;
            }
        }

        p {
            font-weight: bold;
            font-size: var(--body)
        }

        h2 {
            margin: 0;
            font-size: var(--blockQuote);
            margin-bottom: 2%;
            background: var(--Light-Text-gradient, linear-gradient(90deg, #003B3B 0%, #026461 10.5%, #003B3B 24%, #026461 56.5%, #003B3B 89.5%));
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
    }

    #emailSection {
        margin: 10vw 0;
    }

    #emailForm {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;

        label {
            font-family: "Urbanist", sans-serif;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
            font-size: var(--body);
            line-height: 160%;
            color: white;
            width: 100%;
            text-align: center;
            padding-bottom: 2%;
        }

        input {
            font-family: "Urbanist", sans-serif;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
            font-size: var(--body);
            line-height: 160%;
            margin-right: 2%;
            padding-right: 10%;
        }

        button {
            font-family: "Urbanist", sans-serif;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
            font-size: var(--body);
            line-height: 160%;
        }
    }

    .gated {
        margin-top: 2%;
        display: flex;
        flex-wrap: wrap;
        padding-bottom: 15vh;
        min-height: 30vh;
    }
}

/*--------------------------------
Assets
--------------------------------*/
.assetsWrapper {
    margin: 0 var(--left-right);

    h1 {
        margin-top: 0;
        background: var(--Light-Text-gradient, linear-gradient(90deg, #003B3B 0%, #026461 10.5%, #003B3B 24%, #026461 56.5%, #003B3B 89.5%));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .assets {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3.3%;
        padding-bottom: 15vh;

        .asset,
        .story {
            width: 100%;
            background-color: #F8FFFD;
            ;
            padding: 20px;
            box-sizing: border-box;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

            img {
                width: 100%;
                height: auto;
                display: block;
                aspect-ratio: 1/1;
                object-fit: cover;
            }

            .assetTitle,
            .newsTitle {
                font-family: "Calistoga", serif;
            }

            p {
                color: black;
                font-size: var(--overlay);
            }
        }
    }
}

/*--------------------------------
Contact
--------------------------------*/
.contactMain {
    padding-top: 10vw;
    padding-bottom: 0;

    .contactWrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;


        .image img {
            width: 100vw;
            margin-top: 10vw;
        }

        .contactForm {
            width: 68vw;
            margin: 0 var(--left-right);

            h1 {
                margin-bottom: 20px;
                background: linear-gradient(90deg, #ACACAC 0%, #FFF 15.97%, #C5C1C1 37%, #FFF 65%, #ACACAC 100%);
                background-clip: text;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

            form {
                display: flex;
            }

            .left {
                width: 30vw;
                height: 15vw;
                margin-right: 5vw;

                p {
                    margin-bottom: 1.85vw;
                }
            }

            .right {
                width: 33vw;
                height: 15vw;

                p {
                    margin-bottom: 0;
                }
            }

            input[type="text"],
            input[type="email"] {
                width: 30vw;
                padding: 1vw;
                height: 1vw;
                background-color: #f7f7f7;
                border: 1px solid #ccc;
                border-radius: 5px;
                font-size: var(--body);
            }

            textarea {
                width: 33vw;
                background-color: #f7f7f7;
                border: 1px solid #ccc;
                border-radius: 5px;
                font-size: var(--body);
                height: 12.9vw;
                padding: 0;
            }

            .submit {
                display: flex;
                flex-wrap: wrap;
                justify-content: end;
                margin-top: 2vw;
            }

            input[type="submit"] {
                padding: 0.8vw 1.2vw;
                font-size: 1rem;
                background-color: rgba(0, 0, 0, 0);
                color: white;
                border: solid 1px white;
                border-radius: 5px;
                cursor: pointer;
                transition: background-color 0.3s ease;
            }

            input[type="submit"]:hover {
                background-color: #555;
            }
        }

        .contactInfo {
            margin-top: 2vw;
            flex-basis: 40%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin: 0 var(--left-right);


            .checkbox {
                margin: 3vw 0 5vw 0;
            }

            p {
                margin: 0;
            }
        }
    }
}

/*--------------------------------
Cookie
--------------------------------*/
.cky-btn-revisit-wrapper {
    display: none !important;
}

.cookieWrapper {
    h1 {
        background: #161616;
        background: linear-gradient(to right, #161616 0%, #008480 54%, #161616 94%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .opener {
        margin: 0 var(--left-right) 10vw var(--left-right);

        h1 {
            margin-bottom: 0;
        }

        p {
            color: #000;
            margin-bottom: 0;
            margin-top: 0;
        }
    }

    .whoWeAre,
    .scope,
    .legalBasis,
    .personal,
    .howWeCollect,
    .howWeUse,
    .howWeShare,
    .retention,
    .security,
    .transfers,
    .yourRights,
    .exerciseRights,
    .withdrawConsent,
    .what,
    .how,
    .managing,
    .changes,
    .contact,
    .introduction {
        margin: 0 var(--left-right) 10vw var(--left-right);

        h2 {
            font-size: var(--smallTitle);
        }

        p {
            color: #000;
            margin-bottom: 0;
            margin-top: 0;
        }
    }
}

/*--------------------------------
Footer
--------------------------------*/
.footer-container {
    padding: 3vw var(--left-right);
    display: flex;
    flex-wrap: wrap;
    background-color: black;
    width: 82.5vw;

    .footer-logo {
        width: 40%;
        margin-right: 10%;

        #Layer_2 {
            height: 12vw;
            fill: white;
        }
    }

    .footer-nav {
        width: 15%;
        margin-right: 10%;

        ul {
            padding: 0;

            li {
                list-style: none;
                padding-bottom: 1vw;
            }
        }
    }

    .footer-social {
        width: 15%;

        ul {
            padding: 0;

            li {
                list-style: none;
                padding-bottom: 1vw;
            }
        }

        .address {
            line-height: 1.65;
        }
    }

}


/*--------------------------------
Mobile
--------------------------------*/
@media only screen and (max-width: 1000px) {

    :root {
        --body: 3vw;
        --headerText: clamp(8pt, 2vw, 1rem);
        --blueType: 4vw;
        --hover: clamp(8pt, 2vw, 2rem);
        --smallTitle: 5vw;
        --blockQuote: 3vw;
        --subTitle: 7vw;
        --title: 9vw;
        --left-right: 8.5vw;
    }

    /*--------------------------------
    Backgrounds
    --------------------------------*/
    /* black-green */
    .assetsMain {
        padding-top: 25vw;
        padding-bottom: 5vw;
        width: 100vw;
        min-height: 75vh;
        background: rgb(22, 22, 22);
        background: linear-gradient(180deg, rgba(22, 22, 22, 1) 43%, rgba(0, 86, 85, 1) 100%);
    }

    /* green-black */
    .consultMain,
    .contactMain,
    .storyMain {
        padding-top: 25vw;
        padding-bottom: 5vw;
        width: 100vw;
        min-height: 75vh;
        background: rgb(0, 86, 85);
        background: linear-gradient(180deg, rgba(0, 86, 85, 1) 0%, rgba(22, 22, 22, 1) 100%);
    }

    /* white-green */
    .aboutMain,
    .partnershipMain,
    .newsMain {
        padding-top: 25vw;
        padding-bottom: 5vw;
        width: 100vw;
        min-height: 75vh;
        background: rgb(248, 255, 253);
        background: linear-gradient(180deg, rgba(248, 255, 253, 1) 0%, rgba(0, 84, 84, 1) 100%);
    }

    /* green-white */
    .salesMain {
        padding-top: 25vw;
        padding-bottom: 5vw;
        width: 100vw;
        min-height: 75vh;
        background: rgb(248, 255, 253);
        background: linear-gradient(0deg, rgba(248, 255, 253, 1) 0%, rgba(0, 86, 85, 1) 100%);
    }

    /*--------------------------------
    Header
    --------------------------------*/
    .sea-header {
        padding: 5vw;

        .sea-header-logo {
            width: 20vw;

            #Layer_2 {
                height: 15vw;
            }
        }

        .sea-header-nav {
            display: none;
        }

        .menu-toggle {
            position: absolute;
            top: 10vw;
            right: 5vw;
            display: flex;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1001;
            transition: opacity 0.3s ease-in-out;

            span {
                display: block;
                width: 30px;
                height: 3px;
                background-color: white;
                transition: all 0.3s ease;
            }

            &.hidden {
                opacity: 0;
                pointer-events: none;
            }
        }

        .mobile-menu-overlay {
            display: flex;
            opacity: 0;
            visibility: hidden;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;

            &.open {
                opacity: 1;
                visibility: visible;
            }

            ul {
                list-style: none;
                padding: 0;

                li {
                    margin: 15px 0;
                    text-align: center;

                    a {
                        color: white;
                        font-size: 1.5rem;
                        text-decoration: none;

                        &:hover {
                            color: var(--highlight);
                        }
                    }
                }
            }

            /* Menu Close Button */
            .menu-close {
                position: absolute;
                top: 20px;
                right: 20px;
                font-size: 2rem;
                color: white;
                cursor: pointer;
                background: none;
                border: none;
            }
        }
    }

    /*--------------------------------
    Home
    --------------------------------*/
    .homeWrapper {

        .two {
            max-width: 83vw;
        }

        .opener {
            text-align: center;
            margin-bottom: 15vw;

            .openerText {
                max-width: 83vw;
            }

            p {
                font-size: var(--smallTitle);
            }
        }


        .cardSection {

            h2 {
                text-align: center;
                margin-bottom: 7vw !important;
                font-size: var(--subTitle);
            }

            .events {
                grid-template-columns: repeat(1, 1fr);
            }

            .card {
                p {
                    font-size: var(--body) !important;
                }
            }


            .cardBody {
                margin-top: 5vw !important;

                .left,
                .right {
                    width: 100% !important;
                    margin: 0 !important;

                    p {
                        text-align: center;
                    }

                    :first-child {
                        font-size: var(--subTitle);
                        margin-bottom: 1vw;
                    }
                }
            }

        }
    }

    /*--------------------------------
    Events
    --------------------------------*/
    .eventWrapper {
        .event-body {
            margin-bottom: 5vw;
        }

        .contactWrapper .contactButtonWrapper .open-contact-form {
            background-color: #333 !important;
        }
    }

    /*--------------------------------
    About
    --------------------------------*/
    .aboutWrapper {
        text-align: center;

        .openerBlue {
            font-size: var(--blueType);
        }

        .openerContent {
            video {
                max-width: 100%;
            }
        }

        .leadership .wrap .leader {
            .left {
                width: 100%;

                img {
                    width: 50%;
                    margin: auto;
                }
            }

            .right {
                width: 100%;
                padding: 0;
            }
        }

        .team {
            .wrap {
                display: grid;
                grid-template-columns: repeat(2, 47.5%);
                gap: 5%;
                /* row-gap: 5vw; */

                .network-member {
                    grid-column: span 1;
                }

            }
        }


        .network {
            margin-bottom: 40vw;

            .wrap {
                display: grid;
                grid-template-columns: repeat(2, 47.5%);
                gap: 5%;
                /* row-gap: 5vw; */

                .network-member {
                    grid-column: span 1;
                }

            }
        }

        .sliderWrapper {
            margin: 0 var(--left-right);

            p {
                font-size: var(--blueType);
            }
        }
    }

    /*--------------------------------
    Partnerships
    --------------------------------*/
    .partnershipWrapper {
        text-align: center;
        margin-left: 0;
        margin-right: 0;

        .secondSectionContent {
            h2 {
                font-size: var(--title);
            }

            .partnerCard {
                flex-shrink: 0;
                width: 31.4vw;
                height: auto;
                margin: 0 1vw;
                transition: transform 0.3s ease-in-out;
            }
        }

        .secondSectionBody {
            width: 83% !important;
            margin: 0 var(--left-right) 15vw var(--left-right);
        }

        .seconSectionBottom {
            margin-top: 10vw;

            .left,
            .right {
                grid-column: span 2;
                width: 83% !important;
                margin: 0 var(--left-right);
            }
        }
    }

    /*--------------------------------
    Sales & Marketing
    --------------------------------*/
    .salesWrapper {

        blockquote p {
            font-size: var(--subTitle) !important;
        }

        .sales_section_one,
        .sales_section_two,
        .sales_section_three,
        .sales_section_four {
            .content {
                width: 100% !important;
                order: 2 !important;

                h2 {
                    font-size: var(--subTitle) !important;
                }

                p {
                    font-size: var(--blueType);
                }
            }

            img {
                order: 1 !important;
                margin-bottom: 10vw;
                width: 100%;
            }
        }
    }

    /*--------------------------------
    Consultancy
    --------------------------------*/
    .consultancyWrapper {
        .opener {
            width: 83vw;
        }

        .services-section .service-card {
            margin-bottom: 10vw;
            width: 83vw;


            img {
                max-height: 80vh;
                height: 130vw;
            }

            .service-overlay {
                padding: 15px 20px;
                justify-content: flex-start;


                .service-header .service-title {
                    font-size: var(--smallTitle);
                }
            }
        }

        .service-toggle svg {
            width: 5vw;
            height: 5vw;
        }

        .service-content {
            display: flex;
            flex-wrap: wrap;

            .bold-text {
                width: 100%;
                padding-right: 0;

                p {
                    font-size: var(--smallTitle) !important;
                    line-height: 110%;
                    color: #005454;
                    margin-top: 1vw;
                    font-weight: bold;
                }
            }

            .body-text {
                width: 100%;

                p {
                    font-size: var(--body) !important;
                    color: black;
                    margin-top: 1vw;
                }
            }
        }
    }

    /*--------------------------------
    News
    --------------------------------*/
    .newsWrapper {
        width: 83vw;

        .one {
            row-gap: 15vw;

            .story {
                grid-column: span 2;
            }
        }

        .two {
            h2 {
                font-size: var(--title);
                margin-bottom: 10vw !important;
            }

            .cardSection {

                h2 {
                    text-align: center;
                    margin-bottom: 7vw !important;
                    font-size: var(--subTitle);
                }

                .events {
                    grid-template-columns: repeat(1, 1fr);
                }

                .card {
                    p {
                        font-size: var(--body) !important;
                    }
                }


                .cardBody {
                    margin-top: 5vw !important;

                    .left,
                    .right {
                        width: 100% !important;
                        margin: 0 !important;

                        p {
                            text-align: center;
                        }

                        :first-child {
                            font-size: var(--subTitle);
                            margin-bottom: 1vw;
                        }
                    }
                }

            }
        }
    }

    /*--------------------------------
    Story
    --------------------------------*/
    .storyWrapper {
        .free {
            h2 {
                font-size: var(--subTitle);
            }

            img {
                aspect-ratio: 4/3;
                object-fit: cover;
                height: 110vw !important;
            }
        }

        .gated {
            label {
                font-size: var(--smallTitle) !important;
                margin-top: 10vw;
                margin-bottom: 5vw;
            }

            #email {
                width: 100%;
                font-size: var(--smallTitle) !important;
                border-radius: 10px;
                margin-bottom: 5vw;
                margin-right: 0 !important;
            }

            button {
                width: 100% !important;
                border-radius: 10px;
                font-size: var(--smallTitle) !important;
                padding: 2vw 4vw;
            }
        }
    }

    /*--------------------------------
    Assets
    --------------------------------*/
    .assetsWrapper {
        .assets {
            row-gap: 15vw;

            .asset,
            .story {
                grid-column: span 3;

                p:first-child {
                    font-size: var(--smallTitle);
                    margin-bottom: 0;
                }


                p {
                    font-size: var(--body);
                }
            }
        }
    }

    /*--------------------------------
    Contact
    --------------------------------*/
    .contactMain {
        padding-bottom: 0;
    }

    .contactWrapper {

        .image img {
            width: 100%;
        }

        .contactForm {

            form {
                flex-wrap: wrap;

                .left,
                .right {
                    margin: 0 !important;
                    height: auto !important;
                    width: 83vw !important;

                    p {
                        font-size: var(--blueType);
                    }

                    input {
                        width: 81vw !important;
                        height: auto !important;
                    }

                    textarea {
                        width: 83vw !important;
                        height: auto !important;
                    }

                    p label input[type="checkbox"] {
                        width: 5vw !important;
                        background-color: red;
                    }

                    .submit {
                        width: 100% !important;

                        input {
                            width: 100% !important;
                            font-size: var(--blueType);
                            padding: 2vw 4vw;
                            margin-bottom: 10vw;
                        }
                    }
                }
            }
        }

        .contactInfo {
            flex-basis: 100% !important;

            p {
                font-size: var(--blueType);
            }
        }
    }

    /*--------------------------------
    Footer
    --------------------------------*/
    .footer-container {
        width: 90vw;
        padding: 0 5vw;
        justify-content: center;
        align-items: center;
        margin-bottom: 0 !important;


        .footer-logo {
            display: none;
        }

        .footer-logo-mobile {
            width: 25vw;
            margin-right: 10vw;
        }

        .footer-nav {
            width: 25vw;
            margin-right: 8vw;
            display: none;

            .menu-navigation-container .menu-item a {
                font-size: var(--body);
            }
        }

        .footer-social {
            width: 30vw;

            .title {
                display: none;
            }

            ul li a {
                font-size: var(--body);
            }

            .address {
                line-height: 1;
            }
        }
    }


}