.two_product_box {
    width: 100%;
    background-color: #F9F9F7;
    padding-top: calc(20px + 2rem);
    padding-bottom: calc(29px + 5rem);
}

.two_product {
    max-width: 1640px;
    width: 85%;
    margin: auto;
}

.two_product_title {
    font-family: DM_Sans-bold;
    font-weight: 600;
    font-size: calc(6px + 1.5rem);
    color: #333333;
    line-height: calc(10px + 1.5rem);
    letter-spacing: 1px;
    text-align: center;

}

.two_product_list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: calc(5px + 1.5rem);
    margin-top: calc(19px + 4rem);
}

.two_product_item {
    width: 23.4756%;
    background-color: #ffffff;
    box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.05);
    padding: 0 calc(5px + 0.5rem);
}

.two_product_pic {
    width: 100%;
    height: calc(98px + 10rem);
    margin-top: calc(5px + 0.5rem);
    overflow: hidden;
}

.two_product_pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.two_product_item .two_product_name {
    font-family: DM_Sans-regular;
    font-weight: 400;
    font-size: calc(6px + 0.5rem);
    color: #333333;
    line-height: calc(3px + 1rem);
    text-align: center;
    padding: calc(10px + 1rem) 0;
}

.two_product_item:hover img {
    transform: scale(1.1);
}

@media screen and (max-width: 1100px) {
    .two_product_title {
        font-size: calc(14px + 1rem);
    }

    .two_product_item {
        width: 48.75%;
    }

    .two_product_item .two_product_name {
        font-size: calc(10px + 1rem);
    }

   
}