/**
 * DX Header
 */

/* =========================================================
   RESET / BASE
   ========================================================= */

.dx-header {
	position: relative;
	z-index: 1000;
	width: 100%;
	background: #ffffff;
	border-bottom: 1px solid #eeeeee;
	box-sizing: border-box;
}

.dx-header *,
.dx-header *::before,
.dx-header *::after {
	box-sizing: border-box;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.dx-header__container {
	width: 100%;
	max-width: 1440px;
	height: 82px;
	margin: 0 auto;
	padding: 0 40px;

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}


/* =========================================================
   LOGO
   ========================================================= */

.dx-header__logo {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
}

.dx-header__logo-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	max-width: 115px;
}

.dx-header__logo-image {
	display: block;
	width: auto;
	max-width: 125px !important;
	height: 68px !important;
	width: auto;
	object-fit: contain;
}

.dx-header__logo-placeholder {
	color: #112653;
	font-size: 20px;
	font-weight: 700;
}
.dx-header__logo img{
	max-width: 90px;
	max-height: 90px;
}

/* =========================================================
   NAVIGATION
   ========================================================= */

.dx-header__navigation {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
}

.dx-header__menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;

	margin: 0;
	padding: 0;

	list-style: none;
}

.dx-header__menu > li {
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}

.dx-header__menu > li > a {
	position: relative;

	display: flex;
	align-items: center;
	gap: 7px;

	padding: 31px 0;

	color: #102653;
	background: transparent;

	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;

	text-decoration: none;
	white-space: nowrap;

	transition:
		color 0.2s ease,
		opacity 0.2s ease;
}

.dx-header__menu > li > a:hover {
	color: #FD9800;
}


/* =========================================================
   ACTIVE MENU ITEM
   ========================================================= */

.dx-header__menu > li.current-menu-item > a::after,
.dx-header__menu > li.current-menu-ancestor > a::after {
	content: "";

	position: absolute;
	left: 0;
	right: 0;
	bottom: 21px;

	height: 2px;

	background: #FD9800;
}

.dx-header__menu > li.current-menu-item > a,
.dx-header__menu > li.current-menu-ancestor > a {
	color: #102653;
}


/* =========================================================
   SUBMENU
   ========================================================= */

.dx-header__menu .sub-menu {
	position: absolute;
	top: calc(100% - 1px);
	left: 50%;

	min-width: 210px;

	margin: 0;
	padding: 10px 0;

	transform: translateX(-50%);

	background: #ffffff;
	border: 1px solid #eeeeee;
	border-radius: 0 0 8px 8px;

	box-shadow: 0 10px 30px rgba(16, 38, 83, 0.10);

	list-style: none;

	opacity: 0;
	visibility: hidden;
	pointer-events: none;

	transition:
		opacity 0.2s ease,
		visibility 0.2s ease;
}

.dx-header__menu > li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.dx-header__menu .sub-menu li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.dx-header__menu .sub-menu a {
	display: block;

	padding: 10px 18px;

	color: #102653;

	font-size: 14px;
	font-weight: 500;
	line-height: 20px;

	text-decoration: none;

	transition:
		color 0.2s ease,
		background-color 0.2s ease;
}

.dx-header__menu .sub-menu a:hover {
	color: #FD9800;
	background: #fff7f3;
}


/* =========================================================
   DROPDOWN ARROW
   ========================================================= */

.dx-header__menu > li.menu-item-has-children > a::after {
	content: "";

	width: 7px;
	height: 7px;

	margin-top: -4px;

	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;

	transform: rotate(45deg);
}


/* =========================================================
   ACTIONS
   ========================================================= */

.dx-header__actions {
	flex: 0 0 auto;

	display: flex;
	align-items: center;
	justify-content: flex-end;

	gap: 22px;
}


/* =========================================================
   PHONE
   ========================================================= */

.dx-header__phone {
	display: inline-flex;
	align-items: center;
	gap: 9px;

	color: #102653;

	font-size: 15px;
	font-weight: 700;
	line-height: 20px;

	text-decoration: none;
	white-space: nowrap;

	transition: color 0.2s ease;
}

.dx-header__phone:hover {
	color: #FD9800;
}

.dx-header__phone-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 22px;
	height: 22px;

	font-size: 19px;
	line-height: 1;
}

.dx-header__phone-icon i {
	display: block;
}


