.solutions{
    width: 100%;
    background: var(--light-blue-line-gradient);
    padding:var(--gutter-section) 0 0 0;
}
.solutions__wrapper{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    max-width:var(--max-xl-width);
    gap: 2rem;
}
.solutions__headline,.solutions__subheadline{
    width: 100%;
    text-align: center;
}
.solutions__headline{
    font-size: var(--fs-large);
    font-weight: 700;
    text-transform: uppercase;
}
.solutions__subheadline{
    color: var(--blue);
    font-size: var(--fs-large);
    font-weight: 700;
    /* text-transform: uppercase; */
    margin-bottom: 3rem;
}
.solutions__before, .solutions__after{
    height: 100%;
    width: 100%;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-items:center;
    /* grid-column: 1 / 3; */
}
.solutions__before img, .solutions__after img{
    height: 100%;
    width: 100%;
    text-align: center;
    object-fit: contain;
    justify-self: center;
    /* background-color: var(--white); */
}
@media (min-width: 768px) {
    .solutions__wrapper{
        grid-template-columns: repeat(2,1fr);
    }
    .solutions__headline,.solutions__subheadline{
        grid-column: 1 / 3;
    }
    .solutions__before, .solutions__after{
        object-fit: contain;
        padding: 1rem;
    }

}