:root
{
    --color_naranja:#DA9433;
    --color_gris:#555555;
    --color_gris_bajo: #616161;
}
*
{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
body 
{
    font-size: 16px;
}
.fs_7
{
    font-size: 5rem;
}

.c_text_naranja
{
    color: var(--color_naranja);
}
.color_text_gris
{
    color: var(--color_gris);
}
.color_text_gris_bajo
{
    color: var(--color_gris_bajo);
}

.bg_naranja_custom
{
    background-color: var(--color_naranja);
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*primera sección*/
.h_90vh_custom
{
    height: 100vh;
}
.h_100
{
    height: 100%;
}
.seccion_principal
{
    background: linear-gradient(90deg, #00000018, #00000018);
}
.fs_7
{
    font-size: 3rem;
}
.h_line
{
    line-height: 1.1;
}
.line_naranja
{
    width: 30%;
    height: 3px;
    background-color: var(--color_rojo);
}
.cont_filter_pt1
{
    background-color: rgba(0, 0, 0, 0.6);
}

.boton_logos
{
    width: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    background-color: rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
    cursor: pointer;
}
.boton_logos:hover
{
    background-color: rgba(0, 0, 0, 0.2);
}
.bg_black_filter
{
    background-color: rgba(255, 255, 255, 1);
    cursor: pointer;
}
.bg_black_filter img
{
    opacity: 1;
    transition: all 0.3s ease;
}
.bg_black_filter:hover img
{
    opacity: 0.5;
}
.over_hidden
{
    overflow-x: auto;
    white-space: nowrap;
}

.no_visible
{
    display: none;
}

@media (max-width: 840px)
{
    .seccion_principal
    {
        background: linear-gradient(90deg, #00000088, #00000088);
        flex-direction: column-reverse;
    }
    .h_100
    {
        height: 40%;
    }
    .cont_filter_pt1
    {
        width: 70%;
    }
}
@media (max-width: 570px)
{
    .cont_filter_pt1
    {
        width: 100%;
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*segunda sección*/
.bg_pt_light_custom
{
    background-color: rgb(240,240,240);
    border: 2px solid rgb(240,240,240)
}
.cont_img
{
    width: 90%;
    height: 400px;
    border: 7px solid white;
    overflow: hidden;
}
.cont_img_3
{
    width: 90%;
    height: 300px;
    border: 7px solid white;
    overflow: hidden;
}
.img_nosotros
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
}
.cont_img_2
{
    position: relative;
    bottom: 100px;
    width: 50%;
    height: 200px;
    border: 7px solid white;
    overflow: hidden;
}
.margin_left
{
    margin-left: 50px;
}

.img_nosotros:hover
{
    scale: 1.1;
}

.link_ubicacion
{
    text-decoration: none;
    background-color: white;
    transition: all 0.3s ease;
    border: 5px solid white;
}
.link_ubicacion i
{
    color: var(--color_naranja);
    font-size: 1.3rem;
}
.link_ubicacion:hover
{
    background-color: rgb(240,240,240);
}

@media (max-width: 570px)
{
    .cont_img
    {
        height: 300px;
    }
    .cont_img_2
    {
        height: 150px;
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*tercera sección*/
.border_box
{
    background-color: rgb(240,240,240);
    border: 1px solid rgb(220,220,220);
}
.link_text_decoration
{
    text-decoration: none;
}