/*
Theme Name: Simply Natural
Version: 1.0
Theme URI: http://www.cyberoptik.net
Description: Customizable responsive Wordpress theme created by CyberOptik
Author: CyberOptik
Author URI: http://www.cyberoptik.net
Template: optik-theme
*/



/*
 * CUSTOMIZABLE CSS
 */



/* -----------------------------------------------------------------------------
 * TABLE OF CONTENTS:
 * -----------------------------------------------------------------------------
 *
 * 1 CSS IMPORTS
 *   1.1 FRAMEWORK
 *   1.2 MODULES
 *   1.3 STYLES
 *
 * 2 STRUCTURAL ELEMENTS
 *   2.1 UNIVERSAL STYLES
 *   2.2 BACK TO TOP BUTTON
 *   2.3 ELEMENTOR
 *
 * 3 CONTENT STYLES
 *   3.1 TEXT & LINKS
 *   3.2 HEADINGS
 *   3.3 BORDERS & DIVIDERS
 *   3.4 BUTTONS
 *   3.5 ICONS
 *   3.6 LIST STYLES
 *   3.7 FORM STYLES
 *
 * 4 HEADER STYLES
 *   4.1 SCROLL BAR
 *   4.2 TOP BAR
 *   4.3 HEADER 
 *   4.4 NAV BAR
 *   4.5 NAV MENUS
 *   4.6 DROPDOWN MENUS
 *   4.7 MOBILE NAV
 *
 * 5 BODY STYLES
 *   5.1 BANNER
 *   5.2 BREADCRUMBS
 *   5.3 TITLE BAR
 *   5.4 PAGE NAV BAR
 *   5.5 MAIN
 *   5.6 ARCHIVE
 *   5.7 SINGLE
 *
 * 6 FOOTER STYLES
 *   6.1 CTA BAR
 *   6.2 FOOTER
 *   6.3 BOTTOM BAR
 *
 * 7 CUSTOM THEME STYLES
 *
 * ---------------------------------------------------------------------------*/





/******************************************************************************
 * * *  1 CSS IMPORTS  * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/

@import url("../optik-theme/style.css");

/***  POPPINS  ***/ 

/* Normal */
@font-face {
  font-family: 'Poppins';
  font-weight: normal;
  src: url('fonts/poppins/Poppins-Regular.woff2');
}

/* Italic */
@font-face {
  font-family: 'Poppins';
  font-weight: normal;
  font-style: italic;
  src: url('fonts/poppins/Poppins-Italic.woff2');
}

/* Semi Bold */
@font-face {
  font-family: 'Poppins';
  font-weight: 500;
  src: url('fonts/poppins/Poppins-Medium.woff2');
}



/******************************************************************************
 * * *  2 STRUCTURAL ELEMENTS  * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/


/***  2.1 UNIVERSAL STYLES  ***/

:root {
	--primary: #75c32c;
	--primary-dk: #4c9805;
	--primary-lt: #9fe95a;
	--secondary: #fc5f5f;
	--secondary-dk: #f62626;
	--secondary-lt: #fb7c7c;
	--dark-1: #2b2f38;
	--dark-2: #3a3a3a;
	--dark-3: #5d6167;
	--light-1: #f9f9f9;
	--light-2: #efeef4;
	--light-3: #F7F7F7;/**/
	--radius-1: 16px;
	--radius-2: 50px;
	--radius-3: 80px;
	--gap-xs: 5px;/**/
	--gap-sm: 10px;/**/
	--gap-md: 15px;/**/
	--gap-lg: 20px;/**/
	--gap-xl: 30px;/**/
	--spacer-xs: 60px;
	--spacer-sm: 80px;
	--spacer-md: 100px;
	--spacer-lg: 120px;
	--spacer-xl: 140px;
  --shadow-1: 0 64px 120px -40px rgba(0,0,0,.16);
  --shadow-2: 0px 1px 5px 0px rgba(0,0,0,.1);
	--font-1: 'Poppins',sans-serif;
}

html {font-size: 16px;}

body {
  line-height: 1.6em;
  font-family: var(--font-1);
  color: var(--dark-2);
  background-color: var(--light-1);
}

p:empty:before {display: none !important;}

.section-container {max-width: 1300px;}



/***  2.2 BACK TO TOP BUTTON  ***/

