.product-cards,
.btn-product-card-slider {
    position: relative;
    z-index: 1;
}

.product-details {
    padding-top: 50px;
}

.product-cards__arrows {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40px;
    z-index: -1;
}

.product-cards__headlines {
    margin-bottom: 32px;
}

.btn-product-card-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-product-card-slider .slick-arrow {
    position: relative;
    margin: 0;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
}

.product-card-slider {
    margin: 0 -16px;
}

.product-card-item {
    padding: 0 16px;
}

.product-card {
    display: flex;
    flex-wrap: wrap;
    border: none;
}

.product-card__image {
    width: 127px;
    position: relative;
}

.product-card__image img {
    position: absolute;
    top: 0;
    left: 0;
}

.product-card__hover {
    width: calc(100% - 127px);
    border: 1px solid #D0D0D0;
    height: 152px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    background: #fff;
}

h4.product-card__title {
    color: #1C1C1C;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2em;
}

h5.product-card__subtitle {
    color: var(--main-blue);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2em;
}

.product-cards.bg-blue {
    padding-top: var(--section-margins);
}

@media (min-width: 768px) {
    .product-cards__arrows {
        width: 65px;
    }

    .product-cards__headlines p {
        margin-bottom: 0;
    }

    .product-cards__title {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 14px;
        gap: 32px;
    }

    .product-cards__title h2 {
        margin-bottom: 0;
    }

    .btn-product-card-slider {
        border-left: 1px solid #ddd;
        padding-top: 5px;
        padding-bottom: 5px;
        padding-left: 33px;
    }

    .product-card-slider {
        padding: 0 24px;
    }

    .product-card__image {
        width: 100%;
        height: 292px;
    }

    .product-card__hover {
        width: 100%;
        height: 207px;
        padding: 0 32px;
        text-align: center;
        justify-content: center;
    }

    h4.product-card__title {
        font-size: 20px;
    }
}

@media (min-width: 1200px) {
    .product-cards__arrows {
        width: 171px;
    }

    .product-cards__headlines {
        margin-bottom: 50px;
    }

     .product-card-slider {
        padding: 0;
    }

    .product-card__title {
        margin-bottom: 20px;
    }

    h4.product-card__title {
        font-size: 22px;
    }

    .product-card:hover .product-card__hover {
        background: #1C1C1C;
    }

    .product-card:hover .product-card__title {
        color: #fff;
    }
}

@media (min-width: 1367px) {
    h4.product-card__title {
        font-size: 24px;
    }
}

@media (min-width: 1600px) {
    .product-cards__arrows {
        right: 157px;
    }
}