/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor child theme via Freshy
Author: Freshy
Author URI: https://freshysites.com/
Template: hello-elementor
Version: 2.0.0
*/

/* Add your own styles at the bottom */

/* -- COLORS -- */
.white, 
.white h1, .white h2, .white h3, .white h4, .white h5, .white h6, .white li, .white a,
h1.white, h2.white, h3.white, h4.white, h5.white, h6.white, li.white, a.white, p.white {
	color: #fff;
}

.black, 
.black h1, .black h2, .black h3, .black h4, .black h5, .black h6, .black li, .black a,
h1.black, h2.black, h3.black, h4.black, h5.black, h6.black, li.black, a.black, p.black {
	color: #000;
}

.primary, 
.primary h1, .primary h2, .primary  h3, .primary h4, .primary h5, .primary h6, .primary li, .primary a,
h1.primary, h2.primary, h3.primary, h4.primary, h5.primary, h6.primary, li.primary, a.primary, p.primary {
	color: #32a709;
}

.secondary, 
.secondary h1, .secondary h2, .secondary h3, .secondary h4, .secondary h5, .secondary h6, .secondary li, .secondary a,
h1.secondary, h2.secondary, h3.secondary, h4.secondary, h5.secondary, h6.secondary, li.secondary, a.secondary, p.secondary {
	color: #daf238;
}

.tertiary, 
.tertiary h1, .tertiary h2, .tertiary h3, .tertiary h4, .tertiary h5, .tertiary h6, .tertiary li, .tertiary a,
h1.tertiary, h2.tertiary, h3.tertiary, h4.tertiary, h5.tertiary, h6.tertiary, li.tertiary, a.tertiary, p.tertiary {
	color: #e4debe;
}

/* background colors */
.bg-white, a.bg-white {background-color: #fff;}
.bg-black, a.bg-black {background-color: #000;}
.bg-primary, a.bg-primary {background-color: #32a709;}
.bg-secondary, a.bg-secondary {background-color: #daf238;}
.bg-tertiary, a.bg-tertiary {background-color: #e4debe;}

/* -- END COLORS -- */


/* -- TYPOGRAPHY -- */

.text-lowercase, 
.text-lowercase h1, .text-lowercase h2, .text-lowercase h3, .text-lowercase h4, .text-lowercase h5, .text-lowercase h6, .text-lowercase li, .text-lowercase a {
	text-transform: lowercase !important;
}

.text-uppercase, 
.text-uppercase h1, .text-uppercase h2, .text-uppercase h3, .text-uppercase h4, .text-uppercase h5, .text-uppercase h6, .text-uppercase li, .text-uppercase a {
	text-transform: uppercase !important;
}

.text-capitalize, 
.text-capitalize h1, .text-capitalize h2, .text-capitalize h3, .text-capitalize h4, .text-capitalize h5, .text-capitalize h6, .text-capitalize li, .text-capitalize a {
	text-transform: capitalize !important;
}

.text-transform-none, 
.text-transform-none h1, .text-transform-none h2, .text-transform-none h3, .text-transform-none h4, .text-transform-none h5, .text-transform-none h6, .text-transform-none li, .text-transform-none a {
	text-transform: none !important;
}

.font-weight-bold, 
.font-weight-bold h1, .font-weight-bold h2, .font-weight-bold h3, .font-weight-bold h4, .font-weight-bold h5, .font-weight-bold h6, .font-weight-bold li, .font-weight-bold a {
	font-weight: 700;
}

.font-weight-normal, 
.font-weight-normal h1, .font-weight-normal h2, .font-weight-normal h3, .font-weight-normal h4, .font-weight-normal h5, .font-weight-normal h6, .font-weight-normal li, .font-weight-normal a {
	font-weight: 400;
}

.font-italic {font-style: italic;}

.text-underline-none, .text-underline-none a {text-decoration: none !important;}

.text-underline, .text-underline a {text-decoration: underline !important;}

.text-nowrap, .text-nowrap a {white-space: nowrap !important;}

.text-wrap-normal, .text-wrap-normal a {white-space: normal !important;}

/* -- END TYPOGRAPHY -- */


/* -- FOOTER -- */

/* - Bottom Bar - */

/* copyright wrapper */
#freshy_copyright {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: white;
	font-size: 20px;
	line-height: 1.25em;
}

/* vertical pipe divider */
#freshy_copyright span.copyright_via {
	width: 33.33333%;
	height: 1px;
	overflow: hidden;
	white-space: nowrap;
	text-indent: 200%;
	background: rgba(255,255,255,0.25);
	vertical-align: middle;
	margin: 10px auto 15px;
	display: block;
}

/* add an FS logo via background */
#freshy_copyright a.copyright_fs {
	display: block;
	width: 68px;
	height: 20px;
	background-image: url("/wp-content/uploads/freshy_logo_WHITE.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	text-indent: 200%;
	white-space: nowrap;
	overflow: hidden;
	margin: 4px 0 0 0;
	flex-shrink: 0;
	transition: all 0.4s ease-in-out;
}
/* FS logo link hover */
#freshy_copyright a.copyright_fs:hover {
	opacity: 0.8;
}

@media (min-width: 600px) {
	/* make the copyright elements be side by side at wider screens */
	#freshy_copyright {
		flex-direction: row;
	}
	/* change horizontal pipe divider to vertical on wider screens */
	#freshy_copyright span.copyright_via {
		width: 1px;
		height: 20px;
		margin: 0 10px;
	}
}

@media (max-width: 1023px) {
	/* center the copyright stuff when columns are stacked */
	#freshy_copyright {
		justify-content: center;
	}
}

/* -- END FOOTER -- */


/* -- RESPONSIVE -- */

/* do for mobile */
@media screen and (max-width: 767px) {
	/* hide on mobile */
	.hide-mobile {
		display: none;
	}
}

/* do for desktop */
@media screen and (min-width: 768px) {
	/* hide on desktop */
	.hide-desktop {
		display: none;
	}
}

/* -- END RESPONSIVE -- */


/* -- CHECKLIST -- */

.checklist ul {
	margin: 0;
	padding: 0 !important;
	list-style: none;
}

.checklist ul li {
	position: relative;
	padding-left: 30px;
	margin: 0 0 6px !important;
}

.checklist-columns-2 ul li,
.checklist-columns-3 ul li,
.checklist-columns-4 ul li {
	margin-bottom: 30px !important;
}

@media (max-width: 638px) {
	.checklist-columns-2 ul li,
	.checklist-columns-3 ul li,
	.checklist-columns-4 ul li {
		margin-bottom: 20px !important;
	}
	.checklist-columns-2 ul li:last-child,
	.checklist-columns-3 ul li:last-child,
	.checklist-columns-4 ul li:last-child {
		margin-bottom: 0 !important;
	}
}

