.landing {}

/* - Variables ---------------------------------------------------- */

:root {
    --font-normal: "Proxima Nova", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-condensed: "Proxima Nova Condensed", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-wide: "Proxima Nova Wide", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-icons: "gfal-icons";
    --color-gray: #dbdbdb;
    --color-primary: #004180;
    --color-secondary: #ea5906;
    --color-text: #000000ee;
    --padding-page: 20px;
    --padding-content: max(var(--padding-page), 50vw - var(--width-content) / 2);
    --width-content: 1430px;
    --height-header: 60px;
}

:target {
    scroll-margin-top: var(--height-header);
}

@media (min-width: 768px) {
    :root {
        --padding-page: 40px;
        --height-header: 100px;
    }
}

@media (min-width: 1280px) {
    :root {
        --padding-page: 100px;
        --height-header: var(--padding-page);
    }
}

/* - Global Defs -------------------------------------------------- */

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-normal);
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: var(--color-text);
}

a {
    font-weight: 700;
    color: var(--color-primary);
    transition: color 200ms cubic-bezier(0.19, 1, 0.22, 1);
}

    a:hover {
        color: var(--color-secondary);
    }

address {
    font-style: normal;
}

input,
textarea {
    display: block;
    width: 100%;
    background-color: var(--color-gray);
    color: var(--color-primary);
    padding: 8px 15px;
    margin-bottom: 10px;
}

    input::placeholder,
    textarea::placeholder {
        color: var(--color-primary);
        opacity: 0.7;
    }

strong {
    font-weight: 900;
}

    strong.block {
        display: block;
        margin-bottom: 5px;
    }

@media (min-width: 768px) {
    body {
        font-size: 18px;
        line-height: 22px;
    }

    input,
    textarea {
        margin-bottom: 20px;
    }
}

@media (min-width: 1280px) {
    body {
        font-size: 20px;
        line-height: 24px;
    }
}

/* - Header ------------------------------------------------------- */

.header {
    z-index: 10;
    --padding-item: 10px;
    position: sticky;
    top: 0;
    display: flex;
    height: var(--height-header);
    background-color: white;
    flex-direction: row;
    align-items: center;
    border-top: 1px solid var(--color-gray);
    border-bottom: 1px solid var(--color-gray);
    padding-left: calc(var(--padding-page) - var(--padding-item));
    padding-right: calc(var(--padding-page) - var(--padding-item));
}

    .header > * {
        height: 100%;
        padding-left: var(--padding-item);
        padding-right: var(--padding-item);
    }

    .header > hr {
        padding: 0;
        width: 1px;
        background-color: var(--color-gray);
        border: none;
    }

    .header > .logo {
        --height: 40px;
        padding-top: calc((var(--height-header) - var(--height)) / 2);
        padding-bottom: calc((var(--height-header) - var(--height)) / 2);
    }

        .header > .logo + hr {
            display: none;
        }

        .header > .logo > img {
            height: var(--height);
        }

    .header > .mobile-spacer {
        height: auto;
        flex: 1 0 auto;
    }

    .header > .name {
        display: none;
        height: auto;
        flex: 1 0 auto;
        font-family: var(--font-condensed);
        font-size: 14px;
        line-height: 17px;
        color: var(--color-primary);
    }

    .header > .action {
        display: flex;
        flex-direction: row;
        align-items: center;
        font-family: var(--font-wide);
        font-weight: 500;
        font-size: 10px;
        line-height: 12px;
        color: var(--color-primary);
    }

        .header > .action > *:first-child {
            width: 29px;
            display: inline;
            transition: color 200ms cubic-bezier(0.19, 1, 0.22, 1);
            margin-right: 7px;
        }

        .header > .action [class^="icon-"]:before,
        .header > .action [class*=" icon-"]:before {
            font-size: 29px;
        }

        .header > .action:hover > *:first-child {
            color: var(--color-secondary);
        }

@media (min-width: 768px) {
    .header {
        --padding-item: 20px;
    }

        .header > .logo {
            --height: 64px;
        }

            .header > .logo + hr {
                display: initial;
            }

        .header > .mobile-spacer {
            display: none;
            flex: 1 0 auto;
        }

        .header > .name {
            display: block;
        }

        .header > .action {
            font-size: 16px;
            line-height: 20px;
        }

            .header > .action > *:first-child {
                width: 49px;
            }

            .header > .action [class^="icon-"]:before,
            .header > .action [class*=" icon-"]:before {
                font-size: 49px;
            }
}

