/* RAÍZ */
:root {
    /* Colors */
    --clr-primary: #0076FF;
    /* Blue brand color */
    --clr-dark: #111111;
    --clr-dark-card: #222222;
    --clr-light: #ffffff;
    --clr-text-main: #333333;
    --clr-text-muted: #777777;
    --clr-bg-alt: #f8f9fa;
    --clr-divider: #b4d5fc;

    /* Typography */
    --font-heading: 'Bebas neue', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-pad: 6rem 0;
    --container-width: 1230px;
}










/* SECTION OPACITY */
section {
    opacity: 1;
}










/* ALL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--clr-light);
    color: var(--clr-text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow: auto;
}

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

h1 {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
}


h2 {
    text-shadow: 2.2px 2.2px 2.5px rgba(0, 0, 0, 0.25);
}











/* Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--section-pad);
}

.relative {
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 0.97;
    text-transform: uppercase;
    color: var(--clr-dark);
    letter-spacing: 2px;
}










/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-blue {
    background-color: var(--clr-primary);
    color: var(--clr-light);
}

.btn-blue:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

























/* --- HERO SECTION --- */
.hero {
    position: relative;
    width: 100%;
    height: 100svh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}


#hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}


.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.023),
            rgba(0, 0, 0, 0.1));
}




.hero-container {
    position: relative;
    padding: 0.5rem 0.5rem;
    z-index: 3;
    height: auto;
    max-width: 90%;
    margin-top: 4.4%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero-content {
    width: 100%;
    max-width: 100%;
    align-self: center;
    text-align: left;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.hero-badge {
    list-style: none;
    width: 316px;
    height: 50px;
    border-radius: 14px;
    margin-bottom: 1rem;
    padding: 0;
    display: relative;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    opacity: 1;
    z-index: 999;
    background-color: transparent;
}

.nav-toggle {

    position: absolute;
    width: 316px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    margin-bottom: 1rem;
    padding: 0;
    position: absolute;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;

    background: rgba(245, 245, 245, 0.1);
    box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);

    transition: all 0.3s ease;
}

.nav-toggle:active {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-badge button {
    font-family: var(--font-heading);
    font-size: 1.72rem;
    color: #eaeaea;
    text-shadow: 2px 1px 1px rgba(0, 0, 0, 0.7);
}

.menu-icon {
    filter: invert(1);
    position: relative;
    width: 13%;
    height: auto;
    filter: invert(1) drop-shadow(2px 2px 1.5px rgba(0, 0, 0, 0.5));
}

.hero-badge-list {
    width: 100%;
    height: auto;
    margin-top: 3.8rem;
}

.hero-badge-list a {
    width: 100%;
    height: auto;
    padding: .35rem .5rem;
    border-radius: 14px;
    text-decoration: none;
    color: #000;
    font-weight: 300;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.4);
    background: rgba(245, 245, 245, 0.3);
    color: #eaeaea;
    box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);
    text-shadow: 2.1px 1.42px 1.5px rgba(0, 0, 0, 0.7);

}

.nav li {
    padding-bottom: .5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #eaeaea;
}

.nav {
    display: none;
    /* oculto */
}

.nav.active {
    display: block;
    /* visible */
}




.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 8vw, 8.1rem);
    color: var(--clr-light);
    line-height: 0.85;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 1;
    text-shadow: 5px 2px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1280px) {


    .hero-title {
        font-size: clamp(5rem, 9vw, 7rem);
        line-height: 0.9;
        letter-spacing: 1px;
    }

    .hero-badge {
        list-style: none;
        width: 25%;
        height: 2.5rem;
        border-radius: 14px;
        margin-bottom: 1rem;
        padding: 0;
        display: relative;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        opacity: 1;
        z-index: 999;
        background-color: transparent;
    }

    .nav-toggle {

        position: absolute;
        width: 25%;
        height: 2.5rem;
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 14px;
        margin-bottom: 1rem;
        padding: 0;
        position: absolute;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;

        background: rgba(245, 245, 245, 0.4);
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);

    }

    .hero-badge-list {
        width: 100%;
        height: auto;
        margin-top: 3.2rem;
    }

    .hero-badge-list a {
        width: 100%;
        height: auto;
        padding: .25rem .5rem;
        border-radius: 14px;
        text-decoration: none;
        color: #000;
        font-weight: 300;
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        border: 2px solid rgba(255, 255, 255, 0.4);
        background: rgba(245, 245, 245, 0.3);
        color: #eaeaea;
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);
        text-shadow: 2.1px 1.42px 1.5px rgba(0, 0, 0, 0.7);

    }

    .nav li {
        padding-bottom: .4rem;
        font-family: var(--font-heading);
        font-size: 1.5rem;
        color: #eaeaea;
    }

    .hero-badge button {
        font-size: 1.5rem;
    }

}

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

    .hero-container {
        position: relative;
        padding: 0.5rem 0.5rem;
        z-index: 3;
        height: auto;
        max-width: 93.5%;
        margin-top: 4.4%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        align-self: flex-start;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .hero-badge {
        list-style: none;
        width: 30%;
        height: auto;
        border-radius: 15px;
        margin-bottom: 1rem;
        padding: 0;
        display: relative;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        opacity: 1;
        z-index: 999;
        background-color: transparent;
    }

    .nav-toggle {

        position: absolute;
        width: 30%;
        height: 2.2rem;
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 15px;
        margin-bottom: 1rem;
        padding: 0;
        position: absolute;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;

        background: rgba(245, 245, 245, 0.4);
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);

    }

    .hero-badge-list {
        width: 100%;
        height: auto;
        margin-top: 2.8rem;
    }

    .hero-badge-list a {
        width: 100%;
        height: auto;
        padding: .18rem .5rem;
        border-radius: 14px;
        text-decoration: none;
        color: #000;
        font-weight: 300;
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        border: 2px solid rgba(255, 255, 255, 0.4);
        background: rgba(245, 245, 245, 0.3);
        color: #eaeaea;
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);
        text-shadow: 2.1px 1.42px 1.5px rgba(0, 0, 0, 0.7);

    }

    .nav li {
        padding-bottom: .4rem;
        font-family: var(--font-heading);
        font-size: 1.3rem;
        color: #eaeaea;
    }

    .hero-badge button {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 10rem;
        line-height: 0.9;
        letter-spacing: 1.9px;
        margin-top: 3rem;
    }

    .sa-Cv {
        display: none;
    }

}

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

    .hero-badge {
        list-style: none;
        width: 21%;
        height: 2.1rem;
        border-radius: 15px;
        margin-bottom: 1rem;
        padding: 0;
        display: relative;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        opacity: 1;
        z-index: 999;
        background-color: transparent;
    }

    .nav-toggle {

        position: absolute;
        width: 21%;
        height: 2.1rem;
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 15px;
        margin-bottom: 1rem;
        padding: 0;
        position: absolute;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;

        background: rgba(245, 245, 245, 0.4);
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);

    }

    .hero-badge-list {
        width: 100%;
        height: auto;
        margin-top: 2.6rem;
    }

    .hero-badge-list a {
        width: 100%;
        height: auto;
        padding: .10rem .5rem;
        border-radius: 14px;
        text-decoration: none;
        color: #000;
        font-weight: 300;
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        border: 2px solid rgba(255, 255, 255, 0.4);
        background: rgba(245, 245, 245, 0.3);
        color: #eaeaea;
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);
        text-shadow: 2.1px 1.42px 1.5px rgba(0, 0, 0, 0.7);

    }

    .nav li {
        padding-bottom: .3rem;
        font-family: var(--font-heading);
        font-size: 1.2rem;
        color: #eaeaea;
    }

    .hero-badge button {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: clamp(5rem, 9vw, 10rem);
        line-height: 0.9;
        letter-spacing: 1.9px;
        margin-top: 0rem;
    }
}

@media (max-width: 912px) {

    .hero-badge {
        list-style: none;
        width: 40%;
        height: 3.3rem;
        border-radius: 15px;
        margin-bottom: 3rem;
        padding: 0;
        display: relative;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        opacity: 1;
        z-index: 999;
        background-color: transparent;
    }

    .nav-toggle {

        position: absolute;
        width: 40%;
        height: 3.3rem;
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 15px;
        margin-bottom: 3rem;
        padding: 0;
        position: absolute;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;

        background: rgba(245, 245, 245, 0.4);
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);

    }

    .hero-badge-list {
        width: 100%;
        height: auto;
        margin-top: 4.2rem;
    }

    .hero-badge-list a {
        width: 100%;
        height: auto;
        padding: .09rem .5rem;
        border-radius: 14px;
        text-decoration: none;
        color: #000;
        font-weight: 300;
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        border: 2px solid rgba(255, 255, 255, 0.4);
        background: rgba(245, 245, 245, 0.3);
        color: #eaeaea;
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);
        text-shadow: 2.1px 1.42px 1.5px rgba(0, 0, 0, 0.7);

    }

    .nav li {
        padding-bottom: .7rem;
        font-family: var(--font-heading);
        font-size: 2.1rem;
        color: #eaeaea;
    }

    .hero-badge button {
        font-size: 2.1rem;
    }

    .hero-title {
        font-size: clamp(9rem, 10vw, 12rem);
        line-height: 0.9;
        letter-spacing: 3px;
        margin-top: .7rem;
    }

    .sa-Cv {
        display: none;
    }
}

@media (max-width: 853px) {

    .hero-badge {
        list-style: none;
        width: 40%;
        height: 3.1rem;
        border-radius: 15px;
        margin-bottom: 2.8rem;
        padding: 0;
        display: relative;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        opacity: 1;
        z-index: 999;
        background-color: transparent;
    }

    .nav-toggle {

        position: absolute;
        width: 40%;
        height: 3.1rem;
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 15px;
        margin-bottom: 2.8rem;
        padding: 0;
        position: absolute;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;

        background: rgba(245, 245, 245, 0.4);
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);

    }

    .hero-badge-list {
        width: 100%;
        height: auto;
        margin-top: 2.7rem;
    }

    .hero-badge-list a {
        width: 100%;
        height: auto;
        padding: .10rem .5rem;
        border-radius: 14px;
        text-decoration: none;
        color: #000;
        font-weight: 300;
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        border: 2px solid rgba(255, 255, 255, 0.4);
        background: rgba(245, 245, 245, 0.3);
        color: #eaeaea;
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);
        text-shadow: 2.1px 1.42px 1.5px rgba(0, 0, 0, 0.7);

    }

    .nav li {
        padding-bottom: .7rem;
        font-family: var(--font-heading);
        font-size: 1.6rem;
        color: #eaeaea;
    }

    .hero-badge button {
        font-size: 1.6rem;
    }

    .hero-title {
        font-size: clamp(8.5rem, 9vw, 10rem);
        line-height: 0.9;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 820px) {

    .hero-badge {
        list-style: none;
        width: 40.5%;
        height: 2.8rem;
        border-radius: 15px;
        margin-bottom: 2.5rem;
        padding: 0;
        display: relative;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        opacity: 1;
        z-index: 999;
        background-color: transparent;
    }

    .nav-toggle {

        position: absolute;
        width: 40.5%;
        height: 2.8rem;
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 15px;
        margin-bottom: 2.5rem;
        padding: 0;
        position: absolute;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;

        background: rgba(245, 245, 245, 0.4);
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);

    }

    .hero-badge-list {
        width: 100%;
        height: auto;
        margin-top: 3.5rem;
    }

    .hero-badge-list a {
        width: 100%;
        height: auto;
        padding: .10rem .5rem;
        border-radius: 14px;
        text-decoration: none;
        color: #000;
        font-weight: 300;
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        border: 2px solid rgba(255, 255, 255, 0.4);
        background: rgba(245, 245, 245, 0.3);
        color: #eaeaea;
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);
        text-shadow: 2.1px 1.42px 1.5px rgba(0, 0, 0, 0.7);

    }

    .nav li {
        padding-bottom: .6rem;
        font-family: var(--font-heading);
        font-size: 1.7rem;
        color: #eaeaea;
    }

    .hero-badge button {
        font-size: 1.7rem;
    }

    .hero-title {
        font-size: clamp(8.1rem, 8.5vw, 10rem);
        line-height: 0.83;
        letter-spacing: 3px;
        margin-top: .1;
    }
}

