/*
Theme Name: AC Technician
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
 *
 * 2 STRUCTURAL ELEMENTS
 *   2.1 UNIVERSAL STYLES
 *   2.2 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 HEADER 
 *   4.3 NAV MENUS
 *   4.4 DROPDOWN MENUS
 *   4.5 MOBILE NAV
 *
 * 5 BODY STYLES
 *   5.1 BANNER
 *   5.2 PAGE NAVBAR
 *   5.3 MAIN
 *   5.4 ARCHIVE
 *   5.5 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");



/***  MONTSERRAT  ***/

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

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

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

/* Black */
@font-face {
	font-family: 'Montserrat';
	font-weight: 900;
	src: url('/fonts/Montserrat/Montserrat-Black.ttf');
}





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



/***  2.1 UNIVERSAL STYLES  ***/

:root {
	--primary: #22d375;
	--primary-lt: #1fe57c;
	--primary-dk: #10bd61;
	--secondary: #2171ff;
	--secondary-lt: #2c87fa;
	--secondary-dk: #071d45;
	--accent: ;
	--accent-lt: ;
	--accent-dk: ;
	--dark-1: #0a0a0a;
	--dark-2: #111a28;
	--dark-3: #423838;
	--light-1: #f8f9fa;
	--light-2: #f3f4f6;
	--light-3: #f0f0f0;
	--light-4: #b0bec5;
	--light-5: #afafaf;
	--gradient-1: linear-gradient(0deg, #0a0a0a 0%, #232526 100%);
	--shadow-1: 0px 0px 30px 0px rgba(0,0,0,0.1);
	--shadow-2: 0 0 55px 0 rgba(0,0,0,.31);
	--shadow-3: 0 0 25px 0 rgba(0,0,0,.15);
	--radius-0: 50%;
	--radius-1: 2px;
	--radius-2: 5px;
	--radius-3: 15px;
	--gap-xs: 5px;
	--gap-sm: 10px;
	--gap-md: 15px;
	--gap-lg: 20px;
	--gap-xl: 30px;
	--spacer-xs: 20px;
	--spacer-sm: 60px;
	--spacer-md: 100px;
	--spacer-lg: 120px;
	--spacer-xl: 160px;
	--font-1: 'Montserrat', sans-serif;
}

html {font-size: 16px;}

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

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



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

.btt-button .fa {
	background: var(--primary);
	border-radius: 20px;
	font-weight: 300;
	color: white;
}

.btt-button:hover .fa {
	background: var(--primary-dk);
	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 .fas, 
.elementor .far, 
.elementor .fa {
	font-family: 'Font Awesome 5 Pro';
	font-weight: 300;
}

/* 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(--secondary);}

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



/***  3.2 HEADINGS  ***/

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

h1 {font-size: 4.6875em;}
h2 {font-size: 2.375em;}
h3 {font-size: 1.625em;}
h4 {font-size: 1.42em;}
h5 {font-size: 1.28em;}
h6 {font-size: 1em;}



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

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



/***  3.4 BUTTONS  ***/

.button,
.elementor-button {
	border-radius: var(--radius-1);
	padding: 15px 40px;
	border: 1px solid var(--primary);
	background-color: var(--primary);
	font-weight: 600;
	font-size: 0.9em;
	color: white;
}

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

.button i, 
.elementor-button i {
	color: white !important;
}

/* Bordered Button */

.button-bordered, 
.bordered-button .elementor-button {
	background: none;
	color: var(--primary);
}

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



/***	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(--primary-lt);}

/*	Icon Backgrounds	*/

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

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

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

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

/* 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(--primary);}



/***	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(--secondary);
}

.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(--secondary);}

/* Buttons */

input[type="submit"], input[type="reset"], input[type="button"] {
	background-color: var(--secondary);
	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(--primary);
	color: white;
}

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

/* Search Form */

.search-form {position: relative;}

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

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: white;
	box-shadow: var(--shadow-3);
}

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



/***	4.2 HEADER	***/

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

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

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

.header-right {
	display: none;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: flex-start;
	align-items: center;
	text-align: right;
}
@media (min-width: 1024px) {
	.header-right {
		display: flex;
	}
}

.header-right .section {
	width: auto;
	margin: 0;
	margin-left: 20px;
}

/* Menu Button */

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

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



/***	4.3 NAV MENUS	***/

.nav-menu > li > a {
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 15px;
	padding-right: 15px;
	font-size: 0.9em;
	color: var(--dark-1);
}

.nav-menu > li.menu-item-has-children > a:after {
	display: inline-block;
	vertical-align: middle;
	margin-left: 0.5em;
	padding-bottom: 0.15em;
	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;
	font-size: 1em;
	content: "\f107";
	color: var(--dark-2);
}

.single-service .nav-menu > li.services-link > a,
.nav-menu > li.current-page-ancestor > a,
.nav-menu > li.current-page-parent > a,
.nav-menu > li.current-menu-item > a, 
.nav-menu > li:hover > a {
	color: var(--primary);
}



/***	4.4 DROPDOWN MENUS	***/

.nav-menu li ul {
	border-radius: var(--radius-2);
	background-color: var(--dark-2);
}

.nav-menu > li > ul {
	left: 50%;
	transform: translateX(-50%);
}

.nav-menu > li > ul:before {
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	width: 1em;
	height: 1em;
	display: block;
	font-family: 'Font Awesome 5 Pro';
	font-weight: 900;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	font-size: 2.5em;
	text-align: center;
	color: var(--dark-1);
	content: "\f0d8";
}

.nav-menu li ul li a {
	padding-top: 8px;
	padding-bottom: 8px;
	font-size: 0.9em;
	text-align: center;
	color: white;
}

.nav-menu li ul li:first-child {padding-top: 5px;}
.nav-menu li ul li:last-child {padding-bottom: 5px;}

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

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



/***	4.5 MOBILE NAV	***/

.mobile-nav {
	background: var(--dark-1);
}

.mobile-menu li {
	margin: 0 12px;
}

.mobile-menu > li.menu-item-has-children > a:after {
	display: inline-block;
	vertical-align: middle;
	margin-left: 0.5em;
	padding-bottom: 0.15em;
	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;
	font-size: 1em;
	content: "\f107";
	float: right;
}

.mobile-menu > li > a { color: #fff;}
.mobile-menu > li.current_page_parent > a,
.mobile-menu > li.current_page_parent > ul > li.current_page_item > a, 
.mobile-menu > li.current_page_item > a { color: var(--secondary-lt);}

.mobile-menu > li.current_page_parent > ul > li > a,
.mobile-menu > li > ul > li > a {
	color: white;
}

#menu-primary-2 > li.nav-menu-icon.menu-item.menu-item-type-custom.menu-item-object-custom > a > span > i {
	font-style: normal !important;
	font-weight: 900;
	font-family: 'Font Awesome 5 Brands';
}
#menu-primary-2 > li.nav-menu-icon.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-429 > a > span > i {
	font-family: 'Font Awesome 5 Pro';
}





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



