
:root {
    --step--1: clamp(0.7692rem, 0.9126rem + -0.1911vw, 0.8696rem);
    --step-0: clamp(1rem, 1rem + 0vw, 1rem);
    --step-1: clamp(1.15rem, 1.0857rem + 0.2857vw, 1.3rem);
    --step-2: clamp(1.3225rem, 1.165rem + 0.7vw, 1.69rem);
    --step-3: clamp(1.5209rem, 1.2311rem + 1.2879vw, 2.197rem);
    --step-4: clamp(1.749rem, 1.2745rem + 2.1088vw, 2.8561rem);
    --step-5: clamp(2.0114rem, 1.2821rem + 3.2411vw, 3.7129rem);
}

@font-face {
    font-family: "Ambit";
    src: url("/fonts/Ambit-Light.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

h1 { /* Links all Headers to Uptopia */
    font-size: var(--step-5);
    margin-bottom: 0px;
}

h2 {
    font-size: var(--step-4);
    margin-bottom: 0px;
}

h3 {
    font-size: var(--step-3);
    margin-bottom: 0px;
}

h4 {
    font-size: var(--step-2);
    margin-bottom: 0px;
}

h5 {
    font-size: var(--step-1);
    margin-bottom: 0px;
}

p {
    font-size: var(--step-0);
    margin-bottom: 0px;
}

.sbr { /*SBR = Site Border Radius*/
    border-radius: 10px;
}
.block-div {
    margin-top: 60px;
}
@media (min-width: 576px) {
    :root {
        --container-max: 540px;
        --container-pad: 12px;
    }
}

@media (min-width: 768px) {
    :root {
        --container-max: 720px;
        --container-pad: 12px;
    }
}

@media (min-width: 992px) {
    :root {
        --container-max: 960px;
        --container-pad: 12px;
    }
    /*Use if a Fake Container is needed */
    .fake-container {
        padding-left: calc(max(var(--container-pad), (100vw - var(--container-max)) / 2 + var(--container-pad)));
        padding-right: 80px;
    }

    .fake-container-right {
        padding-right: calc(max(var(--container-pad), (100vw - var(--container-max)) / 2 + var(--container-pad)));
        padding-left: 80px;
    }
    .block-div {
        margin-top: 80px;
    }
}

@media (min-width: 1200px) {
    :root {
        --container-max: 1140px;
        --container-pad: 12px;
    }
    .block-div {
        margin-top: 120px;
    }
}

@media (min-width: 1400px) {
    :root {
        --container-max: 1320px;
        --container-pad: 12px;
    }
    .block-div {
        margin-top: 120px;
    }
}





































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

body {
    font-family: Ambit;
}

header {
    background-color: #062054;
    padding: 0 40px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo */
.logo-container {
    width: 180px;
    height: 55px;
    border: 2px dashed rgba(255,255,255,.5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    flex-shrink: 0;
}

/* Desktop navigation */
.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    margin-bottom: 0px;
}

nav a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: opacity .3s;
}

    nav a:hover {
        opacity: .7;
    }

.cta-button {
    padding: 12px 22px;
    background: white;
    color: #062054;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

    .cta-button:hover {
        background: #e6e6e6;
    }

/* Burger button */
.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

    .burger span {
        width: 28px;
        height: 3px;
        background: white;
        transition: .3s;
    }

/* Mobile */
@media (max-width:768px) {

    .burger {
        display: flex;
    }

    .nav-right {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: #062054;
        display: flex;
        flex-direction: column;
        padding: 20px;
        gap: 25px;
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: .3s ease;
    }

        .nav-right.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0px;
    }
}

/* Burger animation */
.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px,7px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px,-7px);
}
.logo {
    filter: brightness(15);
    width: 200px;
    height: auto
}
.site-footer {
    background: #062054;
    color: white;
    padding: 70px 40px 20px;
}

.footer-container {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-column p {
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 14px;
}

.footer-column a {
    text-decoration: none;
    color: rgba(255,255,255,.75);
    transition: .3s;
}

    .footer-column a:hover {
        color: white;
    }

.footer-logo {
    width: 180px;
    height: 55px;
    border: 2px dashed rgba(255,255,255,.5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.15);
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,.6);
    font-size: 14px;
}
.logobottompadding {

padding-bottom: 20px;
}
@media (max-width:768px) {

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .site-footer {
        padding: 50px 25px 20px;
    }
}

.image-background-card {
    position: relative;
    width: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    overflow: hidden;
}

.image-background-card .overlay {
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-background-card h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.image-background-card .content-text {
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .image-background-card {
        min-height: 300px;
    }

        .image-background-card .overlay {
            padding: 24px;
        }

        .image-background-card h2 {
            font-size: 1.5rem;
        }
}