@media (min-width: 1280px) {
    .header {
        padding-left: calc(var(--padding-page) - var(--padding-item));
        padding-right: calc(var(--padding-page) - var(--padding-item));
    }
}

.slide h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
    background-color: inherit;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

/* - Main Menu ---------------------------------------------------- */
.main-menu {
    visibility: hidden;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--height-header);
    height: calc(100% - var(--height-header));
    bottom: 0;
    display: flex;
    flex-direction: column;
    padding-left: 50px;
    background-color: var(--color-gray);
    transform: translateY(-100%);
    transition: transform 600ms cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 5;
    overflow-y: auto;
}

    .main-menu.closing {
        visibility: visible;
    }

    .main-menu.open {
        visibility: visible;
        transform: translateY(0);
    }

    .main-menu > li {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 19px;
    }

        .main-menu > li > a,
        .main-menu > li > a:hover {
            width: 100%;
            font-family: var(--font-wide);
            font-weight: 500;
            font-size: 25px;
            line-height: 35px;
            color: var(--color-primary);
            text-transform: uppercase;
            text-decoration:  none ;            
        }

            .main-menu > li > a:active {
                color: var(--color-secondary);
            }

        .main-menu > li.small {
            padding-top: 5px;
            padding-bottom: 5px;
        }

            .main-menu > li.small + li.small {
                padding-top: 5px;
            }

            .main-menu > li.small > a {
                font-size: 15px;
                line-height: 23px;
            }

/* 
 * The min height needs to be updated if the #mainMenu changes
 * header.clientHeight+mainMenu.scrollHeight 
 */
@media (min-height: 528px) {
    .main-menu {
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .main-menu {
        padding-left: var(--padding-page);
    }

        .main-menu > li::before {
            display: inline-block;
            content: "\e802";
            /* right-arrow */
            font-family: var(--font-icons);
            font-size: 49px;
            color: var(--color-secondary);
            opacity: 0;
            transform: translateX(-50%);
            transition: opacity 200ms cubic-bezier(0.19, 1, 0.22, 1), transform 200ms cubic-bezier(0.19, 1, 0.22, 1);
        }

        .main-menu > li:hover::before {
            opacity: 1;
            transform: none;
        }

        .main-menu > li > a,
        .main-menu > li > a:hover {
            font-size: 60px;
            line-height: 73px;
        }

        .main-menu > li.small > a {
            font-size: 27px;
            line-height: 30px;
        }

        .main-menu > li.small {
            padding-top: 23px;
            padding-bottom: 23px;
        }

            .main-menu > li.small + li.small {
                padding-top: 9px;
            }
}

@media (min-width: 1280px) {
}

/* - Screen Carousell --------------------------------------------- */

.screen-carousell {
    --padding-screen-carousel: 0px;
    --padding-screen-carousel-bottom: 0px;
    --padding-carousell: 12px;
    position: relative;
    width: 100%;
    height: calc(100vh - var(--height-header));
    overflow: hidden;
}

    .screen-carousell > .slide {
        display: none;
        position: absolute;
        left: var(--padding-screen-carousel);
        right: var(--padding-screen-carousel);
        top: 0;
        bottom: var(--padding-screen-carousel-bottom);
        padding: 40px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

        .screen-carousell > .slide:not(:has(>.bg)) {
            background-color: #b8c4de;
        }

        .screen-carousell > .slide.active {
            display: flex;
        }

@keyframes screen-carousell-prev-in {
    0% {
        transform: translateX(calc(-100% - var(--padding-screen-carousel)));
    }

    100% {
        transform: translateX(0);
    }
}

.screen-carousell > .slide.prev-in {
    display: flex;
    animation: 1s ease-in-out 1 forwards screen-carousell-prev-in;
}

@keyframes screen-carousell-prev-out {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(100% + var(--padding-screen-carousel)));
    }
}

.screen-carousell > .slide.prev-out {
    display: flex;
    animation: 1s ease-in-out 1 forwards screen-carousell-prev-out;
}

@keyframes screen-carousell-next-in {
    0% {
        transform: translateX(calc(100% + var(--padding-screen-carousel)));
    }

    100% {
        transform: translateX(0);
    }
}

.screen-carousell > .slide.next-in {
    display: flex;
    animation: 1s ease-in-out 1 forwards screen-carousell-next-in;
}

