.flex {
  display: flex;
}
.blog-row {
align-items: stretch;
}
.blog-row:not(:last-of-type) {
  margin-bottom: 30px;
}
.blog-row .blog-left {
  width: calc(50% - 15px);
  margin-right: 30px;
  display: flex;
}
.blog-row .blog-right {
  width: calc(50% - 15px);
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.blog-row img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blog-right > div p {
  margin-top: 20px;
  margin-bottom: 20px;
}
.blog-right .read-more-link {
  background-color: #aa93d7;
  border-color: #a38ad3;
  transition: 0.5s ease-in-out;
  margin-top: auto;
  width: 148px;
}
.blog-row:hover .read-more-link{
  background-color: #774fc4;
  border-color: #774fc4;
  transition: 0.5s ease-in-out;
}
.blog-row:hover {
  text-decoration: none !important;
}
.blog-row {
  color: #363839 !important;
}
.blog-heading {
  display: grid;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  grid-template-columns: minmax(20px,1fr) auto minmax(20px,1fr);
  grid-gap: 20px;
}
.blog-heading:before {
  content: "";
  width: auto;
  border-top: 2px solid;
  margin-left: 300px;
}

.blog-heading::after {
  content: "";
  width: auto;
  border-top: 2px solid;
  margin-right: 300px;
}
li {
  margin-bottom: 10px;
}
.mb30 {
  margin-bottom: 30px;
}
.checkmarks li {
  list-style: none;
}
.checkmarks li:before {
  content: '✓';
  margin-left: -17px;
  margin-right: 5px;
}
@media only screen and (max-width: 768px) {
  .blog-row {
    flex-direction: column;
  }
  .blog-row .blog-left, .blog-row .blog-right {
    width: 100%;
    margin: 0;
  }
  .blog-row .blog-left {
    margin-bottom: 30px;
  }
}