.ind_catalog_fl {
    display: flex;
    align-items: stretch;
    justify-self: flex-start;
    flex-wrap: wrap;
    padding: 0 0 10px;


 border-radius: 10px;

}
.ind_catalog_fl * {
    box-sizing: border-box;
}
.ind_catalog_fl .catalog_btn {
    width: 100%;
    text-align: center;
}

.ind_cat_el {
    width: 22.96%;
    margin-right: 2.72%;
    margin-bottom: 45px;
}
.ind_cat_el:nth-child(4n) {
    margin-right: 0;
}
.ind_cat_el a {
    color:#7c7e7f;
    text-decoration: none;
    /* flex-direction: column;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end; */
    min-height: 100%;
    display: block;
    border-radius: 10px;
    box-shadow: 0px 0px 15px 0 rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
    background: #FDFFFE;
}
.ind_cat_el a:hover {
    box-shadow: 0px 0px 20px 0 rgba(0, 0, 0, 0.4);
}
.ind_cat_el a:hover .ind_cat_ic img {
    transform: scale(1,1);
}
.ind_cat_ic {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    min-height: 180px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    width: 100%;
    background: #fff;
    position: relative;

}
.ind_cat_ic img {
    transform: scale(1.1,1.1);
    transition: all 0.5s ease;
}
.ind_cat_ic img {
    width: 100%;
    height: 88%;
    object-fit: contain;
}
.ind_cat_tit {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 10px 10px;
    width: 100%;
    background: #FFF;
    min-height: 75px;
    font-weight: bold;
    font-size: 18px;
    padding: 5px 10px;
    text-align: center;
}
@media only screen and (max-width:999px) {
    .ind_cat_tit {
        font-size: 16px;
        font-weight: normal;
    }
}
@media only screen and (min-width:800px) and (max-width:999px) {
    .ind_cat_el {
        width: 31%;
        margin-right: 3.5%;
    }
    .ind_cat_el:nth-child(4n) {
        margin-right: 3.5%;
    }
    .ind_cat_el:nth-child(3n) {
        margin-right: 0%;
    }
}
@media only screen and (min-width:500px) and (max-width:799px) {
    .ind_cat_el {
        width: 48%;
        margin-right: 4%;
    }
    .ind_cat_el:nth-child(4n) {
        margin-right: 0%;
    }
    .ind_cat_el:nth-child(2n) {
        margin-right: 0%;
    }
}
@media only screen and (max-width:499px) {
    .ind_cat_el {
        width: 100%;
        margin-right: 0%;
    }
}