.products__about-btn::after {
    content: "";
    background: url("/static/images/icons/arrow-right-filled.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 36px;
    height: 36px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    transition-duration: .6s;
}

.products__about-text {
    margin-top: 15px;
}

/* ---------------------------------------MEDIA-------------------------------------- */
/* ---------------------------------------MEDIA-------------------------------------- */

/* ---------------------------------------HOVER-------------------------------------- */

@media (hover: hover) and (pointer: fine) {
    .products__about-btn:hover::after {
        filter: contrast(130%);
    }
}

@media (hover: none) {
    .products__about-btn:active::after {
        filter: contrast(130%);
        transform: scale(1.05);
    }
}

/* ---------------------------------------550-------------------------------------- */

@media (max-width: 550px) {
    .products__about-btn::after {
        width: 25px;
        height: 25px;
    }
}

/* ---------------------------------------430-------------------------------------- */

@media (max-width: 430px) {
    .products__about-btn::after {
        width: 20px;
        height: 20px;
    }
}