@font-face {
    font-family: "NB";
    src: url(./NBInternationalProBoo.ttf);
}

@font-face {
    font-family: "mainFont";
    src: url(./Rejouice-Headline.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "NB";

}


*::selection {
    background-color: black;
    color: #faf8f3;
}


@media (max-width: 900px) {
    .contact-nav {
        padding: 1.1rem 6vw;
    }

    .contact-links {
        gap: 0.9rem;
    }

    .contact-links a {
        font-size: 0.9rem;
    }

    .luxe-wrapper {
        padding: 10vw 6vw 12vw;
    }

    .hero-title {
        font-size: clamp(42px, 10vw, 64px);
    }

    .hero-sub {
        font-size: 1rem;
    }

    .contact-columns {
        gap: 1.6rem;
        padding: 2rem 0;
    }

    .inline-form {
        flex-direction: column;
        align-items: flex-start;
        border-bottom: none;
        padding-bottom: 0;
    }

    .inline-form::after {
        display: none;
    }

    .inline-form input {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .luxe-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

html,
body {
    width: 100%;
    height: 100%;

}

#cursor {
    height: 7vw;
    width: 7vw;
    background-color: rgba(0, 0, 0, 0.564);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 500;
    position: fixed;
    z-index: 1;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

}

@media (max-width: 768px) {
    #cursor {
        height: 12vw;
        width: 12vw;
    }
}

@media (max-width: 480px) {
    #cursor {
        height: 15vw;
        width: 15vw;
    }
}




#page-1 {
    width: 100%;
    height: 100vh;
    position: relative;

}



#page-1 video {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;

}

#p1-content {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    color: #FFFCF1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9vw;
    z-index: 2;

}

#heading {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 3vw 3vw;
    font-size: 1.4vw;
}

#navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.6vw 3vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 120;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 60%, transparent 100%);
    backdrop-filter: blur(10px);
    color: #faf8f3;
}

.nav-brand {
    font-size: 1.2vw;
    letter-spacing: 0.08vw;
    text-transform: uppercase;
}

.nav-brand img {
    height: clamp(24px, 5vw, 58px);
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.8vw;
    align-items: center;
}

.nav-links a {
    color: #faf8f3;
    text-decoration: none;
    font-size: 1vw;
    letter-spacing: 0.12vw;
    text-transform: uppercase;
    padding: 0.4vw 0.2vw;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2vw;
    width: 100%;
    height: 1px;
    background: #faf8f3;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

#nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
}

#nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #faf8f3;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#navbar.open #nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

#navbar.open #nav-toggle span:nth-child(2) {
    opacity: 0;
}

#navbar.open #nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

#navbar.open .nav-links {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
}


#p1-content h1 {
    font-family: "mainFont";
    font-size: 27vw;
    font-weight: 400;
    line-height: 30vw;


}

#main-cover {
    margin-left: 12%;
    margin-top: 38vh;
    height: 58vh;
    width: 95%;
    overflow: hidden;
}

#p1-content h1 span {
    font-family: "mainFont";
    display: inline-block;
}

#page-2 {
    height: 100vh;
    width: 100%;
    position: relative;
    background-color: #faf8f3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#p2-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1.8vw 2.8vw;
}

#p2-header h3 {
    margin-top: 3vw;
    font-size: 1.7vw;
    font-weight: 100;
}

#page-2 hr,
#page-2 hr {
    width: 90%;
}

.cover1,
.cover3,
.cover4 {
    overflow: hidden;
}

.cover1 h1,
.cover3 h1,
.cover4 h1 {
    font-size: 4.2vw;
    font-weight: 100;
    letter-spacing: -0.1vw;

}

#page-3 {
    min-height: 100vh;
    width: 100%;
    position: relative;
    background-color: #faf8f3;
}

#pg3head h4 {
    text-align: center;
    font-size: 1.2vw;
    font-weight: 200;
    margin-bottom: 2vw;

}

#pg3head h4 span {
    background-color: black;
    color: #faf8f3;
    padding: 5px 11px;
    border-radius: 100px;
    font-size: 0.9vw;
}



#pg3head .cover2 {
    text-align: center;
}

.cover2 {
    overflow: hidden;
}

.cover2 h1 {
    font-size: 4.2vw;
    font-weight: 100;

}

#contenthead {
    width: 100%;
    padding: 2vw;
    margin-top: 9vw;
    display: flex;
    justify-content: space-between;

}

#contenthead h2 {
    padding: 0 0.4vw;
    font-size: 1.8vw;
    font-weight: 100;
    cursor: pointer;

}

.p3Content {
    margin: 0 2vw;
    width: 95%;
    height: 40vw;
    display: flex;
    justify-content: space-between;
}

