/*
Theme Name: Illumination Counseling
Version: 5.6
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");



/***  INTER  ***/

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

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

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



/***  PLAYFAIR  ***/

/* Medium */
@font-face {
  font-family: 'Playfair Display';
  font-weight: 500;
  src: url('fonts/Playfair_Display/PlayfairDisplay-Medium.ttf');
}






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


/***  2.1 UNIVERSAL STYLES  ***/

:root {
	--primary: #a7d513;
	--primary-dk: #87ae0d;
	--primary-lt: #cce70b;
	--secondary: #a148a1;
	--secondary-dk: #572c6a;
	--secondary-lt: #84338c;
	--tertiary: #19459c;
	--tertiary-dk: #0c2972;
	--tertiary-lt: #408ec0;
	--dark-1: #2a292d;
	--dark-2: #555;
	--dark-3: #888;
	--light-1: #E9E9E9;
	--light-2: #F2F2F2;
	--light-3: #F7F7F7;
  --light-4: #f4f6fa;
  --light-5: #fafafa;
  --palette-1: #cce70b;
  --palette-2: #eda9f4;
  --palette-3: #8ec2e3;
  --palette-4: #ffb8b2;
  --palette-5: #e1f0ee;
  --palette-6: #00ff75;
  --dark-green: #005c65;
  --orange: #f2734a;
  --gray-blue: #b2c1d5;
  --shadow-1 : 0 5px 10px rgba(39, 50, 90, .13);
  --shadow-2 : 0 34px 44px -20px rgba(0, 92, 101, .13);
	--radius-1: 50%;
	--radius-2: 8px;
	--radius-3: 24px;
	--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;
		--font-1: 'Inter';
	--font-2: 'Playfair Display';
}

html {font-size: 16px;}

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

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

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



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

.btt-button {
  border: 1px solid var(--light-4);
  border-radius: 100%;;
}

.btt-button .fa {
  border-radius: var(--radius-1);
  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  ***/

.text-primary {color: var(--primary);}
.text-secondary {color: var(--secondary);}

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

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



/***  3.2 HEADINGS  ***/

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-2);
  color: var(--tertiary);
}

h1 {font-size: 3.125em;}
h2 {font-size: 2.75em;}
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);
}

/* White Button */

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

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

/* Inline Button */

.button-inline a,.button-inline .elementor-button {
  padding: 0;
  background: none;
  border: 0;
  color: var(--primary);
}

.button-inline a:hover,
.button-inline .elementor-button:hover {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: currentColor;
  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;}

.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: currentColor;
}

.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"] {
  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;
  border-bottom: 2px solid var(--primary);
}

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



/***  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: 90px;}

/* Menu Button */

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

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



/***  4.4 NAV BAR  ***/



/***  4.5 NAV MENUS  ***/

.nav-menu > li {padding: 18px 0;}

.nav-menu > li > a {
  padding-top: 14px;
	padding-bottom: 14px;
  color: var(--tertiary-dk);
  border-radius: 10px;
  transition: color 0.25s ease-in-out, background-color 0.25s ease-in-out;
}

.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);
  background-color: var(--light-4);
}

.nav-menu > li.menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
}

.nav-menu > li.menu-item-has-children > a:after {
  content: '\f078';
  margin-left: 10px;
  font-family: 'Font Awesome 5 Pro';
  font-size: 0.8em;
  font-weight: 400;
  transition: transform 0.25s ease-in-out;
}

.nav-menu > li.menu-item-has-children:hover > a:after {
  transform: rotate(180deg);
}

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

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

/***  4.6 DROPDOWN MENUS  ***/

.nav-menu li ul {background-color: var(--light-5);}

.nav-menu li ul li a {text-align: left;}

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



/***  4.7 MOBILE NAV  ***/

.mobile-menu > li > a {}

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



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



/***  5.1 BANNER  ***/

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

.banner-inner {
  min-height: 400px;
  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);
}



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

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

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


/***  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;
  height: auto;
	fill: var(--primary);
  transition: all 300ms ease-in-out;
}

.entry-cols .entry-link:hover svg {fill: var(--secondary);}

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

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

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

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

/* Service Cols */
.service-cols .service-text-wrap {padding: 16px 30px 85px 30px;}

