.featured-grid-section {
    position: relative;
    z-index: 1;
}

.featured-grid-section .section-title p {
    max-width: 100%;
}

.featured-grid-section:before {
    content: "";
    display: block;
    height: 68px;
    max-width: 680px;
    width: 100%;
    opacity: 0.6;
    background: #FF6B2C;
    filter: blur(200px);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}

.featured-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px -20px;
}

.featured-card {
    width: 33.33%;
    padding: 0 10px;
    margin-bottom: 20px;
}

.featured-card-box {
    text-align: center;
    height: 100%;
    border-radius: 30px;
    border: 1px solid rgba(255, 107, 44, 0.10);
    background: #FFF;
    padding: 24px;
}

.featured-card-box img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
}

.featured-card-box .h5 {
    margin-bottom: 0;
}

@media only screen and (max-width:1199px) {}

@media only screen and (max-width:991px) {
    .featured-card {
        width: 50%;
    }
}

@media only screen and (max-width:767px) {
    .featured-card {
        width: 100%;
    }
}