/*!
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
*/

/*--------------------------------------------------------------
# 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:#efefef;
  --red-color:#ea1017;
  --green-color:#086218;
  --white-color:#FFFFFF;
  --background-black:#000000;
  --background-grey:#efefef;
  --background-red:#ea1017;
  --background-green:#086218;
  --background-white:#FFFFFF;
  --font-family-gesta: "Open Sans", sans-serif;
}
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/

a {
  color:var(--red-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(--green-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: "Open Sans", 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;
  margin:0;
  font-weight:400;
}

body {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  color:rgba(0, 0, 0, 0.90);
  font-size:15.5px;
  line-height:1.7;
  font-weight:400;
  margin:0;
}
body .home-site-content>:where(:not(.alignwide)),
body .site-main>:where(:not(.alignwide)) {
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto; 
  padding-left: 15px;
  padding-right: 15px;
}
.container {
  max-width:1250px;
  width:auto;
  margin:0 auto;
  padding-right:15px;
  padding-left:15px;
}
/*--------------------------------------------------------------
# Site Header
--------------------------------------------------------------*/
.top-header{
  background:var(--background-green);
  padding:7.5px 0;
}
.header-main{
  padding:15px 0;
}
.site-logo img{
  display:block;
}
.top-hdr-wrap{
  display:flex;
  justify-content:flex-end;
  align-items:center;
}
.login-icons{
  display:flex;
  align-items:center;
  gap:5px;
}
.user-icon img{
  width:34px;
  height:34px;
  display:block;
}
.shopping-icon img{
  width:30px;
  height:30px;
  display:block;
}
form.search-form {
  position: relative;
  max-width:260px;
}
form.search-form label span.screen-reader-text{
  display:none;
}
form.search-form input[type="search"],
#responsive-menu-pro-search-box form.responsive-menu-pro-search-form  input[type="search"]{
  background: var(--background-white);
  border-radius: 0;
  padding:15px 50px 15px 20px;
  display: inline-block;
  font-weight: 400;
  font-size: 15px;
  color:rgba(0, 0, 0, 0.80);
  min-width: 100%;
  border:1px solid #b2b2b2;
}
#responsive-menu-pro-search-box form.responsive-menu-pro-search-form  input[type="search"]{
  border:none;
  padding:18px 15px;
  height:52px;
}
form.search-form input[type="submit"] {
  background: url(assets/images/search-icon.svg) no-repeat;
  background-size: 38px;
  position: absolute;
  right: 12px;
  top: 6px;
  border: 0;
  text-indent: -9999px;
  width: 38px;
  height: 30px;
  cursor: pointer;
}
.header-main .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
} 
/*--------------------------------------------------------------
# Nav Menu
--------------------------------------------------------------*/
.nav-area{
  background:var(--background-red);
}
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;
}
nav.main-menu ul li:first-of-type{
  padding-left:0;
}
nav.main-menu ul li a {
  display: block;
  padding:15px 2px;
  color:var(--white-color);
  font-size:16px;
  font-weight:500;
  text-decoration: none;
  position:relative;
  letter-spacing:0.25px;
  text-transform:uppercase;
}
nav.main-menu ul ul li a:after{
  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:#eee;
}
nav.main-menu ul ul {
  background:var(--background-red);
  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:12px 15px;
  color:var(--white-color);
  font-size:14.5px;
  text-align: left;
  border-bottom:0;
  font-weight:500;
}
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-green);
  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-green);
}
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-red);
}
/*--------------------------------------------------------------
   # Home Slider
--------------------------------------------------------------*/
.home-banner{
  background:var(--background-green);
  position:relative;
  margin-bottom:10px;
}
.home-banner:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(0, 0, 0, 0.50);
  z-index:2;
}
.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 img,
.home-banner video {
  width: 100%;
  display:block;
  height:640px;
  object-fit:cover;
}
.home-banner video{
  display:block;
  object-fit:cover;
}
.home-banner-main {
  display: flex;
  flex-direction:column;
  height: 100%;
  justify-content:center;
  padding:0;
  text-align:center;
}
.banner-title{
  font-size:64px;
  color: var(--white-color);
  line-height:0.9;
  font-weight: 600;
  margin-bottom:20px;
  letter-spacing:0.25px;
  text-transform:uppercase;
  position:relative;
  display:inline-block;
}
.banner-title:before,
.banner-title:after{
  content:'';
  position:absolute;
  background:var(--background-white);
  width:118px;
  height:5px;
  top:50%;
  margin-top:-2.5px;
}
.banner-title:before{
  left:-140px;
}
.banner-title:after{
  right:-140px;
}
.banner-button a,
.contact-button a{
  background: var(--background-red);
  font-size: 22px;
  font-weight: 600;
  display: inline-block;
  line-height: 100%;
  padding:22px 48px;
  color: var(--white-color);
  text-transform: uppercase;
  margin-top:30px;
}
.banner-button a:hover,
.contact-button a:hover{
  background:var(--background-white);
  color:var(--red-color);
}
/*--------------------------------------------------------------
   # Home Content
--------------------------------------------------------------*/
.products-section{
  margin-top:0;
}
.product-block{
  position:relative;
}
.product-title{
  position:absolute;
  top:70px;
  left:0;
  text-align:center;
  width:100%;
  font-size:44px;
  font-weight:800;
  text-transform:uppercase;
  line-height:100%;
  letter-spacing:0.25px;
  color:var(--white-color);
  z-index:2;
  padding-bottom:26px;
  margin-bottom:26px;
}
.product-title:after{
  content:'';
  position:absolute;
  bottom:0;
  left:50%;
  background:#eeeeee;
  width:82px;
  height:6px;
  margin-left:-42px;
}
.product-image img{
  width:100%;
  height:auto;
  object-fit:cover;
  display:block;
}
.product-image{
  position:relative;
}
.product-image:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(0, 0, 0, 0.40);
  z-index:2;
}
.product-box{
  position:relative;
}
.product-box a{
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  z-index:4;
}
.product-bottom{
  background:rgba(9, 99, 25, 0.95);
  padding:12px 0;
}
.product-bottom .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
}
.shopnow-btn a{
  background: var(--background-white);
  font-size: 17px;
  color: var(--black-color);
  font-weight: 600;
  display: inline-block;
  line-height: 100%;
  padding:16px 30px;
  text-transform: uppercase;
  position: relative;
  width: auto;
  height: auto;
  border:2px solid transparent;
}
.shopnow-btn a:hover{
  background:transparent;
  border:2px solid var(--white-color);
  color:var(--white-color);
}
.product-subtitle{
  font-size:18px;
  font-weight:700;
  color:var(--white-color);
  line-height:100%;
  text-transform:uppercase;
  font-family: "Open Sans", sans-serif;
  margin-bottom:0;
}
.browse-collection{
  background:var(--background-grey);
  padding:75px 0 50px;
}
.browse-collection-title{
  font-size:38px;
  color:rgba(0, 0, 0, 0.90);
  font-weight:700;
  line-height:100%;
  margin-bottom:60px;
  text-align:center;
  text-transform:inherit;
}
.product-thumnail{
  background: var(--background-white);
  border: 1px solid #bcb7b7;

}
.product-thumnail a{
  width:100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.browse-collection-wrap{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:32px;
}
.product-name{
  font-size:24px;
  font-weight:700;
  margin-top:15px;
  text-align:center;
  line-height:100%;
  margin-bottom:0;
}
.product-name a{
  color:var(--black-color);
}
.product-name a:hover{
  color:var(--red-color);
}
.product-thumnail img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.product-price{
  font-size:22px;
  font-size:22px;
  font-weight:800;
  line-height:100%;
  font-family: "EB Garamond", serif;
  text-align:center;
  margin-top:7px;
  color:var(--red-color);
}
.testimonials-section{
  background:var(--background-black)   url(assets/images/testimonials-bg.jpg) no-repeat;
  background-size:cover;
  padding:110px 0 145px;
  position:relative;
}
.testimonials-section:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background:rgba(0, 0, 0, 0.60);
}
.testimonial-title{
  font-size:42px;
  font-weight:700;
  text-transform:uppercase;
  color:var(--white-color);
  line-height:1.1;
}
.testimonial-title span{
  color:var(--red-color);
  display:block;
}
.testimonial-area{
  max-width:625px;
  position:relative;
  margin-right:40px;
}
.testimonials-section .container{
  display:flex;
  justify-content:flex-end;
}
.testimonial-block{
  background:rgba(239, 239, 239, 0.30);
  padding:55px 40px;
  margin-top:75px;
  position:relative;
}
.testimonial-block:before{
  content: '';
  position: absolute;
  left: -50px;
  top: -40px;
  background: url(assets/images/quote-icon.png) no-repeat;
  width: 88px;
  height: 85px;
}
.testimonial-content{
  font-size:18px;
  font-weight:400;
  color:#efefef;
  line-height:1.8;
  font-style:italic;
}
.testimonial-content span{
  font-size:18px;
  font-weight:bold;
  color:var(--white-color);
  line-height:100%;
  display:block;
  font-style:normal;
}
.about-section{
  background:var(--background-red);
  padding:100px 0;
  text-align:center;
}
.about-title,
.cta-title{
  font-size:48px;
  color:var(--white-color);
  font-weight:700;
  line-height:100%;
  margin-bottom:30px;
  text-transform:uppercase;
}
.about-content{
  max-width:840px;
  margin:0 auto;
  font-size:18px;
  font-weight:400;
  line-height:1.8;
  color:rgba(255, 255, 255, 0.90);
}
.cta-banner,
.about-section{
  padding:135px 0;
  background:#086218 url(assets/images/cta-banner-bg.jpg) no-repeat;
  background-size:cover;
  position:relative;
  text-align:center;
}
.cta-banner:before,
.about-section:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  background:rgba(8, 98, 24, 0.80);
  width:100%;
  height:100%;
}
.cta-banner .container,
.about-section .container{
  position:relative;
}
.cta-title{
  text-transform:inherit;
  text-align:center;
  position:relative;
  display:inline-block;
  margin-bottom:40px;
}
.cta-title:before,
.cta-title:after{
  content:'';
  position:absolute;
  background:rgba(231, 239, 233, 0.90);
  width:118px;
  height:5px;
  top:50%;
  margin-top:-2.5px;
}
.cta-title:before{
  left:-140px;
}
.cta-title:after{
  right:-140px;
}
.cta-text{
  font-size:22px;
  font-weight:400;
  color:rgba(255, 255, 255, 0.90);
  line-height:1.2;
}
.contact-button a{
  background:var(--background-white);
  font-weight:700;
  margin-top:70px;
  color:var(--black-color);
  padding:20.5px 38px;
  border:2px solid transparent;
}
.contact-button a:hover{
  background:transparent;
  border:2px solid var(--white-color);
  color:var(--white-color);
}
.testimonial-block {
  position:relative;
}
.testimonial-block .slick-dots{
  position: absolute;
  bottom:-30px;
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
  left:0;
}
.testimonial-block .slick-dots li{
  position: relative;
  display: inline-block;
  height:12px;
  width:12px;
  margin: 0 3px;
  padding: 0;
  cursor: pointer;
}
.testimonial-block .slick-dots li button{
  border:0;
  background:var(--background-white);
  display: block;
  height:12px;
  width:12px;
  outline: 0;
  line-height: 0;
  font-size: 0;
  color: #000;
  padding:0;
  cursor: pointer;
  border-radius: 100%;
}
.testimonial-block .slick-dots li.slick-active button {
  background: var(--background-red);
}
.testimonial-block .slick-arrow{
  display:none !important;
}
/*--------------------------------------------------------------
   # Site Footer
--------------------------------------------------------------*/
.shipping-returns-section{
  padding:85px 0;
}
.shipping-returns-section .container{
  max-width:980px;
  margin:0 auto
}
.shipping-returns-title{
  font-size:36px;
  font-weight:700;
  color:var(--black-color);
  letter-spacing:0.25px;
  line-height:100%;
  text-transform:uppercase;
  margin-bottom:35px;
}
.shipping-area,
.return-policy-area{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;;
}
.shipping-area{
  border-bottom:1px solid rgba(0, 0, 0, 0.20);
  padding-bottom:55px;
  margin-bottom:55px;
}
.shipping-button a,
.return-button a{
  background: var(--background-red);
  font-size: 16px;
  font-weight: 700;
  color: var(--white-color);
  text-transform: uppercase;
  display: inline-block;
  padding:19px 25px;
  line-height: 100%;
  min-width: 138px;
  text-align: center;
  border:2px solid transparent;
}
.shipping-button a:hover{
  background:transparent;
  border:2px solid var(--red-color);
  color:var(--red-color);
}
.return-button a{
  background:var(--background-green);
}
.return-button a:hover{
  background:transparent;
  border:2px solid var(--green-color);
  color:var(--green-color);
}
.shipping-text{
  width:70%;
  font-size:16px;
  line-height:1.6;
  color:rgba(0, 0, 0, 0.80);
  font-weight:400;
}
.shipping-button{
  width:30%;
  text-align:right;
}
.footer-bottom{
  background:var(--background-red);
}
.footer-bottom .container{
  display:flex;
  width: 100%;
  justify-content: space-between;
  gap:40px;
}
.footer-logo{
  background:var(--background-white);
  padding:30px 15px;
  width:24%;
  text-align:center;
}
.footer-right{
  width:74%;
  padding:30px 0;
}
.social-icons{
  text-align:center;
  margin-top:0;
  padding-right:20px;
  margin-right:18px;
  border-right:1px solid rgba(255, 255, 255, 0.30);
}
.footer-social-icons .social-icons{
  margin-top: 0;
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}
.social-icons ul,
.footer-social-icons ul{
  list-style:none;
  margin:0;
  padding:0;
}
.footer-social-icons{
  text-align:center;
}
.footer-social-icons ul{
  position:relative;
}
.footer-social-icons ul:before,
.footer-social-icons ul:after{
  content:'';
  position:absolute;
  top:50%;
  background:rgba(255, 255, 255, 0.80);
  width:40%;
  height:1px;
}
.footer-social-icons ul:before{
  left:0;
}
.footer-social-icons ul:after{
  right:0;
}
.social-icons ul li,
.footer-social-icons ul li{
  display:inline-block;
  margin-right:5px;
}
.social-icons ul li:last-of-type,
.footer-social-icons ul li:last-of-type{
  margin-right:0;
}
.social-icons ul li a,
.footer-social-icons ul li a{
  background:var(--background-white);
  color: var(--green-color);
  width:35px;
  height:35px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50px;
}
.footer-social-icons ul li a{
  width:42px;
  height:42px;
  color:var(--red-color);
}
.social-icons ul li a svg,
.footer-social-icons ul li a svg{
  width:16px;
  height:16px;
}
.footer-social-icons ul li a svg{
  width:22px;
  height:22px;
}
.social-icons ul li a:hover{
  background:var(--background-grey);
}
.footer-social-icons ul li a:hover{
  background:var(--background-grey);
}
.ftr-btm-wrap a:hover{
   color:var(--white-color);
}
.ftr-btm-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:13px;
  font-weight:500;
  color:var(--white-color);
  letter-spacing:0.15px;
  text-transform:uppercase;
  margin-top:32px;
  line-height:100%;
}
.ftr-btm-wrap a{
  color:rgba(255, 255, 255, 0.90);
}
.ftr-btm-wrap a:hover{
  color:var(--white-color);
}
.footer-logo img{
  display:block;
  margin:0 auto;
}
/*--------------------------------------------------------------
# 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.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: 700;
  text-transform:uppercase;
  margin-bottom: 0;
}
.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:15px;
  font-weight:400;
  line-height:1.7;
}
/*=========================================== 
   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:800;
  margin-bottom:10px;
  letter-spacing:0;
}
.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:var(--red-color);
}
.entry-summary{
  position:relative;
}
.entry-media{
  margin-bottom:15px;
}
.entry-meta {
  font-size:13px; 
  line-height: 100%;
  margin-bottom: 15px;
}
.entry-meta a {
  color:var(--red-color);
  font-weight:700;
}
.entry-meta a:hover{
  color:var(--green-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-red);
  letter-spacing:0;
}
a.entry-button:hover {
  color:var(--white-color);
  background:var(--background-green);
}
.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:20px;
  border-bottom:0;
  background:var(--background-green);
  padding:30px 25px;
  text-align:center;
  border-radius:0;
  border-bottom:0;
}
#secondary.widget-area .wp-block-search .wp-block-search__button{
  display:none;
}
#secondary.widget-area .widget:last-of-type{
  border-bottom:0;
  margin-bottom:0;
}
#secondary.widget-area .widget h2{
  font-size:19px;
  text-transform:uppercase;
  color:var(--white-color);
  margin-bottom: 15px;
  font-weight: 700;
  position:relative;
  padding-bottom:15px;
}
#secondary.widget-area .widget h2:after{
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  background: var(--background-red);
  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: 14px;
  text-transform:inherit;
  color: rgba(255, 255, 255, 0.8);
  line-height:1.4;
  font-weight:500;
}
#secondary.widget-area .widget ul li{
  margin-bottom:12px;
  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;
  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{
  max-width:1020px;
  margin-right:auto;
  margin-left:auto;
}
.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 #dfdcdc;
  border-radius: 0;
  padding:15px 15px;
  font-size: 15px;
  font-weight: 500;
  color: var(--black-color);
  width: 97.5%;
}
.contact-form-area .contact-form form.wpcf7-form input[type="text"]:focus, 
.contact-form-area .contact-form form.wpcf7-form input[type="email"]:focus, 
.contact-form-area .contact-form  form.wpcf7-form input[type="tel"]:focus, 
.contact-form-area .contact-form form.wpcf7-form  textarea:focus{
  border:1px solid #333;
}
.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:140px;
}
.contact-form-area .contact-form form.wpcf7-form label{
  text-transform:uppercase;
  font-size:13.5px;
  font-weight: 600;
  letter-spacing:0;
  color:rgba(0, 0, 0, 0.8);
}
.contact-form-area .contact-form  form.wpcf7-form input[type="submit"] {
  background: var(--background-red);
  color: var(--white-color);
  padding:17px 25px;
  text-transform:uppercase;
  font-size: 16px;
  font-weight: 700;
  border-radius:0px;
  border:0;
  letter-spacing: 1px;
  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 form.wpcf7-form  input[type="submit"]:hover {
  background: var(--background-green);
}
.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: 700;
  margin-bottom: 12px;
  letter-spacing: 0;
  color:var(--red-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:800;
  letter-spacing:0;
  text-transform:uppercase;
  color: var(--green-color);
  margin-bottom:30px;
}
.post-navigation .nav-links a{
  font-weight:700;
  color:var(--red-color);
}
body.logged-in .site-header{
  top:0;
}
.contact-form-area .map-area iframe{
  margin-top:30px;
  width:100%;
}
h2{
  line-height:1.1;
  margin-bottom:15px;
  font-size:30px;
  color:var(--green-color);
  font-weight:800;
  text-transform:uppercase;
}
h3{
  font-size:26px;
  font-weight:700;
  margin-bottom:15px;
  line-height:100%;
  color:var(--red-color);
}
h4{
  font-size:24px;
  font-weight: bold;
  margin-bottom: 10px;
  color:var(--green-color);
}
h5{
  font-size:22px;
  font-weight:500;
  margin-bottom:8px;
}
h6{
  font-size:20px;
  font-weight:500;
  margin-bottom:8px;
}
.home .site-main{
  padding: 0;
}
.wp-block-columns.contact-form-area{
  margin-bottom:0;
}
.row.post_pagination{
  margin-top:30px;
}
.top-hdr-wrap .ec-cart-widget .ec-minicart__icon .icon-default path[stroke]{
  stroke: #fff !important;
}
#my-search-106438528 .ecwid-search-widget input{
  height: 52px !important;
  padding:15px 40px 15px 15px !important;
}