
 @font-face {
  font-family: LGSmartBold;
  src: url("../polices/LGSmart-Bold.eot") /* EOT file for IE */
  }
  @font-face {
  font-family: LGSmartBold;
  src: url("../polices/LGSmart-Bold.ttf") /* TTF file for CSS3 browsers */
  } 
   
  @font-face {
  font-family: Helveticalight;
  src: url("../polices/Helvetica-Light.eot") /* EOT file for IE */
  }
  @font-face {
  font-family: Helveticalight;
  src: url("../polices/Helvetica-Light.ttf") /* TTF file for CSS3 browsers */
  } 
   
  
  @font-face {
  font-family: LGSmartLight;
  src: url("../polices/LGSmart-Light.oet") /* EOT file for IE */
  }
  @font-face {
  font-family: LGSmartLight;
  src: url("../polices/LGSmart-Light.ttf") /* TTF file for CSS3 browsers */
  } 
  
  
   
   
  @font-face {
  font-family: font1;
  src: url("../polices/font1.eot") /* EOT file for IE */
  }
  @font-face {
  font-family: font1;
  src: url("../polices/font1.ttf") /* TTF file for CSS3 browsers */
  } 
  
  @font-face {
  font-family: font2;
  src: url("../polices/font2.eot") /* EOT file for IE */
  }
  @font-face {
  font-family: font2;
  src: url("../polices/font2.ttf") /* TTF file for CSS3 browsers */
  } 
  
  @font-face {
  font-family: font3;
  src: url("../polices/font3.eot") /* EOT file for IE */
  }
  @font-face {
  font-family: font3;
  src: url("../polices/font3.ttf") /* TTF file for CSS3 browsers */
  } 
  
  @font-face {
  font-family: font4;
  src: url("../polices/font4.eot") /* EOT file for IE */
  }
  @font-face {
  font-family: font4;
  src: url("../polices/font4.ttf") /* TTF file for CSS3 browsers */
  } 
  
  
  
  
  
  @font-face {
  font-family: fontawesome;
  src: url("../polices/fontawesome.eot") /* EOT file for IE */
  }
  
  @font-face {
  font-family: fontawesome;
  src: url("../polices/fontawesome.ttf") /* TTF file for CSS3 browsers */
  } 
   
  @font-face {
  font-family: optima-light;
  src: url("../polices/optima.eot") /* EOT file for IE */
  }
  
  @font-face {
  font-family: optima-light;
  src: url("../polices/optima.ttf") /* TTF file for CSS3 browsers */
  } 
  
  @font-face {
  font-family: optima;
  src: url("../polices/optima-bold.eot") /* EOT file for IE */
  }
  
  @font-face {
  font-family: optima;
  src: url("../polices/optima-bold.ttf") /* TTF file for CSS3 browsers */
  } 
   
  @font-face {
  font-family: Raleway;
  src: url("../polices/Raleway-Light.eot") /* EOT file for IE */
  }
  
  @font-face {
  font-family: Raleway;
  src: url("../polices/Raleway-Light.ttf") /* TTF file for CSS3 browsers */
  } 
  
  
  @font-face {
  font-family: Raleway-bold;
  src: url("../polices/Raleway-Bold.eot") /* EOT file for IE */
  }
  
  @font-face {
  font-family: Raleway-bold;
  src: url("../polices/Raleway-Bold.ttf") /* TTF file for CSS3 browsers */
  } 
  
  
  
  @font-face {
  font-family: AGaramondPro;
  src: url("../polices/AGaramondPro.eot") /* EOT file for IE */
  }
  
  @font-face {
  font-family: AGaramondPro;
  src: url("../polices/AGaramondPro.ttf") /* TTF file for CSS3 browsers */
  } 
  
/* html {
  font-family: "Merriweather", serif;
  font-size: 1rem;
  line-height: 1.6rem;
} */
article {
  font-family:'LGSmart-Bold' ;
  padding: 1rem;
  max-width: 50rem;
  margin: 0 auto;
}
.h2 {
  
  font-size: 2rem;
  line-height: 3.5rem;
  font-weight: 900;
  /* text-transform: capitalize; */
}
.h3 {
  text-transform: capitalize;
}
.p {
  text-align: justify;
  hyphens: auto;
}

