.informacion_restaurante{
    width: 100%;
    min-height: 100vh;
    padding: 75px 100px;
    background-color: var(--main-color);
}

.titulo_informacion_restaurante{
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #fff;
}

.informacion_restaurante hr{
    width: 67px;
    border: 2px solid #fff;
    margin-bottom: 30px;
}

.contenedor_informacion_restaurante{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

/*----------------------*/

.ubicacion_restaurante{
    display: block;
    width: 50%;
}

.ubicacion_restaurante img{
    width: 90%;
    box-shadow: 6px 6px 15px rgba(0, 0, 0, 0.2);
}

.ubicacion_restaurante a{
    display: block;
    width: 30%;
    outline: none;
    border: 2px solid #fff;
    border-radius: 2px;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    margin-top: 30px;
}

/*----------------------*/

.horarios_restaurante{
    width: 48%;
}

.horarios_restaurante h3{
    font-size: 35px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
}

.horarios_restaurante ul{
    list-style: inherit;
}

.horarios_restaurante ul li{
    font-size: 23px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 28px;
}

.contenedor_horario{
    display: flex;
    justify-content: space-between;
    width: 80%;
}

.horario{
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 45px;
}

/*////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////// RESPONSIVE /////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////*/

@media (max-width: 700px) {

    .informacion_restaurante{
        padding: 50px 30px;
    }

    .titulo_informacion_restaurante{
        font-size: 22px;
    }

    .informacion_restaurante hr{
        width: 60px;
        border: 1px solid #fff;
    }

    .contenedor_informacion_restaurante{
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    /*----------------------*/

    .ubicacion_restaurante{
        display: block;
        width: 100%;
    }

    .ubicacion_restaurante img{
        width: 90%;
    }

    .ubicacion_restaurante a{
        width: 50%;
        border: 2px solid #fff;
        padding: 8px 0;
        font-size: 12px;
        background-color: #fff;
        color: var(--main-color);
        font-weight: 500;
        margin: 25px 0;
    }

    /*----------------------*/

    .horarios_restaurante{
        width: 100%;
    }

    .horarios_restaurante h3{
        font-size: 25px;
        margin-bottom: 20px;
        margin-top: 35px;
    }

    .horarios_restaurante ul li{
        font-size: 17px;
        margin-bottom: 10px;
        margin-left: 5%;
    }

    .contenedor_horario{
        display: flex;
        justify-content: space-between;
        width: 90%;
    }

    .horario{
        font-size: 13px;
        margin-bottom: 35px;
        margin-left: 5%;
    }


}