.services-menu {

}
.services-menu .item {
    max-width: 760px;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
}
.services-menu .grid {
    display: flex;
    justify-content:space-between;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgb(247, 247, 247);
    border: 1px solid rgb(229, 229, 229);
    border-radius: 15px;
    margin-bottom: 20px;
}
.services-menu .title {
    margin-bottom: 20px;
}
.services-menu .title h2 {
    font-size: 21px;
    font-weight:700;
    color: #000;
}
.services-menu .text {
    margin-right: 5%;
    color: #000;
}
.services-menu .text a {
    color: #000;
}
.services-menu .image {
    width:200px;
}
@media (max-width: 720px) {
    .services-menu .grid {
        flex-direction: column-reverse;
    }
    .services-menu .image {
        margin:0 auto 20px
    }
    .services-menu img {
        max-width: 140px;
        max-height: 140px;
    }
}