.products__product {
    position: relative;
}

.products__about-btn img {
    transition: transform .8s;
}

.products__about-content {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    max-width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: opacity 0.4s ease, transform 0.4s ease;
    max-height: 95%;
    max-width: 90%;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products__about-content::-webkit-scrollbar {
    display: none;
}

.products__about-content--open {
    opacity: 1;
    pointer-events: auto;
}

.products__about-img {
    
}

.products__about-img img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

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

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

@media (hover: hover) and (pointer: fine) {
    .products__about-btn:hover img {
        transform: scale(1.05);
    }
}

@media (hover: none) {
    .products__about-btn:active img {
        transform: scale(1.01);
        transition: transform .4s ease;
    }
}

/* ---------------------------------------700-------------------------------------- */

@media (max-width: 700px) {
    .products__about-content {
        width: 100%;
    }
}