.banner_container {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
    box-sizing: border-box;
    display: block;
    background: #f3f3f3;
    max-height: 870px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    padding: 150px 0;
    border-radius: 10px;
}

.banner_section {
    max-width:95%;
    min-width:95%;
    margin: 0 auto;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size:50px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
/* Tamaños de texto */
.ql-size-small {
    font-size: 12px !important; /* Ajuste del tamaño pequeño */
}

.ql-size-large {
    font-size: 24px !important; /* Ajuste del tamaño grande */
}

.ql-size-huge {
    font-size: 36px !important; /* Ajuste del tamaño enorme */
}

/* Alineación de texto */
.ql-align-center {
    text-align: center !important;
}

.ql-align-justify {
    text-align: justify !important;
}

.ql-align-right {
    text-align: right !important;
}

/* Color de texto */
.ql-color-red {
    color: red !important;
}

.ql-color-green {
    color: green !important;
}

.ql-color-blue {
    color: blue !important;
}

/* Fondo de texto */
.ql-background-yellow {
    background-color: yellow !important;
}

.ql-background-pink {
    background-color: pink !important;
}

/* Estilo de lista */
.ql-list {
    margin-left: 20px;
}

/* Estilo de imágenes */
.ql-editor img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Estilo de enlaces */
.ql-editor a {
    color: #007bff;
    text-decoration: none;
}

.ql-editor a:hover {
    text-decoration: underline;
}

h2,h1{
    text-align: inherit;
}

.image_and_text_container{
    display: flex; 
    flex-wrap: wrap; 
    align-items: center; 
    gap: 20px;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: white;
}

.inner_image_container{
    flex: 0 1 50%; 
    max-width: 50%; 
    text-align: center;
    margin: 0px auto;
}

.inner_image_container img {
    max-width: 100%; 
    height: auto; 
    max-height: 100%; 
    object-fit: contain; 
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.inner_text_container {
    flex: 1; 
    min-width: 300px; 
    padding: 20px; 
    border-radius: 10px;
}

.image_row_container {
    box-sizing: border-box;
    display: block;
    text-align: center;
    padding: 100px 0;
    background: #fff;
}

.image_row_container ul {
    text-align: center;
    box-sizing: border-box;
    list-style: none;
    padding: 0;
    width: 90%;
    max-width: 1190px;
    margin: 0 auto;
}

.image_row_container li {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 10px;
    text-align: left;
    float: left;
    width: 23%;
    background: #fff;
    padding: 0;
    margin: 1%;
}

.image_row_container img{
    box-sizing: border-box;
    border: 0;
    max-width: 100%;
    border-radius: 10px;
}

.text_container{
  padding-top:50px;
  padding-bottom:50px;
  padding-left: 1%;
  padding-right: 1%;
  max-width: 95%;
  margin: 0px auto;
  background: #fff;
}

ol {
    padding-left: 1.5rem;
    list-style-type: disc;
}

.clear {
    clear: both;
}

/* Ajustes para dispositivos móviles */
@media (max-width: 767px) {
    .banner_container {
        padding: 50px 0;
    }

    .image_row_container li {
        padding: 0;
        display: block;
        width: 100%;
        margin: 3% 0;
    }

    .image_row_container img{
        min-width: 100%;
    }

    .inner_image_container {
        flex: 1 1 100%;
        max-width: 95%;
        text-align: center;
    }
}