/*!
Theme Name: fusionone
Theme URI: https://fusiononemarketing.com/
Author: Robert Humm
Author URI: https://fusiononemarketing.com/
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

*/

/*--------------------------------------------------------------
# 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;
}
html{
  font-size:18px;
}
:root {
  --black-color:#000000;
  --green-color:#314528;
  --grey-color:#eaece9;
  --darkgrey-color:#7f7f7f;
  --white-color:#FFFFFF;
  --background-black:#000000;
  --background-green:#314528;
  --background-grey:#eaece9;
  --darkbackground-grey:#7f7f7f;
  --background-white:#FFFFFF;
  --font-family-source-sans-pro: 'Schibsted Grotesk', sans-serif;
}
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/

a {
  color:var(--green-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: 'Schibsted Grotesk', 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: 'EB Garamond', serif;
  font-weight:normal;
  margin:0;
}

body {
  font-family: 'Schibsted Grotesk', sans-serif;
  color:var(--black-color);
  font-size:16px;
  line-height:1.5;
  font-weight:400;
  margin:0;
}
.container {
  max-width:1250px;
  width:auto;
  margin:0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
/*--------------------------------------------------------------
# Site Header
--------------------------------------------------------------*/
.header-main{
  padding:18px 0;
}
.site-logo img{
  width:128px;
  height:66px;
  display:block;
  margin:0 auto;
}
.header-contact-info{
  display:none;
}
.address,
.phone,
.mail{
  font-weight:700;
  font-size:18px;
  color:var(--black-color);
  line-height:1.2;
  letter-spacing:0.7px;
  position:relative;
  padding-left:40px;
}
.phone a,
.mail a{
  color:var(--black-color);
}
.phone a:hover,
.mail a:hover{
  color:var(--green-color);
}
.address span,
.phone span,
.mail span{
  display:block;
  color:#cbcbcb;
  text-transform:uppercase;
  font-weight:500;
  font-size:14px;
}
.address:before,
.phone:before,
.mail:before{
  content: '';
  position: absolute;
  left: 0;
  top:-5px;
  background: url(assets/images/location-icon.svg) no-repeat;
  width: 32px;
  height: 40px;
  background-size: 40px;
}
.phone:before{
  background: url(assets/images/phone-icon.svg) no-repeat;
  background-size: 34px;
  top: 4px;
}
.mail:before{
  background: url(assets/images/email-icon.svg) no-repeat;
  background-size: 34px;
  width: 34px;
  top: 3px;
}
/*--------------------------------------------------------------
# Nav Menu
--------------------------------------------------------------*/
nav.main-menu{
  display:none;
  background:var(--background-green);
  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 28px;
  position:relative;
}
nav.main-menu ul li:last-of-type{
  padding-right:0;
}
nav.main-menu ul li a {
  display: block;
  padding:20px 5px;
  color:var(--white-color);
  font-size:15px;
  font-weight:500;
  text-transform:uppercase;
  text-decoration: none;
  position:relative;
  line-height:100%;
  letter-spacing:1.2px;
}
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:200px;
  z-index:3;
}
nav.main-menu ul ul li {
  display: block;
  position: relative;
  padding:0;
  float:none;
}
nav.main-menu ul ul li a {
  padding:15px 15px;
  color:var(--white-color);
  font-weight:500;
  font-size:13px;
  text-transform:uppercase;
  text-align: left;
  border-bottom:0;
  line-height:1.3;
}
nav.main-menu ul ul li:hover a,
nav.main-menu ul ul li.current-menu-item a{
  color:var(--white-color) !important;
  background:var(--background-black);
  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:var(--background-black);
}
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) !important;
  background:var(--background-green);
}
/*--------------------------------------------------------------
   # Home Slider
--------------------------------------------------------------*/
.home-banner {
  position: relative;
  background:var(--background-black);
  z-index:0;
}
.home-banner img {
  width: 100%;
  object-fit: cover;
  display: block;
  position: relative;
}
.home-banner video{
  display:block;
  object-fit: cover;
}
.home-banner-content {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.home-banner .container {
  max-width: 1250px;
  margin: 0 auto;
  width:auto;
  height: 100%;
  padding: 0 15px;
}
.home-banner-main {
  display: flex;
  flex-direction: row;
  height: 100%;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  width: 100%;
}
.banner-heading{
  background: rgba(49, 69, 40, 0.90);
  padding: 10px 15px;
  text-transform: uppercase;
  margin: 0;
  color: var(--white-color);
  font-size:20px;
  font-weight: 500;
  line-height: 1.1;
  max-width: 708px;
  text-align: left;
  letter-spacing:2px;
}
.banner-subheading{
  background:var(--background-black);
  padding:10px 15px;
  text-transform: uppercase;
  margin: 0;
  color: var(--white-color);
  font-size: 15px;
  font-weight: 500;
  max-width: 531px;
  float: right;
  line-height: 1.2;
  letter-spacing:2px;
  margin-top:-5px;
  font-family: 'Schibsted Grotesk', sans-serif;
}

/*--------------------------------------------------------------
   # Home Content
--------------------------------------------------------------*/
.banner-section{
  display: flex;
  justify-content: space-between;
  column-gap: 1px;
  margin-top:15px;
  margin-bottom:15px;
  flex-direction:column;
}
.banner-box{
  background: var(--darkbackground-grey);
  padding:25px 20px;
  width: auto;
  position:relative;
  -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;
  margin-bottom:1px;
  text-align:center;
}
.banner-box:first-of-type{
  background: var(--background-green);
}
.banner-box a{
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
}
.banner-box h2{
  font-size:36px;
  font-weight:500;
  text-transform:uppercase;
  margin:0 0 18px;
  color:var(--white-color);
  letter-spacing:2px;
  line-height:100%;
}
.banner-box .high-quality-title{
  font-size:20px;
  font-weight: 500;
  color: var(--white-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  line-height: 1.2;
}
.banner-box:hover{
  background:var(--background-green);
}
.our-services-section{
  padding:30px 0 40px;
}
.our-services-title,
.our-project-title{
  font-size:28px;
  font-weight:500;
  text-transform:uppercase;
  padding-bottom: 20px;
  margin-bottom: 20px;
  color:var(--green-color);
  text-align:center;
  position:relative;
  letter-spacing:0.25px;
}
.our-services-title:after,
.our-project-title:after{
  content:'';
  position:absolute;
  bottom:0;
  left:50%;
  background:#cccccc;
  height:5px;
  width:60px;
  margin-left:-30px;
}
.services-wrap{
  display:flex;
  column-gap:10px;
  justify-content: space-between;
  max-width:1030px;
  margin:40px auto 0;
  flex-direction:column;
}
.service-box .service-thumbnail img{
  width: 100%;
  display: block;
  max-height:400px;
  object-fit: cover;
}
.service-box{
  width:100%;
  -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;
  margin-bottom:30px;
}
.service-box:last-of-type{
  margin-bottom:0;
}
.service-box .service-thumbnail a{
  position:relative;
}
.service-box .service-thumbnail a:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  background:rgba(49, 69, 40, 0.70);
  width:100%;
  height:100%;
  opacity:0;
}
.service-box:hover .service-thumbnail a:before{
  opacity:1;
}
.service-title{
  letter-spacing:0.25px;
  font-size:22px;
  font-weight:500;
  text-transform:uppercase;
  margin-top:15px;
  line-height:1.2;
  text-align:center;
  padding:0 25px;
  color:var(--green-color);
}
.service-title a{
  color:var(--green-color);
}
.about-section{
  background:#f5f4f4 url(assets/images/about-bg.webp) no-repeat;
  padding:40px 0;
  background-size:cover;
}
.alignfull{
  margin: 0px calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
}
.about-title,
.free-quote-area .free-quote-title{
  color:var(--green-color);
  font-size:28px;
  font-weight:500;
  line-height:100%;
  text-transform:uppercase;
  padding-top:25px;
  margin-bottom:20px;
  letter-spacing:0.25px;
  position:relative;
}
.about-title:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  background:#cccccc;
  width:61px;
  height:5px;
}
.about-tagline {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.80);
  margin-bottom: 20px;
  letter-spacing: 0.25px;
}
.about-wrap{
  display:flex;
  align-items:center;
  max-width:1250px;
  margin:0 auto;
  column-gap:35px;
  flex-direction:column;
}
.about-contant-part{
  width:auto;
}
.about-image{
  width:auto;
}
.about-image img{
  width:100%;
  display:block;
  box-shadow:0 0 20px rgba(0, 0, 0, 0.40);
}
.about-content{
  font-size:15px;
  line-height:1.5;
  font-weight:400;
  color:rgba(0, 0, 0, 0.70);
}
.readmore-btn{
  margin-top:35px;
}
.readmore-btn a{
  background: var(--background-green);
  font-size: 14px;
  font-weight: 500;
  color: var(--white-color);
  padding: 14px 25px;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 1px;
}
.readmore-btn a:hover{
  background:var(--background-black);
}
.cta-section {
  background:#f5f5f5 url(assets/images/cta-bg.webp) bottom no-repeat;
  background-size:100%;
  padding:40px 0;
}
.cta-wrap{
  max-width:1250px;
  margin:0 auto;
  display:flex;
  justify-content: flex-end;
}
.free-quote-area{
  max-width:605px;
}
.free-quote-wrap{
  display:flex;
  column-gap:14px;
  flex-direction: column;
}
.free-quote-area form.wpcf7-form input[type="text"], 
.free-quote-area form.wpcf7-form input[type="email"], 
.free-quote-area form.wpcf7-form input[type="tel"], 
.free-quote-area form.wpcf7-form textarea {
  background: var(--background-white);
  border: 1px solid #d4d4d4;
  border-radius: 0;
  padding: 18px 15px;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
  color: var(--black-color);
  width:91%;
}
.free-quote-area form.wpcf7-form span.wpcf7-form-control-wrap {
  margin-bottom: 15px;
  display: block;
}
.free-quote-area form.wpcf7-form textarea {
  height:84px;
  width:91%;
}
.free-quote-area form.wpcf7-form input[type="submit"] {
  background: var(--background-green);
  font-size: 14px;
  font-weight: 500;
  color: var(--white-color);
  padding: 14px 25px;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 1px;
  border:0;
  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;
  letter-spacing:0.8px;
}
.free-quote-area form.wpcf7-form input[type="submit"]:hover {
  background:var(--background-black);
}
.free-quote-area form.wpcf7-form input::placeholder, 
.free-quote-area form.wpcf7-form textarea::placeholder {
  color:#bdbdbd;
  text-transform: uppercase;
}
.free-quote-area form.wpcf7-form input::-moz-placeholder, 
.free-quote-area form.wpcf7-form textarea::-moz-placeholder {
  opacity: 1;
  text-transform: uppercase;
}
.free-quote-area form.wpcf7-form .wpcf7-not-valid-tip {
  color: #ff0000;
  font-size: 14px;
  font-weight: 500;
  display: block;
  text-transform: initial;
}
.free-quote-area .free-quote-title{
  font-size:30px;
  padding:0;
  text-transform: inherit;
  margin-bottom:40px;
}
.our-project-section{
  padding:40px 0;
}
.project-wrap{
  display:flex;
  flex-wrap:nowrap;
  column-gap:17px;
  max-width:880px;
  margin:40px auto 0;
  flex-direction:column;
}
.project-box{
  margin:8.5px 0;
  position:relative;
  -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;
}
.project-box:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(0, 0, 0, 0.60);
  opacity:0;
  -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;
  z-index:2;
}
.project-box a{
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  z-index:3;
}
.project-box .project-thumbnail img{
  width:100%;
  display:block;
}
.project-content{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity:0;
  z-index:2;
}
.project-box:hover:before{
  opacity:1;
  -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;
}
.project-box:hover .project-thumbnail img{
  filter: gray;
  -webkit-filter: grayscale(1);
}
.project-box:hover .project-content{
  opacity:1;
}
.project-content .project-title{
  color:var(--white-color);
  font-size:25px;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:0.25px;
  padding-bottom:15px;
  margin-bottom:15px;
  position:relative;
}
.project-content .project-title:after{
  content:'';
  position:absolute;
  left:50%;
  bottom:0;
  background:var(--background-white);
  width:32px;
  height:3px;
  margin-left:-16px;
}
.project-content .project-text{
  color: var(--white-color);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.30px;
}
.viewmore-project-btn{
  text-align:center;
  margin-top:30px;
}
.viewmore-project-btn a{
  background: var(--background-green);
  font-size: 15px;
  font-weight: 500;
  color: var(--white-color);
  padding: 16px 24px;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: 0.8px;
}
.viewmore-project-btn a:hover{
  background: var(--background-black);
}

