/*mobile devices*/
@media only screen and (min-width: 1024px) {

    #mobile-menu-btn{
        display: none;
    }
}
@media only screen and (max-width: 1024px) {


#mobile-menu-btn{
    position: absolute;
    right: 0;
    top:0;
    height: 100%;
   width: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 0 2.5rem 0 0 ;
    background: none;
    border: none;
    z-index: 9999999;

}

    .kav{
        height: 3px;
        width: 30px;
        background-color: var(--dark-blue);
        transition: .3s all;
    }


    .kav-1{
        transform: translateY(-5px);
    }

    .kav-3{
        transform: translateY(5px);
    }


   .menu-opened .kav-1{
        transform: translateY(3px) rotate(45deg);
    }

    .menu-opened .kav-3{
        transform: translateY(-3px)  rotate(-45deg);;
    }

    .menu-opened  .kav-2{
        opacity: 0;
    }


header .h-third:first-child{
    position: absolute;
    z-index: 9999999999999999;
}

.main-nav{
    position: fixed;
    top:0;
    left: -100vw;
    width: 100vw;
    height: 100%;
transition: .5s all ease-in-out;
    background: rgba(46, 66, 213,.5);
    backdrop-filter: blur(3px);
}

    .menu-opened .main-nav{
        left: 0;
    }
    .main-nav>div,.main-nav>ul{
    height: 100%;
}
    .main-nav ul{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;

    }


    .main-nav ul li{
        margin: 2rem 0 !important;
    }

}