.promo-products {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    background: #ffffff;
}

.promo-products__item {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    text-align: center;
    transition:
        transform .45s ease,
        filter .45s ease,
        opacity .45s ease;
}

.promo-products:hover .promo-products__item {
    filter: grayscale(100%);
    opacity: .45;
}

.promo-products:hover .promo-products__item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.03);
    z-index: 20;
}

.promo-products__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -180%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.15),
        rgba(255,255,255,.55),
        rgba(255,255,255,.15),
        transparent
    );
    transform: skewX(-25deg);
    opacity: 0;
    pointer-events: none;
}

.promo-products__item:hover::before {
    opacity: 1;
    animation: shineEffect 1s ease;
}

@keyframes shineEffect {

    0% {
        left: -180%;
    }

    100% {
        left: 220%;
    }
}

.promo-products__content {
    position: relative;
    z-index: 3;
    padding: 42px 20px 0;
}

.promo-products__title {
    margin: 0;
    font-size: 54px;
    font-weight: 700;
    line-height: 1.1;
}

.promo-products__subtitle {
    margin-top: 12px;
    font-size: 24px;
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.promo-products__buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.promo-products__btn {
    height: 40px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.promo-products__btn--primary {
    background: #0071e3;
    border: 1px solid #0071e3;
    color: #ffffff;
}

.promo-products__btn--primary:hover {
    background: #2488eb;
}

.promo-products__btn--secondary {
    border: 1px solid #0071e3;
    color: #0071e3;
    background: transparent;
}

.promo-products__btn--secondary:hover {
    background: #0071e3;
    color: #ffffff;
}

.promo-products__image {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 20px;
}

.promo-products__image img {
    width: 100%;
    max-width: 700px;
    display: block;
    margin: 0 auto;
    transition: transform .45s ease;
}

.promo-products__item:hover .promo-products__image img {
    transform: scale(1.06);
}

.promo-products__item:nth-child(odd) {
    background: #000000;
    color: #ffffff;
}

.promo-products__item:nth-child(even) {
    background: #f5f5f7;
    color: #1d1d1f;
}

@media (max-width: 1200px) {

    .promo-products__item {
        min-height: 520px;
    }

    .promo-products__title {
        font-size: 42px;
    }

    .promo-products__subtitle {
        font-size: 20px;
    }
}

@media (max-width: 991px) {

    .promo-products {
        grid-template-columns: 1fr;
    }

    .promo-products__item {
        min-height: 550px;
    }
}

@media (max-width: 768px) {

    .promo-products__item {
        min-height: 450px;
    }

    .promo-products__content {
        padding-top: 30px;
    }

    .promo-products__title {
        font-size: 34px;
    }

    .promo-products__subtitle {
        font-size: 17px;
    }

    .promo-products__buttons {
        gap: 8px;
    }

    .promo-products__btn {
        font-size: 13px;
        padding: 0 18px;
    }
}