.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.features-grid img {
    width: 100%;
    height: 100%;
}
.features-grid .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;

}

.features-grid .feature-item .icon-warp {
    width: 100%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.features-grid .feature-item h2 {
        font-family: 'Overused Grotesk';
    font-weight: 500;
    font-size: 22px;
    margin: unset;
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.25;
    
}

.features-grid .feature-item p {
    font-family: 'Overused Grotesk';
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 1px;
    text-align: center;
    margin: unset;
    color: #302B38;
}

.mobile-flex-leyot {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 1450px) {

}

@media (max-width: 990px) {

.features-grid .feature-item {
    width: 100%;
}
.features-grid .feature-item {
    align-items: start;
}

.mobile-flex-leyot {
    flex-direction: row;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 10px;
}

.features-grid .feature-item .icon-warp {
    margin: unset;
    width: 55px;
    height: 55px;
    flex: 0 0 auto;
}

.features-grid .feature-item h2 {
    margin-bottom: 0;
    font-size: 20px;
    text-align: left;
    line-height: 1.5;
    word-break: break-word;
    white-space: normal;
    max-width: 80%;
}

.features-grid .feature-item p {
    font-size: 16px;
    text-align: left;
}

.features-grid .feature-item p br {
    display: none;
}
}