.products_banner{
    background: url(../img/product-banner.jpg) no-repeat center/cover;
}
.products_banner .head{
    height: 750px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;   
    color: white;
    
}
.products_banner .head h1{
    font-size: 54px;
    line-height: 75px;
    font-weight: 900;
    margin-bottom: 20px;
}
.products_banner .head p{
    color: white;
    margin-top: 0;
    max-width: 338px;
}
.product_main{
    padding: 120px 0;
}
.product_main .left{
    width: 20.2%;
}
.product_main .left .category_list li a{
    padding: 18px 64px;
    padding-right: 10px;
    border-radius: 5px;
    color: #606060;
    font-size: 18px;
    display: block;
    position: relative;
}
.product_main .left .category_list li img{
    max-width: 28px;
    max-height: 28px;
    height: auto;
    position: absolute;
    left: 23px;
    top: 50%;
    transform: translateY(-50%);
}
.product_main .left .category_list li.active img{
    filter: brightness(100);
}
.product_main .left .category_list li.active a{
    color: white;
    background-color: var(--theme_color);
}
.product_main .right{
    width: 79.8%;
    padding-left: 53px;
}
.products_list li .head{
    margin-bottom: 30px;
}
.products_list li .head h2{
    display: flex;
    align-items: center;
    font-size: 40px;
}
.products_list li .head h2 img{
    width: 43px;
    height: auto;
    margin-right: 23px;
    display: block;
}
.products_list>ul>li{
    margin-bottom: 82px;
}

.products_list .sy_products{
    display: grid;
    gap: 58px 19px;
    grid-template-columns: repeat(3,1fr);
}
.sy_products .sy_product:hover img{
    transform: scale(1.1);
}
.sy_products .sy_product:hover .infos strong{
    background-image: url('../img/arrow-cu.svg');
}
.sy_products .sy_product{
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}
.sy_products .sy_product .img{
    height: 230px;
    display: flex;
    position: relative;
    overflow: hidden;
    align-items: flex-end;
    justify-content: center;
}
.sy_products .sy_product .img:after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0.7;
    background: url('../img/product-bg.svg') no-repeat top/100%;
}
.sy_products .sy_product .img img{
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    object-fit: cover;
}
.sy_products .sy_product .infos{
    text-align: center;
    padding-bottom: 65px;
    position: relative;
}
.sy_products .sy_product .infos span{
    font-size: 15px;
    color: #515151;
    display: block;
    margin-bottom: 7px;
    
}
.sy_products .sy_product .infos p{
    font-size: 18px;
    line-height: 22px;
    color: var(--title_color);
    font-weight: 900;
}
.sy_products .sy_product .infos strong{
    position: absolute;
    width: 70px;
    height: 70px;
    display: inline-block;
    left: 50%;
    transition: all 0.3s;
    transform: translate(-50%,50%);
    background: url('../img/arrow-cb.svg') no-repeat center/contain;
}