/*--------------------------------------------------------------
   # Site Footer
--------------------------------------------------------------*/
.site-footer{
  border-top:1px solid rgba(49, 69, 40, 0.50);
  padding:42px 0;
  position:relative;
}
.site-footer:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:526px;
  background:var(--background-grey);
  height:100%;
}
.site-footer .container{
 position:relative;
}
.hdr-top{
  display: flex;
  justify-content: space-between;
}
.follow-us-text{
  text-align:center;
  font-size:14px;
  font-weight:400;
  color:rgba(0, 0, 0, 0.50);
  text-transform:uppercase;
  line-height:100%;
  margin-bottom:12px;
}
.follow-us ul{
  list-style:none;
  margin:0;
  padding:0;
}
.follow-us ul li{
  display:inline-block;
  margin-right:3px;
}
.follow-us ul li a{
  background: #778471;
  width: 32px;
  height: 32px;
  line-height:38px;
  display: inline-block;
  text-align: center;
  border-radius: 100%;
}
.follow-us ul li a svg{
  color:var(--white-color);
  width:18px;
  height:18px;
}
.follow-us ul li a:hover{
  background:var(--background-green);
}
.ftr-logo img{
  width: 135px;
  height: 69px;
}
.ftr-bottom{
  display: flex;
  justify-content: space-between;
  flex-direction:row;
  margin-top:25px;
}
.copyright,
.created-by{
  font-size:12px;
  font-weight:500;
  text-transform:uppercase;
  color:rgba(0, 0, 0, 0.60);
}
.created-by{
  color:#778471;
  font-weight:600;
}
.created-by a{
  color:var(--green-color);
}
.created-by a:hover{
  color:#778471;
}
.ftr-logo,
.copyright{
  width:380px;
  text-align:center;
}
.follow-us,
.created-by{
  width:260px;
  text-align:center;
}
/*--------------------------------------------------------------
# Inner Content
--------------------------------------------------------------*/
.inner-banner {
  position: relative;
  background:var(--background-black);
}
.inner-banner:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}
.inner-banner img {
  width: 100%;
  display: block;
}
.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: 100%;
  height: 100%;
  padding: 0;
}
.inner-banner-main {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--black-color);
  justify-content: flex-end;
  text-align: center;
  align-items: flex-start;
}
.entry-header h1.entry-title {
  color:var(--white-color);
  font-size:28px;
  line-height: 100%;
  font-weight:600;
  text-transform: uppercase;
  margin-bottom:0;
  padding:0px;
  bottom:0;
  position: relative;
  letter-spacing:1.2px;
  margin-left:15px;
  background:rgba(49, 69, 40, 0.95);
  padding: 18px 35px;
  border-top:3px solid var(--grey-color);
}
.site-main{
  padding:40px 0;
}
.site-content .entry-content{
  font-size:15px;
  line-height:1.6;
}
/*=========================================== 
   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 #eee;
  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.3;
  text-transform: uppercase;
  font-weight:700;
  margin-bottom:10px;
}
.blog article.post h2 a,
.archive article.post h2 a,
article.hentry h2 a{
  color:var(--black-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: #333333;
}
.entry-summary{
  position:relative;
}
.entry-media{
  margin-bottom:15px;
}
.entry-meta {
  font-size:11.5px; 
  line-height: 100%;
  margin-bottom: 15px;
}
.entry-meta a {
  color:var(--green-color);
  font-weight:600;
}
.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{
    font-size:23px;
    margin-bottom: 0;
}
.single .entry-meta {
  font-size:14px;
}
.single .entry-media {
  text-align: center;
  margin-bottom: 20px;
}
a.entry-button {
  padding: 16px 20px;
  display: inline-block;
  line-height: 100%;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--white-color);
  font-weight: 600;
  transition: all .5s;
  background:var(--background-green);
}
a.entry-button:hover {
  background:var(--background-black);
}
.single_post_nav a{
  padding: 5px 0;
}
.entry-header,
.post-thumbnail,
.entry-content,
.entry-footer{
  position:relative;
}
/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
#secondary.widget-area{
  margin-top: 30px;
  max-width: 100%;
  margin-left: 0;
}
#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: 25px;
  border-bottom: 0;
  background: #485e3e;
  padding: 25px;
  text-align: center;
  border-bottom: 0px solid var(--green-color);
  border-radius: 22px;
  box-shadow: 0px 12px 1px #f5f5f5;
}
#secondary.widget-area .wp-block-search .wp-block-search__button{
  display:none;
}
#secondary.widget-area .widget h2{
  font-size:19px;
  text-transform: uppercase;
  color:var(--white-color);
  margin-bottom: 16px;
  font-weight: 700;
  position:relative;
  padding-bottom:12px;
}
#secondary.widget-area .widget h2:after{
  content:'';
  position:absolute;
  left:50%;
  bottom:0;
  background:var(--background-white);
  width:40px;
  height:3px;
  margin-left:-20px;
}
#secondary.widget-area .widget ul{
  margin:0px;
  padding:0px 0 0 15px;
  list-style: none;
}
#secondary.widget-area .widget ul li a,
#secondary.widget-area .widget a{
  font-size: 14px;
  text-transform: none;
  color: rgba(255, 255, 255, 0.7);
  line-height:1.2;
  font-weight:500;
}
#secondary.widget-area .widget ul li{
  margin-bottom:4px;
  line-height:1.2;
}
#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;
  border: none;
  font-size: 14px;
  min-height: 60px;
}
.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 form.wpcf7-form input[type="text"], 
.contact-form-area .contact-form form.wpcf7-form input[type="email"], 
.contact-form-area .contact-form  form.wpcf7-form input[type="tel"], 
.contact-form-area .contact-form form.wpcf7-form  textarea {
  background: #FFF;
  border: 1px solid #eee;
  border-radius: 0;
  padding: 12px 3%;
  font-size: 15px;
  font-weight: 500;
  color: var(--black-color);
  width: 94%;
}
.contact-form-area .contact-form form.wpcf7-form  span.wpcf7-form-control-wrap {
  margin-bottom: 15px;
  display: block;
}
.contact-form-area .contact-form form.wpcf7-form  textarea {
  height:80px;
}
.contact-form-area .contact-form form.wpcf7-form label{
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}
.contact-form-area .contact-form  form.wpcf7-form input[type="submit"] {
  background:var(--background-green);
  width:auto;
  color: var(--black-color);
  font-weight: 800;
  text-transform:uppercase;
  font-size:16px;
  border: 0;
  padding:13px 25px;
  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;
  letter-spacing:0.8px;
}
.contact-form-area .contact-form form.wpcf7-form  input[type="submit"]:hover {
  background: #34424b;
  color:var(--white-color);
}
.contact-form-area .contact-form form.wpcf7-form  input::placeholder, 
.contact-form-area .contact-form form.wpcf7-form  textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.contact-form-area .contact-form  form.wpcf7-form input::-moz-placeholder, 
.contact-form-area .contact-form form.wpcf7-form  textarea::-moz-placeholder {
  opacity: 1;
}
.contact-form form.wpcf7-form  .wpcf7-not-valid-tip {
  color: #ff0000;
  font-size: 14px;
  font-weight: 500;
  display: block;
  text-transform: initial;
}
.single .site-content .entry-title{
  display:none;
}
article.hentry .entry-content  h2{
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 1px;
  color:var(--green-color);
}
.entry-content ul.service-lists {
  -moz-column-count: 2;
  -moz-column-gap: 20px;
  -webkit-column-count: 2;
  -webkit-column-gap: 20px;
  column-count: 2;
  margin:0;
  padding:10px 0 30px;
  list-style:none;
}
.entry-content ul.service-lists li{
  position:relative;
  margin-bottom:5px;
  padding-left:28px;
}
.entry-content 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: 18px;
}
.contact-form h3 {
  font-size:22px;
  font-weight:800;
  letter-spacing:0px;
  text-transform:uppercase;
  color:#34424b;
  margin-bottom:20px;
}
.map-area iframe{
  width:100%;
  margin-top:30px;
}
.post-navigation .nav-links a{
  font-weight:700;
  color:var(--green-color);
}
.contact-form-area .header-contact-info{
  display:block;
  margin-top:40px;
}
.contact-form-area .header-contact-info p{
  margin-bottom:30px;
}
.contact-form-area .free-quote-area{
  max-width:100%;
}
.contact-form-area .free-quote-form h2.free-quote-title{
  font-weight:500 !important;
  color:var(--green-color) !important;
  margin-bottom:30px !important;
  text-align:left !important;
  font-size:30px !important;
}
body.logged-in .site-header{
  top:30px;
}
h3{
  font-size:26px;
  font-weight: bold;
}
h4{
  font-size:22px;
  font-weight: bold;
}
h5{
  font-size:20px;
  font-weight:600;
}
h6{
  font-size:18px;
  font-weight:500;
}


.featured-wrap {
  display: flex;
  justify-content: space-between;
  column-gap: 3px;
  flex-direction: column;
  flex-wrap: wrap;
}
.featured-box {
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
  -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;
}
.featured-box a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 3;
}
.featured-image img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.featured-title {
  font-size: 16px;
  font-weight: 600;
  color:var(--white-color);
  letter-spacing: 1px;
  margin-bottom: 0;
  background: var(--background-green);
  padding: 15px 20px;
  position: absolute;
  bottom: 0;
  width: auto;
  line-height: 1.2;
}
.featured-box .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(49,69,40,.95);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .8s ease;
}
.featured-text {
  font-size:15px;
  font-weight: 400;
  color: var(--white-color);
  line-height: 1.6;
  margin: 50px 20px;
}
.featured-box:hover .overlay {
  bottom: 0;
  height: 100%;
  width: 100%;
  bottom: 0;
}
.featured-text h3{
  font-size:20px;
  font-weight:600;
  color:var(--white-color);
  margin-bottom:15px;
  padding-bottom:15px;
  position:relative;
}
.featured-text h3:after{
  content:'';
  position:relative;
  bottom:-15px;
  max-width:320px;
  border-bottom:1px solid rgba(255, 255, 255, 0.50);
  left:0;
  display:block;
}
.featured-project-title{
  font-size:22px;
  font-weight:800;
  letter-spacing:4px;
  color:var(--green-color);
  text-transform:uppercase;
  margin-bottom:30px;
  text-align:center;
}

.featured-box:hover .featured-title {
  display: none;
  background: 0 0;
  color: transparent;
}
.featured-box .overlay .featured-content{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  height: 100%;
  width: 100%;
}
