.banner-con{
    background: url(../img/product-center-banner.jpg) no-repeat;
    background-size: 100% 100%;
    min-height: 28vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 100px;
}
.banner-con .banner{
    max-width: 1700px;
    margin: 0 auto;
}
.banner-con .banner .title-desc{
    margin-top: -70px;
}
.banner-con .banner .title-desc h1{
    font-size: 72px;
    color: #f08400;
}
.banner-con .banner .title-desc p{
    font-family: robotoregular;
    color: #ffffff;
    margin-bottom: 30px;
}
h2{
    font-size: 48px;
    color: #1a1a1a;
}
.product-con p{
    font-family: robotoregular;
}
.product-con ul{
    flex-wrap: wrap;
    gap: 30px;
}
.product-con ul li{
    width: calc((100% - 90px) / 4);
    background: url(../img/product-bg.jpg) no-repeat;
    background-size: 100% 100%;
}
.product-con ul li a{
    padding: 20px;
    display: block;
}
.product-con ul li img{
    display: block;
    margin: 0 auto;
}
.product-con ul li h3{
    text-transform: uppercase;
}
.product-con ul li p{
    color: #f08400;
    font-family: robotomedium;
}
.product-con ul li p span{
    border-bottom: 1px solid #f08400;
}

@media (max-width:1400px){
    .banner-con .banner .title-desc h1{
        font-size: clamp(60px,5vw,72px);
    }
    h2{
        font-size: clamp(40px,4vw,48px);
    }
}

@media (max-width:1080px){
      .banner-con .banner .title-desc h1{
        font-size: clamp(52px,5.5vw,60px);
    }
    h2{
        font-size: clamp(30px,3.6vw,40px);
    }
    .product-con ul{
        gap: 20px;
    }
    .product-con ul li{
        width: calc((100% - 40px) / 3);
    }
}

@media (max-width:768px){
    .banner-con .banner .title-desc{
        margin-top: 0;
    }
    .banner-con .banner .title-desc h1{
        font-size: clamp(42px,7vw,52px);
    }
    h3{
        font-size: clamp(18px,3vw,25px);
    }
     .product-con ul{
        gap: 10px;
    }
    .product-con ul li{
        width: calc((100% - 10px) / 2);
    }
    .product-con ul li p{
        font-size: 14px;
    }
    
    
}
