.inner-body-section{
    background: #F5F5F5;
    margin: 0;
    padding: 60px 0;
}
.inner-body-title{
    text-align: center;
    padding-bottom: 60px;
}
.product-box {
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.10);
    position: relative;
    padding-bottom: 60px;
}
.product-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.product-box-img-title {
    border-bottom: 1px solid #E2E2E2;
    margin-bottom: 24px;
    padding: 50px 42px 24px;
}
.product-box-img {
    text-align: center;
    padding-bottom: 35px;
}
.product-box-img img {
    min-height: 216px;
    height: 100%;
    object-fit: contain;
    max-height: 216px;
    width: 100%;
}
.product-box-list-btn .column-list-text ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.product-box-list-btn .column-list-text ul li {
    list-style-type: none;
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    width: 100%;
}
.product-box-list-btn .column-list-text ul li:last-child{
    margin-bottom: 0;
}
.product-box-list-btn {
    padding: 0 24px 24px;
}
.product-box-list-btn .column-list-text ul li::before {
    content: "";
    display: block;
    background-image: url("../images/check-circle.svg");
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    height: 20px;
    background-size: 20px;
    position: absolute;
    left: 0;
    top: 5px;
    transform: none;
}
.product-box .column-btn {
    position: absolute;
    bottom: 26px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 24px;
    display: flex;
    gap: 20px;
}
.product-box-list-btn .column-btn a {
    width: 100%;
    text-align: center;
    white-space: nowrap;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px){
    .product-box .column-btn {
        gap: 10px;
        flex-direction: column;
    }
    .product-box {
        padding-bottom: 128px;
    }
    .product-box-img-title {
        padding: 50px 15px 24px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1199px){
    .product-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
    .inner-body-title {
        padding-bottom: 30px;
    }
    .product-box .column-btn {
        gap: 10px;
        flex-direction: column;
    }
    .product-box {
        padding-bottom: 128px;
    }
    .product-box-img-title {
        padding: 50px 20px 24px;
    }
}

@media only screen and (max-width: 767px){
    .product-boxes {
        grid-template-columns: repeat(1, 1fr);
    }
    .inner-body-title {
        padding-bottom: 30px;
    }
}

@media only screen and (max-width: 575px){
    .product-box .column-btn {
        gap: 10px;
        flex-direction: column;
    }
    .product-box {
        padding-bottom: 130px;
    }
}