/* === BASE HEADING === */ 

h1 {
    position: relative;
    padding: 0;
    margin: 0;
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    font-size: 40px;
    color: #080808;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
  }
  
  h1 span {
    display: block;
    font-size: 0.5em;
    line-height: 1.3;
  }
  h1 em {
    font-style: normal;
    font-weight: 600;
  }
  
 
  /* STYLE 6
     ----------------------------- */
  .six h1 {
    text-align: center;
    color:#222; font-size:30px; font-weight:400;
    text-transform: uppercase;
    word-spacing: 1px; letter-spacing:2px; color:#c50000;
  }
  .six h1 span {
    line-height:2em; padding-bottom:15px;
    text-transform: none;
    font-size:.7em;
    font-weight: normal;
    font-style: italic; font-family: "Playfair Display","Bookman",serif;
    color:#999; letter-spacing:-0.005em; word-spacing:1px;
    letter-spacing:none;
  }
  .six h1:after, .six h1:before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 4px;
    content: "";
    right: 45px; 
    margin:auto;
    background-color: #ccc;
  }
  .six h1:before { 
  background-color:#d78b8b;
    left:45px; width:90px;
  }

  /* Style 7
   ----------------------------- */
.seven h1 {
    text-align: center;
        font-size:30px; font-weight:300; color:#222; letter-spacing:1px;
        text-transform: uppercase;
    
        display: grid;
        grid-template-columns: 1fr max-content 1fr;
        grid-template-rows: 27px 0;
        grid-gap: 20px;
        align-items: center;
    }
    
    .seven h1:after,.seven h1:before {
        content: " ";
        display: block;
        border-bottom: 1px solid #c50000;
        border-top: 1px solid #c50000;
        height: 5px;
      background-color:#f8f8f8;
    }
  
    .twelve h1 {
        font-size:26px; font-weight:700;  letter-spacing:1px; text-transform:uppercase; width:160px; text-align:center; margin:auto; white-space:nowrap; padding-bottom:13px;
      }
      .twelve h1:before {
          background-color: #c50000;
          content: '';
          display: block;
          height: 3px;
          width: 75px;
          margin-bottom: 5px;
      }
      .twelve h1:after {
          background-color: #c50000;
          content: '';
          display: block;
        position:absolute; right:0; bottom:0;
          height: 3px;
          width: 75px;
          margin-bottom: 0.25em;
      }
  

      a.grid_item {
        display: block;
        margin-bottom: 30px;
      }
      a.grid_item .info {
        position: absolute;
        width: 100%;
        z-index: 9;
        display: block;
        padding: 25px 25px 10px 25px;
        color: #fff;
        left: 0;
        bottom: 0;
        background: transparent;
        background: -webkit-linear-gradient(to bottom, transparent, #badcff);
        background: linear-gradient(to bottom, transparent, #badcff);
        box-sizing: border-box;
      }
      a.grid_item .info small {
        text-transform: uppercase;
        letter-spacing: 2px;
        display: inline-block;
        margin-bottom: 5px;
        font-weight: 500;
      }
      a.grid_item .info small i {
        font-size: 18px;
        font-size: 1.125rem;
        margin-right: 10px;
      }
      a.grid_item .info h3 {
        color: #fff;
        font-size: 21px;
        font-size: 1.3125rem;
      }
      a.grid_item .info p {
        color: #fff;
        margin-bottom: 0;
        font-size: 15px;
        font-size: 0.9375rem;
      }
      a.grid_item figure {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 100%;
      }
      @media (max-width: 767px) {
        a.grid_item figure {
          height: 200px !important;
        }
      }
      a.grid_item figure img {
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        opacity: 0;
      }
      a.grid_item:hover figure img {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
      }
      
      .animated a.grid_item .info {
        animation: color 0.7s ease-in-out;
        animation-delay: 0.7s;
        -webkit-animation-delay: 0.7s;
        -moz-animation-delay: 0.7s;
        opacity: 0;
        animation-fill-mode: forwards;
        -webkit-animation-fill-mode: forwards;
        -moz-animation-fill-mode: forwards;
      }
      
      .animated a.grid_item figure img {
        animation: color 0.5s ease-in-out;
        animation-delay: 0.5s;
        -webkit-animation-delay: 0.5s;
        -moz-animation-delay: 0.5s;
        animation-fill-mode: forwards;
        -webkit-animation-fill-mode: forwards;
        -moz-animation-fill-mode: forwards;
        opacity: 0;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        -ms-backface-visibility: hidden;
        -o-backface-visibility: hidden;
        backface-visibility: hidden;
      }