/* Order of files */
/* this file is theme */
/* 1 LO_variables import to theme - styles - core */
/* 2 LO_styles include in theme */
/* 3 LO_theme include in core */
/* 4 LO_core attach to LO_master */
 

 
 
/* FONT STYLES */
h1, h1 span {
    font-size: 56px;
}
h2, h2 span {
    font-size: 36px;
}
h3, h3 span {
    font-size: 28px;
}
h4, h4 span {
    font-size: 24px;
}
h5, h5 span {
    font-size: 22px;
}
h6, h6 span {
    font-size: 18px;
}
 
@media (max-width: 950px) {
 .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-menu-depth-1 { float: left;}
}

 /* ============== Video Banner ================= */
 
 .video-container .banner-padding {
     padding: 16% 9%;
 }
 
 @media (max-width: 1020px) {
 .video-container h1 { 
     font-size: 38px;
 }
}

 @media (max-width: 950px) {
 .video-container .banner-padding {
     padding: 8% 10%;
 }
}

@media (max-width: 768px) {
 fieldset.form-columns-3 .hs-form-field {
     width: 100% !important;
 }
 .video-container h1 { 
     font-size: 22px;
 }
}


fieldset.form-columns-1 .hs-form-field {
    width: 98% !important;
}

/* ============== Mobile Menu ================= */
/**
 * Special Note
 *
 * When the menu is open, a class of .mobile-open is applied to the body. You can 
 * use this for custom styling on any element when the menu is in the open position.                     
 */
@media (min-width: 986px){
  a.mobile-trigger, a.child-trigger {
      display: none !important; /* Hide button on Desktop */
  }
}

