.single_svg_box_icon {
    background-color: #FFFFFF;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 30px 30px 30px 30px;
    transition: 0.3s;
    overflow: hidden;
}
.single_svg_box_icon:before {
    content: "";
    background-color: #C2E812;
    position: absolute;
    left: 0px;
    bottom: 0px;
    text-align: left;
    width: 100%;
    height: 0%;
    opacity: 1;
    transition: 0.6s;
    transform: rotate(0deg) scale(1);
    overflow: hidden;
    z-index: 1;
}
/* .single_svg_box_icon:hover:before {
    height: 100%;
} */
/* .single_svg_box_icon:hover .svg_box_icon svg path.fill-hexagon {
    fill: #FFFFFF;
} */
.svg_box_icon {
    display: flex;
    position: relative;
    width: 100px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    z-index: 2;
    margin-bottom: 30px;
}
.svg_box_icon svg {
    width: 100px;
    height: 100px;
}
.svg_icon-wrapper {
    display: flex;
    position: absolute;
}
.svg_icon-wrapper i {
    font-size: 34px;
    color: #000000;
}
.svg_box_icon svg path.fill-hexagon {
    fill: #C2E812;
}

.svg_box_title {
    position: relative;
    font-size: 25px;
    font-weight: 700;
    font-family: "Poppins", Sans-serif;
    text-align: center;
    z-index: 2;
    margin-bottom: 15px;
}

.svg_box_content {
    position: relative;
    font-size: 18px;
    text-align: center;
    z-index: 2;
}

@media (max-width: 767px) {
    .svg_box_content {
        font-size: 16px;
    }
    .svg_box_title {
        font-size: 22px;
        font-weight: 600;
    }
}