@media (max-width: 768px) {

    .hero-badge {
        list-style: none;
        width: 35%;
        height: 2.8rem;
        border-radius: 15px;
        margin-bottom: 1.4rem;
        padding: 0;
        display: relative;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        opacity: 1;
        z-index: 999;
        background-color: transparent;
    }

    .nav-toggle {

        position: absolute;
        width: 35%;
        height: 2.8rem;
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 15px;
        margin-bottom: 2rem;
        padding: 0;
        position: absolute;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;

        background: rgba(245, 245, 245, 0.4);
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);

    }

    .hero-badge-list {
        width: 100%;
        height: auto;
        margin-top: 3.4rem;
    }

    .hero-badge-list a {
        width: 100%;
        height: auto;
        padding: .10rem .5rem;
        border-radius: 14px;
        text-decoration: none;
        color: #000;
        font-weight: 300;
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        border: 2px solid rgba(255, 255, 255, 0.4);
        background: rgba(245, 245, 245, 0.3);
        color: #eaeaea;
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);
        text-shadow: 2.1px 1.42px 1.5px rgba(0, 0, 0, 0.7);

    }

    .nav li {
        padding-bottom: .48rem;
        font-family: var(--font-heading);
        font-size: 1.6rem;
        color: #eaeaea;
    }

    .hero-badge button {
        font-size: 1.6rem;
    }

    .hero-title {
        font-size: clamp(7.2rem, 8vw, 10rem);
        line-height: 0.9;
        letter-spacing: 3px;
        margin-top: 0rem;
    }
}

@media (max-width: 540px) {

    .hero-badge {
        list-style: none;
        width: 37%;
        height: 2.7rem;
        border-radius: 15px;
        margin-bottom: 1rem;
        padding: 0;
        display: relative;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        opacity: 1;
        z-index: 999;
        background-color: transparent;
    }

    .nav-toggle {

        position: absolute;
        width: 36%;
        height: 2.7rem;
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 15px;
        margin-bottom: 1.5rem;
        padding: 0;
        position: absolute;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;

        background: rgba(245, 245, 245, 0.4);
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);

    }

    .hero-badge-list {
        width: 100%;
        height: auto;
        margin-top: 3.1rem;
    }

    .hero-badge-list a {
        width: 100%;
        height: auto;
        padding: .10rem .5rem;
        border-radius: 14px;
        text-decoration: none;
        color: #000;
        font-weight: 300;
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        border: 2px solid rgba(255, 255, 255, 0.4);
        background: rgba(245, 245, 245, 0.3);
        color: #eaeaea;
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);
        text-shadow: 2.1px 1.42px 1.5px rgba(0, 0, 0, 0.7);

    }

    .nav li {
        padding-bottom: .32rem;
        font-family: var(--font-heading);
        font-size: 1.3rem;
        color: #eaeaea;
    }

    .hero-badge button {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: clamp(5.1rem, 8vw, 10rem);
        line-height: 0.9;
        letter-spacing: 2.3px;
    }
}

@media (max-width: 430px) {

    .hero-content {
        max-width: 100%;
        align-self: flex-start;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .hero-badge {
        list-style: none;
        width: 54%;
        height: 2.2rem;
        border-radius: 15px;
        margin-bottom: 1.3rem;
        padding: 0;
        display: relative;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        opacity: 1;
        z-index: 999;
        background-color: transparent;
    }

    .nav-toggle {

        position: absolute;
        width: 52%;
        height: 2.2rem;
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 15px;
        margin-bottom: 2.9rem;
        padding: 0;
        position: absolute;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;

        background: rgba(245, 245, 245, 0.4);
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);
    }

    .hero-badge-list {
        width: 100%;
        height: auto;
        margin-top: 2.6rem;
    }

    .hero-badge-list a {
        width: 100%;
        height: auto;
        padding: .10rem .5rem;
        border-radius: 14px;
        text-decoration: none;
        color: #000;
        font-weight: 300;
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        border: 2px solid rgba(255, 255, 255, 0.4);
        background: rgba(245, 245, 245, 0.3);
        color: #eaeaea;
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);
        text-shadow: 2.1px 1.42px 1.5px rgba(0, 0, 0, 0.7);
    }

    .nav li {
        padding-bottom: .39rem;
        font-family: var(--font-heading);
        font-size: 1.4rem;
        color: #eaeaea;
    }

    .hero-badge button {
        font-size: 1.6rem;
    }

    .hero-title {
        font-size: clamp(6.8rem, 8vw, 10rem);
        line-height: 0.78;
        letter-spacing: 1px;
        margin-top: 2rem;
    }

    .smart-Logistics {
        display: none;
    }
}

@media (max-width: 414px) {

    .hero-container {
        position: relative;
        padding: 0.5rem 0.5rem;
        z-index: 3;
        height: auto;
        max-width: 93.5%;
        margin-top: 4.4%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        align-self: flex-start;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .hero-badge {
        list-style: none;
        width: 54%;
        height: 2.3rem;
        border-radius: 15px;
        margin-bottom: .9rem;
        padding: 0;
        display: relative;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        opacity: 1;
        z-index: 999;
        background-color: transparent;
    }

    .nav-toggle {

        position: absolute;
        width: 52%;
        height: 2.3rem;
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 15px;
        margin-bottom: 2.6rem;
        padding: 0;
        position: absolute;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;

        background: rgba(245, 245, 245, 0.4);
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);
    }

    .hero-badge-list {
        width: 100%;
        height: auto;
        margin-top: 2.8rem;
    }

    .hero-badge-list a {
        width: 100%;
        height: auto;
        padding: .10rem .5rem;
        border-radius: 14px;
        text-decoration: none;
        color: #000;
        font-weight: 300;
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        border: 2px solid rgba(255, 255, 255, 0.4);
        background: rgba(245, 245, 245, 0.3);
        color: #eaeaea;
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);
        text-shadow: 2.1px 1.42px 1.5px rgba(0, 0, 0, 0.7);
    }

    .nav li {
        padding-bottom: .37rem;
        font-family: var(--font-heading);
        font-size: 1.3rem;
        color: #eaeaea;
    }

    .hero-badge button {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: clamp(6.9rem, 8vw, 10rem);
        line-height: 0.77;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 412px) and (max-height: 915px) {

    .hero-container {
        position: relative;
        padding: 0.5rem 0.5rem;
        z-index: 3;
        height: auto;
        max-width: 93.5%;
        margin-top: 4.4%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        align-self: flex-start;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .hero-badge {
        list-style: none;
        width: 50%;
        height: 2.3rem;
        border-radius: 15px;
        margin-bottom: 1rem;
        padding: 0;
        display: relative;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        opacity: 1;
        z-index: 999;
        background-color: transparent;
    }

    .nav-toggle {
        position: absolute;
        width: 48%;
        height: 2.3rem;
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 15px;
        margin-bottom: 2.5rem;
        padding: 0;
        position: absolute;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        background: rgba(245, 245, 245, 0.4);
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);
    }

    .hero-badge-list {
        width: 100%;
        height: auto;
        margin-top: 2.8rem;
    }

    .hero-badge-list a {
        width: 100%;
        height: auto;
        padding: .10rem .5rem;
        border-radius: 14px;
        text-decoration: none;
        color: #000;
        font-weight: 300;
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        border: 2px solid rgba(255, 255, 255, 0.4);
        background: rgba(245, 245, 245, 0.3);
        color: #eaeaea;
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);
        text-shadow: 2.1px 1.42px 1.5px rgba(0, 0, 0, 0.7);
    }

    .nav li {
        padding-bottom: .37rem;
        font-family: var(--font-heading);
        font-size: 1.3rem;
        color: #eaeaea;
    }

    .hero-badge button {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: clamp(6.7rem, 8vw, 10rem);
        line-height: 0.8;
        letter-spacing: 2.3px;
    }
}

@media (max-width: 390px) {

    .hero-container {
        position: relative;
        padding: 0.5rem 0.5rem;
        z-index: 3;
        height: auto;
        max-width: 93.5%;
        margin-top: 4.4%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        align-self: flex-start;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .hero-badge {
        list-style: none;
        width: 52%;
        height: 2rem;
        border-radius: 15px;
        margin-bottom: .5rem;
        padding: 0;
        display: relative;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        opacity: 1;
        z-index: 999;
        background-color: transparent;
    }

    .nav-toggle {
        position: absolute;
        width: 50%;
        height: 2rem;
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 15px;
        margin-bottom: 2.3rem;
        padding: 0;
        position: absolute;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        background: rgba(245, 245, 245, 0.4);
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);
    }

    .hero-badge-list {
        width: 100%;
        height: auto;
        margin-top: 2.5rem;
    }

    .hero-badge-list a {
        width: 100%;
        height: auto;
        padding: .09rem .5rem;
        border-radius: 14px;
        text-decoration: none;
        color: #000;
        font-weight: 300;
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        border: 2px solid rgba(255, 255, 255, 0.4);
        background: rgba(245, 245, 245, 0.3);
        color: #eaeaea;
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);
        text-shadow: 2.1px 1.42px 1.5px rgba(0, 0, 0, 0.7);
    }

    .nav li {
        padding-bottom: .37rem;
        font-family: var(--font-heading);
        font-size: 1.3rem;
        color: #eaeaea;
    }

    .hero-badge button {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: clamp(6.4rem, 8vw, 10rem);
        line-height: 0.78;
        letter-spacing: 1px;
    }
}

@media (max-width: 375px) {

    .hero-container {
        position: relative;
        padding: 0.5rem 0.5rem;
        z-index: 3;
        height: auto;
        max-width: 93.5%;
        margin-top: 4.4%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        align-self: flex-start;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .hero-badge {
        list-style: none;
        width: 50%;
        height: 2.2rem;
        border-radius: 15px;
        margin-bottom: -.8rem;
        padding: 0;
        display: relative;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        opacity: 1;
        z-index: 999;
        background-color: transparent;
    }

    .nav-toggle {
        position: absolute;
        width: 48%;
        height: 2.2rem;
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 15px;
        margin-bottom: 2.2rem;
        padding: 0;
        position: absolute;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        background: rgba(245, 245, 245, 0.4);
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);
    }

    .hero-badge-list {
        width: 100%;
        height: auto;
        margin-top: 2.62rem;
    }

    .hero-badge-list a {
        width: 100%;
        height: auto;
        padding: .09rem .5rem;
        border-radius: 14px;
        text-decoration: none;
        color: #000;
        font-weight: 300;
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        border: 2px solid rgba(255, 255, 255, 0.4);
        background: rgba(245, 245, 245, 0.3);
        color: #eaeaea;
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);
        text-shadow: 2.1px 1.42px 1.5px rgba(0, 0, 0, 0.7);
    }

    .nav li {
        padding-bottom: .32rem;
        font-family: var(--font-heading);
        font-size: 1.28rem;
        color: #eaeaea;
    }

    .hero-badge button {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: clamp(6rem, 8vw, 10rem);
        line-height: 0.78;
        letter-spacing: 2.23px;
    }
}

@media (max-width: 360px) {

    .hero-container {
        position: relative;
        padding: 0.5rem 0.5rem;
        z-index: 3;
        height: auto;
        max-width: 93.5%;
        margin-top: 4.4%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        align-self: flex-start;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .hero-badge {
        list-style: none;
        width: 51%;
        height: 2rem;
        border-radius: 15px;
        margin-bottom: -.3rem;
        padding: 0;
        display: relative;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        opacity: 1;
        z-index: 999;
        background-color: transparent;
    }

    .nav-toggle {
        position: absolute;
        width: 49%;
        height: 2rem;
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 15px;
        margin-bottom: 2.1rem;
        padding: 0;
        position: absolute;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        background: rgba(245, 245, 245, 0.4);
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);
    }

    .hero-badge-list {
        width: 100%;
        height: auto;
        margin-top: 2.4rem;
    }

    .hero-badge-list a {
        width: 100%;
        height: auto;
        padding: .09rem .5rem;
        border-radius: 14px;
        text-decoration: none;
        color: #000;
        font-weight: 300;
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        border: 2px solid rgba(255, 255, 255, 0.4);
        background: rgba(245, 245, 245, 0.3);
        color: #eaeaea;
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);
        text-shadow: 2.1px 1.42px 1.5px rgba(0, 0, 0, 0.7);
    }

    .nav li {
        padding-bottom: .31rem;
        font-family: var(--font-heading);
        font-size: 1.27rem;
        color: #eaeaea;
    }

    .hero-badge button {
        font-size: 1.27rem;
    }

    .hero-title {
        font-size: clamp(6rem, 8vw, 10rem);
        line-height: 0.8;
        letter-spacing: 1px;
    }
}

