
/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--snc-white);
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: var(--snc-red);
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--snc-yellow-light);
    color: var(--snc-red);
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--snc-green-dark);
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item .feature-icon,
.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    color: var(--snc-white);
}

.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--snc-white);
}

.feature .feature-item:hover a.btn {
    background: var(--snc-white);
    color: var(--snc-red);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--snc-green-dark);
    color: var(--snc-white);
}
/*** Feature End ***/