.subtitle {
    font-family: PT Serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    line-height: 130%;
}

.columns-col {
    gap: 16px;
}
.icon {
    height: 120px;
    width: 124px;
}

.columns-wrapper {
    gap: 48px;
}

@media only screen and (min-width: 576px) {
    .columns-wrapper{
        grid-template-columns: repeat(auto-fit, 150px);
        gap: unset;
    }
}

@media only screen and (min-width: 992px) {
    .columns-wrapper{
        grid-template-columns: repeat(auto-fit, 250px);
        gap: unset;
    }
}

@media only screen and (min-width: 1200px) {
    .columns-wrapper{
        grid-template-columns: repeat(auto-fit, 350px);
    }
}

@media only screen and (min-width: 1600px) {
    .columns-wrapper{
        grid-template-columns: repeat(auto-fit, 416px);
    }
}

@media only screen and (min-width: 1920px) {
/*     .columns-wrapper{
        grid-template-columns: repeat(auto-fit, 560px);
    } */

    .columns-col {
        gap: 24px;
    }

    .subtitle {
        font-size: 36px;
    }
}