/*!
Theme Name: FusionOne
Author: Robert Humm
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: fusionone
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/



@font-face {
  font-family: 'Impact';
  src: url('assets/fonts/Impact.eot');
  src: url('assets/fonts/Impact.eot?#iefix') format('embedded-opentype'),
      url('assets/fonts/Impact.woff2') format('woff2'),
      url('assets/fonts/Impact.woff') format('woff'),
      url('assets/fonts/Impact.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
:root {
  --black-color:#000000;
  --grey-color:#f2f2f2;
  --green-color:#5ceb3c;
  --blue-color:#004aad;
  --yellow-color:#ffde18;
  --orange-color:#faa722;
  --white-color:#FFFFFF;
  --background-black:#000000;
  --background-grey:#f2f2f2;
  --background-green:#5ceb3c;
  --background-yellow:#ffde18;
  --background-orange:#faa722;
  --background-blue:#004aad;
  --background-white:#FFFFFF;
  --font-family-gesta: "Source Sans 3", sans-serif;
}
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/

a {
  color:var(--blue-color);
  text-decoration:none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover, a:focus, a:active {
  color: var(--black-color);
  text-decoration:none;
}

a:focus {
  outline:none;
}

a:hover, a:active {
  outline: 0;
}
p{
  margin:0 0 15px;
}
input,
textarea,
select,
button{
   font-family: "Source Sans 3", sans-serif;
}
input:focus,
textarea:focus,
select:focus,
button:focus{
  outline:none;
  box-shadow:none;
}
img{
  max-width:100%;
  height:auto;
}
h1, h2, h3, h4, h5, h6{
  font-family: 'Impact';
  margin:0;
  font-weight:400;
}

body {
  font-family: "Source Sans 3", sans-serif;
  font-style: normal;
  color:var(--black-color);
  font-size:17px;
  line-height:1.6;
  font-weight:400;
  margin:0;
}
body .home-site-content>:where(:not(.alignwide)),
body .site-main>:where(:not(.alignwide)) {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto; 
  padding-left: 15px;
  padding-right: 15px;
}
.container {
  max-width:1320px;
  width:auto;
  margin:0 auto;
  padding-right:15px;
  padding-left:15px;
}
/*--------------------------------------------------------------
# Site Header
--------------------------------------------------------------*/
.header-top-banner{
  background:var(--background-black);
  text-align:center;
}
.header-top-banner img{
  width:auto;
  height:auto;
  object-fit:cover;
  display:block;
  margin:0 auto;
}
.header-main{
  background:var(--background-green);
}
/*--------------------------------------------------------------
# Nav Menu
--------------------------------------------------------------*/
nav.main-menu{
  /*  display:none;*/
  text-align:center;
}
nav.main-menu ul ul {
  display: none;
}
nav.main-menu ul li:hover > ul {
  display: block;
}
nav.main-menu ul {
  list-style: none;
  position: relative;
  margin:0;
  padding:0;
}
nav.main-menu ul li {
  display: inline-block;
  padding:0 20px;
  position:relative;
  border-left:2px solid #46c52a;
}
nav.main-menu ul li:last-of-type{
  border-right:2px solid #46c52a;
}
nav.main-menu ul li:before,
nav.main-menu ul li:last-of-type:after{
  content:'';
  position:absolute;
  left:0;
  top:0;
  background:#91ff78;
  width:2px;
  height:100%;
}
nav.main-menu ul li:first-of-type:before{
  display:none;
}
nav.main-menu ul li:first-of-type{
  border:none;
}
nav.main-menu ul li:last-of-type{
  border-right:0;
}
nav.main-menu ul li:last-of-type:after{
  right:-4px;
  left:inherit;
  display:none;
}
nav.main-menu ul li a {
  display: block;
  padding:24px 2px;
  color:var(--white-color);
  font-size:30px;
  line-height:100%;
  font-weight:normal;
  text-decoration: none;
  position:relative;
  letter-spacing:0.50px;
  text-transform:uppercase;
  text-shadow:4px 4px 0 rgba(0, 0, 0, 0.30);
  font-family: 'Impact';
}
/*nav.main-menu ul ul li a:after,
nav.main-menu ul ul li:before,
nav.main-menu ul li:last-of-type:after{
  display:none;
}*/
nav.main-menu ul ul li:first-of-type:before{
  display:none;
}
nav.main-menu ul li a:hover,
nav.main-menu ul li.current-menu-item a,
nav.main-menu ul li.active a{
  color:var(--grey-color);
}
nav.main-menu ul ul {
  background:var(--background-green);
  border-radius: 0px;
  padding: 0;
  position: absolute;
  top:100%;
  width:220px;
  z-index:4;
}
nav.main-menu ul ul li {
  display: block;
  position: relative;
  padding:0;
  float:none;
  border-left:0;
  border-bottom:2px solid #46c52a;
}
nav.main-menu ul ul li:last-of-type{
  border-right:0;
  border-bottom:0;
}
nav.main-menu ul ul li:before,
nav.main-menu ul ul li:last-of-type:after{
  content:'';
  position:absolute;
  left:0;
  bottom:0;
  background:#91ff78;
  width:100%;
  height:2px;
}
nav.main-menu ul ul li:first-of-type:after{
  background:transparent;
}
nav.main-menu ul ul li a {
  padding:18px 15px;
  color:var(--white-color) !important;
  font-size:20px;
  text-align: left;
  border-bottom:0;
  font-weight:normal;
}
nav.main-menu ul ul li:hover a,
nav.main-menu ul ul li.current-menu-item a{
  color:var(--white-color) !important;
  background:#46c52a;
  border-bottom:0;
  -webkit-transition: all 0.8s ease-in-out;
  -moz-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}   
