.twosections_container {
}

.twosections_column_container {
  display: flex;
  flex-direction: row; 
}

.twosections_column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  padding-right: 2rem;
}

.twosections_column .btn > a {
   color: #16e5a3;
}
.twosections_column .btn--outline {
   border-color: #16e5a3;
   color: #16e5a3;
}
.twosections_column .btn--fill,
.twosections_column .btn--outline:hover {
  background: #16e5a3;
  color: #000000;
}
.twosections_column .btn--outline:hover > a {
   color: #000000;
  text-decoration: none;
}
.twosections_column > :focus-visible:not(:hover):not(:active) {
  box-shadow: 0 0 0 3px rgba(22, 229, 163, .15);
}

.twosections_column:not(:first-of-type) { 
  padding-left: 2rem;
}

.twosections_vertical_line_left {
  height: 1.5px;
  width: 48%;
  background-color: black;
  position: absolute;
  top: 10px;
  left: 0;
}
.twosections_vertical_line_right {
  height: 1.5px;
  width: 48%;
  background-color: black;
  position: absolute;
  top: 10px;
  right: 0;
}

@media (max-width: 768px) {
  .twosections_column_container {
    flex-direction: column;
  }

  .twosections_column {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  .twosections_column:not(:first-of-type) {
    padding-top: 65px;
    padding-left: 0;
}