@media (max-width: 344px) {

    .hero-container {
        position: relative;
        padding: 0.5rem 0.5rem;
        z-index: 3;
        height: auto;
        max-width: 93.5%;
        margin-top: 4.4%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .hero-content {
        max-width: 100%;
        align-self: flex-start;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .hero-badge {
        list-style: none;
        width: 49%;
        height: 1.9rem;
        border-radius: 15px;
        margin-bottom: 1.7rem;
        padding: 0;
        display: relative;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        opacity: 1;
        z-index: 999;
        background-color: transparent;
    }

    .nav-toggle {
        position: absolute;
        width: 46.5%;
        height: 1.9rem;
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 15px;
        margin-bottom: 3.2rem;
        padding: 0;
        position: absolute;
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        background: rgba(245, 245, 245, 0.4);
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);
    }

    .hero-badge-list {
        width: 100%;
        height: auto;
        margin-top: 2.3rem;
    }

    .hero-badge-list a {
        width: 100%;
        height: auto;
        padding: .08rem .5rem;
        border-radius: 14px;
        text-decoration: none;
        color: #000;
        font-weight: 300;
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        border: 2px solid rgba(255, 255, 255, 0.4);
        background: rgba(245, 245, 245, 0.3);
        color: #eaeaea;
        box-shadow: 4px 3px 5px rgba(0, 0, 0, 0.3);
        text-shadow: 2.1px 1.42px 1.5px rgba(0, 0, 0, 0.7);
    }

    .nav li {
        padding-bottom: .29rem;
        font-family: var(--font-heading);
        font-size: 1.28rem;
        color: #eaeaea;
    }

    .hero-badge button {
        font-size: 1.28rem;
    }

    .hero-title {
        font-size: clamp(6rem, 8vw, 10rem);
        line-height: 0.8;
        letter-spacing: 1px;
    }
}























/* --- HEXAGON SECTION --- */
.hex-section {
    padding: 5rem 1rem;
    background-color: var(--clr-light);
    overflow: hidden;
    position: relative;
    height: auto;
}

.hex-container {
    max-width: 100%;
    height: auto;
    padding: 7rem 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-rows: 195px;
    justify-items: center;
    align-items: center;
    position: relative;
}

.hex-center-text {
    grid-area: 3 / 4;
    max-width: 400px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--clr-text-main);
    z-index: 10;
}

.hex-center-text p {
    margin-bottom: 15px;
}

/* Hexagon Shape */
.hex-item {
    width: 190px;
    height: 220px;
    background-size: cover;
    background-position: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
    /* For hover interactivity */
    transition: transform 0.3s ease, filter 0.3s ease;
    transform: scale(1);

}

.hex-item:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
    z-index: 20;
}

.hex-item:active {
    transform: scale(1.02);
}

.hex-1 {
    grid-area: 1 / 2;
    justify-self: left;
    position: relative;
    right: 60px;
    bottom: 2px;
}

.hex-2 {
    grid-area: 1 / 3;
    align-self: start;
    position: relative;
    top: 22px;
}

.hex-3 {
    grid-area: 1 / 4;
    justify-self: end;
    position: relative;
    left: 70px;
}

.hex-4 {
    grid-area: 2 / 1;
    justify-self: start;
    position: relative;
    left: 20px;
}

.hex-5 {
    grid-area: 3 / 2;
    justify-self: left;
    position: relative;
    right: 30px;
}

.hex-6 {
    grid-area: 3 / 4;
    justify-self: end;
    position: relative;
    left: 40px;
}

.hex-7 {
    grid-area: 2 / 5;
    justify-self: end;
    position: relative;
    right: 20px;
}

.hex-center-text {
    grid-column: 2 / 5;
    bottom: 30px;
    position: relative;
    max-width: 500px;
}

.hex-8 {
    grid-area: 4 / 1;
    justify-self: start;
    position: relative;
    left: 20px;
    top: 15px;
}

.hex-9 {
    grid-area: 4 / 3;
    position: relative;
    top: 110px;
}

.hex-10 {
    grid-area: 4 / 5;
    justify-self: end;
    position: relative;
    right: 20px;
    top: 15px;
}

.hex-11 {
    grid-area: 5 / 2;
    justify-self: start;
    position: relative;
    right: 60px;
}

.hex-12 {
    grid-area: 5 / 4;
    justify-self: end;
    position: relative;
    left: 70px;
}

/* Positioning Hexagons - Scatter around center */


@media (max-width: 1280px) {
    .hex-item {
        width: 160px;
        height: 190px;
        background-size: cover;
        background-position: center;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
        /* For hover interactivity */
        transition: transform 0.3s ease, filter 0.3s ease;
        transform: scale(1);
    }

    .hex-center-text {
        grid-column: 2 / 5;
        bottom: 30px;
        position: relative;
        max-width: 46%;
        line-height: 1.07;
    }

    .hex-center-text p {
        margin-bottom: 6.5px;
        font-size: clamp(.7rem, 1rem, 1.2rem);
    }
}

@media (max-width: 1024px) and (max-height: 1366px) {
    .hex-item {
        width: 150px;
        height: 180px;
        background-size: cover;
        background-position: center;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
        /* For hover interactivity */
        transition: transform 0.3s ease, filter 0.3s ease;
        transform: scale(1);
    }

    .hex-center-text {
        grid-column: 2 / 5;
        bottom: 30px;
        position: relative;
        max-width: 40%;
        height: 90%;
        line-height: 1.06;
    }

    .hex-center-text p {
        margin-bottom: 14px;
        font-size: clamp(.7rem, 1.09rem, 1.2rem);
    }
}

@media (max-width: 1024px) and (max-height: 600px) {
    .hex-item {
        width: 140px;
        height: 170px;
        background-size: cover;
        background-position: center;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
        /* For hover interactivity */
        transition: transform 0.3s ease, filter 0.3s ease;
        transform: scale(1);
    }

    .hex-center-text {
        grid-column: 2 / 5;
        bottom: 30px;
        position: relative;
        max-width: 46%;
        line-height: 1.06;
    }

    .hex-center-text p {
        margin-bottom: 8px;
        font-size: clamp(.7rem, .93rem, 1.2rem);
    }
}

@media (max-width: 912px) {
    .hex-item {
        width: 140px;
        height: 160px;
        background-size: cover;
        background-position: center;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
        /* For hover interactivity */
        transition: transform 0.3s ease, filter 0.3s ease;
        transform: scale(1);
    }

    .hex-center-text {
        grid-column: 2 / 5;
        bottom: 30px;
        position: relative;
        max-width: 46%;
        line-height: 1.06;
    }

    .hex-center-text p {
        margin-bottom: 12px;
        font-size: clamp(.7rem, .98rem, 1.2rem);
    }
}

@media (max-width: 853px) {}

@media (max-width: 820px) {}

@media (max-width: 768px) {

    .hex-item {
        width: 140px;
        height: 160px;
        background-size: cover;
        background-position: center;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
        /* For hover interactivity */
        transition: transform 0.3s ease, filter 0.3s ease;
        transform: scale(1);
    }

    .hex-center-text {
        grid-column: 2 / 5;
        bottom: 30px;
        position: relative;
        max-width: 30%;
        height: auto;
        line-height: 1.06;
        bottom: 3rem;
    }

    .hex-center-text p {
        margin-bottom: 12px;
        font-size: clamp(.7rem, .97rem, 1.2rem);
    }
}

@media (max-width: 540px) {

    .hex-2 {
        grid-area: 1 / 3;
        align-self: start;
        position: relative;
        top: 22px;
        display: none;
    }

    .hex-9 {
        grid-area: 4 / 3;
        position: relative;
        top: 110px;
        display: none;
    }

    .hex-item {
        width: 140px;
        height: 160px;
        background-size: cover;
        background-position: center;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
        /* For hover interactivity */
        transition: transform 0.3s ease, filter 0.3s ease;
        transform: scale(1);
    }

    .hex-center-text {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;

        position: relative;
        max-width: 46%;
        height: 30rem;
        line-height: 1.05;
        top: 2%;
    }

    .hex-center-text p {
        margin-bottom: 0rem;
        font-size: clamp(.7rem, .96rem, 1.2rem);
        position: relative;
        top: 0rem;
        overflow-wrap: break-word;
        word-break: break-word;
    }


    .hex-1 {
        grid-area: 1 / 2;
        justify-self: left;
        position: relative;
        right: 69px;
        bottom: 2px;
    }

    .hex-2 {
        grid-area: 1 / 3;
        align-self: start;
        position: relative;
        top: 22px;
    }

    .hex-3 {
        grid-area: 1 / 4;
        justify-self: end;
        position: relative;
        left: 70px;
    }

    .hex-4 {
        grid-area: 2 / 1;
        justify-self: start;
        position: relative;
        left: 20px;
    }

    .hex-5 {
        grid-area: 3 / 2;
        justify-self: left;
        position: relative;
        right: 39px;
    }

    .hex-6 {
        grid-area: 3 / 4;
        justify-self: end;
        position: relative;
        left: 40px;
    }

    .hex-7 {
        grid-area: 2 / 5;
        justify-self: end;
        position: relative;
        right: 20px;
    }

    .hex-8 {
        grid-area: 4 / 1;
        justify-self: start;
        position: relative;
        left: 20px;
        top: 15px;
    }

    .hex-9 {
        grid-area: 4 / 3;
        position: relative;
        top: 110px;
    }

    .hex-10 {
        grid-area: 4 / 5;
        justify-self: end;
        position: relative;
        right: 20px;
        top: 15px;
    }

    .hex-11 {
        grid-area: 5 / 2;
        justify-self: start;
        position: relative;
        right: 71px;
    }

    .hex-12 {
        grid-area: 5 / 4;
        justify-self: end;
        position: relative;
        left: 70px;
    }

}

@media (max-width: 430px) {

    .hex-2 {
        grid-area: 1 / 3;
        align-self: start;
        position: relative;
        top: 22px;
        display: none;
    }

    .hex-9 {
        grid-area: 4 / 3;
        position: relative;
        top: 110px;
        display: none;
    }

    .hex-item {
        width: 140px;
        height: 160px;
        background-size: cover;
        background-position: center;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
        /* For hover interactivity */
        transition: transform 0.3s ease, filter 0.3s ease;
        transform: scale(1);
    }

    .hex-center-text {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;

        position: relative;
        max-width: 85%;
        height: 74rem;
        line-height: 1.05;
        top: 2%;
    }

    .hex-center-text p {
        margin-bottom: 0rem;
        font-size: clamp(.7rem, 1rem, 1.2rem);
        position: relative;
        top: 0rem;
        overflow-wrap: break-word;
        word-break: break-word;
    }


    .hex-1 {
        grid-area: 1 / 2;
        justify-self: left;
        position: relative;
        right: 69px;
        bottom: 2px;
    }

    .hex-2 {
        grid-area: 1 / 3;
        align-self: start;
        position: relative;
        top: 22px;
    }

    .hex-3 {
        grid-area: 1 / 4;
        justify-self: end;
        position: relative;
        left: 70px;
    }

    .hex-4 {
        grid-area: 2 / 1;
        justify-self: start;
        position: relative;
        left: 20px;
    }

    .hex-5 {
        grid-area: 3 / 2;
        justify-self: left;
        position: relative;
        right: 39px;
    }

    .hex-6 {
        grid-area: 3 / 4;
        justify-self: end;
        position: relative;
        left: 40px;
    }

    .hex-7 {
        grid-area: 2 / 5;
        justify-self: end;
        position: relative;
        right: 20px;
    }

    .hex-8 {
        grid-area: 4 / 1;
        justify-self: start;
        position: relative;
        left: 20px;
        top: 15px;
    }

    .hex-9 {
        grid-area: 4 / 3;
        position: relative;
        top: 110px;
    }

    .hex-10 {
        grid-area: 4 / 5;
        justify-self: end;
        position: relative;
        right: 20px;
        top: 15px;
    }

    .hex-11 {
        grid-area: 5 / 2;
        justify-self: start;
        position: relative;
        right: 71px;
    }

    .hex-12 {
        grid-area: 5 / 4;
        justify-self: end;
        position: relative;
        left: 70px;
    }
}

@media (max-width: 414px) {}

@media (max-width: 412px) and (max-height: 915px) {

    .hex-center-text {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;

        position: relative;
        max-width: 85%;
        height: 74rem;
        line-height: 1.05;
        top: 2%;
    }
}