/***	5.1 BANNER	***/

.banner {
	background-color: var(--secondary);
	color: white;
}

.banner-inner {
	min-height: 275px;
	padding-top: 50px;
	padding-bottom: 50px;
	text-align: center;
}



/***	5.2 PAGE NAV BAR	***/

.page-nav-bar {border-bottom: 1px solid var(--light-2);}

.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 {color: var(--primary-lt);}

.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.4 ARCHIVE	***/

/* Entry Cols */

.entry-cols .entry-link {
	border-radius: var(--radius-2);
	background-color: var(--light-4);
	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(--secondary);
}

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

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

.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(--secondary);}

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

/* Paging Nav */

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

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



/***  5.5 SINGLE  ***/





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



/***	6.1 CTA BAR	***/

.cta-bar {
	padding-top: 60px;
	Padding-bottom: 60px;
	background-color: var(--primary-dk);
	text-align: center;
	color: white;
}

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

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

@media screen and (min-width: 901px) {
.cta-bar .col-custom:first-child:not(:last-child) {
	width: 66.7%;
	text-align: left;
}
.cta-bar .col-custom:last-child:not(:first-child) {
	width: 33.3%;
	text-align: right;
	margin-top: 0;
}
}

.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, 
.cta-bar .elementor-button {
	background-color: var(--secondary-dk);
	color: white;
}

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