/* create columns of list items with this class */
@media (min-width: 639px) {
	.checklist-columns-2 ul::after,
	.checklist-columns-3 ul::after,
	.checklist-columns-4 ul::after {
		content: '';
		clear: both;
		display: table;
	}
	.checklist-columns-2 ul li,
	.checklist-columns-3 ul li,
	.checklist-columns-4 ul li {
		float: left;
		width: 50%;
		padding-right: 30px;
	}
	.checklist-columns-2 ul li:nth-child(odd),
	.checklist-columns-3 ul li:nth-child(odd),
	.checklist-columns-4 ul li:nth-child(odd){
		clear: both;	
	}
	.checklist-columns-2-alt > ul,
	.checklist-columns-3-alt > ul,
	.checklist-columns-4-alt > ul {
		column-count: 2;
		column-gap: 20px;
	}
	.checklist-columns-2-alt ul li,
	.checklist-columns-3-alt ul li,
	.checklist-columns-4-alt ul li {
		break-inside: avoid-column;
	}
}
@media (min-width: 1024px) {
	.checklist-columns-3 ul li,
	.checklist-columns-4 ul li {
		float: left;
		width: 33.333333%;
	}
	.checklist-columns-3 ul li:nth-child(odd),
	.checklist-columns-4 ul li:nth-child(odd) {
		clear: none;	
	}
	.checklist-columns-3 ul li:nth-child(3n+1),
	.checklist-columns-4 ul li:nth-child(3n+1) {
		clear: both;	
	}
	.checklist-columns-3-alt ul,
	.checklist-columns-4-alt ul {
		column-count: 3;
	}
}
@media (min-width: 1199px) {
	.checklist-columns-4 ul li {
		float: left;
		width: 25%;
	}
	.checklist-columns-4 ul li:nth-child(odd) {
		clear: none;	
	}
	.checklist-columns-4 ul li:nth-child(3n+1) {
		clear: none;	
	}
	.checklist-columns-4 ul li:nth-child(4n+1) {
		clear: both;	
	}
	.checklist-columns-4-alt ul {
		column-count: 4;
	}
}

.checklist ul li::before {
	background-image: url(/wp-content/uploads/white-checkmark-icon.svg);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	content: '';
	width: 16px;
	height: 16px;
	margin: 0;
	display: inline-block;
	text-align: center;
	position: absolute;
	top: 7px;
	left: 0;
}
.pluslist ul li::before {
	content: '\e050';
}
.externallist ul li::before {
	content: '\e906';	
}

/* -- END CHECKLIST -- */


/* -- GRAVITY FORMS -- */

/* confirmation (success) message */
.gform_confirmation_wrapper .gform_confirmation_message {
	font-size: 1.2rem;
	line-height: 1.5em;
	padding: 2rem;
	background: rgba(90, 90, 90, 0.1);
	text-align: center;
}

/* -- END GRAVITY FORMS -- */


/* -- HELPERS -- */

@media (max-width: 1023px) {
	/* use the "stacked-flex" class on a ROW to make it be flexbox when stacked, to help with adjusting order of stacked columns */
	.stacked-flex {
		display: flex;
		flex-wrap: wrap; 
	}
	/* add the desired class to COLUMNS to designate their order when stacked within a "stacked-flex" ROW */
	.stacked-order-negative-4 {
		order: -4;
	}
	.stacked-order-negative-3 {
		order: -3;
	}
	.stacked-order-negative-2 {
		order: -2;
	}
	.stacked-order-negative-1 {
		order: -1;
	}
	.stacked-order-1 {
		order: 1;
	}
	.stacked-order-2 {
		order: 2;
	}
	.stacked-order-3 {
		order: 3;
	}
	.stacked-order-4 {
		order: 4;
	}
	/* adds margin to former "last" column that otherwise wouldn't have it */
	.stacked-flex:last-child .et_pb_column:last-child {
		margin-bottom: 30px;
	}
}

/* -- END HELPERS -- */

/* --- CUSTOM CODE - FRESHY --- */

/* -- GENERAL-- */
body {
    font-weight: 400;
	font-family: "sofia-pro", sans-serif;
}

.white-space-no-wrap {
	white-space: nowrap;
}

/* - Change the highlighted text color - */
::selection {
    background-color: #006F9C;
    color: #fff;
}

::-moz-selection {
    background-color: #006F9C;
    color: #fff;
}

::-o-selection {
    background-color: #006F9C;
    color: #fff;
}

::-ms-selection {
    background-color: #006F9C;
    color: #fff;
}

::-webkit-selection {
    background-color: #006F9C;
    color: #fff;
}


@media (min-width: 981px) {
	.vertically-aligned {
		margin: auto;
	}
}


/* -- GRAVITY FORMS -- */
/* - Gravity Forms - make the text darker - */
body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), 
body .gform_wrapper textarea.textarea, body div.form_saved_message div.form_saved_message_emailform form input[type=text],
body .gform_wrapper select {
	color: #262626;
}


/* - Gravity Forms - button text color - */
body .gform_wrapper .gform_footer input.button, 
body .gform_wrapper .gform_page_footer input.button, 
body div.form_saved_message div.form_saved_message_emailform form input[type=submit] {
	color: #fff;
}

/* hide header */
.gform_heading {
	display: none;
}

/* -- HEADER -- */
/* hide page title */
h1.entry-title {
	display: none;
}

/* custom dropdown icon */
#mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-item-has-children.dropdown-arrow > a.mega-menu-link {
	display: flex;
	align-items: center;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-item-has-children.dropdown-arrow > a.mega-menu-link > span.mega-indicator {
	background-image: url(/wp-content/uploads/dropdown-arrow-icon.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 16px;
	height: 16px;
	margin: 4px 0 0 9px;
}

/* black on scroll */
#custom-header.is-scrolled {
	background: #000 !important;
	padding-top: 0;
    padding-bottom: 0;
}

#custom-header .e-con-inner {
	transition: 0.3s all ease-in-out;
}

#custom-header.is-scrolled .e-con-inner {
	padding-top: 20px;
    padding-bottom: 20px;
}


/* Default state (top of page): gradient */
.site-header {
  background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  transition: background-color 0.25s ease, background 0.25s ease;
}

/* When Elementor sticky kicks in: force solid black */
.site-header.elementor-sticky--effects,
.site-header.elementor-sticky--active {
  background: #000 !important;
}


/* schedule a call button */
#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.menu-btn {
	margin: 0 20px 0 50px;	
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.menu-btn > a.mega-menu-link {
	border: 3px solid #0093C3;
	border-radius: 50px;
	background: #c32828;
	background: rgb(255 255 255 / 10%) !important;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
	padding-bottom: 8px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 8px;
	color: #fff !important;
	text-transform: uppercase;
	height: auto;
	letter-spacing: 1px;
	transition: 0.3s all ease-in-out;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.menu-btn > a.mega-menu-link:hover {
	background: #0093C3 !important;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.portal-icon > a.mega-menu-link {
	font-size: 0;
}

/* portal icon */
#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.portal-icon > a.mega-menu-link {
	border: 3px solid #fff;
	height: 62px;
	width: 62px;
	border-radius: 50px;
	background: rgb(255 255 255 / 10%) !important;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);	
	display: flex;
	justify-content: center;
	transition: 0.3s all ease-in-out;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.portal-icon > a.mega-menu-link:hover {
	border: 3px solid #0093C3;
	background: #0093C3 !important;	
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.portal-icon > a.mega-menu-link img {
	width: 80%;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-item-has-children.portal-icon > a.mega-menu-link > span.mega-indicator {
	margin: 0;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-item-has-children.portal-icon ul.mega-sub-menu {
	right: 0;
}

/* responsive */
@media (min-width: 1633px) and (max-width: 1762px) {
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link,
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link, 
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link,
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
		font-size: 17px;
	}	
	
	#custom-header .col-1 {
		width: 15%;
	}
	
	#custom-header .col-2 {
		width: 85%;
	}
}