@media (max-width: 390px) {
    .hex-2 {
        grid-area: 1 / 3;
        align-self: start;
        position: relative;
        top: 22px;
        display: none;
    }

    .hex-9 {
        grid-area: 4 / 3;
        position: relative;
        top: 110px;
        display: none;
    }

    .hex-item {
        width: 130px;
        height: 150px;
        background-size: cover;
        background-position: center;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
        /* For hover interactivity */
        transition: transform 0.3s ease, filter 0.3s ease;
        transform: scale(1);
    }

    .hex-center-text {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;

        position: relative;
        max-width: 85%;
        height: 74rem;
        line-height: 1.05;
        top: 2%;
    }

    .hex-center-text p {
        margin-bottom: 0rem;
        font-size: clamp(.7rem, .93rem, 1.2rem);
        position: relative;
        top: 0rem;
        overflow-wrap: break-word;
        word-break: break-word;
    }


    .hex-1 {
        grid-area: 1 / 2;
        justify-self: left;
        position: relative;
        right: 58px;
        bottom: 2px;
    }

    .hex-2 {
        grid-area: 1 / 3;
        align-self: start;
        position: relative;
        top: 22px;
    }

    .hex-3 {
        grid-area: 1 / 4;
        justify-self: end;
        position: relative;
        left: 58px;
    }

    .hex-4 {
        grid-area: 2 / 1;
        justify-self: start;
        position: relative;
        left: 26px;
    }

    .hex-5 {
        grid-area: 3 / 2;
        justify-self: left;
        position: relative;
        right: 35px;
    }

    .hex-6 {
        grid-area: 3 / 4;
        justify-self: end;
        position: relative;
        left: 36px;
    }

    .hex-7 {
        grid-area: 2 / 5;
        justify-self: end;
        position: relative;
        right: 25px;
    }

    .hex-8 {
        grid-area: 4 / 1;
        justify-self: start;
        position: relative;
        left: 26px;
        top: 15px;
    }

    .hex-9 {
        grid-area: 4 / 3;
        position: relative;
        top: 110px;
    }

    .hex-10 {
        grid-area: 4 / 5;
        justify-self: end;
        position: relative;
        right: 25px;
        top: 15px;
    }

    .hex-11 {
        grid-area: 5 / 2;
        justify-self: start;
        position: relative;
        right: 58px;
    }

    .hex-12 {
        grid-area: 5 / 4;
        justify-self: end;
        position: relative;
        left: 58px;
    }
}

@media (max-width: 375px) {

    .hex-2 {
        grid-area: 1 / 3;
        align-self: start;
        position: relative;
        top: 22px;
        display: none;
    }

    .hex-9 {
        grid-area: 4 / 3;
        position: relative;
        top: 110px;
        display: none;
    }

    .hex-item {
        width: 130px;
        height: 150px;
        background-size: cover;
        background-position: center;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
        /* For hover interactivity */
        transition: transform 0.3s ease, filter 0.3s ease;
        transform: scale(1);
    }

    .hex-center-text {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;

        position: relative;
        max-width: 85%;
        height: 74rem;
        line-height: 1.05;
        top: 2%;
    }

    .hex-center-text p {
        margin-bottom: 0rem;
        font-size: clamp(.7rem, .93rem, 1.2rem);
        position: relative;
        top: 0rem;
        overflow-wrap: break-word;
        word-break: break-word;
    }


    .hex-1 {
        grid-area: 1 / 2;
        justify-self: left;
        position: relative;
        right: 58px;
        bottom: 2px;
    }

    .hex-2 {
        grid-area: 1 / 3;
        align-self: start;
        position: relative;
        top: 22px;
    }

    .hex-3 {
        grid-area: 1 / 4;
        justify-self: end;
        position: relative;
        left: 58px;
    }

    .hex-4 {
        grid-area: 2 / 1;
        justify-self: start;
        position: relative;
        left: 26px;
    }

    .hex-5 {
        grid-area: 3 / 2;
        justify-self: left;
        position: relative;
        right: 40px;
    }

    .hex-6 {
        grid-area: 3 / 4;
        justify-self: end;
        position: relative;
        left: 40px;
    }

    .hex-7 {
        grid-area: 2 / 5;
        justify-self: end;
        position: relative;
        right: 26px;
    }

    .hex-8 {
        grid-area: 4 / 1;
        justify-self: start;
        position: relative;
        left: 26px;
        top: 15px;
    }

    .hex-9 {
        grid-area: 4 / 3;
        position: relative;
        top: 110px;
    }

    .hex-10 {
        grid-area: 4 / 5;
        justify-self: end;
        position: relative;
        right: 26px;
        top: 15px;
    }

    .hex-11 {
        grid-area: 5 / 2;
        justify-self: start;
        position: relative;
        right: 58px;
    }

    .hex-12 {
        grid-area: 5 / 4;
        justify-self: end;
        position: relative;
        left: 58px;
    }
}

@media (max-width: 360px) {

    .hex-container {
        max-width: 100%;
        height: auto;
        padding: 7rem 0;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        grid-auto-rows: 164px;
        justify-items: center;
        align-items: center;
        position: relative;
    }

    .hex-2 {
        grid-area: 1 / 3;
        align-self: start;
        position: relative;
        top: 22px;
        display: none;
    }

    .hex-9 {
        grid-area: 4 / 3;
        position: relative;
        top: 110px;
        display: none;
    }

    .hex-item {
        width: 120px;
        height: 140px;
        background-size: cover;
        background-position: center;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
        /* For hover interactivity */
        transition: transform 0.3s ease, filter 0.3s ease;
        transform: scale(1);
    }

    .hex-center-text {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;

        position: relative;
        max-width: 100%;
        height: 65rem;
        line-height: 1.05;
        bottom: 10%;
    }

    .hex-center-text p {
        margin-bottom: 0rem;
        font-size: clamp(.7rem, .93rem, 1.2rem);
        position: relative;
        top: 0rem;
        overflow-wrap: break-word;
        word-break: break-word;
    }


    .hex-1 {
        grid-area: 1 / 2;
        justify-self: left;
        position: relative;
        right: 58px;
        bottom: 2px;
    }

    .hex-2 {
        grid-area: 1 / 3;
        align-self: start;
        position: relative;
        top: 22px;
    }

    .hex-3 {
        grid-area: 1 / 4;
        justify-self: end;
        position: relative;
        left: 58px;
    }

    .hex-4 {
        grid-area: 2 / 1;
        justify-self: start;
        position: relative;
        left: 20px;
    }

    .hex-5 {
        grid-area: 3 / 2;
        justify-self: left;
        position: relative;
        right: 38px;
    }

    .hex-6 {
        grid-area: 3 / 4;
        justify-self: end;
        position: relative;
        left: 38px;
    }

    .hex-7 {
        grid-area: 2 / 5;
        justify-self: end;
        position: relative;
        right: 20px;
    }

    .hex-8 {
        grid-area: 4 / 1;
        justify-self: start;
        position: relative;
        left: 20px;
        top: 15px;
    }

    .hex-9 {
        grid-area: 4 / 3;
        position: relative;
        top: 110px;
    }

    .hex-10 {
        grid-area: 4 / 5;
        justify-self: end;
        position: relative;
        right: 20px;
        top: 15px;
    }

    .hex-11 {
        grid-area: 5 / 2;
        justify-self: start;
        position: relative;
        right: 58px;
    }

    .hex-12 {
        grid-area: 5 / 4;
        justify-self: end;
        position: relative;
        left: 58px;
    }
}

@media (max-width: 344px) {
    .hex-center-text {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;

        position: relative;
        max-width: 100%;
        height: 67rem;
        line-height: 1.05;
        top: 2%;
    }

    .hex-center-text p {
        margin-bottom: 0rem;
        font-size: clamp(.7rem, .91rem, 1.2rem);
        position: relative;
        top: 0rem;
        overflow-wrap: break-word;
        word-break: break-word;
    }
}






















/* --- FEATURE SECTION --- */
.feature-section {
    width: 100%;
    padding: 0.5rem 0.5rem;
}

.section-title-feature {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 700;
    line-height: 0.97;
    text-transform: uppercase;
    color: var(--clr-dark);
    letter-spacing: 2px;
}

.feature-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    padding-bottom: 6rem;
}

.feature-header-text {
    max-width: 400px;
    font-size: 1.12rem;
    color: var(--clr-text-muted);
    line-height: 1.1;
    padding: 0.9rem;
}

.feature-body {
    position: relative;
    padding-bottom: 4rem;
    /* room for overlapping card offset */
}

.feature-image-wrapper {
    width: 53vw;
    max-height: 1200px;
    overflow: hidden;
    border-radius: 15px;
}

.feature-img {
    width: 80vw;
    height: 650px;
    object-fit: cover;
    display: block;
    object-position: 20% 20%;
}



.feature-card {
    position: absolute;
    bottom: 7rem;
    right: 0;
    width: 430px;
    height: 550px;
    background-color: var(--clr-dark-card);
    color: var(--clr-light);
    padding: 2.8rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.4;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

.stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaaaaa;
}

.linea-card {
    border: none;
    border-top: 1px solid white;
    margin-top: .2rem;
    opacity: .68;
}

.card-desc {
    font-size: 1rem;
    line-height: 1.4;
    color: #cccccc;
    margin-bottom: 2.5rem;
    margin-top: 2rem;
}

.card-action {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 3rem;
}

.circle-btn {
    width: 60px;
    height: 60px;
    background-color: var(--clr-primary);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-top: .6rem;
}

.circle-btn:hover {
    transform: scale(1.1);
}

.circle-btn:active {
    transform: scale(1.05);
}

.more-btn img {
    border-radius: 20px;
    width: 15%;
    height: auto;
    transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.more-btn:hover img {
    transform: scale(1.05) translateY(-4px);
}

.card-action-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 0;
}

@media (max-width: 1280px) {

    .feature-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 2rem;
        padding-bottom: 4rem;
    }

    .section-title-feature {
        font-family: var(--font-heading);
        font-size: 5rem;
        font-weight: 700;
        line-height: 0.97;
        text-transform: uppercase;
        color: var(--clr-dark);
        letter-spacing: 2px;
    }

    .feature-header-text {
        max-width: 400px;
        font-size: 1.08rem;
        color: var(--clr-text-muted);
        line-height: 1.1;
        padding: 0.9rem;
    }













    .feature-body {
        position: relative;
        padding-bottom: 3rem;
    }

    .feature-image-wrapper {
        width: 75vw;
        max-height: 1200px;
        overflow: hidden;
        border-radius: 15px;
    }

    .feature-img {
        width: 80vw;
        height: 700px;
        object-fit: cover;
        display: block;
    }
















    .feature-card {
        position: absolute;
        bottom: 7rem;
        right: 0;
        width: 430px;
        height: 73%;
        background-color: var(--clr-dark-card);
        color: var(--clr-light);
        padding: 2.8rem;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .card-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        line-height: 1.4;
    }

    .stat {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .stat-num {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        font-weight: 400;
    }

    .stat-label {
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #aaaaaa;
    }

    .linea-card {
        border: none;
        border-top: 1px solid white;
    }

    .card-desc {
        font-size: 1rem;
        line-height: 1.4;
        color: #cccccc;
        margin-bottom: 2.5rem;
        margin-top: 2rem;
    }

    .card-action {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 4.2rem;
    }

    .circle-btn {
        width: 63px;
        height: 63px;
        background-color: var(--clr-primary);
        border-radius: 50%;
        cursor: pointer;
        transition: transform 0.3s ease;
        margin-top: .5rem;
    }

    .circle-btn:hover {
        transform: scale(1.1);
    }

    .card-action-text {
        font-family: var(--font-heading);
        font-size: 1.2rem;
        text-transform: uppercase;
        line-height: 1;
        font-weight: 0;
    }
}

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

    .feature-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 2rem;
        padding-bottom: 4rem;
    }

    .section-title-feature {
        font-family: var(--font-heading);
        font-size: 5rem;
        font-weight: 700;
        line-height: 0.97;
        text-transform: uppercase;
        color: var(--clr-dark);
        letter-spacing: 2px;
    }

    .feature-header-text {
        max-width: 400px;
        font-size: .95rem;
        color: var(--clr-text-muted);
        line-height: 1.2;
        padding: 0.9rem;
    }












    .feature-body {
        position: relative;
        padding-bottom: 2.5rem;
    }

    .feature-image-wrapper {
        width: 75vw;
        max-height: 1200px;
        overflow: hidden;
        border-radius: 15px;
    }

    .feature-img {
        width: 80vw;
        height: 600px;
        object-fit: cover;
        display: block;
    }













    .feature-card {
        position: absolute;
        bottom: 7rem;
        right: 0;
        width: 410px;
        height: 80%;
        background-color: var(--clr-dark-card);
        color: var(--clr-light);
        padding: 2.8rem;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .card-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        line-height: 1.4;
    }

    .stat {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .stat-num {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        font-weight: 400;
    }

    .stat-label {
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #aaaaaa;
    }

    .linea-card {
        border: none;
        border-top: 1px solid white;
    }

    .card-desc {
        font-size: .95rem;
        line-height: 1.4;
        color: #cccccc;
        margin-bottom: 2.5rem;
        margin-top: 2rem;
    }

    .card-action {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 2.5rem;
    }

    .circle-btn {
        width: 55px;
        height: 55px;
        background-color: var(--clr-primary);
        border-radius: 50%;
        cursor: pointer;
        transition: transform 0.3s ease;
        margin-top: 0rem;
    }

    .circle-btn:hover {
        transform: scale(1.1);
    }

    .card-action-text {
        font-family: var(--font-heading);
        font-size: 1.2rem;
        text-transform: uppercase;
        line-height: 1;
        font-weight: 0;
    }
}

@media (max-width: 1024px) and (max-height: 600px) {}

