.allFeatures{
    margin-top: 30px;
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    flex-wrap: wrap;
    gap: 20px;
}
.fftt{
    background: #121212;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 2px 3px 4px  #eee;
    display: grid;
    place-items: center;
    color: #fff;
    gap: 5px;
}
.fftt svg{
    height: 100px;
    width: 100px;
}
.fftt h3{
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    text-decoration: underline;
}
.fftt span{
    text-align: center;
    font-size: 1rem;
}
@media (max-width: 1120px) {
    .allFeatures{
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 760px) {
    .allFeatures{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 520px) {
    .fftt svg{
    height: 85px;
    width: 85px;
}
    .allFeatures{
        grid-template-columns: repeat(1, 1fr);
    }
}