:root {
    --labodoc-deep-blue: #002945;
    --labodoc-middle-blue: #2C7898;
    --labodoc-light-blue: #C7E3EE;
    --labodoc-beige: #EFEAE4;
    --labodoc-yellow: #FCBF49;
    --shadow-color: #0000004B;
}

* {
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    /*font-weight: normal;*/
    /*font-style: normal;*/
    font-variation-settings: "wdth" 100;
    font-size: 16px;
    color: var(--labodoc-deep-blue);

    @media screen and (max-width: 1000px) {
        font-size: 14px;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

h1 {
    font-size: 2rem;
    font-weight: 900;
}

h2 {
    font-size: 1.5rem;
    font-weight: 900;
}

h3 {
    font-size: 1.3rem;
}

.page-width {
    max-width: 88.89vw;
    padding: 0 5vw 0 5vw;
    margin: auto;
}

.labodoc-shape {
    border-radius: 3em 3em 3em 0;
}

header[role="banner"] {
    /*position: sticky;*/
    top: 0;
    background-color: var(--labodoc-beige);
}

header[role="banner"] a {
    display: inline-block;
    width: 400px;
    padding: 0 5vw 0 5vw;
    background-color: var(--labodoc-middle-blue);
    border-radius: 0 80px 0 0;
}

header[role="banner"] a img {
    padding: 20px 0;
    height: 40px;
    width: 200px;
}

@media screen and (max-width: 1000px) {
    header[role="banner"] a {
        width: 300px;
    }

    header[role="banner"] a img {
        height: 4em;
        width: 10em;
    }
}

@media screen and (max-width: 700px) {
    header[role="banner"] {
        text-align: center;
    }

    header[role="banner"] a {
        /*padding: 15px 0;*/
        background-color: transparent;
    }

    header[role="banner"] a img {
        height: 4em;
        width: 10em;
    }
}


footer {
    background-color: var(--labodoc-middle-blue);
    color: white;

    div.up {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 5px;

        img {
            height: 2em;
            width: 10em;
            padding-right: 40px;

            @media screen and (max-width: 1000px) {
                height: 2em;
                width: 10em;
            }

            @media screen and (max-width: 700px) {
                height: 7em;
                width: 12.5em;
            }
        }

        nav {
            display: flex;
            gap: 40px;

            @media screen and (max-width: 700px) {
                flex-direction: column;
                gap: 10px;
            }

            a {
                color: white;
                text-decoration: none;
                font-weight: 900;
            }
        }
    }

    hr {
        margin: 0;
        border: 1px solid var(--labodoc-yellow);
    }

    div.bottom {
        padding: 10px 0;

        ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            @media screen and (max-width: 700px) {
                flex-direction: column;
                align-items: center;
            }

            li {
                color: white;
                margin: 4px 0;

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

            li:not(:last-child)::after {
                content: "|";
                margin: 0.2vw;
            }

            @media screen and (max-width: 700px) {
                li:not(:last-child)::after {
                    content: none;
                    margin: initial;
                }
            }
        }
    }
}
