.grid-container {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(auto-fit, minmax(350px, auto));
    gap: 60px;
}

.grid-item {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    text-align: left;
    gap: 10px;
}

.grid-item .area-item-circle {
    height: 80px;
    width: 80px;
    margin: 15px 0;
}

.grid-item .why-us-item-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    gap: 10px;

}

.grid-item .why-us-item-text {
    margin: 0 15px;
}

.grid-item .why-us-item-text h3 {
    margin: 0;
    color: #fff;
}

.why-us-wrapper h1 {
    color: white;
}

.grid-item .area-bg {
    width: 60px;
    height: 60px;
    padding: 10px;
    background-color: #E7E7E8;
}

.grid-item .area-bg i {
    font-size: 25px;
    color: #000;
}

h1#reviews-h1 {
    max-width: 1400px;
    margin: 0;
    margin-bottom: 30px;
    color: #E7E7E8;
}

@media only screen and (min-width: 1400px) {
    section .wrapper .why-us-wrapper {
        max-width: 1400px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .grid-container {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
        margin-bottom: 50px;
    }

    .grid-item {
        flex-direction: column;
        text-align: center;
    }
}