:root
{
    --color_botones:#044968;
    --color_botones_hover: #3C97C6;
    --color_secundario:rgb(50,50,50);

    --ancho_seccion:40vw;
}
/*--------------------------------------------*/
.cont_boxes_productos
{
    width: 100%;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content:start;
    /*border: 1px solid red;*/
    overflow: hidden;
}
.producto_seccion
{
    width: auto;
    height: auto;
    /*border: 1px solid red;*/
    display: flex;
    align-items: center;
    justify-content:center;
    margin-left: -40vw;
}
.box_producto
{
    width: var(--ancho_seccion);
    height: auto;
    border: 5px solid rgba(235, 235, 235, 0);
    background-color: rgba(235, 235, 235, 0);
    display: flex;
    align-items: center;
    justify-content:flex-start;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}
/*----------------------------------------------------------*/
.img_pt2
{
    object-fit: cover;
    object-position: center;
}
/*----------------------------------------------------------*/
.boton_iqz_producto
{
    width: 50px;
    height: 50px;
    border-radius: 5px;
    /*background-color: var(--color_botones);*/
    border: 2px solid var(--color_botones);
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.boton_iqz_producto:hover
{
    transition: all 0.3s;
    background-color: var(--color_botones_hover);
}
.boton_iqz_producto i
{
    font-size: 30px;
    color: var(--color_botones);
    transition: all 0.3s;
}
.boton_iqz_producto:hover i
{
    color: white;
}

/*----------------------------------------------------------------*/
.boton_der_producto
{
    width: 50px;
    height: 50px;
    border-radius: 5px;
    /*background-color: var(--color_botones);*/
    border: 2px solid var(--color_botones);
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.boton_der_producto:hover
{
    transition: all 0.3s;
    background-color: var(--color_botones_hover);
}
.boton_der_producto i
{
    font-size: 30px;
    color: var(--color_botones);
    transition: all 0.3s;
}
.boton_der_producto:hover i
{
    color: white;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*responsive*/
@media screen and (max-width:840px)
{
    .producto_seccion
    {
        width: cal(100vw * 5);
        margin-left: -100vw;
    }
    .box_producto
    {
        width: 100vw;
        height: auto;
        border: 2px solid rgba(235, 235, 235, 0);
    }
}
@media screen and (max-width:570px)
{
    .producto_seccion
    {
        height: auto;
    }
    .box_producto
    {
        height: auto;
    }
    .boton_iqz_producto
    {
        width: 40px;
        height: 40px;
    }
    .boton_iqz_producto i
    {
        font-size: 20px;
    }
    .boton_der_producto
    {
        width: 40px;
        height: 40px;
    }
    .boton_der_producto i
    {
        font-size: 20px;
    }
}
@media screen and (max-width:395px)
{
    .producto_seccion
    {
        height: auto;
    }
    .box_producto
    {
        height: auto;
    }
}