.header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 80px;
    z-index: 20;
    background: rgba(0, 0, 0, .7);
    padding: 10px 20px;
    box-sizing: border-box;
}
.header .center-align {
    float: right;
    display: block;
}
.header.scrolled {
    /*background: rgba(0, 0, 0, .7);*/
    background: rgba(27,53,82,0.9); 
    z-index: 17;
    height: 80px;
}
.header .logo-content {
    width: 280px;
    float: left;
}
.header .logo {
    width: 65px;
    float: left;
}
.header .content {
    padding-top: 20px;
}
.header .logo-content .content h5 {
    /*font-family: 'Proxima Nova';*/
    font-family: 'proxima_nova_altbold';
    font-weight: 400;
    text-align: left;
    color: #fff;
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 20px;
}
.header .menu-container {
    text-align: right;
    float: right;
    width: calc(100% - 280px);
    margin: 0px auto 0px;
    padding-top: 22px;
}
.heading-fixed .header .menu-container {
    padding-top: 0px;
}
.header .menu-container .menu-items {
    padding: 0px;
    box-sizing: border-box;
    float: left;
}
.header.scrolled  .menu-container .menu-items {
    padding: 0px;
}
.header .menu-container .menu-items li {
    list-style-type: none;
    float: left;
}
.header .menu-container .menu-items li + li {
    margin-left: 40px;
}
.header .menu-container .menu-items li a {

    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
    color: #fff;
    text-align: right;
    font-size: 14px;
    letter-spacing: 1.3px;
    line-height: 16px;

}
.header.scrolled .menu-container .menu-items li a {
    color: #fff;
}
.header .menu-container .menu-items li a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -20px;
    height: 8px;
    width: 0px;
    color: #DC2E27;
    background-color: #DC2E27;
    opacity: 0;
    -webkit-transition: width 0.8s ease;
    -moz-transition: width 0.8s ease;
    -ms-transition: width 0.8s ease;
    -o-transition: width 0.8s ease;
    transition: width 0.8s ease;
}
.header .menu-container .menu-items li a:hover:after,
.header .menu-container .menu-items li.active a:after  {
    opacity: 1;
    transform: scaleX(1);
    width: 100%;
}
.header .menu-container .menu-items li a:hover{
    color: #DC2E27;
}
.header .menu-container .menu-items li.active a {
    color: #DC2E27;
}
.header .menu-container .icons path {
    fill: #fff;
}
.header .menu-container .icons path:hover {
    fill: #fff;
}
.header .menu-container .icons li {
    list-style-type: none;
    float: left;
    margin: -1px 5px 0px 5px;
    border: 1px solid #fff;
    padding: 0px 5px;
}
.header .menu-container .icons li:nth-child(1) {
    margin-left: 30px;
}
.header .menu-container .icons li:hover {
    background: #ff2262;
}
.header .menu-container .icons li svg {
    width: 22px;
    height: 28px;
    margin-bottom: -7px;
}
.header .menu-container .icons {
   float: left;
}



.header .mobile-menu {
    display: none;
}


/*Header ends here*/

