.store-features {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%);
    padding: 162px 0 158px;
}

.store-features-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.store-features-list__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 42px 0 38px 0;
}

.store-features-list__item:nth-child(2) {
    border-left: 1px solid #C4C4C4;
    border-right: 1px solid #C4C4C4;
}

.store-features-list__item img {
    width: 65px;
    height: 65px;
}

.store-features-list__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    color: #ffffff;
    margin: 19px 0 0 0;
}

.store-features-list__description {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    letter-spacing: 0.02em;
    text-align: center;
    color: #ffffff;
    margin: 6px 0 0 0;
    padding: 0 50px;
}

.store-features-list__link {
    font-family: "Harmonia Sans Pro Cyr", sans-serif;
    position: relative;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: #00AFFF;
    margin: 20px 0 0 0;
}

.store-features-list__link::before {
    position: absolute;
    content: "";
    background-image: url(../img/link-arrow.svg);
    background-repeat: no-repeat;
    background-size: 6px 12px;
    width: 10px;
    height: 17px;
    top: 5px;
    right: -19px;
}

@media(max-width: 1024px) {
    .store-features {
        padding: 100px 0;
    }

    .store-features-list__item {
        padding: 37px 0 33px 0;
    }

    .store-features-list__title {
        font-size: 16px;
        line-height: 19px;
        margin: 19px 0 0 0;
    }

    .store-features-list__description {
        font-size: 14px;
        line-height: 18px;
        margin: 6px 0 0 0;
        padding: 0 20px;
    }

    .store-features-list__link {
        font-size: 14px;
        line-height: 18px;
        margin: 20px 0 0 0;
    }
}

@media(max-width: 767px) {
    .store-features {
        padding: 10px 0;
    }

    .store-features-list {
        grid-template-columns: 1fr;
    }

    .store-features-list__item {
        padding: 43px 0 46px 0;
    }

    .store-features-list__item:nth-child(2) {
        border-top: 1px solid #C4C4C4;
        border-bottom: 1px solid #C4C4C4;
        border-left: none;
        border-right: none;
    }
}