@media (min-width: 1501px) and (max-width: 1632px) {
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link,
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link, 
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link,
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
		font-size: 15px;
	}	
	
	#custom-header .col-1 {
		width: 13%;
	}
	
	#custom-header .col-2 {
		width: 87%;
	}
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.menu-btn > a.mega-menu-link {
		padding-top: 4px;
		padding-bottom: 4px;
	}
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.portal-icon > a.mega-menu-link {
		width: 54px;
		height: 54px;
	}
}

@media (min-width: 1350px) and (max-width: 1500px) {
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link,
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link, 
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link,
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
		font-size: 15px;
	}	
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.menu-btn {
		margin: 0 20px 0 40px;	
	}
	
	#custom-header .col-1 {
		width: 13%;
	}
	
	#custom-header .col-2 {
		width: 87%;
	}
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.menu-btn > a.mega-menu-link {
		padding-top: 1px;
		padding-bottom: 1px;
	}
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.portal-icon > a.mega-menu-link {
		width: 48px;
		height: 48px;
	}
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item {
		margin: 0 7px 0 0;
	}
}

@media (min-width: 1197px) and (max-width: 1349px) {
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link,
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link, 
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link,
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
		font-size: 13px;
	}	
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.menu-btn {
		margin: 0 20px 0 40px;	
	}
	
	#custom-header .col-1 {
		width: 10%;
	}
	
	#custom-header .col-2 {
		width: 90%;
	}
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.menu-btn > a.mega-menu-link {
		padding-top: 0;
		padding-bottom: 0;
		padding-left: 13px;
        padding-right: 13px;
	}
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.portal-icon > a.mega-menu-link {
		width: 46px;
		height: 46px;
	}
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item {
		margin: 0 7px 0 0;
	}
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-item-has-children.dropdown-arrow > a.mega-menu-link > span.mega-indicator {
		width: 14px;
		height: 14px;
	}
}

@media (min-width: 1024px) and (max-width: 1196px) {
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link,
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link, 
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link,
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
		font-size: 11px;
	}	
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.menu-btn {
		margin: 0 20px 0 10px;	
	}
	
	#custom-header .col-1 {
		width: 10%;
	}
	
	#custom-header .col-2 {
		width: 90%;
	}
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.menu-btn > a.mega-menu-link {
		padding-top: 0;
		padding-bottom: 0;
		padding-left: 13px;
        padding-right: 13px;
		line-height: 30px;
	}
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.portal-icon > a.mega-menu-link {
		padding: 0 5px;
	}
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.portal-icon > a.mega-menu-link {
		width: 36px;
		height: 36px;
	}
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item {
		margin: 0 0 0 0;
	}
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-item-has-children.dropdown-arrow > a.mega-menu-link > span.mega-indicator {
		width: 14px;
		height: 14px;
	}
}

@media (max-width: 1023px) {
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column-standard > a.mega-menu-link, 
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link,
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link,
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.portal-icon > a.mega-menu-link {
		font-size: 18px;
	}
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 li.mega-menu-item-has-children.dropdown-arrow > a.mega-menu-link {
		justify-content: space-between;
	}
	
	#custom-header .col-1 {
		width: 50%;
	}
	
	#custom-header .col-2 {
		width: 50%;
	}
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.menu-btn,
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.portal-icon {
		margin: 10px;	
	}
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.menu-btn > a.mega-menu-link {
		text-align: center;
	}
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.portal-icon > a.mega-menu-link {
		width: auto;
        height: auto;
		text-transform: uppercase;
        letter-spacing: 1px;
		padding-bottom: 8px;
    	padding-left: 20px;
    	padding-right: 20px;
    	padding-top: 8px;
	}
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item.portal-icon > a.mega-menu-link img {
		width: 30px;
	}
	
	#mega-menu-wrap-menu-1 .mega-menu-toggle + #mega-menu-menu-1 {
        padding: 30px 15px;		
	}
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
		padding: 10px;
	}
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {
		padding-left: 15px;
	}
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-flyout ul.mega-sub-menu {
		padding-top: 10px;
	}
	
	#custom-header.is-scrolled .e-con-inner {
		padding-top: 10px;
		padding-bottom: 10px;
	}
}
/* -- HOME -- */
/* - HERO - */
/* custom pagination for hero and project */
.hero-carousel,
.project-carousel { 
	position: relative; 
}

.hero-carousel .carousel-nav {
  	position: absolute;
  	right: 95px;
  	bottom: 30px;
  	display: flex;
  	align-items: center;
  	justify-content: flex-end;
  	gap: 10px;
  	z-index: 10;
  	width: auto;
	white-space: nowrap;
}

.project-carousel .carousel-nav {
  	position: absolute;
  	right: 0;
  	bottom: -40px;
  	display: flex;
  	align-items: center;
  	justify-content: flex-end;
  	gap: 10px;
  	z-index: 10;
  	width: auto;
	white-space: nowrap;
}

.hero-carousel .carousel-nav .elementor-swiper-button-prev,
.hero-carousel .carousel-nav .elementor-swiper-button-next,
.project-carousel .carousel-nav .elementor-swiper-button-prev,
.project-carousel .carousel-nav .elementor-swiper-button-next {
  	position: static !important;
  	flex: 0 0 auto !important;
  	margin: 7px 0 0 0;
	cursor: pointer;
}

.project-carousel.elementor-widget-loop-carousel .elementor-swiper-button.elementor-swiper-button-next svg, 
.project-carousel.elementor-widget-loop-carousel .elementor-swiper-button.elementor-swiper-button-prev svg {
	fill: transparent;
}

.hero-carousel .carousel-nav .elementor-swiper-button-prev,
.project-carousel .carousel-nav .elementor-swiper-button-prev { 
	order: 1; 
}

.hero-carousel .carousel-nav .elementor-swiper-button-next,
.project-carousel .carousel-nav .elementor-swiper-button-next { 
	order: 3; 
}

.hero-carousel .carousel-nav .elementor-swiper-button-prev:hover,
.project-carousel .carousel-nav .elementor-swiper-button-prev:hover {
	transform: translate(-3px, 0px);
}

.hero-carousel .carousel-nav .elementor-swiper-button-next:hover,
.project-carousel .carousel-nav .elementor-swiper-button-next:hover {
	transform: translate(3px, 0px);	
}

.hero-carousel .carousel-nav .swiper-pagination,
.project-carousel .carousel-nav .swiper-pagination {	
  	position: static !important;
  	width: fit-content !important;
  	max-width: none !important;
  	flex: 0 0 auto;
  	display:flex;
  	align-items:center;
  	gap:10px;
  	margin: 0 !important;
  	transform: none;
	order: 2; 
}

