#bluejay-banner{
    color: #fff;
}

.cards-wrapper{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 2rem;
}
.cards-wrapper .card {
    padding: 1.5rem;
    transition: all 0.8s ease;
    text-align: center;
}

.cards-wrapper .card .icon{
   margin-bottom: 1.5rem;
}

.img-circle{
    height: 65px;
    width: 65px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background: linear-gradient(90deg, #FF7E7E 0%, #fe992f 40%, rgba(0, 0, 0, 0.28) 60%);
    transition: all 0.8s ease;
    background-position: 0px;
    background-size: 200px;
}

.cards-wrapper .card:hover .img-circle {
    background-position: -120px;
    transition: all 0.3s ease;
}

.cards-wrapper .card:hover .icon{
    background-color: var(--primary-color);
}

.cards-wrapper .card:hover{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.svg{
    height: 36px;
    width: 36px;
    fill: #fff;
}

#bluejay-banner{
    height: 50vh;
}

#bluejay-banner{
    height: 50vh;
}

@media only screen and (min-width: 1201px){
    #bluejay-banner{
        height:auto;
        padding: 10px;
    }  
}


@media(max-width:991px){
    .cards-wrapper{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px){
    .cards-wrapper{
        grid-template-columns: repeat(1,1fr);
    }
}