@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root
{
    --color_rojo:#ee0a47;
    --color_gris:#303030;
    --color_gris_bajo: #616161;
}
*
{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
body 
{
    font-size: 16px;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*primera parte*/
.h_custom
{
    height: 80vh;
}
.img_background_custom
{
    background-image: url(../img/hojalateria_mazda.jpg);
    background-position: center;
    background-size: cover;
}
.bg_filter
{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.541);
}
.img_cover
{
    object-fit: cover;
    object-position: center;
}
.h_box_custom
{
    height: 250px;
}

.button_custom
{
    width: 250px;
    height: 45px;
    background-color: var(--color_rojo);
    border-radius: 5px;
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.5s ease;
}
.button_custom:hover
{
    background-color: #910A2D;
}

@media (max-width: 570px)
{
    .h_box_custom
    {
        height: auto;
    }
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*cuarta parte*/
.link_custom
{
    text-decoration: none;
    color: var(--color_gris);
    transition: all 0.3s ease;
}
.link_custom:hover
{
    color: var(--color_rojo);
}