/* Gestión de imágenes */

.centerxs {
    position: fixed;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -45%);
}

.centermd {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -40%);
}

.centerlg {
    position: fixed;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -35%);
}

p,
blockquote {
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    -o-hyphens: auto;
    hyphens: auto;
    /* otros valores: auto & none */
    word-wrap: break-word;
}

.textos {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-style: normal;
    font-size: 17px;
    letter-spacing: 0.5px;
    line-height: 1.8;
    text-align: justify;
    padding: 30px;
    color: white;
}

.textosmovil {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.5px;
    line-height: 1.8;
    text-align: justify;
    padding: 30px;
    color: white;
}

.subtextos {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.5px;
    line-height: 1;
    text-align: left;
    padding: 30px;
    color: white;
}

body {
    font-family: 'Inter', sans-serif !important;
}

html,
body {
    overflow-x: hidden;
}

@media screen and (min-width: 320px) and (max-width: 374px) {
    #normal {
        display: none;
    }
    #movil {
        display: on;
    }
}

@media screen and (min-width: 375px) and (max-width: 413px) {
    #normal {
        display: none;
    }
    #movil {
        display: on;
    }
}

@media screen and (min-width: 414px) and (max-width: 767px) {
    #normal {
        display: on;
    }
    #movil {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    #normal {
        display: on;
    }
    #movil {
        display: none;
    }
}