/*----------------------------------------------------
@File: Default Styles
@Author: Vuyani Joshua Matumbu
Author E-mail: da_vuks@yahoo.com / vj@mkholoempire.co.za

This file contains the styling for the actual theme, this
is the file you need to edit to change the look of the
theme.
---------------------------------------------------- */
/*=====================================================================
@Template Name: Pizza
 
 
=====================================================================*/
 
.main-nav{
  
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 2em;
     
    padding: 2em 0;
}

.main-nav .logo{
    width: 5em;
}

.main-nav ul{
    display: flex;
}

.main-nav ul li{
    margin: 0 1em;
}

.main-nav ul li a:hover{
    border-bottom: .1em solid #333; 
}

.main-nav ul li a{
    color: #333;
    padding-bottom: .4em;
}
 
.menu-btn .bars{
color: #333;
    width: 3em;
    height: 2em;
    cursor: pointer;
    position: absolute;
    top: 1.5em;
    right: 2em;
    z-index: 999;
  display: none;
}



 


@media(max-width:700px){
    .menu-btn .bars{
        display: block;
    }

    .menu-btn:hover{
        opacity: 0.5;
    }
   
    .main-nav ul.right-menu{
        
        
    }
 
    .main-nav ul.main-menu,.right-menu{
        display: block;
        position: fixed;
        top:0;
        left: 0;
        background:#252727;
        width: 50%;
        height: 100vh;
        border-right: var(--primary-color) 1px solid;
        opacity: 0.9;
        padding:30px;
        transform: translateX(-500px);
        z-index: 999;
        transition:transform 0.5s ease-in-out;
       

        
    }
    .main-nav ul.main-menu li,.right-menu li{
    padding: 10px;
    border-bottom: var(--primary-color) solid 1px;
    font-size: 14px;

    }
    .main-nav ul.main-menu li a,.right-menu li a{
        color: #fff;
    }
    .main-nav ul.main-menu li:last-child{
        border-bottom: 0;
    }
    .main-nav ul.main-menu.show{
        transform: translateX(-20px);
    }



}