nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: 7rem;
    background: white;
    /* overflow-x: hidden; */
}

.left_nav_bar{
    cursor: context-menu;
    display: flex;
    justify-content: start;
    align-items: center;
    width: 10%;
    /* margin-top: 1rem; */
    /* margin-left: 2rem; */
}
.left_nav_bar .logo{ 
    display: flex;
    margin:  1rem 0 0 0;
    cursor:context-menu;
    justify-content: center;
    align-items: center;
}

.logo img{
    width: 8rem;
}

.left_nav_bar .bars{
    display: none;
}

.mid_nav_bar{
    width: 80%;
    /* margin-left: 3rem; */
}

.mid_nav_bar .contact{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mid_nav_bar.contact .phone{
     display: flex;
    align-items: center;
}

.mid_nav_bar .contact a{
    font-family: var(--normal_fonts);
    padding: .5rem 0;
    color: black;
    font-weight: normal;
    text-decoration: none;
    font-size: .8rem;
}

.mid_nav_bar .contact span{
    padding: .5rem 0;
    font-family: var(--normal_fonts);
    color: black;
    font-weight: normal;
    font-size: .8rem;
}
.mid_nav_bar .contact i{
    color:grey;
}

.nav_line{
    width: 100%;
    opacity: .5;
    border: .2px solid rgb(156, 156, 156);
    margin-bottom: .3rem;
}
.links{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.links ul{
    display: flex;
    align-items: center;
    justify-content: start;
}

.links ul li{
    font-size: 1rem;
    padding:.5rem 2rem .5rem 0;
    list-style: none;
}
.links ul li a{
    font-family: var(--normal_fonts);
    font-size: 1rem;
    text-decoration: none;
    color: black;
}

.links ul li a:hover{
    transition: all .1s ease-in;
    color:var(--btn_bg);
}

.links .Apply_btn a{
    padding: .5rem 1rem;
    border-radius: .6rem;
    background: var(--btn_bg);
    color:white;
    text-decoration: none;
    font-family: var(--normal_fonts);
    text-align: center;
}

.links .Apply_btn a:hover{
    transition: all .1s ease-in;
    background-color: var(--btn_hover);
}

@media screen and (max-width:1114px) {
    .left_nav_bar .logo img{
        width: 5rem;
        
    }
    nav{
        flex-direction: column;
        height: 5rem;
    }
    .left_nav_bar{
        width: 90%;
        cursor: pointer;
        justify-content: space-between;
    }

    .left_nav_bar .bars{
        padding: 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius:10px;
    }

    .left_nav_bar .bars i{
        font-size: 1rem;
    }
    
    .left_nav_bar .bars:hover{
        color:white;
        background: grey;
    }

    .mid_nav_bar{
        background: var(--bg);
        width: 100%;
        /* padding: 1rem 0; */
        height: auto;
        transition: left .3s linear;
        position: fixed;
        top:5rem;
        left: -100%;

    }
    .active{
        left :0;
    }

    .mid_nav_bar .contact{
        display: none;
    }
    
    .mid_nav_bar .line{
        display: none;
    }

    .mid_nav_bar .links{
        width: 100%;
        height: 80vh;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .mid_nav_bar .links ul{
        flex-direction: column;
    }
    .mid_nav_bar .links ul li{
        margin: 1rem 0;
        padding: 0;
    }
    
    .mid_nav_bar .links .Apply_btn{
        margin: 1rem;
    }
    

}