.p3Content #inner {
    height: 97%;
    width: 32.5%;
    position: relative;

}

.p3Content #inner video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
}

.p3Content #inner img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    transition: all linear 0.3s;
}


.p3Content #inner:hover> :nth-child(2) {
    opacity: 0;
}

.p3Content #inner> :nth-child(1) {
    object-fit: contain;
    height: 2.7vw;
    width: 100%;
    position: absolute;
    z-index: 3;
    top: 30vw;

}

#page-4 {
    display: none;
}

#page-5 {
    background: #faf8f3;
    min-height: 100vh;
    width: 100%;
    position: relative;
    padding: 6vw 6vw 8vw;
    overflow: hidden;
}

.solutions-section::before,
.solutions-section::after {
    content: "";
    position: absolute;
    inset: 6% 10% auto 10%;
    height: 42vh;
    background: radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.06), transparent 45%),
        radial-gradient(circle at 80% 40%, rgba(0, 0, 0, 0.04), transparent 50%);
    filter: blur(18px);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.solutions-section::after {
    inset: auto 12% 4% 12%;
    height: 32vh;
    background: radial-gradient(circle at 30% 40%, rgba(0, 0, 0, 0.05), transparent 55%),
        radial-gradient(circle at 70% 40%, rgba(0, 0, 0, 0.05), transparent 60%);
}

.solutions-intro {
    text-align: center;
    margin: 0 0 3vw;
    max-width: 70vw;
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.solutions-intro h1 {
    font-size: 5vw;
    font-weight: 300;
    letter-spacing: -0.1vw;
    margin-bottom: 1vw;
}

.solutions-intro p {
    font-size: 1.2vw;
    line-height: 1.7;
    color: #2f2f2b;
}

.solutions-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2vw;
    flex-wrap: wrap;
    margin-bottom: 2vw;
}

.solutions-header .headline h2 {
    font-size: 3.4vw;
    font-weight: 200;
    letter-spacing: -0.08vw;
}

.solutions-header .headline p {
    margin-top: 0.6vw;
    font-size: 1.2vw;
    max-width: 38vw;
    color: #2f2f2b;
    line-height: 1.6;
}

.tag {
    padding: 0.65vw 1.6vw;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.14vw;
    font-size: 0.95vw;
    background: #ffffff;
}

.solution-grid {
    display: flex;
    flex-direction: column;
    gap: 1.8vw;
    width: 100%;
    position: relative;
    z-index: 1;
}

.solution-scroll-arrows {
    position: sticky;
    top: 24vh;
    display: flex;
    gap: 0.8vw;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 1vw;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 3;
}

.solution-scroll-arrows.visible {
    opacity: 1;
}

.solution-arrow {
    width: 3.4vw;
    height: 3.4vw;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: #faf8f3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2vw;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    transform: scale(0.95);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.solution-arrow.is-large {
    transform: scale(1.25);
    background: rgba(0, 0, 0, 0.85);
}

.solution-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.4vw;
    min-height: 26vw;
    transform: scale(0.96);
    transition: transform 0.6s ease, filter 0.6s ease;
    will-change: transform;
}

.solution-tile {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    min-height: 26vw;
    background: #0b0b0b;
    isolation: isolate;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.solution-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.8s ease;
    transform: scale(1);
}

.solution-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0.75) 100%);
    opacity: 0.6;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.tile-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.6vw;
    padding: 1.8vw;
    color: #faf8f3;
    transform: translateY(18%);
    opacity: 0;
    transition: transform 0.45s ease, opacity 0.45s ease;
    z-index: 2;
}

.tile-label {
    align-self: flex-start;
    padding: 0.55vw 1.3vw;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.95vw;
    letter-spacing: 0.06vw;
}

.solution-tile h3 {
    font-size: 2.2vw;
    font-weight: 500;
    letter-spacing: -0.04vw;
}

.tile-copy {
    font-size: 1.05vw;
    line-height: 1.6;
    color: #f0efe7;
}

.tile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55vw;
}

.tile-tags span {
    padding: 0.45vw 1vw;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 0.9vw;
    letter-spacing: 0.02vw;
}

.solution-tile:hover img {
    transform: scale(1.07);
    filter: brightness(0.9);
}

.solution-tile:hover::after {
    opacity: 0.9;
}

.solution-tile:hover .tile-overlay {
    opacity: 1;
    transform: translateY(0);
}


#page-6 {
    background: #0b0b0b;
    color: #f4f4ef;
    padding: 6vw 2vw 8vw;
    position: relative;
    overflow: hidden;
}

