html {
    scroll-behavior: smooth;
}

body {
    font-family: "Museo Sans", 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-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 0;
    margin: 0;

}

h1 {
    color: #282D34;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

a {
    color: #009DE0;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p {
    margin: 8px 0;
}

.active-link {
    text-decoration: underline !important;
}

/* HEADER/NAV */

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1 0 0;
    align-self: stretch;
    color: #fff;
    background: #009DE0;
    padding: 0 40px;
}

.nav-top {
    display: flex;
    height: 80px;
    padding: 0 40px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    background: #FFF;

    img {
        height: 48px;
    }
}

.nav-top-ul {

    display: flex;
    flex-direction: row;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    gap: 16px;
    padding: 0;

    a {
        color: rgb(40, 45, 52);
        text-decoration: none;
        font-size: 21px;
        font-style: normal;
        font-weight: 500;
    }

    a:hover {
        text-decoration: underline;
    }
}

.nav-ul {
    display: flex;
    flex-direction: row;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    gap: 16px;
    padding: 0;

    a {
        color: #fff;
        text-decoration: none;
        font-size: 21px;
        font-style: normal;
        font-weight: 700;
    }

    a:hover {
        text-decoration: underline;
    }
}

.hero {
    img {
        width: 100%;
        aspect-ratio: 4/1;
        object-fit: cover;
    }
}

/* CONTENT */

main {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: 40vh;

}

.content-container {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    border-radius: 8px;
    margin-top: -160px;
    padding: 128px;
    background-color: #fff;

}

/* Break content on smaller screens */
@media only screen and (max-width: 1000px) {
    .content-container {
        margin: 8px;
        padding: 16px;
    }
}

.content-title {
    display: flex;
    flex-direction: column;
    align-items: center;

    h1 {
        margin: 0;
    }
}

.subtitle {
    margin: 0;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.button-group {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

.arrow-button {
    display: flex;
    height: 48px;
    padding: 0 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: none;
    border-radius: 100px;
    background: #009DE0;
    color: #FFF;
    cursor: pointer;

    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;


}

.arrow-button:hover {
    background: #0377a8;
    transition: 0.2s;
}

.arrow-button-orange {
    background: #F7931E !important;
}

.arrow-button-orange:hover {
    background: #a76317 !important;
    transition: 0.2s;
}




/* JUMBO */
.blue-jumbo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
    align-self: stretch;

    .card {
        display: flex;
        padding: 64px 120px 64px 120px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        border-radius: 8px;
        background: #EAF9FA;
    }

    .card-img {
        position: relative;
        right: 150px;
        width: 160px;

        img {
            border-radius: 8px;
            width: 320px;
            height: 200px;
        }

    }

    @media only screen and (max-width: 1000px) {
        .card-img {
            display: none;
        }

        .card {
            padding: 32px;
        }
    }
}


/* Map container */

#map-container {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;

    iframe {
        width: 100%;
        height: calc(100vh - 60px);
        margin: 0;
        border: none;
    }
}

/* FOOTER */

.partner-section {
    background-color: rgb(244, 244, 244);
    padding: 80px 32px;
    text-align: center;

    h2 {
        margin-top: 0;
    }
}

footer {
    display: flex;
    width: calc(100% - 128px);
    padding: 32px 64px;
    flex-direction: column;
    align-items: center;
    gap: 40px;

    background: #282D34;

    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* TODO make images fit better */

.footer-image-carrousel {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;


    img {
        object-fit: cover;
        flex-shrink: 1;
        height: 64px;
    }
}

.footer-link-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    gap: 16px;
    padding: 0;

    a {
        color: #fff;
        padding-right: 16px;
    }

    li:not(:last-child) {
        border-right: 1px solid #fff
    }
}