.features {
    padding: 32px 0;
    position: relative;
}

.features .features-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    text-align: center;
}

.features .feature-single {
    width: calc(33.33333333% - 22px);
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #fff;
}

.features .feature-single .feature-icon {
    max-width: 96px;
    display: flex;
    margin: 0 auto;
}

.features .feature-single .feature-icon img {
    width: 100%;
    height: auto;
    transition: transform .3s ease;
    min-width: 96px;
    max-width: 96px;
}

.features .feature-single .feature-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.features .feature-single:hover .feature-icon img {
    transform: scale(0.90);
}

@media (max-width:991px) {
    .features .feature-single {
        width: calc(50% - 16px);
    }
}

@media (max-width:479px) {
    .features .feature-wrapper {
        gap: 16px;
    }

    .features .feature-single {
        width: 100%;
    }
}