@font-face {
    font-family:Open_sans;
    src: url('../fonts/OpenSans-VariableFont_wdth\,wght.ttf') format('truetype');
}
*
{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
:root
{
    --color_principal:rgb(157,25,21);
    --color_tabla:rgb(99, 18, 15);
    --color_gris:rgb(55,55,55);
    --color_datos: rgb(255, 139, 135);
    --color_datos_2: rgb(255, 191, 188);
}
body
{
    font-family:"Open_sans";
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*primera parte*/
.contenedor_primera_partte
{
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content:flex-start;
    background-image: url(../img/img_1_pt1.webp);
    background-size: cover;
    background-position: center;
}
.cont_info_pt1
{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content:flex-end;
    flex-direction: column;
    /*border: 1px solid blue;*/
    padding-left: 40px;
    padding-bottom: 100px;
}
.cont_info_pt1 h1
{
    font-size: 110px;
    font-weight: 500;
    color: white;
    line-height: 0.2;
    padding-bottom: 30px;
}
.cont_info_pt1 span
{
    font-size: 30px;
    font-weight: 500;
    color: white;
}
.cont_info_pt1 p
{
    font-size: 20px;
    color: white;
    padding-bottom: 20px;
    font-weight: 400;
}
.boton_contacto
{
    width: 250px;
    height: 50px;
    background-color: var(--color_principal);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    border: 1px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}
.boton_contacto:hover
{
    background-color: var(--color_gris);
}
.boton_contacto h6
{
    font-size: 20px;
    color: white;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*segunda parte*/
.contenedor_segunda_parte
{
    width: 100%;
    display: flex;
    align-items:flex-start;
    justify-content: center;
    background-image: url(../img/img_rejillas_pt2.webp);
    background-position: center;
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 50px;
}
.cont_izq_pt2
{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cont_izq_pt2 img
{
    width: 80%;
    height: 600px;
    object-fit: cover;
}
.cont_der_pt2
{
    width: 50%;
    display: flex;
    align-items:flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 0 20px;
}
.cont_tiulos_fondo
{
    width: 100%;
    height: 100px;
    display: flex;
    align-items:flex-end;
    justify-content:flex-start;
    background-image: url(../img/titulo_somos.webp);
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    /*border: 1px solid red;*/
    margin-bottom: 20px;
}
.cont_der_pt2 h2
{
    font-size: 50px;
    font-weight: 400;
    color: var(--color_principal);
}
.cont_der_pt2 p
{
    font-size: 17px;
    font-weight: 400;
    color: var(--color_gris);
    padding-bottom: 20px;
}
.cont_der_pt2 a
{
    text-decoration: none;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*tercera parte*/
.contenedor_tercera_parte
{
    width: 100%;
    padding-top: 80px;
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--color_principal);
    background-image: url(../img/fondo_img_pt3.webp);
    background-position: bottom;
    background-size: cover;
}
.cont_titulo_pt3
{
    width: 100%;
    height: 100px;
    /*border: 1px solid red;*/
    display: flex;
    align-items:flex-end;
    justify-content:flex-start;
    background-image: url(../img/titulo_productos.webp);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: 50%;
    padding-left: 30px;
}
.cont_titulo_pt3 h2
{
    font-size: 40px;
    font-weight: 400;
    color: white;
}
.cont_informacion_pt3
{
    width: 100%;
    display: flex;
    align-items:center;
    justify-content: center;
    padding: 50px 0;
    /*border: 1px solid red;*/
}
.cont_izq_pt3
{
    width: 50%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: 1px solid white;*/
}
.cont_izq_pt3 img
{
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 5px 0 0 5px;
}
.cont_der_pt3
{
    width: 50%;
    display: flex;
    align-items:flex-start;
    justify-content: center;
    flex-direction: column;
    padding-left: 40px;
    /*border: 1px solid red;*/
}
.cont_der_pt3 p
{
    font-size: 25px;
    color: white;
    padding-bottom: 20px;
}
.cont_der_pt3 a
{
    text-decoration: none;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*cuarta parte*/
.contenedor_cuarta_parte
{
    width: 100%;
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.tabla_pt4
{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 10px 0;
    /*border: 1px solid red;*/
}
.titulo_tabla
{
    width: 100%;
    padding: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color_principal);
}
.titulo_tabla h2
{
    font-size: 20px;
    font-weight: 400;
    color: white;
}
.cont_titulos_valores
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color_tabla);
    padding: 5px 0;
}
.cont_columnas
{
    width: 33.33%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: 1px solid green;*/
}
.cont_columnas_t2
{
    width: 14.2%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cont_columnas h3
{
    font-size: 17px;
    font-weight: 400;
    color: white;
}
.cont_columnas_t2 h3
{
    font-size: 17px;
    font-weight: 400;
    color: white;
}
.line_div
{
    border-right: 1px solid white;
}
.cont_datos_tabla
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: 1px solid red;*/
}
.cont_columnas_datos
{
    width:33.33%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /*border: 1px solid red;*/
}
.cont_columnas_t2_datos
{
    width:14.28%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /*border: 1px solid red;*/
}
.color_fondo
{
    width: 100%;
    height: 100%;
    padding: 5px;
    display: flex;
    align-items:center;
    justify-content: center;
    color: var(--color_gris);
    font-weight: 500;
    font-size: 17px;
}
.color_1
{
    background-color: var(--color_datos);
}
.color_2
{
    background-color: var(--color_datos_2);
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*quinta parte*/
.contenedor_quinta_parte
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/img_fondo_pt5.webp);
    background-position: top;
    background-size: cover;
}
.filtro_pt5
{
    width: 100%;
    height: 100%;
    background-color: rgba(157,25,21, 0.8);
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cont_izq_pt5
{
    width: 50%;
    display: flex;
    align-items:flex-start;
    justify-content: center;
    flex-direction: column;
    padding-left: 30px;
    /*border: 1px solid white;*/
}
.cont_titulo_pt5
{
    width: 100%;
    height: 100px;
    /*border: 1px solid red;*/
    display: flex;
    align-items:flex-end;
    justify-content:flex-start;
    background-image: url(../img/titulo_medidas.webp);
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
}
.cont_izq_pt5 h2
{
    font-size: 50px;
    font-weight: 400;
    color: white;
}
.letras_grandes
{
    font-size: 30px;
}
.cont_izq_pt5 p
{
    font-size: 20px;
    font-weight: 400;
    color: white;
}
.cont_der_pt5
{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: 1px solid white;*/
}
.cont_botones_rejillas
{
    width: 100%;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content:flex-start;
    /*border: 1px solid red;*/
}
.boton_iqz_producto_1
{
    width: 150px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 1px solid white;
    margin: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.boton_iqz_producto_1 i
{
    font-size: 25px;
    color: var(--color_principal);
}
.boton_der_producto_1
{
    width: 150px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 1px solid white;
    margin: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.boton_der_producto_1 i
{
    font-size: 25px;
    color: var(--color_principal);
    transition: all 0.3s ease;
}
.boton_iqz_producto_1:hover, .boton_der_producto_1:hover
{
    background-color: var(--color_tabla);
}
.boton_iqz_producto_1:hover i, .boton_der_producto_1:hover i
{
    color: white;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*sexta parte*/
.contenedor_sexta_parte
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../img/img_rejillas_pt6.webp);
    background-position: center;
    background-size: cover;
}
.filtro_pt6
{
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.titulo_pt6
{
    width: 80%;
    height: 120px;
    /*border: 1px solid red;*/
    display: flex;
    align-items:flex-end;
    justify-content: center;
    background-image: url(../img/titulo_inoxidable.webp);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.filtro_pt6 h2
{
    font-size: 50px;
    font-weight: 400;
    color: var(--color_principal);
    text-align: center;
}
.cont_datos_pt6
{
    width: 100%;
    padding: 30px 0;
    display: flex;
    align-items:flex-start;
    justify-content: center;
}
.cont_izq_pt6
{
    width: 50%;
    display: flex;
    align-items:flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
}
.cont_izq_pt6 p
{
    font-size: 20px;
    color: var(--color_gris);
}
.cont_der_pt6
{
    width: 50%;
    display: flex;
    align-items:flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
}
.cont_der_pt6 h3
{
    font-size: 30px;
    font-weight: 400;
    color: var(--color_principal);
    padding-bottom: 20px;
}
.cont_der_pt6 p
{
    font-size: 20px;
    color: var(--color_gris);
}
.filtro_pt6 a
{
    text-decoration: none;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
/*formulario*/
.cont_formulario_completo
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 50px 0;
}
.cont_titulo_formulario
{
    width: 100%;
    height: 120px;
    /*border: 1px solid red;*/
    background-image: url(../img/titulo_formulario.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 60%;
    display: flex;
    align-items:flex-end;
    justify-content: center;
}
.cont_titulo_formulario h2
{
    font-size: 50px;
    font-weight: 400;
    color: var(--color_principal);
}
.formulario_contacto
{
    width: 90%;
    padding: 30px 0;
    /*border: 1px solid red;*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.fila_campo_form
{
    width: 49%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    /*border: 1px solid green;*/
}
input
{
    width: 100%;
    height: 30px;
    border: 1px solid var(--color_principal);
    font-size: 17px;
    padding-left: 10px;
}
textarea
{
    width: 99%;
    height: 200px;
    border: 1px solid var(--color_principal);
    margin: 10px 0;
    font-size: 17px;
    padding: 10px;
}
.button
{
    border: none;
    background-color: white !important;
}

.w_100
{
    width: 100%;
}
.text_error_forms
{
    color: var(--color_principal);
    font-size: 1.2rem;
    opacity: 0;
}