.solution {
    margin-top: 32px;
    margin-bottom: 32px;
    background-color: #ffffff;
    border-radius: 32px;
    padding-top: 32px;
    padding-bottom: 16px;
    width: 100%;
}

.solution-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 1512px;
    margin: auto;
}

.solution-header {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 8px;
}

.solution-header-main {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}


.solution-header-main h3 {
    font-size: 40px;
    line-height: 40px;
}

.solution-logo {
    margin-left: 8px;
    margin-right: 8px;
}

.solution-cards {
    display: flex;
    flex-direction: column;
}

.solution-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px;
    max-width: 456px;
}

.solution-card img {
    width: 343px;
    height: 100px;
}

.solution-card .main-text {
    margin-top: 16px;
    margin-bottom: 12px;
}

.solution-card p {
    text-align: center;
}

.solution-button {
    display: none;
}

@media only screen and (min-width: 992px) {
    .solution {
        margin-top: 32px;
    }

    .solution-cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .solution-card {
        width: 456px;
    }

    .solution-card img {
        width: 392px;
        height: 120px;
    }

    .solution-button {
        display: block;
        margin-bottom: 80px;
        margin-top: 32px;
    }
}