@media (max-width: 912px) {

    .feature-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding-bottom: 2rem;
    }

    .feature-img {
        height: 470px;
        max-width: 100%;
        object-fit: cover;
        display: block;
    }

    .feature-image-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .feature-card {
        position: relative;
        bottom: 0rem;
        width: 100%;
        margin-top: 0rem;
        border-radius: 0 0 12px 12px;
        height: auto;
        padding: 2.8rem;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .card-desc {
        font-size: .95rem;
        line-height: 1.4;
        color: #cccccc;
        margin-bottom: 2.2rem;
        margin-top: 1.7rem;
    }

    .card-action {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 0rem;
    }
}

@media (max-width: 912px) {


    .feature-img {
        width: 100%;
        height: 35vh;
        object-fit: cover;
        display: block;
        margin-bottom: 2rem;
        border-radius: 15px;
    }

    .feature-image-wrapper {
        width: 100%;
        height: 100%;
        overflow: hidden;
        border-radius: 15px;
    }
}

@media (max-width: 853px) {


    .feature-img {
        width: 100%;
        height: 50vh;
        object-fit: cover;
        display: block;
        margin-bottom: 2rem;
        border-radius: 15px;
    }

    .feature-image-wrapper {
        width: 100%;
        height: 100%;
        overflow: hidden;
        border-radius: 15px;
    }
}

@media (max-width: 820px) {}

@media (max-width: 768px) {}

@media (max-width: 540px) {}

@media (max-width: 430px) {

    .section-title-feature {
        font-family: var(--font-heading);
        font-size: 5rem;
        font-weight: 700;
        line-height: 0.82;
        text-transform: uppercase;
        color: var(--clr-dark);
        letter-spacing: 2px;
    }

    .feature-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding-bottom: 2rem;
    }

    .feature-img {
        height: 470px;
        max-width: 100%;
        object-fit: cover;
        display: block;
        object-position: 30% 20%;
    }

    .feature-image-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .feature-card {
        position: relative;
        bottom: 0rem;
        width: 100%;
        margin-top: 0rem;
        border-radius: 0 0 12px 12px;
        height: auto;
        padding: 2.8rem;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .card-desc {
        font-size: .95rem;
        line-height: 1.4;
        color: #cccccc;
        margin-bottom: 1.6rem;
        margin-top: 1.3rem;
    }

    .card-action {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 0rem;
    }
}

@media (max-width: 414px) {

    .section-title-feature {
        font-family: var(--font-heading);
        font-size: 5rem;
        font-weight: 700;
        line-height: 0.82;
        text-transform: uppercase;
        color: var(--clr-dark);
        letter-spacing: 2px;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .feature-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding-bottom: 2rem;
    }

    .feature-img {
        height: 470px;
        max-width: 100%;
        object-fit: cover;
        display: block;
    }

    .feature-image-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .feature-card {
        position: relative;
        bottom: 0rem;
        width: 100%;
        margin-top: 0rem;
        border-radius: 0 0 12px 12px;
        height: auto;
        padding: 2.8rem;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .card-desc {
        font-size: .95rem;
        line-height: 1.4;
        color: #cccccc;
        margin-bottom: 1.6rem;
        margin-top: 1.3rem;
    }

    .card-action {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 0rem;
    }
}

@media (max-width: 412px) and (max-height: 915px) {

    .section-title-feature {
        font-family: var(--font-heading);
        font-size: 5rem;
        font-weight: 700;
        line-height: 0.82;
        text-transform: uppercase;
        color: var(--clr-dark);
        letter-spacing: 2px;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .feature-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding-bottom: 2rem;
    }

    .feature-img {
        height: 470px;
        max-width: 100%;
        object-fit: cover;
        display: block;
    }

    .feature-image-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .feature-card {
        position: relative;
        bottom: 0rem;
        width: 100%;
        margin-top: 0rem;
        border-radius: 0 0 12px 12px;
        height: auto;
        padding: 2.5rem;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .card-desc {
        font-size: .95rem;
        line-height: 1.4;
        color: #cccccc;
        margin-bottom: 1.6rem;
        margin-top: 1.3rem;
    }

    .card-action {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 0rem;
    }
}

@media (max-width: 390px) {

    .feature-header-text {
        max-width: 400px;
        font-size: .95rem;
        color: var(--clr-text-muted);
        line-height: 1.2;
        padding: 0.9rem;
    }

    .section-title-feature {
        font-family: var(--font-heading);
        font-size: 5rem;
        font-weight: 700;
        line-height: 0.82;
        text-transform: uppercase;
        color: var(--clr-dark);
        letter-spacing: 2px;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .feature-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding-bottom: 2rem;
    }

    .feature-img {
        height: 450px;
        max-width: 100%;
        object-fit: cover;
        display: block;
    }

    .feature-image-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .feature-card {
        position: relative;
        bottom: 0rem;
        width: 100%;
        margin-top: 0rem;
        border-radius: 0 0 12px 12px;
        height: auto;
        padding: 2.4rem;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .card-desc {
        font-size: .94rem;
        line-height: 1.4;
        color: #cccccc;
        margin-bottom: 1.6rem;
        margin-top: 1.3rem;
    }

    .card-action {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 0rem;
    }
}

@media (max-width: 375px) {

    .feature-header-text {
        max-width: 400px;
        font-size: .92rem;
        color: var(--clr-text-muted);
        line-height: 1.2;
        padding: 0.9rem;
    }

    .section-title-feature {
        font-family: var(--font-heading);
        font-size: 4.7rem;
        font-weight: 700;
        line-height: 0.82;
        text-transform: uppercase;
        color: var(--clr-dark);
        letter-spacing: 2px;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .feature-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding-bottom: 2rem;
    }

    .feature-img {
        height: 430px;
        max-width: 100%;
        object-fit: cover;
        display: block;
    }

    .feature-image-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .feature-card {
        position: relative;
        bottom: 0rem;
        width: 100%;
        margin-top: 0rem;
        border-radius: 0 0 12px 12px;
        height: auto;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .card-desc {
        font-size: .92rem;
        line-height: 1.4;
        color: #cccccc;
        margin-bottom: 1.6rem;
        margin-top: 1.3rem;
    }

    .card-action {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 0rem;
    }
}

@media (max-width: 360px) {}

@media (max-width: 344px) {}

























/* --- PROCESS SECTION --- */
.process-section {
    background-color: none;
}

.process-container {
    max-width: 800px;
    padding: 0rem 0;
}

.process-item-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 335px;
}

.process-item-2 {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    padding: 0rem 0;
    height: 280px;
}

.process-item-3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 290px;
}

.process-content-1 {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    max-width: 380px;
    position: relative;
    bottom: 0.9rem;
    line-height: 1.8;
    padding: .2rem .2rem;
    margin-top: 4rem;
}

.process-content-2 {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    max-width: 380px;
    position: relative;
    bottom: 0.5rem;
    line-height: 1.8;
    padding: .2rem .2rem;
    bottom: 2rem;
    margin-top: 3.5rem;
}

.process-content-3 {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    max-width: 380px;
    height: auto;
    position: relative;
    bottom: 0.5rem;
    line-height: 1.8;
    padding: .2rem .2rem;
    bottom: 2.1rem;
    margin-top: 4.5rem;
}

.process-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    letter-spacing: 0.5px;
    line-height: 1;
    position: relative;

    text-transform: uppercase;
    color: var(--clr-dark);

}

.process-text {
    font-size: 1rem;
    color: var(--clr-text-muted);
    line-height: 1.2;
    position: relative;
    top: .5rem;
}

.process-number-1 {
    font-family: var(--font-heading);
    font-size: 21rem;
    font-weight: 500;
    line-height: 1;
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Changed from color:transparent for better compatibility */
    color: transparent;
    flex-shrink: 0;
    position: relative;
    right: 3.4rem;
    top: 2.5rem;

}

.process-number-2 {
    font-family: var(--font-heading);
    font-size: 21rem;
    font-weight: 500;
    line-height: 1;
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Changed from color:transparent for better compatibility */
    color: transparent;
    flex-shrink: 0;
    position: relative;
    left: 5rem;
    top: 1.5rem;
}

.process-number-3 {
    font-family: var(--font-heading);
    font-size: 21rem;
    font-weight: 500;
    line-height: 1;
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Changed from color:transparent for better compatibility */
    color: transparent;
    flex-shrink: 0;
    position: relative;
    right: 4.5rem;
    top: 1.2rem;

}

/* Add background images to numbers */
.num-img-1 {
    background-image: url(/Imagenes/Gallery_3.jpg);
}

.num-img-2 {
    background-image: url(/Imagenes/Gallery_2.jpg);

}

.num-img-3 {
    background-image: url(/Imagenes/Hex_5.jpg);
}

.process-divider {
    border: none;
    height: 3px;
    background-color: var(--clr-divider);
    /* the blue divider line */
    margin: 0.5rem 0;
}


@media (max-width: 1280px) {

    .process-container {
        max-width: 800px;
        padding: 0rem 0;
    }

    .process-item-1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 335px;
    }

    .process-item-2 {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        align-items: center;
        padding: 0rem 0;
        height: 280px;
    }

    .process-item-3 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 290px;
    }

    .process-content-1 {
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: start;
        max-width: 380px;
        position: relative;
        bottom: 0rem;
        top: 6%;
        line-height: 1.8;
        padding: .2rem .2rem;
        margin-top: 0rem;
    }

    .process-content-2 {
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: start;
        max-width: 380px;
        position: relative;
        bottom: 0.5rem;
        line-height: 1.8;
        padding: .2rem .2rem;
        bottom: 0rem;
        margin-top: 0rem;
    }

    .process-content-3 {
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: start;
        max-width: 380px;
        position: relative;
        bottom: 0.5rem;
        line-height: 1.8;
        padding: .2rem .2rem;
        bottom: 0rem;
        margin-top: 0rem;
    }

    .process-title {
        font-family: var(--font-heading);
        font-size: 2.8rem;
        letter-spacing: 0.5px;

        text-transform: uppercase;
        color: var(--clr-dark);

    }

    .process-text {
        font-size: 1rem;
        color: var(--clr-text-muted);
        line-height: 1.2;
    }

    .process-number-1 {
        font-family: var(--font-heading);
        font-size: 21rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        right: 3.4rem;
        top: 2.5rem;
    }

    .process-number-2 {
        font-family: var(--font-heading);
        font-size: 21rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        left: 5rem;
        top: 1.2rem;
    }

    .process-number-3 {
        font-family: var(--font-heading);
        font-size: 21rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        right: 4.5rem;
        top: 1.1rem;

    }
}

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


    .process-container {
        max-width: 800px;
        padding: 0rem 0;
    }

    .process-item-1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 335px;
    }

    .process-item-2 {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        align-items: center;
        padding: 0rem 0;
        height: 280px;
    }

    .process-item-3 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 290px;
    }

    .process-item-1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 335px;
    }

    .process-item-2 {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        align-items: center;
        padding: 0rem 0;
        height: 280px;
    }

    .process-item-3 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 290px;
    }

    .process-content-1 {
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: start;
        max-width: 380px;
        position: relative;
        bottom: 0rem;
        top: 6%;
        line-height: 1.8;
        padding: .2rem .2rem;
    }

    .process-content-2 {
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: start;
        max-width: 380px;
        position: relative;
        bottom: 0.5rem;
        line-height: 1.8;
        padding: .2rem .2rem;
        bottom: 0rem;
    }

    .process-content-3 {
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: start;
        max-width: 380px;
        position: relative;
        bottom: 0.5rem;
        line-height: 1.8;
        padding: .2rem .2rem;
        bottom: 0rem;
    }

    .process-title {
        font-family: var(--font-heading);
        font-size: 2.8rem;
        letter-spacing: 0.5px;

        text-transform: uppercase;
        color: var(--clr-dark);

    }

    .process-text {
        font-size: 1rem;
        color: var(--clr-text-muted);
        line-height: 1.2;
    }

    .process-number-1 {
        font-family: var(--font-heading);
        font-size: 21rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        right: 3.4rem;
        top: 2.5rem;
    }

    .process-number-2 {
        font-family: var(--font-heading);
        font-size: 21rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        left: 5rem;
        top: 1.2rem;
    }

    .process-number-3 {
        font-family: var(--font-heading);
        font-size: 21rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        right: 4.5rem;
        top: 1.1rem;

    }

}

@media (max-width: 1024px) and (max-height: 600px) {}

@media (max-width: 912px) {}

@media (max-width: 853px) {}

@media (max-width: 820px) {}