@media (max-width: 985px){
  /* Menu Reset - Remove styling from desktop version of custom-menu-primary */
  /* Place any additional CSS you want removed from the mobile menu in this reset */
  .custom-menu-primary, .custom-menu-primary *{
    display: block;
    float: none;
    position: static;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    padding: 0px;
    margin: 0px;
    background-image: none;
    background-color: transparent;
    border: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    -moz-box-shadow:    none;
    box-shadow:         none; 
    max-width: none;
    width: 100%;
    height: auto;
    line-height: 1.75em;  
    font-weight: normal;
    text-decoration: none;
    text-indent: 0px;
    text-align: left;
  }

  /* Toggle Button
     ========================================================================== */
  a.mobile-trigger {
      display: inline-block !important; /* Hide button on Desktop */
      cursor: pointer; /* Mouse pointer type on hover */
      position: absolute; /*******************************************/
      top: 0px;          /* Position Button at top right of screen  */
      right: 10px;        /*******************************************/
      width: auto; /* Button width */
      height: auto; /* Button height */      
      padding: 12px 10px;
      z-index: 99999999999; /* Z-index to keep button on top of other layers */
      -webkit-transition: background-color 0.2s linear; /* Button color transition effect */
      font-size: 16px;
      font-weight: normal;
      text-align: left;
      text-transform: uppercase;
      -webkit-border-bottom-right-radius: 6px;
      -webkit-border-bottom-left-radius: 6px;
      -moz-border-radius-bottomright: 6px;
      -moz-border-radius-bottomleft: 6px;
      border-bottom-right-radius: 6px;
      border-bottom-left-radius: 6px;
      -webkit-transition:color .2s ease-in; 
      -moz-transition:color .2s ease-in;
      transition:color .2s ease-in;
      background: #0397d6; /* Background color */
  }
  a.mobile-trigger:hover {
      text-decoration: none; /* Removes link text underline on button */
      color: #BABCBE;
  }
  a.mobile-trigger span{
      display: inline;
  }
  a.mobile-trigger span:before{
      position: absolute;
      content: ''; /* Change the text on the closed toggle button */
  }
  a.mobile-trigger span:after{
      position: relative;
      right: 2px;
      content: ''; /* Change the text on the open toggle button */
      background-color: #fff;
      opacity: 0;
      transition: opacity .4s ease-in-out;
      -moz-transition: opacity .4s ease-in-out;
      -webkit-transition: opacity .4s ease-in-out; 
  }

  /* Change button when menu is open */
  .mobile-open a.mobile-trigger{
      -webkit-transition:background-color 0.2s linear; /* Button color transition effect */
      -moz-transition:background-color 0.2s linear; /* Button color transition effect */
      transition:background-color 0.2s linear; /* Button color transition effect */
      background: transparent; /* Changes button background to be slightly darker than open menu color */  
  }
  .mobile-open a.mobile-trigger span:after{
     opacity: 1; 
  }
  
  /* Toggle Button Icon & Animations
     ========================================================================== */
  a.mobile-trigger i {
      display: inline;
      position: relative;
      top: -5px;
      margin-left: 0;
      -webkit-transition-duration: 0s;
      -webkit-transition-delay: .2s;
      -moz-transition-duration: 0s;
      -moz-transition-delay: .2s;
      transition-duration: 0s;
      transition-delay: .2s;
  }
  a.mobile-trigger  i:before, a.mobile-trigger i:after {
      position: absolute;
      content: '';
  }
  a.mobile-trigger  i, a.mobile-trigger  i:before, a.mobile-trigger  i:after {
      width: 15px; /* Icon line width */
      height: 2px; /* Icon line height */
      background-color: #fff; /* Icon color */
      display: inline-block;
  }
  a.mobile-trigger  i:before {
      margin-top: -6px; /* Position top line */
      -webkit-transition-property: margin, -webkit-transform;
      -webkit-transition-duration: .2s;
      -webkit-transition-delay: .2s, 0;
  }
  a.mobile-trigger  i:after {
      margin-top: 6px; /* Position bottom line */
      -webkit-transition-property: margin, -webkit-transform;
      -webkit-transition-duration: .2s;
      -webkit-transition-delay: .2s, 0;
  }
  .mobile-open a.mobile-trigger i {
      background-color: rgba(0,0,0,0.0);
      -webkit-transition-delay: .2s;
      -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0);
      -moz-box-shadow:    0px 1px 1px rgba(0, 0, 0, 0);
      box-shadow:         0px 1px 1px rgba(0, 0, 0, 0);
  }
  .mobile-open a.mobile-trigger i:before {
      margin-top: 0;
      background-color: #0397d6;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg);
      -webkit-transition-delay: 0, .2s;
      -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0);
      -moz-box-shadow:    0px 1px 1px rgba(0, 0, 0, 0);
      box-shadow:         0px 1px 1px rgba(0, 0, 0, 0);
  }
  .mobile-open a.mobile-trigger i:after {
      margin-top: 0;
      background-color: #0397d6;
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
      -webkit-transition-delay: 0, .2s;
      -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0);
      -moz-box-shadow:    0px 1px 1px rgba(0, 0, 0, 0);
      box-shadow:         0px 1px 1px rgba(0, 0, 0, 0);
  }

  /* Child Toggle Button
     ========================================================================== */
  a.child-trigger {
      display: block !important; /* Hide button on Desktop */
      cursor: pointer; /* Mouse pointer type on hover */
      position: absolute;
      top: 0px;
      right: 0px;
      width: 55px !important; /* Button width */
      min-width: 55px !important;
      height: 45px !important; /* Button height */  
      padding: 0 !important;
      border-left: 1px dotted rgba(255, 255, 255, .20);
  }
  a.child-trigger:hover {
      text-decoration: none;
  }

  /* Child Toggle Button Icon & Animations
     ========================================================================== */
  a.child-trigger span {
      position: relative;
      top: 50%; /* Centers icon inside button */
      margin: 0 auto !important;
      -webkit-transition-duration: .2s;
      -moz-transition-duration: .2s;
      transition-duration: .2s;
  }
  a.child-trigger span:after {
      position: absolute;
      content: '';
  }
  a.child-trigger span, a.child-trigger span:after {
      width: 10px; /* Icon line width */
      height: 1px; /* Icon line height */
      background-color: #fff; /* Icon color */ 
      display: block;
  }
  a.child-trigger span:after {
      -webkit-transform: rotate(-90deg);
       -ms-transform: rotate(-90deg);
      transform: rotate(-90deg);
       -webkit-transition-duration: .2s;
       -moz-transition-duration: .2s;
      transition-duration: .2s;
  }
  a.child-trigger.child-open span:after {
      -webkit-transform: rotate(-180deg);
       -ms-transform: rotate(-180deg);
      transform: rotate(-180deg);
       -webkit-transition-duration: .2s;
       -moz-transition-duration: .2s;
      transition-duration: .2s;
  }
  a.child-trigger.child-open span {
      -webkit-transform: rotate(180deg);
       -ms-transform: rotate(180deg);
      transform: rotate(180deg);
       -webkit-transition-duration: .2s;
       -moz-transition-duration: .2s;
      transition-duration: .2s;
  }

  /* Menu Styles on Mobile Devices
     ========================================================================== */  
  /* Hide menu on mobile */
  .custom-menu-primary.js-enabled .hs-menu-flow-horizontal,
  .custom-menu-primary.js-enabled .hs-menu-children-wrapper{
      display: none;
  }  
  
    .custom-menu-primary.js-enabled {
        min-height: 0px !important;
    }

  /* Make child lists appear below parent items */
  .custom-menu-primary ul.hs-menu-children-wrapper {
      visibility: visible !important;
      opacity: 1 !important;
      position: static !important;
      display: none;
  }

  /* Mobile Menu Styles */
  .custom-menu-primary.js-enabled .hs-menu-flow-horizontal{
      position: absolute; /**************************************************************/
      top: -15px;             /* Positions the menu to drop from the very top of the screen */
      left: 0px;          /**************************************************************/                                              
      width: 100%;   
      -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.65);
      -moz-box-shadow:    0px 5px 5px 0px rgba(0, 0, 0, 0.65);
      box-shadow:         0px 5px 5px 0px rgba(0, 0, 0, 0.65);
      background: transparent;
  }
  .custom-menu-primary .hs-menu-flow-horizontal{
      padding: 85px 0 0 0; /* Padding to add room for close button */
      background-color: ; /* Menu background color set off global mobile-menuColor variable */
      width: 100%; /* Full screen width */
      z-index: 8888;
  }

   /* Level 1 Menu List Styles */
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li{
      position: relative;
   }
  .custom-menu-primary .hs-menu-flow-horizontal > ul > li a{
      font-size: 30px; /* Font size of top level list items */
      line-height: 45px;
      overflow: visible;
  }

  /* Level 1 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-flow-horizontal ul {
      background: #fff;
  }
  .custom-menu-primary .hs-menu-flow-horizontal ul li{}
  .custom-menu-primary .hs-menu-flow-horizontal ul li a{
      color: #0397d6;
      padding: 10px 15px;
      margin: 0;
  }
  .custom-menu-primary .hs-menu-flow-horizontal ul li a:hover{
      color: #0397d6;
      background: none;
  }
  .nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal ul {
      float: none;
  }
  .nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal ul li a, 
  .nav-wrapper.scroll .hs-menu-wrapper.hs-menu-flow-horizontal ul li a, 
  .nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
      color: #fff;
      padding: 0 20px;
      border-top: 0;
  }
  .nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal ul li a:hover, 
  .nav-wrapper.scroll .hs-menu-wrapper.hs-menu-flow-horizontal ul li a:hover, 
  .nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal ul li.hs-item-has-children ul.hs-menu-children-wrapper li a:hover {
      border-top: 0;
  }

  /* Level 2 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-flow-horizontal > ul ul li{
     background-color: rgba(255, 255, 255, .08);
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul ul li a{
      text-indent: 10px; /* Indent Child lists */
      font-size: 20px; /* Font size of child lists */
      color: #0397d6; 
      border-top: 0;
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul ul li a:hover{
      color: #0397d6; 
      border-top: 0;
  }
  .custom-menu-primary .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
      background-color: #0397d6;
      max-width: 100%;
  }

  /* Level 3 and Higher Menu List Styles */
  .custom-menu-primary .hs-menu-flow-horizontal > ul ul ul li a{
      text-indent: 30px; /* Indent Child lists */
  }
  .custom-menu-primary .hs-menu-flow-horizontal > ul ul ul ul li a{
      text-indent: 50px; /* Indent Child lists */
  }
}


