.header-top{
    background: rgba(0,0,0,0.8);
    color: #ffffff;
}

.header-top-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:10px 0;
  
}

.header-mail a:hover{
    color: #DF4C56;
}

.header-contact a:hover{
    color: #DF4C56;
}

.header-links{
    display: flex;
    justify-content: space-between;
    align-items: center;
   
}

.header-socials{
    margin-left: 10px;
}

.header-socials img{
    width:20px;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.header-socials img:hover{
    transform:scale(1.1)
}

.header-box{
    z-index: 1000;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    position: relative;
}

.navigation{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:5px 0;
}

.logo img{
    width: 150px;
}

.nav-links li{
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links li a{
    padding: 15px;
    display: block;
    font-weight: 600;
}

.nav-links li a:hover{
    color: #DF4C56;
}

.nav-links li .drop-down{
    position: absolute;
    left: 0;
    width:200px;
    z-index: 1000;
    background: #ffffff;
    border-top:1px solid #DF4C56;
    display: none;
    transition: all 0.3s ease;
}

.nav-links li:hover .drop-down{
    display: block;
}

.nav-links li .drop-down li{
    width: 100%;
    border-top: 1px solid #b18d713b;
}

.nav-links li .drop-down li:nth-child(1){
    border-top: none;
}

.nav-links li .drop-down li:hover{
    background: #DF4C56;
    
}

.nav-links li .drop-down li:hover a{
    color: #ffffff;
}

.hamburger-menu{
    cursor: pointer;
    display: none;
}


.hamburger-menu span{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    content:'';
    width:30px;
    height:3px;
    background: #6F7DA0;
    margin-bottom: 5px;
}

.hamburger-menu span:nth-child(3){
    margin-bottom: 0;
}


.show-menu{
    display: block!important;
}




/* ============Media query for small screeen devices============ */


@media(max-width:992px){
    .nav-links-box{
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        z-index: 1000;
        border-top: 1px solid rgba(0,0,0,0.1);
        display: none;
    }
    .hamburger-menu{
        display: block;
    }

    .nav-links-box .nav-links li,.nav-links-box .nav-links li .drop-down{
        width: 100%;
    }

    .nav-links-box .nav-links li .drop-down{
        position: relative;
    }

    /* ==========header-top-menus========= */

    .header-top-wrapper{
        flex-direction: column;
        padding: 10px 0;
    }

    .header-contact,.header-mail{
        margin-bottom: 5px;
    }
    .header-links {
        flex-direction: column;
    }

    .header-socials {
        margin-left: 0;
    }
}






/* ===========Media queries for large screen devices============ */

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) {

     
    .header-top-wrapper{
        flex-direction: row;
       
    }
    
    .header-links {
        flex-direction: row;
    }

    .header-socials {
        margin-left: 10px;
    }
  }