@keyframes screen-carousell-next-out {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - var(--padding-screen-carousel)));
    }
}

.screen-carousell > .slide.next-out {
    display: flex;
    animation: 1s ease-in-out 1 forwards screen-carousell-next-out;
}

.screen-carousell > .slide > *:not(:last-child) {
    margin-bottom: 8px;
}

.screen-carousell > .slide > .bg {
    background-color: #b8c4de;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -5;
}

.screen-carousell > .slide .logo {
    height: 72px;
}

.screen-carousell > .slide h1 {
    font-family: var(--font-wide);
    font-weight: 500;
    font-size: 25px;
    line-height: 28px;
    color: var(--color-primary);
}

.screen-carousell > .slide a {
    font-family: var(--font-wide);
    font-weight: 700;
    color: var(--color-primary);
    transition: color 200ms cubic-bezier(0.19, 1, 0.22, 1);
}

    .screen-carousell > .slide a:hover {
        color: var(--color-secondary);
    }

.screen-carousell > .dots {
    --padding-bottom: 38px;
    --padding-dots: 20px;
    display: none;
    position: absolute;
    bottom: calc(var(--padding-screen-carousel-bottom) + var(--padding-bottom) - var(--padding-dots) / 2);
    left: 50%;
    transform: translateX(-50%);
}

    .screen-carousell > .dots > button > div {
        width: 6px;
        height: 6px;
        border-radius: 3px;
        margin: calc(var(--padding-dots) / 2);
        background-color: var(--color-primary);
        transition: background-color 1s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .screen-carousell > .dots > button.active > div {
        background-color: white;
    }

.screen-carousell > .prev,
.screen-carousell > .next {
    position: absolute;
    top: calc(50% - var(--padding-screen-carousel) / 2);
    transform: translateY(-50%);
    color: var(--color-primary);
    transition: color 200ms cubic-bezier(0.19, 1, 0.22, 1);
}

    .screen-carousell > .prev:hover,
    .screen-carousell > .next:hover {
        color: var(--color-secondary);
    }

.screen-carousell > .prev {
    left: calc(var(--padding-screen-carousel) + var(--padding-carousell) / 2);
}

.screen-carousell > .next {
    right: calc(var(--padding-screen-carousel) + var(--padding-carousell) / 2);
}

.screen-carousell > .page-down {
    position: absolute;
    bottom: var(--padding-carousell);
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-primary);
    transition: color 200ms cubic-bezier(0.19, 1, 0.22, 1);
}

    .screen-carousell > .page-down:hover {
        color: var(--color-secondary);
    }

@media (min-width: 768px) {
    .screen-carousell {
        --padding-screen-carousel: 20px;
        --padding-screen-carousel-bottom: var(--height-header);
        --padding-carousell: 20px;
    }

        .screen-carousell > .slide .logo {
            height: 128px;
        }

        .screen-carousell > .slide h1 {
            font-size: 40px;
            line-height: 45px;
        }

        .screen-carousell > .page-down {
            bottom: 34px;
        }

        .screen-carousell > .dots {
            display: block;
        }
}

@media (min-width: 1280px) {
    .screen-carousell {
        --padding-screen-carousel: var(--padding-page);
        --padding-screen-carousel-bottom: var(--padding-page);
        --padding-carousell: 20px;
    }


        .screen-carousell > .slide h1 {
            font-size: 60px;
            line-height: 65px;
        }
}

/* - Content ------------------------------------------------------ */

.content > section {
    margin-bottom: 25px;
}

    .content > section > * {
        margin-left: var(--padding-content);
        margin-right: var(--padding-content);
    }

.content h1 {
    font-family: var(--font-wide);
    font-weight: 500;
    font-size: 25px;
    line-height: 40px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 15px;
    background-color: var(--color-primary);
    color: white;
}

.content h2 {
    font-family: var(--font-wide);
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    margin-left: var(--padding-content);
    margin-right: var(--padding-content);
    margin-bottom: 20px;
}

.content section.image > :first-child {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
}

.content h3 {
    font-family: var(--font-wide);
    font-weight: 500;
    font-size: 22px;
    line-height: 25px;
    margin-bottom: 5px;
    color: var(--color-primary);
}

.content h4 {
    font-weight: 900;
}

.content p:not(.soft-break) {
    margin-bottom: 1em;
}

.content ul {
    padding-left: 0.9em;
    list-style: square;
}

.content li::marker {
    content: "✓ ";
    font-weight: 900;
    color: var(--color-secondary);
}