/* Blog Stlyes */
.classic-blog.sidebar-blog .blog-listing-wrapper .post-item .post-header h2 a {
    font-size: 30px;
}
.classic-blog.sidebar-blog .blog-listing-wrapper .post-listing .post-item {
    margin: 0;
}
.classic-blog.sidebar-blog .blog-listing-wrapper .post-listing .post-item:nth-child(odd) {
    background: none;
}
.classic-blog .blog-banner {
padding: 8% 15%;
}
.classic-blog .blog-listing-wrapper .post-listing .post-item .hs-featured-image {
	max-width: 80%;
}



/* Header Fix Updates */
.nav-wrapper.header-update .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
  padding: 30px 15px;
}
.nav-wrapper.header-update .hs-menu-wrapper.hs-menu-flow-horizontal ul {
  padding: 0;
}
.nav-wrapper.header-update .logo {
  padding: 10px 0 !important;
}
@media(max-width: 1085px) {
  .nav-wrapper.header-update .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
    padding: 30px 7px;
  }
}

/* Make Header Static at top of Page */
.nav-wrapper {
  position: initial;
}


/* Animated Buttons */
a.raise-cta {
  color: #f7761f;
  transition: 0.25s;
  background: transparent;
}
a.raise-cta:hover,
a.raise-cta:focus {
  box-shadow: 0 0.5em 0.5em -0.4em #f7761f;
  transform: translateY(-0.25em);
  border-color: #f7761f;
  color: #fff;
}

