/**
 * Base CSS used by the builder's layout, including rows
 * and columns. Any module specific global CSS should be
 * included in fl-builder-layout-modules.css.
 */

/* Grid
------------------------------------------------------ */

.fl-builder-content *,
.fl-builder-content *:before,
.fl-builder-content *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.fl-row:before,
.fl-row:after,
.fl-row-content:before,
.fl-row-content:after,
.fl-col-group:before,
.fl-col-group:after,
.fl-col:before,
.fl-col:after,
.fl-module:not([data-accepts]):before,
.fl-module:not([data-accepts]):after,
.fl-module-content:before,
.fl-module-content:after {
	display: table;
	content: " ";
}
.fl-row:after,
.fl-row-content:after,
.fl-col-group:after,
.fl-col:after,
.fl-module:not([data-accepts]):after,
.fl-module-content:after {
	clear: both;
}
.fl-clear {
	clear: both;
}

/* Rows
------------------------------------------------------ */

.fl-row,
.fl-row-content {
	margin-left: auto;
	margin-right: auto;
	min-width: 0;
}
.fl-row-content-wrap {
	position: relative;
}

/* Photo Bg */
.fl-builder-mobile .fl-row-bg-photo .fl-row-content-wrap {
	background-attachment: scroll;
}

/* Video and Embed Code Bg */
.fl-row-bg-video,
.fl-row-bg-video .fl-row-content,
.fl-row-bg-embed,
.fl-row-bg-embed .fl-row-content {
	position: relative;
}

.fl-row-bg-video .fl-bg-video,
.fl-row-bg-embed .fl-bg-embed-code {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
}

.fl-row-bg-video .fl-bg-video video,
.fl-row-bg-embed .fl-bg-embed-code video {
	bottom: 0;
	left: 0px;
	max-width: none;
	position: absolute;
	right: 0;
	top: 0px;
}
.fl-row-bg-video .fl-bg-video video {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
}
.fl-row-bg-video .fl-bg-video iframe,
.fl-row-bg-embed .fl-bg-embed-code iframe {
	pointer-events: none;
	width: 100vw;
  	height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  	max-width: none;
  	min-height: 100vh;
  	min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  	position: absolute;
  	top: 50%;
  	left: 50%;
	-ms-transform: translate(-50%, -50%); /* IE 9 */
	-webkit-transform: translate(-50%, -50%); /* Chrome, Safari, Opera */
  	transform: translate(-50%, -50%);
}
.fl-bg-video-fallback {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0px;
	left: 0px;
	position: absolute;
	right: 0px;
	top: 0px;
}

/* Slideshow Bg */
.fl-row-bg-slideshow,
.fl-row-bg-slideshow .fl-row-content {
	position: relative;
}
.fl-row .fl-bg-slideshow {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}
.fl-builder-edit .fl-row .fl-bg-slideshow * {
	bottom: 0;
	height: auto !important;
	left: 0;
	position: absolute !important;
	right: 0;
	top: 0;
}

/* Row Bg Overlay */
.fl-row-bg-overlay .fl-row-content-wrap:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-row-bg-overlay .fl-row-content {
	position: relative;
	z-index: 1;
}

/* Full Height Rows */
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	min-height: 100vh;
}
.fl-row-overlap-top .fl-row-content-wrap {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 100%;
}
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	min-height: 0;
}

.fl-row-default-height .fl-row-content,
.fl-row-full-height .fl-row-content,
.fl-row-custom-height .fl-row-content {
  -webkit-box-flex: 1 1 auto;
  	 -moz-box-flex: 1 1 auto;
  	  -webkit-flex: 1 1 auto;
  		  -ms-flex: 1 1 auto;
  			  flex: 1 1 auto;
}
.fl-row-default-height .fl-row-full-width.fl-row-content,
.fl-row-full-height .fl-row-full-width.fl-row-content,
.fl-row-custom-height .fl-row-full-width.fl-row-content {
	max-width: 100%;
	width: 100%;
}

/* Full height align center */
.fl-row-default-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-center .fl-row-content-wrap {
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
	justify-content: center;
	align-items: center;
}

/* Full height align bottom */
.fl-row-default-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-bottom .fl-row-content-wrap {
	-webkit-align-items: flex-end;
	-webkit-justify-content: flex-end;
	-webkit-box-align: end;
	-webkit-box-pack: end;
	-ms-flex-align: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	align-items: flex-end;
}

/* Column Groups
------------------------------------------------------ */
.fl-col-group-equal-height {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.fl-col-group-equal-height.fl-col-group-has-child-loading {
	flex-wrap: nowrap;
}
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content {
	display: flex;
	flex: 1 1 auto;
}
.fl-col-group-equal-height .fl-col-content {
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	width: 100%;
}
.fl-col-group-equal-height:before,
.fl-col-group-equal-height .fl-col:before,
.fl-col-group-equal-height .fl-col-content:before,
.fl-col-group-equal-height:after,
.fl-col-group-equal-height .fl-col:after,
.fl-col-group-equal-height .fl-col-content:after{
	content: none;
}

/* Equal height align top */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content {
	justify-content: flex-start;
}

/* Equal height align center */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content {
	justify-content: center;
}

/* Equal height align bottom */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {
	justify-content: flex-end;
}

.fl-col-group-equal-height.fl-col-group-align-center .fl-col-group {
	width: 100%;
}

/* Columns
------------------------------------------------------ */

.fl-col {
	float: left;
	min-height: 1px;
}

/* Column Bg Overlay */
.fl-col-bg-overlay .fl-col-content {
	position: relative;
}
.fl-col-bg-overlay .fl-col-content:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-col-bg-overlay .fl-module {
	position: relative;
	z-index: 2;
}

/* Templates
------------------------------------------------------ */

.single:not(.woocommerce).single-fl-builder-template .fl-content {
	width: 100%;
}

/* Shapes & Patterns
------------------------------------------------------- */
.fl-builder-layer {
	position: absolute;
	top:0;
	left:0;
	right: 0;
	bottom: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}
.fl-builder-shape-layer {
	z-index: 0;
}
.fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 2;
}
.fl-row-has-layers .fl-row-content {
	z-index: 1;
}
.fl-row-bg-overlay .fl-row-content {
	z-index: 2;
}

.fl-builder-layer > * {
	display: block;
	position: absolute;
	top:0;
	left:0;
	width: 100%;
}
.fl-builder-layer + .fl-row-content {
	position: relative;
}
.fl-builder-layer .fl-shape {
	fill: #aaa;
	stroke: none;
	stroke-width: 0;
	width:100%;
}
/**
Fix ipad parallax issue on safari
https://core.trac.wordpress.org/ticket/48802
https://core.trac.wordpress.org/ticket/49285
https://github.com/WordPress/gutenberg/issues/17718
*/
@supports (-webkit-touch-callout: inherit) {
  .fl-row.fl-row-bg-parallax .fl-row-content-wrap,
  .fl-row.fl-row-bg-fixed .fl-row-content-wrap {
    background-position: center !important;
    background-attachment: scroll !important;
  }
}

@supports (-webkit-touch-callout: none) {
	.fl-row.fl-row-bg-fixed .fl-row-content-wrap {
		background-position: center !important;
		background-attachment: scroll !important;
	}
}
/**
 * Base CSS used by all (or many) modules. This file should
 * not contain any generic layout CSS that doesn't apply to
 * modules. That belongs in fl-builder-layout.css.
 */

/* Utilities
------------------------------------------------------ */

