.lco_card {
  display: flex;
  flex-direction: column;
  margin: 1rem auto;
  box-shadow: 0 3px 7px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.8%;
  background: #fff;
  line-height: 1.4;
  border-radius: 5px;
  overflow: hidden;
  z-index: 0;
}
.lco_card a {
  color: inherit;
}
.lco_card a:hover {
  color: #5ad67d;
}
.lco_card:hover .lco_photo {
  transform: scale(1.3) rotate(3deg);
}
.lco_card .lco_meta {
  position: relative;
  z-index: 0;
  height: 200px;
}
.lco_card .lco_photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.2s;
}
.lco_card .lco_details,
.lco_card .lco_details ul {
  margin: auto;
  padding: 0;
  list-style: none;
}
.lco_card .lco_details {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100%;
  margin: auto;
  transition: left 0.2s;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px;
  width: 100%;
  font-size: 0.9rem;
}
.lco_card .lco_details li{margin-bottom:5px}
.lco_card .lco_details a {
  -webkit-text-decoration: dotted underline;
          text-decoration: dotted underline;
}
.lco_card .lco_details ul li {
  display: inline-block;
}
.lco_card .lco_details .lco_tags li {
  margin-right: 2px;
}
.lco_card .lco_details .lco_tags li:first-child {
  margin-left: -4px;
}
.lco_card .lco_description {
  padding: 1rem;
  background: #fff;
  position: relative;
  z-index: 1;
}
.lco_card .lco_description h3 a {
  line-height: 1;
  margin: 0;
  font-size: 1.4rem;
}
.lco_card .lco_description h4 {
  font-size: 0.8rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #a2a2a2;
  margin-top: 5px;
}
.lco_card .lco_description .lco_readmore {
  text-align: right;
}
.lco_card .lco_description .lco_readmore a {
  color: #5ad67d;
  display: inline-block;
  position: relative;
}
.lco_card .lco_description .lco_readmore a svg {
  margin-left: -10px;
  opacity: 0;
  vertical-align: middle;
  transition: margin 0.3s, opacity 0.3s;
}
.lco_card .lco_description .lco_readmore a:hover{ text-decoration:none}
.lco_card .lco_description .lco_readmore a:hover svg{
  margin-left: 5px;
  opacity: 1;
}
.lco_card .f_content p {
  position: relative;
  margin: 1rem 0 0;
}
.lco_card .f_content p:first-of-type {
  margin-top: 1.25rem;
}
.lco_card .f_content p:first-of-type:before {
  content: "";
  position: absolute;
  height: 5px;
  background: #5ad67d;
  width: 35px;
  top: -0.75rem;
  border-radius: 3px;
}
.lco_card:hover .lco_details {
  left: 0%;
}
@media (min-width: 640px) {
  .lco_card {
    flex-direction: row;
    max-width: 700px;
  }
  .lco_card .lco_meta {
    flex-basis: 40%;
    height: auto;
  }
  .lco_card .lco_description {
    flex-basis: 60%;
  }
  .lco_card .lco_description:before {
    transform: skewX(-3deg);
    content: "";
    background: #fff;
    width: 30px;
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    z-index: -1;
  }
  .lco_card:nth-child(odd) {
    flex-direction: row-reverse;
  }
  .lco_card:nth-child(odd) .lco_description:before {
    left: inherit;
    right: -10px;
    transform: skew(3deg);
  }
  .lco_card:nth-child(odd) .lco_details {
    padding-left: 25px;
  }
}