/*
Theme Name: DigRightIn
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 MENUS
 *   4.5 DROPDOWN MENUS
 *   4.6 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");



/***  TINOS  ***/

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

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

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



/***  QUESTRIAL  ***/

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



/***  LIBRE FRANKLIN  ***/

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





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


/***  2.1 UNIVERSAL STYLES  ***/

:root {
	--primary: #679173;
	--primary-dk: #40634f;
	--primary-md: #5b7966;
	--primary-lt: #B3CD98;
	--secondary: #FFF89D;
	--secondary-dk: #B0A736;
	--secondary-lt: #FFFAC1;
	--dark-1: #1a1a1a;
	--dark-2: #272727;
	--dark-3: #201922;
	--light-1: #ededed;
	--light-2: #F2F2F2;
	--light-3: #F7F7F7;
	--shadow-1: 0 24px 42px -16px rgba(0,0,0,0.3);
	--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: 160px;
	--font-1: 'Tinos', sans-serif;
	--font-2: 'Questrial', sans-serif;
	--font-3: 'Libre Franklin', sans-serif;
}

html {font-size: 17px;}

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

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

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



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

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

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

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



/***  3.2 HEADINGS  ***/

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

h1 {font-size: 4.5em;}
h2 {font-size: 2.8em;}
h3 {font-size: 1.875em;}
h4 {font-size: 1.6em;}
h5 {font-size: 1.125em;}
h6 {font-size: 1em;}

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

@media screen and (max-width: 1200px) {
h1 {font-size: 3em;}
h2 {font-size: 2em;}
h3 {font-size: 1.5em;}
h4 {
	font-size: 1.3em;
	color: var(--primary);
}
h5 {font-size: 1em;}
h6 {font-size: 0.9em;}

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



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

hr, .divider {
	display: block;
	width: 3%;
	height: 1px;
	border: 0;
	border-top: 2px solid #e2e2e2;
	padding: 0;
	clear: both;
}



/***  3.4 BUTTONS  ***/

.button, 
.elementor-button {
	padding: 1.5em 2em;
	border-radius: 0;
	border: 1px solid var(--primary-lt);
	background-color: var(--primary-lt);
	font-family: var(--font-3);
	font-weight: 600;
	font-size: 0.75em;
	color: var(--primary-dk) !important;
	text-transform: uppercase;
	letter-spacing: 0.25em;
}

.button:hover, 
.elementor-button:hover {
	border-color: var(--secondary);
	background-color: var(--secondary);
	color: var(--primary-dk) !important;
}

/* Secondary Button */

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

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

/* White Button */

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

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

/* Empty Button */

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

.button-empty:hover, 
.bordered-button .elementor-button:hover  {
	border-color: black;
	background-color: transparent;
	color: black;
}

/* Alt Button */

.alt-button, 
.alt-button .elementor-button {
	padding: 0;
	border:none;
	background: transparent!important;
	color: var(--primary);
	font-weight: 600;
	vertical-align: middle;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-decoration: underline;
}

.alt-button:hover, 
.alt-button .elementor-button:hover  {
	color:black;
}

.alt-button i, .alt-button .elementor-button i {color:black;}
.alt-button:hover i, .alt-button .elementor-button:hover i {color:var(--secondary);}



/***  3.5 ICONS  ***/

/*  Icon Colors  */

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

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

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

/*  Icon Backgrounds  */

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

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

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

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

/* Elementor Icons */

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



/***  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-1);}
.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 {
	content: "";
	display: inline-block;
	width: 16px; 
	height: 16px; 
	background-image: url('/wp-content/uploads/DRI-Logo-Button-Bullet.jpg');
	background-size: cover; 
	margin-right: 8px; 
}

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

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

/* 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;
	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-dk);
	color: white;
}

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

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

.scroll-bar .scroll-logo-wrapper {text-align: center;}

.scroll-bar .scroll-bar-nav {width: 37.5%;}

.scroll-bar .scroll-bar-nav-right {text-align: left;}



/***  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-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
} 

.header {
	padding-top: 30px;
	padding-bottom: 30px;
}

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

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

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

.logo {text-align: center;}

.header-right {text-align: left;}
.header-left {text-align: right;}

/* Menu Button */

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

.header .menu-button.active .fal {
	background-color: white;
	color: black;
}



/***  4.4 NAV MENUS  ***/

.nav-menu > li > a {
	padding: 30px 15px 30px;
	color: white;
	font-size: 0.9em;
	text-transform: uppercase;
	font-family: var(--font-2);
}

.scroll-menu > li > a {padding: 24px 15px;}

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




/***  4.5 DROPDOWN MENUS  ***/

.nav-menu li ul {
	background-color: white;
	width: 250px;
	border-radius: 2px;
}

.nav-menu li ul li a {
	padding: 12px 16px;
	text-align: left;
	color: var(--dark-1);
	font-size: 0.9em;
	font-family: var(--font-2);
}

.nav-menu li ul li:first-child > a {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
}

.nav-menu li ul li:last-child > a {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
}


.nav-menu li ul li > ul li a {
	padding: 12px 16px;
	text-align: left;
	color: var(--dark-1) !important;
	font-size: 0.9em;
	font-weight: 500;
	background-color: white !important;
}

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

.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.6 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-family: var(--font-2);}

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





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



