:root {
    --themeColor: #ff0030
}

.product_banner {
    position: relative
}

.product_banner > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle
}

.product_banner .banner_content {
    position: absolute;
    top: 50%;
    left: 18%;
    transform: translateY(-50%);
    color: #ffffff;
    max-width: 41.66667vw
}

.product_banner .banner_content h1 {
    font-size: 2.8125vw
}

.product_banner .banner_content h2 {
    font-size: 1.30208vw;
    margin-top: 15px
}

.product_banner .banner_content p {
    font-size: 1.5625vw
}

.product-container {
    background-color: #16141a;
    padding-top: 4.16667vw;
    padding-bottom: 100px;
}

.product-container .product-panel {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto
}

.product-nav {
    display: flex;
    justify-content: center
}

.product-nav .nav-item {
    background-color: #000000;
    color: var(--themeColor);
    text-align: center;
    text-transform: uppercase;
    font-size: 1.30208vw;
    width: 15.625vw;
    height: 2.60417vw;
    line-height: 2.60417vw;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Manrope-Medium";
    font-weight: normal;
    margin: 0 .52083vw
}

.product-nav .nav-item:after{ display:none;}


.product-nav .nav-item.active {
    background-color: var(--themeColor);
    color: #ffffff
}

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.product-list .product-item {
    display: none
}

.product-list .product-item.active {
    display: block
}

.product-list .product-item ul {
    overflow: hidden;
    margin-top: 20px
}

.product-list .product-item ul li {
    float: left;
    width: 25%;
    margin: 20px 0 20px 0;
    padding: 0 5px
}

.product-list .product-item ul li a {
    display: inline-block;
    width: 100%;
    height: 100%
}

.product-list .product-item ul li h4 {
    text-align: center;
    color: #ffffff;
    font-size: .83333vw;
    margin-top: 10px;
    font-family: "Manrope-Medium";
    font-weight: normal
}

.product-list .product-item .pro-img {
    position: relative;
    overflow: hidden;
    padding-bottom: 4px;
    border-radius: 5px
}
.product-list .product-item .pro-img  img{
    width: 30%;
}

.product-list .product-item .pro-img .slogan {
    opacity: 0;
    position: absolute;
    color: #ffffff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.25vw;
    line-height: 1.1;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3;
    text-align: center;
    font-family: "Manrope-Bold";
    font-weight: normal;
    transition: all .5s;
    display: flex;
    align-items: center;
    justify-content: center
}

.product-list .product-item .pro-img .slogan p {
    left: -100%;
    top: 50%;
    transform: translate(0, -50%);
    width: 100%;
    position: absolute;
    transition: left .5s;
    text-transform: uppercase
}

.product-list .product-item .pro-img:hover .slogan {
    opacity: 1
}

.product-list .product-item .pro-img:hover .slogan p {
    left: 0
}

.product-list .product-item .pro-img img {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    object-fit: cover;
    background-color: #322f38;
    vertical-align: middle;
    transition: all .5s;
    position: relative;
    z-index: 3;
    left: 2px;
    top: 2px;
    padding: 60px;
    box-sizing: border-box;
    border-radius: 4px
}

.product-list .product-item .pro-img::before {
    content: '';
    position: absolute;
    z-index: 1;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background-color: var(--themeColor);
    background-repeat: no-repeat;
    background-size: 50% 50%;
    background-position: 0 0, 100% 0;
    background-image: linear-gradient(var(--themeColor), var(--themeColor)), linear-gradient(#16141a, #16141a);
    display: none
}

.product-list .product-item .pro-img::after {
    content: '';
    position: absolute;
    z-index: 2;
    left: 2px;
    top: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 6px
}

.product-list .product-item .pro-img:hover img {
    background-color: #16141a
}

.product-list .product-item .pro-img:hover::before {
    -webkit-animation: rotate 4s linear infinite;
    animation: rotate 4s linear infinite;
    display: block
}


@media screen and (max-width: 992px) {
	.product-list .product-item .pro-img img{transform: scale(1.5);}
}
@media screen and (max-width: 768px) {
    .product_banner .banner_content {
        max-width: 50%;
        left: 10%
    }

    .product_banner .banner_content h1 {
        font-size: 4.16667vw
    }

    .product_banner .banner_content h2 {
        font-size: 2.08333vw
    }

    .product-nav .nav-item {
        width: 18.22917vw;
        height: 5.20833vw;
        line-height: 5.20833vw;
        font-size: 2.60417vw
    }

    .product-list .product-item ul li h4 {
        font-size: 2.08333vw
    }

    .product-list .product-item .pro-img .slogan p {
        font-size: 15px
    }

    .product-list .product-item .pro-img .slogan p br {
        display: none
    }
}

@media screen and (max-width: 600px) {
    .product_banner {
        position: relative;
        height: auto
    }

    .product_banner .banner_content h1 {
        font-size: 25px
    }

    .product_banner .banner_content h2 {
        font-size: 14px;
        margin-top: 10px
    }

    .product_banner .banner_content {
        max-width: 80%;
        left: 5%
    }

    .product-list .product-item ul li {
        width: 50%;
        margin: 10px 0 10px 0
    }

    .product-list .product-item ul li h4 {
        font-size: 16px
    }

    .product-nav .nav-item {
        width: 140px;
        height: 38px;
        line-height: 38px;
        border-radius: 4px;
        font-size: 16px
    }
}