/* =========================================================
   CTA
   ========================================================= */

.dx-header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-width: 112px;
	height: 42px;

	padding: 0 20px;

	color: #ffffff;
	background: #FD9800;

	border: 1px solid #FD9800;
	border-radius: 6px;

	font-size: 14px;
	font-weight: 700;
	line-height: 20px;

	text-decoration: none;
	white-space: nowrap;

	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

.dx-header__cta:hover {
	color: #ffffff;
	background: #dc4617;
	border-color: #dc4617;
	transform: translateY(-1px);
}


/* =========================================================
   MOBILE TOGGLE
   ========================================================= */

.dx-header__mobile-toggle {
	display: none;

	width: 42px;
	height: 42px;

	margin: 0;
	padding: 7px;

	border: 0;
	background: transparent;

	cursor: pointer;

	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.dx-header__mobile-toggle span {
	display: block;

	width: 32px;
	height: 3px;

	background: #102653;
	border-radius: 3px;

	transition:
		transform 0.2s ease,
		opacity 0.2s ease;
}


/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

.dx-header__mobile-navigation {
	display: none;

	width: 100%;

	background: #ffffff;
	border-top: 1px solid #eeeeee;
}

.dx-header__mobile-menu {
	margin: 0;
	padding: 10px 24px 24px;

	list-style: none;
}

.dx-header__mobile-menu li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.dx-header__mobile-menu > li > a {
	display: block;

	padding: 13px 0;

	color: #102653;

	font-size: 17px;
	font-weight: 600;
	line-height: 24px;

	text-decoration: none;

	border-bottom: 1px solid #eeeeee;
}

.dx-header__mobile-menu > li:last-child > a {
	border-bottom: 0;
}

.dx-header__mobile-menu a:hover {
	color: #FD9800;
}

.dx-header__mobile-menu .sub-menu {
	margin: 0;
	padding: 0 0 0 18px;

	list-style: none;
}

.dx-header__mobile-menu .sub-menu a {
	display: block;

	padding: 9px 0;

	color: #102653;

	font-size: 15px;
	font-weight: 500;

	text-decoration: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

	.dx-header__container {
		padding-left: 25px;
		padding-right: 25px;
		gap: 20px;
	}

	.dx-header__menu {
		gap: 20px;
	}

	.dx-header__menu > li > a {
		font-size: 13px;
	}

	.dx-header__phone {
		font-size: 14px;
	}

	.dx-header__actions {
		gap: 15px;
	}

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

	.dx-header {
		border-bottom: 1px solid #eeeeee;
	}

	.dx-header__container {
		padding: 0 38px;

		gap: 15px;
	}

	/* Logo */

	.dx-header__logo-image {
		width: auto;
		max-width: 110px;
		height: 112px;
	}

	/* Desktop navigation */

	.dx-header__navigation {
		display: none;
	}

	/* Actions */

	.dx-header__actions {
		margin-left: auto;

		gap: 20px;
	}

	/* Phone */

	.dx-header__phone {
		width: 42px;
		height: 42px;

		justify-content: center;
	}

	.dx-header__phone-number {
		display: none;
	}

	.dx-header__phone-icon {
		width: 38px;
		height: 38px;

		font-size: 33px;
	}

	/* CTA */

	.dx-header__cta {
		display: none;
	}

	/* Hamburger */

	.dx-header__mobile-toggle {
		display: flex;
	}

	/* Mobile menu */

	.dx-header__mobile-navigation {
		display: none;
	}

	.dx-header__mobile-navigation.is-open {
		display: block;
	}
	.dx-header__container{
		height: auto;
	}
	.dx-header{
		margin: -10px;
		        width: calc(100% + 20px);
	}
	.dx-hero{
		margin-top: 0px;
	}
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

	.dx-header__container {
		padding-left: 24px;
		padding-right: 24px;
	}

	.dx-header__logo-image {
		max-width: 100px;
		height: 105px;
	}

	.dx-header__actions {
		gap: 12px;
	}

	.dx-header__mobile-toggle {
		width: 40px;
		height: 40px;
	}

	.dx-header__mobile-toggle span {
		width: 30px;
		height: 3px;
	}

}
.dx-header__mobile-toggle.is-open span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.dx-header__mobile-toggle.is-open span:nth-child(2) {
	opacity: 0;
}

.dx-header__mobile-toggle.is-open span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}