.s-cards {
    background: #f3f3f3;
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #b19057;
    border-top: 1px solid #b19057
}

.s-cards__sectionTitle {
    font-weight: 900;
    font-size: 48px;
    line-height: 58px;
    color: #333;
    margin-bottom: 56px
}

.s-cards__cards-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px
}

.s-cards__card {
    background: #fff;
    border: 1px solid #16314e;
    border-radius: 5px;
    padding-top: 29px;
    padding-bottom: 29px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s
}

.s-cards__card:hover {
    -webkit-box-shadow: 5px 10px 25px rgba(77, 77, 77, .185);
    box-shadow: 5px 10px 25px rgba(77, 77, 77, .185);
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px)
}

.s-cards__card:hover .s-cards__img-wrap img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    mix-blend-mode: luminosity
}

.s-cards__card:hover .s-cards__brand {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px)
}

.s-cards__card img {
    max-width: 100%
}

.s-cards__brand {
    height: 38px;
    margin: auto auto 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s
}

.s-cards__brand img {
    height: 38px;
    width: auto;
    max-width: none;
}

.s-cards__img-wrap {
    margin-bottom: 19px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden
}

.s-cards__img-wrap img {
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    height: 150px
}

.s-cards__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    color: #000;
    text-align: center;
    width: 100%;
    display: block;
    padding: 0 26px
}

.s-brands {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-column-gap: 44px;
    grid-row-gap: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
    background: #f3f3f3
}

.s-brands .brand-card {
    cursor: pointer
}

.s-brands .brand-card img {
    max-width: 100%;
    max-height: 54px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s
}

.s-brands .brand-card:hover img {
    mix-blend-mode: luminosity;
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px)
}

@media only screen and (max-width:1620px) {
    .s-cards__sectionTitle {
        font-size: 44px
    }

    .s-cards__brand,
    .s-cards__brand img {
        height: 30px
    }

    .s-cards__title {
        font-size: 18px;
        overflow-wrap: normal;
        word-wrap: break-word;
        word-break: normal;
        line-break: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        max-width: 100%
    }

    .s-brands {
        grid-column-gap: 30px;
        grid-row-gap: 16px
    }

    .s-brands .brand-card img {
        max-height: 50px
    }
}

@media only screen and (max-width:1440px) {
    .s-cards__sectionTitle {
        font-size: 40px;
        margin-bottom: 45px
    }

    .s-cards__brand,
    .s-cards__brand img {
        height: 26px
    }

    .s-cards__title {
        padding: 0 15px
    }
}

@media only screen and (max-width:1200px) {
    .s-cards__cards-wrap {
        grid-template-columns: repeat(2, 1fr)
    }

    .s-brands {
        grid-template-columns: repeat(5, 1fr)
    }

    .s-brands .brand-card img {
        max-height: 30px
    }
}

@media only screen and (max-width:767px) {
    .s-cards__sectionTitle {
        font-size: 32px;
        margin-bottom: 30px
    }

    .s-cards__title {
        font-size: 16px
    }

    .s-brands {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

@media only screen and (max-width:575px) {
    .s-cards__cards-wrap {
        grid-template-columns: 1fr
    }
}