.content hr {
    height: 1px;
    margin-left: var(--padding-content);
    margin-right: var(--padding-content);
    border: none;
    background-color: var(--color-gray);
    margin-bottom: 20px;
}

.content article {
    margin-bottom: 20px;
}

.content button,
.content .button {
    display: block;
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 15px;
    line-height: 30px;
    text-align: center;
    border-radius: 15px;
    background-color: var(--color-primary);
    color: white;
    transition: background-color 200ms cubic-bezier(0.19, 1, 0.22, 1);
}

    .content button:hover,
    .content .button:hover {
        background-color: var(--color-secondary);
    }

.content .map {
    aspect-ratio: 1 / 1;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

@media (min-width: 768px) {
    .content > section {
        margin-bottom: 40px;
    }

    .content h1 {
        font-size: 40px;
        line-height: 60px;
        margin-bottom: 20px;
    }

    .content h2 {
        font-size: 25px;
        line-height: 30px;
    }

    .content section.image > :first-child {
        margin-bottom: 20px;
    }

    .content h3 {
        font-size: 30px;
        line-height: 33px;
        margin-bottom: 10px;
    }

    .content button,
    .content .button {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
        font-size: 20px;
        width: 270px;
        height: 40px;
        line-height: 40px;
        border-radius: 20px;
    }

    .content .larger-margin {
        margin-bottom: 40px;
    }

    .content .map {
        aspect-ratio: 3 / 2;
    }
}

@media (min-width: 1280px) {
    .content > section {
        margin-bottom: 50px;
    }

    .content h1 {
        font-size: 60px;
        line-height: var(--height-header);
        margin-bottom: 23px;
    }

    .content h2 {
        font-size: 35px;
        line-height: 42px;
        margin-bottom: 40px;
    }

    .content section.image {
        position: relative;
        padding-top: 30px;
        padding-bottom: 30px;
    }

        .content section.image > :first-child {
            position: absolute;
            top: 0;
            width: calc(50% + 10px);
            height: 100%;
            object-fit: cover;
            overflow: hidden;
        }

        .content section.image:nth-child(even) > :first-child {
            left: 0;
        }

        .content section.image:nth-child(odd) > :first-child {
            right: 0;
        }

        .content section.image:nth-child(even) > :not(:first-child) {
            margin-left: calc(50% + 155px);
        }

        .content section.image:nth-child(odd) > :not(:first-child) {
            margin-right: calc(50% + 155px);
        }

    .content h3 {
        font-size: 40px;
        line-height: 44px;
        margin-bottom: 15px;
    }

    .content button,
    .content .button {
        margin-left: var(--padding-content);
    }

    .content .map {
        aspect-ratio: unset;
        height: 890px;
    }
}

/* - Content Summary ---------------------------------------------- */

.content.summary > section {
    padding-top: var(--padding-page);
    margin-bottom: 14px;
}

.content.summary .page-name {
    margin-bottom: 5px;
    font-family: var(--font-wide);
    font-weight: 500;
    font-size: 10px;
    line-height: 12px;
    color: var(--color-primary);
    text-transform: uppercase;
}

.content.summary h1 {
    font-family: var(--font-wide);
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 15px;
    text-align: start;
    text-transform: none;
    padding-top: 0;
    padding-bottom: 0;
    background-color: transparent;
    color: var(--color-text);
}

.content.summary p {
    margin-bottom: 30px;
}

.content.summary .keyword-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 10px;
    margin-top: 3px;
    margin-bottom: 30px;
}

    .content.summary .keyword-grid p {
        margin-bottom: 0;
    }

    .content.summary .keyword-grid hr {
        border: none;
        height: 1px;
        background-color: var(--color-gray);
        overflow: visible;
        margin-left: 0;
        margin-right: 0;
        margin-top: 14px;
        margin-bottom: 14px;
    }

        .content.summary .keyword-grid hr::before {
            /* plus */
            content: "\e806";
            display: block;
            font-family: var(--font-icons);
            font-size: 29px;
            color: var(--color-secondary);
            transform: translate(-3px, -50%);
            width: 23px;
        }

    .content.summary .keyword-grid h3 {
        font-family: var(--font-normal);
        font-weight: 900;
        font-size: 15px;
        line-height: 18px;
        margin-bottom: 0;
        color: var(--color-text);
    }