a.fill-up-cta {
  color:#f7761f;
  transition: 0.25s;
  background: transparent;
}
a.fill-up-cta:hover,
a.fill-up-cta:focus {
  box-shadow: inset 0 -3.25em 0 0 #f7761f;
  border-color: #f7761f;
  color: #fff;
}

a.slide-cta {
  color: #f7761f;
  transition: 0.25s;
  background: transparent;
}
a.slide-cta:hover,
a.slide-cta:focus {
  box-shadow: inset 6.5em 0 0 0 #f7761f;
  border-color: #f7761f;
  color: #fff;
}

/*Mar 2019 Header Updates */
@media (max-width: 986px){
.nav-wrapper.scroll .hs-menu-wrapper.hs-menu-flow-horizontal ul li a, .solid-nav .nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal ul li a {
  color: white;
}  
.nav-wrapper.header-update .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {  
  padding: 5px 15px;
}
.nav-wrapper .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
  font-size: 15px;
  }
.mobile-open a.mobile-trigger i:before, .mobile-open a.mobile-trigger i:after {
  background-color: white;  
}
.custom-menu-primary.js-enabled .hs-menu-flow-horizontal {
  top: 28px;
}
}  


/* Card Styles */
.bbs-listing .cm-c1.nested-card.double .project-gallery-tile .project-content {
  height: 452px !important;
}
.bbs-listing .cm-c1.nested-card .project-gallery-tile .project-content {
  opacity: 1;
  background: rgba(0,0,0,0.50);
  transition: .3s ease;
}
.bbs-listing .cm-c1.nested-card .project-gallery-tile .project-content:hover {
  background: rgba(0,0,0,0.70);
}
.bbs-listing .cm-c1.nested-card.double .project-gallery-tile .project-content h3, .bbs-listing .cm-c1.nested-card.double .project-gallery-tile .project-content h3 a {
  text-decoration: none;
  font-size: 28px;
}
.bbs-listing .cm-c1.nested-card.double .project-gallery-tile .project-content h3 a:hover { 
  color: #F7761F;
}

@media
@media(max-width: 767px) {
  .bbs-listing .cm-c1.nested-card.double .project-gallery-tile .project-content {
    height: 450px !important;
  }
}