nav.main-menu ul ul ul {
  position: absolute;
  left: 100%;
  top:0;
  min-width:220px;
  background:#46c52a
}
nav.main-menu ul ul ul li{
  border-bottom:2px solid #5cea3c;
  position:relative;
}
nav.main-menu ul ul ul li a{
  color:var(--white-color);
}
nav.main-menu ul ul ul li:hover a,
nav.main-menu ul ul ul li.current-menu-item a{
  color:var(--white-color);
  background:var(--background-green);
}
nav.main-menu ul ul ul li:before, 
nav.main-menu ul ul ul li:last-of-type:after{
  display:none;
}
/*--------------------------------------------------------------
   # Home Slider
--------------------------------------------------------------*/
.hm-banner-left,
.hm-banner-right{
  background:#1b1e41 url(assets/images/blue-bg.webp) no-repeat;
  background-size:cover;
  width:8%;
  height:840px
}
.hm-banner-main{
  width:84%;
  background:var(--background-white);
  /*display: flex;
  justify-content: center;
  align-items: center;*/
  margin-left:auto;
  margin-right:auto;
}
.home-banner-wrap{
  display:flex;
}
.slider-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.hm-banner-main .slick-slider .slick-next, 
.hm-banner-main .slick-slider .slick-prev {
  font-size: 32px;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width:105px;
  height:87px;
  border-radius: 100%;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0,-50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: #000;
  border: none;
  outline: 0;
  background: 0 0;
  z-index: 2;
  margin-top: 0;
  text-indent: -9999px;
}
.hm-banner-main .slick-slider .slick-prev {
  left:-90px;
  background: url(assets/images/left-slide-arrow.webp) center  no-repeat;
  background-size:105px;
}
.hm-banner-main .slick-slider .slick-next {
  right: -90px;
  background: url(assets/images/right-slide-arrow.webp) center  no-repeat;
  background-size: 105px;
}

