.element_caption_page .elements_container .title_page.section_head {
    align-items: center;
    text-align: center;
    padding: 30px 0 20px 0;
    margin-bottom: 20px;
}
.element_caption_page .elements_container .title_page.section_head.start_align {
    align-items: flex-start;
    text-align: left;
}
/*.element_caption_page .elements_container .title_page.section_head .element-container * {
    color: var(--ap-strong-blue-variation);
}*/
.element_caption_page .elements_container .title_page.section_head .element-container.title {
    padding-bottom: 20px;
}
section .text_section .text_body ul {
    list-style: none;
    padding-bottom: 14px;
}
section .text_section .text_body ul li {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 6px 0;
}
section .text_section .text_body ul .list_icon {
    padding: 0 14px;
}
section .text_section .text_body ul .list_icon img {
    width: 14px;
    height: 14px;
}
section .text_section.card_column .card_body {
    padding: 30px 40px;
}
section .text_section.card_column {
    background-color: var(--ap-base-white);
    border-radius: 24px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
section .text_section.card_column .card_body .text_body {
    font-size: 16px;
}
section .figure.great_figure {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0;
    border-radius: 24px;
    background-color: var(--ap-base-white)
}
section .figure.great_figure.image_start {
    justify-content: flex-start;
}
section .figure.great_figure.image_end {
    justify-content: flex-end;
}
section .figure.great_figure.start_justify {
    margin-right: 20px;
}
section .figure.great_figure.end_justify {
    margin-left: 20px;
}
section .figure.great_figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
section .figure.great_figure.width_auto img {
    width: auto;
}
.not_found_figure {
    margin: -40px 0 -80px 0;
}
section .figure.great_figure.contain img {
    object-fit: contain;
}

/** Media query para únicamente móvil */
@media only screen and (max-width: 767px) {
    section.inner_section .body_section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: stretch;
        padding: 0 30px;
    }
    section.inner_section .body_section.reverse_mobile {
        flex-direction: column-reverse;
    }
    section .figure.great_figure {
        margin: 20px 0 !important;
    }
    section .figure.great_figure img {
        width: 100%;
        height: auto;
    }
}

/* Media query para tablets */
@media only screen and (min-width: 768px) {
    /* Estilos específicos para tablets */
    /*.element_caption_page .elements_container .title_page.section_head {
        padding: 100px 0 40px 0;
    }*/
    .element_caption_page .elements_container .title_page.section_head .element-container.title {
        padding-bottom: 50px;
    }
    section .figure.great_figure.height_auto {
        height: auto;
    }
    .not_found_figure {
        margin: -50px 0 -90px 0;
    }
}

/* Media query para desktops pequeños */
@media only screen and (min-width: 992px) {
    /* Estilos específicos para desktops pequeños */
}

/* Media query para desktops grandes */
@media only screen and (min-width: 1200px) {
    /* Estilos específicos para desktops grandes */
}