.column {
  flex-direction: column;
}

.row {
  display: flex;
  flex-direction: row;
}

.left-align {
  text-align: left !important;
}

.blog,
.speaking {
  max-width: 50%;
}

.blog .margin-top-fix {
  margin-top: 0;
}

.blog .li-margin {
  margin-top: 16px;
}

.flex {
  display: flex;
}

.jc-space-between {
  justify-content: space-between;
}

.jc-center {
  justify-content: center;
}

@media only screen and (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .blog,
  .speaking {
    max-width: unset;
  }
}