﻿
/*Mobile First Approach*/

@font-face {
    font-display: swap;
    font-family: 'Public Sans';
    font-style: normal;
    font-weight: 300;
    src: url('/fonts/public-sans-v21-latin-300.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Public Sans';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/public-sans-v21-latin-regular.woff2') format('woff2'); 
}

@font-face {
    font-display: swap;
    font-family: 'Public Sans';
    font-style: normal;
    font-weight: 500;
    src: url('/fonts/public-sans-v21-latin-500.woff2') format('woff2');
}

@font-face {
    font-display: swap; 
    font-family: 'Public Sans';
    font-style: normal;
    font-weight: 600;
    src: url('/fonts/public-sans-v21-latin-600.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Public Sans';
    font-style: normal;
    font-weight: 700;
    src: url('/fonts/public-sans-v21-latin-700.woff2') format('woff2');
}

:root {
    --font-primary: 'Public Sans', Arial, Helvetica, sans-serif;

    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-base: #FBFBFB;
    --bg-tint: #F1F8FF;
    --bg-hero-end: #CBE3FB;
    --bg-brand: #07043f;
    --bg-footer: #01000F;

    /* Text */
    --text-brand: #07043f;
    --text-primary: #263030;
    --text-secondary: #3f4f4f;
    --text-on-dark: #ffffff;
    --text-on-dark-muted: #C8CCF0;

    /* Accent */
    --accent-link: #084D9F;
    --accent-blue: #0D72E8;
    --accent-teal: #00D6E4;
    --accent-purple: #7964D8;

    /* Border */
    --border-blue: #C2DEF7;
    --border-brand: #213A75;
    --border-gray: #D9D9D9;
}

body {
    font-family: var(--font-primary);
    overflow-x: hidden;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 1.25;
    letter-spacing: -0.010rem;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.75rem);
    line-height: 1.2;
    letter-spacing: -0.010rem;
    font-weight:600;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    line-height: 1.3;
    letter-spacing: 0.010rem;
    font-weight: 500;
}

h4 {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}

ul, ol {
    margin: 0;
    padding-left: 24px;
}

ol {
    list-style-type: none;
    padding: 0;
}

p {
    line-height: 1.7;
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

a {
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    letter-spacing: 0.010rem;
    text-decoration: none;
}

.input {
    height: 44px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

address {
    margin: 0;
    font-size: 1rem;
}

    address span {
        color: var(--text-primary);
        
    }

    address a {
        text-decoration: none !important;
        color: inherit;
       
    }

    address abbr[title] {
        text-decoration: none;
    }

label {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 4px;
    letter-spacing: 0.010rem;
    color: var(--rush-dark);
    display: block;
}

.form-helper {
    font-size: 0.75rem;
    color: var(--rush-hint);
    line-height: 1.5;
    display: block;
    margin-bottom: 8px;
}

.form-error {
    font-size: 0.75rem;
    display: block;
    margin-top: 4px;
}

.form-link {
    font-size: 0.8125rem;
    color: var(--bs-link-color);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.btn {
    font-weight: 400;
    letter-spacing: 0.010rem;
    border-radius: 4px;
    padding: 0.5rem 1.25rem;
    font-size: 1rem;
    border: 0;
}

.btn-primary {
    background-color: var(--bg-brand);
    border: 2px solid var(--bg-brand);
    color: var(--text-on-dark);
    font-weight:600;
    transition: background-color 0.3s ease, border-color 0.3s ease;

    @media (width >= 48rem) {
        padding: 0.5rem 1.25rem;
    }

    @media (width >= 62rem) {
        padding: 12px 32px;
        font-size: 1rem;
    }
}

    .btn-primary:hover {
        background: transparent;
        border: 2px solid var(--bg-brand);
        color: var(--text-brand);
        font-weight: 600;
    }

.btn-secondary {
    font-weight: 600;
    background-color: transparent;
    border: 2px solid var(--bg-brand);
    color: var(--text-brand);
    transition: background-color 0.3s ease, border-color 0.3s ease;

    @media (width >= 48rem) {
        padding: 0.5rem 1.25rem;
    }
}
    .btn-secondary:hover {
        background-color: var(--bg-brand);
        border-color: var(--bg-brand);
        color: var(--text-on-dark);
        font-weight: 600;
    }

.btn-link {
    padding: 12px 0;
}

.btn-md {
    padding: 0.5rem 1.25rem;
    background-color: var(--bg-brand);
    border: 2px solid var(--bg-brand);
    color: var(--text-on-dark);
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-md:hover {
    background: transparent;
    border: 2px solid var(--bg-brand);
    color: var(--text-brand);
    font-weight: 600;
}

/*Section*/

.section {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 16px;
    padding-right: 16px;
    scroll-margin-top: 100px;

    @media (width >= 48rem) {
        padding-left: 40px;
        padding-right: 40px;
    }

    @media (width >= 62rem) {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

/* Navigation*/

.nav-link {
    color: var(--text-brand);
    font-weight: 600;
    letter-spacing: 0.010rem;
}

    .nav-link:hover {
        color: var(--accent-blue);
    }

.rush-navbar {
    background-color: var(--bg-white);
    box-shadow: 0 0.125rem 1rem rgba(0, 0, 0, 0.06);
    transition: background-color 0.4s ease, box-shadow 0.4s ease;

    @media (width >= 62rem) {
        background-color: transparent;
        box-shadow: none;
    }
}

    .rush-navbar.scrolled {
        background-color: var(--bg-white) !important;
        box-shadow: 0 0.125rem 1rem rgba(0, 0, 0, 0.08) !important;
    }

    .rush-navbar .navbar-brand img {
        height: 1.75rem;
        width: auto;
        transition: height 0.3s ease;

        @media (width >= 48rem) {
            height: 2rem;
        }

        @media (width >= 62rem) {
            height: 2.5rem;
        }
    }

    .rush-navbar .nav-link {
        font-size: 1rem;
        font-weight: 600;
        transition: color 0.2s ease;
    }

    .rush-navbar .navbar-collapse {

        @media (width >= 36rem) {
            margin-top: 0.75rem;
        }
    }

    .rush-navbar .btn {
        border-radius: 4px;

        @media (width >= 48rem) {
            width: 100%;
        }
    }

.nav-link.dropdown-toggle {
    font-weight: 600;
    transition: color 0.2s ease;
    &::after

{
    display: none !important;
}

&:hover {
    color: var(--accent-blue);
}

&[aria-expanded="true"] .chevron-icon {
    transform: rotate(180deg);
}

@media (width >= 62rem) {
    justify-content: space-between !important;
}

}

.chevron-icon {
    width: 1.5rem;
    height: auto;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.nav-link.dropdown-toggle:hover .chevron-icon {
    filter: invert(27%) sepia(91%) saturate(1638%) hue-rotate(201deg) brightness(97%) contrast(101%);
}

.rush-dropdown {
    border: none;
    border-radius: 0.5rem;
    animation: dropdownFade 0.2s ease;

    @media (width >= 48rem) {
        min-width: 100%;
        box-shadow: none;
        padding: 0.25rem 0 0.25rem 1rem;
        animation: none;
        border-left: 2px solid var(--accent-100);
        border-radius: 0;
        margin-left: 1rem;
    }

    @media (width >= 62rem) {
        min-width: 288px;
        padding: 8px;
        box-shadow: 0 4px 20px rgba(7, 4, 63, 0.12);
        border-radius: 0.5rem;
        border-left: none;
        margin-left: 0;
        animation: dropdownFade 0.2s ease;
    }
}

    .rush-dropdown .dropdown-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 1rem;
        padding: 0.5rem 1rem;
        color: var(--text-brand);
        font-weight: 400;
        transition: background-color 0.2s ease, color 0.2s ease;
        border-radius: 0.375rem;
        &:hover

{
    background-color: var(--bg-tint);
    color: var(--accent-600);
}

&:hover .rush-dropdown-state {
    background-color: var(--accent-100);
    color: var(--accent-700);
}

&:active,
&:focus {
    background-color: var(--accent-100);
    color: var(--accent-base);
}

@media (width >= 48rem) {
    font-size: 1rem;
    text-align: center;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
}

@media (width >= 62rem) {
    font-size: 0.9375rem;
    padding: 8px 12px;
    text-align: start;
}

}


@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(0.375rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.rush-toggler {
    border: none;
    background: transparent;
    padding: 0.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    outline: none;
    box-shadow: none !important;
    transition: background-color 0.2s ease;
}

    .rush-toggler:focus {
        outline: none;
        box-shadow: none !important;
    }

.toggler-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
    transition: opacity 0.25s ease, transform 0.3s ease;
}

.icon-menu {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.icon-close {
    display: none;
    opacity: 0;
    transform: rotate(-90deg) scale(0.7);
}

.rush-toggler[aria-expanded="true"] .icon-menu {
    display: none;
    opacity: 0;
    transform: rotate(90deg) scale(0.7);
}

.rush-toggler[aria-expanded="true"] .icon-close {
    display: block;
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.rush-hero-img {
    width: 100%;
    height: 18rem;
    object-fit: cover;
    object-position: center;

    @media (min-width: 36rem) {
        height: 22rem;
    }

    @media (min-width: 48rem) {
        height: 28rem;
    }

    @media (min-width: 62rem) {
        height: 34rem;
    }

    @media (min-width: 75rem) {
        height: 40rem;
        object-position: top;
    }

    @media (min-width: 87.5rem) {
        height: 100vh;
    }
}


/* Hero*/

.hero {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
}

    .hero.homepage {
        background-color:var(--bg-white);
        background-image: linear-gradient(180deg, #FBFBFB 0%, #CBE3FB 100%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        position: relative;
        overflow: hidden;
        height: 100vh;
        max-height: 650px;
        padding-top: 5rem;
        padding-bottom: 0;

        @media (width >= 48rem) {
            padding-top: 6rem;
            background-image: linear-gradient(180deg, #ffffff 0%, #daedfb 55%, #CBE3FB 100%);
            max-height: unset;
        }

        @media (width >= 62rem) {
            background-image: linear-gradient(275deg, #CBE3FB, #FBFBFB);
            height: 100vh;
            max-height: 580px;
            min-height: unset;
            padding-top: 6.25rem;
            justify-content: center;
        }

        @media (width >= 87.5rem) {
            max-height: 700px;
        }
    }

.hero-homepage-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 2rem 1.25rem;
    max-width: 580px;
    margin-inline: auto;
    text-align: center;

    @media (width >= 48rem) {
        max-width: 580px;
        padding: 0 2rem;
    }

    @media (width >= 62rem) {
        max-width: 420px;
        padding: 0;
        margin-left: 0;
        text-align: start;
        align-items: start;
    }

    @media (width >= 87.5rem) {
        max-width: 590px;
    }
}

.hero-homepage-title {
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;

    @media (width >= 62rem) {
        text-align: start;
    }
}

.hero-homepage-container {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    transform: none;
    width: 100%;
    height: auto;
    z-index: 2;
    margin-top: 1.5rem;

    @media (width >= 48rem) {
        margin-top: -7rem;
    }

    @media (width >= 62rem) {
        position: absolute;
        top: 36%;
        left: -4%;
        right: 0;
        width: 100%;
        height: 100%;
        margin-top: 0;
        transform: translateY(-50%);
    }

    @media (width >= 87.5rem) {
        top: 36%;
        left: 60px;
    }

    @media (width >= 100rem) {
        left: calc(560px + -4rem);
        top: 36%;
    }
}

.hero-homepage-image-mobile {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transform-origin: top center;
    margin: 0 auto;
}

.hero-homepage-img-wrapper {
    width: 100%;
    height: auto;
    mask-image: linear-gradient(to right, transparent 0%, black 22%, black 82%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 12%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 22%, black 82%, transparent 100%), linear-gradient(to bottom, transparent 0%, black 12%, black 85%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;

    @media (width >= 62rem) {
        width: 110%;
    }

    @media (width >= 87.5rem) {
        width: 100%;
    }

    @media (width >= 100rem) {
        width: 70%;
    }
}

    .hero-homepage-img-wrapper img,
    .hero-homepage-img-wrapper picture {
        width: 100%;
        height: auto;
        display: block;
    }

/* Who We Are*/

.who-we-are {
    background-color:var(--bg-tint);
}

    .who-we-are h2 {
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 1rem;
    }

    .who-we-are p {
        margin-bottom: 12px;
    }

.who-we-are-description .desc {
    font-weight: 600;
    color: var(--text-brand);
    width: 100%;
}

.who-we-are-description .desc-1 {
    color: var(--accent-purple);
}

.who-we-are-description .desc-2 {
    color: var(--accent-teal);
}

.who-we-are-description .desc-3 {
    color: var(--accent-blue);
}

.who-we-are-image {
    border: 1px solid var(--accent-100);
    padding: 16px;
    border-radius: 4px;
    margin-top: 24px;
    width: 100%;
}

/* RushMore Offer*/

.rush-offer {
    background-color: var(--bg-brand);
}

.rush-offer-desc {
    color: var(--text-on-dark-muted);
}

.rush-offer-title {
    font-weight:600;
    color: var(--text-on-dark);

    @media (width >= 48rem) {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    @media (width >= 62rem) {
        margin-left: 0;
    }
}

.rush-offer-title-2 {
    color: var(--accent-teal);
}

.rush-offer-wrapper {
    width: 100%;
    padding: 24px 32px;
    border: 1px solid var(--border-brand);
    border-radius: 8px;
    margin-left: auto;
    margin-right: auto;

    @media (width >= 48rem) {
        max-width: 550px;
    }

    @media (width >= 62rem) {
        margin: 0;
        max-width: 100%;
    }
}

.rush-offer-list {
    font-weight: 500;
    color: var(--text-on-dark);
    text-align: center;
    margin-bottom: 8px;

    @media (width >= 48rem) {
        text-align: start;
        margin-bottom: 0;
    }
}

.rush-offer-list-desc {
    color: var(--text-on-dark-muted);
    text-align: center;

    @media (width >= 48rem) {
        text-align: start;
    }
}

/*Get Started*/

.g-started {
    background: var(--bg-white);
}

.g-started-title {
    color: var(--text-primary);
    font-weight: 300;
    letter-spacing: 0.010rem;
    max-width: 270px;
    margin-left: auto;
    margin-right: auto;

    @media (width >= 48rem) {
        max-width: 500px;
    }
}

.g-started-desc {
    color: var(--text-primary);
    font-size: 1rem;

    @media (width >= 62rem) {
        margin: 0;
        font-size:1.25rem;
    }
}

.g-started-wrapper {
    background: var(--bg-white);
    border: 1.7px solid var(--border-gray);
    border-radius: 8px;
    padding: 2rem 1rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;

    @media (width >= 48rem) {
        padding: 2rem 1.25rem;
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }
}

.step-title {
    color: var(--text-brand);
}

.g-started-steps {
    font-size: 1.5rem;
    color: var(--text-brand);


    @media (width >= 62rem) {
        font-size: 1.75rem;
    }
}

.step-number {
    font-size: 1.75rem;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--text-brand);
    font-weight: 700;
    margin-left: 4px;

    @media (width >= 62rem) {
        font-size: 2rem;
    }
}

.g-started-wrapper p {
    color: var(--text-primary);
}

.g-started-links {
    flex-wrap: wrap;
}

    .g-started-links a,
    .g-started-wrapper > div > a {
        color: var(--accent-blue);
        text-decoration: underline;
        text-underline-offset: 2px;
        transition: color 0.2s ease, text-underline-offset 0.2s ease;
    }

        .g-started-links a:hover,
        .g-started-wrapper > div > a:hover {
            color: var(--text-brand);
        }

/* Products*/
.products {
    background-color: var(--bg-tint);
}

.strong-base {
    color: var(--text-brand);
    font-weight:600;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    grid-auto-rows: 1fr;
}

.product-card {
    width: 100%;
    min-width: 0;
    padding: 1rem;
    border: 1.5px solid var(--border-blue); 
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: stretch;
}

.product-decorative-img {
    width: 100%;
    height: 120px;
    display: block;
    margin-bottom: 1.25rem;
    object-fit: cover;
    border-radius: 8px;
}

.products-title {
    color: var(--text-primary);
    font-weight:300;
}

.product-card-title {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-desc {
    color: var(--text-primary);
    flex-grow: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1.5rem;
    color: var(--accent-blue);
    font-weight: 600;
    text-decoration: none;
}

    .btn-link:hover {
        color: var(--text-brand);
    }

    .btn-link img {
        transition: filter 0.2s ease;
    }

    .btn-link:hover img {
        filter: brightness(0) saturate(100%) invert(7%) sepia(58%) saturate(2200%) hue-rotate(235deg) brightness(85%) contrast(115%);
    }

    .btn-link.hidden {
        opacity: 0;
        pointer-events: none;
        cursor: default;
    }

@media (width >= 48rem) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (width >= 62rem) {
    .products-grid {
        grid-template-columns: repeat(12, 1fr);
    }

        .products-grid .product-card:nth-child(1) {
            grid-column: 2 / span 3;
        }

        .products-grid .product-card:nth-child(2) {
            grid-column: 5 / span 3;
        }

        .products-grid .product-card:nth-child(3) {
            grid-column: 8 / span 3;
        }

        .products-grid .product-card:nth-child(4) {
            grid-column: 1 / span 3;
        }

        .products-grid .product-card:nth-child(5) {
            grid-column: 4 / span 3;
        }

        .products-grid .product-card:nth-child(6) {
            grid-column: 7 / span 3;
        }

        .products-grid .product-card:nth-child(7) {
            grid-column: 10 / span 3;
        }

}

/*Contact Page*/
.premium-subheading, .premium-title {
    color: var(--text-brand);
    font-weight:600;
}

.premium-desc {
    width: 100%;

    @media (width >= 62rem) {
        max-width: 523px;
    }
}

.contact-header {
    font-weight:600;
    color: var(--text-primary);
}

.contact-subheader {
    color: var(--text-secondary);
    font-size: 1rem;

    @media (width >= 62rem) {
        font-size: 1.25rem;
    }
}

.contact-desc {
    color: var(--text-secondary);

    @media (width >= 62rem) {
        max-width: 515px;
    }
}

.contact-icon {
    width: 40px;
    height: auto;

    @media (width >= 42rem) {
        width: 60px;
        height: auto;
    }

}

.address-mail {
    color: var(--accent-blue);
    font-weight: 500;
    text-decoration: underline;
}

.address-title {
    font-size: 1.25rem;
    color: var(--accent-link);


    @media (width >= 42rem) {
        font-size: 1.5rem;
    }
}

.address-subtitle {
    font-size:1rem;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;

    @media (width >= 48rem) {
        max-width: 200px;
    }

    @media (width >= 62rem) {
        max-width: 100%;
    }
}

.contact-form.no-pads {
    margin-top: 0;

    @media (width >= 48rem) {
        padding: 20px;
    }
}

.contact-form h5, .login-form h5 {
    font-weight: 700;
    letter-spacing: 1px;
/*    margin-bottom: 40px;*/
}

.form-check label {
    color: rgba(0, 0, 0, 0.6);
}

.form-check input {
    color: rgba(0, 0, 0, 0.4);
}

/*Payment*/

.payment-type {
    padding: 12px 16px;
    background-color: rgba(43, 143, 255, 0.04);
    border: 1px solid #1778E6;
    border-radius: 4px;
}

.contact-form input, .contact-form select, .login-form input {
    border-radius: 4px;
    padding: 12px 16px;
    line-height: 1.5 !important;
}

.form-check input {
    padding: 0;
}

.Payment-label {
    color:var(--text-brand);
    margin:0;
}

.help-block.with-errors {
    color: #e58319;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.form-control:disabled {
    background-color: rgba(171, 171, 171, 0.24);
    border: 1px solid rgba(171, 171, 171, .70);
    color: rgba(0, 0, 0, 0.6);
}

.list-variable {
    padding: 0;
}

    .list-variable h4 {
        color: var(--text-primary);
    }

.payment-border {
    padding: 24px 36px;
    border: 1px solid var(--border-gray);
}

/* Product Page*/
.hero-section {
    position: relative;
    overflow: hidden;
    height: 620px;

    @media (width >= 48rem) {
        height: 680px;
    }

    @media (width >= 62rem) {
        height: 546px;
    }
}

    .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 2rem);
    max-width: 720px;
    background-color: #fff;
    border-radius: 4px;
    padding: 2rem 1.5rem;
    text-align: center;


    @media (width >= 48rem) {
        padding: 3rem;
    }
}

.products-label {
    margin-bottom: 0.5rem;
    letter-spacing: 0.08em;
    color: var(--accent-blue);
}

.hero-card h1 {
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--text-primary);
}

.hero-card span {
    font-weight: 700;
    color: var(--text-brand);
}

.hero-card p {
    margin-inline: auto;
    color: var(--text-primary);
}

.card-container {
    background-color: var(--bg-white);
    border-radius: 4px;
    padding: 24px 32px;
    border: 1px solid var(--border-blue);
    gap: 24px;
    height: 100%;
    width:100%;
}

    .card-container img {
        width: 70px;
        height: auto;
    }

    .card-container span {
        color: var(--accent-blue);
        font-weight: 500;
    }

    .card-container p {
        font-size: 1rem;

        @media (width >= 48rem) {
            font-size: 1.25rem;
        }
    }

        .content-section {
            background-color: var(--bg-brand);
        }

        .header-section {
            gap: 20px;
        }

            .header-section h2 {
                color: var(--text-on-dark);
                font-weight: 500;
                line-height: 1.2;
                margin: auto;
                max-width: 230px;

                @media (width >= 62rem) {
                    max-width: 100%;
                }
            }
    
            .header-section span {
                color: var(--accent-teal);
            }

            .header-section p {
                color: var(--text-on-dark-muted);
                font-weight: 300;

                @media (width >= 62rem) {
                    margin: auto;
                    max-width: 700px;
                }
            }

.target-container {
    border: 1px solid var(--border-brand);
    max-width: 100%;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
}


    .target-container img {
        width: 100%;
        height: 230px;
        object-fit: cover;
    }

    .target-container h3 {
        color: white;
        margin: 0;
    }

    .target-container ul {
        gap: 8px;
    }

    .target-container li {
        color: var(--text-on-dark-muted);
        font-weight:300;

    }

.product-box {
    border: 1px solid var(--border-brand);
    width: 100%;
    color: var(--text-on-dark-muted);
    transition: 0.3s ease;
    padding:16px;
}


.discover-section {
    background: linear-gradient(138deg, #131D3D 0%, #193262 100%);
}

.discover-section h2 {
    font-weight: 200;
    color: var(--text-on-dark);
    max-width: 100%;
}

.discover-section span {
    color: var(--accent-blue);
    font-weight: 500;
}

.discover-section p {
    color: var(--text-on-dark);
}

.discover-wrapper span {
    color: var(--text-on-dark);
    font-weight:600;
}

.descover-desc {
    width: 100%;

    @media (width >= 62rem) {
        max-width: 450px;
    }
}

.discover-section button {
    color: var(--text-on-dark);
    background-color: var(--accent-blue);
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    transition: 0.3s ease;
}

.outline-box {
    border: 1px solid var(--border-blue);
    border-radius: 4px;
    padding: 24px 16px;

    @media (width >= 48rem) {
        padding: 1rem;
        width:100%;
        margin-left: auto;
        margin-right: auto;
    }

    @media (width >= 62rem) {
        padding: 1.75rem 2rem;
    }
}
    .outline-box p {
        margin: 0;
        color:var(--text-on-dark);
        font-weight:200;
    }


/*Footer*/

footer {
    background-color: var(--bg-brand);
}

.footer-logo {
    height: 1.25rem;
    width: auto;
    transition: height 0.3s ease;

    @media (width >= 48rem) {
        height:1.5rem;
    }
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .footer-list .footer-list-label a {
        color: var(--text-on-dark);
        letter-spacing: 0.010rem;
    }

        .footer-list .footer-list-label a:hover {
            color: var(--accent-blue);
        }

.footer-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.10rem;
}

.text-purple {
    color: var(--accent-purple);
}

.text-teal {
    color: var(--accent-teal);
}

.text-blue {
    color: var(--accent-blue);
}

.footer-desc {
    color: var(--text-on-dark-muted);
    font-size: 0.875rem;
    font-weight: 300;

    @media (width >= 62rem) {
        font-size: 1rem;
        max-width:401px;
    }
}

.form-label-footer {
    color: var(--text-on-dark-muted);
    font-size: 1rem;
    letter-spacing: 0.010rem;
    font-weight: 300;
}

.btn-footer {
    height: 44px;
    background-color: var(--accent-blue);
    border-color: var(--accent-base);
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;

    @media (width >= 62rem) {
        padding: 8px 16px;
    }
}

    .btn-footer:hover {
        border-color: var(--border-brand);
        background-color: var(--accent-blue);
    }

.footer-submit {
    filter: invert(100%) sepia(100%) grayscale(100%) brightness(200%);
    width: 20px;
}

.collapse-btn {
    display: inline-block;
    filter: invert(100%) sepia(100%) grayscale(100%) brightness(200%);
    width: 20px;
    transition: transform 0.2s ease, filter 0.2s ease;
}

[aria-expanded="true"] .collapse-btn {
    transform: rotate(-180deg);
}

.footer-list-label a:hover .collapse-btn {
    filter: invert(27%) sepia(91%) saturate(1638%) hue-rotate(201deg) brightness(97%) contrast(101%);
}

.footer-list-dropdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    color: var(--primary-50);
}