.content.summary .about-us-images {
    margin-left: 0;
    margin-right: 0;
    position: relative;
    padding-bottom: 66%;
    margin-bottom: 15px;
}

    .content.summary .about-us-images > *:nth-child(1) {
        position: absolute;
        object-fit: cover;
        width: calc(50% - 5px);
        height: calc(50% - 5px);
        top: 0;
        left: 0;
    }

    .content.summary .about-us-images > *:nth-child(2) {
        position: absolute;
        object-fit: cover;
        width: calc(50% - 5px);
        height: 100%;
        top: 0;
        right: 0;
    }

    .content.summary .about-us-images > *:nth-child(3) {
        position: absolute;
        object-fit: cover;
        width: calc(50% - 5px);
        height: calc(50% - 5px);
        bottom: 0;
        left: 0;
    }

@media (min-width: 768px) {
    .content.summary .page-name {
        margin-bottom: 5px;
        font-size: 14px;
        line-height: 17px;
    }

    .content.summary h1 {
        font-size: 25px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .content.summary .keyword-grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px 20px;
        margin-bottom: 40px;
    }

        .content.summary .keyword-grid h3 {
            font-size: 18px;
            line-height: 22px;
        }

    .content.summary .about-us-images > *:nth-child(1) {
        width: calc(50% - 5px);
        height: 80%;
        top: 0;
        left: 0;
    }

    .content.summary .about-us-images > *:nth-child(2) {
        width: calc(50% - 10px);
        height: 80%;
        top: 0;
        right: 0;
    }

    .content.summary .about-us-images > *:nth-child(3) {
        width: 39%;
        height: 45%;
        bottom: 0;
        left: 30%;
    }
}

@media (min-width: 1280px) {
    .content.summary .page-name {
        margin-bottom: 14px;
        font-size: 16px;
        line-height: 20px;
    }

    .content.summary h1 {
        font-size: 35px;
        line-height: 42px;
    }

    .content.summary .keyword-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

        .content.summary .keyword-grid h3 {
            font-size: 20px;
            line-height: 24px;
        }

    .content.summary .home-about-us {
        display: grid;
        grid-template-columns: 2fr 3fr;
        overflow: auto;
    }

        .content.summary .home-about-us > * {
            grid-column: 1;
            margin-right: 0;
        }

    .content.summary .about-us-images {
        grid-column: 2;
        margin-left: 20px;
        max-width: 1200px;
        padding-bottom: min(66%, 800px);
        grid-row-start: 1;
        grid-row-end: 99;
    }

        .content.summary .about-us-images > * {
            grid-column: 0;
        }

            .content.summary .about-us-images > *:nth-child(1) {
                left: 0%;
                top: 14%;
                width: 64%;
                height: 82%;
            }

            .content.summary .about-us-images > *:nth-child(2) {
                left: 53%;
                top: 0%;
                width: 47%;
                height: 68%;
            }

            .content.summary .about-us-images > *:nth-child(3) {
                left: 40%;
                top: 68%;
                width: 25%;
                height: 32%;
            }
}

/* - Content Profile ---------------------------------------------- */

.content .profiles > article > img {
    width: 172px;
    height: 172px;
    object-fit: cover;
    border-radius: 86px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}

.content .profiles h4, .content .profiles p {
    text-align: center;
}

@media (min-width: 768px) {
    .content .profiles {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
    }

        .content .profiles > h3 {
            grid-column: 1 / 3;
        }

        .content .profiles > article {
            margin-bottom: 0;
        }

            .content .profiles > article:nth-child(even) {
                margin-right: 0;
            }

            .content .profiles > article:nth-child(odd) {
                margin-left: 0;
            }
}

@media (min-width: 1280px) {

    .content .profiles {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
    }

        .content .profiles > h3 {
            grid-column: 1 / 3;
        }

        .content .profiles > article {
            margin-bottom: 0;
        }

            .content .profiles > article > img {
                width: 270px;
                height: 270px;
                border-radius: 135px;
            }
}

/* - Content Interest ---------------------------------------------- */

