/* Featured & benefits section start  */
.featured-benefits-section {
    background-image: url(/wp-content/uploads/2024/02/banner122.png);
    background-size: cover;
}

.feat-bene-card {
    border-radius: 15px;
    padding: 25px;
    background-color: var(--ced-white-color);
    position: relative;
    z-index: 1;
}

.feat-bene-card .count {
    font-size: 40px;
    color: var(--ced-subheading-color);
    margin-bottom: 20px;
    transition: all 0.5s;
}

.feat-bene-card:hover .count {
    color: var(--ced-blue-60);
}

.feat-bene-card h3 {
    font-size: 17px;
    line-height: 30px;
    color: var(--ced-grey-60);
    font-family: var(--ced-montserrat-m);
}

.feat-bene-card p {
    font-size: 15px;
    line-height: 26px;
    color: var(--ced-grey-60);
}

.feat-bene-card .gif-icon {
    position: absolute;
    right: 20px;
    transition: all .5s;
}

/*  Featured & benefits section Responsise start  */
@media screen and (min-width: 1400px) {
    .feat-bene-card {
        min-height: 250px;
    }
}

@media screen and (min-width: 1200px) {

    .feat-bene-card:hover .gif-icon {
        top: -25px;
    }
}


@media screen and (min-width: 1200px) and (max-width: 1399px) {
    .feat-bene-card {
        min-height: 300px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .feat-bene-card {
        min-height: 250px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .feat-bene-card {
        min-height: 300px;
    }
}

@media screen and (min-width: 768px) {
    .feat-bene-card .gif-icon {
        max-width: 100px;
        top: -25px
    }

    .feat-bene-card:hover .gif-icon {
        animation: topbottomanimate 1s ease-in-out;
        animation-iteration-count: 1;
    }

    @keyframes topbottomanimate {
        0% {
            top: -25px;
        }

        50% {
            top: -40px;
        }
    }
}

@media screen and (max-width: 767px) {
    .feat-bene-card .gif-icon {
        max-width: 80px;
        top: 15px;
    }
}