@media (max-width: 1200px) {
    .product-card {
        flex-basis: calc(33.33% - 16px);
    }
}

@media (max-width: 768px) {
    .video {
        width: 100%;
    }

    .product-card {
        flex-basis: calc(50% - 16px);
    }

    .d-flex{
        flex-direction: column;
    }

    .sort{
        margin: 10px auto;
    }

    .advantages__item{
        width: 150px;
    }

    .product-card img {
        width: 100%;
    }

    /* delivery */
    .delivery__list {
        flex-wrap: wrap;
    }

    .delivery__item {
        width: 100%;
    }

    .product-card .img-fluid{
        height: 500px;
    }
}

@media (max-width: 480px) {
    .product-card {
        flex-basis: 100%;
    }
}

@media (max-width: 768px) {

    /* POP-UP */
    .popup-content {
        overflow-y: auto;
        max-height: 82vh;
    }
}