@media (max-width: 768px) {

    .process-section {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .process-container {
        max-width: 100%;
        padding: 1rem 0;
    }

    .process-item-1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 280px;
    }

    .process-item-2 {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        align-items: center;
        padding: 0rem 0;
        height: 280px;
    }

    .process-item-3 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 290px;
    }

    .process-content-1 {
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: start;
        max-width: 380px;
        position: relative;
        bottom: 0rem;
        top: 0%;
        line-height: 1.8;
        padding: .2rem .2rem;
    }

    .process-content-2 {
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: start;
        max-width: 380px;
        position: relative;
        bottom: 0.5rem;
        line-height: 1.8;
        padding: .2rem .2rem;
        bottom: 0rem;
    }

    .process-content-3 {
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: start;
        max-width: 380px;
        position: relative;
        bottom: 0.5rem;
        line-height: 1.8;
        padding: .2rem .2rem;
        bottom: 0rem;
    }

    .process-title {
        font-family: var(--font-heading);
        font-size: 2.8rem;
        letter-spacing: 0.5px;

        text-transform: uppercase;
        color: var(--clr-dark);

    }

    .process-text {
        font-size: 1rem;
        color: var(--clr-text-muted);
        line-height: 1.2;
    }

    .process-number {
        align-self: flex-start;
    }

    .process-number-1 {
        font-family: var(--font-heading);
        font-size: 18rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        right: 3.4rem;
        top: 1rem;
    }

    .process-number-2 {
        font-family: var(--font-heading);
        font-size: 18rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        left: 3.4rem;
        top: 1.2rem;
    }

    .process-number-3 {
        font-family: var(--font-heading);
        font-size: 18rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        right: 3.4rem;
        top: 1.1rem;

    }

}

@media (max-width: 540px) {

    .process-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .process-container {
        max-width: 100%;
        padding: 1rem 0;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .process-item-1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 300px;
    }

    .process-item-2 {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        align-items: center;
        padding: 0rem 0;
        height: 300px;
    }

    .process-item-3 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 300px;
    }

    .process-content-1 {
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: start;
        max-width: 380px;
        position: relative;
        bottom: 0rem;
        top: 0%;
        line-height: 1.8;
        padding: .2rem .2rem;
    }

    .process-content-2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 380px;
        position: relative;
        bottom: 0rem;
        line-height: 1.8;
        padding: .2rem .2rem;
    }

    .process-content-3 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        max-width: 380px;
        position: relative;
        bottom: 0rem;
        line-height: 1.8;
        padding: .2rem .2rem;
    }

    .process-title {
        font-family: var(--font-heading);
        font-size: 2.8rem;
        letter-spacing: 0.5px;

        text-transform: uppercase;
        color: var(--clr-dark);

    }

    .process-text {
        font-size: .95rem;
        color: var(--clr-text-muted);
        line-height: 1.2;
        position: relative;
        bottom: 1rem;
    }

    .process-number {
        align-self: flex-start;
    }

    .process-number-1 {
        font-family: var(--font-heading);
        font-size: 17rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        right: 0rem;
        top: .8rem;
    }

    .process-number-2 {
        font-family: var(--font-heading);
        font-size: 17rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        left: 0rem;
        top: 1rem;
    }

    .process-number-3 {
        font-family: var(--font-heading);
        font-size: 17rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        right: 0rem;
        top: .9rem;

    }
}

@media (max-width: 430px) {

    .process-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .process-container {
        max-width: 100%;
        padding: 1rem 0;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .process-item-1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 300px;
    }

    .process-item-2 {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        align-items: center;
        padding: 0rem 0;
        height: 300px;
    }

    .process-item-3 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 300px;
    }

    .process-content-1 {
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: start;
        max-width: 380px;
        position: relative;
        bottom: 0rem;
        top: 0%;
        line-height: 1.8;
        padding: .2rem .2rem;
    }

    .process-content-2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 380px;
        position: relative;
        bottom: 0rem;
        line-height: 1.8;
        padding: .2rem .2rem;
    }

    .process-content-3 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        max-width: 380px;
        position: relative;
        bottom: 0rem;
        line-height: 1.8;
        padding: .2rem .2rem;
    }

    .process-title {
        font-family: var(--font-heading);
        font-size: 2.8rem;
        letter-spacing: 0.5px;

        text-transform: uppercase;
        color: var(--clr-dark);

    }

    .process-text {
        font-size: .95rem;
        color: var(--clr-text-muted);
        line-height: 1.2;
        position: relative;
        bottom: 1rem;
    }

    .process-number {
        align-self: flex-start;
    }

    .process-number-1 {
        font-family: var(--font-heading);
        font-size: 15rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        right: 0rem;
        top: .8rem;
    }

    .process-number-2 {
        font-family: var(--font-heading);
        font-size: 15rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        left: 0rem;
        top: 1rem;
    }

    .process-number-3 {
        font-family: var(--font-heading);
        font-size: 15rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        right: 0rem;
        top: .9rem;

    }

}

@media (max-width: 414px) {

    .process-section {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 0rem;
        padding-bottom: 2rem;
    }

    .process-container {
        max-width: 100%;
        padding: 1rem 0;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .process-item-1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 300px;
    }

    .process-item-2 {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        align-items: center;
        padding: 0rem 0;
        height: 300px;
    }

    .process-item-3 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 300px;
    }

    .process-content-1 {
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: start;
        max-width: 380px;
        position: relative;
        bottom: 0rem;
        top: 0%;
        line-height: 1.8;
        padding: .2rem .2rem;
    }

    .process-content-2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 380px;
        position: relative;
        bottom: 0rem;
        line-height: 1.8;
        padding: .2rem .2rem;
    }

    .process-content-3 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        max-width: 380px;
        position: relative;
        bottom: 0rem;
        line-height: 1.8;
        padding: .2rem .2rem;
    }

    .process-title {
        font-family: var(--font-heading);
        font-size: 2.75rem;
        letter-spacing: 0.5px;

        text-transform: uppercase;
        color: var(--clr-dark);

    }

    .process-text {
        font-size: .94rem;
        color: var(--clr-text-muted);
        line-height: 1.2;
        position: relative;
        bottom: 1rem;
    }

    .process-number {
        align-self: flex-start;
    }

    .process-number-1 {
        font-family: var(--font-heading);
        font-size: 15rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        right: 0rem;
        top: .8rem;
    }

    .process-number-2 {
        font-family: var(--font-heading);
        font-size: 15rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        left: 0rem;
        top: 1rem;
    }

    .process-number-3 {
        font-family: var(--font-heading);
        font-size: 15rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        right: 0rem;
        top: .9rem;

    }
}

@media (max-width: 412px) and (max-height: 915px) {}

@media (max-width: 390px) {}

@media (max-width: 375px) {

    .process-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .process-container {
        max-width: 100%;
        padding: 1rem 0;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .process-item-1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 300px;
    }

    .process-item-2 {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        align-items: center;
        padding: 0rem 0;
        height: 300px;
    }

    .process-item-3 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 300px;
    }

    .process-content-1 {
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: start;
        max-width: 380px;
        position: relative;
        bottom: 0rem;
        top: 0%;
        line-height: 1.8;
        padding: .2rem .2rem;
    }

    .process-content-2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 380px;
        position: relative;
        bottom: 0rem;
        line-height: 1.8;
        padding: .2rem .2rem;
    }

    .process-content-3 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        max-width: 380px;
        position: relative;
        bottom: 0rem;
        line-height: 1.8;
        padding: .2rem .2rem;
    }

    .process-title {
        font-family: var(--font-heading);
        font-size: 2.68rem;
        letter-spacing: 0.5px;

        text-transform: uppercase;
        color: var(--clr-dark);

    }

    .process-text {
        font-size: .92rem;
        color: var(--clr-text-muted);
        line-height: 1.2;
        position: relative;
        bottom: 1rem;
    }

    .process-number {
        align-self: flex-start;
    }

    .process-number-1 {
        font-family: var(--font-heading);
        font-size: 14rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        right: 0rem;
        top: .8rem;
    }

    .process-number-2 {
        font-family: var(--font-heading);
        font-size: 14rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        left: 0rem;
        top: 1rem;
    }

    .process-number-3 {
        font-family: var(--font-heading);
        font-size: 14rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        right: 0rem;
        top: .9rem;

    }
}

@media (max-width: 360px) {

    .process-section {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-bottom: 3rem;
        padding-top: 6rem;
    }

    .process-container {
        max-width: 100%;
        padding: 1rem 0;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .process-item-1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 300px;
    }

    .process-item-2 {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        align-items: center;
        padding: 0rem 0;
        height: 300px;
    }

    .process-item-3 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 300px;
    }

    .process-content-1 {
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: start;
        max-width: 380px;
        position: relative;
        bottom: 0rem;
        top: 0%;
        line-height: 1.8;
        padding: .2rem .2rem;
    }

    .process-content-2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 380px;
        position: relative;
        bottom: 0rem;
        line-height: 1.8;
        padding: .2rem .2rem;
    }

    .process-content-3 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        max-width: 380px;
        position: relative;
        bottom: 0rem;
        line-height: 1.8;
        padding: .2rem .2rem;
    }

    .process-title {
        font-family: var(--font-heading);
        font-size: 2.5rem;
        letter-spacing: 0.5px;

        text-transform: uppercase;
        color: var(--clr-dark);

    }

    .process-text {
        font-size: .88rem;
        color: var(--clr-text-muted);
        line-height: 1.2;
        position: relative;
        bottom: 1rem;
    }

    .process-number {
        align-self: flex-start;
    }

    .process-number-1 {
        font-family: var(--font-heading);
        font-size: 14rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        right: 0rem;
        top: .8rem;
    }

    .process-number-2 {
        font-family: var(--font-heading);
        font-size: 14rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        left: 0rem;
        top: 1rem;
    }

    .process-number-3 {
        font-family: var(--font-heading);
        font-size: 14rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        right: 0rem;
        top: .9rem;

    }

}

@media (max-width: 344px) {

    .process-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .process-container {
        max-width: 100%;
        padding: 1rem 0;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .process-item-1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 300px;
    }

    .process-item-2 {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
        align-items: center;
        padding: 0rem 0;
        height: 300px;
    }

    .process-item-3 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 300px;
    }

    .process-content-1 {
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: start;
        max-width: 380px;
        position: relative;
        bottom: 0rem;
        top: 0%;
        line-height: 1.8;
        padding: .2rem .2rem;
    }

    .process-content-2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: 380px;
        position: relative;
        bottom: 0rem;
        line-height: 1.8;
        padding: .2rem .2rem;
    }

    .process-content-3 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        max-width: 380px;
        position: relative;
        bottom: 0rem;
        line-height: 1.8;
        padding: .2rem .2rem;
    }

    .process-title {
        font-family: var(--font-heading);
        font-size: 2.4rem;
        letter-spacing: 0.5px;

        text-transform: uppercase;
        color: var(--clr-dark);

    }

    .process-text {
        font-size: .88rem;
        color: var(--clr-text-muted);
        line-height: 1.2;
        position: relative;
        bottom: 1rem;
    }

    .process-number {
        align-self: flex-start;
    }

    .process-number-1 {
        font-family: var(--font-heading);
        font-size: 14rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        right: 0rem;
        top: .8rem;
    }

    .process-number-2 {
        font-family: var(--font-heading);
        font-size: 14rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        left: 0rem;
        top: 1rem;
    }

    .process-number-3 {
        font-family: var(--font-heading);
        font-size: 14rem;
        font-weight: 500;
        line-height: 1;
        background-size: cover;
        background-position: center;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Changed from color:transparent for better compatibility */
        color: transparent;
        flex-shrink: 0;
        position: relative;
        right: 0rem;
        top: .9rem;

    }

}
























/* --- GALLERY SECTION --- */
.gallery-section {
    background-color: none;
}

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

.gallery-info {
    margin-bottom: 1rem;
}

