.menu-complete {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-left: 60px;
}

.menu-complete .active {
    color: #f8b803;
}

.menu-complete .section-button button {
    height: 60px;
}

.menu-complete .content-section {
    padding: 20px 0;
}

.menu-complete-drink.content-section,
.menu-complete-dessert.content-section {
    padding: 0;
}

.menu-wrapper .section-subtitle::after {
    content: '';
    position: absolute;
    background: url('../assets/global/Linea_Separacion_Verde.png');
    background-size: contain;
    background-position: center;
    bottom: -30px;
    width: 100%;
    height: 20px;
    left: 0;
    background-repeat: no-repeat;
}

.menu-wrapper .section-subtitle .section-text {
    padding-bottom: 0;
}

.menu-complete li {
    padding-right: 40px;
}

.menu-item {
    flex-direction: column;
    flex-basis: 23%;
    padding-right: 10px;
    padding-bottom: 40px;
}

.menu-item-img {
    text-align: right;
    justify-content: center;
    display: flex;
}

.menu-complete-dessert-item .menu-item-img {
    justify-content: flex-end;
}

.menu-item-img img {
    width: 250px;
    height: 250px;
}

.header-content-menu li a {
    color: white;
    font-family: 'Montserrat Bold'; 
}

.header-content-menu li a:hover {
    color: #f8b803;
    font-family: 'Montserrat Bold'; 
}

.menu-item-title {
    font-size: 16px;
    font-family: 'Montserrat Bold';
    padding: 10px 0;
    text-align: center;
}

.menu-item-description {
    padding: 0 10px;
    display: grid;
    font-family: 'Montserrat Light';
    text-align: center;
    color:#a5a5a5;
    font-size: 14px;
}

.menu-complete-dessert-item .menu-item-description {
    font-family: 'Montserrat Bold';
    color:black;
    font-size: 16px;
    text-align: left;
}

.menu-complete-dessert-item .menu-item-description span {
    font-family: 'Montserrat Light';
    color:#a5a5a5;
    font-size: 14px;
}

.menu-item-description span {
    color:#a5a5a5;
    padding-top: 10px;
    font-size: 14px;
}

.menu-complete-drink {
    display: grid;
    grid-gap: 0;
    grid-template-columns: 1000px;
    justify-content: center;
}

.menu-complete-dessert {
    display: grid;
    grid-gap: 0;
    grid-template-columns: 1fr 1fr;  
}

.menu-complete-dessert .menu-item,
.menu-complete-drink .menu-item {
    flex-direction: initial;
    display: grid;
    grid-gap: 0;
    grid-template-columns: 1fr 1fr;
}

.menu-complete-drink .menu-item div:nth-child(2),
.menu-complete-dessert .menu-item div:nth-child(2) {
    padding-left: 10px;
}

#salsas-item,
#postres-item,
#bebidas-item {
    padding: 0;
}

@media ( min-width: 320px ) and ( max-width: 1023px ) { 
    .menu-complete {
        display: none;
    }
    .menu-complete-dessert,
    .menu-complete-drink {
        grid-template-columns: 1fr;
    }
    
    .section-subtitle {
        color: #054C40;
        height: 40px;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: left;
        padding: 0 20px;
        width: 100%;
        margin-bottom: 20px;
        box-shadow: 2px 2px 1px #e5e5e5;
    }


    .section-subtitle.active::after {
        bottom: 40% !important;
        left: auto !important;
        background-image: none;
        position: absolute;
        content: '';
        width: 0 !important;
        height: 0 !important;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 10px solid #054C40;
        right: 20px;
        /* padding: 0 20px; */
    }

    .section-subtitle.disabled::after {
        bottom: 40% !important;
        left: auto !important;
        background-image: none;
        position: absolute;
        content: '';
        width: 0 !important;
        height: 0 !important;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 10px solid #054C40;
        right: 20px;
        /* padding: 0 20px; */
    }

    #tacos,
    #complementos,
    #otros {
        padding: 0;
    }

    #sopas .section-subtitle {
        margin: 0 auto;
    }

    #sopas {
        padding: 0;
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .menu-complete-dessert-item .content-section{
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .menu-item-img img {
        height: 200px;
        width: 200px;
    }

    .menu-item-description {
        font-size: 12px;
    }
    
    .menu-wrapper .section-subtitle .section-text {
        display: none;
    }

    .menu-complete-drink .menu-item,
    .menu-complete-dessert-item .menu-item {
        grid-template-columns: 1fr;
    }

    .menu-item-img {
        justify-content: center;
    }

    .menu-item-title,
    .menu-complete-dessert-item .menu-item-description {
        font-size: 14px;
    }

    .menu-complete-dessert-item .menu-item-description span {
        font-size: 12px;
    }

    .menu-complete-dessert-item .menu-item-img {
        justify-content: center;
    }
}

@media ( min-width: 501px ) and ( max-width: 1023px ) { 
    .menu-item {
        flex-basis: 18%;
    }
}
@media ( min-width: 320px ) and (max-width: 500px ) { 
    .menu-item {
        flex-basis: 30%;
    }
    
}