.content .interest {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .content .interest > img {
        margin-left: 0;
        margin-right: 0;
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -5;
    }

@media (min-width: 768px) {
    .content .interest {
        aspect-ratio: 3 / 2;
    }
}

@media (min-width: 1280px) {
    .content .interest {
        aspect-ratio: unset;
        width: unset;
        height: 640px;
        margin-left: var(--padding-content);
        margin-right: var(--padding-content);
    }
}

/* - Content References ---------------------------------------------- */

@media (min-width: 1280px) {
    .content section.references {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0px 90px;
        margin-left: var(--padding-content);
        margin-right: var(--padding-content);
    }

        .content section.references > h3 {
            grid-column-start: 1;
            grid-column-end: 4;
        }

        .content section.references > * {
            margin-left: 0px;
            margin-right: 0px;
        }
}

/* - Content Contact ---------------------------------------------- */

@media (max-width: 769px) {
    .content .contact button {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .content .contact {
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0px 20px;
    }

        .content .contact > textarea,
        .content .contact > div {
            grid-column-start: 1;
            grid-column-end: 3;
        }

            .content .contact > div > button {
                margin-bottom: 0;
            }

        .content .contact > span {
            position: absolute;
            bottom: calc(40px - 1em);
            right: 0;
        }
}

@media (min-width: 1280px) {
    .content .contact > div > button {
        margin: 0;
    }
}

/* - Content Legal ------------------------------------------------ */

.content.legal th {
    text-align: left;
}

.content.legal h2 {
    font-family: var(--font-wide);
    font-weight: 500;
    font-size: 22px;
    line-height: 25px;
    text-align: left;
    margin-bottom: 5px;
    color: var(--color-primary);
}

.content.legal h3 {
    font-family: var(--font-wide);
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: left;
    margin-left: var(--padding-content);
    margin-right: var(--padding-content);
    margin-bottom: 20px;
    color: var(--color-text);
}

@media (min-width: 768px) {
    .content.legal h2 {
        font-size: 30px;
        line-height: 33px;
        margin-bottom: 10px;
    }

    .content.legal h3 {
        font-size: 25px;
        line-height: 30px;
    }
}

@media (min-width: 1280px) {
    .content.legal h2 {
        font-size: 40px;
        line-height: 44px;
        margin-bottom: 15px;
    }

    .content.legal h3 {
        font-size: 35px;
        line-height: 42px;
        margin-bottom: 40px;
    }
}

/* - Content Logon ------------------------------------------------ */

.content.logon {
    display: flex;
    flex-direction: column;
}

    .content.logon .login {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        padding: 1rem;
    }


        .content.logon .login h2 {
            font-family: var(--font-wide);
            font-weight: 500;
            font-size: 35px;
            line-height: 24px;
            text-align: center;
            margin-left: var(--padding-content);
            margin-right: var(--padding-content);
            background-color: inherit;
            border: none;
            color: black;
            margin: inherit;
            margin-bottom: 40px;
        }


        .content.logon .login > .input-fields {
            display: grid;
            grid-template-columns: 1fr 4fr;
            max-width: 600px;
            margin: auto;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

            .content.logon .login > .input-fields > span {
                text-align: left;
            }

            .content.logon .login > .input-fields > input {
                margin: 0;
            }

            .content.logon .login > .input-fields > .button {
                grid-column: span 2;
                margin: 0;
                padding: 0;
                justify-self: center;
            }

@media (min-width: 1280px) {
    .content.logon {
        height: calc(100vh - 2 * var(--height-header));
    }
}
/* - Footer ------------------------------------------------------- */

footer {
    position: relative;
    min-height: var(--height-header);
    background-color: var(--color-gray);
    display: grid;
    grid-template-columns: auto;
    align-items: start;
    justify-content: start;
    padding: 66px 20px 20px 20px;
    gap: 18px 30px;
}

    footer .logo {
        position: absolute;
        left: var(--padding-content);
        top: 15px;
        height: 38px;
    }

    footer .to-top {
        position: absolute;
        right: calc(var(--padding-content) - 12px);
        bottom: calc(var(--padding-page) - 3px);
        color: var(--color-primary);
        transition: color 200ms cubic-bezier(0.19, 1, 0.22, 1);
    }

        footer .to-top:hover {
            color: var(--color-secondary);
        }

@media (min-width: 768px) {
    footer {
        grid-template-columns: auto auto;
        align-items: center;
        justify-content: center;
        padding: 20px 150px 20px 210px;
    }

        footer > * {
            flex-basis: calc(50% - 30px);
        }

        footer .logo {
            top: 15px;
            height: 64px;
        }

        footer .to-top {
            bottom: 28px;
        }
}

@media (min-width: 1280px) {
    footer {
        grid-template-columns: auto auto auto auto;
    }

        footer > * {
            flex-basis: auto;
        }
}

.minHeiht_800 {
    min-height: 800px;
}
