.services {
  background-color: #f1f1f2;
}
.services .content {
  width: 90%;
  max-width: 1024px;
  margin: 0 auto;
}
.services .content .item {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.services .content .item > div {
  width: 50%;
  box-sizing: border-box;
}
@media all and (max-width: 640px) {
  .services .content .item > div {
    width: 100%;
  }
}
.services .content .item .image img {
  width: 100%;
}
.services .content .item .text {
  padding: 32px;
}
.services .content .item:nth-child(even) .image {
  order: 2;
}
@media all and (max-width: 640px) {
  .services .content .item:nth-child(even) .image {
    order: 0;
  }
}