.team-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2vw;
    flex-wrap: wrap;
    margin-bottom: 3vw;
}

.team-head h2 {
    font-size: 4.2vw;
    font-weight: 300;
    letter-spacing: -0.08vw;
}

.team-head p {
    max-width: 36vw;
    line-height: 1.6;
    color: #d9d9d4;
    font-size: 1.05vw;
}

.team-list {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.team-row {
    width: 100%;
    border: none;
    background: transparent;
    color: inherit;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 1.6vw 1vw;
    font-size: 1.3vw;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: background 0.35s ease, color 0.3s ease, transform 0.25s ease, box-shadow 0.35s ease;
    position: relative;
    isolation: isolate;
}

.team-row:last-child {
    border-bottom: none;
}

.team-row .role {
    font-weight: 400;
    letter-spacing: 0.04vw;
}

.team-row .name {
    font-size: 1.8vw;
    font-weight: 700;
    letter-spacing: 0.01vw;
    text-align: right;
}

.team-row.active,
.team-row:focus-visible,
.team-row:hover {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.18) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #0b0b0b;
    outline: none;
    transform: translateX(4px);
    box-shadow: 0 20px 45px rgba(255, 255, 255, 0.08);
}

.team-row.active .name,
.team-row:hover .name,
.team-row:focus-visible .name,
.team-row.active .role,
.team-row:hover .role,
.team-row:focus-visible .role {
    color: #0b0b0b;
}

.team-photo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.team-photo-overlay img {
    width: min(540px, 70vw);
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 45px 120px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: opacity 0.4s ease, transform 0.5s ease;
}

.team-photo-overlay img.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (max-width: 1024px) {
    .team-head p {
        max-width: 100%;
        font-size: 2.4vw;
    }

    .team-row {
        grid-template-columns: 1fr;
        gap: 0.6vw;
        font-size: 2.6vw;
        padding: 2.6vw 1.4vw;
    }

    .team-row .name {
        text-align: left;
        font-size: 3vw;
    }

    .team-photo-overlay img {
        width: 80vw;
    }
}

#page-7.partners-section {
    min-height: 70vh;
    width: 100%;
    background: #ffffff;
    color: #0b0b0b;
    position: relative;
    padding: 6vw 4vw 10vw;
    overflow: hidden;
}

.partners-head {
    display: flex;
    flex-direction: column;
    gap: 0.8vw;
    margin-bottom: 4vw;
}

.partners-head h2 {
    font-size: 4vw;
    font-weight: 300;
    letter-spacing: -0.08vw;
}

.partners-head .lede {
    max-width: 48vw;
    color: #2f2f2b;
    line-height: 1.6;
    font-size: 1.1vw;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45vw;
    padding: 0.55vw 1.6vw;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.08), rgba(255, 255, 255, 0.04));
    font-size: 0.95vw;
    letter-spacing: 0.18vw;
    text-transform: uppercase;
}

.marquee-shell {
    display: flex;
    flex-direction: column;
    gap: 2vw;
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    overflow: hidden;
    position: relative;
}

.marquee-shell::before,
.marquee-shell::after {
    content: "";
    position: absolute;
    inset: 8% 6%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.08), transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.07), transparent 50%);
    filter: blur(22px);
    z-index: 0;
    opacity: 0.45;
    pointer-events: none;
}

.marquee-shell::after {
    inset: auto 8% 6% 8%;
}

.marquee-block {
    position: relative;
    z-index: 1;
    padding: 1.8vw 1.6vw 1.4vw;
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(244, 244, 244, 0.9));
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    min-height: 220px;
}

.marquee-block::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0));
    pointer-events: none;
    mix-blend-mode: screen;
}

.marquee-block.alt {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(244, 244, 244, 0.9));
    color: #0b0b0b;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.marquee-block-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1vw;
    margin-bottom: 1vw;
    position: relative;
    z-index: 2;
    padding: 0 0.6vw;
}

.marquee-track-wrapper {
    display: flex;
    gap: 1.4vw;
}

.marquee-note {
    font-size: 0.95vw;
    letter-spacing: 0.04vw;
    color: #3c3c38;
}

.marquee-block.alt .marquee-note {
    color: #3c3c38;
}

.marquee-chip {
    padding: 0.5vw 1.2vw;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.12);
    font-size: 0.85vw;
    letter-spacing: 0.06vw;
    text-transform: uppercase;
    color: #1f1f1b;
}

.chip-alt {
    background: rgba(0, 0, 0, 0.06);
    color: #1f1f1b;
    border-color: rgba(0, 0, 0, 0.12);
}