/***  5.1 BANNER  ***/

.banner {
	background-color: black;
	text-align: center;
	color: white;
}

.banner:before {
	background-attachment: fixed;
}

.banner-inner {
	min-height: 450px;
	padding-top: 200px;
	padding-bottom: 100px;
}

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

.banner-viewport .banner-content {max-width: 990px; margin: 0 auto;}

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

.banner a:hover {color: white;}

.banner h1 {margin-top: 0;}
.banner h4 {margin-bottom: 0;}

.banner h1:after {
	display: block;
	width: 40px;
	height: 2px;
	margin: 30px auto 0 auto;
	background-color: white;
	content: '';
	clear: both;
	text-transform: uppercase;
}

.banner .button {margin-top: 45px;}

@media screen and (max-width: 1400px) {
.banner-inner {min-height: 450px;}
}
@media screen and (max-width: 600px) {
.banner-inner {min-height: 350px;}
}



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

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

.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;
	font-family: var(--font-2);
	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-dk);
	text-decoration: none;
	color: white;
}

.service-sub-nav-bar {
	background-color: var(--primary-lt);
}

.service-sub-nav-bar .page-menu li > a {
	color: var(--primary-dk);
}



/***  5.5 MAIN  ***/

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

/* XS Section Spacer */
.section-spacer-xs, 
.section-spacer-top-xs {
	padding-top: var(--spacer-xs);
}
.section-spacer-xs, 
.section-spacer-btm-xs {
	padding-bottom: var(--spacer-xs);
}

/* SM Section Spacer */
.section-spacer-sm, 
.section-spacer-top-sm {
	padding-top: var(--spacer-sm);
}
.section-spacer-sm, 
.section-spacer-btm-sm {
	padding-bottom: var(--spacer-sm);
}

/* MD Section Spacer */
.section-spacer, 
.section-spacer-top {
	padding-top: var(--spacer-md);
}
.section-spacer, 
.section-spacer-btm {
	padding-bottom: var(--spacer-md);
}

/* LG Section Spacer */
.section-spacer-lg, 
.section-spacer-top-lg {
	padding-top: var(--spacer-lg);
}
.section-spacer-lg, 
.section-spacer-btm-lg {
	padding-bottom: var(--spacer-lg);
}

/* XL Section Spacer */
.section-spacer-xl, 
.section-spacer-top-xl {
	padding-top: var(--spacer-xl);
}
.section-spacer-xl, 
.section-spacer-btm-xl {
	padding-bottom: var(--spacer-xl);
}



/***  5.6 ARCHIVE  ***/

/* Entry Cols */

.entry-cols .entry-link {
	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: white;
	height: 100px;
}

.entry-cols .entry-thumb {
	width: 100%;
	aspect-ratio: 5 / 3;
	object-fit: cover;
}

.entry-cols .entry-link .entry-title {
	color: var(--primary);
	text-transform: uppercase; margin-bottom: 0;
}

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

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

.entry-cols .entry-meta, 
.entry-cols .entry-meta li {
	margin-top: 0;
	margin-left: 0;
	list-style: none;
	color: var(--secondary-dk);
	display: 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: 0;
	bottom: 30px;
}

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

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

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

.post-meta {display: none;}

/* Paging Nav */

.archive-nav a {
	padding: 0.6em 1.8em;
	border-radius: var(--radius-3);
	border: 1px solid var(--light-1);
	background: var(--light-2);
	text-transform: uppercase;
	letter-spacing: 0.25em;
	font-size: 0.75em;
	font-weight: normal;
	font-family: var(--font-2);
	color: var(--primary-dk);
}

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



/***  5.7 SINGLE  ***/





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



/***  6.1 CTA BAR  ***/

.cta-bar .section-container {
	max-width: none;
	padding: 0;
}

