/* Header */


/* --------------------------------------------------------------------------------------------- */

header {
    position: fixed;
    left: 0;
    right: 0;
    padding: 32px 0;
    background: #FFFFFF;
    z-index: 9999;
}

header .logo {
    display: inline-block;
    max-width: 200px;
}

header a {
    font-size: 18px;
    color: #365658;
    text-decoration: none;
}

header ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (max-width: 1200px) {
    header nav.navigation {
        display: none;
    }
    header .button {
        display: none;
    }
}


/* Header - Navigation */


/* --------------------------------------------------------------------------------------------- */

header nav ul li {
    display: inline-block;
}

header nav.navigation ul li:not(:last-child) {
    margin-right: 24px;
}


/* Header - Language */


/* --------------------------------------------------------------------------------------------- */

header nav.language ul li {
    position: relative;
    padding: 0 10px;
}

header nav.language ul li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10%;
    right: -2px;
    height: 90%;
    border: 1px solid #365658;
    border-width: 1px 1px 0 0;
}

header nav.language .active {
    font-weight: bold;
}


/* Header - Language Dropdown */


/* --------------------------------------------------------------------------------------------- */

header .dropdown .dropdown-toggle {
    color: #365658;
}

header .dropdown .dropdown-toggle {
    background: none;
    border: none;
}


/* Section Hero */


/* --------------------------------------------------------------------------------------------- */

section.section-hero {
    padding-top: 230px;
    padding-bottom: 32px;
}

section.section-hero strong {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    line-height: 125%;
    color: #365658;
}

section.section-hero .hero-text {
    background: #FFFFFF;
}

section.section-hero-mobile {
    padding-top: 180px;
}

section.section-hero-desktop {
    background-image: url('../img/hero-wide.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom center;
    background-color: #E3EEEF;
}

section.section-hero-mobile .hero-text {
    padding-bottom: 48px;
}

section.section-hero-desktop .hero-text {
    padding: 38px;
}

section.section-hero-mobile img {
    width: 100%;
    height: auto;
}


/* Section What */


/* --------------------------------------------------------------------------------------------- */

.col-right {
    /* background: #E3EEEF; */
}

@media (max-width: 768px) {
    .col-right {
        text-align: center;
    }
}

@media (min-width: 992px) {
    section.section-half-verylightblue {
        background: linear-gradient(90deg, #FFFFFF 50%, #E3EEEF 50%);
    }
    .col-left {
        padding-right: 100px;
    }
    .col-right {
        padding-left: 100px;
    }
}


/* Section Content */


/* --------------------------------------------------------------------------------------------- */

#quotes .quote {
    padding: 0 32px;
    margin-bottom: 24px;
}

#quotes .quote .portrait {
    display: block;
    margin: 0 auto;
    margin-bottom: 24px;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    overflow: hidden;
    background: #BEBEBE;
}

#quotes .quote h3 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    line-height: 100%;
    /* or 34px */
    /* Primary / Dark Blue */
    color: #006FA4;
    margin-bottom: 8px;
}

#quotes .quote h4 {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    /* identical to box height, or 26px */
    /* Tints / Dark Blue 05 */
    color: #004D7A;
    margin-bottom: 24px;
}

#quotes .quote p {
    font-family: 'Lato';
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    /* or 24px */
    text-align: center;
    /* Tints / Dark Blue 05 */
    color: #004D7A;
}


/* Section Recupel */


/* --------------------------------------------------------------------------------------------- */

@media (max-width: 768px) {
    #recupel {
        padding: 32px 0;
    }
    #recupel .box {
        padding: 32px;
    }
    #recupel .emoji {
        float: left;
        max-width: 100px !important;
    }
}


/* Section Contact */


/* --------------------------------------------------------------------------------------------- */

#contact .contact {
    padding: 64px;
    background: #FFFFFF;
}

@media (max-width: 1200px) {
    #contact {
        padding-bottom: 0;
    }
    #contact .info {
        text-align: center;
        padding-bottom: 32px;
    }
    #contact .contact {
        padding: 32px;
        margin-left: -15px;
        margin-right: -15px;
    }
}


/* Footer */


/* --------------------------------------------------------------------------------------------- */

footer {
    padding: 24px 0;
    background: #004D7A;
}

footer .logo {
    display: inline-block;
    max-width: 150px;
}

footer a {
    font-size: 18px;
    color: #FFFFFF;
    text-decoration: underline;
}

footer nav {
    display: inline-block;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    display: inline-block;
    margin-left: 48px;
}

@media (max-width: 768px) {
    footer .logo {
        display: block;
        width: 100%;
    }
    footer nav {
        display: block;
    }
    footer ul li {
        display: block;
    }
}