#main{
    background-color: #DFF1F8;
    background-image: none;
    color: #0266A7!important;
    padding-right: 33px;
}
h1,h2,h6,h3,h4,p{
    color: #0266A7!important;
}
.contenedor {
    display: flex; /* Activa Flexbox */
    gap: 20px; /* Espaciado entre columnas */
    align-items: flex-start; /* Alinea verticalmente */
    padding: 20px;
}

/* Estilo para la columna de texto */
.texto {
    flex: 1; /* Ocupa el espacio disponible */
    max-width: 70%; /* Limita el ancho del texto */
    font-size: 0.9em;
    text-align: justify;
}

/* Estilo para la columna de imágenes */
.imagenes {
    flex: 1; /* Ajusta automáticamente el tamaño */
    display: flex;
    flex-direction: column; /* Organiza en columna */
    gap: 5rem; /* Espaciado entre imágenes */
    align-items: center;
}

/* Ajuste de imágenes */
.imagenes img {
    width: 90%; /* Se ajusta al contenedor */
    border-radius: 4rem; /* Bordes redondeados */
}
.scrollmovil{
    height: calc(100dvh - 390px);
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    padding-top: 8px !important;
    box-sizing: border-box;
}
.titlewhite{
    color: #0266A7;
}
.subtitle{
    font-weight: 400;
    font-size: 2.5rem;
}
.txtautor{
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
}
.divtext {
    padding: 0px 1%;
}
.titlewhite {    
    text-shadow: none;
    text-align: center;
}
.imgmovilcom{
    display: none;
}
.pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4rem;
    margin-top: 1.5rem;
}
#prev, #next{
    background-color: #0166a8;
    color: #fff;
    width: max-content;
    padding: 7px 1.5rem;
    border-radius: 1rem;
    font-size: 1rem;
    border: 0;
    
}
#page_info{
    letter-spacing: 1.2rem;
    font-size: 1.2em;
    margin: 0px 0.2rem 0px 1rem;
}
.pagination ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.pagination ul li{
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
    width: 24px;
    height: 24px;
    text-align: center;
    border-radius: 77px;
    transition: all 0.2sease;
}
.pagination ul li:hover{
    background: #0266a7;    
}
.pagination ul li:hover a{
    color: white !important;
}
.pagination ul li a{
    text-decoration: none;
    color: #0266a7;
    transition: all 0.2s ease;
}
.select{
    background: #0266a7;
}
.select a{
    color: white !important;
}
.compartebtn{
    color: white;
    background: #0166a8;
    font-size: 0.9em;
}
.compartebtn:hover{
    color: white;
    background: #0166a8;
    font-size: 0.9em;
}

@media only screen and (min-width: 1550px) {}
@media only screen and (min-width: 1800px) {
    .subtitle{
        font-size: 3.5rem;
    }
    .txtautor{
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
    }
    .texto p{
        font-size: 1.2em;
    }
    .imagenes{
        gap: 5rem;
    }
}
@media only screen and (max-width: 1370px) {
    .imagenes{
        gap: 3rem;
    }
}
@media only screen and (max-width: 1280px) {
    .imagenes {
        gap: 2rem;
    }
    .subtitle{
        font-size: 2rem;
    }
    .txtautor{
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    .texto p{
        font-size: 0.9em;
    }
}
@media only screen and (max-width: 1000px) {
    .subtitle {
        font-size: 1.5rem;
    }
    .txtautor {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .texto p {
        font-size: 0.8em;
    }
}
@media only screen and (max-width: 800px) {
    .imgdeskopcom{
        display: none;
    }
    .contenedor{
        flex-wrap: wrap;
        gap: inherit;
    }
    .texto {
        flex: inherit;
        max-width: 100%;
    }
    .imagenes {
        gap: inherit;
        flex: none;
        width: 100%;
    }
    .imgmovilcom {
        display: block;
        width: 90%;
        border-radius: 4rem;
        margin: 0 auto 2rem;
    }
    .subtitle, .txtautor{
        font-size: 1.3rem;
        font-weight: 600;
    }
    .titlewhite{
        margin-top: 50px;
    }
    .contentlogomovil {
        height: 90px;
    }
}
@media only screen and (max-width: 767px) {
    #divlogoimg{
        order: 1;
        width: 100%;
    }
    #divlogotitlt{
        order: 2;
        width: 100%;
    }
}
@media only screen and (max-width: 500px) {
    .subtitle, .txtautor{
        font-size: 1.1rem;
    }
    .imgmovilcom, .imagenes img {
        border-radius: 2rem;
        width: 100%;
    }
}