.cta-bar {
	background-color: var(--secondary);
	text-align: center;
	color: white;
}

.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 .pre-title:before {
	width: 55px;
	height: 2px;
	background-color: white;
}

.cta-bar .elementor-button {
	border-radius: 0 !important;
	line-height: 1.6em !important;
	border: 1px solid var(--primary-lt) !important;
	background-color: var(--primary-lt) !important;
	color: var(--primary-dk) !important;
}

.cta-bar .elementor-button:hover {
	border-color: var(--secondary) !important;
	background-color: var(--secondary) !important;
	color: var(--primary-dk) !important;
}



/***  6.2 FOOTER  ***/

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

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

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

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

.footer .img-logo { width:300px; }

/* 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;
	border-top:1px solid rgba(0,0,0,0.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  * * * * * * * * * * * * * * * * * * * * * * * * * * * 
 ******************************************************************************/

/* Add custom theme styles here */



/***  MENU BAR  ***/

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

.menu-bar {
	display: flex;
}

.menu-bar li {
	line-height: 1.4;
	text-align: center;
	margin: 0;
	font-size: 0.938em;
	border-right: white solid 1px;
}

.menu-bar li:first-child {
	border-left: white solid 1px;
}

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

.menu-bar 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;
	transition: all 350ms ease-in-out;
}

.e--pointer-underline .elementor-item:after {
	background-color: var(--primary)!important;
}

.padding30 .elementor-widget-wrap { padding:30px!important; }
.padding50 .elementor-widget-wrap { padding:50px!important; }
.padding100 .elementor-widget-wrap { padding:100px!important; }
.padding150 .elementor-widget-wrap { padding:150px!important; }

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

.text-primary h1,
.text-primary h2,
.text-primary h3,
.text-primary h4,
.text-primary h5,
.text-primary h6,
.text-primary p,
.text-primary i,
.text-primary span,
.text-primary li a,
.text-primary li:before {color:var(--primary)!important;}

.text-primary li a:hover {color:var(--primary-lt)!important;}

.contact-box .elementor-column-wrap {
	padding: 80px !important;
}



/***  LINKS COLS  ***/

.link-cols .elementor-widget-wrap {
	padding-top: 40px !important;
	padding-bottom: 40px !important;
	position: relative;
	display: block !important;
	height: 100%;
	text-align: center;
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}

.link-cols .elementor-widget-wrap:hover {
	background:rgba(255,255,255,0.4);
}


/***  IMG COLS  ***/

.img-cols .elementor-column-wrap, 
.img-col .elementor-column-wrap {
	margin: 0;
	background-color: transparent;
}


.img-cols .elementor-button, 
.img-col .elementor-button {
	position: absolute;
	bottom: 0;
	left: 0;
	color:white;
}

.img-cols .elementor-button:hover, 
.img-col .elementor-button:hover {
	color:var(--primary);
}

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

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

.text-bg {
	color: var(--dark-1);
}

.fancy-img img {
	box-shadow: var(--shadow-1);
}

.pre-title:before {
	display: block;
	margin: 0px auto 50px;
	width: 80px;
	height: 1px;
	background-color: var(--primary);
	content: '';
	text-transform: uppercase;
}

.post-line:after {
	display: block;
	width: 40px;
	height: 2px;
	margin: 30px auto 0 auto;
	background-color: white;
	content: '';
	clear: both;
	text-transform: uppercase;
}



/***  BOX COLS  ***/

.box-cols .elementor-widget-wrap, 
.box-col .elementor-widget-wrap {
	padding: 25px !important;
	background-color: white;
	box-shadow: var(--shadow-1);
	border-radius: var(--radius-2);
}



/***  TWO-COL BOX COLS  ***/

.two-col-box .elementor-widget-wrap {
	position: relative;
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}

.two-col-box .elementor-inner-section {
	-webkit-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}

.two-col-box .elementor-inner-section:hover {
	transform: translateY(-3px);
}



/***  TESTIMONIALS  ***/

.elementor-testimonial-wrapper .elementor-testimonial-name {
	color: var(--primary-dk);
	font-weight: 600;
}

/*** Testimonial Boxes ***/

.testimonial-entry:not(:last-child) {margin-bottom: 30px;}

.testimonial-entry .testimonial-text-wrap {
	padding: 40px;
	background: none;
	border-radius: 80px 0 80px 0;
	border: solid 10px var(--light-1);
}

.testimonial-entry:hover::before{
	color:#08264A;
}

.testimonial-entry p,
.testimonial-entry footer {
	color: #08264A;
	transition:.5s all ease;
}