.hero-carousel .swiper-pagination-bullet,
.project-carousel .swiper-pagination-bullet {
    background: rgb(255 255 255 / 10%) !important;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  	color: rgba(255,255,255,0.7);
  	font-size: 13px;
	opacity: 1;
}

.hero-carousel .swiper-pagination-bullet-active,
.hero-carousel .swiper-pagination-bullet:hover,
.project-carousel .swiper-pagination-bullet-active,
.project-carousel .swiper-pagination-bullet:hover {
	color: #fff !important;
    background: #006F9C !important;
}

.hero-carousel.elementor-widget-n-carousel .swiper-pagination-bullet,
.project-carousel.elementor-widget-n-carousel .swiper-pagination-bullet {
	width: 27px;
	height: 27px;
	display: flex !important;
  	align-items: center;
  	justify-content: center;
  	border-radius: 50%;
  	line-height: 1;
  	font-size: 13px;
  	background: transparent;
  	opacity: 1;
  	color: rgba(255,255,255,0.7);
  	padding: 0;
}

.hero-carousel .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, 
.hero-carousel .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet,
.project-carousel .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, 
.project-carousel .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0;
}

.hero-carousel.elementor-widget-n-carousel .elementor-swiper-button.elementor-swiper-button-next svg, 
.hero-carousel.elementor-widget-n-carousel .elementor-swiper-button.elementor-swiper-button-prev svg,
.project-carousel.elementor-widget-n-carousel .elementor-swiper-button.elementor-swiper-button-next svg, 
.project-carousel.elementor-widget-n-carousel .elementor-swiper-button.elementor-swiper-button-prev svg {
	fill: transparent;
}

.hero-carousel.elementor-widget-n-carousel.elementor-pagination-position-outside:not(:has(>.elementor-widget-container))>.swiper, 
.hero-carousel.elementor-widget-n-carousel.elementor-pagination-position-outside:not(:has(>.elementor-widget-container))>.swiper-container, 
.hero-carousel.elementor-widget-n-carousel.elementor-pagination-position-outside>.elementor-widget-container>.swiper, 
.hero-carousel.elementor-widget-n-carousel.elementor-pagination-position-outside>.elementor-widget-container>.swiper-container,
.project-carousel.elementor-widget-n-carousel.elementor-pagination-position-outside:not(:has(>.elementor-widget-container))>.swiper, 
.project-carousel.elementor-widget-n-carousel.elementor-pagination-position-outside:not(:has(>.elementor-widget-container))>.swiper-container, 
.project-carousel.elementor-widget-n-carousel.elementor-pagination-position-outside>.elementor-widget-container>.swiper, 
.project-carousel.elementor-widget-n-carousel.elementor-pagination-position-outside>.elementor-widget-container>.swiper-container{
	padding-bottom: 0;
}

@media (max-width: 767px) {
	.hero-carousel .carousel-nav,
	.project-carousel .carousel-nav {
		left: 30px;
    	right: auto;		
	}
	
	.hero-carousel .carousel-nav {
    	bottom: -40px;		
	}
} 

/* - FEATURED PROJECTS - */
.elementor-1168 .custom-project-carousel-list-item:hover h3.elementor-heading-title {
	color: #fff;
}

.elementor-1168 .custom-project-carousel-list-item img {
	aspect-ratio: 325 / 217;
    object-fit: cover;	
}

.elementor.elementor .e-con>.elementor-widget.max-width-460 {
	max-width: 460px;
}

@media (max-width: 767px) {	
	.elementor.elementor .e-con>.elementor-widget.max-width-460 {
		max-width: 100%
	}
}

@media (min-width: 1025px) and (max-width: 1200px) {
	.elementor-1168 .custom-project-carousel-list-item h3.elementor-heading-title {
		font-size: 21px !important;		
	}	
}

/* - STATS - */
.custom-number-counter .elementor-counter-title {
	text-align: center;
}

@media (min-width: 1025px) and (max-width: 1280px) {
	#stats-container .custom-number-counter .elementor-counter-title {
		font-size: 17px;
	}	
}


@media (min-width: 1025px) and (max-width: 1399px) {
	#stats-container .custom-number-counter .elementor-counter-number {
		font-size: 41px;
	}
	
	#stats-container .number-container {
		padding-top: 20px;
		padding-right: 20px;
		padding-bottom: 20px;
		padding-left: 20px;
	}
}

/* - SOLUTIONS - */
.e-con.e-con>.e-con-inner>.elementor-widget.max-width-564 {
	max-width: 564px;
}

@media (max-width: 767px){	
	.e-con.e-con>.e-con-inner>.elementor-widget.max-width-564 {
		max-width: 100%
	}
}

/* carousel */
.our-solutions-container .solutions-carousel{
  	--peek: 220px;  
  	--gap: 10px;   
  	position: relative;
  	left: 50%;
  	transform: translateX(-50%);
	height: 510px;
  	width: 100vw !important;
  	max-width: 100vw !important;
  	overflow-x: clip;
  	clip-path: inset(0 calc(var(--peek) * -1) 0 0);
	margin-left: 5.5%;
}

.our-solutions-container .solutions-carousel .e-n-carousel.swiper{
 	overflow: visible !important;
 	width: 100% !important;
 	max-width: 100% !important;
  	padding-right: var(--peek) !important;
  	padding-left: 0 !important;
}

.our-solutions-container .solutions-carousel .swiper-wrapper{
  	padding-left: 0 !important;
}

.our-solutions-container .solutions-carousel .swiper-slide:first-child{
  	margin-left: 0 !important;
}

body { 
	overflow-x: hidden; 
}

.page-content { 
	overflow-x: clip; 
}

.swiper-pagination-progressbar.swiper-pagination-horizontal {
	top: auto;
    bottom: 0;	
}

.solutions-carousel.elementor-element :where(.swiper-horizontal)~.swiper-pagination-progressbar, 
.solutions-carousel.elementor-lightbox :where(.swiper-horizontal)~.swiper-pagination-progressbar {
	max-width: 1730px;	
}

.solutions-carousel .swiper-pagination-progressbar::after {
	content: '';
	display: block;
	height: 1px;
	width: 100%;
	background-color: rgb(25 25 26 / 15%);
	margin-top: 2px;
}

.solutions-carousel .swiper-pagination-progressbar {
	background: transparent;
}

