   .blog-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 1.8rem;
    -webkit-box-shadow: 0px 5px 7px 1px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 5px 7px 1px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.6%;
    background: #fff;
    line-height: 1.4;
    font-family: sans-serif;
    border-radius: 5px;
    overflow: hidden;
    z-index: 0;
  }
  
  .blog-card:hover {
    transform: scale(1.01,1.01);
    transition-duration: 250ms;
    transition-timing-function: ease-out;

  }

  .blog-card:first-child{
    margin-top: 3.0rem;
  }

  
  .blog-card a {
    color: inherit;
  }

  
  .blog-card .meta {
    position: relative;
    z-index: 0;
    height: 200px;
  }
  
  .blog-card .photo {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
  }
  
  
  .blog-card .description {
    padding: 2em 2em 2.5em 2em;
    background: #fff;
    position: relative;
    z-index: 1;
  }
  
  .blog-card .description h1,
  .blog-card .description h2 {
    font-weight: normal;
  }
  
  .blog-card .description h1 {
    color: #474747;
    line-height: 1;
    margin: 0;
    font-size: 1.7rem;
    font-weight: bold;
  }
  
  .blog-card .description h2 {
    font-size: 1.0rem;
    font-weight: 300;
    text-transform: uppercase;
    color: #a2a2a2;
    margin-top: 6px;
  }
  
  .blog-card p {
    position: relative;
    margin: 1rem 0 0;
  }
  
  .blog-card p:first-of-type {
    margin-top: 1.25rem;
  }
  
  .blog-card p:first-of-type:before {
    content: "";
    position: absolute;
    height: 5px;
    background: linear-gradient(270deg, #faa600 60%,#e6003c 40%) 0 0 no-repeat padding-box;
    width: 55px;
    top: -0.75rem;
    border-radius: 3px;
  }
  

  @media (min-width: 640px) {
    .blog-card {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      max-width: 98%;
    }
    .blog-card .meta {
      -ms-flex-preferred-size: 40%;
          flex-basis: 40%;
      height: auto;
    }
    .blog-card .description {
      -ms-flex-preferred-size: 60%;
          flex-basis: 60%;
    }
    .blog-card .description:before {
      -webkit-transform: skewX(-3deg);
              transform: skewX(-3deg);
      content: "";
      background: #fff;
      width: 30px;
      position: absolute;
      left: -10px;
      top: 0;
      bottom: 0;
      z-index: -1;
    }
    .blog-card.alt {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse;
    }
    .blog-card.alt .description:before {
      left: inherit;
      right: -10px;
      -webkit-transform: skew(3deg);
              transform: skew(3deg);
    }
  }

  @media screen and (max-width:350px) {
    .ablock h4{
      font-size: 53px !important;
    }
  }