/*********************************
3. Header
*********************************/

.header
{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.75);
    z-index: 100;
    border-bottom: solid 3px #E00F01;
}
.header_content
{
    width: 100%;
}
.main_nav_container_outer
{
    width: 100%;
    height: 10rem;
}
.header.scrolled .main_nav_container_outer
{
    height: 6rem;
}
.header.scrolled .logo_container > div
{
    width: 100px;
    margin-right: 0rem;
}
.header_bar
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(28,36,93,0.75);
}
.header_bar_content
{
    height: 40px;
}
.header_links ul li:not(:last-of-type)::after
{
    display: inline-block;
    content: '|';
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #E00F01;
}
.header_links ul li a
{
    font-size: 0.8rem;
    font-weight: 500;
    color: #FFFFFF;
}
.header_links ul li:first-child a
{
    color: #E00F01;
}
.header_links ul li a:hover
{
    color: #E00F01;
}
.user_area
{
    margin-left: 48px;
}
.user_area ul li:not(:last-of-type)::after
{
    display: inline-block;
    content: '/';
    font-size: 0.8rem;
    font-weight: 500;
    color: #FFFFFF;
    margin-left: 3px;
    margin-right: 3px;
}
.user_area ul li a
{
    font-size: 0.8rem;
    font-weight: 500;
    color: #FFFFFF;
}
.user_area ul li a:hover
{
    color: #E00F01;
}
.header_live a > div > div:last-child
{
    padding-left: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #FFFFFF;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}
.header_live a:hover > div > div:last-child
{
    color: #E00F01;
}
.main_nav
{
    width: 100%;
    padding-bottom: 1rem;
}
.main_nav_container > div:not(:nth-child(1))
{
    width: calc(100% - 210px);
}
.main_nav ul li:not(:last-of-type)
{
    margin-right: 38px;
}
.main_nav ul li a
{
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
}

.nav-link.dropdown-toggle{
    padding: 0px;
}

.main_nav ul li.active a{
    color: #000000;
}

.main_nav ul li a:hover
{
    color: #E00F01;
}
.main_nav_container .header_live
{
    display: none;
}
.logo_container
{
    width: 210px;
    margin-right: 1rem;
}
.logo_container a
{
    display: block;
    position: relative;
    width: 100%;
}
.logo_container > div
{
    position: absolute;
    top: -60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}
.hamburger
{
    display: none;
    position: absolute;
    bottom: 15px;
    right: 0px;
    cursor: pointer;
}
.hamburger i
{
    font-size: 22px;
    color: #000000;
}
.hamburger:hover i
{
    color: #E00F01;
}

/*********************************
4. Menu
*********************************/

.menu
{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.55);
    z-index: 101;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
.menu.active
{
    visibility: visible;
    opacity: 1;
}
.menu_background
{
    position: absolute;
    top: 0;
    right: -65%;
    width: 65%;
    height: 100%;
    background: rgba(255,255,255,0.55);
    padding-right: 93px;
    border-left: solid 2px #E00F01;
    transform-origin: bottom right;
    -webkit-transform: skew(-12deg);
    -moz-transform: skew(-12deg);
    -ms-transform: skew(-12deg);
    -o-transform: skew(-12deg);
    transform: skew(-12deg);
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
.menu.active .menu_background
{
    right: 0%;
}
.menu_container
{
    width: 100%;
    height: 100%;
    padding-left: 9rem;
    padding-top: 124px;
    -webkit-transform: skew(12deg);
    -moz-transform: skew(12deg);
    -ms-transform: skew(12deg);
    -o-transform: skew(12deg);
    transform: skew(12deg);
    overflow: scroll;
}
.menu_close
{
    position: absolute;
    top: 19px;
    right: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    cursor: pointer;
}
.menu_nav ul li
{
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}
.menu_nav ul li:first-of-type
{
    -webkit-transition-delay: 100ms;
    transition-delay: 100ms;
}
.menu_nav ul li:nth-child(2)
{
    -webkit-transition-delay: 170ms;
    transition-delay: 170ms;
}
.menu_nav ul li:nth-child(3)
{
    -webkit-transition-delay: 240ms;
    transition-delay: 240ms;
}
.menu_nav ul li:nth-child(4)
{
    -webkit-transition-delay: 310ms;
    transition-delay: 310ms;
}
.menu_nav ul li:nth-child(5)
{
    -webkit-transition-delay: 380ms;
    transition-delay: 380ms;
}
.menu_nav ul li:nth-child(6)
{
    -webkit-transition-delay: 450ms;
    transition-delay: 450ms;
}
.menu.active .menu_nav ul li
{
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    opacity: 1;
}
.menu_nav ul li a
{
    font-size: 24px;
    color: #000000;
    font-weight: 900;
    text-transform: uppercase;
}
.menu_nav ul li a:hover
{
    color: #E00F01;
}
.menu_close:hover
{
    color: #E00F01;
}
.menu_user_area
{
    display: none;
    border-bottom: solid 1px #E00F01;
}
.menu_user_area ul li:not(:last-of-type)::after
{
    display: inline-block;
    content: '/';
    font-size: 0.8rem;
    font-weight: 500;
    color: #000000;
    margin-left: 3px;
    margin-right: 3px;
}
.menu_user_area ul li a
{
    font-size: 0.8rem;
    font-weight: 500;
    color: #000000;
}
.menu_user_area ul li a:hover
{
    color: #E00F01;
}
.menu_links
{
    position: absolute;
    right: 40px;
    bottom: 20px;
}
.menu_links ul li:not(:last-of-type)::after
{
    display: inline-block;
    content: '|';
    margin-left: 8px;
    margin-right: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #E00F01;
}
.menu_links ul li a
{
    font-size: 0.8rem;
    font-weight: 500;
    color: #000000;
}

.menu_links ul li a:hover {
    color: #E00F01;
}

.menu_links ul li:first-child a
{
    color: #E00F01;
}

.dropdown-menu{
    background: rgba(255,255,255,0.75);
    margin-top: 1em;
    border-bottom: 3px solid #E00F01;
    border-radius: 0px;
}

.dropdown-item{
    padding: .25rem 1rem;
}