.pill-alt {
    background: rgba(255, 255, 255, 0.08);
    color: #f6f6f3;
    border-color: rgba(255, 255, 255, 0.24);
}

.marquee-track {
    display: flex;
    gap: 1.2vw;
    width: max-content;
    align-items: center;
    will-change: transform;
    animation-duration: var(--marquee-duration, 22s);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-name: marqueeSlide;
    padding: 0.4vw 0;
    animation-play-state: running;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-group {
    display: flex;
    gap: 1.4vw;
    flex-shrink: 0;
}

.marquee-item {
    padding: 1vw 2.2vw;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    min-height: 120px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.marquee-block.alt .marquee-item {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.marquee-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
    filter: saturate(1.05);
}

.marquee-item:hover img {
    filter: grayscale(0) saturate(1) brightness(1);
    transform: translateY(-2px);
}

.marquee-item img {
    max-height: 70px;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(1) saturate(0) brightness(0.9);
    transition: filter 0.35s ease, transform 0.35s ease;
}

.to-right {
    animation-direction: reverse;
}

.to-left {
    --marquee-duration: 24s;
}

@keyframes marqueeSlide {
    0% {
        transform: translateX(0);
    }

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

@media (max-width: 1024px) {
    #page-7.partners-section {
        padding: 8vw 5vw 12vw;
    }

    .partners-head h2 {
        font-size: 7vw;
    }

    .partners-head .lede {
        max-width: 100%;
        font-size: 2.6vw;
    }

    .pill {
        font-size: 2.3vw;
        padding: 1vw 2.4vw;
    }

    .marquee-shell {
        gap: 3vw;
        mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
        -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
    }

    .marquee-block {
        padding: 3vw 2.6vw 2.4vw;
        min-height: 180px;
    }

    .marquee-block-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6vw;
    }

    .marquee-note {
        font-size: 2.2vw;
    }

    .marquee-item {
        font-size: 2.4vw;
        padding: 1.2vw 2.6vw;
        min-width: 180px;
        min-height: 100px;
    }
}

#loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    background-color: black;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #faf8f3;
}

#loader h3 {
    font-weight: 100;
    font-size: 2vw;
}

#page-8 {
    min-height: 27vw;
    width: 100%;
    position: relative;
    color: #faf8f3;
    background-color: black;
}

#p8head {
    width: 100%;
    padding: 2vw 2vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#left h1 {
    font-size: 1.8vw;
    font-weight: 100;

}

#left button {
    font-size: 1.2vw;
    padding: 15px 35px;
    border-radius: 100px;
    background-color: black;
    color: #faf8f3;
    border: 1px white solid;
    margin-top: 2vw;
    transition: all 0.5s ease;
    cursor: pointer;

}

#right {
    display: flex;
    justify-content: space-evenly;
}

#right h5 {
    font-size: 1.2vw;
    font-weight: 100;
    line-height: 2;
    transition: all 0.5s ease;
}

#a,
#b {
    margin: 0 2vw;
}

#a h5,
#b h5 {
    cursor: pointer;

}

#left button:hover {
    background-color: #faf8f3;
    color: black;


}

#right h5:hover {
    color: #878683;
}

#main-cover-bot {
    margin-left: 2%;
    height: 58vh;
    width: 95%;
    overflow: hidden;
}

#main-cover-bot h1 {
    font-family: "mainFont";
    font-size: 27vw;
    font-weight: 400;
    line-height: 30vw;
}

#main-cover-bot h1 span {
    font-family: "mainFont";
    display: inline-block;
}

@media (max-width: 1024px) {
    #navbar {
        padding: 4vw 6vw;
    }

    .nav-brand {
        font-size: 3.4vw;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        padding: 3vw 6vw;
        gap: 3vw;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.3s ease, opacity 0.25s ease, visibility 0.25s ease;
    }

    .nav-links a {
        font-size: 3vw;
    }

    #nav-toggle {
        display: flex;
    }

    .solutions-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2vw;
    }

    .solutions-header .headline h2 {
        font-size: 6vw;
        line-height: 1.1;
    }

    .solutions-header .headline p {
        font-size: 2.4vw;
        max-width: 80vw;
    }

    .solution-grid {
        gap: 3vw;
    }

    .solution-row {
        min-height: 48vw;
        gap: 2vw;
    }

    .solution-tile {
        min-height: 48vw;
        border-radius: 22px;
    }

    .solution-tile .tile-overlay {
        opacity: 1;
        transform: translateY(0);
    }

    .tile-label {
        font-size: 2.1vw;
    }

    .solution-tile h3 {
        font-size: 4.6vw;
    }

    .tile-copy,
    .tile-tags span {
        font-size: 2.4vw;
    }
}