 .fac-home-main {
     max-height: 450px;
     overflow-y: scroll;
 }
 
 .fac-home {
     display: flex;
     flex-direction: column;
     margin: 0rem auto;
     /*   box-shadow: 0 3px 7px -1px rgba(0, 0, 0, 0.1); */
     margin-bottom: 1.6%;
     background: #fff;
     line-height: 1.4;
     font-family: sans-serif;
     border-radius: 2px;
     overflow: hidden;
     z-index: 0;
     margin-bottom: 20px;
     border-bottom: 1px solid var(--background-color-wf);
 }
 
 .fac-home a {
     color: inherit;
 }
 
 .fac-home a:hover {
     /*  color: var(--theme-color); */
 }
 
 .fac-home:hover .photo {
     /*   transform: scale(1.3) rotate(3deg); */
 }
 
 .fac-home .meta {
     position: relative;
     z-index: 0;
     height: 200px;
 }
 
 .fac-home .photo {
     position: absolute;
     top: 0;
     right: 0;
     bottom: 0;
     left: 0;
     background-size: cover;
     background-position: center;
     transition: transform 0.2s;
 }
 
 .fac-home .details,
 .fac-home .details ul {
     margin: auto;
     padding: 0;
     list-style: none;
 }
 
 .fac-home .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;
 }
 
 .fac-home .details ul li {
     display: inline-block;
 }
 
 .fac-home .details .author:before {
     font-family: FontAwesome;
     margin-right: 10px;
     content: "";
 }
 
 .fac-home .details .date:before {
     font-family: FontAwesome;
     margin-right: 10px;
     content: "";
 }
 
 .fac-home .details .tags ul:before {
     font-family: FontAwesome;
     content: "";
     margin-right: 10px;
 }
 
 .fac-home .details .tags li {
     margin-right: 2px;
 }
 
 .fac-home .details .tags li:first-child {
     margin-left: -4px;
 }
 
 .fac-home .description {
     padding: 0rem 1rem 1rem 1rem;
     background: var(--background-color);
     position: relative;
     z-index: 1;
 }
 
 .fac-home .description h1 {
     line-height: 1;
     margin: 0;
     font-size: 1rem;
     color: var(--text-color-light-black);
 }
 
 .fac-home .description h2 {
     font-size: 0.8rem;
     font-weight: 300;
     text-transform: uppercase;
     color: var(--text-color-bg-whitesmoke-div);
     margin-top: 5px;
 }
 
 .fac-home .description .read-more {
     text-align: right;
     display: none;
 }
 
 .fac-home .description .read-more a {
     color: #3b70fc;
     display: inline-block;
     position: relative;
 }
 
 .fac-home .description .read-more a:after {
     content: "";
     font-family: FontAwesome;
     margin-left: -10px;
     opacity: 0;
     vertical-align: middle;
     transition: margin 0.3s, opacity 0.3s;
 }
 
 .fac-home .description .read-more a:hover:after {
     margin-left: 5px;
     opacity: 1;
 }
 
 .fac-home p {
     position: relative;
     margin: 1rem 0 0;
     font-size: .8rem;
 }
 
 .fac-home p:first-of-type {
     margin-top: 1.25rem;
     color: var(--text-color-light-black);
 }
 
 .fac-home p:first-of-type:before {
     content: "";
     position: absolute;
     height: 5px;
     background: var(--theme-color);
     width: 35px;
     top: -0.75rem;
     border-radius: 3px;
 }
 
 .fac-home:hover .details {
     left: 0%;
 }
 
 .know-more-hover {
     text-align: center;
     margin-top: 20px;
 }
 
 .hover-title {
     text-align: center;
     font-size: 1rem;
 }
 
 .know-more-hover>a {
     padding: 1px 10px;
     border-radius: 3px;
     font-size: .8rem;
     background: var(--background-color-wf);
     color: var(--text-color-light-black);
 }
 
 @media (max-width: 640px) {
     .fac-home .description {
         padding: 1rem;
     }
 }
 
 @media (min-width: 640px) {
     .fac-home {
         flex-direction: row;
         max-width: 700px;
     }
     .fac-home .meta {
         flex-basis: 40%;
         height: auto;
     }
     .fac-home .description {
         flex-basis: 60%;
         padding: 1rem;
     }
     .fac-home .description:before {
         transform: skewX(-3deg);
         content: "";
         background: #fff;
         width: 30px;
         position: absolute;
         left: -10px;
         top: 0;
         bottom: 0;
         z-index: -1;
     }
     .fac-home.alt {
         flex-direction: row-reverse;
     }
     .fac-home.alt .description:before {
         left: inherit;
         right: -10px;
         transform: skew(3deg);
     }
     .fac-home.alt .details {
         padding-left: 25px;
     }
 }