/* .section__solutions {
    display: flex;
    flex-direction: column;
}

.section__solutions h2 {
    display: inline-block;
    text-transform: uppercase;
    align-self: flex-end;
} */

.section__solutions__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.section__solutions__row {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 8rem;
}

.section__solutions__row div {
    align-self: flex-end;
}

.section__solutions__row h3 {
    font-size: 2rem;
}

.section__solutions__row figure {
    display: flex;
    margin: 3rem 2rem;
}

.section__solutions__row figure svg {
    width: 100%;;
}

.section__solutions__row a.button {
    padding: 0.7rem 1.5rem;
}
/* 
.section__solutions__row a.button,
.section__solutions__row a.button:hover,
.section__solutions__row a.button:active,
.section__solutions__row a.button:focus {
    color: rgb(var(--secondary-color));
}

.section__solutions__row a.button svg {
    stroke: rgb(var(--secondary-color));
} */

@media screen and (min-width: 768px) {
    .section__solutions__row {
        width: 30%;
    }

    .section__solutions__row h3 {
        font-size: 1.2rem;
        min-height: 120px;
    }
}

@media screen and (min-width: 1024px) {
    .section__solutions__row h3 {
        font-size: 1.5rem;
        min-height: 120px;
    }
    
    .section__solutions__row figure {
        min-height: 400px;
    }
}