/* 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(--palette-3);
  text-align: center;
	color: var(--dark-1);
}

.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 {
  width: 66.7%;
	text-align: left;
}
.cta-bar .col-custom:last-child {
  width: 33.3%;
	text-align: right;
	margin-top: 0;
}
}

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

.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: var(--dark-1);
}

.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(--secondary-dk);
  font-size: 0.9em;
  color: white;
}

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

.footer a {color: white;}

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

.footer *:is(h1, h2, h3, h4, h5, h6) {
  font-size: 1rem;
  color: white;
}

.footer-info > div:not(:first-child) {margin-top: 2rem;}

.footer-socials {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

/* 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: 20px;
  padding-bottom: 20px;
  background-color: var(--light-2);
  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  * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/

/* Add custom theme styles here */

/***  UTILITY  ***/

/* Font Weight */

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 800;
}


/* Font Size */

.fz-24, .fz-24 * {
  font-size: 1.5rem;
}

.fz-14, .fz-14 * {
  font-size: 0.875rem;
}

/* FlexBox */
.fww {
  flex-wrap: wrap;
}

/* Inline Badge */

.inline-badge {
  display: inline-block;
  margin: 0 0.375rem 0.375rem 0;
  padding: 0.625rem 1.25rem 0.5625rem;
  border: 1px solid var(--primary);
  line-height: 1;
  text-transform: uppercase;
  border-radius: 7.5rem;
} 

/* OPACITY */
.op-50 {opacity: 0.5;}

/* NO MARGIN ELEMENTOR COLUMN */
.nmb-elementor-widget.elementor-widget {margin-bottom: 0;}



/* Colors */

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

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

.text-white,
.text-white * {color: white;}

/***  HOME HERO  ***/

.hp-hero {
  margin: 0.5rem;
  text-align: center;
  transition: background-color 0.25s ease-in-out;
}

.hp-hero .elementor-widget {margin-bottom: 0;}

.hp-hero .elementor-inner-section .elementor-container {
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hp-hero .elementor-inner-section {margin-top: 2.75rem;}

@media screen and (max-width: 1199px) {
  .hp-hero .elementor-inner-section {
    max-width: 800px;
    margin: 2.75rem auto 0 auto;
  }
}

.hp-hero .elementor-inner-section .elementor-column {width: calc(100% / 4 - 1.5rem);}

@media screen and (max-width: 1199px) {
  .hp-hero .elementor-inner-section .elementor-column {width: calc(100% / 2 - 1.5rem);}
}

@media screen and (max-width: 767px) {
  .hp-hero .elementor-inner-section .elementor-column {width: calc(100%);}
}

.hp-hero .elementor-inner-section .elementor-heading-title {
  font-size: 1.5rem;
  transition: font-weight 0.25s ease-in-out;
}

.hp-hero .elementor-inner-section .elementor-column {
	border-radius: var(--radius-2);
	overflow: hidden;
}

.hp-hero .elementor-inner-section .elementor-column:nth-child(4n+1) {background-color: var(--palette-1);}

.hp-hero .elementor-inner-section .elementor-column:nth-child(4n+2) {background-color: var(--palette-2);}

.hp-hero .elementor-inner-section .elementor-column:nth-child(4n+3) {background-color: var(--palette-3);}

.hp-hero .elementor-inner-section .elementor-column:nth-child(4n+4) {background-color: var(--palette-4);}

.hp-hero .elementor-inner-section .elementor-column > .elementor-widget-wrap { padding: 0 0 16px;}

.hp-hero .elementor-widget-text-editor {padding: 0 16px;}

@media screen and (max-width: 767px) {
  .hp-hero .elementor-inner-section .elementor-column > .elementor-widget-wrap { padding: 1.5rem;}
}

.hp-hero .elementor-inner-section .elementor-widget-image { margin-bottom: 0.625rem;}

@media screen and (max-width: 767px) {
  .hp-hero .elementor-inner-section .elementor-widget-image {
    display: none;
  }
}

.hp-hero .elementor-inner-section .elementor-widget-image img { transition: 0.25s ease-in-out;}

.hp-hero .elementor-inner-section .elementor-widget-container {overflow: hidden;}

.hp-hero .elementor-inner-section .elementor-button i {font-size: 0.375rem;}



/***  HOME LOGOS  ***/

.hp-logos { 
  text-align: center;
  color: white;
  background-color: var(--primary-dk);
}

.hp-logos .elementor-widget {margin-bottom: 0;}

.hp-logos .elementor-heading-title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: white;
}

