/*
Theme Name: BBBM
Version: 1.0
Theme URI: http://www.cyberoptik.net
Description: Customizable responsive Wordpress theme created by CyberOptik
Author: CyberOptik
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 THEME MODULES
 *   2.3 BACK TO TOP BUTTON
 *
 * 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.ttf');
}

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

/* Semi Bold */
@font-face {
	font-family: 'Poppins';
	font-weight: 600;
	src: url('fonts/Poppins/Poppins-SemiBold.ttf');
}

/* Bold */
@font-face {
	font-family: 'Poppins';
	font-weight: bold;
	src: url('fonts/Poppins/Poppins-Bold.ttf');
}




 
/******************************************************************************
 * * *  2 STRUCTURAL ELEMENTS  * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/
 
 
/***  2.1 UNIVERSAL STYLES  ***/

:root {
	--primary: #7ac142;
	--primary-md: #5DA923;
	--primary-dk: #42860E;
	--primary-lt: #9CDE6A;
	--secondary: #262627;
	--secondary-dk: #111112;
	--secondary-lt: #414148;
	--dark-1: #262627;
	--dark-2: #414141;
	--dark-3: #1e1e1e;
	--light-1: #E9E9E9;
	--light-2: #F2F2F2;
	--light-3: #F7F7F7;
	--radius-1: 50%;
	--radius-2: 8px;
	--radius-3: 24px;
	--shadow-1: 0 24px 42px -16px rgba(0,0,0,0.3);
	--shadow-2: 0 0 20px 0 rgba(0,0,0,.1);
	--font-1: 'Poppins';
}

html {font-size: 16px;}

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

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



/***  2.2 THEME STYLES  ***/

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

.section-spacer {
	padding-top: 80px;
	padding-bottom: 80px;
}

.section-spacer-top {padding-top: 80px;}
.section-spacer-btm {padding-bottom: 80px;}

.section-spacer-sm {
	padding-top: 60px;
	padding-bottom: 60px;
}

.section-spacer-top-sm {padding-top: 60px;}
.section-spacer-btm-sm {padding-bottom: 60px;}

.section-spacer-lg {
	padding-top: 100px;
	padding-bottom: 100px;
}

.section-spacer-top-lg {padding-top: 100px;}
.section-spacer-btm-lg {padding-bottom: 100px;}




/***  2.3 BACK TO TOP BUTTON  ***/

.btt-button .fa {
	border-radius: var(--radius-1);
	background-color: var(--primary-dk);
	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-dk);
	color: white;
}





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



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

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

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



/***  3.2 HEADINGS  ***/

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

h1 {font-size: 2.8em;}
h2 {font-size: 2.25em;}
h3 {font-size: 1.75em;}
h4 {font-size: 1.25em;}
h5 {font-size: 1em;}
h6 {font-size: 0.85em;}



/***  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;
	border: 2px solid var(--primary);
	border-radius: var(--radius-2);
	background-color: var(--primary);
	font-weight: 600;
	color: white;
}

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

/* Empty Button */

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

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


.button-dark,
.btn-dark a {
	background-color: var(--secondary);
	border-color: var(--secondary);
	color: var(--light-3);
}

.button-dark,
.btn-dark a:hover {
	background-color: var(--primary-md);
	border-color: var(--primary-md);
	color: var(--light-3)
}



/***  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(--light-1); border-radius: var(--radius-2);}
.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);}
.contact-list li a:hover {color: var(--primary);}

.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";}

.contact-list a {display: block;}

/* 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"] {
	background-color: var(--primary);
	height: 50px;
	border-radius: var(--radius-2);
	padding: 0.75em 2em;
	color: white;
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

input[type="Submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
	background-color: var(--secondary);
	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  * * * * * * * * * * * * * * * * * * * * * * * * * * * 
******************************************************************************/



/***  4.1 SCROLL BAR  ***/

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

.scroll-bar-inner {position: relative;}

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



/***  4.2 TOP BAR  ***/

.top-bar {
background-color: white;
}



/***  4.3 HEADER  ***/

.header {border-bottom:4px solid var(--primary);}

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

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

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

/*mobile logo*/

@media screen and (max-width: 600px){
.logo img {max-width: 80%;}
}
/* Menu Button */

.header .menu-button .fal, 
.header .menu-button:hover .fal {color: var(--primary);}

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



/***  4.5 NAV MENUS  ***/

.nav-menu {position: static;}

.nav-menu > li > a {
	padding: 36px 12px;
	color: var(--dark-3);
	text-transform: uppercase;
	font-weight: 600;
}

.scroll-menu > li > a {
	padding-top: 26px;
	padding-bottom: 26px;
	font-size: 0.9em;
}

