.large-icon {
    position: relative;
    display: inline-flex;
    justify-content: center;
    width: 130px;
    height: 130px;
    border-radius: 100%;
    box-shadow: 0px 2px 8px 0px rgb(0 0 0 / 40%);
    overflow: hidden;
}
.large-icon img, .large-icon svg {
    padding: 30px;
    position: relative;
    z-index: 1;
}
.large-icon:after {
    content: "";
    clip-path: circle(0% at 50% 100%);
    background: #f7f7f7;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0;
    transition: .3s ease-out;
}
.services-grid .el-item:hover .large-icon:after {
    opacity: 1;
    clip-path: circle(100% at 50% 100%);
}