.whatwedo {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.whatwedo .item {
    width: 360px;
    margin: 20px 0;
}

.whatwedo .item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.whatwedo .item h2 {
    margin: 10px 0;
    padding-bottom: 10px;
    position: relative;
}

.whatwedo .item h2::after {
    content: "";
    width: 50px;
    height: 4px;
    background-color: #000;
    position: absolute;
    left: 0;
    bottom: 0;
}