
main #ourFeatures{
    background: #FDF6EC;
    background: radial-gradient(circle, rgba(253, 246, 236, 1) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 8rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
main #ourFeatures div.featuresItems{
    width: 30%;
    padding: 2rem;
    border-radius: 1.2em;
    background-color: white;
    margin: 1.2rem 0;
}
main #ourFeatures div.featuresItems h4{
    padding: 1rem 0;
}
/* main #ourFeatures div.featuresItems p{
} */
main #ourFeatures div.featuresItems img{
    width: 30%;
    min-width: 4rem;
}
main #ourFeatures div#special{
    width: 65%;
    padding: 2rem 3rem;
    background-color: black;
}
main #ourFeatures div#special h3{
    color: white;
    padding: 2rem 0;
    width: 60%;
}
main #ourFeatures div#special h3 span{
    font-style: italic;
    color: #f9c265;
    font-weight: 400;
}
main #ourFeatures div#special a{
    background-color: #f9c265;
    color: black;
    padding: 0.6rem;
    border-radius: 1.2em;
    transition: all 300ms ease;
}
main #ourFeatures div#special a:hover{
    opacity: 0.7;
}

/* features media */

@media (max-width: 600px) {
    main #ourFeatures{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    main #ourFeatures div.featuresItems{
        width: 100%;
    }
    main #ourFeatures div#special{
        width: 100%;
    }
    main #ourFeatures div#special h3{
        width: 100%;
    }
}