@font-face {
    font-family: 'Poppins-Regular';
    src: url("../fonts/Poppins-Regular.ttf");
}

:root {
    --client-primary: #215c91;
}

body {
    background-size: cover;
}

.branding-top {
    margin-top: 16px;
    background-color: #a2cefa;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.branding-top-link {
    color: white;
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

#header-logo {
    width: auto;
    max-width: 250px;
}

.bouton {
    font-family: Poppins-Regular, sans-serif;
    transition: background .25s ease-in-out, color .25s ease-in-out;
    font-weight: bolder;
    border-radius: 8px;
    padding: 8px 10px;
    vertical-align: middle;
    height: 45px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
    background: #215c91;
    color: white;
    text-decoration: none;
    font-size: 18px;
    margin-right: 16px;
}

.bouton:visited {
    color: whitesmoke;
}

.left {
    margin-left: 16px;
    font-size: 25px;
    font-weight: bolder;
    font-family: Poppins-Regular, sans-serif;
}

.container-fluid > .page_inner {
    border-radius: 0;
}

.branding-bottom {
    margin-bottom: 15px;
}

.branding-bottom > .branding-inner {
    background-color: #215c91;
    background-size: cover;
    height: 225px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-family: "Helvetica Neue", sans-serif;
    color: white;
}

#footer-logo {
    margin: 32px 16px 16px 16px;
    height: auto;
    max-width: 270px;

}

.bottom-quick-links {
    font-family: Poppins-Regular, sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
    min-width: 200px;
    padding-top: 20px;
}

.bottom-quick-links > p {
    margin: 0;
}

.bottom-quick-links > h4 {
    font-weight: bold;
    font-size: larger;
}

.bottom-contact-info > a:link, .bottom-contact-info > a:visited, .bottom-contact-info > a:hover {
    margin-top: 16px;
    color: white;
    text-decoration: none;
}

.link:link {
    color: white;
}

.link:visited {
    color: white;
}

/* navbar styles */
.navbar-inverse {
    background-color: #0b3581;
    border-color: #0b3581;
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
    background-color: #0b3581;
}

.container_icon_search {
    display: none;
}

/* mobile view */
@media (max-width: 767px) {

    #header-logo {
        max-width: 100px;
    }

    .branding-top {
        margin-top: 0;
        padding: 8px 0 8px 0;
    }

    .branding-top-link {
        font-size: 16px;
    }

    .bouton {
        margin-right: 8px;
        font-size: 12px;
    }

    .left {
        margin-left: 8px;
        font-size: 16px;
    }

    .branding-bottom > .branding-inner {
        height: auto;
        flex-direction: column-reverse;
        justify-content: center;
    }

    .bottom-quick-links {
        margin: 8px 0 16px 16px;

    }

    #footer-logo {
        max-width: 80%;
    }

}