/*--------------------------------------------------------------
   # Home Content
--------------------------------------------------------------*/
.blog-features-section{
  padding:0 0 30px;
}
.blog-feed{
  position:relative;
  margin-bottom:100px;
}
.blog-feed:before{
  content:'';
  position:absolute;
  left:0;
  top:20px;
  background:var(--background-grey);
  width:100%;
  height:90%;
  z-index:-1;
}
.blog-feed-main{
  display:flex;
  gap:75px;
  justify-content:space-between;
  align-items:center;
  max-width:1200px;
  margin:0 auto;
}
.blog-feed-main .post-thumbnail{
  width:46%;
  position:relative;
}
.blog-feed-main .post-content {
  width:54%;
}
.blog-feed-main .post-thumbnail img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:10px;
  object-position: top;
  min-height:400px;
}
.blog-feed-main .post-cat-wrap{
  display:flex;
  align-items:center;
  gap:32px;
  margin-bottom:22px;
}
.blog-feed-main .post-cat-wrap .category a{
  background:var(--background-blue);
  font-size:15px;
  font-weight:600;
  letter-spacing:0.25px;
  line-height:100%;
  color:var(--white-color);
  text-transform:uppercase;
  padding:10px 25px;
  border-radius:50px;
  display:inline-block;
}
.blog-feed-main .post-cat-wrap .date{
  font-size:16px;
  font-weight:400;
  color:rgba(0, 0, 0, 0.70);
  text-transform:uppercase;
  letter-spacing:0.25px;
  line-height:100%;
}
.blog-feed-main .post-content .post-title{
  font-family: 'Impact';
  letter-spacing:1px;
  color:var(--black-color);
  font-size:42px;
  font-weight:normal;
  text-transform:uppercase;
  line-height:1.1;
  margin-bottom:15px;
}
.blog-feed-main .post-content .post-title a{
  color:var(--black-color);
}
.blog-feed-main .post-content .post-title a:hover{
  color:var(--blue-color);
}
.blog-feed-main .post-content .post-text{
  color:rgba(0, 0, 0, 0.70);
  font-size:20px;
  font-weight:400;
  line-height:1.5;
}
.blog-feed-main .post-content .post-readmore a,
a.entry-button{
  color:var(--blue-color);
  font-size:18px;
  font-weight:700;
  line-height:100%;
  margin-top:32px;
  display:inline-block;
  position:relative;
  letter-spacing:1px;
  text-transform:uppercase;
}
.blog-feed-main .post-content .post-readmore a:after,
a.entry-button:after{
  content: '';
  position: absolute;
  right: -42px;
  top: -11px;
  background: url(assets/images/right-arrow-blue.svg) no-repeat;
  width: 38px;
  height: 38px;
  background-size: 38px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.blog-feed-main .post-content .post-readmore a:hover:after,
a.entry-button:hover:after{
  right: -48px;
}
.post-content.cat-building-alabama .post-cat-wrap .category a,
.post-content.cat-truitt-news-radio .post-cat-wrap .category a,
.post-content.cat-congrats .post-cat-wrap .category a,
.post-content.cat-uncategorized .post-cat-wrap .category a{
  background:var(--background-blue);
}
.post-content.cat-building-alabama .post-readmore a,
.post-content.cat-truitt-news-radio .post-readmore a,
.post-content.cat-congrats .post-readmore a,
.post-content.cat-uncategorized .post-readmore a{
  color:var(--blue-color);
}
.post-content.cat-building-alabama .post-readmore a:after,
.post-content.cat-truitt-news-radio .post-readmore a:after,
.post-content.cat-congrats .post-readmore a:after,
.post-content.cat-uncategorized .post-readmore a:after{
  background: url(assets/images/right-arrow-blue.svg) no-repeat;
  background-size: 38px;
}
.post-content.cat-out-and-about .post-cat-wrap .category a,
.post-content.cat-events .post-cat-wrap .category a,
.post-content.cat-getting-together .post-cat-wrap .category a,
.post-content.cat-who-knew .post-cat-wrap .category a{
  background:var(--background-yellow);
  color:var(--black-color);
}
.post-content.cat-out-and-about .post-readmore a,
.post-content.cat-events .post-readmore a,
.post-content.cat-getting-together .post-readmore a,
.post-content.cat-who-knew .post-readmore a{
  color:var(--yellow-color);
}
.post-content.cat-out-and-about .post-readmore a:after,
.post-content.cat-events .post-readmore a:after,
.post-content.cat-getting-together .post-readmore a:after,
.post-content.cat-who-knew .post-readmore a:after{
  background: url(assets/images/right-arrow-yellow.svg) no-repeat;
  background-size: 38px;
}
.post-content.cat-construction-report .post-cat-wrap .category a,
.post-content.cat-insurance .post-cat-wrap .category a,
.post-content.cat-life .post-cat-wrap .category a{
  background:var(--background-orange);
  color:var(--white-color);
}
.post-content.cat-construction-report .post-readmore a,
.post-content.cat-insurance .post-readmore a,
.post-content.cat-life .post-readmore a{
  color:var(--orange-color);
}
.post-content.cat-construction-report .post-readmore a:after,
.post-content.cat-insurance .post-readmore a:after,
.post-content.cat-life .post-readmore a:after{
  background: url(assets/images/right-arrow-orange.svg) no-repeat;
  background-size: 38px;
}
.post-content.cat-truitt-news-blast .post-cat-wrap .category a,
.post-content.cat-cities-towns .post-cat-wrap .category a,
.post-content.cat-tuesdays-with-tony .post-cat-wrap .category a{
  background:var(--background-green);
  color:var(--black-color);
}
.post-content.cat-truitt-news-blast .post-readmore a,
.post-content.cat-cities-towns .post-readmore a,
.post-content.cat-tuesdays-with-tony .post-readmore a{
  color:var(--green-color);
}
.post-content.cat-truitt-news-blast .post-readmore a:after,
.post-content.cat-cities-towns .post-readmore a:after,
.post-content.cat-tuesdays-with-tony .post-readmore a:after{
  background: url(assets/images/right-arrow-green.svg) no-repeat;
  background-size: 38px;
}
/*.blog-feed:nth-child(3) .blog-feed-main .post-cat-wrap .category{
  background: var(--background-yellow);
  color:var(--black-color);
}
.blog-feed:nth-child(3) .blog-feed-main .post-content .post-readmore a{
  color:var(--yellow-color);
}
.blog-feed:nth-child(3) .blog-feed-main .post-content .post-readmore a:after{
  background: url(assets/images/right-arrow-yellow.svg) no-repeat;
  background-size: 38px;
}
.blog-feed:nth-child(4) .blog-feed-main .post-cat-wrap .category{
  background: var(--background-orange);
  color:var(--white-color);
}
.blog-feed:nth-child(4) .blog-feed-main .post-content .post-readmore a{
  color:var(--orange-color);
}
.blog-feed:nth-child(4) .blog-feed-main .post-content .post-readmore a:after{
  background: url(assets/images/right-arrow-orange.svg) no-repeat;
  background-size: 38px;
}
.blog-feed:nth-child(5) .blog-feed-main .post-cat-wrap .category{
  background: var(--background-green);
  color:var(--black-color);
}
.blog-feed:nth-child(5) .blog-feed-main .post-content .post-readmore a{
  color:var(--green-color);
}
.blog-feed:nth-child(5) .blog-feed-main .post-content .post-readmore a:after{
  background: url(assets/images/right-arrow-green.svg) no-repeat;
  background-size: 38px;
}*/
/*.blog-feed:nth-child(3) .blog-feed-main .post-cat-wrap .category a,
.blog-feed:nth-child(5) .blog-feed-main .post-cat-wrap .category a{
  color:var(--black-color);
}*/
.more-stories-btn{
  text-align:center;
}
.more-stories-btn a{
  background: var(--background-green);
  color: var(--black-color);
  font-size:44px;
  text-transform: uppercase;
  line-height: 100%;
  letter-spacing: 2px;
  padding: 36px 130px 36px 50px;
  font-family: 'Impact';
  font-weight: normal;
  position: relative;
  border-radius: 22px;
  box-shadow: 14px 14px 0 #e5e5e5;
  margin-top: 0;
  display: inline-block;
}
.more-stories-btn a:after{
  content: '';
  position: absolute;
  right:34px;
  top:50%;
  background: url(assets/images/right-arrow-black.svg) no-repeat;
  width: 84px;
  height:84px;
  background-size: 84px;
  margin-top:-42px;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.more-stories-btn a:hover{
  background:var(--background-yellow);
}
.more-stories-btn a:hover:after{
  right:20px;
}
.reports-main{
  background:#e5e5e5;
}
.reports-main{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:15px;
}
.report-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.reports-title{
  text-align: center;
  font-size: 55px;
  font-weight:normal;
  line-height: 100%;
  margin-bottom: 50px;
  text-transform: uppercase;
  color:var(--orange-color);
}
.orange-main-heading{
  color: #f6941d;
  font-size: 54px;
  font-weight:normal;
  text-transform: uppercase;
  line-height: 100%;
  display: block;
  position: relative;
  margin:75px auto;
  text-align: center;
  max-width: 1320px;
  padding: 0 15px;
}
.orange-main-heading:before{
  content: '';
  position: absolute;
  left: 15px;
  right: 15px;
  top: 45px;
  background: #f6941d;
  width: 97.8%;
  height: 1px;
  z-index: -2;
}
.orange-main-heading span{
  position:relative;
  display:inline-block;
  padding:27px 60px;
  background:var(--background-white);
}
.orange-main-heading span:before{
  content:'';
  position:absolute;
  left:0;
  top: -10px;
  display:inline-block;
  width:100%;
  height:100%;
  border:1px solid #f6941d;
}
.orange-main-heading span:after{
  content:'';
  position:absolute;
  left:-18px;
  bottom: -12px;
  display:inline-block;
  width:100%;
  height:100%;
  border:1px solid #f6941d;
}
.reports-section{
  padding-bottom:30px;
}
.radio-sponsors-main{
  display:flex;
  justify-content: center;
  align-items: center;
  gap:85px;
  max-width:1200px;
  text-align:center;
  margin:0 auto;
}
.radio-sponsors-section{
  padding-bottom:75px;
}
.sponsor-logo{
  text-align:center;
  margin:0 15px;
}
.sponsor-logo img{
  margin:0 auto;
  vertical-align:middle;
}
.sponsors-slider .slick-dots {
  display: flex;
  justify-content: center;
  margin:50px 0 0;
  padding: 0;
  list-style-type: none;
}
.sponsors-slider .slick-dots li {
  margin: 0 3px;
}
.sponsors-slider .slick-dots button {
  display: block;
  width:11px;
  height:11px;
  padding: 0;
  border: none;
  border-radius:50px;
  background-color: rgba(0, 74, 173, 0.20);
  text-indent: -9999px;
  cursor: pointer;
}
.sponsors-slider .slick-dots li.slick-active button {
  background-color: var(--background-blue);
}
/*--------------------------------------------------------------
   # Site Footer
--------------------------------------------------------------*/
.ftr-top{
  background:#231f20;
}
.ftr-top-wrap{
  display:flex;
  justify-content:space-between;
  gap:30px;
  position:relative;
  min-height:87px;
}
.ftr-logo{
  position:absolute;
  top:0;
  right:0;
}
.ftr-logo img{
  width: 258px;
  height: 138px;
  display: block;
}
.ftr-contact-info{
  display:flex;
  gap:75px;
  align-items:center;
  justify-content:space-between;
}
.ftr-contact-info .phone span{
  font-size:13px;
  color:rgba(255, 255, 255, 0.40);
  font-weight:600;
  text-transform:uppercase;
  display:block;
  line-height:100%;
  margin-bottom:3px;
}
.ftr-contact-info .phone a{
  color:var(--white-color);
  font-size:24px;
  font-weight:600;
  line-height:100%;
}
.ftr-contact-info .phone a:hover{
  color:rgba(255, 255, 255, 0.90);
}
.ftr-contact-info .mail,
.ftr-contact-info .address{
  font-size:16px;
  color:rgba(255, 255, 255, 0.60);
  letter-spacing:0.50px;
  font-weight:400;
  line-height:100%;
}
.ftr-contact-info .mail a{
  color:rgba(255, 255, 255, 0.60);
}
.ftr-contact-info .mail a:hover{
  color:var(--white-color);
}
.ftr-contact-info .phone,
.ftr-contact-info .mail,
.ftr-contact-info .address{
  position:relative;
  padding-left:36px;
}
.ftr-contact-info .mail{
  padding-left:40px;
}
.ftr-contact-info .address{
  padding-left:30px;
}
.ftr-contact-info .phone:before,
.ftr-contact-info .mail:before,
.ftr-contact-info .address:before{
  content: '';
  position: absolute;
  left: 0;
  top:2px;
  width: 24px;
  height: 36px;
  background: url(assets/images/call-icon.webp) no-repeat;
  background-size: 24px;
}
.ftr-contact-info .mail:before{
  width: 28px;
  height: 18px;
  background: url(assets/images/mail-icon.webp) no-repeat;
  background-size: 28px;
  top: -1px;
}
.ftr-contact-info .address:before{
  width: 19px;
  height: 24px;
  background: url(assets/images/map-pin-icon.webp) no-repeat;
  background-size: 19px;
  top:-5px;
}
.footer-bottom{
  background:var(--background-white);
}
.footer-bottom .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:15px;
  max-width: 1045px;
  margin: 0;
}
.footer-bottom {
  font-size:14px;
  font-weight:400;
  color:rgba(0, 0, 0, 0.60);
  letter-spacing:0.50px;
  line-height:100%;
  padding:20px 0;
}
.footer-bottom a{
  color:rgba(0, 0, 0, 0.60);
}
.footer-bottom a:hover{
  color:var(--black-color);
}
.ftr-contact-info{
  margin-left:90px;
}
/*--------------------------------------------------------------
# Inner Content
--------------------------------------------------------------*/
.inner-banner {
  position: relative;
  background:var(--background-blue);
  margin-top:5px;
}
.inner-banner:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
}
.inner-banner img {
  width: 100%;
  display: block;
  object-fit:cover;
}
.inner-banner-content {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.inner-banner .container {
  max-width: 1250px;
  margin: 0 auto;
  width:auto;
  height: 100%;
  padding:0 15px;
}
.inner-banner-main {
  display: flex;
  flex-direction: row;
  height: 100%;
  color: var(--black-color);
  justify-content:center;
  align-items: center;
}
.entry-header h1.entry-title {
  color: var(--white-color);
  font-size: 26px;
  line-height: 100%;
  font-weight: normal;
  text-transform:uppercase;
  margin-bottom: 0;
  letter-spacing:1px;
}
.single  .entry-header h1.entry-title,
.archive .entry-header h1.entry-title{
  line-height:1.1;
}
.site-main{
  padding:40px 0;
}
.site-content .entry-content{
  font-size:18px;
  font-weight:400;
  line-height:1.6;
  color:rgba(0, 0, 0, 0.90);
}
/*=========================================== 
   Blog & Single Post
=============================================*/
.blog article.post,
.single article.post,
.archive article.post,
.search article{
  margin-bottom: 30px;
  margin-top: 0px;
  line-height:1.6;
  border-bottom: 2px solid var(--grey-color);
  padding-bottom: 35px;
  position:relative;
}
.blog article.post:before,
.single article.post:before,
.archive article.post:before,
.search article:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background: rgba(255, 255, 255, 0.8);
}
.blog article.post:last-of-type,
.single article.post:last-of-type,
.archive article.post:last-of-type,
article.hentry:last-of-type,
.search article:last-of-type{
  border-bottom: 0px solid #eee;
  margin-bottom:0;
  padding-bottom:0;
}
.blog article.post h2,
.archive article.post h2,
article.hentry h2{
  font-size:20px;
  line-height:1.2;
  text-transform:uppercase;
  font-weight:normal;
  margin-bottom:10px;
  letter-spacing:0;
}
.blog article.post h2 a,
.archive article.post h2 a,
article.hentry h2 a{
  color:var(--green-color);
}
.blog article.post h2 a:hover,
.archive article.post h2 a:hover,
.blog article.post h2 a:focus,
.archive article.post h2 a:focus, 
.entry-meta a:hover, 
.entry-meta a:focus {
  color:var(--blue-color);
}
.blog article.post .post-thumbnail img,
.single article.post .post-thumbnail img{
  width:auto;
  height:auto;
  display:block;
	max-width:85%;
}
.entry-summary{
  position:relative;
}
.entry-media{
  margin-bottom:15px;
}
.entry-meta {
  font-size:15px; 
  line-height: 100%;
  margin-bottom: 15px;
}
.entry-meta a {
  color:var(--orange-color);
  font-weight:700;
}
.entry-meta a:hover{
  color:var(--black-color);
}
.entry-meta .post-cat, .entry-meta .post-date{
  font-style: italic;
}
.entry-meta .post-date{
  margin-left: 10px;
}
.entry-meta .post-cat {
  margin-right: 10px;
}
.single article.post h1,
.search .entry-header h1.entry-title,
.error404 .entry-header h1.entry-title,
.single  .entry-header h1.entry-title,
.archive .entry-header h1.entry-title{
  font-size:23px;
  margin-bottom: 0;
  background: transparent;
  max-width: 100%;
  white-space: inherit;
  padding: 0;
  text-align:center;
}
.single .entry-meta {
  font-size:14px;
}
.single .entry-media {
  text-align: center;
  margin-bottom: 20px;
}
/*a.entry-button {
  padding: 16px 18px;
  display: inline-block;
  line-height: 100%;
  font-size:14.5px;
  border-radius:0;
  text-transform:uppercase;
  color: var(--white-color);
  font-weight: 700;
  transition: all .5s;
  background: var(--background-blue);
  letter-spacing:0;
}
a.entry-button:hover {
  color:var(--white-color);
  background:#04388c;
}*/
.single_post_nav a{
  padding: 5px 0;
}
.entry-header,
.post-thumbnail,
.entry-content,
.entry-footer{
  position:relative;
}
/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
#secondary.widget-area{
  margin-top: 50px;
  max-width:310px;
  margin-left:auto;
  margin-right:auto;
}
#secondary.widget-area .search-form span.screen-reader-text,
#secondary.widget-area .search-form .search-submit{
  display:none;
}
#secondary.widget-area .search-form input{
  width: 100%; 
  padding:16px 15px;
  border:0;
  transition: all .9s ease-in-out;
  transition: ease-in-out, width .9s ease-in-out;
}
#secondary.widget-area .search-form input:focus, 
#secondary.widget-area .search-form input:active {
  transition: all .9s ease-in-out!important;
  outline: none!important;
  border:0px solid #004a80!important;
  position: relative!important;
}
#secondary.widget-area .search-form label{
  display:block;
}
#secondary.widget-area .widget{
  margin-bottom: 18px;
  border-bottom: 0;
  background: var(--background-green);
  padding: 25px;
  text-align: center;
  border-radius: 20px;
  border-bottom: 10px solid #46c52a;
}
#secondary.widget-area .wp-block-search .wp-block-search__button{
  display:none;
}
#secondary.widget-area .widget:last-of-type{
 margin-bottom:0;
}
#secondary.widget-area .widget h2{
  font-size:26px;
  text-transform:uppercase;
  color:var(--white-color);
  margin-bottom: 15px;
  font-weight: normal;
  position:relative;
  padding-bottom:15px;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.30);
}
#secondary.widget-area .widget h2:after{
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  background: var(--background-white);
  width: 16px;
  height: 4px;
  margin-left: -8px;
}
#secondary.widget-area .widget ul{
  margin:0px;
  padding:0;
  list-style: none;
}
#secondary.widget-area .widget ul li a,
#secondary.widget-area .widget a{
  font-size: 16px;
  text-transform:inherit;
  color: rgba(255, 255, 255, 0.95);
  line-height:1.4;
  font-weight:500;
}
#secondary.widget-area .widget ul li{
  margin-bottom:10px;
  line-height:100%;
}
#secondary.widget-area .widget ul li:last-of-type{
  margin-bottom:0;
}
#secondary.widget-area .widget ul li a:hover,
#secondary.widget-area .widget a:hover{
  color:var(--white-color);
}
#secondary.widget-area .widget:last-of-type {
  margin-bottom:0;
}
#secondary.widget-area input[type="search"]{
  padding: 15px 40px 15px 15px;
  border: none;
  font-size: 14px;
  min-height: 60px;
  position: relative;
  background:var(--background-white) url(assets/images/search-icon.svg) no-repeat;
  background-size: 22px;
  background-position: 95%;
}
.single  .page-header h1.page-title,
.archive .entry-header h1.entry-title{
  font-size:28px;
}
.error404 .entry-content .search-form input,
.search-no-results .entry-content .search-form input,
.search .page-content .search-form input{
  width: 100%;
  padding:21px 15px;
  border: 1px solid #ccc;
  transition: all .9s ease-in-out;
  transition: ease-in-out, width .9s ease-in-out;
  background:#eee;
  font-size:16px;
}
.error404 .entry-content .search-form span.screen-reader-text,
.error404 .entry-content .search-form .search-submit,
.search-no-results .entry-content .search-form span.screen-reader-text,
.search-no-results .entry-content .search-form .search-submit,
.search .page-content .search-form .search-submit{
  display: none;
}
.error404 .entry-content .search-form  label,
.search-no-results .entry-content .search-form  label,
.search .page-content .search-form  label{
  display:block;
  max-width: 355px;
}
.content-area.with-sidebar .row{
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.content-area.with-sidebar .row .col-md-8{
  width: 62%;
  padding: 0 15px;
}
.content-area.with-sidebar .row .col-md-4{
  width: 33.3%;
  padding: 0 15px;
}
#secondary.widget-area .widget label.wp-block-search__label{
  display:none;
}
.single .entry-footer{
  display:none;
}
.contact-form-area .contact-form{
  max-width:1020px;
  margin-right:auto;
  margin-left:auto;
}
.contact-form-area .contact-form .gform_wrapper form input[type="text"], 
.contact-form-area .contact-form .gform_wrapper form input[type="email"], 
.contact-form-area .contact-form .gform_wrapper form input[type="tel"], 
.contact-form-area .contact-form .gform_wrapper form  textarea {
  background: #FFF;
  border: 1px solid #dfdcdc;
  border-radius: 0;
  padding:15px 15px;
  font-size: 15px;
  font-weight: 500;
  color: var(--black-color);
}
.contact-form-area .contact-form .gform_wrapper form input[type="text"]:focus, 
.contact-form-area .contact-form .gform_wrapper form input[type="email"]:focus, 
.contact-form-area .contact-form .gform_wrapper form input[type="tel"]:focus, 
.contact-form-area .contact-form .gform_wrapper form  textarea:focus{
  border:1px solid #333;
}
.contact-form-area .contact-form .gform_wrapper form textarea {
  height:160px !important
}
.contact-form-area .contact-form .gform_wrapper form input[type="submit"] {
  background: var(--background-green);
  color: var(--white-color);
  padding:17px 25px;
  text-transform:uppercase;
  font-size: 17px;
  font-weight: normal;
  border-radius:0px;
  border:0;
  letter-spacing: 1px;
  font-family: 'Impact';
  line-height:100%;
  width:auto;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.contact-form-area .contact-form .gform_wrapper form input[type="submit"]:hover {
  background:var(--background-blue);
}
.contact-form-area .contact-form .gform_wrapper form  input::placeholder, 
.contact-form-area .contact-form .gform_wrapper form textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.contact-form-area .contact-form .gform_wrapper form input::-moz-placeholder, 
.contact-form-area .contact-form .gform_wrapper form textarea::-moz-placeholder {
  opacity: 1;
}
.single .site-content .entry-title{
  display:none;
}
article.hentry .entry-content  h2{
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 12px;
  letter-spacing: 0;
  color:var(--blue-color);
}
.site-main ul.service-lists {
  -moz-column-count: 1;
  -moz-column-gap: 20px;
  -webkit-column-count: 1;
  -webkit-column-gap: 20px;
  column-count: 3;
  margin:0;
  padding:10px 0 30px;
  list-style:none;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.site-main ul.service-lists li{
  position:relative;
  margin-bottom:5px;
  padding-left:28px;
}
.site-main ul.service-lists li:before{
  content: '';
  position: absolute;
  left: 0;
  top:4px;
  background:url(assets/images/check-mark.svg) left no-repeat;
  width: 18px;
  height: 18px;
  background-size: 20px;
}
.contact-form h3 {
  font-size:25px;
  font-weight:normal;
  letter-spacing:0;
  text-transform:uppercase;
  color: var(--blue-color);
  margin-bottom:30px;
}
.post-navigation .nav-links a{
  font-weight:700;
  color:var(--blue-color);
}
body.home.logged-in .site-header{
  top:32px;
}
.contact-form-area .map-area iframe{
  margin-top:30px;
  width:100%;
}
h2{
  line-height:1.1;
  margin-bottom:15px;
  font-size:36px;
  font-weight:normal;
  color:var(--blue-color);
  letter-spacing:1px;
  text-transform:uppercase;
}
h3{
  font-size:28px;
  font-weight:normal;
  margin-bottom:15px;
  line-height:1.1;
  color:var(--green-color);
  letter-spacing:1px;
  text-transform:uppercase;
}
h4{
  font-size:24px;
  font-weight: normal;
  margin-bottom: 10px;
  color:var(--orange-color);
  line-height:1.1;
  text-transform:uppercase;
}
h5{
  font-size:22px;
  font-weight:normal;
  margin-bottom:8px;
  color:var(--yellow-color);
}
h6{
  font-size:20px;
  font-weight:normal;
  margin-bottom:8px;
}
.home .site-main{
  padding: 0;
}
.gform_wrapper.gravity-theme .gfield_label{
  margin-bottom:0 !important
}
.slider-image .slide  {
  display: none;
}
.slider-image .slide:first-child {
  display: block;
}
.row.post_pagination{
  margin-top:25px;
}
.row.post_pagination .next_posts_link a,
.row.post_pagination .previous_posts_link a{
  background:var(--background-blue);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.25px;
  line-height: 100%;
  color: var(--white-color);
  padding: 10px 18px;
  border-radius: 50px;
}
.row.post_pagination .next_posts_link a:hover,
.row.post_pagination .previous_posts_link a:hover{
  background:var(--background-green);
}
.constant-form{
  max-width:1224px;
  margin:0 auto;
}
.single .post-thumbnail{
  margin-bottom:30px;
}
article .post-thumbnail img{
  margin-bottom:30px;
  display:block;
	max-width:85%;
}


.post-content.color-lime .post-cat-wrap .category a{
  background:#5CEB3C;
  color:var(--black-color);
}
.post-content.color-lime .post-readmore a{
  color:#5CEB3C;
}
.post-content.color-lime .post-readmore a:after{
  background: url(assets/images/right-arrow-green.svg) no-repeat;
  background-size: 38px;
}

.post-content.color-kelly .post-cat-wrap .category a{
  background:#00A64F;
  color:var(--white-color);
}
.post-content.color-kelly .post-readmore a{
  color:#00A64F;
}
.post-content.color-kelly .post-readmore a:after{
  background: url(assets/images/right-arrow-kelly.svg) no-repeat;
  background-size: 38px;
}

.post-content.color-light-blue .post-cat-wrap .category a{
  background:#28ACE1;
  color:var(--white-color);
}
.post-content.color-light-blue .post-readmore a{
  color:#28ACE1;
}
.post-content.color-light-blue .post-readmore a:after{
  background: url(assets/images/right-arrow-light-blue.svg) no-repeat;
  background-size: 38px;
}


.post-content.color-dark-blue .post-cat-wrap .category a{
  background:#004AAD;
  color:var(--white-color);
}
.post-content.color-dark-blue .post-readmore a{
  color:#004AAD;
}
.post-content.color-dark-blue .post-readmore a:after{
  background: url(assets/images/right-arrow-blue.svg) no-repeat;
  background-size: 38px;
}


.post-content.color-dark-purple .post-cat-wrap .category a{
  background:#6C28D1;
  color:var(--white-color);
}
.post-content.color-dark-purple .post-readmore a{
  color:#6C28D1;
}
.post-content.color-dark-purple .post-readmore a:after{
  background: url(assets/images/right-arrow-dark-purple.svg) no-repeat;
  background-size: 38px;
}


.post-content.color-light-purple .post-cat-wrap .category a{
  background:#BA61FF;
  color:var(--white-color);
}
.post-content.color-light-purple .post-readmore a{
  color:#BA61FF;
}
.post-content.color-light-purple .post-readmore a:after{
  background: url(assets/images/right-arrow-light-purple.svg) no-repeat;
  background-size: 38px;
}


.post-content.color-teal .post-cat-wrap .category a{
  background:#28D1C1;
  color:var(--white-color);
}
.post-content.color-teal .post-readmore a{
  color:#28D1C1;
}
.post-content.color-teal .post-readmore a:after{
  background: url(assets/images/right-arrow-teal.svg) no-repeat;
  background-size: 38px;
}


.post-content.color-yellow .post-cat-wrap .category a{
  background:#FDD604;
  color:var(--black-color);
}
.post-content.color-yellow .post-readmore a{
  color:#FDD604;
}
.post-content.color-yellow .post-readmore a:after{
  background: url(assets/images/right-arrow-yellow1.svg) no-repeat;
  background-size: 38px;
}


.post-content.color-orange .post-cat-wrap .category a{
  background:#F6941D;
  color:var(--white-color);
}
.post-content.color-orange .post-readmore a{
  color:#F6941D;
}
.post-content.color-orange .post-readmore a:after{
  background: url(assets/images/right-arrow-orange.svg) no-repeat;
  background-size: 38px;
}


.post-content.color-coral .post-cat-wrap .category a{
  background:#FF6B61;
  color:var(--white-color);
}
.post-content.color-coral .post-readmore a{
  color:#FF6B61;
}
.post-content.color-coral .post-readmore a:after{
  background: url(assets/images/right-arrow-coral.svg) no-repeat;
  background-size: 38px;
}


.post-content.color-red .post-cat-wrap .category a{
  background:#D12838;
  color:var(--white-color);
}
.post-content.color-red .post-readmore a{
  color:#D12838;
}
.post-content.color-red .post-readmore a:after{
  background: url(assets/images/right-arrow-red.svg) no-repeat;
  background-size: 38px;
}


.post-content.color-pink .post-cat-wrap .category a{
  background:#FF2EB2;
  color:var(--white-color);
}
.post-content.color-pink .post-readmore a{
  color:#FF2EB2;
}
.post-content.color-pink .post-readmore a:after{
  background: url(assets/images/right-arrow-pink.svg) no-repeat;
  background-size: 38px;
}


.post-content.color-black .post-cat-wrap .category a{
  background:#000000;
  color:var(--white-color);
}
.post-content.color-black .post-readmore a{
  color:#000000;
}
.post-content.color-black .post-readmore a:after{
  background: url(assets/images/right-arrow-black1.svg) no-repeat;
  background-size: 38px;
}


.post-content.color-dark-grey .post-cat-wrap .category a{
  background:#545454;
  color:var(--white-color);
}
.post-content.color-dark-grey .post-readmore a{
  color:#545454;
}
.post-content.color-dark-grey .post-readmore a:after{
  background: url(assets/images/right-arrow-dark-grey.svg) no-repeat;
  background-size: 38px;
}


.post-content.color-light-grey .post-cat-wrap .category a{
  background:#C8C9CB;
  color:var(--black-color);
}
.post-content.color-light-grey .post-readmore a{
  color:#C8C9CB;
}
.post-content.color-light-grey .post-readmore a:after{
  background: url(assets/images/right-arrow-light-grey.svg) no-repeat;
  background-size: 38px;
}
.single  .category-truitt-news-blast .post-thumbnail{
	display:none;
}