@charset "UTF-8";
/* CSS Document */

.letters-container{
	width: 100%;
    max-width: 800px;
    margin: 70px auto 30px auto;
    position: relative;
	
}

.data-list .item {
   width: 50%;
   margin-bottom: 30px;
   padding: 0px 15px;
 }
 @media (max-width: 860px) {
   .letters-container h2 img {
     width: 90%;
     max-width: 280px;
   }
   .data-list {
     width: 400px;
     max-width: 100%;
     padding: 0px;
     margin: 0 auto;
   }
   .data-list .item {
     width: 100%;
   }
 }


 .item-content {
   padding: 50px 30px 25px 30px;
   border-radius: 5px;
   overflow: hidden;
   background-color: #f3ede9;
   box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
   position: relative;
 }
 .grid-sizer {
   width: 50%;
 }
 .item-content::after, .item-content::before {
   display: block;
   position: absolute;
   content: '';
   background-size: 100%;
   background-repeat: no-repeat;
 }
 .item-content::after {
	 
	top: 26px;
    left: 30px;
    width: 76px;
    height: 35px;
    content: 'From';
    color: #727272;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
	 
/*
   top: 20px;
   left: 30px;
   width: 76px;
   height: 35px;
   background-image: url("../images/post-card.png");
*/
 }
 .item-content::before {
   top: 20px;
   right: 15px;
   width: 87px;
   height: 100px;
   background-image: url("../images/stamp.png");
 }
 .item-content h3 {
   font-weight: 800;
   font-size: 18px;
   line-height: 120%;
   margin: 0 0 5px 0;
   color: #5e241f;	 
 }
 .item-content h4 {
   font-weight: 700;
   font-size: 14px;
   line-height: 120%;
   margin: 0 0 0 0;
 }
 .item-content .content-body {
   font-size: 16px;
   padding-top: 45px;
   position: relative;
 }
 .item-content .content-body::before {
   position: absolute;
   width: 40%;
   height: 3px;
   background-color: #5e241f;
   content: '';
   left: 0;
   top: 20px;
   border-radius: 10px;
   display: block;
 }
 .item-content .content-body p {
   line-height: 150%;
   display: none;
   margin: 0px 0px 20px 0px;
 }
 .item-content .content-body p:nth-child(1), .item-content .content-body p:nth-child(2) {
   display: block;
 }
 .content-bottom ul {
   margin: 0px -10px;
 }
 .content-bottom li {
   float: left;
   width: 50%;
   padding: 0px 10px;
 }
 .btn-card {
   display: block;
   background-color: #5e241f;
   color: var(--color-white);
   cursor: pointer;
   border: 0;
   border-radius: 5px;
   height: 36px;
   position: relative;
   font-size: 15px;
   font-weight: 700;
 }
 .btn-card:hover {
   background-color: #5e241f;
 }
 .btn-card span {
   display: block;
   line-height: 100%;
   position: absolute;
   white-space: nowrap;
   top: 50%;
   left: 50%;
   transform: translate3d(-50%, -50%, 0);
   padding-left: 25px;
 }
 .btn-card span::before {
   position: absolute;
   left: 0;
   top: 1px;
   content: '';
   background-repeat: no-repeat;
   background-size: 100%;
   width: 17px;
   height: 17px;
   background-image: url("../images/ico-read.svg");
 }
 .btn-card.is-video span {
   padding-left: 23px;
 }
 .btn-card.is-video span::before {
   top: 0px;
   width: 15px;
   height: 15px;
 }
 .btn-card.is-video span::before {
   background-image: url("../images/ico-play.svg");
 }
 /*Share button*/
 .btn-share {
   display: block;
   background-color: #E0E0E0;
   color: var(--color-white);
   border: 0;
   border-radius: 5px;
   height: 36px;
   position: relative;
   font-size: 15px;
   font-weight: 700;
   transition: all 0.2s ease-in-out;
   overflow: hidden;
 }
 .btn-share .is-layer {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: #292929;
   transform: translate3d(0, 0, 0);
   transition: all 0.3s ease-in-out;
   z-index: 2;
   cursor: pointer;
 }
 .btn-share .is-icons {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   padding: 0px 4px;
   z-index: 1;
 }
 .btn-share .is-layer.is-active {
   transform: translate3d(-100%, 0, 0);
 }
 .btn-share .is-icons a {
   display: block;
   width: 28px;
   margin: 4px 0 0 4px;
   padding: 0;
   float: left;
 }
 .btn-share .is-icons a img {
   width: 100%;
 }
 .btn-share .is-icons a.share-close {
   position: absolute;
   top: 8px;
   right: 8px;
   width: 20px;
   margin: 0;
 }
 .btn-share span {
   display: block;
   line-height: 100%;
   position: absolute;
   white-space: nowrap;
   top: 50%;
   left: 50%;
   transform: translate3d(-50%, -50%, 0);
   padding-left: 25px;
 }
 .btn-share span::before {
   position: absolute;
   left: 0;
   top: -1px;
   content: '';
   background-repeat: no-repeat;
   background-size: 100%;
   width: 15px;
   height: 17px;
   background-image: url("../images/ico-share.svg");
 }