.fl-clearfix:before,
.fl-clearfix:after {
	display: table;
	content: " ";
}
.fl-clearfix:after {
	clear: both;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

/* Buttons
------------------------------------------------------ */

.fl-builder-content .fl-button:is(a, button),
.fl-builder-content a.fl-button:visited {
	border-radius: 4px;
	display: inline-block;
	font-size: 16px;
	font-weight: normal;
	line-height: 18px;
	padding: 12px 24px;
	text-decoration: none;
	text-shadow: none;
}
.fl-builder-content .fl-button:hover {
	text-decoration: none;
}
.fl-builder-content .fl-button:active {
	position: relative;
	top: 1px;
}
.fl-builder-content .fl-button-width-full .fl-button {
	width: 100%;
	display: block;
	text-align: center;
}
.fl-builder-content .fl-button-width-custom .fl-button {
	display: inline-block;
	text-align: center;
	max-width: 100%;
}
.fl-builder-content .fl-button-left {
	text-align: left;
}
.fl-builder-content .fl-button-center {
	text-align: center;
}
.fl-builder-content .fl-button-right {
	text-align: right;
}
.fl-builder-content .fl-button i {
	font-size: 1.3em;
	height: auto;
	margin-right:8px;
	vertical-align: middle;
	width: auto;
}
.fl-builder-content .fl-button i.fl-button-icon-after {
	margin-left: 8px;
	margin-right: 0;
}
.fl-builder-content .fl-button-has-icon .fl-button-text {
	vertical-align: middle;
}

/* Icons
------------------------------------------------------ */

.fl-icon-wrap {
	display: inline-block;
}
.fl-icon {
	display: table-cell;
	vertical-align: middle;
}
.fl-icon a {
	text-decoration: none;
}
.fl-icon i {
	float: right;
	height: auto;
	width: auto;
}
.fl-icon i:before {
	border: none !important;
	height: auto;
	width: auto;
}
.fl-icon-text {
	display: table-cell;
	text-align: left;
	padding-left: 15px;
	vertical-align: middle;
}
.fl-icon-text-empty {
	display: none;
}
.fl-icon-text *:last-child {
	margin: 0 !important;
	padding: 0 !important;
}
.fl-icon-text a {
	text-decoration: none;
}
.fl-icon-text span {
	display: block;
}
.fl-icon-text span.mce-edit-focus {
	min-width: 1px;
}

/* Photos
------------------------------------------------------ */

.fl-module img {
	max-width: 100%;
}
.fl-photo {
	line-height: 0;
	position: relative;
}
.fl-photo-align-left {
	text-align: left;
}
.fl-photo-align-center {
	text-align: center;
}
.fl-photo-align-right {
	text-align: right;
}
.fl-photo-content {
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
}
.fl-photo-img-svg {
	width: 100%;
}
.fl-photo-content img {
	display: inline;
	height: auto;
	max-width: 100%;
}
.fl-photo-crop-circle img {
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
.fl-photo-caption {
	font-size: 13px;
	line-height: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.fl-photo-caption-below {
	padding-bottom: 20px;
	padding-top: 10px;
}
.fl-photo-caption-hover {
	background: rgba(0,0,0,0.7);
	bottom: 0;
	color: #fff;
	left: 0;
	opacity: 0;
	filter: alpha(opacity = 0);
	padding: 10px 15px;
	position: absolute;
	right: 0;
	-webkit-transition:opacity 0.3s ease-in;
	-moz-transition:opacity 0.3s ease-in;
	transition:opacity 0.3s ease-in;
}
.fl-photo-content:hover .fl-photo-caption-hover {
	opacity: 100;
	filter: alpha(opacity = 100);
}

/* Pagination
------------------------------------------------------ */

.fl-builder-pagination,
.fl-builder-pagination-load-more {
	padding: 40px 0;
}
.fl-builder-pagination ul.page-numbers {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
.fl-builder-pagination li {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0;
}
.fl-builder-pagination li a.page-numbers,
.fl-builder-pagination li span.page-numbers {
	border: 1px solid #e6e6e6;
	display: inline-block;
	padding: 5px 10px;
	margin: 0 0 5px;
}
.fl-builder-pagination li a.page-numbers:hover,
.fl-builder-pagination li span.current {
	background: #f5f5f5;
	text-decoration: none;
}

/* Slideshows
------------------------------------------------------ */

.fl-slideshow,
.fl-slideshow * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;

}
.fl-slideshow .fl-slideshow-image img {
	max-width: none !important;
}
.fl-slideshow-social {
	line-height: 0 !important;
}
.fl-slideshow-social * {
	margin: 0 !important;
}

/* Sliders
------------------------------------------------------ */

.fl-builder-content .bx-wrapper .bx-viewport {
	background: transparent;
	border: none;
	box-shadow: none;
	left: 0;
}

/* Lightbox
------------------------------------------------------ */

.mfp-wrap button.mfp-arrow,
.mfp-wrap button.mfp-arrow:active,
.mfp-wrap button.mfp-arrow:hover,
.mfp-wrap button.mfp-arrow:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 50%;
	box-shadow: none !important;
}
.mfp-wrap .mfp-close,
.mfp-wrap .mfp-close:active,
.mfp-wrap .mfp-close:hover,
.mfp-wrap .mfp-close:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 0;
	box-shadow: none !important;
}
.admin-bar .mfp-wrap .mfp-close,
.admin-bar .mfp-wrap .mfp-close:active,
.admin-bar .mfp-wrap .mfp-close:hover,
.admin-bar .mfp-wrap .mfp-close:focus {
	top: 32px!important;
}
img.mfp-img {
	padding: 0;
}
.mfp-counter {
	display: none;
}

.mfp-wrap .mfp-preloader.fa {
	font-size: 30px;
}

/* Form Fields
------------------------------------------------------ */

.fl-form-field {
	margin-bottom: 15px;
}
.fl-form-field input.fl-form-error {
	border-color: #DD6420;
}
.fl-form-error-message {
	clear: both;
	color: #DD6420;
	display: none;
	padding-top: 8px;
	font-size: 12px;
	font-weight: lighter;
}
.fl-form-button-disabled {
	opacity: 0.5;
}

/* Animations
------------------------------------------------------ */

.fl-animation {
	opacity: 0;
}
body.fl-no-js .fl-animation {
	opacity: 1;
}
.fl-builder-preview .fl-animation,
.fl-builder-edit .fl-animation,
.fl-animated {
	opacity: 1;
}
.fl-animated {
	animation-fill-mode: both;
}

/* Button Icon Animation */
.fl-button.fl-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
	opacity: 1 !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-after {
	margin-left: 0px !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-after {
	margin-left: 10px !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-before {
	margin-right: 0 !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-before {
	margin-right: 20px !important;
  margin-left: -10px;
}

/* Default button colors for non Beaver Builder themes.
------------------------------------------------------ */

.fl-builder-content .fl-button:is(a, button),
.fl-builder-content a.fl-button:visited {
	background: #fafafa;
	border: 1px solid #ccc;
	color: #333;
}
.fl-builder-content .fl-button:is(a, button) *,
.fl-builder-content a.fl-button:visited * {
	color: #333;
}@media (max-width: 1200px) { /**
 * Styles needed for the large breakpoint.
 */
 }@media (max-width: 992px) { /* Columns
------------------------------------------------------ */

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-medium-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
 }@media (max-width: 768px) { /* Rows
------------------------------------------------------ */

.fl-row-content-wrap {
	background-attachment: scroll !important;
}
.fl-row-bg-parallax .fl-row-content-wrap {
	background-attachment: scroll !important;
	background-position: center center !important;
}

/* Column Groups
------------------------------------------------------ */

/* Equal Heights */
.fl-col-group.fl-col-group-equal-height {
	display: block;
}
.fl-col-group.fl-col-group-equal-height.fl-col-group-custom-width {
	display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-responsive-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
.fl-col-group.fl-col-group-responsive-reversed .fl-col:not(.fl-col-small-custom-width) {
	flex-basis: 100%;
	width: 100% !important;
}
.fl-col-group.fl-col-group-medium-reversed:not(.fl-col-group-responsive-reversed) {
	display: unset;
	display: unset;
	-webkit-flex-wrap: unset;
	flex-wrap: unset;
	flex-direction: unset;
}

/* Columns
------------------------------------------------------ */

.fl-col {
	clear: both;
	float: none;
	margin-left: auto;
	margin-right: auto;
	width: auto !important;
}
.fl-col-small:not(.fl-col-small-full-width) {
	max-width: 400px;
}
.fl-block-col-resize {
	display:none;
}
/* Rows
------------------------------------------------------ */

.fl-row[data-node] .fl-row-content-wrap {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
.fl-row[data-node] .fl-bg-video,
.fl-row[data-node] .fl-bg-slideshow {
	left: 0;
	right: 0;
}

/* Columns
------------------------------------------------------ */

.fl-col[data-node] .fl-col-content {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
 }@media (min-width: 1201px) {
	html .fl-visible-large:not(.fl-visible-desktop),
	html .fl-visible-medium:not(.fl-visible-desktop),
	html .fl-visible-mobile:not(.fl-visible-desktop) {
		display: none;
	}
}

@media (min-width: 993px) and (max-width: 1200px) {
	html .fl-visible-desktop:not(.fl-visible-large),
	html .fl-visible-medium:not(.fl-visible-large),
	html .fl-visible-mobile:not(.fl-visible-large) {
		display: none;
	}
}

@media (min-width: 769px) and (max-width: 992px) {
	html .fl-visible-desktop:not(.fl-visible-medium),
	html .fl-visible-large:not(.fl-visible-medium),
	html .fl-visible-mobile:not(.fl-visible-medium) {
		display: none;
	}
}

@media (max-width: 768px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
}
.fl-row-fixed-width {
	max-width: 1100px;
}
.fl-builder-content > .fl-module-box {
	margin: 0;
}
.fl-row-content-wrap, .fl-builder-content > .fl-module-box {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
:root {
	--fl-global-blue: #002856;
	--fl-global-blue-dark: #002045;
	--fl-global-yellow: #FFB71B;
	--fl-global-yellow-light: #FFC548;
	--fl-global-gray-light: #F8F8F8;
	--fl-global-gray: #C6C6C6;
	--fl-global-gray-dark: #606060;
	--fl-global-gray-darkest: #2A2A2A;
	--fl-global-black: #000000;
	--fl-global-white: #FFFFFF;
	--fl-global-error: #EA1D10;
	--fl-global-orange: #EA9010;
	--fl-global-black-10: rgba(0,0,0,0.1);
	--fl-global-bg-faint: #f8f8f8;
	--fl-global-black-7: rgba(0,0,0,0.7);
	--fl-global-text-font-family: Inter, sans-serif;
	--fl-global-text-font-weight: 400;
	--fl-global-text-font-size: 1rem;
	--fl-global-text-line-height: 1.6;
	--fl-global-text-font-size-medium: 0.875rem;
	--fl-global-h1-font-weight: 500;
	--fl-global-h1-font-size: 3.75rem;
	--fl-global-h1-line-height: 1.2;
	--fl-global-h1-font-size-medium: 2.625rem;
	--fl-global-h1-line-height-medium: 1.35;
	--fl-global-h2-font-weight: 500;
	--fl-global-h2-font-size: 3.063rem;
	--fl-global-h2-line-height: 1.35;
	--fl-global-h2-font-size-medium: 2.5rem;
	--fl-global-h3-font-weight: 500;
	--fl-global-h3-font-size: 2.438rem;
	--fl-global-h3-line-height: 1.35;
	--fl-global-h3-font-size-medium: 2rem;
	--fl-global-h4-font-weight: 500;
	--fl-global-h4-font-size: 1.938rem;
	--fl-global-h4-line-height: 1.35;
	--fl-global-h4-font-size-medium: 1.563rem;
	--fl-global-h5-font-weight: 500;
	--fl-global-h5-font-size: 1.563rem;
	--fl-global-h5-line-height: 1.35;
	--fl-global-h5-font-size-medium: 1.25rem;
	--fl-global-h6-font-weight: 500;
	--fl-global-h6-font-size: 1.25rem;
	--fl-global-h6-line-height: 1.35;
	--fl-global-h6-font-size-medium: 1rem;
}
.fl-builder-content:not(.fl-builder-empty) {
	font-family: Inter, sans-serif;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.6;
}
.fl-builder-content h1 {
	font-weight: 500;
	font-size: 3.75rem;
	line-height: 1.2;
}
.fl-builder-content h2 {
	font-weight: 500;
	font-size: 3.063rem;
	line-height: 1.35;
}
.fl-builder-content h3 {
	font-weight: 500;
	font-size: 2.438rem;
	line-height: 1.35;
}
.fl-builder-content h4 {
	font-weight: 500;
	font-size: 1.938rem;
	line-height: 1.35;
}
.fl-builder-content h5 {
	font-weight: 500;
	font-size: 1.563rem;
	line-height: 1.35;
}
.fl-builder-content h6 {
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 1.35;
}
@media(max-width: 992px) {
	.fl-builder-content:not(.fl-builder-empty) {
		font-size: 0.875rem;
	}
	.fl-builder-content h1 {
		font-size: 2.625rem;
		line-height: 1.35;
	}
	.fl-builder-content h2 {
		font-size: 2.5rem;
	}
	.fl-builder-content h3 {
		font-size: 2rem;
	}
	.fl-builder-content h4 {
		font-size: 1.563rem;
	}
	.fl-builder-content h5 {
		font-size: 1.25rem;
	}
	.fl-builder-content h6 {
		font-size: 1rem;
	}
}






 .fl-node-lnt04vyxp8ar > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-lnt04vyxp8ar.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}
@media ( max-width: 992px ) {
 .fl-node-lnt04vyxp8ar.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-lnt04vyxp8ar.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}










.fl-node-3di0hcgntbqy {
	width: 100%;
}




.fl-node-goq2z30xfjw1 {
	width: 100%;
}
/*CustomHeader-flexGrow - if you want to have the sub-menu images right align*/
/*variables*/
/*mixins*/
.CustomHeader-opacity0 {
  opacity: 0 !important;
}

.CustomHeader-opacity1 {
  opacity: 1 !important;
}

.CustomHeader-hideIt {
  display: none;
  opacity: 0;
}

.CustomHeader-minHeight100vh {
  /*@media screen and (max-width: $CustomHeader--menu-mobile) and (min-height: 800px) {
    overflow-y: auto;
    overflow-x: hidden;
    height: calc(100vh - 220px);
  }  
  @media screen and (max-width: $CustomHeader--menu-mobile) and (max-height: 801px) {
    overflow-y: auto;
    overflow-x: hidden;
    height: calc(100vh - 220px);
  }*/
}
@media screen and (max-width: 1180px) {
  .CustomHeader-minHeight100vh {
    overflow-y: auto;
    overflow-x: hidden;
    height: calc(100vh - 200px);
  }
}
@media screen and (max-width: 1180px) and (max-height: 391px) {
  .CustomHeader-minHeight100vh {
    overflow-y: auto;
    overflow-x: hidden;
    height: calc(100vh - 180px);
  }
}

.CustomHeader-parentRowHeight100vh {
  /*height: calc(100vh - 52px);*/
  height: 100vh;
}

.CustomHeader-noBorder {
  border-width: 0px !important;
}

.CustomHeader-removePosFixed {
  position: relative !important;
  bottom: auto !important;
}

@keyframes CustomHeader-fadeInAnim {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.CustomHeader-fadeInAnimClass {
  animation-name: CustomHeader-fadeInAnim;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
}

.CustomHeader-onlyMobile {
  display: none !important;
}
@media screen and (max-width: 1180px) {
  .CustomHeader-onlyMobile {
    display: inline-block !important;
  }
}

.CustomHeader-onlyDesktop {
  display: inline-block !important;
}
@media screen and (max-width: 1180px) {
  .CustomHeader-onlyDesktop {
    display: none !important;
  }
}

.CustomHeader-displayIt {
  display: block !important;
}

.CustomHeader-parentRow {
  position: relative;
  z-index: 99;
  border-bottom: solid 1px transparent;
}
@media screen and (max-width: 1180px) {
  .CustomHeader-parentRow {
    overflow: hidden;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  }
}

/*.CustomHeader-parentRow .fl-row-content-wrap {
  background-image:url('/wp-content/themes/unitedsteelworkers/assets/img/_CustomHeader.jpg') !important;
  background-position: top center;
  background-repeat: no-repeat;
}*/
.CustomHeader-submenuOverlay {
  display: none;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 9;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1180px) {
  .CustomHeader-submenuOverlay {
    display: none !important;
  }
}

.CustomHeader-bgOnScroll {
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
}
.CustomHeader-bgOnScroll .CustomHeader {
  /*.CustomHeader .CustomHeader-secondaryWrapper .navbar-collapse.CustomHeader-languagesMenu ul.navbar-nav > li a img.CustomHeader-menuImageOnScroll*/
}
.CustomHeader-bgOnScroll .CustomHeader .navbar-brand {
  display: none;
}
.CustomHeader-bgOnScroll .CustomHeader .navbar-brandOnScroll {
  display: block !important;
}
.CustomHeader-bgOnScroll .CustomHeader .CustomHeader-menuImage {
  display: none;
}
.CustomHeader-bgOnScroll .CustomHeader .CustomHeader-menuImageOnScroll {
  display: block !important;
}
.CustomHeader-bgOnScroll .CustomHeader .CustomHeader-secondaryWrapper {
  border-bottom: 1px solid transparent;
}

.CustomHeader {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 9;
  width: 100%;
  border-radius: 0;
  border-width: 0px;
  margin-bottom: 0px !important;
  /*background-image:url('/wp-content/themes/unitedsteelworkers/assets/img/_CustomHeader.jpg') !important;
          @include CustomHeader-inside-border(red);*/
  /*the right side buttons from menu*/
  /*the main menu*/
  /*main links*/
  /*the entire dropdown area with categs and products - default*/
  /*fist level of submenu links - default*/
  /*main links with class CustomHeader-2subMenuLevels*/
  /*main links with class CustomHeader-3Columns*/
}
.CustomHeader .navbar-brandOnScroll {
  position: relative;
  display: none !important;
}
@media screen and (max-width: 1180px) {
  .CustomHeader .navbar-brandOnScroll {
    display: block !important;
  }
}
.CustomHeader .navbar-brandOnScroll::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 150px;
  height: 50px;
  margin: -5px 0px 0px -5px;
}
.CustomHeader .CustomHeader-secondaryWrapper {
  border-bottom: 1px solid rgba(225, 225, 225, 0.1);
  padding: 0px 0px 0px 0px;
}
@media screen and (max-width: 1180px) {
  .CustomHeader .CustomHeader-secondaryWrapper {
    display: none;
  }
}
.CustomHeader .CustomHeader-secondaryWrapper .container-fluid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 16px 0px 16px 0px;
  max-width: 1520px;
  margin: 0 auto;
}
@media screen and (max-width: 1617px) {
  .CustomHeader .CustomHeader-secondaryWrapper .container-fluid {
    padding: 16px 40px 16px 40px;
    max-width: inherit;
  }
}
@media screen and (max-width: 1180px) {
  .CustomHeader .CustomHeader-secondaryWrapper .container-fluid {
    flex-direction: column;
    padding: 0px 0px 0px 0px;
  }
}
.CustomHeader .CustomHeader-secondaryWrapper .navbar-collapse.CustomHeader-languagesMenu {
  width: 50%;
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 1180px) {
  .CustomHeader .CustomHeader-secondaryWrapper .navbar-collapse.CustomHeader-languagesMenu {
    display: none;
  }
}
.CustomHeader .CustomHeader-secondaryWrapper .navbar-collapse.CustomHeader-languagesMenu ul.navbar-nav > li {
  padding: 0px 0px 0px 0px;
}
.CustomHeader .CustomHeader-secondaryWrapper .navbar-collapse.CustomHeader-languagesMenu ul.navbar-nav > li a {
  font-family: Inter, sans-serif;
  color: #002856;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 15.6px;
}
.CustomHeader .CustomHeader-secondaryWrapper .navbar-collapse.CustomHeader-languagesMenu ul.navbar-nav > li a img.CustomHeader-menuImage {
  width: 16px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 0px 0px 0px 0px;
  margin: 0px 8px 0px 0px;
  float: left;
}
.CustomHeader .CustomHeader-secondaryWrapper .navbar-collapse.CustomHeader-languagesMenu ul.navbar-nav > li a img.CustomHeader-menuImageOnScroll {
  display: none;
  /*@media screen and (max-width: $CustomHeader--menu-mobile) {
            display: block !important;
          }*/
}
.CustomHeader .CustomHeader-secondaryWrapper .navbar-collapse.CustomHeader-secondaryMenu {
  width: 50%;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1180px) {
  .CustomHeader .CustomHeader-secondaryWrapper .navbar-collapse.CustomHeader-secondaryMenu {
    display: none;
  }
}
@media screen and (max-width: 1180px) {
  .CustomHeader .CustomHeader-secondaryWrapper .navbar-collapse.CustomHeader-secondaryMenu ul.navbar-nav {
    /*background-color: #FF0000;*/
    height: -moz-max-content;
    height: max-content;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.CustomHeader .CustomHeader-secondaryWrapper .navbar-collapse.CustomHeader-secondaryMenu ul.navbar-nav > li {
  padding: 0px 0px 0px 0px;
}
.CustomHeader .CustomHeader-secondaryWrapper .navbar-collapse.CustomHeader-secondaryMenu ul.navbar-nav > li::before {
  top: -16px;
}
.CustomHeader .CustomHeader-secondaryWrapper .navbar-collapse.CustomHeader-secondaryMenu ul.navbar-nav > li a {
  font-family: Inter, sans-serif;
  color: #002856;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 15.6px;
}
.CustomHeader .CustomHeader-navbarToggle.CustomHeader-closeBut + .navbar-collapse.CustomHeader-languagesMenu {
  display: block !important;
}
.CustomHeader .container-fluid {
  position: relative;
  width: 100%;
  margin: 0px auto;
  padding: 16px 0px 16px 0px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0px;
  max-width: 1520px;
  /*@include CustomHeader-inside-border(red);*/
}
@media screen and (max-width: 1617px) {
  .CustomHeader .container-fluid {
    padding: 16px 40px 16px 40px;
    max-width: inherit;
  }
}
@media screen and (max-width: 1180px) {
  .CustomHeader .container-fluid {
    padding: 24px 0px 24px 40px;
  }
}
@media screen and (max-width: 1024px) {
  .CustomHeader .container-fluid {
    padding: 24px 24px 24px 24px;
  }
}
@media screen and (max-width: 767px) {
  .CustomHeader .container-fluid {
    padding: 24px 16px 24px 16px;
  }
}
.CustomHeader .navbar-brand {
  display: block;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
  height: 44px;
  /*@include CustomHeader-inside-border(purple);*/
}
@media screen and (max-width: 1180px) {
  .CustomHeader .navbar-brand {
    display: none;
    height: 38px;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
  }
}
.CustomHeader .navbar-brand .CustomHeader-logo {
  width: auto;
  max-width: 140px;
  height: 44px;
}
@media screen and (max-width: 1180px) {
  .CustomHeader .navbar-brand .CustomHeader-logo {
    height: 38px;
  }
}
.CustomHeader .navbar-header {
  margin: 0;
}
.CustomHeader .navbar-collapse {
  padding-left: 0;
  padding-right: 0;
  border-width: 0px;
  box-shadow: none;
  width: calc(100% - 250px);
  display: flex;
  justify-content: center;
  /*@include CustomHeader-inside-border(purple);*/
}
@media screen and (max-width: 1180px) {
  .CustomHeader .navbar-collapse {
    display: none;
    width: 100vw;
    margin: 0px 0px 0px 0px !important;
    padding: 0px 0px 0px 0px;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: luminosity;
    position: absolute;
    left: 0px;
    top: 83px;
    z-index: 99;
  }
}
.CustomHeader .navbar-collapse .CustomHeader-secondaryMenuOnMobile {
  display: none;
}
@media screen and (max-width: 1180px) {
  .CustomHeader .navbar-collapse .CustomHeader-secondaryMenuOnMobile {
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
    display: flex;
    top: 0px;
    padding-top: 0px;
  }
  .CustomHeader .navbar-collapse .CustomHeader-secondaryMenuOnMobile a {
    font-family: Inter, sans-serif;
    color: #002856;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 15.6px;
  }
  .CustomHeader .navbar-collapse .CustomHeader-secondaryMenuOnMobile .menu-item-has-children a {
    background-position: calc(100% - 1px) 11px;
  }
  .CustomHeader .navbar-collapse .CustomHeader-secondaryMenuOnMobile .dropdown-menu {
    margin-top: 55px !important;
  }
}
@media screen and (max-width: 1180px) and (min-height: 800px) {
  .CustomHeader .navbar-collapse .CustomHeader-secondaryMenuOnMobile {
    position: fixed;
    bottom: 110px;
    top: auto;
  }
}
@media screen and (max-width: 767px) {
  .CustomHeader .navbar-collapse .CustomHeader-secondaryMenuOnMobile a {
    font-family: Inter, sans-serif;
    color: #002856;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 15.6px;
  }
}
.CustomHeader .navbar-collapse .CustomHeader-languagesMenuOnMobile {
  display: none;
}
@media screen and (max-width: 1180px) {
  .CustomHeader .navbar-collapse .CustomHeader-languagesMenuOnMobile {
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
    display: flex;
    top: 0px;
    padding-top: 0px;
  }
  .CustomHeader .navbar-collapse .CustomHeader-languagesMenuOnMobile a {
    font-family: Inter, sans-serif;
    color: #002856;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 15.6px;
  }
  .CustomHeader .navbar-collapse .CustomHeader-languagesMenuOnMobile .menu-item-has-children a {
    background-position: calc(100% - 1px) 15px;
  }
  .CustomHeader .navbar-collapse .CustomHeader-languagesMenuOnMobile .dropdown-menu {
    margin-top: 35px !important;
  }
  .CustomHeader .navbar-collapse .CustomHeader-languagesMenuOnMobile .CustomHeader-menuImage {
    width: 16px;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    padding: 0px 0px 0px 0px;
    margin: 0px 8px 0px 0px;
    float: left;
  }
  .CustomHeader .navbar-collapse .CustomHeader-languagesMenuOnMobile .CustomHeader-menuImageOnScroll {
    display: none;
    /*@media screen and (max-width: $CustomHeader--menu-mobile) {
              display: block !important;
            }*/
  }
}
@media screen and (max-width: 1180px) and (min-height: 800px) {
  .CustomHeader .navbar-collapse .CustomHeader-languagesMenuOnMobile {
    position: fixed;
    bottom: 60px;
    top: auto;
  }
}
@media screen and (max-width: 767px) {
  .CustomHeader .navbar-collapse .CustomHeader-languagesMenuOnMobile {
    margin-top: -30px !important;
  }
  .CustomHeader .navbar-collapse .CustomHeader-languagesMenuOnMobile a {
    font-family: Inter, sans-serif;
    color: #002856;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 15.6px;
  }
  .CustomHeader .navbar-collapse .CustomHeader-languagesMenuOnMobile .menu-item-has-children a {
    background-position: calc(100% - 1px) 11px;
  }
}
.CustomHeader .CustomHeader-navbarToggle {
  position: relative;
  cursor: pointer;
  display: none;
  margin: 0;
  padding: 0;
  width: 16px;
  height: 16px;
  background-image: url("/wp-content/themes/unitedsteelworkers/components/CustomHeader/img/hamburger_menu.svg");
  background-position: center center;
  background-repeat: no-repeat;
  border: 0px;
  background-color: transparent !important;
  /*@include CustomHeader-inside-border(green);            */
  /* TRANSITION */
  transition: background-image 0.2s ease-in-out;
}
@media screen and (max-width: 1180px) {
  .CustomHeader .CustomHeader-navbarToggle {
    top: 0px;
    display: block;
  }
}
.CustomHeader .CustomHeader-navbarToggle::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 26px;
  height: 26px;
  margin: -5px 0px 0px -5px;
}
.CustomHeader .CustomHeader-closeBut {
  width: 16px;
  height: 16px;
  background-image: url("/wp-content/themes/unitedsteelworkers/components/CustomHeader/img/close-menu.svg") !important;
  background-repeat: no-repeat;
}
.CustomHeader .CustomHeader-rightButtons {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  gap: 20px;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 1180px) {
  .CustomHeader .CustomHeader-rightButtons {
    z-index: 999;
    width: 100vw;
    left: 0px;
    position: fixed;
    bottom: 0px;
    display: none;
  }
}
.CustomHeader .navbar-nav {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  display: flex;
  flex-direction: row;
  gap: 24px;
}
@media screen and (max-width: 1180px) {
  .CustomHeader .navbar-nav {
    /*@include CustomHeader-inside-border(aquamarine);*/
    left: 0px;
    flex-direction: column;
    margin: 0px 0px 0px 0px !important;
    padding: 60px 40px 16px 40px;
    position: relative;
    width: 100vw;
    gap: 16px;
    /*height: calc(100vh - 150px);*/
    /*background-image:url('/wp-content/themes/unitedsteelworkers/assets/img/_CustomHeaderTabletIndustries.jpg') !important;
            background-position: 0 0px;
            background-repeat: no-repeat;*/
  }
}
@media screen and (max-width: 1024px) {
  .CustomHeader .navbar-nav {
    padding: 60px 24px 16px 24px;
  }
}
@media screen and (max-width: 767px) {
  .CustomHeader .navbar-nav {
    padding: 55px 16px 46px 16px;
    gap: 12px;
  }
}
.CustomHeader .navbar-nav ul {
  padding: 0px;
}
@keyframes borderLeftToRight {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.CustomHeader ul.navbar-nav > li {
  position: relative;
  list-style: none;
  padding: 13px 0px 13px 0px;
  margin: 0px 0px 0px 0px;
  border-radius: 0px;
  /*first level of submenu links contains a second level of submenu links*/
}
.CustomHeader ul.navbar-nav > li::before {
  content: "";
  width: 100%;
  display: block;
  position: absolute;
  top: -16px;
  left: 0px;
  border-bottom: solid 4px #002856;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
  transform-origin: 0% 50%;
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li::before {
    display: none;
  }
}
.CustomHeader ul.navbar-nav > li:hover::before {
  animation-name: borderLeftToRight;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li {
    border-top: solid 1px rgba(0, 0, 0, 0.1);
    padding: 0px 0px 0px 0px;
  }
  .CustomHeader ul.navbar-nav > li:first-of-type {
    border-top: solid 1px transparent;
  }
}
.CustomHeader ul.navbar-nav > li .menu-item-has-children {
  /*@include CustomHeader-inside-border(purple);*/
  display: inline-block;
}
.CustomHeader ul.navbar-nav > li .menu-item-has-children ul {
  display: block;
}
.CustomHeader ul.navbar-nav > li a {
  font-family: Inter, sans-serif;
  color: #002856;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 18px;
  padding: 0px 0px 0px 0px;
  border-radius: 0px;
  white-space: normal;
  display: block;
  background-color: transparent;
  text-decoration: none !important;
  cursor: pointer;
}
.CustomHeader ul.navbar-nav > li a:hover {
  background-color: transparent !important;
  color: #002856;
  text-decoration: none !important;
}
.CustomHeader ul.navbar-nav > li a:hover .caret {
  transform: rotate(180deg);
  transition-duration: 0.4s;
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li a:hover .caret {
    transform: rotate(270deg);
  }
}
.CustomHeader ul.navbar-nav > li a:focus {
  background-color: transparent !important;
  color: #002856;
}
.CustomHeader ul.navbar-nav > li a .caret {
  display: none;
  transition-duration: 0.4s;
  width: 21px;
  height: 16px;
  /*background-image: url(../../themes/beaverwarrior/components/CustomHeader/bw-custom-header/img/arrow_stroke.svg);
          background-image: url('data:image/svg+xml; utf8, <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.71 9.29a.996.996 0 0 0 0 1.41l4.59 4.59a.996.996 0 0 0 1.41 0l4.59-4.59a.997.997 0 0 0-1.41-1.41L12 13.17 8.12 9.29c-.39-.39-1.03-.38-1.41 0z" fill="red"/></svg>');)*/
  background-repeat: no-repeat;
  background-position: center center;
  border-width: 0px !important;
  margin: -3px 0px 0px -3px;
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li a .caret {
    position: absolute;
    right: 8px;
    transform: rotate(270deg);
    margin: 8px 0px 0px 0px;
  }
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li a {
    font-family: Inter, sans-serif;
    color: #002856;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 27px;
    padding: 16px 0px 0px 0px;
    border-radius: 0px;
    background-color: #ffffff;
  }
}
@media screen and (max-width: 767px) {
  .CustomHeader ul.navbar-nav > li a {
    font-family: Inter, sans-serif;
    color: #002856;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 19px;
    padding: 12px 0px 0px 0px;
  }
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li a.CustomHeader-specialOnMobile {
    font-family: Arimo, sans-serif;
    color: #696364;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0px;
    line-height: 18.9px;
    color: #696364 !important;
    background-color: transparent !important;
    background: none;
    padding: 0px 0px 12px 0px;
    border-bottom: 1px solid #8a8384;
    border-radius: 0px;
    pointer-events: none;
  }
}
.CustomHeader ul.navbar-nav > li:last-of-type {
  margin-right: 0px;
}
.CustomHeader .navbar-nav > li.active > a {
  border-bottom: 0px solid transparent !important;
  background-color: transparent !important;
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li.open {
    background-color: #ffffff !important;
  }
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li.menu-item-has-children a {
    background-image: url('data:image/svg+xml; utf8, <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.00073 3.83379V13.1662" stroke="%23002856" stroke-width="1.3332" stroke-linecap="round" stroke-linejoin="round"/><path d="M3.33447 8.49998H12.6669" stroke="%23002856" stroke-width="1.3332" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: calc(100% - 1px) 16px;
  }
}
.CustomHeader .navbar-toggle {
  position: absolute;
  display: none;
  top: 35px;
  right: 40px;
}
@media screen and (max-width: 1180px) {
  .CustomHeader .navbar-toggle {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .CustomHeader .navbar-toggle {
    right: 24px;
  }
}
@media screen and (max-width: 767px) {
  .CustomHeader .navbar-toggle {
    right: 16px;
  }
}
@media screen and (max-width: 1180px) {
  .CustomHeader .navbar-nav > li > ul.dropdown-menu.CustomHeader-showOnMobile {
    width: 100%;
    margin-left: 0px;
    gap: 16px;
    display: flex !important;
    flex-direction: column;
    padding: 0px 0px 0px 0px;
    border-width: 0px;
    margin: -10px 0px 0px 0px;
  }
}
.CustomHeader .navbar-nav > li > ul.dropdown-menu {
  position: absolute;
  z-index: 2;
  visibility: hidden;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px 32px;
  /*left: 0px;
          width: calc(100vw - 42px);*/
  width: -moz-max-content;
  width: max-content;
  height: auto;
  box-sizing: border-box;
  border-radius: 0px;
  /*-webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.12) !important;
          box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.12) !important;
          background-color: #fff000;*/
  /*from the settings*/
  border-color: #ffffff;
  border-width: 0px;
  border-style: solid;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: none;
  margin: 29px 0px 0px -75px;
  padding: 40px 40px 40px 40px;
  opacity: 0;
  list-style: none !important;
}
@media screen and (max-width: 1380px) and (max-height: 790px) {
  .CustomHeader .navbar-nav > li > ul.dropdown-menu {
    gap: 12px 32px;
    padding: 25px 25px 25px 25px;
  }
}
.CustomHeader .navbar-nav > li > ul.dropdown-menu::before {
  display: none !important;
  content: "";
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(0, 0, 0, 0.85);
  position: absolute;
  left: calc(50% - 7px);
  margin-top: -28px;
}
@media screen and (max-width: 1180px) {
  .CustomHeader .navbar-nav > li > ul.dropdown-menu {
    position: relative;
    width: 100%;
    display: none;
    visibility: visible;
    background-color: transparent;
    opacity: 1 !important;
    padding: 47px 0px 0px 0px;
    margin: 15px 0px -18px 0px;
    gap: 16px 16px;
    border-radius: 0px;
    transform: translateX(0px) !important;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-radius: 0px;
    box-shadow: none !important;
  }
  .CustomHeader .navbar-nav > li > ul.dropdown-menu::before {
    display: none;
  }
}
.CustomHeader .navbar-nav > li > ul.dropdown-menu .CustomHeader-flexGrow {
  flex-grow: 1;
}
.CustomHeader .navbar-nav > li.CustomHeader-SubmenuCols2 > ul.dropdown-menu {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  margin-left: -220px;
}
@media screen and (max-width: 1380px) and (max-height: 790px) {
  .CustomHeader .navbar-nav > li.CustomHeader-SubmenuCols2 > ul.dropdown-menu {
    gap: 12px 32px;
  }
}
@media screen and (max-width: 1180px) {
  .CustomHeader .navbar-nav > li.CustomHeader-SubmenuCols2 > ul.dropdown-menu {
    gap: 16px 16px;
    margin-left: 0px;
  }
}
.CustomHeader .navbar-nav > li.CustomHeader-SubmenuCols3 > ul.dropdown-menu {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 32px;
}
@media screen and (max-width: 1180px) {
  .CustomHeader .navbar-nav > li.CustomHeader-SubmenuCols3 > ul.dropdown-menu {
    gap: 16px 16px;
  }
}
.CustomHeader .navbar-nav > li.CustomHeader-SubmenuCols4 > ul.dropdown-menu {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 32px;
}
@media screen and (max-width: 1180px) {
  .CustomHeader .navbar-nav > li.CustomHeader-SubmenuCols4 > ul.dropdown-menu {
    gap: 16px 16px;
  }
}
.CustomHeader .navbar-nav > li.CustomHeader-fullWidthSubmenu > ul.dropdown-menu {
  width: 100vw;
  position: fixed;
  left: 0px;
  margin: 16px 0px 0px 0px;
}
@media only screen and (max-width: 1279px) {
  .CustomHeader .navbar-nav > li.CustomHeader-fullWidthSubmenu > ul.dropdown-menu {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1180px) {
  .CustomHeader .navbar-nav > li.CustomHeader-fullWidthSubmenu > ul.dropdown-menu {
    position: relative;
    width: auto;
  }
}
.CustomHeader .navbar-nav > li.CustomHeader-fullWidthSubmenu > ul.dropdown-menu > li {
  max-width: 100%;
}
.CustomHeader .navbar-nav > li.CustomHeader-languages > ul.dropdown-menu {
  margin: 16px 0px 0px -24px;
  padding: 24px 24px 24px 24px;
  gap: 24px;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.06);
}
.CustomHeader .navbar-nav > li.CustomHeader-languages > ul.dropdown-menu li {
  min-width: 100%;
}
.CustomHeader .navbar-nav > li.CustomHeader-languages > ul.dropdown-menu li a {
  border-top: 0px solid rgba(0, 0, 0, 0.1);
  padding: 0px 0px 0px 24px;
}
.CustomHeader .navbar-nav > li.CustomHeader-languages > ul.dropdown-menu li::before {
  transform: scaleX(1);
  width: 16px;
  height: 16px;
  border-radius: 10.7px;
  border: solid 1px rgba(0, 0, 0, 0.1);
}
.CustomHeader .navbar-nav > li.CustomHeader-languages > ul.dropdown-menu li::after {
  content: "";
  opacity: 0;
  width: auto;
  display: block;
  position: absolute;
  right: auto;
  left: 0px;
  top: 16px;
  width: 16px;
  height: 16px;
  transition-duration: 0.5s;
  background: url('data:image/svg+xml; utf8, <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.335 8h9.332M8 3.334 12.668 8l-4.666 4.666" stroke="%23002856" stroke-width="1.333" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
}
.CustomHeader .navbar-nav > li.CustomHeader-languages > ul.dropdown-menu li:hover::before {
  animation-name: none;
  background-color: #002045;
  border-color: #002045;
  background-image: url('data:image/svg+xml; utf8, <svg width="11" height="11" viewBox="0 0 11 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.456 2.926 4.111 7.27 2.136 5.296" stroke="%23ffffff" stroke-width=".79" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-position: 2px 2px;
}
.CustomHeader .navbar-nav > li > .dropdown-menu > li {
  position: relative;
  width: 100%;
  max-width: 314px;
  min-width: 170px;
  display: block;
  padding: 0px 0px 0px 0px;
  margin: 0px 30px 0px 0px;
  border-radius: 0px;
  /*@include CustomHeader-inside-border(green);*/
}
.CustomHeader .navbar-nav > li > .dropdown-menu > li::before {
  content: "";
  width: 100%;
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  border-top: solid 1px #002856;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
  transform-origin: 0% 50%;
}
.CustomHeader .navbar-nav > li > .dropdown-menu > li:hover::before {
  animation-name: borderLeftToRight;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
.CustomHeader .navbar-nav > li > .dropdown-menu > li::after {
  content: "";
  opacity: 0;
  width: auto;
  display: block;
  position: absolute;
  right: 0px;
  top: 16px;
  width: 16px;
  height: 16px;
  transition-duration: 0.5s;
  background: url('data:image/svg+xml; utf8, <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M3.335 8h9.332M8 3.334 12.668 8l-4.666 4.666" stroke="%23002856" stroke-width="1.333" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
}
.CustomHeader .navbar-nav > li > .dropdown-menu > li:hover::after {
  opacity: 1;
}
@media screen and (max-width: 1180px) {
  .CustomHeader .navbar-nav > li > .dropdown-menu > li {
    max-width: 100%;
    margin-bottom: 0px;
    display: block;
    float: none;
    width: 100%;
  }
}
.CustomHeader .navbar-nav > li > .dropdown-menu > li img.CustomHeader-menuImage {
  width: 16px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 0px 0px 0px 0px;
  margin: 0px 8px 0px 0px;
  float: left;
  /*@include CustomHeader-inside-border(purple);*/
  /*opacity: 0.3;*/
}
@media screen and (max-width: 1180px) {
  .CustomHeader .navbar-nav > li > .dropdown-menu > li img.CustomHeader-menuImage {
    width: 16px;
    display: none;
  }
}
.CustomHeader .navbar-nav > li > .dropdown-menu > li img.CustomHeader-menuImageOnScroll {
  display: none;
}
@media screen and (max-width: 1180px) {
  .CustomHeader .navbar-nav > li > .dropdown-menu > li img.CustomHeader-menuImageOnScroll {
    display: block !important;
  }
}
.CustomHeader .navbar-nav > li > .dropdown-menu > li span.CustomHeader-menuDescription {
  font-family: Inter, sans-serif;
  color: rgba(0, 0, 0, 0.7);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 17.6px;
  text-transform: none;
  display: block;
  padding: 8px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}
@media screen and (max-width: 1180px) {
  .CustomHeader .navbar-nav > li > .dropdown-menu > li span.CustomHeader-menuDescription {
    font-family: Inter, sans-serif;
    color: rgba(0, 0, 0, 0.7);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 17.6px;
    max-width: 100%;
  }
}
.CustomHeader .navbar-nav > li > .dropdown-menu > li.active a {
  background-color: transparent !important;
}
.CustomHeader .navbar-nav > li > .dropdown-menu > li > a {
  font-family: Inter, sans-serif;
  color: #fff000;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 15.6px;
  border-top: solid 1px rgba(0, 0, 0, 0.1);
  padding: 16px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}
@media screen and (max-width: 1380px) and (max-height: 790px) {
  .CustomHeader .navbar-nav > li > .dropdown-menu > li > a {
    padding: 12px 0px 0px 0px;
  }
}
@media screen and (max-width: 1180px) {
  .CustomHeader .navbar-nav > li > .dropdown-menu > li > a {
    font-family: Inter, sans-serif;
    color: #fff000;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 15.6px;
    background-color: transparent;
    background-image: none;
  }
}
.CustomHeader .navbar-nav > li > .dropdown-menu > li:first-of-type > a {
  /*border-top: solid 1px transparent;*/
}
@media screen and (max-width: 1180px) {
  .CustomHeader .navbar-nav > li > .dropdown-menu > li:first-of-type > a {
    border-top: solid 1px transparent;
  }
}
.CustomHeader .navbar-nav > li > .dropdown-menu > li.CustomHeader-submenuViewAll {
  padding: 24px 0px 0px 0px;
  border-top: solid 0.5px #8a8384;
}
.CustomHeader .navbar-nav > li > .dropdown-menu > li.CustomHeader-submenuViewAll a {
  position: relative;
  font-family: Inter, sans-serif;
  color: #353232;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 15.6px;
}
@media screen and (max-width: 1180px) {
  .CustomHeader .navbar-nav > li > .dropdown-menu > li.CustomHeader-submenuViewAll a {
    padding: 0px 0px 0px 8px;
  }
}
.CustomHeader .navbar-nav > li > .dropdown-menu > li.CustomHeader-submenuViewAll a::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  /*transition-duration: 0.3s;*/
  background-image: url('data:image/svg+xml; utf8, <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23gj31q7dzva)" stroke="%23000" stroke-linecap="round" stroke-linejoin="round"><path d="M7.999 14.666a6.666 6.666 0 1 0 0-13.332 6.666 6.666 0 0 0 0 13.332z"/><path d="M9.884 9.877v-3.77h-3.77M6.114 9.878l3.77-3.771" stroke-width=".9"/></g><defs><clipPath id="gj31q7dzva"><path fill="%23fff" d="M0 0h15.998v15.998H0z"/></clipPath></defs></svg>');
  background-repeat: no-repeat;
  background-position: left center;
  margin: 0px 0px 0px 9px;
}
.CustomHeader .navbar-nav > li > .dropdown-menu > li.CustomHeader-submenuViewAll:hover a::after {
  width: 16px;
  height: 17px;
  background-image: url('data:image/svg+xml; utf8, <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%2330i49h3q1a)" stroke="%23101E8E" stroke-linecap="round" stroke-linejoin="round"><path d="M8 14.837A6.666 6.666 0 1 0 8 1.505a6.666 6.666 0 0 0 0 13.332z"/><path d="M8 11.166 10.665 8.5 7.999 5.834M5.333 8.5h5.333" stroke-width=".9"/></g><defs><clipPath id="30i49h3q1a"><path fill="%23fff" transform="translate(0 .5)" d="M0 0h15.998v15.998H0z"/></clipPath></defs></svg>');
}
@media screen and (max-width: 1180px) {
  .CustomHeader .navbar-nav > li > .dropdown-menu > li.CustomHeader-submenuViewAll {
    margin: 0px 0px 0px -8px;
  }
}
.CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels {
  /*the entire dropdown area with categs and products - parent class CustomHeader-2subMenuLevels*/
}
.CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu {
  width: 804px;
  padding: 0px 0px 0px 0px;
  background-color: #f1f6f8 !important;
  gap: 0px;
  /*transition: height 0.1s;*/
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu {
    width: 100%;
    position: relative;
    gap: 24px;
    background-color: #ffffff !important;
  }
}
.CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li.isFirst ul.CustomHeader-dropdownMenu {
  border-radius: 0px 8px 8px 8px !important;
}
.CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li {
  width: 220px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 16px 16px 16px 16px;
  border-radius: 8px 0px 0px 8px;
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li {
    width: 100%;
    padding: 0px 0px 0px 0px;
    border-radius: 8px;
  }
}
.CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li a {
  font-family: Inter, sans-serif;
  color: #fff000;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0px;
  line-height: 24px;
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li a {
    font-family: Inter, sans-serif;
    color: #fff000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0px;
    line-height: 21px;
    border-radius: 8px;
    padding: 12px 12px 12px 12px;
    background-color: #f1f6f8;
    background-image: url('data:image/svg+xml; utf8, <svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 18.257A8.333 8.333 0 1 0 10 1.59a8.333 8.333 0 0 0 0 16.667z" fill="%23F5D8A3"/><path d="M6.667 10.335 10 13.67l3.334-3.334M10 7.002v6.667" stroke="%23000" stroke-width=".8" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: calc(100% - 12px) center;
  }
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li a.CustomHeader-activeSubSubMenuLinkOnMobile {
    background-image: url('data:image/svg+xml; utf8, <svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 18.833a8.333 8.333 0 1 0 0-16.666 8.333 8.333 0 0 0 0 16.666z" fill="%23EAA935"/><path d="M13.334 10.5 10 7.167 6.667 10.5M10 13.833V7.167" stroke="%23000" stroke-width=".8" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  }
}
.CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li span.CustomHeader-menuDescription {
  font-family: Inter, sans-serif;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 21px;
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li span.CustomHeader-menuDescription {
    display: none;
  }
}
.CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li ul.CustomHeader-dropdownMenu {
  display: none;
  position: absolute;
  top: 0px;
  left: 220px;
  width: 560px;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  padding: 24px 24px 24px 24px;
  border-radius: 8px 8px 8px 8px;
}
.CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li ul.CustomHeader-dropdownMenu li {
  list-style: none;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}
.CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li ul.CustomHeader-dropdownMenu li a {
  padding: 0px 0px 0px 0px;
  font-family: Inter, sans-serif;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0px;
  line-height: 21px;
}
.CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li ul.CustomHeader-dropdownMenu li span.CustomHeader-menuDescription {
  font-family: Inter, sans-serif;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 21px;
  margin: 0px 0px 0px 49px;
}
.CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li ul.CustomHeader-dropdownMenu li.CustomHeader-submenuViewAll {
  grid-column-start: 1;
  grid-column-end: 3;
  display: flex;
  width: 100%;
  padding: 24px 0px 0px 0px;
  border-top: solid 0.5px #8a8384;
}
.CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li ul.CustomHeader-dropdownMenu li.CustomHeader-submenuViewAll a {
  position: relative;
  font-family: Inter, sans-serif;
  color: #353232;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 15.6px;
}
.CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li ul.CustomHeader-dropdownMenu li.CustomHeader-submenuViewAll a::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  /*transition-duration: 0.3s;*/
  background-image: url('data:image/svg+xml; utf8, <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23gj31q7dzva)" stroke="%23000" stroke-linecap="round" stroke-linejoin="round"><path d="M7.999 14.666a6.666 6.666 0 1 0 0-13.332 6.666 6.666 0 0 0 0 13.332z"/><path d="M9.884 9.877v-3.77h-3.77M6.114 9.878l3.77-3.771" stroke-width=".9"/></g><defs><clipPath id="gj31q7dzva"><path fill="%23fff" d="M0 0h15.998v15.998H0z"/></clipPath></defs></svg>');
  background-repeat: no-repeat;
  background-position: left center;
  margin: 0px 0px 0px 9px;
}
.CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li ul.CustomHeader-dropdownMenu li.CustomHeader-submenuViewAll:hover a::after {
  width: 16px;
  height: 17px;
  background-image: url('data:image/svg+xml; utf8, <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%2330i49h3q1a)" stroke="%23101E8E" stroke-linecap="round" stroke-linejoin="round"><path d="M8 14.837A6.666 6.666 0 1 0 8 1.505a6.666 6.666 0 0 0 0 13.332z"/><path d="M8 11.166 10.665 8.5 7.999 5.834M5.333 8.5h5.333" stroke-width=".9"/></g><defs><clipPath id="30i49h3q1a"><path fill="%23fff" transform="translate(0 .5)" d="M0 0h15.998v15.998H0z"/></clipPath></defs></svg>');
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li ul.CustomHeader-dropdownMenu.CustomHeader-showSubSubMenuOnMobile {
    display: grid !important;
    width: 100% !important;
    position: relative !important;
    left: 0 !important;
  }
  .CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li ul.CustomHeader-dropdownMenu.CustomHeader-showSubSubMenuOnMobile > li {
    grid-column-start: 1;
    grid-column-end: 3;
    display: flex;
    width: 100%;
  }
  .CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li ul.CustomHeader-dropdownMenu.CustomHeader-showSubSubMenuOnMobile > li a {
    font-family: Inter, sans-serif;
    color: #000000;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0px;
    line-height: 18px;
    background-color: #ffffff;
    background-image: none;
  }
  .CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li ul.CustomHeader-dropdownMenu.CustomHeader-showSubSubMenuOnMobile > li a span.CustomHeader-menuDescription {
    display: block;
    font-family: Inter, sans-serif;
    color: rgba(0, 0, 0, 0.8);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 18px;
  }
  .CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li ul.CustomHeader-dropdownMenu.CustomHeader-showSubSubMenuOnMobile > li.CustomHeader-submenuViewAll a {
    font-family: Inter, sans-serif;
    color: #353232;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 15.6px;
  }
  .CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li ul.CustomHeader-dropdownMenu.CustomHeader-showSubSubMenuOnMobile > li.CustomHeader-submenuViewAll:hover a::after {
    width: 16px;
    height: 17px;
    background-image: url('data:image/svg+xml; utf8, <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%2330i49h3q1a)" stroke="%23101E8E" stroke-linecap="round" stroke-linejoin="round"><path d="M8 14.837A6.666 6.666 0 1 0 8 1.505a6.666 6.666 0 0 0 0 13.332z"/><path d="M8 11.166 10.665 8.5 7.999 5.834M5.333 8.5h5.333" stroke-width=".9"/></g><defs><clipPath id="30i49h3q1a"><path fill="%23fff" transform="translate(0 .5)" d="M0 0h15.998v15.998H0z"/></clipPath></defs></svg>');
  }
}
.CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li.activated {
  border-radius: 8px 0px 0px 8px;
}
.CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li.menu-item-has-children:first-of-type ul.CustomHeader-dropdownMenu {
  display: grid;
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li.menu-item-has-children:first-of-type ul.CustomHeader-dropdownMenu {
    display: none;
  }
}
.CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li.CustomHeader-bottomLink {
  width: 208px;
  padding: 16px 16px 16px 16px;
  position: absolute;
  bottom: 0px;
}
.CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li.CustomHeader-bottomLink:hover {
  border-radius: 8px 8px 8px 8px;
}
.CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li.CustomHeader-bottomLink a {
  font-family: Inter, sans-serif;
  color: #000000;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0px;
  line-height: 18px;
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li.CustomHeader-bottomLink a {
    font-family: Inter, sans-serif;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0px;
    line-height: 21px;
    background-image: url('data:image/svg+xml; utf8, <svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 18.669a8.333 8.333 0 1 0 0-16.667 8.333 8.333 0 0 0 0 16.667z" fill="%23F5D8A3"/><path d="M12.357 12.682V7.968H7.643M7.643 12.682l4.714-4.714" stroke="%23000" stroke-width=".8" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: calc(100% - 12px) center;
  }
}
.CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li.CustomHeader-bottomLink span.CustomHeader-menuDescription {
  font-family: Inter, sans-serif;
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 18px;
  margin: 8px 0px 0px 0px;
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li.CustomHeader-bottomLink span.CustomHeader-menuDescription {
    display: block;
    margin: 4px 0px 0px 0px;
  }
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li.CustomHeader-2subMenuLevels > ul.dropdown-menu > li.CustomHeader-bottomLink {
    position: relative;
    bottom: auto;
    width: 100%;
    padding: 0px 0px 0px 0px;
  }
}
.CustomHeader ul.navbar-nav > li.CustomHeader-3Columns {
  /*the entire dropdown area with categs and products - parent class CustomHeader-3Columns*/
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li.CustomHeader-3Columns a.CustomHeader-specialOnMobile {
    display: none;
  }
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li.CustomHeader-3Columns ul.dropdown-menu.CustomHeader-showOnMobile {
    width: 100%;
    margin-left: 0px;
    gap: 16px;
    display: flex !important;
    flex-direction: column;
    padding: 0px 0px 0px 8px;
    border-width: 0px;
    margin: -15px 0px 0px 0px;
  }
}
.CustomHeader ul.navbar-nav > li.CustomHeader-3Columns ul.dropdown-menu {
  width: 856px;
  padding: 24px 24px 24px 24px;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 32px;
  margin-left: -180px;
  /*fist level of submenu links - parent class CustomHeader-3Columns*/
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li.CustomHeader-3Columns ul.dropdown-menu {
    border-color: #ffffff;
  }
}
.CustomHeader ul.navbar-nav > li.CustomHeader-3Columns ul.dropdown-menu li {
  width: 240px;
  display: inline-block;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
  border-width: 0px;
  /*@include CustomHeader-inside-border(#FFF000);*/
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li.CustomHeader-3Columns ul.dropdown-menu li {
    width: 100%;
    grid-column-start: 1;
    grid-column-end: 4;
  }
}
.CustomHeader ul.navbar-nav > li.CustomHeader-3Columns ul.dropdown-menu li:hover {
  background: transparent;
}
.CustomHeader ul.navbar-nav > li.CustomHeader-3Columns ul.dropdown-menu li a {
  font-family: Inter, sans-serif;
  color: #fff000;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0px;
  line-height: 21px;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li.CustomHeader-3Columns ul.dropdown-menu li a {
    font-family: Inter, sans-serif;
    color: #fff000;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0px;
    line-height: 18px;
    background-color: transparent;
    background-image: none;
  }
}
.CustomHeader ul.navbar-nav > li.CustomHeader-3Columns ul.dropdown-menu li span.CustomHeader-menuDescription {
  margin: 0px 0px 0px 49px;
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li.CustomHeader-3Columns ul.dropdown-menu li span.CustomHeader-menuDescription {
    margin: 0px 0px 0px 46px;
  }
}
.CustomHeader ul.navbar-nav > li.CustomHeader-3Columns ul.dropdown-menu li.CustomHeader-submenuTopTitle {
  grid-column-start: 1;
  grid-column-end: 4;
  display: flex;
  width: 100%;
  padding: 0px 0px 12px 0px;
  margin: 0px 0px 0px -8px;
  border-bottom: solid 0.5px #8a8384;
}
.CustomHeader ul.navbar-nav > li.CustomHeader-3Columns ul.dropdown-menu li.CustomHeader-submenuTopTitle a {
  font-family: Arimo, sans-serif;
  color: #696364;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0px;
  line-height: 21.6px;
  color: #696364 !important;
  pointer-events: none;
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li.CustomHeader-3Columns ul.dropdown-menu li.CustomHeader-submenuTopTitle a {
    font-family: Arimo, sans-serif;
    color: #696364;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0px;
    line-height: 18.9px;
    background-color: transparent;
    background-image: none;
  }
}
.CustomHeader ul.navbar-nav > li.CustomHeader-3Columns ul.dropdown-menu li.CustomHeader-submenuViewAll {
  grid-column-start: 1;
  grid-column-end: 4;
  display: flex;
  width: 100%;
  padding: 24px 0px 0px 0px;
  border-top: solid 0.5px #8a8384;
}
.CustomHeader ul.navbar-nav > li.CustomHeader-3Columns ul.dropdown-menu li.CustomHeader-submenuViewAll a {
  position: relative;
  font-family: Inter, sans-serif;
  color: #353232;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 15.6px;
}
.CustomHeader ul.navbar-nav > li.CustomHeader-3Columns ul.dropdown-menu li.CustomHeader-submenuViewAll a::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  /*transition-duration: 0.3s;*/
  background-image: url('data:image/svg+xml; utf8, <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23gj31q7dzva)" stroke="%23000" stroke-linecap="round" stroke-linejoin="round"><path d="M7.999 14.666a6.666 6.666 0 1 0 0-13.332 6.666 6.666 0 0 0 0 13.332z"/><path d="M9.884 9.877v-3.77h-3.77M6.114 9.878l3.77-3.771" stroke-width=".9"/></g><defs><clipPath id="gj31q7dzva"><path fill="%23fff" d="M0 0h15.998v15.998H0z"/></clipPath></defs></svg>');
  background-repeat: no-repeat;
  background-position: left center;
  margin: 0px 0px 0px 9px;
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li.CustomHeader-3Columns ul.dropdown-menu li.CustomHeader-submenuViewAll a {
    background-color: transparent;
    background-image: none;
  }
}
.CustomHeader ul.navbar-nav > li.CustomHeader-3Columns ul.dropdown-menu li.CustomHeader-submenuViewAll:hover a::after {
  width: 16px;
  height: 17px;
  background-image: url('data:image/svg+xml; utf8, <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%2330i49h3q1a)" stroke="%23101E8E" stroke-linecap="round" stroke-linejoin="round"><path d="M8 14.837A6.666 6.666 0 1 0 8 1.505a6.666 6.666 0 0 0 0 13.332z"/><path d="M8 11.166 10.665 8.5 7.999 5.834M5.333 8.5h5.333" stroke-width=".9"/></g><defs><clipPath id="30i49h3q1a"><path fill="%23fff" transform="translate(0 .5)" d="M0 0h15.998v15.998H0z"/></clipPath></defs></svg>');
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li.CustomHeader-3Columns.open {
    background-color: #ffffff !important;
  }
}

.CustomHeader-pointerEvents {
  pointer-events: all !important;
}

.CustomHeader-overflowHidden {
  overflow: hidden !important;
}

/*phone*/
.CustomHeader-phoneNumber a {
  font-family: Inter, sans-serif;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 16.8px;
  text-decoration: none;
}
@media screen and (max-width: 1180px) {
  .CustomHeader-phoneNumber {
    display: none;
  }
}

/*search BTN*/
@media screen and (max-width: 1180px) {
  .CustomHeader .CustomHeader-searchBtn {
    display: none;
  }
}

/*login BTN*/
.CustomHeader .CustomHeader-loginBtn {
  margin: 0px 0px 0px 0px;
  width: 48px;
  height: 49px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.CustomHeader .CustomHeader-loginBtn a {
  width: 48px;
  height: 49px;
  display: inline-block;
  background-repeat: no-repeat;
}

/*contact BTN*/
.CustomHeader .CustomHeader-contactBtn {
  font-family: Inter, sans-serif;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 15.6px;
  display: block;
  margin: 0px 0px 0px 0px;
}
.CustomHeader .CustomHeader-contactBtn a {
  position: relative;
  font-family: Inter, sans-serif;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 15.6px;
  display: block;
  overflow: hidden;
  text-decoration: none;
  border-width: 1px !important;
  border-radius: 0px !important;
  border-style: solid;
  border-color: #ffffff;
  background-color: #002856;
  padding: 12px 16px 12px 16px;
  margin: 0px 0px 0px 0px;
  text-align: center;
  pointer-events: auto;
  /*&:hover::before {
      transform: translate3d(0,-105%,0);
    }*/
}
@media screen and (max-width: 1180px) {
  .CustomHeader .CustomHeader-contactBtn a {
    font-family: Inter, sans-serif;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 18px;
    padding: 16px 22px 16px 22px;
  }
}
.CustomHeader .CustomHeader-contactBtn a span {
  position: relative;
  display: block;
  text-align: center;
  z-index: 1;
}
.CustomHeader .CustomHeader-contactBtn a:hover {
  opacity: 1 !important;
}
@media screen and (max-width: 1180px) {
  .CustomHeader .CustomHeader-contactBtn {
    margin: 0px 0px 0px 0px;
    width: 100vw;
  }
}

/*contact Btn only Mobile */
.CustomHeader ul.navbar-nav > li.CustomHeader-phoneMobile {
  display: none;
}
@media screen and (max-width: 1180px) {
  .CustomHeader ul.navbar-nav > li.CustomHeader-phoneMobile {
    display: block;
  }
  .CustomHeader ul.navbar-nav > li.CustomHeader-phoneMobile a {
    font-family: Inter, sans-serif;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0px;
    line-height: 21px;
    padding: 12px 12px 12px 12px;
    border-radius: 8px;
    background-color: #f1f6f8;
    background-image: url('data:image/svg+xml; utf8, <svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.333 14.6v2.5a1.666 1.666 0 0 1-1.816 1.667 16.49 16.49 0 0 1-7.192-2.559 16.25 16.25 0 0 1-5-5 16.492 16.492 0 0 1-2.558-7.225 1.667 1.667 0 0 1 1.658-1.816h2.5A1.667 1.667 0 0 1 7.592 3.6c.105.8.301 1.586.583 2.342A1.667 1.667 0 0 1 7.8 7.7L6.742 8.758a13.333 13.333 0 0 0 5 5L12.8 12.7a1.666 1.666 0 0 1 1.758-.375c.757.282 1.542.478 2.342.583a1.667 1.667 0 0 1 1.433 1.692z" fill="%23696364"/></svg>');
    background-repeat: no-repeat;
    background-position: calc(100% - 12px) center;
  }
}

/*CustomHeader-returnToMain*/
a.CustomHeader-returnToMain {
  display: none;
}
@media screen and (max-width: 1180px) {
  a.CustomHeader-returnToMain {
    cursor: pointer;
    display: block;
    position: absolute;
    z-index: 99;
    top: 83px;
    left: 0px;
    width: 100%;
    font-family: Inter, sans-serif;
    color: #002856;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 15.6px;
    background-color: #f8f8f8;
    padding: 12px 24px 12px 64px;
  }
  a.CustomHeader-returnToMain::before {
    content: "";
    width: 16px;
    height: 17px;
    margin: -1px 0px 0px -24px;
    background-image: url('data:image/svg+xml; utf8, <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.665 8.833H3.333M8 13.5 3.332 8.832l4.666-4.666" stroke="%23002856" stroke-width="1.333" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: left center;
    position: absolute;
  }
}
@media screen and (max-width: 1024px) {
  a.CustomHeader-returnToMain {
    padding: 12px 24px 12px 48px;
  }
}
@media screen and (max-width: 767px) {
  a.CustomHeader-returnToMain {
    padding: 12px 16px 12px 40px;
  }
}

.CustomHeader-fadedDiv {
  display: none;
  pointer-events: none !important;
}
@media screen and (max-width: 1180px) {
  .CustomHeader-fadedDiv {
    display: block;
    width: 100%;
    height: 117px;
    position: fixed;
    bottom: 0px;
    z-index: 9999;
    background: rgb(255, 255, 255);
    background: linear-gradient(1deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 71%, rgba(255, 255, 255, 0) 100%);
  }
}

/*search form start*/
.CustomHeader-searchForm {
  display: flex;
  justify-content: center;
  position: absolute;
  left: calc(50% - 76px);
  transform: translateX(-50%);
  max-width: 1360px; /*1520 - margin-left: 160px*/
  top: 49px;
  z-index: 99;
  width: calc(100% - 160px);
  padding: 12px 60px 12px 60px;
  margin-left: 170px;
  opacity: 0;
  pointer-events: none;
  background-color: #ffffff !important;
  /*background-image:url('/wp-content/themes/unitedsteelworkers/assets/img/_CustomHeader_search.jpg') !important;
  background-position: 0 0;
  background-repeat: no-repeat;
  @include CustomHeader-inside-border(purple);*/
}
@media screen and (max-width: 1582px) {
  .CustomHeader-searchForm {
    left: 0px;
    transform: translateX(0);
    width: calc(100% - 222px);
    margin-left: 183px;
  }
}
@media screen and (max-width: 1180px) {
  .CustomHeader-searchForm {
    width: 100%;
    left: 0px;
    transform: translateX(0%);
    padding: 0px 0px 0px 0px;
    margin: 33px 0px 0px 0px;
    pointer-events: auto;
    border-width: 0px;
    border-radius: 0px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #f8f8f8 !important;
    justify-content: flex-start;
  }
}
.CustomHeader-searchForm form {
  position: relative;
  display: inline-block;
  width: 480px;
  max-width: 1400px;
}
@media screen and (max-width: 1180px) {
  .CustomHeader-searchForm form {
    width: 100%;
  }
}
.CustomHeader-searchForm input.CustomHeader-searchInput {
  width: 480px;
  max-width: 100%;
  height: 49px;
  position: relative;
  left: 0;
  font-family: Inter, sans-serif;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 16.8px;
  background-color: #ffffff;
  border: solid 1px #000000;
  border-radius: 0px;
  padding: 0px 0px 0px 32px;
}
.CustomHeader-searchForm input.CustomHeader-searchInput:focus, .CustomHeader-searchForm input.CustomHeader-searchInput:focus-visible {
  background-color: #ffffff;
  outline-width: 0px !important;
  outline: none !important;
}
@media screen and (max-width: 1180px) {
  .CustomHeader-searchForm input.CustomHeader-searchInput {
    font-family: Inter, sans-serif;
    color: #002856;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 15.6px;
    width: 80vw;
    max-width: none;
    height: 48px;
    background-color: #f8f8f8 !important;
    border-width: 0px;
    padding: 0px 0px 0px 40px;
  }
}
@media screen and (max-width: 1024px) {
  .CustomHeader-searchForm input.CustomHeader-searchInput {
    padding: 0px 0px 0px 24px;
  }
}
@media screen and (max-width: 767px) {
  .CustomHeader-searchForm input.CustomHeader-searchInput {
    padding: 0px 0px 0px 16px;
  }
}
.CustomHeader-searchForm input.CustomHeader-searchInput::-moz-placeholder {
  font-family: Inter, sans-serif;
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 16.8px;
  display: block;
  padding: 0px 0px 0px 0px;
  position: relative;
  left: -1px;
  top: 1px;
  color: rgba(0, 0, 0, 0.7) !important;
}
.CustomHeader-searchForm input.CustomHeader-searchInput::placeholder {
  font-family: Inter, sans-serif;
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 16.8px;
  display: block;
  padding: 0px 0px 0px 0px;
  position: relative;
  left: -1px;
  top: 1px;
  color: rgba(0, 0, 0, 0.7) !important;
}
@media screen and (max-width: 1180px) {
  .CustomHeader-searchForm input.CustomHeader-searchInput::-moz-placeholder {
    font-family: Inter, sans-serif;
    color: #002856;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 15.6px;
    color: #002856 !important;
  }
  .CustomHeader-searchForm input.CustomHeader-searchInput::placeholder {
    font-family: Inter, sans-serif;
    color: #002856;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: normal;
    line-height: 15.6px;
    color: #002856 !important;
  }
}
.CustomHeader-searchForm input.CustomHeader-searchSubmit {
  position: absolute;
  z-index: 1;
  width: 16px;
  height: 17px;
  left: 12px;
  top: 17px;
  font-size: 0px;
  cursor: pointer;
  background-color: transparent;
  background-image: url('data:image/svg+xml; utf8, <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.334 13.166a5.333 5.333 0 1 0 0-10.665 5.333 5.333 0 0 0 0 10.665zM14 14.5l-2.9-2.9" stroke="%23000" stroke-width="1.333" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: left center;
  border-width: 0px;
}
.CustomHeader-searchForm input.CustomHeader-searchSubmit:hover, .CustomHeader-searchForm input.CustomHeader-searchSubmit:focus {
  background-image: url('data:image/svg+xml; utf8, <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.334 13.166a5.333 5.333 0 1 0 0-10.665 5.333 5.333 0 0 0 0 10.665zM14 14.5l-2.9-2.9" stroke="%23000" stroke-width="1.333" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: left center;
  border-width: 0px;
}
@media screen and (max-width: 1180px) {
  .CustomHeader-searchForm input.CustomHeader-searchSubmit {
    left: auto;
    right: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .CustomHeader-searchForm input.CustomHeader-searchSubmit {
    right: 24px;
  }
}
@media screen and (max-width: 767px) {
  .CustomHeader-searchForm input.CustomHeader-searchSubmit {
    right: 16px;
  }
}
.CustomHeader-searchForm .CustomHeader-clearInput {
  position: absolute;
  display: inline-block;
  width: 16px;
  height: 17px;
  right: 5px;
  top: 28px;
  cursor: pointer;
  background-image: url('data:image/svg+xml; utf8, <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="m12 4.5-7.999 8M4.001 4.5l8 8" stroke="%23002856" stroke-width="1.333" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: transform 0.7s ease-in-out;
}
.CustomHeader-searchForm .CustomHeader-clearInput:hover {
  transform: rotate(360deg);
}
@media screen and (max-width: 1180px) {
  .CustomHeader-searchForm .CustomHeader-clearInput {
    display: none;
  }
}

/*search form end*/
/*.CustomHeader-specialOnMobile {
  @media screen and (max-width: $CustomHeader--menu-mobile) {
    display: none !important;
  }
}*/
@media screen and (max-width: 1180px) {
  .CustomHeader-hideOnMobile {
    display: none !important;
  }
}

.CustomHeader-showOnMobile {
  display: none !important;
}
@media screen and (max-width: 1180px) {
  .CustomHeader-showOnMobile {
    display: block !important;
  }
}

.CustomHeader-address {
  font-family: Inter, sans-serif;
  color: #ffffff;
  font-size: 12px;
  font-weight: 4000;
  letter-spacing: 0;
  line-height: 19.2px;
  opacity: 0.8;
  display: none;
  margin: 15px 15px 0px 15px;
  padding: 22px 0px 6px 0px;
  border-top: 1px solid #333333;
}
@media screen and (max-width: 1180px) {
  .CustomHeader-address {
    display: block !important;
  }
}

.CustomHeader-phone {
  font-family: Inter, sans-serif;
  color: #ffffff;
  font-size: 12px;
  font-weight: 4000;
  letter-spacing: 0;
  line-height: 19.2px;
  display: none;
  margin: 0px 15px 0px 15px;
  padding: 0px 0px 6px 0px;
}
.CustomHeader-phone a {
  color: #ffffff;
  opacity: 0.8;
}
@media screen and (max-width: 1180px) {
  .CustomHeader-phone {
    display: block !important;
  }
}

.CustomHeader-email {
  font-family: Inter, sans-serif;
  color: #ffffff;
  font-size: 12px;
  font-weight: 4000;
  letter-spacing: 0;
  line-height: 19.2px;
  display: none;
  margin: 0px 15px 0px 15px;
  padding: 0px 0px 6px 0px;
}
.CustomHeader-email a {
  color: #ffffff;
  opacity: 0.8;
}
@media screen and (max-width: 1180px) {
  .CustomHeader-email {
    display: block !important;
  }
}

.CustomHeader-socialsUlWrapper {
  width: 100%;
  display: none;
  padding: 0px 10px 20px 16px;
  /*@include CustomHeader-inside-border(#FFF000);*/
}
@media screen and (max-width: 1180px) {
  .CustomHeader-socialsUlWrapper {
    display: block !important;
  }
}

.CustomHeader-socialsUl {
  display: block;
  list-style: none;
  padding: 0px !important;
}
.CustomHeader-socialsUl li {
  display: inline;
  padding: 0px 16px 0px 0px !important;
  text-align: center;
}
.CustomHeader-socialsUl li img {
  opacity: 1;
}
.CustomHeader-socialsUl li img:hover {
  opacity: 0.8;
}

.CustomHeader-announcement {
  font-size: 0;
  line-height: 0;
  display: block;
  background-color: #779bf8;
  padding: 12px 15px 12px 15px;
}

.CustomHeader-announcement--content {
  font-family: Inter, sans-serif;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 15.6px;
  display: block;
  text-align: center;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}
.CustomHeader-announcement--content p {
  font-family: Inter, sans-serif;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 15.6px;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}
.CustomHeader-announcement--content a {
  font-family: Inter, sans-serif;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 15.6px;
  text-decoration: underline;
  padding: 0px 0px 0px 12px;
  margin: 0px 0px 0px 0px;
  text-underline-offset: 4px;
  text-wrap: nowrap;
  display: inline-block;
}
@media screen and (max-width: 399px) {
  .CustomHeader-announcement--content a {
    margin: 8px 0px 0px 0px;
  }
}

.CustomHeader-announcement--close {
  display: none;
  font-family: Inter, sans-serif;
  color: #000000;
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 15px;
  cursor: pointer;
  position: absolute;
  width: 16px;
  height: 17px;
  right: 40px;
  top: 10px;
  background-image: url('data:image/svg+xml; utf8, <svg width="16" height="17" viewBox="0 0 16 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="m12 4.5-7.999 8M4.001 4.5l8 8" stroke="%23002856" stroke-width="1.333" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: transform 0.7s ease-in-out;
}
.CustomHeader-announcement--close:hover {
  transform: rotate(360deg);
}
@media screen and (max-width: 1180px) {
  .CustomHeader-announcement--close {
    display: none;
  }
}

/*colapse menu earlier START - default is 768*/
@media (min-width: 768px) and (max-width: 1180px) {
  .navbar-nav {
    margin: 7.5px -15px;
  }
  .ul-links {
    display: block;
  }
  .navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px;
  }
  .navbar-header {
    float: none;
  }
  .navbar-left,
  .navbar-right {
    float: none !important;
  }
  .navbar-toggle {
    display: block;
  }
  /*.navbar-collapse.collapse {
      display: none;
      max-height: none;
  }*/
  .navbar-nav {
    float: none !important;
  }
  .navbar-nav > li {
    float: none;
  }
  .collapse.in {
    display: block !important;
  }
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
}
.wpml-ls-item-en > a {
  position: relative;
  padding-left: 20px;
}

.wpml-ls-current-language.wpml-ls-menu-item.dropdown > a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml; utf8, <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23vqm1eyvpka)" stroke="%23fff" stroke-width="1.333" stroke-linecap="round" stroke-linejoin="round"><path d="M8 14.666A6.666 6.666 0 1 0 8 1.334a6.666 6.666 0 0 0 0 13.332zM1.333 8h13.332"/><path d="M8 1.334A10.199 10.199 0 0 1 10.665 8a10.2 10.2 0 0 1-2.667 6.666A10.2 10.2 0 0 1 5.333 8c.051-2.472.999-4.84 2.666-6.666v0z"/></g><defs><clipPath id="vqm1eyvpka"><path fill="%23fff" d="M0 0h15.998v15.998H0z"/></clipPath></defs></svg>');
  background-repeat: no-repeat;
  background-position: center;
}

body .CustomHeader .CustomHeader-languagesMenu .wpml-ls-item ul.dropdown-menu {
  margin: 17px 0px 0px 0px;
  padding: 4px 0px 4px 40px;
  opacity: 0;
  list-style: none !important;
}

body .CustomHeader .CustomHeader-languagesMenu .wpml-ls-item ul.dropdown-menu > li:first-of-type > a {
  border-top: solid 1px transparent !important;
}

body .CustomHeader .CustomHeader-languagesMenu .wpml-ls-item ul.dropdown-menu > li > a {
  font-family: Inter, sans-serif;
  color: #fff000;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0px;
  line-height: 15.6px;
  border-top: solid 0px rgba(0, 0, 0, 0.1);
  padding: 16px 0px 16px 0px !important;
  margin: 0px 0px 0px 0px;
}

.CustomHeader-bgOnScroll .CustomHeader .wpml-ls-current-language.wpml-ls-menu-item.dropdown > a::after,
.wpml-ls-current-language.wpml-ls-menu-item.dropdown:hover > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url('data:image/svg+xml; utf8, <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23fea4dasrqa)" stroke="%23002856" stroke-width="1.333" stroke-linecap="round" stroke-linejoin="round"><path d="M8 14.666A6.666 6.666 0 1 0 8 1.334a6.666 6.666 0 0 0 0 13.332zM1.333 8h13.332"/><path d="M8 1.334A10.199 10.199 0 0 1 10.665 8a10.2 10.2 0 0 1-2.667 6.666A10.2 10.2 0 0 1 5.333 8c.051-2.472.999-4.84 2.666-6.666v0z"/></g><defs><clipPath id="fea4dasrqa"><path fill="%23fff" d="M0 0h15.998v15.998H0z"/></clipPath></defs></svg>');
  background-repeat: no-repeat;
  background-position: center;
}

body .CustomHeader .CustomHeader-languagesMenu li .dropdown-menu li::before {
  content: "";
  width: 100%;
  display: block;
  position: absolute;
  left: -20px;
  top: 17px;
  border-top: solid 1px #002856;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
  transform-origin: 0% 50%;
}

body .CustomHeader .CustomHeader-languagesMenu li .dropdown-menu li a {
  padding-left: 20px;
}

body .CustomHeader .CustomHeader-languagesMenu li .dropdown-menu li::before {
  transform: scaleX(1);
  width: 16px;
  height: 16px;
  border-radius: 10.7px;
  border: solid 1px rgba(0, 0, 0, 0.1);
}

body .CustomHeader .CustomHeader-languagesMenu li .dropdown-menu li::after {
  display: none;
}

body .CustomHeader .CustomHeader-languagesMenu li .dropdown-menu li:hover::before {
  animation-name: none;
  background-color: #002045;
  border-color: #002045;
  background-image: url('data:image/svg+xml; utf8, <svg width= "11" height= "11" viewBox= "0 0 11 11" fill= "none" xmlns= "http://www.w3.org/2000/svg" ><path d= "M8.456 2.926 4.111 7.27 2.136 5.296" stroke= "%23ffffff" stroke-width= ".79" stroke-linecap= "round" stroke-linejoin= "round" /></svg>');
  background-position: 2px 2px;
}

.CustomHeader-languagesMenu .dropdown .dropdown-toggle .wpml-ls-native {
  padding-left: 24px;
}

@media screen and (max-width: 1180px) {
  span.wpml-ls-native {
    padding-left: 20px;
  }
  .CustomHeader-bgOnScroll .CustomHeader .wpml-ls-current-language.wpml-ls-menu-item.dropdown > a::after, .wpml-ls-current-language.wpml-ls-menu-item.dropdown:hover > a::after {
    top: 70% !important;
  }
}
@media (min-width: 1181px) and (max-width: 1257px) {
  .CustomHeader-searchForm {
    width: calc(100% - 194px);
    margin-left: 157px;
  }
}
@media (min-width: 1180px) and (max-width: 1280px) {
  .CustomHeader ul.navbar-nav > li a {
    font-size: 14px;
  }
}
@media (min-width: 1180px) and (max-width: 1331px) {
  .CustomHeader ul.navbar-nav > li a {
    font-size: 14px;
  }
  .CustomHeader .navbar-nav > li.CustomHeader-SubmenuCols2 > ul.dropdown-menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
    margin-left: -105px;
  }
  .CustomHeader .navbar-nav > li.CustomHeader-SubmenuCols2 > ul.dropdown-menu {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
    margin-left: -105px;
  }
  .CustomHeader .navbar-nav > li.col-link-right > ul.dropdown-menu {
    margin-left: -230px !important;
  }
}
/*# sourceMappingURL=frontend.css.map */

.CustomHeader-parentRow .fl-row-content-wrap {
    background-image: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 100%);
    background-color: transparent;
}

.CustomHeader-bgOnScroll .fl-row-content-wrap {
    background-image: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
    background-color: transparent;
}

.CustomHeader-secondaryWrapper {
    background-image: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 100%);
    background-color: transparent;
}

.CustomHeader-bgOnScroll .CustomHeader-secondaryWrapper {
    background-image: linear-gradient(90deg, #f8f8f8 0%, #f8f8f8 100%);
    background-color: transparent;
}

/*.fl-node-e9cn2bo5h3t8 .CustomHeader-searchForm {
    background-image: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 100%);
    background-color: transparent;
}*/

/*close icon*/
.fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-closeBut {
  background-image: url(https://unitedsteelworkers-dev.huemortest.com/wp-content/uploads/2024/07/close-menu.svg) !important
}



/* login btn */
.fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-loginBtn a {
    background-image: url('');
}
.fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-loginBtn a:hover {
    background-image: url('');
}

/*<!-- Please use a class names to avoid affecting <img> tag globally -->*/
/*<!-- img {*/
/*    height: 48px;*/
/*    object-fit: cover;*/
/*} -->*/


/****.fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-contactBtn a:after {
    content: url('data:image/svg+xml; utf8, <svg width="32" height="30" viewBox="0 0 32 30" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="m18.707 5.9 9 8.437c.093.087.167.19.218.304a.887.887 0 0 1 0 .718.937.937 0 0 1-.218.305l-9 8.437a1.035 1.035 0 0 1-.707.275c-.265 0-.52-.1-.707-.275a.91.91 0 0 1-.294-.663.91.91 0 0 1 .294-.664l7.293-6.836H5c-.265 0-.52-.1-.707-.275A.909.909 0 0 1 4 15c0-.248.105-.487.293-.663.187-.175.442-.274.707-.274h19.586l-7.293-6.837a.91.91 0 0 1-.294-.663.91.91 0 0 1 .294-.664c.187-.175.442-.274.707-.274.265 0 .52.099.707.274z" fill="%23002856"/></svg>');
}
.fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-contactBtn a:hover:after {
    content: url('data:image/svg+xml; utf8, <svg width="32" height="30" viewBox="0 0 32 30" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="m18.707 5.9 9 8.437c.093.087.167.19.218.304a.887.887 0 0 1 0 .718.937.937 0 0 1-.218.305l-9 8.437a1.035 1.035 0 0 1-.707.275c-.265 0-.52-.1-.707-.275a.91.91 0 0 1-.294-.663.91.91 0 0 1 .294-.664l7.293-6.836H5c-.265 0-.52-.1-.707-.275A.909.909 0 0 1 4 15c0-.248.105-.487.293-.663.187-.175.442-.274.707-.274h19.586l-7.293-6.837a.91.91 0 0 1-.294-.663.91.91 0 0 1 .294-.664c.187-.175.442-.274.707-.274.265 0 .52.099.707.274z" fill="%23002856"/></svg>');
}****/
.fl-node-e9cn2bo5h3t8 .CustomHeader ul.navbar-nav > li a .caret {
    background-image: url('data:image/svg+xml; utf8, <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.71 9.29a.996.996 0 0 0 0 1.41l4.59 4.59a.996.996 0 0 0 1.41 0l4.59-4.59a.997.997 0 0 0-1.41-1.41L12 13.17 8.12 9.29c-.39-.39-1.03-.38-1.41 0z" fill="%23ffffff"/></svg>');
}
.fl-node-e9cn2bo5h3t8 .CustomHeader ul.navbar-nav > li a:hover .caret {
    background-image: url('data:image/svg+xml; utf8, <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.71 9.29a.996.996 0 0 0 0 1.41l4.59 4.59a.996.996 0 0 0 1.41 0l4.59-4.59a.997.997 0 0 0-1.41-1.41L12 13.17 8.12 9.29c-.39-.39-1.03-.38-1.41 0z" fill="%23ffffff"/></svg>');
}

@media only screen and (max-width: 1180px) {
    .fl-node-e9cn2bo5h3t8 .CustomHeader ul.navbar-nav > li.CustomHeader-contactBtn a:after {
        content: url('data:image/svg+xml; utf8, <svg width="32" height="30" viewBox="0 0 32 30" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="m18.707 5.9 9 8.437c.093.087.167.19.218.304a.887.887 0 0 1 0 .718.937.937 0 0 1-.218.305l-9 8.437a1.035 1.035 0 0 1-.707.275c-.265 0-.52-.1-.707-.275a.91.91 0 0 1-.294-.663.91.91 0 0 1 .294-.664l7.293-6.836H5c-.265 0-.52-.1-.707-.275A.909.909 0 0 1 4 15c0-.248.105-.487.293-.663.187-.175.442-.274.707-.274h19.586l-7.293-6.837a.91.91 0 0 1-.294-.663.91.91 0 0 1 .294-.664c.187-.175.442-.274.707-.274.265 0 .52.099.707.274z" fill="%23FFFFFF"/></svg>');
    }
    .fl-node-e9cn2bo5h3t8 .CustomHeader ul.navbar-nav > li.CustomHeader-contactBtn a:hover:after {
        content: url('data:image/svg+xml; utf8, <svg width="32" height="30" viewBox="0 0 32 30" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="m18.707 5.9 9 8.437c.093.087.167.19.218.304a.887.887 0 0 1 0 .718.937.937 0 0 1-.218.305l-9 8.437a1.035 1.035 0 0 1-.707.275c-.265 0-.52-.1-.707-.275a.91.91 0 0 1-.294-.663.91.91 0 0 1 .294-.664l7.293-6.836H5c-.265 0-.52-.1-.707-.275A.909.909 0 0 1 4 15c0-.248.105-.487.293-.663.187-.175.442-.274.707-.274h19.586l-7.293-6.837a.91.91 0 0 1-.294-.663.91.91 0 0 1 .294-.664c.187-.175.442-.274.707-.274.265 0 .52.099.707.274z" fill="%23ffffff"/></svg>');
    }
    .fl-node-e9cn2bo5h3t8 .CustomHeader ul.navbar-nav > li a .caret {
        background-image: url('data:image/svg+xml; utf8, <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.71 9.29a.996.996 0 0 0 0 1.41l4.59 4.59a.996.996 0 0 0 1.41 0l4.59-4.59a.997.997 0 0 0-1.41-1.41L12 13.17 8.12 9.29c-.39-.39-1.03-.38-1.41 0z" fill="%23002856"/></svg>');
    }
    .fl-node-e9cn2bo5h3t8 .CustomHeader ul.navbar-nav > li:not(.open) a:hover .caret {
        background-image: url('data:image/svg+xml; utf8, <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.71 9.29a.996.996 0 0 0 0 1.41l4.59 4.59a.996.996 0 0 0 1.41 0l4.59-4.59a.997.997 0 0 0-1.41-1.41L12 13.17 8.12 9.29c-.39-.39-1.03-.38-1.41 0z" fill="%23002856"/></svg>');
    }
    .fl-node-e9cn2bo5h3t8 .CustomHeader ul.navbar-nav > li.open a .caret {
        background-image: url('data:image/svg+xml; utf8, <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.71 9.29a.996.996 0 0 0 0 1.41l4.59 4.59a.996.996 0 0 0 1.41 0l4.59-4.59a.997.997 0 0 0-1.41-1.41L12 13.17 8.12 9.29c-.39-.39-1.03-.38-1.41 0z" fill="%23002856"/></svg>');
    }
} 




.fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-navbarToggle {
	background-image: url(https://unitedsteelworkers-dev.huemortest.com/wp-content/uploads/2024/07/hamburger_menu.svg);
}
.fl-node-e9cn2bo5h3t8 .CustomHeader ul.navbar-nav > li.menu-item, .fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-secondaryWrapper .navbar-collapse.CustomHeader-languagesMenu ul.navbar-nav > li.menu-item, .fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-secondaryWrapper .navbar-collapse.CustomHeader-secondaryMenu ul.navbar-nav > li.menu-item {
	background-color: rgba(255,255,255,0);
}
.fl-node-e9cn2bo5h3t8 .CustomHeader ul.navbar-nav > li.menu-item a, .fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-secondaryWrapper .navbar-collapse.CustomHeader-languagesMenu ul.navbar-nav > li.menu-item a, .fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-secondaryWrapper .navbar-collapse.CustomHeader-secondaryMenu ul.navbar-nav > li.menu-item a, .fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-phoneNumber a {
	color: #ffffff;
}
.fl-node-e9cn2bo5h3t8 .CustomHeader ul.navbar-nav > li.menu-item:hover a, .fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-secondaryWrapper .navbar-collapse.CustomHeader-languagesMenu ul.navbar-nav > li.menu-item:hover a, .fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-secondaryWrapper .navbar-collapse.CustomHeader-secondaryMenu ul.navbar-nav > li.menu-item:hover a, .fl-node-e9cn2bo5h3t8 .CustomHeader ul.navbar-nav > li.open a, .fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-phoneNumber:hover a {
	color: #ffffff;
}
.fl-node-e9cn2bo5h3t8 .CustomHeader ul.navbar-nav > li.menu-item:hover, .fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-secondaryWrapper .navbar-collapse.CustomHeader-languagesMenu ul.navbar-nav > li.menu-item:hover, .fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-secondaryWrapper .navbar-collapse.CustomHeader-secondaryMenu ul.navbar-nav > li.menu-item:hover, .fl-node-e9cn2bo5h3t8 .CustomHeader ul.navbar-nav > li.open {
	background-color: rgba(241,246,248,0);
}
.CustomHeader-bgOnScroll .fl-node-e9cn2bo5h3t8 .CustomHeader ul.navbar-nav > li.menu-item a, .CustomHeader-bgOnScroll .fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-secondaryWrapper .navbar-collapse.CustomHeader-languagesMenu ul.navbar-nav > li.menu-item a, .CustomHeader-bgOnScroll .fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-secondaryWrapper .navbar-collapse.CustomHeader-secondaryMenu ul.navbar-nav > li.menu-item a, .CustomHeader-bgOnScroll .fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-phoneNumber a {
	color: #002856;
}
.CustomHeader-bgOnScroll .fl-node-e9cn2bo5h3t8 .CustomHeader ul.navbar-nav > li.menu-item:hover a, .CustomHeader-bgOnScroll .fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-secondaryWrapper .navbar-collapse.CustomHeader-languagesMenu ul.navbar-nav > li.menu-item:hover a, .CustomHeader-bgOnScroll .fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-secondaryWrapper .navbar-collapse.CustomHeader-secondaryMenu ul.navbar-nav > li.menu-item:hover a, .CustomHeader-bgOnScroll .fl-node-e9cn2bo5h3t8 .CustomHeader ul.navbar-nav > li.open a, .CustomHeader-bgOnScroll .fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-phoneNumber:hover a {
	color: #002856;
}
.fl-node-e9cn2bo5h3t8 .CustomHeader  ul.navbar-nav > li.active a {
	color: #ffffff;
}
.fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-contactBtn a {
	color: #002856;
	background-color: #ffb71b;
	border-color: #ffb71b;
}
.fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-contactBtn a:hover {
	color: #002856;
	background-color: #ffc548;
	border-color: #ffc548;
}
.CustomHeader-bgOnScroll .fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-contactBtn a {
	color: #ffffff;
	background-color: #002856;
	border-color: #002856;
}
.CustomHeader-bgOnScroll .fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-contactBtn a:hover {
	color: #ffffff;
	background-color: #002045;
	border-color: #002045;
}
.fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-phoneMobile a {
	color: #002856;
	background-color: #ffc548;
	border-color: #ffb71b;
}
.fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-phoneMobile a::before {
	background-color: #ffb71b;
}
.fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-phoneMobile a:hover {
	color: #002856;
	border-color: #ffc548;
}
.fl-node-e9cn2bo5h3t8 .CustomHeader .navbar-nav>li.CustomHeader-2subMenuLevels>ul.dropdown-menu>li.menu-item-has-children>ul.CustomHeader-dropdownMenu {
	background-color: #FFFFFF;
}
.fl-node-e9cn2bo5h3t8 .CustomHeader .navbar-nav>li.CustomHeader-2subMenuLevels>ul.dropdown-menu>li.activated {
	background-color: #FFFFFF;
}
.fl-node-e9cn2bo5h3t8 .CustomHeader .navbar-nav>li.CustomHeader-2subMenuLevels>ul.dropdown-menu>li:hover {
	background-color: #FFFFFF;
}
.fl-node-e9cn2bo5h3t8 .CustomHeader .navbar-nav>li>.dropdown-menu>li:hover {
	background-color: rgba(255, 255, 255, 0.2) !important;
}
.fl-node-e9cn2bo5h3t8 .CustomHeader .navbar-nav>li>.dropdown-menu>li a {
	color: 002856 !important;
}
.fl-node-e9cn2bo5h3t8 .CustomHeader .navbar-nav>li>.dropdown-menu>li a:hover {
	color: 002856 !important;
}
.fl-node-e9cn2bo5h3t8 .CustomHeader .navbar-nav>li.CustomHeader-2subMenuLevels>.dropdown-menu>li:hover a {
	color: #002856;
}
.fl-node-e9cn2bo5h3t8 .CustomHeader-announcement {
	background-color: #ffb71b;
	color: #002856;
}
.fl-node-e9cn2bo5h3t8 .CustomHeader-announcement--content, .fl-node-e9cn2bo5h3t8 .CustomHeader-announcement--content p, .fl-node-e9cn2bo5h3t8 .CustomHeader-announcement--content a {
	color: #002856;
}
@media(max-width: 1180px) {
	.fl-node-e9cn2bo5h3t8 .CustomHeader {
		background-image: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
		background-color: transparent;
	}
	.CustomHeader-parentRow {
		background-image: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
		background-color: transparent;
	}
	.fl-node-e9cn2bo5h3t8 .CustomHeader .navbar-collapse {
		background-image: linear-gradient(90deg, #ffffff 0%, #ffffff 100%);
		background-color: transparent;
	}
	.fl-node-e9cn2bo5h3t8 .CustomHeader .navbar-nav {
		background-color: #FFFFFF;
	}
	.fl-node-e9cn2bo5h3t8 .CustomHeader ul.navbar-nav > li.menu-item a {
		color: #002856;
	}
	.fl-node-e9cn2bo5h3t8 .CustomHeader  ul.navbar-nav > li.menu-item a:hover {
		color: #002856;
	}
	.fl-node-e9cn2bo5h3t8 .CustomHeader ul.navbar-nav > li:not(.open) a {
		color: #002856;
	}
	.fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-contactBtn a {
		color: #FFFFFF;
		background-color: #002045;
		border-color: #002856;
	}
	.fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-contactBtn a::before {
		background-color: #002856;
	}
	.fl-node-e9cn2bo5h3t8 .CustomHeader .CustomHeader-contactBtn a:hover {
		color: #ffffff;
		border-color: #002045;
	}
	.fl-node-e9cn2bo5h3t8 .CustomHeader .navbar-nav>li>.dropdown-menu>li a {
		color: #002856;
	}
	.fl-node-e9cn2bo5h3t8 .CustomHeader .navbar-nav>li>.dropdown-menu>li:hover a {
		color: #002856;
	}
	.fl-node-e9cn2bo5h3t8 .CustomHeader-returnToMain {
		margin-top: 40px;
	}
	.fl-node-e9cn2bo5h3t8 .CustomHeader-minHeight100vh {
		height: calc(100vh - 230px);;
	}
}
@media(min-width: 1180px) {
	.CustomHeader-bgOnScroll .fl-node-e9cn2bo5h3t8 .CustomHeader ul.navbar-nav > li.menu-item a:focus {
		color: #002856;
	}
	.fl-node-e9cn2bo5h3t8 .CustomHeader ul.navbar-nav > li.menu-item a:focus {
		color: #ffffff;
	}
}
@media(min-width: 1181px) {
	.fl-node-e9cn2bo5h3t8 .CustomHeader .navbar-nav > li > .dropdown-menu {
		background-color: #FFFFFF;
	}
}
@media(max-width: 463px) {
	.fl-node-e9cn2bo5h3t8 .CustomHeader-returnToMain {
		margin-top: 54px;
	}
}
@media(max-width: 399px) {
	.fl-node-e9cn2bo5h3t8 .CustomHeader-returnToMain {
		margin-top: 60px;
	}
}
@media(max-width: 391px) {
	.fl-node-e9cn2bo5h3t8 .CustomHeader-minHeight100vh {
		height: calc(100vh - 295px);;
	}
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */

/* Sticky */
.fl-builder-content[data-type="header"].fl-theme-builder-header-sticky {
	position: fixed;
	width: 100%;
	z-index: 100;
}

/* Sticky - fix flyout menu  */
.fl-theme-builder-flyout-menu-push-left .fl-builder-content[data-type="header"].fl-theme-builder-header-sticky {
	left: auto !important;
	transition: left 0.2s !important;
}
.fl-theme-builder-flyout-menu-push-right .fl-builder-content[data-type="header"].fl-theme-builder-header-sticky {
	right: auto !important;
	transition: right 0.2s !important;
}
.fl-builder-content[data-type="header"].fl-theme-builder-header-sticky .fl-menu .fl-menu-mobile-opacity {
	height: 100vh;
	width: 100vw;
}
.fl-builder-content[data-type="header"]:not([data-overlay="1"]).fl-theme-builder-header-sticky .fl-menu-mobile-flyout {
	top: 0px;
}
.fl-theme-builder-flyout-menu-active body {
	margin-left: 0px !important;
	margin-right: 0px !important;
}
.fl-theme-builder-has-flyout-menu, .fl-theme-builder-has-flyout-menu body {
	overflow-x: hidden;
}
.fl-theme-builder-flyout-menu-push-right {
	right: 0px;
	transition: right 0.2s ease-in-out;
}
.fl-theme-builder-flyout-menu-push-left {
	left: 0px;
	transition: left 0.2s ease-in-out;
}
.fl-theme-builder-flyout-menu-active .fl-theme-builder-flyout-menu-push-right {
	position: relative;
	right: 250px;
}
.fl-theme-builder-flyout-menu-active .fl-theme-builder-flyout-menu-push-left {
	position: relative;
	left: 250px;
}
.fl-theme-builder-flyout-menu-active .fl-builder-content[data-type="header"] .fl-menu-disable-transition {
	transition: none;
}

/* Shrink */
.fl-builder-content[data-shrink="1"] .fl-row-content-wrap,
.fl-builder-content[data-shrink="1"] .fl-col-content,
.fl-builder-content[data-shrink="1"] .fl-module-content,
.fl-builder-content[data-shrink="1"] img {
	-webkit-transition: all 0.4s ease-in-out, background-position 1ms;
	-moz-transition: all 0.4s ease-in-out, background-position 1ms;
	transition: all 0.4s ease-in-out, background-position 1ms;
}
.fl-builder-content[data-shrink="1"] img {
	width: auto;
}
.fl-builder-content[data-shrink="1"] img.fl-photo-img {
	width: auto;
	height: auto;
}
.fl-builder-content[data-type="header"].fl-theme-builder-header-shrink .fl-row-content-wrap {
	margin-bottom: 0;
	margin-top: 0;
}
.fl-theme-builder-header-shrink-row-bottom.fl-row-content-wrap {
	padding-bottom: 5px;
}
.fl-theme-builder-header-shrink-row-top.fl-row-content-wrap {
	padding-top: 5px;
}
.fl-builder-content[data-type="header"].fl-theme-builder-header-shrink .fl-col-content {
	margin-bottom: 0;
	margin-top: 0;
	padding-bottom: 0;
	padding-top: 0;
}
.fl-theme-builder-header-shrink-module-bottom.fl-module-content,
.fl-theme-builder-header-shrink-module-bottom.fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-bottom: 5px;
}
.fl-theme-builder-header-shrink-module-top.fl-module-content,
.fl-theme-builder-header-shrink-module-bottom.fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 5px;
}
.fl-builder-content[data-type="header"].fl-theme-builder-header-shrink img {
	-webkit-transition: all 0.4s ease-in-out, background-position 1ms;
	-moz-transition: all 0.4s ease-in-out, background-position 1ms;
	transition: all 0.4s ease-in-out, background-position 1ms;
}

/* Overlay */
.fl-builder-content[data-overlay="1"]:not(.fl-theme-builder-header-sticky):not(.fl-builder-content-editing) {
	position: absolute;
	width: 100%;
	z-index: 100;
}
.fl-builder-edit body:not(.single-fl-theme-layout) .fl-builder-content[data-overlay="1"] {
	display: none;
}
body:not(.single-fl-theme-layout) .fl-builder-content[data-overlay="1"]:not(.fl-theme-builder-header-scrolled):not([data-overlay-bg="default"]) .fl-row-content-wrap,
body:not(.single-fl-theme-layout) .fl-builder-content[data-overlay="1"]:not(.fl-theme-builder-header-scrolled):not([data-overlay-bg="default"]) .fl-col-content,
body:not(.single-fl-theme-layout) .fl-builder-content[data-overlay="1"]:not(.fl-theme-builder-header-scrolled):not([data-overlay-bg="default"]) .fl-module-box {
	background: transparent;
}