.solutions-carousel.elementor-widget-n-carousel .elementor-swiper-button.elementor-swiper-button-next {
    content: '';
    background-image: linear-gradient(90deg, #FFFFFF00 0%, #ffffff 70%);
    display: inline-block;
    height: 450px;
    width: 400px;
    position: absolute;
    top: -6px;
    right: 0;
    z-index: 9;
}

.solutions-carousel.elementor-widget-n-carousel .elementor-swiper-button.elementor-swiper-button-next svg {
	position: relative;
    top: 46%;
    left: 55%;	
}

@media (max-width: 1850px) {
	.solutions-carousel.elementor-element :where(.swiper-horizontal)~.swiper-pagination-progressbar, 
	.solutions-carousel.elementor-lightbox :where(.swiper-horizontal)~.swiper-pagination-progressbar {
		max-width: 90%;	
	}
}

@media (min-width: 1637px) and (max-width: 1885px) {
	body .our-solutions-container .solutions-carousel h3.elementor-heading-title {
		font-size: 32px !important;
	}
}


@media (min-width: 1190px) and (max-width: 1636px) {
	body .our-solutions-container .solutions-carousel h3.elementor-heading-title {
		font-size: 27px !important;
	}
}

@media (min-width: 1024px) and (max-width: 1189px) {
	body .our-solutions-container .solutions-carousel h3.elementor-heading-title {
		font-size: 21px !important;
	}
}

@media (min-width: 921px) and (max-width: 1023px) {
	body .our-solutions-container .solutions-carousel h3.elementor-heading-title {
		font-size: 32px !important;
	}
}

@media (min-width: 768px) and (max-width: 920px) {
	body .our-solutions-container .solutions-carousel h3.elementor-heading-title {
		font-size: 25px !important;
	}
}


@media (max-width: 767px) {
	body .our-solutions-container .solutions-carousel h3.elementor-heading-title {
		font-size: 25px !important;
	}
	
	.solutions-carousel.elementor-widget-n-carousel .elementor-swiper-button.elementor-swiper-button-next {
		background-image: linear-gradient(90deg, #FFFFFF00 0%, #ffffff 80%);
		height: 480px;
		width: 196px;
		right: 52px;	
	}
	
	body .our-solutions-container .solutions-carousel{
    	--e-n-carousel-swiper-slides-to-display: 5.5 !important; 
    	--peek: 80px !important; 
		margin-left: 12.5%;
	}
	
	.solutions-carousel.elementor-element :where(.swiper-horizontal)~.swiper-pagination-progressbar, 
	.solutions-carousel.elementor-lightbox :where(.swiper-horizontal)~.swiper-pagination-progressbar {
		max-width: 80%;	
	}
}

@media (max-width: 480px) {
	.solutions-carousel.elementor-widget-n-carousel .elementor-swiper-button.elementor-swiper-button-next {
		right: 18px;	
	}	
}
/* -- END HOME -- */
/* -- FOOTER -- */
.custom-blurb .elementor-icon-box-icon {
	margin-top: 5px;
}

.footer-bottom-bar > .e-con-inner {
	border-top: 1px solid rgb(255 255 255 / 15%);
	padding-top: 50px;
	padding-bottom: 40px;
}

.footer-bottom-bar .elementor-icon-box-title {
	margin-bottom: 0;
}

.elementor-nav-menu--dropdown .elementor-item.elementor-item-active, 
.elementor-nav-menu--dropdown .elementor-item.highlighted, 
.elementor-nav-menu--dropdown .elementor-item:focus, 
.elementor-nav-menu--dropdown .elementor-item:hover, 
.elementor-sub-item.elementor-item-active, 
.elementor-sub-item.highlighted, 
.elementor-sub-item:focus, 
.elementor-sub-item:hover {
	background-color: transparent;
}

@media (min-width: 1025px) and (max-width: 1560px) {
	.elementor-351 .footer-cta .elementor-element.elementor-element-3befad8 {
		width: 37%;
	}
}

@media (min-width: 1110px) and (max-width: 1344px) {
	.elementor-351 .footer-cta .elementor-element.elementor-element-3befad8 .elementor-heading-title {
		font-size: 43px;
	}
}

@media (min-width: 1025px) and (max-width: 1109px) {
	.elementor-351 .footer-cta .elementor-element.elementor-element-3befad8 .elementor-heading-title {
		font-size: 38px;
	}
	
	.elementor-351 .footer-cta .elementor-element.elementor-element-7fdda7b {
		font-size: 20px;
	}
}

@media (max-width: 1024px) {
	.footer-four-columns .elementor-nav-menu--dropdown {
		background-color: transparent;	
	}
	
	.footer-four-columns .elementor-nav-menu--dropdown a {
		color: #fff;
		padding: 10px 0;
	}
	
	.footer-four-columns .elementor-nav-menu--dropdown a:hover {
		color: #006f9c;
	}
	
	.footer-four-columns .e-con-inner,
	.footer-four-columns .e-con-inner > .elementor-element {
		display: block;
	}
	
	.footer-four-columns .e-con-inner > .elementor-element {
		float: left;
	}
	
	footer.elementor-351 .footer-four-columns .footer-heading {
		font-size: 16px;
	}
	
	.footer-four-columns .e-con-inner .elementor-element.col-1 {
		display: flex;
		padding-bottom: 30px;
	}
}

@media (min-width: 1025px) and (max-width: 1090px) {
	footer.elementor-351 .footer-four-columns .footer-heading {
		font-size: 16px;
	}	
}
/* -- END FOOTER -- */
/* -- ABOUT US PAGE -- */
/* - timeline - */
.elementor-widget-timeline-widget-addon .twae-button-prev .fa-chevron-left:before,
.elementor-widget-timeline-widget-addon .twae-button-next .fa-chevron-right:before {
	content: '';
	display: block;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 26px;
	height: 26px;
}

.elementor-widget-timeline-widget-addon .twae-button-prev .fa-chevron-left:before {
	background-image: url(/wp-content/uploads/pagination-arrow.svg);
	margin-right: 20px;
}

.elementor-widget-timeline-widget-addon .twae-button-next .fa-chevron-right:before {
	background-image: url(/wp-content/uploads/pagination-arrow-next.svg);
	margin-left: 20px;
}

/* - MAP - */
.map-container .elementor-widget-call-to-action .elementor-cta__title {
	margin-bottom: 3px;
}

.map-container .elementor-widget-call-to-action {
	margin-bottom: 10px;
}

/* - KEY MANAGEMENT - */
.management-container .elementor-widget-call-to-action .elementor-cta__bg-wrapper {
	aspect-ratio: 1 / 1;	
	border-radius: 16px;
}

.management-container .elementor-widget-call-to-action {
	cursor: pointer;
}

/* popup */
@media (max-width: 1024px) {
	.custom-popup.elementor-popup-modal .dialog-widget-content {
		width: 80%; 
	}
	
	.custom-popup.elementor-popup-modal .dialog-message {
		width: auto !important;
	}
}

@media (max-width: 680px) {
	.custom-popup.elementor-popup-modal .dialog-widget-content {
		width: 80%; 
	}
	
	.custom-popup.elementor-popup-modal .dialog-message {
		width: auto !important;
	}
}

@media (min-width: 1025px) and (max-width: 1170px) {
	.management-container .elementor-widget-call-to-action h3.elementor-cta__title {
		font-size: 34px !important;
	}
}

/* hotspot positions */
@media (min-width: 1290px) and (max-width: 1499px) {
	/* twin falls */
	.elementor-457 .custom-hotspot.elementor-element.elementor-element-65c36b8 .elementor-repeater-item-113afd3 {
		top: 25%;
		--hotspot-translate-y: 25%;		
	}
	/* st george, UT */
	.elementor-457 .custom-hotspot.elementor-element.elementor-element-65c36b8 .elementor-repeater-item-4c297d1 {
		top: 45%;
		--hotspot-translate-y: 45%;			
	}
}

@media (min-width: 1120px) and (max-width: 1289px) {
	/* twin falls, ID */
	.elementor-457 .custom-hotspot.elementor-element.elementor-element-65c36b8 .elementor-repeater-item-113afd3 {
		top: 23%;
		--hotspot-translate-y: 23%;		
	}
	/* price, UT */
	.elementor-457 .custom-hotspot.elementor-element.elementor-element-65c36b8 .elementor-repeater-item-dd04af7 {
		left: 23%;
    	--hotspot-translate-x: 23%;		
	}
	/* st george, UT */
	.elementor-457 .custom-hotspot.elementor-element.elementor-element-65c36b8 .elementor-repeater-item-4c297d1 {
		top: 45%;
		--hotspot-translate-y: 45%;			
	}
	/* rock springs, WY */
	.elementor-457 .custom-hotspot.elementor-element.elementor-element-65c36b8 .elementor-repeater-item-063f751 {
		top: 30%;
		--hotspot-translate-y: 30%;			
	}
}

@media (min-width: 1025px) and (max-width: 1119px) {
	/* twin falls */
	.elementor-457 .custom-hotspot.elementor-element.elementor-element-65c36b8 .elementor-repeater-item-113afd3 {
		top: 22%;
		--hotspot-translate-y: 22%;		
		left: 17%;
    	--hotspot-translate-x: 17%;
	}
	/* price, UT */
	.elementor-457 .custom-hotspot.elementor-element.elementor-element-65c36b8 .elementor-repeater-item-dd04af7 {
		left: 23%;
    	--hotspot-translate-x: 23%;		
	}
	/* st george, UT */
	.elementor-457 .custom-hotspot.elementor-element.elementor-element-65c36b8 .elementor-repeater-item-4c297d1 {
		top: 45%;
		--hotspot-translate-y: 45%;			
	}
	/* rock springs, WY */
	.elementor-457 .custom-hotspot.elementor-element.elementor-element-65c36b8 .elementor-repeater-item-063f751 {
		top: 29%;
        --hotspot-translate-y: 29%;
        left: 26.5%;
        --hotspot-translate-x: 26.5%;		
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	/* twin falls */
	.elementor-457 .custom-hotspot.elementor-element.elementor-element-65c36b8 .elementor-repeater-item-113afd3 {
		top: 23%;
		--hotspot-translate-y: 23%;		
		left: 17%;
    	--hotspot-translate-x: 17%;
	}
	/* st george, UT */
	.elementor-457 .custom-hotspot.elementor-element.elementor-element-65c36b8 .elementor-repeater-item-4c297d1 {
		top: 45%;
		--hotspot-translate-y: 45%;		
		left: 18%;
    	--hotspot-translate-x: 18%;
	}
	/* rock springs, WY */
	.elementor-457 .custom-hotspot.elementor-element.elementor-element-65c36b8 .elementor-repeater-item-063f751 {
		top: 29%;
        --hotspot-translate-y: 29%;
        left: 26.5%;
        --hotspot-translate-x: 26.5%;		
	}
}

@media (min-width: 580px) and (max-width: 767px) {
	/* twin falls */
	.elementor-457 .custom-hotspot.elementor-element.elementor-element-65c36b8 .elementor-repeater-item-113afd3 {
		left: 18%;
        --hotspot-translate-x: 18%;
        top: 26%;
        --hotspot-translate-y: 26%;
	}
	/* price, UT */
	.elementor-457 .custom-hotspot.elementor-element.elementor-element-65c36b8 .elementor-repeater-item-dd04af7 {
        left: 24%;
        --hotspot-translate-x: 24%;
        top: 40%;
        --hotspot-translate-y: 40%;	
	}
	/* st george, UT */
	.elementor-457 .custom-hotspot.elementor-element.elementor-element-65c36b8 .elementor-repeater-item-4c297d1 {
		top: 47%;
		--hotspot-translate-y: 47%;		
		left: 19%;
    	--hotspot-translate-x: 19%;
	}
	/* rock springs, WY */
	.elementor-457 .custom-hotspot.elementor-element.elementor-element-65c36b8 .elementor-repeater-item-063f751 {
        top: 32%;
        --hotspot-translate-y: 32%;
        left: 27.5%;
        --hotspot-translate-x: 27.5%;	
	}
}

@media (min-width: 480px) and (max-width: 579px) {
	/* twin falls */
	.elementor-457 .custom-hotspot.elementor-element.elementor-element-65c36b8 .elementor-repeater-item-113afd3 {
		left: 17%;
        --hotspot-translate-x: 17%;
        top: 24%;
        --hotspot-translate-y: 24%;
	}
	/* st george, UT */
	.elementor-457 .custom-hotspot.elementor-element.elementor-element-65c36b8 .elementor-repeater-item-4c297d1 {
		top: 46%;
		--hotspot-translate-y: 46%;		
		left: 18%;
    	--hotspot-translate-x: 18%;
	}
	/* rock springs, WY */
	.elementor-457 .custom-hotspot.elementor-element.elementor-element-65c36b8 .elementor-repeater-item-063f751 {
		top: 31%;
        --hotspot-translate-y: 31%;
        left: 27%;
        --hotspot-translate-x: 27%;	
	}
}

@media (min-width: 400px) and (max-width: 479px) {
	/* twin falls */
	.elementor-457 .custom-hotspot.elementor-element.elementor-element-65c36b8 .elementor-repeater-item-113afd3 {
		left: 17%;
        --hotspot-translate-x: 17%;
        top: 22%;
        --hotspot-translate-y: 22%;
	}
	/* st george, UT */
	.elementor-457 .custom-hotspot.elementor-element.elementor-element-65c36b8 .elementor-repeater-item-4c297d1 {
		top: 46%;
		--hotspot-translate-y: 46%;		
		left: 18%;
    	--hotspot-translate-x: 18%;
	}
	/* rock springs, WY */
	.elementor-457 .custom-hotspot.elementor-element.elementor-element-65c36b8 .elementor-repeater-item-063f751 {
		top: 29%;
        --hotspot-translate-y: 29%;
        left: 27%;
        --hotspot-translate-x: 27%;	
	}
}

@media (max-width: 399px) {
	/* twin falls */
	.elementor-457 .custom-hotspot.elementor-element.elementor-element-65c36b8 .elementor-repeater-item-113afd3 {
		left: 16%;
        --hotspot-translate-x: 16%;
        top: 20%;
        --hotspot-translate-y: 20%;
	}
	/* rock springs, WY */
	.elementor-457 .custom-hotspot.elementor-element.elementor-element-65c36b8 .elementor-repeater-item-063f751 {
		top: 27%;
        --hotspot-translate-y: 27%;
        left: 27%;
        --hotspot-translate-x: 27%;	
	}
}

/* -- END ABOUT US PAGE -- */

/* --  SAFETY STANDARDS PAGE -- */
/* wp data tables styling */ 
body .wpdt-c.wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tbody td, 
body .wpdt-c .wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable th, 
body .wpdt-c .wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tbody td {
    background-color: transparent;	
}

body .wpdt-c.wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable th {
	background-color: #006F9C;
}

body .wpdt-c.wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tr td:first-child, 
body .wpdt-c.wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable thead tr td:first-child, 
body .wpdt-c .wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tr td:first-child, 
body .wpdt-c .wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable thead tr td:first-child, 
body .wpdt-c.wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tr td:last-child, 
body .wpdt-c.wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable thead tr td:last-child, 
body .wpdt-c .wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tr td:last-child, 
body .wpdt-c .wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable thead tr td:last-child,
body .wpdt-c.wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tbody tr.even td.wpdt-cell, 
body .wpdt-c.wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tbody tr.odd td.wpdt-cell, 
body .wpdt-c .wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tbody tr.even td.wpdt-cell, 
body .wpdt-c .wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tbody tr.odd td.wpdt-cell, 
body .wpdt-c.wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable th, 
body .wpdt-c.wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tbody td, 
body .wpdt-c .wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable th, 
body .wpdt-c .wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tbody td {
	border: 1px solid #fff;
}

body .wpdt-c.wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tbody tr:last-child td {
	border-bottom-color: #fff;
}

body .wpdt-c.wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tbody td:nth-child(1),
body .wpdt-c.wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tbody td:nth-child(3),
body .wpdt-c.wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tbody td:nth-child(5) {
	background-color: rgb(255 255 255 / 7%);
}

@media (max-width: 599px) {
	body .wpdt-c.wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable {
		font-size: 12px;
	}
}

@media (max-width: 480px) {
	.table-module {
		overflow-x: scroll;
	}
}

/* tabs */
.custom-tabs button.e-n-tab-title:hover,
.custom-tabs button.e-n-tab-title:focus {
	border-radius: 0;
}

/* ul in text module */
.elementor-widget-text-editor ul li {
	margin-bottom: 6px;
}

.custom-tabs .e-n-tabs-heading {
	margin-bottom: 10px;
}

@media (min-width: 1025px) and (max-width: 1270px) {
	.commitment-and-highlights .e-con-full.e-flex {
		flex-direction: column;
	}
	
	.commitment-and-highlights .e-con-full.e-flex .commitment-container,
	.commitment-and-highlights .e-con-full.e-flex .safety-container {
		width: 100%;
	}
}

@media (min-width: 768px) and (max-width: 1585px) {
	.custom-tabs button.e-n-tab-title .e-n-tab-title-text {
		font-size: 10px;
	}
}

@media (max-width: 1376px) {
	.elementor-widget-n-tabs .e-n-tabs-heading {
		flex-wrap: nowrap;
	}
}

@media (max-width: 767px) {
	.elementor-widget-n-tabs .e-activated .e-n-tab-title .e-n-tab-icon {
		transform: rotate(180deg);
	}
	
	.custom-tabs button.e-n-tab-title {
		justify-content: space-between;
	}
	
	.custom-tabs button.e-n-tab-title .e-n-tab-title-text {
		text-align: left;
	}
}

@media (min-width: 768px) {
	.elementor-widget-n-tabs .e-activated .e-n-tab-title .e-n-tab-icon {
		display: none;
	}
}
/* -- END SAFETY STANDARDS PAGE -- */
/* -- START PROJECT TEMPLATE -- */
/* hide captions */
.single-project .elementor-slideshow__footer {
	display: none;
}
/* arrow colors */
.elementor-element .swiper .elementor-swiper-button svg, 
.elementor-element .swiper~.elementor-swiper-button svg, 
.elementor-lightbox .swiper .elementor-swiper-button svg, 
.elementor-lightbox .swiper~.elementor-swiper-button svg {
	fill: transparent;
}

.acf-media-swiper .acf-media-slide img,
.acf-media-swiper .acf-media-slide video{
	margin: auto;
  display:block;
  border-radius:16px;
}

.acf-media-swiper .swiper-button-next:after, 
.acf-media-swiper .swiper-button-prev:after {
    font-family: none;
	content: '';
	display: block;
	width: 26px;
	height: 26px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.acf-media-swiper .swiper-button-next:after {
	background-image: url(/wp-content/uploads/pagination-arrow-next.svg);	
}

.acf-media-swiper .swiper-button-prev:after {
	background-image: url(/wp-content/uploads/pagination-arrow.svg);
}

.acf-media-swiper .swiper-pagination-bullets {
	display: none;
}

/* -- END PROJECT TEMPLATE -- */

/* -- START PROJECT PAGE -- */
#all-projects .e-loop-item:hover h3.elementor-heading-title {
	color: #fff;
}

/* pagination */
.custom-pagination .jet-filters-pagination .prev-next {
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	width: 26px;
	height: 26px;
	font-size: 0;
	transition: 0.3s all ease-in-out;
}

.custom-pagination .jet-filters-pagination .prev-next.prev {
	background-image: url("/wp-content/uploads/pagination-arrow-black.svg");
}

.custom-pagination .jet-filters-pagination .prev-next.next {
	background-image: url("/wp-content/uploads/pagination-arrow-next-black.svg");
}

.custom-pagination .jet-filters-pagination .prev-next.prev:hover {
	    transform: translate(-3px, 0px);
}

.custom-pagination .jet-filters-pagination .prev-next.next:hover {
	    transform: translate(3px, 0px);
}

.custom-pagination .jet-filters-pagination .jet-filters-pagination__item:not(.prev,.next) {
	display: flex;
	justify-content: center;
	font-size: 13px;
	line-height: 24px;
	background: rgb(0 0 0 / 10%);
	border-radius: 20px;
	width: 26px;
	height: 26px;
	color: #000;
}

body .custom-pagination .jet-filters-pagination .jet-filters-pagination__link {
	padding: 0 !important;
}

.custom-pagination .jet-filters-pagination .jet-filters-pagination__current,
.custom-pagination .jet-filters-pagination .jet-filters-pagination__item:not(.prev,.next):hover {
	background: #006F9C !important;
	color: #fff !important;
}

/* -- END PROJECT PAGE -- */
/* -- START FAQ PAGE -- */
.custom-accordion.elementor-widget-n-accordion .e-n-accordion-item-title {
	border-radius: 8px;
}

.custom-accordion > .e-n-accordion > .e-n-accordion-item[open] > .e-n-accordion-item-title {
	border-radius: 8px 8px 0 0;
}
/* -- END FAQS PAGE -- */

/* -- START CAREERS PAGE -- */

/* all lightbox slideshows */
body .elementor-slideshow__footer {
	display: none;
}

/* comprehensive benefits */
@media (min-width: 1025px) and (max-width: 1225px) {
	.sm-desktop-long-heading h3.elementor-heading-title {
		font-size: 33px !important;
	}
}

/* Application - gravity form - ID 2 */
.gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_blue {
	background: #006F9C;
}


/* pagination */
.gform_wrapper input.gform_next_button,
.gform_wrapper input.gform_previous_button,
.gform_wrapper input.gform_button {
	font-size: 15px;
	padding: 10px 18px 10px 18px;
}

.gform_wrapper.gravity-theme input.gform_previous_button:hover {
    background-color: #0093C3;	
	color: #fff;
}

.gform_wrapper input[type=date]:focus, 
.gform_wrapper input[type=email]:focus, 
.gform_wrapper input[type=number]:focus, 
.gform_wrapper input[type=password]:focus, 
.gform_wrapper input[type=search]:focus, 
.gform_wrapper input[type=tel]:focus, 
.gform_wrapper input[type=text]:focus, 
.gform_wrapper input[type=url]:focus, 
.gform_wrapper select:focus, 
.gform_wrapper textarea:focus {
	border-color: #006F9C;
	outline: 1px solid #006f9c;
}

/* -- END CAREERS PAGE -- */

/* -- START EMPLOYEE PORTAL PAGE -- */
.button-cursor {
	cursor: pointer;
}

/* table */
body .documents-table .wpdt-c.wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tr td:first-child, 
body .documents-table .wpdt-c.wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable thead tr td:first-child, 
body .documents-table .wpdt-c .wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tr td:first-child, 
body .documents-table .wpdt-c .wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable thead tr td:first-child, 
body .documents-table .wpdt-c.wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tr td:last-child, 
body .documents-table .wpdt-c.wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable thead tr td:last-child, 
body .documents-table .wpdt-c .wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tr td:last-child, 
body .documents-table .wpdt-c .wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable thead tr td:last-child, 
body .documents-table .wpdt-c.wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tbody tr.even td.wpdt-cell, 
body .documents-table .wpdt-c.wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tbody tr.odd td.wpdt-cell, 
body .documents-table .wpdt-c .wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tbody tr.even td.wpdt-cell, 
body .documents-table .wpdt-c .wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tbody tr.odd td.wpdt-cell, 
body .documents-table .wpdt-c.wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable th, 
body .documents-table .wpdt-c.wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tbody td, 
body .documents-table .wpdt-c .wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable th, 
body .documents-table .wpdt-c .wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tbody td {
	border: 1px solid rgb(255 255 255 / 20%);	
}

body .documents-table .wpdt-c.wpDataTableContainerSimpleTable .wpdtSimpleTable.wpDataTable tbody tr:last-child td {
	border-bottom-color: rgb(255 255 255 / 20%);
}

/* PTO Form popup */
body:not(.rtl) #elementor-popup-modal-2686 .dialog-close-button {
	right: 2%;	
}

body .gform_wrapper.gravity-theme .gfield_description {
	font-size: 13px;	
	padding-top: 0;
}

/* responsive */
@media (min-width: 1025px) and (max-width: 1100px) {
	.blue-outline-cta .elementor-widget-text-editor {
		font-size: 18px !important;
	}
	
	.sm-h2 h2 {
		font-size: 45px !important;
	}
}
/* -- END EMPLOYEE PORTAL PAGE -- */

/* -- START PASSWORD PROTECTED PAGES -- */
@media (min-width: 768px) {
	main.post-password-required .page-content {
		padding-top: 150px;	
	}	
}

@media (max-width: 767px) {
	main.post-password-required .page-content {
		padding-top: 50px;	
	}	
}

.post-password-form {
	color: #fff;
	padding-left: 30px;
	padding-right: 30px;
}

.post-password-form input[type="submit"] {
	font-size: 15px;
	padding: 7px 18px 7px 18px;
}
/* -- END PASSWORD PROTECTED PAGES -- */


/* -- START COMPLIANZ PAGES -- */
.custom-complianz #cmplz-datarequest-submit {
    padding: 10px 18px 10px 18px;	
	margin-top: 10px;
}

.custom-complianz #cmplz_datarequest_email {
	margin-bottom: 10px;
}

