.image-and-text-section {
    position: relative;
}
.image-and-text {
    display: flex;
    flex-direction: column;
}

.image-and-text .text-animated {
    margin-bottom: 2rem;
}

.image-and-text__shape {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 42rem;
    overflow:hidden;
}
.image-and-text__image-container {
    width: 100%;
}
.image-and-text__shape img{
    width: 80%;
}

.image-and-text__text {
    max-width: 42rem;
    width: 100%;
    margin-bottom: 2.5rem;
}

    .image-and-text__shape.full-cover-shape {
        align-items: unset;
    }
    .image_and_text-list {
        list-style: none;
    }

    .image_and_text-list-item {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        margin-bottom: 2.5rem;
    }
    .image_and_text-list-item svg {
        fill: var(--color-primary);
        min-width: 0.75rem;
        max-width: 0.75rem;
        margin-top: 0.4rem;
        margin-right: 0.75rem;
    }

@media only screen and (min-width: 62rem) {
    .row-reverse .image-and-text__text {
        margin-left: 5rem;
        margin-right: 0;
    }
    .image-and-text__text {
        margin-left: 0;
        margin-right: 5rem;
    }
    .image-and-text {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    } 
    
    .image-and-text.row-reverse {
        flex-direction: row-reverse;
    }
    .image-and-text.flex-column {
        flex-direction:column;
    }
    .image-and-text.flex-column .image-and-text__shape {
        max-width:none;
    }
    .image-and-text__text {
        margin-bottom: 0;
    }
}
