.what-we-do .items {
    margin-bottom: 120px;
}
.what-we-do-title {
    font-family: 'Oswald';
    font-weight: bold;
    font-size: 40px;
    line-height: 60px;
    color: #434343;
    margin-bottom: 42px;
}
.what-we-do .items .item {
    display: flex;
    border: 1px solid #e0e0e0;
    height: 150px;
    margin-bottom: 20px;
}
.what-we-do .items .item .icon {
    background-color: #fff;
    z-index: 999;
    padding: 0 70px;
    border-right: 1px solid #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 202px;
}
.what-we-do .items .item .text {
    background-color: #fff;
    z-index: 999;
    padding: 0 70px;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
@media (max-width: 640px) {
    .what-we-do .items {
        flex-direction: column;
    }
    .what-we-do .items .item {
        flex-direction: column;
    }
    .what-we-do .item {
        height: auto!important;
    }
}