/* RSS Styles */
.bbs-post-item .rss-overlay {
  height: 225px;
  background: rgba(0,0,0,0.50);
  transition: .3s ease;
}
.bbs-post-item .bbs-post-content {
  padding: 15px 25px;
}
.bbs-post-item .bbs-post-content p, .bbs-post-item .bbs-post-content a, .bbs-post-item .bbs-post-content h3 {
  color: #fff;
}
.bbs-post-item .bbs-post-content h3 a {
  text-decoration: none;
  font-size: 24px;
}
.bbs-post-item .bbs-post-content h3, .bbs-post-item .bbs-post-content h3 a {
  line-height: 1.7rem;
}
.bbs-post-item .bbs-post-content p {
  font-size: 16px;
}
.bbs-post-item .bbs-post-content p.post-author {
  padding: 0;
  font-size: 14px;
  margin-bottom: 0;
}
.bbs-post-item .bbs-post-content a:hover {
  color: #F7761F;
}
.bbs-post-item:hover .rss-overlay {
  background: rgba(0,0,0,0.70);
}
@media(max-width: 1135px) {
  .bbs-post-item .bbs-post-content h3 a, .bbs-post-item .bbs-post-content h3,
  .bbs-listing .cm-c1.nested-card.double .project-gallery-tile .project-content h3, 
  .bbs-listing .cm-c1.nested-card.double .project-gallery-tile .project-content h3 a {
    font-size: 18px;
    line-height: 1.2rem;
  }
  .bbs-listing .cm-c1.nested-card.double .project-gallery-tile .project-content p {
    font-size: 16px;
    line-height: 1.2rem;
  }
}