@media(max-width: 767px) {
    
    .header .mobile-menu {
        display: block;
    }
    .header {
        width: 100%;
        height: 60px;
        padding: 0px 0px 5px;
        box-sizing: border-box;
        background: rgba(0, 0, 0, .7);
    }

    .header.scrolled {
        z-index: 17;
        height: 60px;
        background: rgba(0, 0, 0, .7);
    }
    .header .logo {
        width: 55px;
        float: left;
        padding: 5px 0px 5px 5px;
        box-sizing: border-box;
    }
    .header .mobile-menu svg {
        position: absolute;
        top: 0px;
        right: 0px;
        padding: 0px;
        z-index: 1;
        cursor: pointer;
        background: rgba(0, 0, 0, .3);
        margin-top: 10px;
        margin-right: 5px;
    }
    .header .mobile-menu svg path {
        stroke: #ffffff;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    .header .mobile-menu svg path + path {
        margin-top: 5px;
    }
    .header .menu-container {
        opacity: 0;
        position: fixed;
        top: 0px;
        right: 0px;
        width: calc(100% - 0px);
        border: none;
        height: 100%;
        overflow-y: auto;
        background: rgba(0, 0, 0, .8);
        text-align: left;
        margin: 0px;
        padding: 0px 25px;
        box-sizing: border-box;
        pointer-events: none;
    }
    .header .menu-container.menu-opened {
        pointer-events: visible;
    }
    .header .mobile-menu.menu-opened svg path {
        stroke: #DC2E27;
    }
    .header.scrolled .mobile-menu svg {
        top: 0px;
        right: 0px;
    }
    .header .menu-container .menu-items li {
        float: none;
        text-align: center;
    }
    .header .menu-container .menu-items {
        float: none;
        margin-top: 80px;
    }
    .header .menu-container .menu-items li + li {
        margin: 30px 0px 0px 0px;
    }
    .header .menu-container .menu-items li img {
        width: 50px;
    }
    .header .menu-container .menu-items li a {
        font-size: 16px;
        color: #fff;
        display: block;
        text-align: left;
        font-weight: 400;
        line-height: 26px;
        letter-spacing: 2.5px;
    }
    .header .menu-container .menu-items li.active a {
        font-size: 16px;
        border: none;
    }
    .header .menu-container .menu-items li a:after {
        display: none;
    }
    .header .center-align {
        display: table;
        margin: 0 auto;
        float: none;
    }
    .header .header-menu {
        padding-top: 4px;
    }

}


    /*Header ends here*/


/* For max-width: 767px ends here*/


@media (min-width: 768px) and (max-width: 991px) {
    /*Header starts here*/
    .header {
        height: 75px;
    }
    .header.scrolled {
        height: 75px;
    }
    .header .mobile-menu {
        display: block;
    }
    .header .mobile-menu svg {
        position: absolute;
        top: 25px;
        right: 20px;
        padding: 0px;
        z-index: 1;
        cursor: pointer;
        background: rgba(0, 0, 0, .3);
    }

    .header .mobile-menu svg path {
        stroke: #ffffff;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    .header .mobile-menu svg path + path {
        margin-top: 5px;
    }
    .header .mobile-menu.menu-opened svg path {
        stroke: #ff2262;
    }
    .header .menu-container {
        opacity: 0;
        position: fixed;
        top: 0px;
        right: 0px;
        width: calc(100% - 0px);
        border: none;
        height: 100%;
        overflow-y: auto;
        background: rgba(0, 0, 0, .8) ! important;
        text-align: left;
        margin: 0px;
        padding: 0px 25px;
        pointer-events: none;
    }
    .header .menu-container.menu-opened {
        pointer-events: visible;
    }
    
    .header .menu-container .menu-items li {
        float: none;
        text-align: center;
    }
    .header .menu-container .menu-items {
        float: none;
        margin-top: 80px;
    }
    .header .menu-container .menu-items li + li {
        margin: 35px 0px 0px 0px;
    }
    .header .menu-container .menu-items li a {
        font-size: 22px;
        line-height: 30px;
        display: block;
        font-weight: 400;
        text-align: left;
        letter-spacing: 3.5px;
        color: #fff;
    }
    .header .menu-container .menu-items li.active a:after {
        display: none;
    }
    .header .menu-container .menu-items li.active a {
        border: none;
    }
    .header .menu-container .menu-items li img {
        width: 100px;
    }
    .header .center-align {
        display: table;
        margin: 0 auto;
        float: none;
    }
    
    /*Header ends here*/

}
@media (min-width: 992px) and (max-width: 1024px) {
    .header .menu-container .menu-items li a {
        font-size: 14px;
    }
    .header .menu-container .menu-items li + li {
        margin-left: 15px;
    }
    .header.scrolled {
        padding: 10px 20px;
        box-sizing: border-box;
    }
    .header .menu-container .menu-items li a:after {
        bottom: -16px;
        height: 6px;
    }
}

@media (min-width: 1440px) and (max-width: 2520px) {
    .header .max-width {
     
        padding: 0px 20px;
        box-sizing: border-box;
    }
    .header .menu-container .menu-items li + li {
        margin-left: 35px;
    }
}
@media (min-width: 1920px) and (max-width: 2520px) {
    .header .menu-container .menu-items li + li {
        margin-left: 45px;
    }
    .header .menu-container {
        width: calc(100% - 240px);
        text-align: left;
        float: left;
    }
}