.two-col-content .content_container {
  display: flex;
}
.two-col-content .content {
  width: 60%;
}
.two-col-content .description {
  width: 40%;
}

@media only screen and (max-width: 768px) {
  .two-col-content .content_container {
    flex-direction: column;
  }
  .two-col-content .content,
  .two-col-content .description {
    width: 100%;
  }
}