.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.current-menu-ancestor > a, 
.nav-menu > li.current-menu-item > a, 
.nav-menu > li:hover > a {color: var(--primary);}



/***  4.6 DROPDOWN MENUS  ***/

.nav-menu li ul {
	width: 240px;
	background-color: var(--primary-md);
}

.nav-menu li ul li a {
	padding: 12px 16px;
	text-align: left;
	color: white;
	font-size: 0.9em;
	font-weight: 500;
}

.nav-menu li ul li.current-menu-item > a, 
.nav-menu li ul li:hover > a {
	background-color: var(--primary);
	color: white;
}

/* Entry List Dropdown */

.nav-menu > .entry-list-dropdown {position: static;}

.nav-menu > .entry-list-dropdown ul {
	box-shadow: none;
	width: 100%;
}

.nav-menu > .entry-list-dropdown > ul:before {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
	width: 9999px;
	height: 100%;
	background-color: var(--primary-md);
	box-shadow: 0 14px 24px rgba(0,0,0,.2);
	content: '';
}

.nav-menu > .entry-list-dropdown > ul:after {
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 9999px;
	height: 30px;
	content: '';
}

.scroll-menu > .entry-list-dropdown > ul:after {height: 20px;}

.nav-menu > .entry-list-dropdown .entry-list {
	position: static;
	display: flex;
	height: auto;
	width: 100%;
	visibility: visible;
	opacity: 1;
}

.nav-menu > .entry-list-dropdown .entry-list li:first-child {border-left: 1px solid var(--primary);}
.nav-menu > .entry-list-dropdown .entry-list li {border-right: 1px solid var(--primary);}

.nav-menu > .entry-list-dropdown .entry-list li a {
	padding: 40px 20px;
	text-align: center;
}

.nav-menu > .entry-list-dropdown .entry-list .entry-icon-wrap {
	display: block;
	text-align: center;
}

.nav-menu > .entry-list-dropdown .entry-list svg {
	display: inline-block;
	width: 50px;
	height: 50px;
}

.nav-menu > .entry-list-dropdown .entry-list svg, 
.nav-menu > .entry-list-dropdown .entry-list svg * {
	fill: white;
}



/***  4.7 MOBILE NAV  ***/

.mobile-nav {background-color: white;}

.mobile-menu > li:not(:last-child) {border-bottom: 1px solid var(--light-2);}

.mobile-menu li a {color: var(--dark-1); font-weight: 500;}

.mobile-menu li.current-menu-item > a {
	background-color:var(--primary);
	color: white;
}

.mobile-menu li ul {
	background-color: var(--light-2);
	font-size: 0.9em;
}

.mobile-menu li.menu-item-has-children:after {color: var(--dark-1);}

.mobile-menu li > ul.entry-list {max-height: none;}

.mobile-menu .entry-list .entry-icon-wrap {
	display: none;
	height: 0;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
}




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



/***  5.1 BANNER  ***/

.banner {
	background-color: var(--dark-1);
	text-align: center;
	color: white;
}

.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.4 PAGE NAV BAR  ***/

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

.page-nav-bar {
	background-color: var(--primary-md);
}

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

.page-nav-bar {
	padding-top: 20px;
	padding-bottom: 20px;
}

}

.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;
	background-color: var(--primary-md);
	border-right: 1px solid var(--primary);
}

.page-nav-bar .page-menu li:first-child {border-left: 1px solid var(--primary);}

.page-nav-bar .page-menu li > a {
	padding: 16px 18px;
	display: flex;
	align-items: center;
	color: white;
	-webkit-transition: all 350ms ease-in-out;
	-moz-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;
}

.page-nav-bar .entry-icon-wrap {
	display: inline-block;
	vertical-align: middle;
	margin-right: 15px;
}

.page-nav-bar li a svg {
	width: 32px;
	height: 32px;
}

.page-nav-bar li a svg, 
.page-nav-bar li a svg * {
	fill: white;
}



/***  5.5 MAIN  ***/

.main, 
.section-spacer {
	padding-top: 80px;
	padding-bottom: 80px;
}

@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 {
	background-color: transparent;
	border-top: 10px solid transparent;
	border-radius: var(--radius-2);
	overflow: hidden;
	color: var(--dark-2);
	text-align: center;
}

.entry-cols .entry-link:hover	{
	border-top-color: var(--primary);
	background-color: white;
	box-shadow: var(--shadow-2);
}

.entry-cols .entry-link svg {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.entry-cols .entry-link:hover svg {border: 3px solid var(--primary); }

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

.entry-cols .entry-icon-wrap svg {
	width: 100px;
	fill: var(--primary);
	height: 100px;
	background: var(--light-1);
	border-radius: var(--radius-3);
	padding: 20px;
	border: 3px solid var(--primary-lt);
}

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

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

.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: 0;
	bottom: 30px;
}