.hp-logos img {filter: brightness(0) invert(1);}

@media screen and (max-width: 399px) {
  .hp-logos .elementor-inner-section .elementor-container .elementor-column {width: 100%;}
}

.hp-logos .elementor-widget-image a img[src$=".svg"] {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  filter: brightness(0) invert(1);
  transition: all 0.25s ease-in-out;
}

.hp-logos .elementor-inner-section .elementor-widget-wrap {align-content: center;}

.hp-logos .elementor-inner-section a {
  padding: 10px 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 60px;
  color: white;
  border-radius: 3px;
  transition: all 0.25s ease-in-out;
}

@media screen and (max-width: 991px) {
  .hp-logos .elementor-inner-section a {
    padding: 1rem;
    border: 1px solid var(--palette-5);
  }
}

.hp-logos .elementor-inner-section a:hover {
  color: var(--dark-green);
  background-color: var(--palette-5);
  box-shadow: var(--shadow-1);
}

.hp-logos .elementor-inner-section a:hover img {filter: brightness(1) invert(0);}



/***  STEP COLUMN  ***/

.step-column {counter-reset: step-column;}

.step-column .elementor-inner-section {
  counter-increment: step-column;
  border: 2px solid #e1f0ee;
  transition: border-color 0.25s ease-in-out, background-color 0.25s ease-in-out;
}

.step-column .elementor-inner-section:hover * {
  color: var(--dark-1);
}

.step-column .elementor-inner-section:nth-child(4n+1):hover {
  background-color: var(--palette-5);
  border-color: var(--palette-5);
}

.step-column .elementor-inner-section:nth-child(4n+2):hover {
  background-color: var(--palette-2);
  border-color: var(--palette-2);
}

.step-column .elementor-inner-section:nth-child(4n+3):hover {
  background-color: var(--palette-1);
  border-color: var(--palette-1);
}

.step-column .elementor-inner-section:nth-child(4n+4):hover {
  background-color: var(--palette-3);
  border-color: var(--palette-3);
}

.step-column .elementor-inner-section:hover .elementor-widget-text-editor::before {
  font-weight: 900;
}

@media screen and (min-width: 901px) {
  .step-column .elementor-inner-section:not(:first-child) {margin-top: 1rem;}
}