/* Blog Styles */
.bbs-listing .blog-listing-wrapper .post-listing .post-item {
  width: 28%;
  display: inline-block;
  padding: 15px;
  vertical-align: top;
}
.bbs-listing .blog-listing-wrapper .post-listing .post-item .hs-featured-image-wrapper {
  padding: 0;
  height: 200px;
      background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.bbs-listing .blog-listing-wrapper .post-listing .post-item .post-header {
  padding-top: 15px;
}

.bbs-listing .static-socials {
  margin-top: 10px;
  margin-left: -110px !important;
}
.bbs-listing .sidebar .widget-span {
  margin-bottom: 0;
}
.bbs-listing .sidebar {
  padding: 30px 25px;
}
.bbs-listing .sidebar h4 {
  font-size: 18px;
}
.colorBkg-t1 .inline-subscribe .hs-button.primary.large {
  background: #F7761F;
}

.bbs-listing .blog-post-wrapper h1 {
  margin: 1px 0;
}
.sticky-sidebar {
    position: sticky;
    top: 155px;
}
.bbs-listing .related-post-header {
  padding-bottom: 10px;
}
.bbs-listing input[type="submit"] {
  margin-top: 10px !important;
}
.inline-subscribe .hs-button.primary.large {
  margin: 0 !important;
}
.bbs-listing-filter .hs-menu-wrapper.hs-menu-flow-horizontal>ul li a {
  padding: 5px 20px;
  margin: 0;
}
.bbs-listing-filter .hs-menu-wrapper.hs-menu-flow-horizontal>ul li {
  line-height: 1rem;
  padding: 8px 0 0;
}
.bbs-listing-filter {
  padding: 3px 15px;
}
.bbs-listing-filter div {
  line-height: 1rem;
}
.bbs-listing-filter .hs-search-field__input {
  margin: 10px 0 5px;
}
.bbs-listing .generic-padding {
  padding: 5% 15px;
}
.bbs-listing .blog-post-wrapper h1, .bbs-listing .blog-post-wrapper h1 span {
  line-height: 3.1rem;
  margin-bottom: 10px;
}
.blog .static-socials-custom-share ul {
  padding-left: 0;
}
.bbs-listing .global-sticky-header-offset, .bbs-listing.solid-nav .body-container-wrapper {
  margin-top: 6.5%;
}
.bbs-listing .blog-listing-wrapper .post-listing .post-item .post-header h2 a,
.bbs-listing .blog-listing-wrapper .post-listing .post-item .post-header h2 {
  text-decoration: none;
  line-height: 2.2rem;
  font-size: 28px;
}
@media(max-width: 1750px) {
  .bbs-listing .global-sticky-header-offset, .bbs-listing.solid-nav .body-container-wrapper {
    margin-top: 110px;
  }
}
@media(max-width: 1500px) {
  .bbs-listing .global-sticky-header-offset, .bbs-listing.solid-nav .body-container-wrapper {
    margin-top: 95px;
  }
}
@media(max-width: 1100px) {
  .bbs-listing .global-sticky-header-offset, .bbs-listing.solid-nav .body-container-wrapper {
    margin-top: 89px;
  }
  .bbs-listing .blog-listing-wrapper .post-listing .post-item .hs-featured-image-wrapper {
    height: 200px;
  }
}
@media(max-width: 986px) {
  .bbs-listing .global-sticky-header-offset, .bbs-listing.solid-nav .body-container-wrapper {
    margin-top: 72px;
  }
}
@media(max-width: 950px) {
  .bbs-listing .global-sticky-header-offset, .bbs-listing.solid-nav .body-container-wrapper {
    margin-top: 0;
  }
}
@media(max-width: 767px) {
  
  .bbs-listing .blog-listing-wrapper .post-listing .post-item {
    width: 100%;
    display: block;
    padding: 0;
  }
  .blog .static-socials-custom-share ul li {
        width: unset;
        float: left;
        padding-bottom: 20px;
      padding: 0 5px;
    }
  .sticky-sidebar {
    position: initial;
  }
  .bbs-listing-filter .hs-menu-wrapper.hs-menu-flow-horizontal>ul li {
    float: left;
    display: inline-block;
    width: 30%;
  }
  .bbs-listing .blog-listing-wrapper .post-listing .post-item .hs-featured-image-wrapper {
    height: auto;
  }
  .bbs-listing .blog-post-wrapper h1, .bbs-listing .blog-post-wrapper h1 span {
    font-size: 30px;
    line-height: 2rem;
}

/* RSS Container */
.recent-blog-post-item {
  float: left;
  padding: 5px 0;
}
/* .recent-blog-post-item .rss-item-content {
  padding: 0 5px;
} */




@media(max-width: 767px) {
  .recent-blog-post-item {
    width: 100%;
  }
  .recent-blog-post-item .rss-item-content {
    padding: 15px 0;
  }

}

/* RSS Image */
 .recent-blog-post-item .featured-image {
  height: 75px;
  overflow: hidden;
   width: 34%;
   display: inline-block;
}
.recent-blog-post-item .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media(max-width: 981px) {
 .recent-blog-post-item .featured-image {
   width: 100%;
}
  .recent-blog-post-item .post-item-content {
  width: 100% !important;
  }
  .recent-blog-post-item .featured-image{
    height: 150px;
  }
}

/* Featured Text */
.recent-blog-post-item .featured-text {
  float: left;
}
.recent-blog-post-item .featured-text span {
  background-image: linear-gradient(to right, #238aa5 0%, #74c47f 100%);
  background-color: #e7ebf3;
  border-radius: 25px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  -webkit-font-smoothing: antialiased;
  padding: 4px 12px;
}

@media(max-width: 950px) {
  .recent-blog-post-item .featured-text {
    width: 100%;
  }
}

@media(max-width: 767px) {
  .recent-blog-post-item .featured-text {
    width: unset;
  }
  .recent-blog-post-item .post-title {
    padding-bottom: 20px;
  }
}

/* Date Text */
.recent-blog-post-item .date-and-featured {
  display: inline-block;
  width: 100%;
}
.recent-blog-post-item .date-text {
  float: right;
}
.recent-blog-post-item .date-text span {
  color: rgba(34, 43, 51,0.55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  -webkit-font-smoothing: antialiased;
  text-transform: uppercase;
}

@media(max-width: 950px) {
  .recent-blog-post-item .date-text {
    width: 100%;
    float: none;
  }
}

@media(max-width: 767px) {
  .recent-blog-post-item .date-text {
    width: unset;
    float: right;
  }
}

/* Post Item Content */
.recent-blog-post-item .post-item-content {
/*   padding: 20px; */
  display: inline-block;
  width: 64%;
  vertical-align: top;
}

@media(max-width: 965px) {
  .recent-blog-post-item .post-item-content {
/*     padding: 20px 10px; */
  }
} 

/* Post Title */

.recent-blog-post-item .post-title h4, .recent-blog-post-item .post-title h4 a {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  margin: 0;
  text-decoration: none;
  color: #333;
}
.recent-blog-post-item .post-title h4:hover, .recent-blog-post-item .post-title h4 a:hover {
  text-decoration: underline;
  color: #F7761F;
}

/* Post Link */
.recent-blog-post-item .post-link a {
  color: rgba(34, 43, 51,0.77);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.recent-blog-post-item .post-link a:hover {
  color: #F7761F;
  text-decoration: underline;
}

@media(max-width: 950px) {
  .recent-blog-post-item .post-link a {
    font-size: 11px;
  }
}