#cmplz-cookies-overview .cmplz-dropdown summary, 
#cmplz-document .cmplz-dropdown summary, 
.editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown summary,
#cmplz-manage-consent-container.cmplz-manage-consent-container .cmplz-categories .cmplz-category .cmplz-category-header,
#cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose .name-header, 
#cmplz-document .cmplz-dropdown .cookies-per-purpose .name-header, 
.editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown .cookies-per-purpose .name-header,
#cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose div, 
#cmplz-document .cmplz-dropdown .cookies-per-purpose div, 
.editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown .cookies-per-purpose div,
#cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose .retention-header, 
#cmplz-document .cmplz-dropdown .cookies-per-purpose .retention-header, 
.editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown .cookies-per-purpose .retention-header,
#cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose .function-header, 
#cmplz-document .cmplz-dropdown .cookies-per-purpose .function-header, 
.editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown .cookies-per-purpose .function-header {
	background-color: #262626;
}

/* -- END COMPLIANZ PAGES -- */

/* -- START LEGAL MENU IN FOOTER -- */
@media (max-width: 400px) {
	.custom-legal-menu a.elementor-item {
		padding: 0 !important;
    	margin: 0 0 10px 0 !important;
	}
	
	.custom-legal-menu .elementor-nav-menu--layout-horizontal .elementor-nav-menu {
		flex-direction: column;
	}
	
	.custom-legal-menu .elementor-nav-menu--layout-horizontal .elementor-nav-menu>li:not(:last-child):after {
		border-color: transparent;
	}
}