/***	6.2 FOOTER	***/

.footer {
	padding-top: var(--spacer-sm);
	padding-bottom: var(--spacer-sm);
	background: var(--dark-1);
	font-size: 0.9em;
	color: var(--light-3);
}
 
.footer .col-custom {
	padding-top: 15px;
	padding-bottom: 15px;
}

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

.footer a {color: white;}

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

/* Footer Menus */

.footer .menu li a, 
.footer .contact-list li a {display: block;}

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

.bottom-bar-widget li a {color: white;}

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

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

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

.credits img {
	width: 1.4em;
	margin-top: -2px;
}





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



/***  HOMEPAGE BANNER  ***/

.home-banner {
	background-color: var(--secondary);
	color: white;
}

.home-banner .elementor-heading-title {color: white;}

.home-banner .elementor-column:last-child {
	padding: 160px 60px;
}

@media (max-width: 900px) {
.home-banner .elementor-column:last-child {
	padding: 60px 30px;
}
}

@media (max-width: 600px) {
.home-banner .elementor-column:last-child {
	padding: 40px 20px;
}
}



/***  PHONE BAR  ***/

.phone-bar {
	background-color: var(--dark-1);
	color: white;
	padding: 30px 0;
	-webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.phone-bar:hover {
	background-color: var(--dark-2);
}

.phone-bar .elementor-column .elementor-widget-wrap {justify-content: center;}

.phone-bar .elementor-heading-title {color: white;}

.phone-bar .elementor-heading-title span {
	-webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.phone-bar:hover .elementor-heading-title span {color: var(--primary);}




/** Section - Testimonials **/

.testimonials-section {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.testimonials-section .section-heading {
	text-align: center;
	color: white;
	margin-bottom: 60px;
}
.testimonials-section .section-heading .elementor-icon-box-title {
	margin-bottom: 10px;
}
.testimonials-section .section-heading .elementor-icon-box-description {
	margin-top: 0;
}
.testimonials-section .section-heading h1,
.testimonials-section .section-heading h2,
.testimonials-section .section-heading h3,
.testimonials-section .section-heading h4,
.testimonials-section .section-heading h5,
.testimonials-section .section-heading h6 {
	color: white;
}
.testimonials-section .testimonial-cards-wrapper {
	max-width: 1122px;
	margin: 0 auto;
}
.testimonials-section .testimonial-cards-wrapper .elementor-inner-column {
	width: 100%;
}
.testimonial-card {
	padding: 35px;
	background-color: white;
	height: 100%;
	border-radius: 5px;
	transition: all 0.3s ease;
}
.testimonial-card:hover {
	box-shadow: 0 0 55px 0 rgba(0,0,0,.31);
	transition: all 0.3s ease;
}
.testimonial-card .elementor-testimonial-wrapper {
	text-align: left !important;
}
.testimonial-card .elementor-testimonial-wrapper .elementor-testimonial-content {
	font-size: 1.29em;
}
.testimonial-card .elementor-testimonial-wrapper .elementor-testimonial-name {
	font-size: 1em;
}
@media (max-width: 968px) {
	.testimonials-section {
		padding: 60px 0;
	}
}



/** Section - Services - Services Page **/
.services-section {
	background-color: var(--light-2);
}
.services-section .section-heading {
	text-align: center;
	margin-bottom: 60px;
}
.services-section .section-heading .elementor-icon-box-title {
	margin-bottom: 10px;
}
.services-section .section-heading .elementor-icon-box-description {
	margin-top: 0;
}
.services-section article.service .service-link {
	background-color: transparent;
}
.services-section article.service .service-link .entry-icon-wrap,
.services-section article.service .service-link .entry-text-wrap {
	text-align: center;
}
.services-section article.service .service-link .entry-icon-wrap svg {
	height: 56px;
}
.services-section article.service .service-link .entry-icon-wrap {
	padding-top: 0;
}
.services-section article.service .service-link .entry-text-wrap {
	padding-top: 0;
	padding-bottom: 0;
}
.services-section article.service .service-link .entry-text-wrap .entry-title {
	font-size: 1.3em;
	color: var(--dark-1);
}
.services-section article.service .service-link .entry-more {
	display: none;
}
@media (min-width: 768px) {
	.services-section article.service .service-link .entry-icon-wrap svg {
		height: 120px;
		width: 120px;
	}
}
@media (min-width: 1024px) {
	.services-section article.service .service-link .entry-icon-wrap svg {
		height: 56px;
		width: 56px;
	}
}
@media (max-width: 1024px) {
	.services-section {
		padding: 60px 0;
	}
	.services-section article.service {
		width: 100% !important;
	}
}

/** Section - Text Gallery **/
.text-gallery .section-heading .elementor-icon-box-title {
	margin-bottom: 0;
}
.text-gallery .section-heading h2 {
	font-size: 2.7em;
}
.text-gallery .right-wrapper-gallery .gallery-item {
	padding: 15px 0;
}
@media (min-width: 1024px) {
	.text-gallery .left-wrapper-text {
		padding-right: 70px;
	}	
	.text-gallery .right-wrapper-gallery {
		padding-left: 70px;
	}
}
@media (max-width: 900px) {
	.text-gallery .section-heading {
		text-align: center;
	}
}
@media (max-width: 1024px) {
	.text-gallery {
		padding: 60px 0;
	}
	.text-gallery .left-wrapper-text {
		width: 100%;
	}
	.text-gallery .right-wrapper-gallery {
		width: 100%;
	}
}



/** Section - Image Accordion **/
.image-accordion {
	background-color: var(--light-2);
}
.image-accordion .right-wrapper {
	padding: 0 0 145px 0;
}
.image-accordion .elementor-accordion .elementor-accordion-item {
	border: none;
	padding: 15px;
	background: white;
	margin-bottom: 20px;
	box-shadow: 0 0 30px 0 rgba(0,0,0,.1);
	background-color: var(--light-2);
}
.image-accordion .elementor-accordion .elementor-accordion-item:last-of-type {
	margin-bottom: 0;
}
.image-accordion .elementor-accordion .elementor-accordion-item .elementor-accordion-title {
	font-size: 1.3em;
}
.image-accordion .elementor-accordion .elementor-accordion-item .elementor-accordion-title:hover {
	text-decoration: none;
	color: unset;
}
.image-accordion .elementor-accordion .elementor-accordion-item .elementor-accordion-icon {
	float: right;
	text-align: right;
}
.image-accordion .elementor-accordion .elementor-tab-content {
	border-top: unset;
}
@media (min-width: 600px) {
	.image-accordion .right-wrapper {
		padding: 0 0 60px ;
	}
}
@media (min-width: 900px) {
	.image-accordion .right-wrapper {
		padding: 0 0 60px 40px;
	}
}
@media (max-width: 900px) {
	.image-accordion {
		padding-top: 60px;
	}
}

/** Section - Image-bot Text **/
.image-box-text .section-content .elementor-image-box-content .elementor-image-box-title {
	font-size: 2.7em;
}
.image-box-text .left-wrapper .elementor-widget-image img {
	filter: brightness( 104% ) contrast( 104% ) saturate( 52% ) blur( 0px ) hue-rotate( 2deg );
}
@media (max-width: 900px) {
	.image-box-text .section-content .elementor-image-box-content {
		text-align: center;
	}
	.image-box-text .right-wrapper .section-content {
		text-align: center;
		padding-bottom: 30px;
	}
}
@media (min-width: 900px) {
	.image-box-text .right-wrapper .section-content {
		padding: 0 50px 60px 50px;
		text-align: left;
	}
	.image-box-text .section-content .elementor-image-box-content {
		text-align: left;
	}
}

/** Section - Dot-Icon Text **/
.dot-icon-text-section {
	background-color: var(--light-2);
}
.dot-icon-text-section .dot-icon-text .elementor-icon-list-text {
	font-size: 1.45em;
	font-weight: bold;
}
.dot-icon-text-section .dot-icon-text .elementor-icon-list-icon i {
	font-size: 1.85em;
	margin-right: 10px;
}
.dot-icon-text .elementor-icon-list-items {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	row-gap: 30px;
}
.dot-icon-text .elementor-icon-list-items .elementor-icon-list-item {
	width: 100%;
	padding: 0 !important;
	margin: 0 !important;
}
@media (max-width: 1024px) {
	.dot-icon-text-section {
		padding: 60px 0;
	}
	.dot-icon-text-wrapper .elementor-column-wrap {
		padding: 0 !important;
	}
	.dot-icon-text .elementor-icon-list-item {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		text-align: center;
		margin-bottom: 20px;
	}
	.dot-icon-text .elementor-icon-list-item .elementor-icon-list-icon {
		width: 100%;
		display: flex;
		justify-content: center;
	}
	.dot-icon-text .elementor-icon-list-item .elementor-icon-list-icon i {
		margin: 0 0 20px 0;
	}
	.dot-icon-text .elementor-icon-list-item .elementor-icon-list-text {
		width: 100%;
		margin: 0;
		padding: 0;
		text-align: center;
	}
}
@media (min-width: 576px) {
	.dot-icon-text .elementor-icon-list-items .elementor-icon-list-item {
		width: 50%;
	}
}
@media (min-width: 768px) {
	.dot-icon-text .elementor-icon-list-items .elementor-icon-list-item {
		width: 50%;
	}
}
@media (min-width: 1200px) {
	.dot-icon-text .elementor-icon-list-items .elementor-icon-list-item {
		width: 33%;
	}
}

/** Section - Count number **/
.count-number-section {
	background-color: var(--light-2);
}
@media (max-width: 900px) {
	.count-number-section {
		padding: 60px 0;
	}
	.count-number-section .icon-counter-wrapper {
		width: 100%;
	}
}
@media (max-width: 1024px) {
	.count-number-section .elementor-counter-number {
		font-size: 2.5em;
	}
}



/** Section - About - Review Section **/
.review-section-about {
	background-color: var(--light-2);
}
@media (max-width: 900px) {
	.review-section-about {
		padding-top: 0;
	}
	.review-section-about .gallery-item {
		margin-bottom: 30px;
	}
}
.review-section-about .gallery .gallery-item {
	width: 100% !important;
	max-width: unset;
	padding-right: 0;
}
@media (min-width: 600px) {
	.review-section-about .gallery .gallery-item {
		width: 50% !important;
	}
}
@media (min-width: 900px) {
	.review-section-about .gallery .gallery-item {
		width: 33% !important;
	}
}
@media (min-width: 1200px) {
	.review-section-about .gallery .gallery-item {
		width: 100% !important;
		max-width: 20% !important;
		padding-right: 30px !important;
	}
}



/** Section - Testimonial v2 **/
.testimonials-section.version-2 {
	background: rgb(255,255,255);
	background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(243,244,246,1) 100%);
}
.testimonials-section.version-2 .section-heading .elementor-icon-box-title {
	color: var(--dark-1);
}
.testimonials-section.version-2 .testimonial-card {
	box-shadow: 0 0 25px 0 rgba(0,0,0,.15);
}
.testimonials-section.version-2 .testimonial-card:hover {
	box-shadow: 0 0 55px 0 rgba(0,0,0,.18);
}
.review-section.version-2 {
	padding-top: 50px;
	padding-bottom: 50px;
}





/*
 * END OF
 * CUSTOMIZABLE CSS
 */