.testimonial-entry .testimonial-title {
	font-weight: bold;
	color: var(--primary);
}

.elementor-blockquote--skin-quotation .elementor-blockquote::before{
	transition:.5s all ease;
}

/* Styles for the two-column layout */

.testimonial-wrapper {
display: flex;
flex-wrap: wrap;
gap: 20px; 
}

.testimonial-column {
flex: 1 1 calc(50% - 20px);
min-width: 300px;
box-sizing: border-box;
padding: 0 10px; 
}

/* Media query for smaller devices */
@media (max-width: 768px) {
.testimonial-column {
flex: 1 1 calc(100% - 20px); /* Full width for smaller devices */
max-width: calc(100% - 20px); /* Adjust max-width for responsiveness */
margin-bottom: 20px; /* Optional: Add bottom margin for spacing */
}
}



/***  CAREERS  ***/

.single-career .main-container {max-width: 900px;}

.career-link {
	margin-top: 20px;
	margin-bottom:20px;
	background: var(--secondary);
	border-radius: 4px;
}

.career-text-wrap {padding: 20px !important;}

.career-text-wrap .career-title {color: var(--primary);}

.career-text-wrap:hover .career-title {color: var(--primary-dk) !important;}

.career-link .career-more {
	left: 20px;
}

/* Career Nav Bar */

.career-nav-bar {
	padding-top: var(--gap-sm);
	background-color: white;
}

.single-career .career-nav-bar-container {max-width: 900px;}



/***  SERVICES  ***/

.service-cols .service-title {
	text-align: center;
	color: white;
}

.service-cols .service-link {
	position: relative;
	display: block;
	height: 100%;
}

.service-cols .service-link:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(#67917380, #67917360);
	opacity: 0.75;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
	content: '';
}

.service-cols .service-link:hover:before {
	opacity: 1;
}

.service-link .service-icon-wrap {
	padding: 60px 40px 0;
	position: relative;
	text-align: center;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.service-cols .service-icon-wrap svg { fill:white;}

.service-link .service-text-wrap {
	position: relative;
	padding: 0 40px 60px 40px;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.service-link:hover .service-icon-wrap, 
.service-link:hover .service-text-wrap {
	transform: translateY(-3px);
}



/** Post Date Remove **/
.entry-meta .entry-date.published {
	display: none;
}



/***  BIOS  ***/

.bio {position: relative;}

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

/* Thumb Styles */

.bio-cols .bio-inner {
  position: relative;
  display: block;
  overflow: hidden;
	text-align: center;
}

.bio-cols .bio-link {cursor: pointer;}

.bio-cols .bio-inner .bio-portrait {margin-bottom: 10px;}

.bio-cols .bio-inner .bio-title, 
.bio-cols .bio-inner .bio-meta {margin: 0;}

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

.bio-thumb {
  text-align: center;
}

}

/* Full Styles */

.bio-full-wrapper {
  display: block;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.bio.active .bio-full-wrapper {
  max-height: 10000px;
}

.bio-full {
  position: relative;
  padding: 30px;
  margin-top: 1.5em;
  background: white;
  border: 1px solid #e9e9e9;
}

.bio-close {
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 10px;
  display: block;
  width: 20px;
  height: 20px;
  background: url(images/icon-close-black.png) center center no-repeat;
  background-size: contain;
  cursor: pointer;
}

.content .bio-full .grid {margin: 0;}

.bio-position {margin-top: 0.25em;}

/* Bio Full Sizing */

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

.bio-full-wrapper {width: calc(400% + 90px);}
.bio:nth-child(4n-2) .bio-full-wrapper {margin-left: calc(-100% + -30px);}
.bio:nth-child(4n-1) .bio-full-wrapper {margin-left: calc(-200% + -60px);}
.bio:nth-child(4n) .bio-full-wrapper {margin-left: calc(-300% + -90px);}

}

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

.bio-full-wrapper {width: calc(300% + 60px);}
.bio:nth-child(3n-1) .bio-full-wrapper {margin-left: calc(-100% + -30px);}
.bio:nth-child(3n) .bio-full-wrapper {margin-left: calc(-200% + -60px);}

}

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

.bio-full-wrapper {width: calc(200% + 30px);}
.bio:nth-child(even) .bio-full-wrapper {margin-left: calc(-100% + -30px);}

}

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

.bio-full-wrapper {width: 100%;}

}

/* Dept Select */

.department-select {max-width: 300px;}





/*
 * END OF
 * CUSTOMIZABLE CSS
 */