header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background:#fff;
	overflow-x hidden;
    padding: 2.0rem 20rem;
}
header div{
    height: 55px;
    width: 100px;
}
header nav a{
    padding: 0.5rem 2rem;
    color: #222;
    margin: 0 1rem;
    font-size: 18px;
    border-radius: 10px;
    transition: all 0.1s ease-in-out;
}
.header_sticky{
    position: fixed;
    width: 100%;
    z-index: 30;
    transform: translateY(0px);
    transition: all 0.7s ease-in-out;
    animation: scroll 0.5s ease-in-out;

}

@keyframes scroll{
    from{
        transform: translateY(-100px);
    }to{
        transform: translateY(0px);        
    }
}
header i{
    font-size: 30px;
    cursor: pointer;
}
header nav{
    display: flex;
}
header #close-menu-btn{
    display: none ;
}

header #menu-btn{
    display: none ;
}
.header_active{
    background-color: #dd2833;
    color: #fff;
}
.header_active:hover{

    text-decoration: none !important;
    text-underline-offset: 0 !important;
    color: #fff !important;
    transition: all 0.1s ease-in-out !important;
}

header nav a:hover{
    text-decoration: underline #dd2833;
    text-underline-offset: 0.5em;
    color: #dd2833;
    transition: all 0.1s ease-in-out;
}

header div img{
    height: 100%;
}

@media(max-width:1720px){
   
    header{
        padding: 1rem 8rem;
    }

    header div{
        height: 45px;
        width: 100px;
    }
    

}

@media(max-width:1300px){
    header{
        padding: 1rem 7rem;
    }
    
    header nav a{          
        margin: 0 0.5rem;
        font-size: 18px;
    }
    header div{
        height: 45px;
        width: 100px;
    }

}

@media(max-width:1100px){
    header{
        padding: 1rem 1rem;
    }
    header div{
        height: 35px;
        width: 50px;
    }
    header nav a{        
        font-size: 14px;
        width: 50%;
        text-align: center;
        margin: 0.5rem 0    ;
        /* border: 0.5px solid #222; */
    }
    header nav a:hover{
        text-decoration: none;
        text-underline-offset: 0.5em;
        color: #fff;
        background-color: #222;
        transition: all 0.1s ease-in-out;
    }
    header #close-menu-btn{
        display: none ;
    }
    
    header #menu-btn{
        display: flex;
    }
    header nav{
        padding: 1rem 2rem;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 100px;
        transition: all 0.5s ease-in-out;
        right: -100px;
        top: 63px;
        z-index: 20;
        visibility: hidden;
        width: 0;
        opacity: 0;
        /* display: none; */
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .navbar_active{
        right: 0;
        /* top: 63px; */
        opacity: 1;
        width: 100%;
        visibility: visible;
        /* display: flex; */
    }

    .navbar_deactive{
        /* top: 100px; */
        visibility: hidden;
        opacity: 0;
        width: 0;
        right: -100px;
        /* display: none;    */
    }
    .menu_active{
        display: flex !important;
    }
    
    .menu_deactive{
        display: none !important;
    }
    
}

@media(max-width:930px){
    
    header{
        padding: 1rem 1rem;
    }
    header div{
        height: 25px;
    }
    
}


@media(max-width:870px){
    
    
}

@media(max-width:680px){
    
}

@media(max-width:550px){
    

    
}