.step-column .elementor-inner-section .elementor-widget-text-editor {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.step-column .elementor-inner-section .elementor-widget-text-editor::before {
  content: counter(step-column);
  min-width: 2.5rem;
  font-size: 3.75rem;
  text-align: center;
  transition: font-weight 0.25s ease-in-out;
}

.step-column .elementor-inner-section *:is(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.step-column .elementor-inner-section p {margin: 0;}

.step-column .elementor-container {padding: 0;}

/* Swiper Fixes */
@media screen and (max-width: 900px) {
  .step-column .swiper-wrapper {
    padding: 0 !important;
    flex-wrap: nowrap;
  }

  .step-column {
    padding: 0 15px;
  }
}

.step-column .swiper-pagination {
  bottom: auto;
  top: calc(100% + 24px);
}



/***  HP CARDS  ***/

@media screen and (max-width: 1299px) {
  
  .hp-cards .elementor-inner-section .elementor-container {flex-wrap: wrap;}

  .hp-cards .elementor-inner-section .elementor-column {width: 100%;}

}



/***  HP REVIEWS  ***/

.hp-reviews .elementor-widget {margin-bottom: 0;}

.hp-reviews .testimonial-cols-wrapper {overflow: visible;}

.hp-reviews .swiper {overflow: visible;}

.hp-reviews .swiper-slide {
  padding: 0;
  height: auto;
  background-color: var(--palette-5) !important;
}

.hp-reviews .testimonial-thumb-wrap {padding: 6px;}

.hp-reviews .entry-cols .entry-text-wrap {
  padding: 0;
  background-color: var(--palette-5);
  height: 100%;
}

.hp-reviews .testimonial-title {font-weight: 700;}

.hp-reviews .elementor-icon-wrapper {
  margin-bottom: -0.5em;
  padding: 1.5rem 1.5rem 0;
}

.hp-reviews .testimonial-content-wrap {padding: 1.5rem;}

.hp-reviews .swiper-pagination {
  bottom: 0 !important;
}

/***  HP TABLE COMPARISON  ***/

.hp-table-comparison .tablepress>:where(thead,tfoot)>*>th {
  padding: 16px 8px;
  font-size: 1.25rem;
  font-weight: 500;
  background-color: transparent;
  text-align: center;
}

.tablepress>:not(caption)>*>* {vertical-align: middle;}

.tablepress>.row-hover>tr:hover>* {
  color: var(--primary);
  background-color: transparent;
}

.hp-table-comparison .tablepress i {
  width: auto;
  height: auto;
  font-size: 2.125rem;
}

.hp-table-comparison .tablepress .column-2 {
  background-color: var(--orange) !important;
  border: none;
  color: white;
  text-align: center;
}

.hp-table-comparison .tablepress .column-2 i {color: white;}

.hp-table-comparison .tablepress .column-3 {text-align: center;}

.hp-table-comparison .tablepress .column-3 i {color: var(--orange);}



/***  HP COUNTER (TODO: REMOVE)  ***/
.hp-counter .elementor-counter-number {
  margin-bottom: 1rem;
  position: relative;
  color: var(--dark-1);
  min-width: 6.25rem;
}

.hp-counter .elementor-counter-number:before {
  content: '';
  width: 7.5rem;
  height: 7.5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  z-index: -1;
}

.hp-counter-low .elementor-counter-number:before {background-color: var(--orange);}

.hp-counter-med .elementor-counter-number:before {background-color: var(--palette-1);}

.hp-counter-high .elementor-counter-number:before {background-color: var(--palette-3);}

@media screen and (max-width: 600px) {
  .hp-counter .elementor-inner-section .elementor-column:not(:first-child) {margin-top: 1rem;}
}




/***  HP FAQ  ***/
.hp-faq .elementor-accordion-item {
  border: none;
  border-bottom: 1px solid var(--gray-blue);
}

.hp-faq .elementor-tab-title {
  display: flex;
  padding: 1.875rem 0;
}

.hp-faq .elementor-accordion-icon {
  margin-left: auto;
  order: 2;
}

.hp-faq .elementor-tab-content {
  padding: 0 0 1.25rem;
  border: none;
}



/* HP SUBSCRIPTION FORM */
.hp-subscription-form input {color: var(--dark-1);}

.hp-subscription-form input[type="submit"]{
  height: auto;
  background-color: white;
  color: var(--primary);
}

.hp-subscription-form input[type="submit"]:hover {
  color: white;
  background-color: var(--secondary);
}

.hp-subscription-form nf-cells .nf-cell:last-child {width: auto !important;}

/***  ABOUT LOGOS  ***/
.about-logos .swiper-wrapper {align-items: center;}

.about-logos .swiper-slide-image {filter: grayscale();}



/***  ABOUT VIDEO  ***/
.about-video .elementor-widget-video {box-shadow: var(--shadow-2);}



/***  ABOUT OPTIONS  ***/
.about-options .elementor-inner-section .elementor-widget-wrap {
  position: relative;
  padding: 1.25em !important;
  border-radius: 1.25em;
}

.about-options .elementor-inner-section:not(:first-child)  {margin-top: 2.5em;}

.about-options .elementor-inner-section .elementor-container {padding: 0;}

.about-options .elementor-inner-section .elementor-heading-title {max-width: calc(100% - 2.4em);}

.about-options .elementor-inner-section .elementor-widget-text-editor {margin-bottom: 0;}

.about-options .elementor-inner-section .elementor-widget-icon {
  position: absolute;
  top: 1.25em;
  right: 1.25em;
  width: auto;
}

.about-options .elementor-inner-section .elementor-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  background-color: currentColor;
  border-radius: 100%;
}

.about-options .elementor-inner-section .elementor-icon i{
  font-size: 1.5rem;
  color: white;
}

.about-options .elementor-inner-section .elementor-icon svg,
.about-options .elementor-inner-section .elementor-icon svg * {
  font-size: 2rem;
  fill: white !important;
}



/***  ABOUT LOGOS  ***/

.about-results .elementor-counter {gap: 0.75em;}

.about-results .elementor-counter-title {line-height: 1.5;}



/***  SERVICE BENEFITS  ***/

.service-benefits .elementor-inner-section .elementor-container {gap: 1.25em;}

@media screen and (min-width: 901px) and (max-width: 1023px) {
  .service-benefits .elementor-inner-section .elementor-container {
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
}

.service-benefits .elementor-inner-section .elementor-inner-column {
  padding: 1em;
  background-color: var(--palette-5);
  border-radius: var(--radius-2);
}

@media screen and (min-width: 601px) and (max-width: 1023px)  {
  .service-benefits .elementor-inner-section .elementor-inner-column {width: calc(50% - 1.25em);}

  .service-benefits .elementor-inner-section .elementor-inner-column:only-child {width: 100%;}
}

/***  PROCESS SECTION  ***/

.process-section {
  padding-left: 2em;
  padding-right: 2em;
  counter-reset: process-section;
}


.process-section .elementor-container {
  justify-content: center;
  gap: 4em;
  flex-wrap: wrap;
}

.process-section .elementor-inner-column {
  counter-increment: process-section;
  position: relative;
  padding: 1em;
  width: calc(100% / 3 - (8em / 3));
  background-color: var(--palette-5);
}

@media (max-width: 900px) {
  .process-section .elementor-inner-column {width: calc(100% / 2 - 2em);}
}

@media (max-width: 600px) {
  .process-section .elementor-inner-column {width: 100%;}
}

.process-section .elementor-inner-column:before {
  content: counters(process-section, ".", decimal-leading-zero);
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
  transform: translate(-50%, 50%);
  border-radius: 100%;
  background-color: var(--primary);
}

/***  PROCESS SECTION 2  ***/

.process-section-2 {
  padding-left: 2em;
  padding-right: 2em;
  counter-reset: process-section-2;
}


.process-section-2 .elementor-container {
  justify-content: center;
  gap: 4em 2em;
  flex-wrap: wrap;
}

.process-section-2 .elementor-inner-column {
  counter-increment: process-section-2;
  position: relative;
  padding: 2em 1em 1em;
  width: calc(100% / 3 - (4em / 3));
  background-color: var(--palette-5);
}

@media (max-width: 900px) {
  .process-section-2 .elementor-inner-column {width: calc(100% / 2 - 1em);}
}

@media (max-width: 600px) {
  .process-section-2 .elementor-inner-column {width: 100%;}
}

.process-section-2 .elementor-inner-column:before {
  content: counters(process-section-2, ".", decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  background-color: var(--palette-5);
}

/***  DOWNLOAD LIST  ***/

.download-list .entry {width: 100%;}

.download-list .entry-thumb, 
.download-list .entry-button {display: none;}

.download-list .entry-cols .entry-text-wrap {padding: 2em;}

.download-list .entry-title {
  margin: 0;
  padding-right: 1.5em;
}

.download-list .entry-title:after {
  position: absolute;
  top: 50%;
  right: 0;
  content: '\f019';
  font-family: 'Font Awesome 5 Pro';
  transform: translateY(-50%);
}


/***  ELEMENTOR ADDONS  ***/

.elementor-counter {
	font-family: var(--font-2);
	font-weight: 500;
	color: var(--tertiary);
}

.elementor-tab-title {
	font-family: var(--font-2);
	font-weight: 500;
	color: var(--secondary);
}

/*** SERVICE NAV BAR ***/



/*
.elementor-widget-image:before {
	position: absolute;
	bottom: -20px;
	left: 50px;
	z-index: -1;
	width: 100%;
	height: 60%;
	background-color: var(--light-1);
	content: '';
}

.elementor-widget-image:after {
	position: absolute;
	bottom: -40px;
	left: -40px;
	z-index: -1;
	width: 30%;
	height: 30%;
	background-color: var(--tertiary-lt);
	content: '';
}

.hp-hero .elementor-widget-image:before, 
.hp-hero .elementor-widget-image:after {display: none;}
*/


/*
 * END OF
 * CUSTOMIZABLE CSS
 */
