@font-face {
    font-family:Montserrat-Bold;
    src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
}
:root
{
    --color_fondo_botones:#97257f;
    --color_fondo_botones_hover:#f09130;
}
#slider_inicio, #slider_inicio_1
{
    width: 100%;
    position: relative;
    overflow: hidden;
    /*border: 1px solid red;*/
    display: flex;
    align-items: center;
    justify-content:flex-end;
}
.cont_espacio_letras
{
    width: 30%;
    height: 70vh;
    /*border: 1px solid blue;*/
    display: flex;
    align-items:center;
    justify-content:center;
}
.cont_letras
{
    width: 70%;
    height: 100%;
    /*border: 1px solid green;*/
    display: flex;
    align-items: center;
    justify-content: center;
}
.cont_espacio_letras h3
{
    font-size: 60px;
    font-weight: 400;
    color: var(--color_fondo_botones);
    text-align: center;
    font-family:"Montserrat-Bold";
    /*border: 1px solid red;*/
}
.cont_espacio_letras img
{
    width:30px;
    height: 100%;
    /*border: 1px solid red;*/
}
#contenedor_imagenes, #contenedor_imagenes_2
{
    width: 80%;
    height: 75vh;
    /*border: 1px solid blue;*/
}
.imagen
{
    height: 100%;
    width: 70%;
    position: absolute;
    top:0px;
    right: 0px;
    object-fit:contain;
    object-position: center;
    display: none;
    /*border: 1px solid red;*/
}
.imagen2
{
    height: 100%;
    width: 60%;
    position: absolute;
    top:0px;
    right: 0px;
    object-fit:contain;
    object-position: center;
    display: none;
    /*border: 1px solid red;*/
}
/*---------------------------------------------------------*/
.cont_espacio_botones, .cont_espacio_botones_2
{
    z-index: 1;
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: 1px solid white;*/
}
.boton_iqz_producto
{
    position: absolute;
    left: 0px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /*border: 1px solid red;*/
    background-color: var(--color_fondo_botones);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
}
.boton_der_producto
{
    position: absolute;
    right: 0px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /*border: 1px solid red;*/
    background-color: var(--color_fondo_botones);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
}
.boton_iqz_producto:hover, .boton_der_producto:hover
{
    opacity: 1;
    background-color: var(--color_fondo_botones_hover);
}
.cont_espacio_botones i
{
    font-size: 20px;
    color: white;
}
.cont_espacio_botones_2 i
{
    font-size: 20px;
    color: white;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
@media screen and (max-width:840px)
{
    /*tercera parte*/
    #slider_inicio
    {
        flex-direction: column;
    }
    .cont_espacio_letras
    {
        width: 100%;
        height: auto;
        /*border: 1px solid red;*/
    }
    #contenedor_imagenes
    {
        width: 100%;
        height: 65vh;
        /*border: 1px solid red;*/
    }
    .imagen
    {
        width: 100%;
    }
    .cont_espacio_letras
    {
        justify-content:center;
    }
    .cont_espacio_letras img
    {
        display: none;
    }
    .cont_espacio_letras h3
    {
        left: 0px;
        rotate: 0deg !important;
        font-size: 50px;
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
@media screen and (max-width:570px)
{
    /*tercera parte*/
    .cont_espacio_letras h3
    {
        font-size: 30px;
    }
    #contenedor_imagenes
    {
        height: 40vh;
    }
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
@media screen and (max-width:395px)
{
    /*tercera pare*/
    .cont_espacio_letras h3
    {
        font-size: 25px;
    }
}