/*
* accesso paradox branding styles
*/
:root {
    --client-primary: #0b3581;
}

body {
    background-image: linear-gradient(90deg, #0b3581, #1696d2);
    background-size: cover;
}

.branding-top {
    margin-top: 30px;
    margin-bottom: 30px;
}

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

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

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

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

.branding-bottom > .branding-inner {
    background-image: url(../images/background_mountains_lite.png);
    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;
    font-family: "Helvetica Neue", sans-serif;
    color: white;
}

#footer-logo {
    width: 50%;
    max-width: 200px;
    min-width: 100px;
    height: auto;
    margin-left: 24px;
    margin-right: 64px;
}

.bottom-contact-info {
    color: white;
    display: flex;
    flex-direction: column;
    margin-right: 12px;
    min-width: 200px;
    padding-top: 20px;
}

.bottom-contact-info > p {
    margin: 0;
}

.bottom-contact-info > 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;
}

.bottom-slogan {
    font-size: x-large;
    max-width: 370px;
    margin-left: auto;
    margin-right: 10%;
    padding-top: 20px;
}

/* 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) {
    .branding-bottom > .branding-inner {
        height: 250px;
        justify-content: space-around;
    }

    .branding-bottom > .branding-inner > #footer-logo {
        display: none;
    }

    .branding-bottom > .branding-inner > .bottom-slogan,
    .branding-bottom > .branding-inner > .bottom-contact-info  {
        margin: 12px;
    }
}

@media (max-width: 535px) {
    .branding-bottom > .branding-inner > .bottom-slogan  {
        display:none;
    }
}