.service-slogan {
    text-align: center;
    color: #00338f;
    margin: 30px 0;
}

.perks {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
}

.perks img {
    width: 128px;
}

.solutions {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin: 30px 0;
}

.solutions .card {
    border-radius: 0 0 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.solutions .card:nth-child(1) {
    grid-column: 1 / span 2;
    background: #00338f;
    color: #fff !important;
    padding: 0 40px;
    line-height: 2;
    font-size: 16px !important;
}

.solutions .card:nth-last-child(n+1) {
    text-align: center;
    color: #00338f;
    font-size: 16px;
    border: .5px solid #00338f;
}

.solutions .card img {
    max-width: 70px;
}

.solutions .card ul {
    padding: 0;
    list-style-type: none;
}

.solutions .card p {
    margin-top: 20px;
    line-height: 1.3;
}

.buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}

@media screen and (max-width: 768px) {
    .perks {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .perks img {
        margin: 0 auto;
    }

    .solutions {
        grid-template-columns: 100%;
    }

    .solutions .card {
        border-radius: 10px;
        padding: 20px;
    }

    .solutions .card:nth-child(1) {
        grid-column: 1 / 1;
        background: #00338f;
        color: #fff !important;
        padding: 0 40px;
        line-height: 2;
        font-size: 16px !important;
    }

    .solutions .card:nth-last-child(n+1) {
        max-height: 100px;
    }
    
    .buttons {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
}