
header {
    position: sticky;
    top: 0;
    background: linear-gradient(to bottom, black 48%, rgba(0, 0, 0, 0));
    display: flex;
    justify-content: space-between;
    padding: 34px 80px;
    align-items: center;
    z-index: 10;
}

.header-logo img , .mobile-header-logo img  {
    width: 180px;
}
.header-menu{
    display: flex;
        width: 46%;
        justify-content: space-between;
}

.header-menu-item a{
    text-decoration: none;
    color: white;
    font-size: 17px;
}

.header-contact{
    border: 1.5px solid #713DFF;
    padding: 10px 42px;
    border-radius: 21px;
    cursor: pointer;
}

.header-contact a {
    text-decoration: none;
    color: white;
}





.mobile-header{
    background: linear-gradient(to bottom, #010205 48%, rgba(0, 0, 0, 0));
        display: none;
        z-index: 10;
}

.burger-menu{
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}


.burger-menu img{
    width: 30px;

}



.mobile-sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9;
    top: 0;
    right: 0;
    background-color: #010205;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 20px;
  }
  
  .mobile-sidebar a {
    padding: 8px 10px 8px 15px;
    text-decoration: none;
    font-size: 20px;
    color: white;
    display: block;
    transition: 0.3s;
    margin-bottom: 13px;

}

.mobile-sidebar .closebtn {
    position: absolute;
    top: 39%;
    right: 17px;
    font-size: 36px;
    padding: 0;
    transform: translateY(-50%);
}

.sidebar-logo  {
    width: 160px;

}

.mobile-header-sidebar-top {
    position: relative;
    padding-right: 10px;
    display: flex
;
    padding-bottom: 10px;
    justify-content: center;
}

    .closebtn img {
        width: 18px;
    }

.mobile-header-sidebar-divider{
    border: 1.5px solid #E7E7E6;

}


.mobile-header-sidebar-contactus {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
}

.mobile-header-sidebar-contactus a {

    border: 1.5px solid #713DFF;
    padding: 10px 42px;
    border-radius: 21px;
    cursor: pointer;
    text-decoration: none;
    color: white;
}


@media(max-width:1132px){
    header{
        padding: 34px 32px;
    }
}

@media(max-width:860px){
    .header-logo img{
        width: 130px;

    }

    .header-contact {
        padding: 10px 32px;

    }

    .header-menu {
        width: 54%;
    }
}

@media (max-width:768px){


    header{
        display: none;
    }

    .mobile-header {
        display: flex;
        justify-content: center;
        padding-top: 25px;
        position: relative;
    }
}