.banner .swiper {
    width: 100%;
    height: 506px;
    position: relative;
}

.swiper1-wrapper {
    width: 100%;
    height: 100%;
    background: url('./imgs/1.webp') no-repeat center;
    background-size: cover;
}

.swiper2-wrapper {
    width: 100%;
    height: 100%;
    background: url('./imgs/2.webp') no-repeat center;
    background-size: cover;
}

.swiper-button-next {
    width: 50px !important;
    height: 89px !important;
    background: #a9aaac;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0 !important;
    top: 50%;
    margin-top: -45px;
    opacity: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.swiper-button-next::after {
    content: '' !important;
}

.swiper-button-prev {
    width: 50px !important;
    height: 89px !important;
    background: #a9aaac;
    position: absolute;
    left: 0 !important;
    top: 50%;
    margin-top: -45px;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.swiper-button-prev::after {
    content: '' !important;
}

.swiper .img-wrapper {
    width: 34px;
    height: 34px;
}

.swiper:hover .swiper-button-prev {
    opacity: 1;
}

.swiper:hover .swiper-button-next {
    opacity: 1;
}

.product-title {
    margin: 60px auto 40px;
    display: flex;
    justify-content: center;
    font-size: 32px;
    font-weight: 600;
    color: #121212;
    position: relative;
}

.product-title .title-text {
    position: relative;
}

.product-title .title-text::after {
    content: "";
    width: 60px;
    height: 2px;
    background: #dadbe0;
    position: absolute;
    left: -90px;
    top: 50%;
    margin-top: -1px;
}

.product-title .title-text::before {
    content: "";
    width: 60px;
    height: 2px;
    background: #dadbe0;
    position: absolute;
    right: -90px;
    top: 50%;
    margin-top: -1px;
}

.product-item_big {
    height: 463px;
    position: relative;
}

.product-item_base {
    height: 402px;
    position: relative;
}

.product-item_base .img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.product-item_wrapper {
    overflow: hidden;
}

.product-item_title,
.product-item_desc,
.product-item_metas {
    position: relative;
    z-index: 10;
    text-align: center;
}

.product-item_title {
    margin-top: 30px;
    font-size: 22px;
    font-weight: 400;
}

.product-item_desc {
    margin: 10px 0;
    font-size: 16px;
}

.product-item_metas {
    display: flex;
    justify-content: center;
}

.product-item_meta {
    padding: 0 11px;
    border-right: 1px solid rgba(0, 0, 0, .4);
}

.product-item_meta:last-of-type {
    border-right: none;
}

.product-item_big .img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.product-items_wrapper .row {
    margin-bottom: 1rem;
}


@media(max-width: 768px) {
    .banner .swiper {
        height: 300px;
    }

    .swiper1-wrapper {
        width: 100%;
        height: 100%;
        background: url('./imgs/1@small.webp') no-repeat center;
        background-size: cover;
    }

    .swiper2-wrapper {
        width: 100%;
        height: 100%;
        background: url('./imgs/2@small.webp') no-repeat center;
        background-size: cover;
    }

    .product-item_big,
    .product-item_base {
        height: 210px;
        margin-bottom: 10px;
    }

    .product-item_title {
        margin-top: 8px;
        font-size: 14px;
    }

    .product-item_desc {
        margin: 4px;
        font-size: 12px;
    }

    .product-item_metas {
        font-size: 12px;
    }

}