.module.image-category {
    position: relative;
    display: block;
    margin-bottom: 20px;
    padding-top: 30px;
    z-index: 2;
    border-bottom: 1px solid #e4e7e9;
    padding-bottom: 30px;
}
.module.image-category > .row {
    margin-left: -1px;
    margin-right: -1px;
}
.module.image-category > .row > .col {
    padding-left: 30px;
    padding-right: 30px;
}
.module.image-category .image-category-element {
    position: relative;
    display: block;
    width: auto;
    height: auto;
    margin-bottom: 2px;
    background: #ffffff;
    z-index: 1;
    border-radius: 100%;
    overflow: hidden;
    border: 3px solid #f3f4f6;
}
.module.image-category .col:hover .image-category-element {
    border: 3px solid #fbc926;
    box-shadow: 15px 7px 12px 4px rgba(0, 0, 0, 0.1);
}
.module.image-category .title {
    position: relative;
    display: block;
    color :#000000;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    padding: 15px 15px;
    transition: 0.5s all;
    z-index: 3;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.module.image-category .image-category-element .image-category-element-hover {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    height: 10px;
    z-index: 2;

    transition: 0.5s all;
}
.module.image-category .image-category-element:hover .title {
    color: #ffffff;
}
.module.image-category .image-category-element:hover .image-category-element-hover {
    height: 100%;
}
