.home_product_list_section {
    background: #F5F5F5;
    margin: 0;
    padding: 80px 0;
}

.home_product_list_section .title_block {
    text-align: center;
    margin-bottom: 60px;
}

.product_list-wraper {
    display: flex;
    flex-wrap: wrap;
    margin-left: -45px;
    margin-right: -45px;
    margin-bottom: -45px;
}
.product_list_iner {
    width: 33.33%;
    padding: 0 45px;
    margin-bottom: 45px;
    display: flex;
}
.product_list_box {
    position: relative;
    padding-bottom: 58px;
}
.product_list_box .product_items {
    height: 300px;
    width: 300px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 27px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid transparent;
    transition: all 0.6s;
    overflow: hidden;
}
.product_list_box:hover .product_items {
    border: 2px solid #46C2AC;
}
.product_list_box .product_items img {
    max-width: 226px;
    transition: all 0.6s;
    width: 100%;
}
.product_list_box:hover .product_items img{
  transform: scale(1.1);
}
.product_list_box .product_content {
    text-align: center;

}
.product_list_box .product_content .default_btn {
    padding: 17px 39px;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    width: fit-content;
    bottom: 0;
}
.product_list_box .product_content .default_btn {
    padding: 17px 39px;
}
.product_list_box .product_content .default_btn:focus{
    outline: 0;
}
.product_list_box:hover .product_content .default_btn{
    background-color: #46C2AC;
    color: #ffffff;
}

@media only screen and (max-width:1399px){
    .product_list_iner {
        padding: 0 35px;
    }
    .product_list-wraper {
        margin-left: -35px;
        margin-right: -35px;
    }
}
@media only screen and (max-width:1199px){
    .product_list_iner {
        padding: 0 25px;
    }
    .product_list-wraper {
        margin-left: -25px;
        margin-right: -25px;
    }
    .product_list_box .product_items {
        height: 250px;
        width: 250px;
    }
    .product_list_box .product_items img {
        max-width: 150px;
    }
    .home_product_list_section{
        padding: 60px 0
    }
}
@media only screen and (max-width:991px){
    .product_list_iner {
        width: 50%;
    }
    .home_product_list_section{
        padding: 40px 0
    }
}
@media only screen and (max-width:767px){
    .product_list_iner {
        width: 100%;
    }
    .product_list_iner {
        padding: 0 15px;
        margin-bottom: 30px;
    }
    .product_list-wraper {
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: -30px;
    }
}