.row_desc {
    margin-bottom: 4rem;
}
.row_desc:first-child {
    margin-top: 2rem;
}
.row_desc[data-type="background-image"] figure.figure_image_bg {
    position: relative;

    box-sizing: border-box;
    
    overflow: hidden;
    overflow: clip;
    padding: 1em;
    position: relative;

    display: -webkit-flex;
    display: flex;

    -webkit-justify-content: center;
    justify-content: center;
    /*
    -webkit-align-items: center;
    align-items: center;
    */
    -webkit-flex-direction: column;
    flex-direction: column;

    min-height: 50dvh;
}
.row_desc[data-type="background-image"] figure.figure_image_bg::before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1;
    content: '';
    background-color: rgba(0,0,0,0.5);
}
.row_desc[data-type="background-image"] figure.figure_image_bg img {
    border: none;
    bottom: 0;
    box-shadow: none;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    object-fit: cover;
    outline: none;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}
.row_desc[data-type="background-image"] figure.figure_image_bg .desc_image_bg {
    z-index: 1;
}
.row_desc[data-type="background-image"] figure.figure_image_bg .desc_image_bg * {
    color: white !important;
}
.description_flex {
    display: -webkit-flex;
    display: flex;
    
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;

    -webkit-align-items: center;
    align-items: center;

    --agrpc-desc-gap-x:1.5rem;
    margin-right:calc(-.5 * var(--agrpc-desc-gap-x));
    margin-left:calc(-.5 * var(--agrpc-desc-gap-x));
}
.description_flex .description_flex_item {
    padding-right:calc(var(--agrpc-desc-gap-x) * .5);
    padding-left:calc(var(--agrpc-desc-gap-x) * .5);
}
@media (min-width: 1025px){
    .row_desc[data-order="image-text"] .description_flex .description_images {
        order: -1 !important;
    }
    .description_flex {
        -webkit-flex-direction: row;
        flex-direction: row;
    }
}
@media (max-width: 1024px){
    .description_flex {
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}

    .description_flex .description_images {
        display: -webkit-flex;
        display: flex;

        -webkit-flex-direction: row;
        flex-direction: row;
        
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;

        -webkit-align-items: center;
        align-items: center;
    }
    .description_flex .description_images .figure_image {
        padding-right:calc(var(--agrpc-desc-gap-x) * .5);
        padding-left:calc(var(--agrpc-desc-gap-x) * .5);
    }


.control_to_the_top {
    z-index: 9999;
    cursor: pointer;
}
.control_to_the_top .to_the_top {
    padding: 0.5rem 1rem !important;
    display: block !important;
    max-width: fit-content !important;
}
.row_desc[data-type="background-image"] figure.figure_image_bg .control_to_the_top .to_the_top {
    border: 1px solid #fff !important;
    color: #fff !important;
}
.row_desc[data-type="image"] .control_to_the_top .to_the_top {
    background-color: #005928 !important;
    color: #fff !important;
}