.btn-info-gallery {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-weight: 510;
    font-size: .95rem;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.section-title-gallery {
    font-family: var(--font-heading);
    font-size: 7.7rem;
    font-weight: 700;
    line-height: 0.97;
    text-transform: uppercase;
    color: var(--clr-dark);
    letter-spacing: 2px;
    position: relative;
    top: 0.5rem;
    margin-bottom: 1.1rem;
}

/* Masonry Overlapping Collage */
.gallery-composition {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 750px;
}

.g-img {
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.6s ease-in-out;
    will-change: transform;
    box-shadow: 06px 04px 3px rgba(0, 0, 0, 0.3);

}

.g-img:hover {
    transform: translateY(-5px);
    z-index: 10 !important;
}

.g-img:active {
    transform: translateY(-2px);
    z-index: 10 !important;
}

.g-img-1 {
    aspect-ratio: 27 / 20;
    max-height: 320px;
    z-index: 1;
    position: absolute;
    right: 90.2%;
}

.g-img-2 {
    aspect-ratio: 27 / 20;
    height: 425px;
    z-index: 2;
    position: absolute;
    right: 53.5%;

}

.g-img-3 {
    aspect-ratio: 27 / 20;
    height: 535px;
    z-index: 3;
    position: absolute;
    left: 22.5%;

}

.g-img-4 {
    aspect-ratio: 27 / 20;
    height: 645px;
    z-index: 4;
    position: absolute;
    left: 53%
}

@media(max-width: 1280px) {

    .gallery-section {
        padding-top: 9rem;
        padding-bottom: 7rem;
    }

    .gallery-info {
        margin-bottom: 3rem;
    }


    .btn-info-gallery {
        display: inline-block;
        padding: 10px 24px;
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 1rem;
        text-transform: uppercase;
        border-radius: 50px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .section-title-gallery {
        font-family: var(--font-heading);
        font-size: 7.7rem;
        font-weight: 700;
        line-height: 0.85;
        text-transform: uppercase;
        color: var(--clr-dark);
        letter-spacing: 2px;
        position: relative;
        top: 0.5rem;
        margin-bottom: 2.75rem;
    }

    .gallery-composition {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        height: 30rem;
    }



    .g-img-1 {
        aspect-ratio: 27 / 20;
        max-height: 200px;
        z-index: 1;
        position: absolute;
        right: 76.1%;
    }

    .g-img-2 {
        aspect-ratio: 27 / 20;
        height: 266px;
        z-index: 2;
        position: absolute;
        right: 54%;

    }

    .g-img-3 {
        aspect-ratio: 27 / 20;
        height: 355px;
        z-index: 3;
        position: absolute;
        left: 31.5%;

    }

    .g-img-4 {
        aspect-ratio: 27 / 20;
        height: 403px;
        z-index: 4;
        position: absolute;
        left: 53%
    }
}

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

    .gallery-section {
        padding-top: 7rem;
        padding-bottom: 5rem;
    }

    .gallery-info {
        margin-bottom: 1rem;
    }



    .btn-info-gallery {
        display: inline-block;
        padding: 10px 24px;
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 1rem;
        text-transform: uppercase;
        border-radius: 50px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .section-title-gallery {
        font-family: var(--font-heading);
        font-size: 7.6rem;
        font-weight: 700;
        line-height: 0.85;
        text-transform: uppercase;
        color: var(--clr-dark);
        letter-spacing: 2px;
        position: relative;
        top: 0.5rem;
        margin-bottom: 1.8rem;
    }

    .gallery-composition {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        height: 24rem;
    }



    .g-img-1 {
        aspect-ratio: 27 / 20;
        max-height: 160px;
        z-index: 1;
        position: absolute;
        right: 77%;
    }

    .g-img-2 {
        aspect-ratio: 27 / 20;
        height: 213px;
        z-index: 2;
        position: absolute;
        right: 54%;

    }

    .g-img-3 {
        aspect-ratio: 27 / 20;
        height: 268px;
        z-index: 3;
        position: absolute;
        left: 34%;

    }

    .g-img-4 {
        aspect-ratio: 27 / 20;
        height: 323px;
        z-index: 4;
        position: absolute;
        left: 54.5%
    }
}

@media (max-width: 912px) {

    .gallery-section {
        padding-top: 7rem;
        padding-bottom: 5rem;
    }

    .gallery-info {
        margin-bottom: 1rem;
    }




    .btn-info-gallery {
        display: inline-block;
        padding: 10px 24px;
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 1rem;
        text-transform: uppercase;
        border-radius: 50px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .section-title-gallery {
        font-family: var(--font-heading);
        font-size: 8.8rem;
        font-weight: 700;
        line-height: 0.85;
        text-transform: uppercase;
        color: var(--clr-dark);
        letter-spacing: 2px;
        position: relative;
        top: 0.5rem;
        margin-bottom: 1.8rem;
    }

    .gallery-composition {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        height: 50rem;
    }




    .g-img-1 {
        aspect-ratio: 35 / 20;
        max-height: 380px;
        z-index: 4;
        position: absolute;
        right: 12%;
        top: 10%;
    }

    .g-img-2 {
        aspect-ratio: 35 / 20;
        height: 380px;
        z-index: 3;
        position: absolute;
        right: 12%;
        top: 20%;

    }

    .g-img-3 {
        aspect-ratio: 35 / 20;
        height: 380px;
        z-index: 2;
        position: absolute;
        left: 11.6%;
        top: 30%;

    }

    .g-img-4 {
        aspect-ratio: 35 / 20;
        height: 380px;
        z-index: 1;
        position: absolute;
        left: 11.6%;
        top: 40%;
    }
}

@media (max-width: 853px) {

    .gallery-section {
        padding-top: 7rem;
        padding-bottom: 5rem;
    }

    .gallery-info {
        margin-bottom: 1rem;
    }




    .btn-info-gallery {
        display: inline-block;
        padding: 14px 34px;
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 1rem;
        text-transform: uppercase;
        border-radius: 50px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .section-title-gallery {
        font-family: var(--font-heading);
        font-size: 8.8rem;
        font-weight: 700;
        line-height: 0.85;
        text-transform: uppercase;
        color: var(--clr-dark);
        letter-spacing: 2px;
        position: relative;
        top: 0.5rem;
        margin-bottom: 1.8rem;
    }

    .gallery-composition {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        height: 50rem;
    }




    .g-img-1 {
        aspect-ratio: 31 / 20;
        max-height: 400px;
        z-index: 4;
        position: absolute;
        right: 11.1%;
        top: 10%;
    }

    .g-img-2 {
        aspect-ratio: 31 / 20;
        height: 400px;
        z-index: 3;
        position: absolute;
        right: 11.1%;
        top: 21%;

    }

    .g-img-3 {
        aspect-ratio: 31 / 20;
        height: 400px;
        z-index: 2;
        position: absolute;
        left: 11.1%;
        top: 33%;

    }

    .g-img-4 {
        aspect-ratio: 31 / 20;
        height: 400px;
        z-index: 1;
        position: absolute;
        left: 11.1%;
        top: 45%;
    }
}

@media (max-width: 820px) {

    .gallery-composition {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        height: 72vh;
    }

    .g-img-1 {
        aspect-ratio: 30 / 20;
        max-height: 400px;
        z-index: 4;
        position: absolute;
        right: 11.5%;
        top: 10%;
    }

    .g-img-2 {
        aspect-ratio: 30 / 20;
        height: 400px;
        z-index: 3;
        position: absolute;
        right: 11.5%;
        top: 20%;

    }

    .g-img-3 {
        aspect-ratio: 30 / 20;
        height: 400px;
        z-index: 2;
        position: absolute;
        left: 11.5%;
        top: 30%;

    }

    .g-img-4 {
        aspect-ratio: 30 / 20;
        height: 400px;
        z-index: 1;
        position: absolute;
        left: 11.5%;
        top: 40%;
    }
}

@media (max-width: 768px) {

    .gallery-composition {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        height: 75vh;
    }

    .g-img-1 {
        aspect-ratio: 28 / 20;
        max-height: 400px;
        z-index: 4;
        position: absolute;
        right: 11.5%;
        top: 9%;
    }

    .g-img-2 {
        aspect-ratio: 28 / 20;
        height: 400px;
        z-index: 3;
        position: absolute;
        right: 11.5%;
        top: 18%;

    }

    .g-img-3 {
        aspect-ratio: 28 / 20;
        height: 400px;
        z-index: 2;
        position: absolute;
        left: 11.5%;
        top: 27%;

    }

    .g-img-4 {
        aspect-ratio: 28 / 20;
        height: 400px;
        z-index: 1;
        position: absolute;
        left: 11.5%;
        top: 36%;
    }
}

@media (max-width: 540px) {

    .gallery-container {
        display: flex;
        flex-direction: column;
        height: 120vh;
    }

    .gallery-composition {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        height: auto;
    }

    .gallery-section {
        padding-top: 7rem;
        padding-bottom: 5rem;
        height: auto;
    }

    .gallery-info {
        margin-bottom: 1rem;
    }




    .btn-info-gallery {
        display: inline-block;
        padding: 10px 30px;
        font-family: var(--font-body);
        font-weight: 500;
        font-size: .9rem;
        text-transform: uppercase;
        border-radius: 50px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .section-title-gallery {
        font-family: var(--font-heading);
        font-size: 7rem;
        font-weight: 700;
        line-height: 0.85;
        text-transform: uppercase;
        color: var(--clr-dark);
        letter-spacing: 2px;
        position: relative;
        top: 0.5rem;
        margin-bottom: 1.8rem;
    }

    .gallery-composition {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        height: 50rem;
    }




    .g-img-1 {
        aspect-ratio: 29 / 20;
        max-height: 280px;
        z-index: 4;
        position: absolute;
        right: 9.4%;
        top: 9%;
    }

    .g-img-2 {
        aspect-ratio: 29 / 20;
        height: 208px;
        z-index: 3;
        position: absolute;
        right: 9.4%;
        top: 18%;

    }

    .g-img-3 {
        aspect-ratio: 29 / 20;
        height: 280px;
        z-index: 2;
        position: absolute;
        left: 9.4%;
        top: 27%;

    }

    .g-img-4 {
        aspect-ratio: 29 / 20;
        height: 280px;
        z-index: 1;
        position: absolute;
        left: 9.4%;
        top: 36%;
    }
}

@media (max-width: 430px) {

    .gallery-container {
        display: flex;
        flex-direction: column;
        height: 90vh;
    }

    .gallery-composition {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        height: auto;
    }

    .gallery-section {
        padding-top: 7rem;
        padding-bottom: 5rem;
        height: auto;
    }

    .gallery-info {
        margin-bottom: 1rem;
    }



    .btn-info-gallery {
        display: inline-block;
        padding: 9px 26px;
        font-family: var(--font-body);
        font-weight: 500;
        font-size: .8rem;
        text-transform: uppercase;
        border-radius: 50px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .section-title-gallery {
        font-family: var(--font-heading);
        font-size: 5.5rem;
        font-weight: 700;
        line-height: 0.85;
        text-transform: uppercase;
        color: var(--clr-dark);
        letter-spacing: 2px;
        position: relative;
        top: 0.5rem;
        margin-bottom: 1.8rem;
    }

    .gallery-composition {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        height: 50rem;
    }




    .g-img-1 {
        aspect-ratio: 29 / 20;
        max-height: 270px;
        z-index: 4;
        position: absolute;
        right: 0%;
        top: 9%;
    }

    .g-img-2 {
        aspect-ratio: 29 / 20;
        height: 270px;
        z-index: 3;
        position: absolute;
        right: 0%;
        top: 18%;

    }

    .g-img-3 {
        aspect-ratio: 29 / 20;
        height: 270px;
        z-index: 2;
        position: absolute;
        left: 0%;
        top: 27%;

    }

    .g-img-4 {
        aspect-ratio: 29 / 20;
        height: 270px;
        z-index: 1;
        position: absolute;
        left: 0%;
        top: 36%;
    }

}

@media (max-width: 414px) {

    .gallery-container {
        display: flex;
        flex-direction: column;
        height: 90vh;
    }

    .gallery-composition {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        height: auto;
    }

    .gallery-section {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
        height: auto;
    }

    .gallery-info {
        margin-bottom: 1rem;
    }



    .btn-info-gallery {
        display: inline-block;
        padding: 9px 26px;
        font-family: var(--font-body);
        font-weight: 500;
        font-size: .8rem;
        text-transform: uppercase;
        border-radius: 50px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .section-title-gallery {
        font-family: var(--font-heading);
        font-size: 5.5rem;
        font-weight: 700;
        line-height: 0.85;
        text-transform: uppercase;
        color: var(--clr-dark);
        letter-spacing: 2px;
        position: relative;
        top: 0.5rem;
        margin-bottom: 1.8rem;
    }

    .gallery-composition {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        height: 50rem;
    }




    .g-img-1 {
        aspect-ratio: 29 / 20;
        max-height: 270px;
        z-index: 4;
        position: absolute;
        right: 0%;
        top: 10%;
    }

    .g-img-2 {
        aspect-ratio: 29 / 20;
        height: 270px;
        z-index: 3;
        position: absolute;
        right: 0%;
        top: 18%;

    }

    .g-img-3 {
        aspect-ratio: 29 / 20;
        height: 270px;
        z-index: 2;
        position: absolute;
        left: 0%;
        top: 27%;

    }

    .g-img-4 {
        aspect-ratio: 29 / 20;
        height: 270px;
        z-index: 1;
        position: absolute;
        left: 0%;
        top: 36%;
    }

}

@media (max-width: 412px) and (max-height: 915px) {

    .gallery-container {
        display: flex;
        flex-direction: column;
        height: 90vh;
    }

    .gallery-composition {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        height: auto;
    }

    .gallery-section {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
        height: auto;
    }

    .gallery-info {
        margin-bottom: 1rem;
    }



    .btn-info-gallery {
        display: inline-block;
        padding: 9px 26px;
        font-family: var(--font-body);
        font-weight: 500;
        font-size: .8rem;
        text-transform: uppercase;
        border-radius: 50px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .section-title-gallery {
        font-family: var(--font-heading);
        font-size: 5.5rem;
        font-weight: 700;
        line-height: 0.85;
        text-transform: uppercase;
        color: var(--clr-dark);
        letter-spacing: 2px;
        position: relative;
        top: 0.5rem;
        margin-bottom: 1.8rem;
    }

    .gallery-composition {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        height: 50rem;
    }




    .g-img-1 {
        aspect-ratio: 29 / 20;
        max-height: 270px;
        z-index: 4;
        position: absolute;
        right: 0%;
        top: 10%;
    }

    .g-img-2 {
        aspect-ratio: 29 / 20;
        height: 270px;
        z-index: 3;
        position: absolute;
        right: 0%;
        top: 18%;

    }

    .g-img-3 {
        aspect-ratio: 29 / 20;
        height: 270px;
        z-index: 2;
        position: absolute;
        left: 0%;
        top: 27%;

    }

    .g-img-4 {
        aspect-ratio: 29 / 20;
        height: 270px;
        z-index: 1;
        position: absolute;
        left: 0%;
        top: 36%;
    }

}

@media (max-width: 390px) {

    .gallery-container {
        display: flex;
        flex-direction: column;
        height: 90vh;
    }

    .gallery-composition {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        height: auto;
    }

    .gallery-section {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
        height: auto;
    }

    .gallery-info {
        margin-bottom: .3rem;
    }



    .btn-info-gallery {
        display: inline-block;
        padding: 9px 26px;
        font-family: var(--font-body);
        font-weight: 500;
        font-size: .8rem;
        text-transform: uppercase;
        border-radius: 50px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .section-title-gallery {
        font-family: var(--font-heading);
        font-size: 5.5rem;
        font-weight: 700;
        line-height: 0.85;
        text-transform: uppercase;
        color: var(--clr-dark);
        letter-spacing: 2px;
        position: relative;
        top: 0.5rem;
        margin-bottom: 1.8rem;
    }

    .gallery-composition {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        height: 50rem;
    }




    .g-img-1 {
        aspect-ratio: 29 / 20;
        max-height: 270px;
        z-index: 4;
        position: absolute;
        right: 0%;
        top: 14%;
    }

    .g-img-2 {
        aspect-ratio: 29 / 20;
        height: 270px;
        z-index: 3;
        position: absolute;
        right: 0%;
        top: 18%;

    }

    .g-img-3 {
        aspect-ratio: 29 / 20;
        height: 270px;
        z-index: 2;
        position: absolute;
        left: 0%;
        top: 27%;

    }

    .g-img-4 {
        aspect-ratio: 29 / 20;
        height: 270px;
        z-index: 1;
        position: absolute;
        left: 0%;
        top: 36%;
    }

}

@media (max-width: 375px) {

    .gallery-container {
        display: flex;
        flex-direction: column;
        height: 120vh;
    }

    .gallery-composition {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        height: auto;
    }

    .gallery-section {
        padding-top: 4.2rem;
        padding-bottom: 4.2rem;
        height: auto;
    }

    .gallery-info {
        margin-bottom: .3rem;
    }



    .btn-info-gallery {
        display: inline-block;
        padding: 9px 26px;
        font-family: var(--font-body);
        font-weight: 500;
        font-size: .75rem;
        text-transform: uppercase;
        border-radius: 50px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .section-title-gallery {
        font-family: var(--font-heading);
        font-size: 5.4rem;
        font-weight: 700;
        line-height: 0.85;
        text-transform: uppercase;
        color: var(--clr-dark);
        letter-spacing: 2px;
        position: relative;
        top: 0.5rem;
        margin-bottom: 1.8rem;
    }

    .gallery-composition {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        height: 50rem;
    }




    .g-img-1 {
        aspect-ratio: 29 / 20;
        max-height: 270px;
        z-index: 4;
        position: absolute;
        right: 0%;
        top: 15%;
    }

    .g-img-2 {
        aspect-ratio: 29 / 20;
        height: 270px;
        z-index: 3;
        position: absolute;
        right: 0%;
        top: 18%;

    }

    .g-img-3 {
        aspect-ratio: 29 / 20;
        height: 270px;
        z-index: 2;
        position: absolute;
        left: 0%;
        top: 27%;

    }

    .g-img-4 {
        aspect-ratio: 29 / 20;
        height: 270px;
        z-index: 1;
        position: absolute;
        left: 0%;
        top: 36%;
    }

}

@media (max-width: 360px) {

    .gallery-container {
        display: flex;
        flex-direction: column;
        height: 100vh;
    }

    .gallery-composition {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        height: auto;
    }

    .gallery-section {
        padding-top: 4.2rem;
        padding-bottom: 4.2rem;
        height: auto;
    }

    .gallery-info {
        margin-bottom: .3rem;
    }



    .btn-info-gallery {
        display: inline-block;
        padding: 9px 26px;
        font-family: var(--font-body);
        font-weight: 500;
        font-size: .73rem;
        text-transform: uppercase;
        border-radius: 50px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .section-title-gallery {
        font-family: var(--font-heading);
        font-size: 5.1rem;
        font-weight: 700;
        line-height: 0.85;
        text-transform: uppercase;
        color: var(--clr-dark);
        letter-spacing: 2px;
        position: relative;
        top: 0.5rem;
        margin-bottom: 1.8rem;
    }

    .gallery-composition {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        height: 50rem;
    }




    .g-img-1 {
        aspect-ratio: 29 / 20;
        max-height: 270px;
        z-index: 4;
        position: absolute;
        right: 0%;
        top: 15%;
    }

    .g-img-2 {
        aspect-ratio: 29 / 20;
        height: 270px;
        z-index: 3;
        position: absolute;
        right: 0%;
        top: 18%;

    }

    .g-img-3 {
        aspect-ratio: 29 / 20;
        height: 270px;
        z-index: 2;
        position: absolute;
        left: 0%;
        top: 27%;

    }

    .g-img-4 {
        aspect-ratio: 29 / 20;
        height: 270px;
        z-index: 1;
        position: absolute;
        left: 0%;
        top: 36%;
    }

}

@media (max-width: 344px) {

    .gallery-container {
        display: flex;
        flex-direction: column;
        height: 85vh;
    }

    .gallery-composition {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        height: auto;
    }

    .gallery-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
        height: auto;
    }

    .gallery-info {
        margin-bottom: .3rem;
    }



    .btn-info-gallery {
        display: inline-block;
        padding: 9px 26px;
        font-family: var(--font-body);
        font-weight: 500;
        font-size: .73rem;
        text-transform: uppercase;
        border-radius: 50px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .section-title-gallery {
        font-family: var(--font-heading);
        font-size: 4.7rem;
        font-weight: 700;
        line-height: 0.9;
        text-transform: uppercase;
        color: var(--clr-dark);
        letter-spacing: 2px;
        position: relative;
        top: 0.5rem;
        margin-bottom: 1.8rem;
    }

    .gallery-composition {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: 100%;
        height: 50rem;
    }




    .g-img-1 {
        aspect-ratio: 29 / 20;
        max-height: 270px;
        z-index: 4;
        position: absolute;
        right: 0%;
        top: 15%;
    }

    .g-img-2 {
        aspect-ratio: 29 / 20;
        height: 270px;
        z-index: 3;
        position: absolute;
        right: 0%;
        top: 18%;

    }

    .g-img-3 {
        aspect-ratio: 29 / 20;
        height: 270px;
        z-index: 2;
        position: absolute;
        left: 0%;
        top: 27%;

    }

    .g-img-4 {
        aspect-ratio: 29 / 20;
        height: 270px;
        z-index: 1;
        position: absolute;
        left: 0%;
        top: 36%;
    }

}





















/* --- FOOTER --- */
.footer {
    background-color: var(--clr-light);
    border-top: 1px solid #eaeaea;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Marquee */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;

    border-bottom: 1px solid #eaeaea;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.gsap-marquee {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    will-change: transform;
}

.gsap-marquee span {
    white-space: nowrap;
}

.marquee {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



.logo-marquee {
    flex: 0 0 auto;
    width: 180px;
    height: 5vh;
    font-family: var(--font-heading);
    font-size: 2.9rem;
    letter-spacing: .5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #cccccc;
    font-weight: bold;
    border-radius: 15px;
    margin: 0 1;
}

.marquee span {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #e0e0e0;
    text-transform: uppercase;
    margin-right: 2rem;
}

/* Footer Bottom */
.footer .footer-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1350px;
    min-height: 70vh;
    /* cambiado de height */
    opacity: 1;
}

.footer .footer-left {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    bottom: 0rem;
}

.footer .footer-left h4 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.1;
    position: relative;
    top: 3.2rem;
    text-transform: uppercase;
}

.footer .footer-left p {
    font-size: 1.15rem;
    color: var(--clr-text-muted);
    line-height: 1.2;
    margin-top: 3.5rem;
}

.footer .footer-words {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    line-height: 1.9;
    width: 70%;
    height: auto;
    padding: .2rem .2rem;
}

.footer .footer-words h4 {
    margin-bottom: .5rem;
}

.footer .footer-center {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.footer .footer-dots {
    display: flex;
    position: relative;
    top: 3rem;
    gap: 8px;
    left: .25rem;
}

.footer .footer-dots .dot {
    width: 50px;
    height: 50px;
    background-color: none;
    border-radius: 50%;
    transition: transform 1.5s ease;
}

.footer .footer-dots .dot:hover {
    transform: scale(1.1);
}

.footer .footer-dots .dot:active {
    transform: scale(1.05);
}

.whatsapp img {
    width: 96%;
    height: 96%;
    margin-top: 0%;
    margin-left: 0%;
}

.footer .footer-right {
    grid-row: 2;
    grid-column: 3;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.footer .footer-logo {
    width: 100%;
    height: auto;
    text-align: right;
    font-family: var(--font-heading);
    line-height: 1;
}

.footer .logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.footer .logo-subtext {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */






@media(max-width: 1280px) {

    .footer .footer-bottom {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 1350px;
        min-height: 68vh;
    }

    .footer .footer-left h4 {
        font-size: 2.8rem;
        line-height: 1.1;
        position: relative;
        top: 3.2rem;
        text-transform: uppercase;
    }

    .footer .footer-left p {
        color: var(--clr-text-muted);
        line-height: 1.2;
        margin-top: 3.5rem;
        font-size: 1.1rem;
    }

    .footer .footer-words {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        position: relative;
        line-height: 1.9;
        width: 100%;
        height: auto;
        padding: .2rem .2rem;
    }

    .footer .footer-dots {
        top: 3rem;
        gap: 8px;
        left: .25rem;
    }

    .footer .footer-logo {
        text-align: right;
    }

}

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

    .footer .footer-bottom {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        max-width: 1350px;
        min-height: auto;
    }

    .footer .footer-left {
        width: 100%;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        bottom: 0rem;
    }

    .footer .footer-left h4 {
        font-size: 2.8rem;
        line-height: 1.1;
        position: relative;
        top: 3.2rem;
        text-transform: uppercase;
    }

    .footer .footer-left p {
        color: var(--clr-text-muted);
        line-height: 1.2;
        margin-top: 3.5rem;
        font-size: 1.1rem;
    }

    .footer .footer-words {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        position: relative;
        line-height: 1.9;
        width: 100%;
        height: auto;
        padding: .2rem .2rem;
    }

    .footer .footer-dots {
        top: 0rem;
        gap: 8px;
        left: .25rem;
    }

    .footer .footer-logo {
        text-align: right;
        padding: 3rem 0rem;
    }

}

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

    .footer .footer-bottom {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 1350px;
        min-height: 75vh;
    }

    .footer .footer-left h4 {
        font-size: 2.8rem;
        line-height: 1.1;
        position: relative;
        top: 3.2rem;
        text-transform: uppercase;
    }

    .footer .footer-left p {
        color: var(--clr-text-muted);
        line-height: 1.2;
        margin-top: 3.5rem;
        font-size: 1.1rem;
    }

    .footer .footer-words {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        position: relative;
        line-height: 1.9;
        width: 100%;
        height: auto;
        padding: .2rem .2rem;
    }

    .footer .footer-dots {
        top: 3rem;
        gap: 8px;
        left: .25rem;
    }

    .footer .footer-logo {
        text-align: right;
    }

}

@media (max-width: 912px) {
    .footer .footer-bottom {
        min-height: 35vh;
    }
}

@media (max-width: 853px) {}

@media (max-width: 820px) {}

@media (max-width: 768px) {}

@media (max-width: 540px) {}

@media (max-width: 430px) {}

@media (max-width: 414px) {}

@media (max-width: 412px) and (max-height: 915px) {}

@media (max-width: 390px) {}

@media (max-width: 375px) {
    .footer .footer-bottom {
        min-height: 25vh;
    }
}

@media (max-width: 360px) {}

@media (max-width: 344px) {}