.ww-why-us-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    padding-top: 2rem;
}

.ww-why-us-card {
    display: flex;
    flex-wrap: wrap;
}

.ww-why-us-cards .ww-why-us-card:last-child p {
    margin-bottom: 0;
}

.ww-why-us-card__img-wrap {
    width: 45px;
    height: 45px;
    flex: 0 0 auto;
}

.ww-why-us-card__content-wrap {
    flex: 0 0 auto;
    width: calc(100% - 45px);
    padding-left: 10px;
}

.ww-why-us-card__content-wrap h5 {
    font-size: 18px;
}

.ww-why-us__right-img {
    height: 100%;
    padding-top: 2rem;
}

.ww-why-us__right-img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

@media screen and (min-width:768px) {
    .ww-why-us-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width:1200px) {
    .ww-why-us__right-img {
        margin-top: 0;
        padding-left: 2rem;
    }
    
}