/* -- END LEGAL MENU IN FOOTER -- */

/* -- START SUPPLIERS PAGE -- */
/* progress bar */
#gform_wrapper_3.gform_wrapper.gravity-theme .gf_progressbar_percentage.percentbar_blue {
	background-color: #0093C3;
}

#gform_wrapper_3.gform_wrapper.gravity-theme .gf_progressbar_title,
#gform_wrapper_3.gform_wrapper.gravity-theme .gsection h3.gsection_title,
#gform_wrapper_3.gform_wrapper.gravity-theme .gfield_label,
#gform_wrapper_3.gform_wrapper.gravity-theme .ginput_complex label, 
#gform_wrapper_3.gform_wrapper.gravity-theme .ginput_complex legend,
#gform_wrapper_3.gform_wrapper.gravity-theme .gfield_header_item, 
#gform_wrapper_3.gform_wrapper.gravity-theme .gform_fileupload_rules, 
#gform_wrapper_3.gform_wrapper.gravity-theme .ginput_complex label,
#gform_wrapper_3.gform_wrapper.gravity-theme .gfield.gfield--width-full,
.supplier-form .gform_confirmation_wrapper .gform_confirmation_message {
	color: #fff;
}

#gform_wrapper_3.gform_wrapper.gravity-theme .gform_previous_button.button, 
#gform_wrapper_3.gform_wrapper.gravity-theme .gform_save_link.button {
	background-color: transparent;	
	color: #fff;
}

#gform_wrapper_3.gform_wrapper.gravity-theme .gform_previous_button.button:hover, 
#gform_wrapper_3.gform_wrapper.gravity-theme .gform_save_link.button:hover {
	background-color: #0093C3;	
}

/* -- END SUPPLIERS PAGE -- */

/* -- START SCROLL TO ANCHOR LINK OFFSET -- */
html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 120px;
}
/* -- END SCROLL TO ANCHOR LINK OFFSET -- */