/* different style for 1st paragraph*/
.p:first-of-type {
  font-size: 1.1rem;
}
/* Drop Cap */
.p:first-of-type:first-letter {
  font-size: 4.2rem;
  font-weight: bold;
  float: left;
  display: inline-block;
  margin-top: 0.5rem;
  padding-right: 0.15rem;
  color: white;
  background-color: #6ab430;
  padding: 1.2rem 0.5rem;
  margin-right: 0.5rem;
}
.p:first-of-type:first-line {
  font-weight: bold;
}



:root {
    --accent-color: #6ab430;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  .main {
    max-width: 950px;
    margin: 0 auto;
  }
  
  .cards {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .cards .cards_item {
    display: flex;
    padding: 1rem;
  }
  @media (min-width: 40rem) {
    .cards .cards_item {
      width: 50%;
    }
  }
  @media (min-width: 56rem) {
    .cards .cards_item {
      width: 33.3333%;
    }
  }
  .cards .cards_item .card {
    background-color: white;
    border-radius: 0.25rem;
    box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    background: repeating-linear-gradient(-25deg, #fff, #fff 1px, #fbfbfb 1px, #fbfbfb 3px);
    border-right: 1px solid #ededed;
    border-bottom: 1px solid #ededed;
  }
  .cards .cards_item .card .card_image {
    height: 67%;
    position: relative;
  }
  .cards .cards_item .card .card_image::after {
    position: absolute;
    height: 75%;
    background: linear-gradient(rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.4));
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
  }
  .cards .cards_item .card .card_image img {
    height: 85%;
    width: 92%;
    display: block;
  }
  .cards .cards_item .card .card_image .price {
    --price-tag-height: 2rem;
    --price-tag-bg: yellow;
    position: absolute;
    height: var(--price-tag-height);
    right: 50%;
    bottom: 0;
    transform: translate(50%, 20px) rotate(2deg);
    background-color: var(--price-tag-bg);
    padding: 0.25rem 0.75rem 0.25rem 0.3em;
    align-items: center;
    display: flex;
    justify-content: center;
    border-radius: 2px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    font-family: "LGSmart-Light";
    font-size: 26px;
    color: rgba(0, 0, 0, 0.8);
    z-index: 1;
  }
  .cards .cards_item .card .card_image .price span {
    font-size: 0.7em;
    margin-bottom: 7px;
  }
  .cards .cards_item .card .card_image .price::before, .cards .cards_item .card .card_image .price::after {
    position: absolute;
    background-color: green;
    background-color: var(--price-tag-bg);
    border-radius: 50%;
    width: calc(var(--price-tag-height) / 2.2);
    height: calc(var(--price-tag-height) / 1.5);
    content: "";
  }
  .cards .cards_item .card .card_image .price::before {
    left: 0;
    transform: translate(-50%, 0px);
  }
  .cards .cards_item .card .card_image .price::after {
    right: 0;
    transform: translate(50%, 0px);
  }
  .cards .cards_item .card .card_image .card_title {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 1.5rem 2rem;
    font-family: 'LGSmart-Bold';
    color: white;
    font-size: 24px;
    width: 75%;
    line-height: 1;
    z-index: 2;
    
  }
  .cards .cards_item .card .card_content {
    padding: 2em 2em 0em;
    font-family: "LGSmart-Light";
    color: #333;
    letter-spacing: 0.2px;
    font-weight: 200;
    font-size: 17px;
    line-height: 1.3;
  }
  .cards .cards_item .card .card_content .card_notes {
    float: right;
    margin: 1em 0 1em 1em;
  }
  .cards .cards_item .card .card_content .card_notes .note {
    font-size: 0.8em;
    font-weight: 400;
    padding: 0.5em;
    background-color: #ccc;
    color: white;
    text-transform: uppercase;
  }
  .cards .cards_item .card .card_content .card_text p {
    margin: 0 0 1em;
  }
  .cards .cards_item .card .card_content .card_text p:not(:last-child) {
    position: relative;
    padding-bottom: 20px;
    border: none;
    border-bottom: medium double #d8d8d8;
  }
  .cards .cards_item .card .card_content .card_text p:first-child::first-letter {
    font-size: 3.5rem;
    margin: 11px 0 -5px 0;
    padding: 0 0.1em 0 0;
    height: 0.7em;
    line-height: 0.55em;
    float: left;
    color: var(--accent-color);
  }
  