.btt-button .fa {
  border-radius: 5px;
  background-color: var(--primary);
	font-weight: 300;
  color: white;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.btt-button:hover .fa {
  background-color: var(--secondary);
  color: white;
}



/***  2.3 ELEMENTOR  ***/

/* Elementor Container Margins */

.elementor-column {
  display: flex;
  margin-right: 0;
}

.elementor-column-gap-narrow {
	margin-top: calc(var(--gap-xs) * -1);
	margin-bottom: calc(var(--gap-xs) * -1);
}

.elementor-column-gap-default {
	margin-top: calc(var(--gap-sm) * -1);
	margin-bottom: calc(var(--gap-sm) * -1);
}

.elementor-column-gap-extended {
	margin-top: calc(var(--gap-md) * -1);
	margin-bottom: calc(var(--gap-md) * -1);
}

.elementor-column-gap-wide {
	margin-top: calc(var(--gap-lg) * -1);
	margin-bottom: calc(var(--gap-lg) * -1);
}

.elementor-column-gap-wider {
	margin-top: calc(var(--gap-xl) * -1);
	margin-bottom: calc(var(--gap-xl) * -1);
}

/* Elementor Inner Container Margins */

.elementor-inner-section > .elementor-column-gap-narrow {
	margin-left: calc(var(--gap-xs) * -1);
	margin-right: calc(var(--gap-xs) * -1);
}

.elementor-inner-section > .elementor-column-gap-default {
	margin-left: calc(var(--gap-sm) * -1);
	margin-right: calc(var(--gap-sm) * -1);
}

.elementor-inner-section > .elementor-column-gap-extended {
	margin-left: calc(var(--gap-md) * -1);
	margin-right: calc(var(--gap-md) * -1);
}

.elementor-inner-section > .elementor-column-gap-wide {
	margin-left: calc(var(--gap-lg) * -1);
	margin-right: calc(var(--gap-lg) * -1);
}

.elementor-inner-section > .elementor-column-gap-wider {
	margin-left: calc(var(--gap-xl) * -1);
	margin-right: calc(var(--gap-xl) * -1);
}

/* Container Padding */

.elementor-top-section.elementor-section-boxed > .elementor-column-gap-no {
	padding-left: 50px;
	padding-right: 50px;
}

.elementor-top-section.elementor-section-boxed > .elementor-column-gap-narrow {
	padding-left: calc(50px - var(--gap-xs));
	padding-right: calc(50px - var(--gap-xs));
}

.elementor-top-section.elementor-section-boxed > .elementor-column-gap-default {
	padding-left: calc(50px - var(--gap-sm));
	padding-right: calc(50px - var(--gap-sm));
}

.elementor-top-section.elementor-section-boxed > .elementor-column-gap-extended {
	padding-left: calc(50px - var(--gap-md));
	padding-right: calc(50px - var(--gap-md));
}

.elementor-top-section.elementor-section-boxed > .elementor-column-gap-wide {
	padding-left: calc(50px - var(--gap-lg));
	padding-right: calc(50px - var(--gap-lg));
}

.elementor-top-section.elementor-section-boxed > .elementor-column-gap-wider {
	padding-left: calc(50px - var(--gap-xl));
	padding-right: calc(50px - var(--gap-xl));
}

@media screen and (max-width: 900px) {

.elementor-top-section.elementor-section-boxed > .elementor-column-gap-no {
	padding-left: 40px;
	padding-right: 40px;
}

.elementor-top-section.elementor-section-boxed > .elementor-column-gap-narrow {
	padding-left: calc(40px - var(--gap-xs));
	padding-right: calc(40px - var(--gap-xs));
}

.elementor-top-section.elementor-section-boxed > .elementor-column-gap-default {
	padding-left: calc(40px - var(--gap-sm));
	padding-right: calc(40px - var(--gap-sm));
}

.elementor-top-section.elementor-section-boxed > .elementor-column-gap-extended {
	padding-left: calc(40px - var(--gap-md));
	padding-right: calc(40px - var(--gap-md));
}

.elementor-top-section.elementor-section-boxed > .elementor-column-gap-wide {
	padding-left: calc(40px - var(--gap-lg));
	padding-right: calc(40px - var(--gap-lg));
}

.elementor-top-section.elementor-section-boxed > .elementor-column-gap-wider {
	padding-left: calc(40px - var(--gap-xl));
	padding-right: calc(40px - var(--gap-xl));
}

}

@media screen and (max-width: 600px) {

.elementor-column-gap-no, 
.elementor-column-gap-narrow, 
.elementor-column-gap-default, 
.elementor-column-gap-extended, 
.elementor-column-gap-wide, 
.elementor-column-gap-wider, 
.elementor-top-section.elementor-section-boxed > .elementor-column-gap-no, 
.elementor-top-section.elementor-section-boxed > .elementor-column-gap-narrow, 
.elementor-top-section.elementor-section-boxed > .elementor-column-gap-default, 
.elementor-top-section.elementor-section-boxed > .elementor-column-gap-extended, 
.elementor-top-section.elementor-section-boxed > .elementor-column-gap-wide, 
.elementor-top-section.elementor-section-boxed > .elementor-column-gap-wider {
	padding-left: 10px;
	padding-right: 10px;
	margin: 0;
}
	
.elementor-inner-section > .elementor-column-gap-no, 
.elementor-inner-section > .elementor-column-gap-narrow, 
.elementor-inner-section > .elementor-column-gap-default, 
.elementor-inner-section > .elementor-column-gap-extended, 
.elementor-inner-section > .elementor-column-gap-wide, 
.elementor-inner-section > .elementor-column-gap-wider {
	margin: 0;
	margin-top: -15px;
	margin-bottom: -15px;
}
	
.elementor-column-gap-narrow > .elementor-column > .elementor-element-populated, 
.elementor-column-gap-default > .elementor-column > .elementor-element-populated, 
.elementor-column-gap-extended > .elementor-column > .elementor-element-populated, 
.elementor-column-gap-wide > .elementor-column > .elementor-element-populated, 
.elementor-column-gap-wider > .elementor-column > .elementor-element-populated {
	padding: 15px;	
}
	
.elementor-inner-section > .elementor-column-gap-narrow > .elementor-column > .elementor-element-populated, 
.elementor-inner-section > .elementor-column-gap-default > .elementor-column > .elementor-element-populated, 
.elementor-inner-section > .elementor-column-gap-extended > .elementor-column > .elementor-element-populated, 
.elementor-inner-section > .elementor-column-gap-wide > .elementor-column > .elementor-element-populated, 
.elementor-inner-section > .elementor-column-gap-wider > .elementor-column > .elementor-element-populated {
	padding-left: 0;
	padding-right: 0;
}

}

@media screen and (max-width: 420px) {

.elementor-column-gap-no, 
.elementor-column-gap-narrow, 
.elementor-column-gap-default, 
.elementor-column-gap-extended, 
.elementor-column-gap-wide, 
.elementor-column-gap-wider, 
.elementor-top-section.elementor-section-boxed > .elementor-column-gap-no, 
.elementor-top-section.elementor-section-boxed > .elementor-column-gap-narrow, 
.elementor-top-section.elementor-section-boxed > .elementor-column-gap-default, 
.elementor-top-section.elementor-section-boxed > .elementor-column-gap-extended, 
.elementor-top-section.elementor-section-boxed > .elementor-column-gap-wide, 
.elementor-top-section.elementor-section-boxed > .elementor-column-gap-wider {
	padding-left: 0;
	padding-right: 0;
}

}

/* Elementor Headings */

.elementor-widget-heading .elementor-heading-title {line-height: 1.3em !important;}

/* Elementor Testimonials */

.elementor-testimonial__image {display: none !important;}

/* Elementor Buttons */

.elementor-button {
  line-height: normal;
  font-size: inherit;
  -webkit-transition: all 350ms ease-in-out;
  -moz-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  -ms-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}
.elementor-button:hover {text-decoration: none;}

/* Elementor Buttons */

.elementor-button {
  line-height: normal;
  font-size: inherit;
  -webkit-transition: all 350ms ease-in-out;
  -moz-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  -ms-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}
.elementor-button:hover {text-decoration: none;}

/* Elementor Icons */

[class*="eicon-"], 
[class*="e-icon-"] {font-style: normal !important;}

.elementor-widget .elementor-icon-list-item:not(:last-child) {margin-bottom: 0.5em;}

.elementor .fa,
.elementor .fas,
.elementor .far,
.elementor .fal,
.elementor .fab,
.elementor .fa:before,
.elementor .fas:before,
.elementor .far:before,
.elementor .fal:before,
.elementor .fab:before {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* Elementor Gallery */

.elementor-lightbox [class*="eicon-"] {color: white !important;}

.elementor-image-gallery .gallery-item img {border: 0 !important;}

.elementor-slideshow__header {
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  box-sizing: border-box !important;
}





/******************************************************************************
 * * *  3 CONTENT STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * *
 ******************************************************************************/



/***  3.1 TEXT & LINKS  ***/

a {color: var(--primary);}

a:hover {color: var(--secondary);}



/***  3.2 HEADINGS  ***/

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  color: var(--dark-1);
}

h1 {font-size: 4em;}
h2 {font-size: 2.5em;}
h3 {font-size: 1.75em;}
h4 {font-size: 1.5em;}
h5 {font-size: 1.25em;}
h6 {font-size: 1.1em;}

@media screen and (max-width:900px){
  h1 {font-size: 3em;}
  h2 {font-size: 2em;}  
}


/***  3.3 BORDERS & DIVIDERS  ***/

hr, .divider {
    display: block;
	width: 100%;
    height: 1px;
    border: 0;
    border-top: 1px solid #e2e2e2;
    margin: 2.5em auto;
    padding: 0;
	clear: both;
}



/***  3.4 BUTTONS  ***/

.button, 
.elementor-button {
  padding: 0.75em 2em;
  min-width: 150px;
  border: 2px solid var(--secondary);
	border-radius: var(--radius-2);
  background-color: var(--secondary);
  font-weight: 500;
  font-size: .75em;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.button:hover, 
.elementor-button:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: white;
}

/* no padding Button */
.no-padding-btn .elementor-button{
  padding: 0;
  color: var(--secondary);
  background: transparent;
  border: none;
  min-width: unset;
}

.no-padding-btn .elementor-button:hover{color: var(--primary);}

.no-padding-btn .elementor-button i{color: var(--secondary);}

.no-padding-btn .elementor-button:hover i{color: var(--primary);}
/* Empty Button */

.button-empty {
  background: none;
  color: var(--primary);
}

.button-empty:hover {
  border-color: var(--secondary);
  background: none;
  color: var(--secondary);
}



/***  3.5 ICONS  ***/

/*  Icon Colors  */

.fa, .fas, .far, .fal, .fab {color: var(--primary);}

a .fa, a .fas, a .far, a .fal, a .fab {
  color: var(--primary);
  webkit-transition: all 350ms ease-in-out;
  -moz-transition: all 350ms ease-in-out;
  -o-transition: all 350ms ease-in-out;
  -ms-transition: all 350ms ease-in-out;
  transition: all 350ms ease-in-out;
}

a:hover .fa, a:hover .fas, a:hover .far, a:hover .fal, a:hover .fab {color: var(--secondary);}

/*  Icon Backgrounds  */

.fa-bg {
  background-color: var(--primary);
  color: white;
}

a .fa-bg {
  background-color: var(--primary);
  color: white;
}

a:hover .fa-bg {
  background-color: var(--secondary);
  color: white;
}

/*  Icon Borders  */
.fa-br {border-color: var(--primary);}
a .fa-br {border-color: var(--primary);}
a:hover .fa-br {border-color: var(--secondary);}

/* Elementor Icons */

.elementor-view-stacked .elementor-icon {background-color: var(--primary);}
.elementor-view-stacked .elementor-icon i {color: white;}
.elementor-view-stacked .elementor-icon:hover {background-color: var(--secondary);}



/***  3.6 LISTS  ***/

/* Icon Lists */

.arrow-list, 
.check-list, 
.check-circle-list, 
.icon-list, 
.contact-list {list-style: none;}

.arrow-list li, 
.check-list li, 
.check-circle-list li, 
.icon-list li, 
.contact-list li {position: relative;}

.contact-list li a {color: var(--dark-3);}

.icon-list li .fa, 
.icon-list li .fal, 
.icon-list li .fas, 
.icon-list li .fab, 
.icon-list li .fad, 
.contact-list li .fa, 
.contact-list li .fal, 
.contact-list li .fas, 
.contact-list li .fab, 
.contact-list li .fad {
  position: absolute;
	top: 0.25em;
  left: -1.75em;
	width: 1em;
	height: 1em;
	line-height: 1;
}

.arrow-list li:not(:last-child), 
.check-list li:not(:last-child), 
.check-circle-list li:not(:last-child), 
.icon-list li:not(:last-child), 
.contact-list li:not(:last-child) {margin-bottom: 0.5em;}

.arrow-list li:before, 
.check-list li:before, 
.check-circle-list li:before, 
.icon-list li:before, 
.contact-list li:before {
  position: absolute;
  top: 0.33em;
  left: -1.75em;
  width: 1em;
  height: 1em;
  display: block;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 300;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-size: 1em;
  text-align: center;
	color: var(--primary);
}

.arrow-list li:before, 
.icon-list li.arrow:before, 
.contact-list li.arrow:before {content: "\f105";}

.check-list li:before, 
.icon-list li.check:before, 
.contact-list li.check:before {content: "\f00c";}

.check-circle-list li:before, 
.icon-list li.check-circle:before, 
.contact-list li.check-circle:before {content: "\f058";}

.icon-list li.map-marker:before, 
.contact-list li.map-marker:before {content: "\f3c5";}

.icon-list li.phone:before, 
.contact-list li.phone:before {content: "\f095";}

.icon-list li.fax:before, 
.contact-list li.fax:before {content: "\f1ac";}

.icon-list li.envelope:before, 
.contact-list li.envelope:before {content: "\f0e0";}

.icon-list li.clock:before, 
.contact-list li.clock:before {content: "\f4fd";}

.icon-list li.share:before, 
.contact-list li.share:before {content: "\f14d";}

/* Double Size Icon List */

.icon-list-2x li, 
.contact-list-2x li {margin-left: 3em;}

.icon-list-2x li:not(:last-child), 
.contact-list-2x li:not(:last-child) {margin-bottom: 1em;}

.icon-list-2x li:before, 
.contact-list-2x li:before {
  font-size: 1.5em;
  top: 0;
  right: calc(100% + 1em);
}

/* Column Lists */

@media screen and (min-width: 601px) {

.two-col-list, 
.three-col-list, 
.four-col-list, 
.five-col-list {
  width: 100%;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.two-col-list {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}

.three-col-list, 
.four-col-list, 
.five-col-list {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
}

.two-col-list li, 
.three-col-list li, 
.four-col-list li, 
.five-col-list li {
  display: inline-block;
  width: calc(100% - 1.75em);
}

}

@media screen and (min-width: 901px) {

.four-col-list, 
.five-col-list {
  -webkit-column-count: 4; /* Chrome, Safari, Opera */
  -moz-column-count: 4; /* Firefox */
  column-count: 4;
}

}

@media screen and (min-width: 1025px) {

.five-col-list {
  -webkit-column-count: 5; /* Chrome, Safari, Opera */
  -moz-column-count: 5; /* Firefox */
  column-count: 5;
}

}



/***  3.7 FORM STYLES  ***/

/* Inputs */

input[type="text"]:focus, input[type="email"]:focus, input[type="number"]:focus, 
input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, 
input[type="url"]:focus, input[type="date"]:focus, input[type="datetime-local"]:focus, 
input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, 
textarea:focus, select:focus {border-color: var(--primary);}

/* Buttons */

input[type="submit"], input[type="reset"], input[type="button"] {
  padding: 0.75em 2em;
  min-width: 150px;
  border: 2px solid var(--secondary);
	border-radius: var(--radius-2);
  background-color: var(--secondary);
  font-weight: 500;
  font-size: .75em;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

input[type="Submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

input[type="Submit"]:active, input[type="reset"]:active, input[type="button"]:active {
  background-color:  var(--primary);
  color: white;
}

/* Search Form */

.search-form {position: relative;}

input[type="text"].search-field {background-color: var(--light-3);}

input[type="text"].search-field:focus {background-color: white;}

input[type="Submit"].search-submit {
  display: block;
  position: absolute;
  z-index: 50;
  top: 50%;
  right: 0;
  float: none;
  width: 42px;
  height: 42px;
  border: 0;
  margin-top: -21px;
  background: rgba(0,0,0,0) url(images/icon-search.svg) center center no-repeat !important;
  background-size: 1.5em !important;
  opacity: 0.6;
  cursor: pointer;
  cursor: hand;
}

input[type="Submit"].search-submit:hover {
  outline: none;
  opacity: 1;
}

input[type="Submit"].search-submit:active {
  background-color: rgba(0,0,0,0.025);
  outline: none;
}

/* Ninja Forms */

.nf-before-form-content {display: none !important;}

.nf-field-element input[type="button"], 
.nf-field-element input[type="submit"] {height: 50px;}





/******************************************************************************
 * * *  4 HEADER STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/

/*transparent header*/
body:not(.woocommerce) header.header{
  position: absolute;
  z-index: 1;
  background-image: linear-gradient(180deg, #ffffffb8 0%, rgba(43, 47, 56, 0) 95%);
}

/*add transparent header height*/
body:not(.woocommerce) .banner-container{
  padding-top: 90px;
  border-radius: var(--radius-2);
}

/***  4.1 SCROLL BAR  ***/

.scroll-bar {
  background-color: white;
  box-shadow: var(--shadow-2);
}

.scroll-logo img {max-height: 50px;}



/***  4.2 TOP BAR  ***/

.top-bar {
  padding-top: 2px;
  padding-bottom: 2px;
  background-color: var(--light-2);
}

.top-bar .col-custom {
  padding-top: 2px;
  padding-bottom: 2px;
}



/***  4.3 HEADER  ***/

.header .col-custom {
  padding-top: 0;
  padding-bottom: 0;
}

.header .logo-wrapper {
  padding-top: 10px;
	padding-bottom: 10px;
}

.logo img {max-height: 50px;}

/* Menu Button */

.header .menu-button .fal, 
.header .menu-button:hover .fal {
  color: var(--secondary);
  border: 1px solid var(--secondary);
  font-size: 1.4em;
  padding: .3em;
}

.header .menu-button.active .fal {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}



/***  4.4 NAV BAR  ***/



/***  4.5 NAV MENUS  ***/

.nav-menu > li > a {
  padding-top: 22px;
	padding-bottom: 22px;
  color: var(--dark-1);
  font-size: 0.938em;
}

.nav-menu > li.current-menu-ancestor > a, 
.nav-menu > li.current-menu-item > a,
.single-service .nav-menu > li.services-link > a, 
.single-post .nav-menu > li.posts-link > a, 
.category .nav-menu > li.posts-link > a, 
.nav-menu > li:hover > a {color: var(--secondary);}



/***  4.6 DROPDOWN MENUS  ***/

.nav-menu > .menu-item-has-children>a:after{
  content: '\f107';
  font-family: "Font Awesome 5 Pro";
  margin-left: 10px;
}

.nav-menu li>ul{
  border-top: 2px solid var(--secondary);
}

.nav-menu li ul a {
  text-align: left;
  color: var(--dark-1);
}

.nav-menu li ul a:hover{color: var(--secondary);}



/***  4.7 MOBILE NAV  ***/

.mobile-menu > li a {
  color: var(--dark-1);
  border-bottom: 1px solid #2b2f3821;
}

.mobile-menu > li.current_page_item a{color: var(--secondary);}

.mobile-menu .fkcart-shortcode-container{
  margin-left: 15px;
  margin-top: 5px;
}

/*mobile submenu*/
.mobile-menu .sub-menu{padding-left: 10px;}



/******************************************************************************
 * * *  5 BODY STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/

/***  5.1 BANNER  ***/

.banner {
  background-color: var(--light-1);
  color: white;
  border-bottom-right-radius: var(--radius-3);
  border-bottom-left-radius: var(--radius-3);
}

.banner-inner {
  min-height: 350px;
  padding-top: 80px;
	padding-bottom: 80px;
}

.banner-tall .banner-inner {min-height: 550px;}

.banner a {color: var(--primary);}

.banner a:hover {color: white;}



/***  5.2 BREADCRUMBS  ***/

.breadcrumbs {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: var(--light-2);
}

.banner h1{color: var(--dark-1);}


/***  5.3 TITLE BAR  ***/

.title-bar {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: var(--light-1);
}



/***  5.4 PAGE NAV BAR  ***/

.page-nav-bar .page-menu {
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: center;
}

.page-nav-bar .page-menu {display: flex;}

.page-nav-bar .page-menu li {
  margin: 0;
  font-size: 0.9em;
  line-height: 1.4;
  text-align: center;
}

.page-nav-bar .page-menu li > a {
    padding: 24px 18px;
    display: flex;
    align-items: center;
    color: var(--dark-1);
    -webkit-transition: all 350ms ease-in-out;
    -moz-transition: all 350ms ease-in-out;
    -o-transition: all 350ms ease-in-out;
    -ms-transition: all 350ms ease-in-out;
    transition: all 350ms ease-in-out;
}

.page-nav-bar .page-menu li.current-menu-item > a, 
.page-nav-bar .page-menu li:hover > a {
    background: var(--primary);
    text-decoration: none;
    color: white;
}



/***  5.5 MAIN  ***/

.main, 
.section-spacer {
  padding-top: var(--spacer-md);
  padding-bottom: var(--spacer-md);
}

.section-spacer-top {padding-top: var(--spacer-md);}
.section-spacer-btm {padding-bottom: var(--spacer-md);}

.section-spacer-sm {
  padding-top: var(--spacer-sm);
  padding-bottom: var(--spacer-sm);
}

.section-spacer-top-sm {padding-top: var(--spacer-sm);}
.section-spacer-btm-sm {padding-bottom: var(--spacer-sm);}

.section-spacer-lg {
  padding-top: var(--spacer-lg);
  padding-bottom: var(--spacer-lg);
}

.section-spacer-top-lg {padding-top: var(--spacer-lg);}
.section-spacer-btm-lg {padding-bottom: var(--spacer-lg);}

@media screen and (min-width: 421px) {
.content .alignleft {margin: 0 20px 1em 0;}
.content .alignright {margin: 0 0 1em 20px;}
}



/***  5.6 ARCHIVE  ***/

/* Entry Cols */

.entry-cols .entry-link {
  border-radius: var(--radius-2);
  background-color: var(--light-3);
  overflow: hidden;
  color: var(--dark-2);
}

.entry-cols .entry-link:hover {transform: translateY(-3px);}

.entry-cols .entry-icon-wrap {padding: 30px 30px 0;}

.entry-cols .entry-icon-wrap svg {
  width: 60px;
	fill: var(--primary);
}

.entry-cols .entry-link .entry-title, 
.entry-cols .entry-link:hover .entry-title {color: var(--secondary);}

.entry-cols .entry-text-wrap {padding: 30px 30px 85px 30px;}

.entry-cols .entry-meta, 
.entry-cols .entry-meta li {
  margin-left: 0;
  list-style: none;
}

.entry-cols .entry-meta li:not(:last-child) {margin-right: 10px;}

.entry-cols .entry-date {
  font-size: 0.9em;
	color: var(--dark-3);
}

.entry-cols .entry-cats {
  position: absolute;
  top: 30px;
  left: 30px;
}

.entry-cols .entry-cats span {
  border-radius: var(--radius-2);
  padding: 5px 10px;
  margin: 0;
  margin-right: 4px;
  background: rgba(0,0,0,0.4);
  color: white;
}

.entry-cols .entry-more {
  position: absolute;
  width: 100%;
  left: 30px;
  bottom: 30px;
}

.entry-cols .entry-link .entry-button {color: var(--primary);}

.entry-cols .entry-link:hover .entry-button {color: var(--secondary);}

/* Paging Nav */

.archive-nav a {
  padding: 0.6em 1.2em;
  border-radius: var(--radius-3);
	border: 1px solid var(--light-1);
  background: var(--light-2);
  color: var(--dark-1);
}

.archive-nav a:hover {
  background-color: var(--secondary);
  color: white;
}



/***  5.7 SINGLE  ***/





/******************************************************************************
 * * *  6 FOOTER STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/



/***  6.1 CTA BAR  ***/

.cta-bar {
  padding-top: 80px;
	padding-bottom: 350px;
  background-color: #F4F5F8;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-bar:after{
  content: ' ';
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  position: absolute;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url(/wp-content/uploads/CTA-bg.jpg);
  background-position: center bottom;
  visibility: visible;
  max-width: 1920px;
  z-index: -1;
}

.cta-bar .grid {align-items: center;}

.cta-bar .col-custom:last-child {margin-top: 1em;}

.cta-bar .cta-title, 
.cta-bar .elementor-widget-heading {margin-bottom: 0.5em;}

.cta-bar .cta-title + p {margin-top: 0;}

.cta-bar-container{max-width: 800px;}


.cta-bar .button{margin-top: 1.3em;}

.cta-bar h3{font-size: 2.5em;}

.cta-bar a.button{
  padding: 0.75em 2em;
  min-width: 150px;
  border: 2px solid var(--secondary);
	border-radius: var(--radius-2);
  background-color: var(--secondary);
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .85em!important;
}

.cta-bar a.button:hover{
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

@media screen and (max-width:1024px){
.cta-bar{padding-bottom: 220px;}  
}

@media screen and (max-width:700px){
  .cta-bar{padding-bottom: 160px;}  

  .cta-bar:after{background-size: cover;}
}

/***  6.2 FOOTER  ***/

.footer {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: transparent;
  font-size: 0.9em;
}

.footer .col-custom {
  padding-top: 15px;
  padding-bottom: 15px;
}

.footer a {color: var(--dark-3);}

.footer a:hover {
  text-decoration: none;
  color: var(--primary);
}

.footer img{max-height: 70px;}

.footer .footer-site-title{
  text-align: center;
  margin-top: .5em;
  margin-bottom: 1em;
  font-weight: 800;
}

.footer .social-list{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.footer .social-list i{
  background-color: var(--dark-3);
  color: white;
  padding: .5em;
}

.footer .social-list i:hover{background-color: var(--primary);}

.footer h4{
  font-weight: 400;
}

/* Footer Menus */

.footer .menu {margin-top: -5px;}

.footer .menu a {
  display: block;
	padding-top: 5px;
	padding-bottom: 5px;
}

/* Footer Icon List */

.footer .arrow-list li, 
.footer .check-list li, 
.footer .check-circle-list li, 
.footer .icon-list li, 
.footer .contact-list li {margin-left: 1.75em;}



/***  6.3 BOTTOM BAR  ***/

.bottom-bar {
  padding-top: 2em;
  padding-bottom: 2em;
  background-color: transparent;
  border-top: 1px solid #eaeaea;
  font-size: 0.9em;
}

.bottom-bar .col-custom {
  padding-top: 10px;
  padding-bottom: 10px;
}

.bottom-bar a {color: var(--dark-3);}

.bottom-bar a:hover {
  text-decoration: none;
  color: var(--primary);
}

.copyright, .credits {display: inline-block;}

.credits img {width: 1.1em;}





/******************************************************************************
 * * *  7 CUSTOM STYLES  * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/

.bg-dk-one{background-color: var(--dark-1);}

.bg-dk-two{background-color: var(--dark-2);}

.bg-dk-three{background-color: var(--dark-3);}

.bg-white{background-color: white}

.bg-lt-two{background-color: var(--light-2);}

.bg-lt-three{background-color: var(--light-3);}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6{color:white;}

.boxed-cols{

}

.radius-1,
.radius-1 img{border-radius: var(--radius-1);}

.radius-2{border-radius: var(--radius-2);}

.radius-3{border-radius: var(--radius-3);}

/*elementor defaults*/
.elementor-testimonial-wrapper .elementor-testimonial-content{
  font-size: 1em;
  color: var(--dark-3);
}

.elementor-testimonial-wrapper .elementor-testimonial-name{
  font-size:1.125em;
  font-weight: 500;
  margin-bottom: 10px;
}

/* Add custom theme styles here */
/*home-categories*/
.home-categories .elementor-column{margin: 20px;}

/**side cart*/
.fkcart-shortcode-container{
  gap: 10px;
  position: relative;
  top: 4px;
}

.fkcart-shortcode-container .fkcart-shortcode-count{
  right: -10px;
  background-color: var(--secondary);
  color: var(--dark-1);
}

/*ea link sections*/
div[data-eael-wrapper-link]:hover{box-shadow: var(--shadow-1);}

div[data-eael-wrapper-link]:hover .no-padding-btn .elementor-button{color: var(--primary);}

/*contact page links*/
.contact-details .elementor-icon-box-description a{color: var(--dark-1);}

.contact-details .elementor-icon-box-description a:hover{color: var(--primary);}

.contact-details .elementor-icon-box-wrapper i{color: var(--secondary);}

/*WOOCOMMERCE*/
.woocommerce-error, .woocommerce-info, .woocommerce-message{border-top-color:var(--secondary) ;}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt{
  padding: 0.75em 2em;
  min-width: 150px;
  border: 2px solid var(--secondary);
	border-radius: var(--radius-2);
  background-color: var(--secondary);
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .85em!important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:hover{
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

/*product archive*/
.woo-with-sb{
  display: flex;
  align-items: flex-start;
  gap: 30px;
  max-width: 1200px;
  padding: 50px;
  margin: auto;
}

.woo-with-sb #primary{
  background-color: white;
  padding: 60px;
  flex: 2.5;
}

.woo-with-sb #sidebar{
  flex: 1;
}

.woo-with-sb #sidebar > div{  
  background-color: white;
  padding: 30px;
  margin-bottom: 30px;
}

.woo-with-sb #sidebar li{
  list-style: none;
  margin-left: 0;
}

.woo-with-sb #sidebar .cat-item span{float: right;}

.woocommerce .widget_price_filter .ui-slider-horizontal{height: .2em;}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle{
  background-color: var(--dark-1);
  top: -.4em;
}

.woo-with-sb .woocommerce ul.product_list_widget li{margin-bottom: 20px;}

.woo-with-sb .woocommerce ul.product_list_widget li img{
  width: unset;
  margin-bottom: 10px;
}

.woo-with-sb li .product-title{color: var(--dark-1);}

.woo-with-sb li:hover .product-title{color: var(--primary);}

.woo-with-sb li:hover a{text-decoration: none;}

.woo-with-sb .eael-star-rating{display: none;}

.woocommerce-Price-amount{
  font-size: .95em;
  color: var(--dark-1);
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range{background-color: var(--secondary);}


.woocommerce .widget_price_filter .price_slider_amount{
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button{
  padding: 0.75em 2em;
  min-width: 150px;
  border: 2px solid var(--secondary);
	border-radius: var(--radius-2);
  background-color: var(--secondary);
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .85em!important;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover{
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

.woocommerce-ordering{clear: none;}

.woocommerce ul.products li.product .onsale{
  top: 20px;
  left: 15px;
  color: var(--dark-1);
  background-color: white;
  border-radius: var(--radius-1);
  width: fit-content;
  padding: 0.4em 0.8em;
  font-size: .87em;
  line-height: normal;
  box-shadow: var(--shadow-2);
  min-height: unset;
}

ul.products a.add_to_cart_button span:before{
  content: '\f291';
  font-family: "Font Awesome 5 Pro";
}

.woocommerce ul.products li.product .button{
  width: 32px;
  height: 32px;
  min-width: unset;
  visibility: hidden;
  position: absolute;
  right: 15px;
  top: 15px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  box-shadow:var(--shadow-2);
  margin-top: 0;
}

.woocommerce ul.products li.product:hover .button{ visibility: visible; }

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.added::after{display: none;}

ul.products li:hover .woocommerce-loop-product__title{color: var(--primary);}

ul.products a .product-cats,
ul.products a:hover .product-cats{
  color: var(--dark-3);
  font-size: .85em;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price{color: var(--dark-1);}

@media screen and (max-width:900px) {
  .woocommerce .woocommerce-ordering, .woocommerce-page .woocommerce-ordering{float: none;}
}

@media screen and (max-width:768px) {
  .woo-with-sb{flex-direction: column-reverse;}

  .woo-with-sb #primary,
  .woo-with-sb #sidebar{
    padding: 20px;
  }
}

@media screen and (max-width:600px) {
  .woo-with-sb{padding: 25px;}

  .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product{
    width: 100%;
  }
}

.woocommerce ul.products li.product .price ins{text-decoration: none;}

/*product single*/
body.single-product #sidebar{display: none;}

body.single-product #primary{
  padding: 50px;
  max-width: 1200px;
  margin: auto;
}

body.single-product .site-main{
  background-color: white;
  padding: 80px;
}

body.single-product .product_title{
  font-size: 2.5em;
  font-weight: 400;
}

body.single-product .price{
  color: var(--dark-1)!important;
  font-weight: 700;
}

body.single-product .product_meta{
  font-size: .8em;
  border-top: 1px solid #dddddd;
  padding-top: 5px;
}

body.single-product .product_meta a{color: var(--dark-1);}

body.single-product .product_meta a:hover{color: var(--primary);}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce-message a.button{
  padding: 0.75em 2em;
  min-width: 150px;
  border: 2px solid var(--secondary);
	border-radius: var(--radius-2);
  background-color: var(--secondary);
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .85em!important;
  margin-left: 20px;
  text-align: center;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover,
.woocommerce-message a.button:hover{
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

.woocommerce-Tabs-panel h2{display: none;}

section.related{margin-top: 80px;}

@media screen and (max-width:600px){
  body.single-product #primary{padding: 25px;}

  body.single-product .site-main{padding: 30px;}
}

/*side cart*/
#fkcart-modal .fkcart-checkout-wrap #fkcart-checkout-button{
  padding: 0.75em 2em;
  min-width: 150px;
  border: 2px solid var(--secondary);
	border-radius: var(--radius-2);
  background-color: var(--secondary);
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .85em!important;
}

#fkcart-modal .fkcart-checkout-wrap #fkcart-checkout-button:hover{
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

/*my account page*/
.my-account-page h2{margin-top: 0;}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit{
  padding: 0.75em 2em;
  min-width: 150px;
  border: 2px solid var(--secondary);
	border-radius: var(--radius-2);
  background-color: var(--secondary);
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .85em!important;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit:hover{
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}
/*
 * END OF
 * CUSTOMIZABLE CSS
 */
