.b-a, .bar, .bar:before, .bar:after {
    transition: all .25s;
    content: "";
    position: absolute;
    right: 0;
    height: 6px;
    width: 30px;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.95);
}

.menu-collapsed {
    transition: all .25s;
    position: fixed;
    top: 10px;
    right: 9px;
    height: 36px;
    width: 36px;
    z-index: 1;
    cursor: pointer;
}

.menu-collapsed ul {
    transition: all 0s;
    position: fixed;
    right: -9000px;
}

.bar {
    position: relative;
    right: 0;
    top: 50%;
}

.bar:before {
    top: -8px;
}

.bar:after {
    top: 8px;
}

.b-a-expanded, .menu-expanded .bar:before, .menu-expanded .bar:after {
    transition: all .25s;
    top: -0px;
}

.menu-expanded {
    transition: all .25s;
    text-align: center;
    line-height: 120px;
    height: 100%;
    width: 100%;
    border-radius: 0px;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.85);
}

.menu-expanded li {
    line-height: 60px;
    border-bottom: 1px solid #808080;
    margin-left: -25px;
}

.menu-expanded ul {
    transition: all 0s;
    position: relative;
    right: 0;
    z-index: 2;
}

.menu-expanded a, .menu-expanded a:active, .menu-expanded a:visited {
    transition: all .15s;
    text-decoration: none;
    font-size: 2em;
    padding: 5px;
    color: #ffffff;
    display: block;
}

.menu-expanded a:hover {
    background-color: #dd6028;
    opacity: 0.8;
    transition: all .15s;
    letter-spacing: 2px;
    color: #ffffff;
    border: 1px solid #dd6028;
}

.menu-expanded .bar {
    background-color: transparent;
    transition: all .25s;
}

.menu-expanded .bar:before {
    transform: rotate(45deg);
}

.menu-expanded .bar:after {
    transform: rotate(-45deg);
}

/*General Styling*/

/*Burger-menu2*/

.menu_mobile {
    width: 40px;
    margin-left: 82%;
    margin-top: -11%;
}

.menu2 {
    position: relative;
    width: 30px;
    height: 30px;
    border: 0!important;
}

.menu2 span {
    margin: 0 auto;
    position: relative;
    top: 12px;
    border: 0!important;
}

.menu2 span:before, .menu2 span:after {
    position: absolute;
    content: '';
}

.menu2 span, .menu2 span:before, .menu2 span:after {
    width: 30px;
    height: 6px;
    background-color: #000000;
    display: block;
    border: 0;
}

.menu2 span:before {
    margin-top: -12px;
}

.menu2 span:after {
    margin-top: 12px;
}

/*Fake-Trigger*/

#sized {
    width: 60px;
    height: 60px;
    vertical-align: 30px;
    border: 0!important;
    background: none;
    outline: none;
    top: 5px;
    position: sticky;
}

#sized a, #sized a:hover {
    border: 0!important;
    background: none;
}

/*Modal-Box*/

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding: 0.5%;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 999;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 100%;
    height: 98vh;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    background-color: #000000;
}

.modal-header {
    padding: 2px 16px;
    background-color: #000000;
    border-bottom: none;
    height: 11vh;
}

.modal-body {
    padding: 2px 16px;
    background-color: #000000;
}

.modal-body a {
    color: #ffffff!important;
    border: 0;
}

.modal-body a:hover {
    color: #ed1c24!important;
    border: 0;
}

.close {
    color: #ffffff;
    float: right;
    font-size: 5em;
    font-weight: bold;
    opacity: 1;
    z-index: 99999;
}

.close:hover, .close:focus {
    color: #ed1c24!important;
    text-decoration: none;
    cursor: pointer;
    z-index: 99999;
}

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    50% {
        opacity: 1;
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

.animated {
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/*Navigation Inner Styling*/

.nav ul li a:hover {
    text-decoration: none;
    color: #ed1c24;
}

.nav ul li a {
    padding: 1em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 2vw;
    letter-spacing: -0.05em;
}

.nav ul li {
    display: inline-block;
    font-size: 3em;
}

.nav ul {
    clear: both;
    width: 100%;
    text-align: center;
}

/*Mobile Optimization*/

/* Portrait Tablet to Landscape and Desktop */

@media (min-width:768px) and (max-width:979px) {
    .nav ul li {
        display: block;
        height: 69px;
    }
    .nav ul {
        clear: both;
        width: 100%;
        text-align: center;
        padding: 0;
    }
    .nav ul li a {
        padding: 0;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 6vw;
        letter-spacing: -0.05em;
    }
}

/* Landscape-Phone to Portrait Tablet*/

@media (max-width:767px) {
    .nav ul li {
        display: block;
        height: 38px;
    }
    .nav ul {
        clear: both;
        width: 100%;
        text-align: center;
        padding: 0;
    }
    .nav ul li a {
        padding: 0;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 6vw;
        letter-spacing: -0.05em;
    }
}

/*Landscape-Phone Downwards*/

@media (max-width: 480px) {
    .nav ul li {
        display: block;
        height: 40px;
        line-height: 28px;
    }
    .nav ul {
        clear: both;
        width: 100%;
        text-align: center;
        padding: 0;
        position: fixed;
        top: 70px;
        left: 0%;
    }
    .nav ul li a {
        padding: 0;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 9vw;
        letter-spacing: -0.05em;
    }
    .menu_mobile {
        margin-left: 73%;
        margin-top: -25%;
    }
    sized {
        width: 120px!important;
        height: 43px!importan;
        top: 4px;
        position: sticky;
    }
}