

/* ========================================================
   RESET
======================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family:
        "Open Sans",
        Arial,
        sans-serif;

    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;

    color:
    var(--color-dark_gray, #333333);
    background: #ffffff;

    -webkit-font-smoothing: antialiased;
}

img {
    display: block;

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

a {
    color: inherit;
    text-decoration: none;
}


/* ========================================================
   TYPOGRAPHY
======================================================== */

h1,

h4,
h5,
h6 {
    margin-top: 0;
    font-size: 48px !important;
    font-weight: 300;
    line-height: 1.2;

    color:
        var(--color-primary, #1144bb);
}

h2
{
    margin-top: 0;
    font-size: 36px !important;
    font-weight: 200;
    line-height: 1.2;

    color:
        var(--color-dark-gray, #333);
}

h3
{
    margin-top: 0;
    font-size: 32px !important;
    font-weight: 200;
    line-height: 1.2;

    color:
        var(--color-accent, #ff9900);
}

h1 {
    font-size:
        clamp(
            2.5rem,
            5vw,
            4.5rem
        );
}

h2 {
    font-size:
        clamp(
            2rem,
            4vw,
            3rem
        );
}

h3 {
    font-size:
        clamp(
            1.25rem,
            2vw,
            1.6rem
        );
}

p {
    margin-top: 0;

    font-weight: 200;
}


/* ========================================================
   GLOBAL CONTAINER
======================================================== */

.site-container {
    width:
        min(
            1200px,
            calc(100% - 48px)
        );

    margin:
        0
        auto;
}

.site-container-full-bleed {
    width: 100%;
    max-width: none;

    margin: 0;
}
/* ========================================================
   NAVIGATION
======================================================== */

.site-header {
    position: sticky;
    top: 0;

    z-index: 1000;

    background:
        var(--color-primary, #1144bb);
}

.site-nav-container {
    width:
        min(
            1200px,
            calc(100% - 48px)
        );

    min-height: 76px;

    margin:
        0
        auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 32px;
}

.site-logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    color: #ffffff;

    text-decoration: none;

    font-size: 21px;
    font-weight: 500;
}

.site-logo img {
    width: auto;
    height: auto;

    max-width: 220px;
    max-height: 52px;
}

.site-nav {
    display: flex;
    align-items: center;

    gap: 28px;
}

.site-nav-link {
    position: relative;

    padding:
        26px
        0;

    color:
        rgba(
            255,
            255,
            255,
            .88
        );

    text-decoration: none;

    font-size: 14px;
    font-weight: 500;
}

.site-nav-link:hover,
.site-nav-link.active {
    color: #ffffff;
}

.site-nav-link.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 17px;

    height: 2px;

    background: #ffffff;
}
/* ========================================================
   NAV DROPDOWNS
======================================================== */

.site-nav-dropdown {
    position: relative;

    display: flex;
    align-items: stretch;
}

.site-nav-dropdown-trigger {
    display: flex;
    align-items: center;

    gap: 7px;

    padding:
        26px
        0;

    border: 0;

    background: transparent;

    color:
        rgba(
            255,
            255,
            255,
            .88
        );

    text-decoration: none;

    font-family: inherit;
    font-size: 14px;
    font-weight: 500;

    cursor: pointer;
}

.site-nav-dropdown-trigger i {
    font-size: 10px;

    transition:
        transform .15s ease;
}

.site-nav-dropdown:hover
.site-nav-dropdown-trigger,

.site-nav-dropdown.active
.site-nav-dropdown-trigger {
    color: #ffffff;
}

.site-nav-dropdown:hover
.site-nav-dropdown-trigger i {
    transform:
        rotate(180deg);
}


/* DROPDOWN MENU */

.site-nav-dropdown-menu {
    position: absolute;

    top: calc(100% - 5px);
    left: -18px;

    min-width: 240px;

    display: none;

    padding: 10px;

    background: #ffffff;

    border:
        1px solid #e5e7eb;

    border-radius: 5px;

    box-shadow:
        0 12px 35px
        rgba(
            0,
            0,
            0,
            .14
        );

    z-index: 2000;
}

.site-nav-dropdown:hover
.site-nav-dropdown-menu {
    display: block;
}


/* DROPDOWN LINKS */

.site-nav-dropdown-link {
    display: block;

    padding:
        10px
        12px;

    border-radius: 3px;

    color: #333333;

    text-decoration: none;

    font-size: 14px;
    font-weight: 400;

    white-space: nowrap;
}

.site-nav-dropdown-link:hover {
    background: #f4f6f9;

    color:
        var(
            --color-primary,
            #1144bb
        );
}

.site-nav-dropdown-link.active {
    background: #f4f6f9;

    color:
        var(
            --color-primary,
            #1144bb
        );
}

.site-nav-dropdown-heading {
    font-weight: 600;

    cursor: default;
}

.site-nav-subgroup-items {
    padding-left: 12px;
}

/* ========================================================
   SECTIONS
======================================================== */

.site-section {
    position: relative;

    padding:
        72px
        0;
}


.section-heading {
    margin:
        0
        0
        18px;
}

.section-description {
    margin:
        0
        0
        32px;

    color:
        var(--color-dark_gray, #333333);

    font-size: 17px;
    line-height: 1.7;
}


/* ========================================================
   GENERIC SECTION LAYOUT
======================================================== */

.section-preview {
    position: relative;
}

.section-content {
    min-width: 0;
}

.section-content p {
    color:
        var(--color-dark_gray, #333333);

    line-height: 1.7;
}
/* ========================================================
   IMAGE ONLY SECTION
======================================================== */

.site-image-section {
    width: 100%;

    padding:
        72px
        0;
}

.site-image-section.full-bleed {
    padding: 0;
}

.site-image {
    display: block;

    width: 100%;
    max-width: 100%;

    height: auto;

    object-fit: contain;
}

/* ========================================================
   IMAGE LEFT / RIGHT
======================================================== */

.section-image-left
.section-preview,

.section-image-right
.section-preview {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 40px;

    align-items: center;
}


/* ========================================================
   IMAGE TOP / BOTTOM
======================================================== */

.section-image-start
.section-preview,

.section-image-end
.section-preview {
    display: flex;

    flex-direction: column;

    gap: 25px;
}


/* ========================================================
   SECTION MEDIA
======================================================== */

.section-media {
    width: 100%;
    min-width: 0;
}

.preview-image {
    display: block;

    width: 100%;
    max-width: 100%;

    height: auto;

    object-fit: contain;

    border-radius: 5px;
}


/* ========================================================
   IMAGE SIZES
======================================================== */

.preview-image.image-size-small,
.site-image.image-size-small {
    width: 450px !important;
}

.preview-image.image-size-medium,
.site-image.image-size-medium {
    width: 750px !important;
}

.preview-image.image-size-large,
.site-image.image-size-large {
    width: 950px !important;
}

.preview-image.image-size-x-large,
.site-image.image-size-x-large {
    width: 1300px !important;
}
.site-image {
    margin-left: auto;
    margin-right: auto;
}

/* ========================================================
   IMAGE ORDER
======================================================== */

.section-image-start
.section-media {
    order: 0;
}

.section-image-start
.section-content {
    order: 1;
}


.section-image-end
.section-content {
    order: 0;
}

.section-image-end
.section-media {
    order: 1;
}


/* ========================================================
   BACKGROUND IMAGE SECTION
======================================================== */

.section-image-background {
    position: relative;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #ffffff;

    overflow: hidden;
}

.section-image-background::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        rgba(
            0,
            0,
            0,
            .45
        );
}

.section-image-background
.site-container {
    position: relative;

    z-index: 1;
}

.section-image-background
.section-content {
    padding:
        60px
        0;
}

.section-image-background h1,
.section-image-background h2,
.section-image-background h3 {
    color: #ffffff;
}

.section-image-background p {
    color:
        rgba(
            255,
            255,
            255,
            .9
        );
}


/* ========================================================
   BUTTONS
======================================================== */

.site-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 44px;

    padding:
        10px
        20px;
    border: 0;
    border-radius: 3px;

    background:
        var(--color-accent, #ff9900);

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 500;

    cursor: pointer;

    transition:
        background .15s ease,
        transform .15s ease;
}

.site-button:hover {
    background:
        var(--color-secondary, #0099ff);

    color: #ffffff;

    transform:
        translateY(-1px);
}


/* ========================================================
   CARDS
======================================================== */

.site-card-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 24px;

    margin-top: 30px;
}

.site-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-width: 0;

    overflow: hidden;

    background: #ffffff;

    border:
        1px solid #e3e6eb;

    border-radius: 5px;
}

.site-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;

    flex: 1;

    padding: 26px;
}

.site-card-title {
    margin:
        0
        0
        12px;

    font-size: 21px;

    color:
        var(--color-primary, #1144bb);
}

.site-card-description {
    margin:
        0
        0
        20px;

    color:
        var(--color-dark_gray, #333333);

    line-height: 1.65;
}

.site-card-icon {
    margin-bottom: 16px;

    color:
        var(--color-primary, #1144bb);

    font-size: 28px;
}

.site-card-media {
    width: 100%;

    overflow: hidden;
}

.site-card-image,
.site-card-media img {
    display: block;

    width: 100%;
    height: auto;
}


/* ========================================================
   CARD IMAGE LEFT / RIGHT
======================================================== */

.site-card.image-left,
.site-card.image-right {
    display: grid;

    grid-template-columns:
        40%
        60%;
}

.site-card.image-left
.site-card-media {
    order: 0;
}

.site-card.image-left
.site-card-content {
    order: 1;
}

.site-card.image-right
.site-card-content {
    order: 0;
}

.site-card.image-right
.site-card-media {
    order: 1;
}


/* ========================================================
   CARD TOP / BOTTOM
======================================================== */

.site-card.image-start,
.site-card.image-end {
    display: flex;

    flex-direction: column;
}

.site-card.image-start
.site-card-media {
    order: 0;
}

.site-card.image-start
.site-card-content {
    order: 1;
}

.site-card.image-end
.site-card-content {
    order: 0;
}

.site-card.image-end
.site-card-media {
    order: 1;
}


/* ========================================================
   CARD BACKGROUND
======================================================== */

.site-card.image-background {
    min-height: 300px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.site-card.image-background::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        rgba(
            0,
            0,
            0,
            .45
        );
}

.site-card.image-background
.site-card-content {
    position: relative;

    z-index: 1;

    min-height: 300px;

    justify-content: flex-end;

    color: #ffffff;
}

.site-card.image-background
.site-card-title {
    color: #ffffff;
}

.site-card.image-background
.site-card-description {
    color:
        rgba(
            255,
            255,
            255,
            .88
        );
}


/* ========================================================
   FAQ
======================================================== */

.faq-list {
    width: 100%;

    margin-top: 30px;

    border-top:
        1px solid #e1e5e9;
}

.faq-item {
    border-bottom:
        1px solid #e1e5e9;
}

.faq-item summary {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding:
        21px
        4px;

    list-style: none;

    cursor: pointer;

    font-size: 17px;
    font-weight: 500;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    display: flex;
    align-items: center;

    gap: 14px;
}

.faq-question i {
    width: 24px;

    text-align: center;

    color:
        var(--color-primary, #1144bb);
}

.faq-toggle {
    color:
        var(--color-dark_gray, #333333);

    transition:
        transform .2s ease;
}

.faq-item[open]
.faq-toggle {
    transform:
        rotate(45deg);
}

.faq-answer {
    max-width: 900px;

    padding:
        0
        42px
        24px;

    color:
        var(--color-dark_gray, #333333);

    line-height: 1.75;
}


/* ========================================================
   FOOTER
======================================================== */

.site-footer {
    padding:
        30px
        0;

    background:
        var(--color-primary, #1144bb);

    color: #ffffff;
}

.site-footer p {
    margin: 0;

    color:
        rgba(
            255,
            255,
            255,
            .8
        );

    font-size: 14px;
}


/* ========================================================
   404
======================================================== */

.not-found {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    text-align: center;
}

.not-found h1 {
    margin: 0;

    font-size: 90px;
}

.not-found p {
    margin-bottom: 24px;

    color:
        var(--color-dark_gray, #333333);
}


/* ========================================================
   TABLET
======================================================== */

@media (
    max-width: 900px
) {

    .site-card-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

}


/* ========================================================
   MOBILE
======================================================== */

@media (
    max-width: 700px
) {

    .site-container,
    .site-nav-container {
        width:
            min(
                calc(100% - 32px),
                1200px
            );
    }


    .site-nav-container {
        flex-direction: column;
        align-items: flex-start;

        padding:
            16px
            0;
    }


    .site-nav {
        width: 100%;

        flex-wrap: wrap;

        gap:
            8px
            18px;
    }


    .site-nav-link {
        padding:
            5px
            0;
    }


    .site-nav-link.active::after {
        bottom: 0;
    }


    .site-section {
        padding:
            52px
            0;
    }


    .section-image-left
    .section-preview,

    .section-image-right
    .section-preview {
        grid-template-columns:
            1fr;

        gap: 25px;
    }


    .site-card-grid {
        grid-template-columns:
            1fr;
    }


    .site-card.image-left,
    .site-card.image-right {
        display: flex;

        flex-direction: column;
    }

}
    