.custom-inner-banner{
    background-color: #f0da83;
    height: 150px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.custom-inner-banner h2{
    text-align: center;
    font-size: 400%;
}

.top-feature-section-spacing{
    padding: 10%;
    gap:2%;
}

.top-features-slide{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4%;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.main-content a {
    color: #000000;
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Optional: make the text bold */
    transition: color 0.3s; /* Smooth transition for color change */
}

.main-content a:hover {
    color: #f0da83; /* Change color on hover */
}

.item-consumer-insights:hover,
.item-emerging-ideas:hover,
.item-thought-leadership:hover,
.item-marketing-goals:hover{
    margin-top: -15px;
}

@media (max-width: 768px) {
    .top-features-slide{
        display: inline-block;
    }

    .item-consumer-insights:hover,
    .item-emerging-ideas:hover,
    .item-thought-leadership:hover,
    .item-marketing-goals:hover{
        display: inline-block;
    }

}