/*

Header

*/

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 200;
    transition: all 0.5s;
}
header nav li a{
    font-size: 18px;
}
html[data-scrolldir="down"] header {
    top: -72px;
}

header .nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    background-color: #ED1C24;
}

header .nav-header .logo {
    width: 180px;
    margin: 0 0 0 46px;
}

header .nav-header .name {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

header .nav-header .hamburger {
    width: 52px;
    margin: 0 46px 0 128px;
    cursor: pointer;
}

header nav.global {
    position: fixed;
    top: 0;
    right: 0;
    display: none;
    width: 400px;
    height: 100vh;
    color: #fff;
    text-transform: uppercase;
    background-color: #911225;
    background-image: url(../../img/menu/nav-background-merge1.jpg);
    background-size: cover;
    padding: 100px 30px 60px 30px;
    overflow: auto;
    z-index: 99;
}

header nav.global .close-icon {
    position: absolute;
    top: 10px;
    right: 46px;
    width: 52px;
    cursor: pointer;
    z-index: 3;
}
header nav.global li a{
    line-height: 27px;
    color: #fff;
}
header nav.global li a p{
    margin-bottom: 0px;
    position: relative;
    padding-left: 15px;
}
header nav.global li a p:after{
    background-image: url('../../img/menu/arrow-right.png');
    background-size: 8px 16px;
    display: inline-block;
    width: 8px; 
    height: 16px;
    content:"";
    position: absolute;
    left: 0px;
    top: 5px;
}
header nav.global li a p:hover{
    opacity: 0.5;
}
header nav.global li.message {
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.30);
    margin-bottom: 55px;
}

header nav.global li.main-section {
    padding-bottom: 33px;
}

header nav.global li.main-section.last {
    padding-bottom: 48px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.30);
    margin-bottom: 30px;
}

header nav.global li.supporting {
    padding: 0 0 15px 0;
}

header nav.global li.supporting.last {
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.30);
    margin: 0 0 30px 0;
}

header nav.global li.supplemental {
    padding-bottom: 15px;
}

header nav.global li.supplemental.subhead {
    font-size: 20px;
    font-weight: normal;
    letter-spacing: 0.67px;
    color: #fff;
    /* opacity: 0.5; */
}

header nav.global li.supplemental a {
    display: inline-block;
    width: 100%;
    font-size: 14px;
    padding: 10px 0 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

header nav.global li.supplemental a {
    background-image: url(../../img/menu/icon-download.png);
    background-size: 20px 18px;
    background-repeat: no-repeat;
    background-position: right 15px center;
}

header nav.global li a:hover {
    opacity: 0.5;
}

header nav.global li {
    transform: translateY(10px);
    transition: 1s transform;
}

html.freeze header nav.global li {
    transform: translateY(0);
}

@media (max-width: 900px){
    header .nav-header .logo {
        margin: 0 0 0 15px;
    }
    header .nav-header .hamburger {
        margin: 0 15px 0 128px;
    }
}

@media (max-width: 767px){
    header .nav-header {
        height: 60px;
    }
    header nav.global {
        width: 100%;
        padding: 60px 20px 60px 20px;
    }
    header .nav-header .logo {
        flex-shrink: 0;
        width: 87px;
        margin: 0 0 0 16px;
    }
    header .nav-header .name {
        font-size: 12px;
        line-height: 1.2;
        text-align: center;
        padding: 0 10px 0 10px;
        letter-spacing: 0px;
    }
    header .nav-header .hamburger {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        margin: 0 16px 0 0;
    }
    header nav.global .close-icon {
        top: 10px;
        right: 16px;
        width: 48px;
    }
    header nav.global li.message {
        font-size: 100%;
        margin-bottom: 20px;
    }
    header nav.global li.main-section {
        padding-bottom: 15px;
    }
    header nav.global li.main-section.last {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    header nav.global li.supporting.last {
        margin-bottom: 20px;
    }
    header nav li a{
        font-size: 16px;
    }
}