.menu{
    width: 100%;
    height: 100%;
    max-width: 100vw;
    background-color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-around;
    overflow: hidden;

}

    
.menu h3, .menu p{
    width: 100%;
    text-align: center;
    padding: 2rem 0;
}

.menu h3{
    color: #ff8c00;
    font-size: 2.4rem;
    font-weight: bold;
    font-family: 'Indie Flower', 'Raleway', 'Montserrat', 'Roboto Condensed', 'Courier New', Courier, monospace;

}

.menu p{
    font-size: 1.4rem;
    font-weight: bold;
}

.menu_items{
    width: 70%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-around;
    padding: 3rem 0;
    margin: 0 auto;
}

@media screen and (max-width: 1096px){
    .menu_items{
        width:85%;
        padding: 2rem 0;
    }
}

@media screen and (max-width: 500px){
    .menu_items{
        width: 100%;
        padding: 0 1rem;
        flex-direction: column;
        justify-content: space-between;
    }
}


.menu_items .menu_item{
    width: 45%;
    position: relative;
    padding: 2rem 0;
    opacity: 0;
    transition: opacity .35s ease-out;
}

.menu_items .menu_item.fade_in{
    opacity: 1;
    transition: opacity .35s ease-in;

}

@media screen and (max-width: 1096px){
    .menu_items .menu_item{
        width:46%;
        height: 10rem;
        padding: 3rem 0;
    }
}

@media screen and (max-width: 500px){
    .menu_items .menu_item{
        width:100%;
    }
}



.menu_items .menu_item img{
    border-radius: 50%;
    height: 11rem;
    width: 11rem;
    object-fit: cover;
}

@media screen and (max-width: 1096px){
    .menu_items .menu_item img{
        height: 9rem;
        width: 9rem;
    }
}

@media screen and (max-width: 800px){
    .menu_items .menu_item img{
        position: absolute;
        height: 5rem;
        width: 5rem;
        top: 0;
        left: 0;
        padding: 2rem 0;
    }
}

.menu_items .menu_item h4{

    position: absolute;
    top: 3rem;
    left: 14rem;
    font-size: 1.4rem;
    font-weight: bold;
    
}

@media screen and (max-width: 1096px){
    .menu_items .menu_item h4{
        left: 11rem;
    }
}

@media screen and (max-width: 800px){
    .menu_items .menu_item h4{
        left: 7rem;
        top: 4rem;
    }
}

.menu_items .menu_item p{

    position: absolute;
    top: 3.2rem;
    left: 15rem;
    font-size: 1rem;
    font-weight: 500;
    width: 60%;
    text-align: left;
    font-style: italic;
    line-height: 1.75;
    
}

@media screen and (max-width: 1096px){
    .menu_items .menu_item p{
        left: 11rem;
        line-height: 1.5;
        width: 55%;   
    }
}

@media screen and (max-width: 800px){
    .menu_items .menu_item p{
        left: 6rem;
        line-height: 1.5;
        left: 0;
        top: 6.2rem;
        width: 100%;   
    }
}

.menu a{

    height: auto;
    padding: 1.4rem 0;
    width: 70%;
    margin: 1.2rem auto;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    filter: none;
    text-decoration: none;
    font-size: 1rem;
    color: #e12533;
    background: #ffffff;
    border: 1px solid #e12533;
    margin-bottom: 3rem;
    transition: background .25s linear, 
    color .25s linear;

}

@media screen and (max-width: 1096px){
    .menu a{
        width: 85%;
    }
}

@media screen and (max-width: 500px){
    .menu a{
        padding: 1.2rem 0;
    }
}

.menu a:hover{
    color: #ffffff;
    background: #e12533;
}

.menu .menu_specialties{
    padding: 0;
    margin: 0;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-content: center;
    justify-content: center;
    overflow: hidden;
}

@media screen and (max-width: 500px){
    .menu .menu_specialties{
        flex-direction: column;
    }
}

.menu .menu_specialties .outer{
     height: 28rem;
     overflow: hidden;
      
}

.menu .menu_specialties .outer.left{
    transform: translateX(-100%);
    transition: .5s ease-out;
}

.menu .menu_specialties .outer.right{
    transform: translateX(100%);
    transition: .5s ease-out;
}

.menu .menu_specialties .outer.left.slide_in,
.menu .menu_specialties .outer.right.slide_in{
    transform: translateX(0);
    transition: .5s ease;
}

@media screen and (max-width: 500px){
    .menu .menu_specialties .outer{
        height: 22rem;
    }
}

.menu .menu_specialties .left_specialty{
    background: linear-gradient( rgba(26, 26, 26, .6), rgba(26, 26, 26, .6)), url('../../assets/holding_taco.jpg');
    
}

.menu .menu_specialties .right_specialty{
    background: linear-gradient( rgba(26, 26, 26, .5), rgba(26, 26, 26, .5)), url('../../assets/3_tacos.jpg');
}

.menu .menu_specialties .left_specialty, 
.menu .menu_specialties .right_specialty{

    width: 50vw;
    margin: 0 0 1rem 0;
    padding-left: 3rem;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center ;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: flex-start;
    position: relative;
    transition: all .6s ease;
    
}

@media screen and (max-width: 500px){
    .menu .menu_specialties .left_specialty, 
    .menu .menu_specialties .right_specialty{
        width: 100vw;
        padding-left: 1.2rem;
    }
}


.menu .menu_specialties .left_specialty:hover, 
.menu .menu_specialties .right_specialty:hover{
    transform: scale(1.05);
}


.menu .menu_specialties .left_specialty p, 
.menu .menu_specialties .right_specialty p, 
.menu .menu_specialties .right_specialty h3,
.menu .menu_specialties .left_specialty h3 {
    text-align: left;
    width: 50%;
}

@media screen and (max-width: 500px){
    .menu .menu_specialties .left_specialty p, 
    .menu .menu_specialties .right_specialty p, 
    .menu .menu_specialties .right_specialty h3,
    .menu .menu_specialties .left_specialty h3{
        width: 90%;
    }
}


.menu .menu_specialties .left_specialty :first-child, 
.menu .menu_specialties .right_specialty :first-child{
    color: #e12533;
    font-size: 2rem;
    text-shadow: 1px 1px 1px black;
}

@media screen and (max-width: 500px){
    .menu .menu_specialties .left_specialty :first-child, 
    .menu .menu_specialties .right_specialty :first-child{  
        font-size: 1.6rem;
    }
}

.menu .menu_specialties .left_specialty h3, 
.menu .menu_specialties .right_specialty h3{
    color: #f9f9f9;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 1px 1px 4px #1a1a1a;
}

@media screen and (max-width: 500px){
    .menu .menu_specialties .left_specialty h3, 
    .menu .menu_specialties .right_specialty h3{  
        font-size: 1.4rem;
    }
}

.menu .menu_specialties .left_specialty :last-child, 
.menu .menu_specialties .right_specialty :last-child{
    font-size: 1.4rem;
    line-height: 1.25;
    color: #ff8c00;
    font-weight: bold;
    text-shadow: 1px 1px 4px #1a1a1a;
}

@media screen and (max-width: 1042px){
    .menu .menu_specialties .left_specialty :last-child, 
    .menu .menu_specialties .right_specialty :last-child{
        width: 75%;
    }
}

@media screen and (max-width: 800px){
    .menu .menu_specialties .left_specialty :last-child, 
    .menu .menu_specialties .right_specialty :last-child{  
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 500px){
    .menu .menu_specialties .left_specialty :last-child, 
    .menu .menu_specialties .right_specialty :last-child{  
        font-size: 1rem;
    }
}



