/* CHROMATIC PALETTE */

/* BLUE: #002439 */
/* GOLD: #ceab52 */
/* GRAY: #c8c3b7 */

/* TYPOGRAPHY */

* {
    /* font-family: gill-sans-nova, Helvetica, Arial, sans-serif; */
    font-family: 'Roboto Condensed', sans-serif !important;
}

p {
    font-size: 16px;
    line-height: 24px;
}

.page{
    margin: 0px;
}

/* HEADER */

header{
    background-color: #001c3a;
    color: #fff;
    min-height: 80px;
    border-bottom: 1px solid #ceab52;
}

.menu-header-desktop-container,
.menu-header-desktop-de-container,
.menu-header-desktop-fr-container {
    width: 100%;
    min-height: 80px;
}

#site-navigation{
    min-height: 80px;
}

#header-desktop, #no-nav{
    display: flex;
    width: 100%;
    min-height: 80px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    top: 10px;
}

#header-desktop li.logo span, #no-nav li.logo span{
    display: none;
}

#no-nav li.logo{
    float: none;
    margin: 0px auto;
}

/* BANNER */

#banner{
    width: 100%;
    background-size: cover;
    background-position: bottom;
    height: 65vh;
    height: calc(100vh - 100px);
    background-repeat: no-repeat;
    position: relative;
    min-height: 400px;
}

body.home #banner{
    height: calc(100vh - 100px);
}

@media (max-width: 1400px) {
    #banner{
        height: 50vh;
    }
}

@media (max-width: 640px) {
    #banner, body.home #banner{
        height: 100vw;
        min-height: auto;
    }
    .banner_wrapper {
        padding-top: 80px;
    }
}

.banner-placeholder{
    visibility: hidden;
    max-width: 100%;
}

.banner-title-container{
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner-title{
    letter-spacing: 3px;
    color: #fff;
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 32px;
    border: 1px solid #fff;
    background-color: #001c3a59;
    padding: 7px 20px;
    /* text-shadow: 0px 7px 3px rgba(0, 0, 0, 0.8); */
}
.banner-subtitle{
    font-size: 22px !important;
    line-height: 28px;
    color: #fff;
    text-align: center;
    text-shadow: 0px 2px 1px rgba(0, 0, 0, 0.35);
    background-color: #001c3a59;
    border: 1px solid;
    padding: 10px 100px;
}

/* CONTENT */

#content {
    margin: 30px 0px;
}

body.page-template-template-SimpleText  .site-content ul li{
    font-size: 18px;
}

body.page-template-template-SimpleText  .site-content ul{
    margin: 15px 0px 15px;
}

/* FOOTER */

footer{
    background-color: #001c3a;
    color: #fff;
    min-height: 80px;
    padding: 30px 0px;
    text-align: center;
    border-top: 1px solid #ceab52;
}

footer .custom-logo-link{
    margin: 0px auto;
}

.footer-logo{
    margin-bottom: 30px;
    width: 180px;
    height: auto;
}

.footer-notes{
    font-size: 14px;
    letter-spacing: 1px;
}

.post-footer{
    height: 182px;
    width: 100%;
    background-image: url("../images/bg/bg_post_footer.png");
    background-repeat: repeat-x;
}

