
.features-box {
    gap: 30px;
    display: grid;
    grid-template-columns: 31.55% 31.55% 31.55%;
}
.features-box-item{
    display: flex;
    border-radius: 20px;
    flex-direction: column;
    padding: 40px 60px 34px 40px;
    border-top: 1px solid #fff;
    background: linear-gradient(to top, rgba(189, 189, 189, 1) 0%, rgba(255, 255, 255, 1) 100%);
}
.features-box-item:hover{
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#5bdbfd+0,2d88ba+100 */
background: linear-gradient(to bottom,  rgba(91,219,253,1) 0%,rgba(45,136,186,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}
.features-box-item figure img{
    transition: all 0.4s ease-in-out;
}
.features-box-item:hover figure img{
    transform: translateY(5px);
}
.features-box-item figure{
    
    margin-bottom: 25px;
}
.features-box-item h4{
    width: 66%;
    margin-bottom: 20px;
    color: var(--secondary--color);
}
.features-box-item p{
    margin-bottom: 0;
    margin-top: auto;
    color: var(--secondary--color);
}
@media only screen and (max-width: 1440px) {
    .features-box-item {
        padding: 36px 60px 32px 40px;
    }
    .features-box-item figure {
        margin-bottom: 20px;
    }
    .features-box-item h4 {
        margin-bottom: 16px;
    }
}
@media only screen and (max-width: 1199px) {
    .features-box {
        gap: 25px;
    }
    .features-box-item {
        padding: 30px 34px;
    }
}
@media only screen and (max-width: 991px) {
    .features-box-item h4 {
        margin-bottom: 14px;
    }
    .features-box {
        gap: 20px;
        grid-template-columns: 48.5% 48.5%;
    }
    .features-box-item figure {
        margin-bottom: 18px;
    }
    .features-box-item {
        padding: 26px 30px;
    }
}
@media only screen and (max-width: 767px) {
  
    .features-box {
        gap: 15px;
    }
    .features-box-item h4 {
        margin-bottom: 10px;
    }
    .features-box-item {
        padding: 22px;
    }
}
@media only screen and (max-width: 575px) {
    .features-box-item {
        text-align: center;
    }
    .features-box {
        gap: 15px;
        grid-template-columns: 100%;
    }
    .features-box-item h4 {
        width: 100%;
    }
    .features-box-item h4 br{
        display: none;
    }
}