.text-section {
  margin: 6.25rem 0;
}
.text-section__title {
  text-align: center;
  margin-bottom: 3rem;
}
.text-section__container {
  margin: 0 auto;
  width: 70%;
  display: flex;
}
.text-section__img {
  flex-grow: 1;
  margin-left: 30px;
  position: relative;
}
.text-section__img > img {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 13.75rem;
  left: 50%;
}
@media (max-width: 768px) {
  .text-section {
    margin: 48px 0;
  }
  .text-section__container {
    width: 100%;
  }
  .text-section__img {
    display: none;
  }
}