.section-1 {
    padding: 110px 0;
    background: url(../img/caseimg/section_bg.jpg) no-repeat center;
    background-size: 100% 100%;
    margin-bottom: 40px;
}
.section-2 h1 {
    font-size: 26px;
    color: #000;
    text-align: left;
}

.section-2 .product-list {
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
    gap:20px 16px;
}

.section-2 .product-list .box {
    width: 318px;
    border-radius: 16px;
    background: linear-gradient(to bottom, #000000, #434343);
    cursor: pointer;
}
.section-2 .product-list .box:hover {
   background: #000;
}

.section-2 .product-list .box img {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    max-height: 130px;
}

.section-2 .product-list h3 {
    padding: 20px 20px 25px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}
@media screen and (max-width: 996px) {
    .section-1 {
        background-size: cover;
    }
}