.content{
    height: 512px;
    min-height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.content-main{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}
.content-title{
    font-size: clamp(20px , 5vw , 48px);
}
.content-text{
    font-size: clamp(14px , 2.5vw , 16px);
    text-align: center;
    margin-top: 20px;
    width: 80%;
    max-width: 567px;
}

.product-box{
    width: 100%;
    background-color: #191919;
}
.product-main{
    width: 80%;
    padding: calc(100vw / 100 * 4) 0;
    margin: 0 auto;
    color: #fff;
}
.product-title{
    width: 80%;
    margin: 0 auto;
}
.product-title a{
    color: #fff;
}
.product-con{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: calc(100vw / 100 * 4);
    margin-top: 40px;
}
.product-con-it{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
}
.product-con-img{
    width: 100%;
    height: calc(100vw / 100 * 16);
    min-height: 210px;
    position: relative;
    overflow: hidden;
}
.product-con-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}
.product-img-con{
    position: absolute;
    bottom: 12px;
    right: 12px;
    color: #fff;
}
.product-con-img-title{
    font-size: clamp(20px, 2.5vw, 40px);
    font-weight: bold;
}
.product-con-img-text{
    font-size: clamp(14px, 2.5vw, 16px);
}
.product-con-title{
    text-align: center;
    height: 85px;
    width: 100%;
    line-height: 85px;
    background-color: #fff;
    font-size: clamp(16px, 1.5vw, 20px);
    color: #3C3C3C;
    transition: all 0.3s ease;
}
.product-con-it:hover .product-con-img img{
    transform: scale(1.1);
}
.product-con-it:hover .product-con-title{
    background-color: #f2b156;
    color: #fff;
}

@media screen and (max-width: 1024px) {
    .product-con{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 768px) {
    .product-con{
        grid-template-columns: 1fr;
    }
}