@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.two-column-text {
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;
}
.two-column-text .container .grid-x {
  position: relative;
}
.two-column-text .container .grid-x::before {
  content: " ";
  display: none;
  background-color: #EDEDED;
  width: 1px;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media print, screen and (min-width: 1024px) {
  .two-column-text .container .grid-x::before {
    display: block;
  }
}