.entry-cols .entry-link .entry-button {color: var(--primary); text-transform: uppercase; font-weight: 500;}

.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: 80px;
	background-color: var(--dark-1);
	text-align: center;
	color: white;
}

.cta-bar .cta-bar-inner {
	width: 100%;
	max-width: 610px;
	padding: 0 15px;
	margin: 0 auto;
}

.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 h1, 
.cta-bar h2, 
.cta-bar h3, 
.cta-bar h4, 
.cta-bar h5, 
.cta-bar h6, 
.cta-bar .elementor-heading-title {color: white;}

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



/***  6.2 FOOTER  ***/

.footer {
	padding-top: 80px;
	padding-bottom: 80px;
	background-color: var(--light-3);
	font-size: 0.9em;
}

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

@media screen and (min-width: 1201px) {
	.footer .col-custom {
		width: 22% !important;
	}
	.footer .col-custom:first-child {width: 34% !important;}
}

.footer .col-custom h1,
.footer .col-custom h2,
.footer .col-custom h3,
.footer .col-custom h4,
.footer .col-custom h5,
.footer .col-custom h6 {
	color: var(--primary-md);
	text-transform: uppercase;
}

.footer .col-custom img {max-width: 250px;}

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

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

/* Footer Menus */

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

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

.footer .entry-list .entry-icon-wrap {
	display: none;
	visibility: hidden;
	opacity: 0;
	height: 0;
	overflow: hidden;
}

/* 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: 20px;
	padding-bottom: 20px;
	background-color: var(--light-3);
	color: var(--dark-1);
	font-size: 0.9em;
	border-top: 1px solid var(--light-1);
}

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

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

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

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

.credits img {width: 1.1em;}





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



/***  COLOR BARS  ***/

.dark-bar {padding:80px 0; background: var(--dark-1); color:white;}
.light-bar {padding:80px 0; background: var(--light-1); }
.primary-bar {padding:80px 0; background: var(--primary-dk); color:white;}



/***  HEADINGS  ***/

.primary-title h1, 
.primary-title h2, 
.primary-title h3, 
.primary-title h4, 
.primary-title h5, 
.primary-title h6 {color: var(--primary);}

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



/***  GRADIENTS  ***/

.gradient-main {
	background-color: transparent;
	background-image: linear-gradient(180deg, #42860E 25%, #FFFFFF 10%);
}

@media (max-width: 990px) {
.gradient-main {
	background-color: transparent;
	background-image: linear-gradient(180deg, #42860E 12%, #FFFFFF 10%);
}
}

.gradient-item {
	padding-top: 100px;
	min-height:100%;
	background-image: linear-gradient(to bottom, var(--primary-lt) 0 30%, var(--primary) 0 60%, var(--primary-md) 0 80%);
}

.gradient-item-sub {
	padding-top: 100px;
	min-height:100%;
	background-image: linear-gradient(to bottom, var(--primary-md) 0 30%, var(--primary) 0 60%, var(--primary-lt) 0 80%);
}



/***  BOX COLS  ***/

.box-cols .elementor-widget-wrap, 
.box-col .elementor-widget-wrap {
	padding: 25px 25px 65px 25px !important;
	border-radius: var(--radius-2);
	background-color: white;
	overflow: hidden;
	color: var(--dark-2);
	text-align: center;
	border-top: 10px solid transparent;
	transition: 0.2s ease-in-out;
}

.box-cols .elementor-widget-wrap:hover, 
.box-col .elementor-widget-wrap:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-2);
	border-top: 10px solid var(--primary);
}

.box-cols .elementor-widget-button, 
.box-col .elementor-widget-button {
	padding: 0;
	position: absolute;
	bottom: 25px;
	left: 0;
	color: var(--primary);
}



/***  FRONTPAGE BANNER SLIDER  ***/

.fp-banner {position: relative;}

.fp-banner::after {
	position: absolute;
	inset: 0;
	background: var(--dark-1);
	content: "";
	width: 100%;
	opacity: 0.6;
}

.fp-banner .fp-banner-left-col {
	position: relative;
	z-index: 1;
	width: 100% !important;
	padding: 180px 80px 180px 0;
}

@media (min-width: 900px) {
.fp-banner .fp-banner-left-col {
	width: 50%;
	max-width: 800px;
}
}

@media (min-width: 968px) {
.fp-banner::after {width: 50% !important;}
}



/***  SERVICE COLS  ***/

.service-cols .grid {justify-content: center;}

.service-cols .service-text-wrap {padding-bottom: 20px;}

.servic-cols .service-excerpt {margin-bottom: 0 !important;}

.service-cols .service-more {display: none;}





/*
 * END OF
 * CUSTOMIZABLE CSS
 */