:root {
	--hames-navy: #17334f;
	--hames-blue: #1778bd;
	--hames-blue-dark: #0d5f99;
	--hames-ice: #f2f7fb;
	--hames-line: #dce7ef;
	--hames-text: #243647;
	--hames-muted: #6b7d8c;
}

#header.hames-header {
	position: relative;
	z-index: 1100 !important;
}

.hames-header .header-body {
	border: 0;
	background: rgba(255, 255, 255, .98);
	box-shadow: 0 8px 28px rgba(28, 54, 78, .08);
}

.hames-header .header-container {
	min-height: 76px;
	max-width: 1280px;
}

.hames-utility {
	height: 36px;
	color: #dce9f3;
	background: var(--hames-navy);
	font-size: 12px;
	letter-spacing: -.1px;
}

.hames-utility-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	max-width: 1280px;
}

.hames-utility p {
	margin: 0;
}

.hames-utility-links {
	display: flex;
	align-items: center;
	gap: 22px;
}

.hames-utility a {
	color: #fff;
	text-decoration: none;
	transition: opacity .2s ease;
}

.hames-utility a:hover {
	color: #fff;
	opacity: .76;
}

.hames-utility i {
	margin-right: 6px;
	color: #75c5f1;
}

.hames-brand-column {
	flex-grow: 0;
}

.hames-header .header-logo img {
	width: 120px;
	height: auto;
}

.hames-header .header-nav,
.hames-header .header-nav-main,
.hames-header .header-nav-main nav,
.hames-header #mainNav {
	position: static;
}

.hames-header #mainNav {
	gap: 4px;
}

.hames-header .hames-nav-link {
	position: relative;
	display: flex !important;
	align-items: center;
	height: 76px;
	padding: 0 18px !important;
	border-radius: 0 !important;
	color: var(--hames-text) !important;
	background: transparent !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	letter-spacing: -.3px;
}

.hames-header .hames-nav-link::before {
	position: absolute;
	right: 18px;
	bottom: 14px;
	left: 18px;
	height: 3px;
	border-radius: 3px;
	background: var(--hames-blue);
	content: "";
	opacity: 0;
	transform: scaleX(.4);
	transition: opacity .2s ease, transform .2s ease;
}

.hames-header li:hover > .hames-nav-link::before,
.hames-header li:focus-within > .hames-nav-link::before,
.hames-header .hames-nav-link.is-current::before {
	opacity: 1;
	transform: scaleX(1);
}

.hames-header .hames-nav-link:hover,
.hames-header .hames-nav-link:focus,
.hames-header .hames-nav-link.is-current {
	color: var(--hames-blue-dark) !important;
}

.hames-header .dropdown-toggle::after {
	margin-left: 7px;
	font-size: 10px;
	opacity: .6;
}

.hames-header .dropdown-menu {
	margin: 0;
	border: 1px solid var(--hames-line);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 24px 60px rgba(23, 51, 79, .18);
}

.hames-mega-dropdown {
	position: static !important;
}

.hames-mega-menu {
	top: calc(100% - 1px) !important;
	left: 50% !important;
	width: min(1080px, calc(100vw - 48px));
	max-height: min(470px, calc(100vh - 135px));
	padding: 20px 24px 22px !important;
	overflow-x: hidden;
	overflow-y: auto;
	transform: translateX(-50%);
}

.hames-mega-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 14px;
	padding-bottom: 13px;
	border-bottom: 1px solid var(--hames-line);
}

.hames-mega-head strong {
	display: block;
	margin-top: 4px;
	color: var(--hames-navy);
	font-size: 18px;
	letter-spacing: -.7px;
}

.hames-eyebrow {
	color: var(--hames-blue);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 1.4px;
}

.hames-view-all {
	color: var(--hames-blue-dark);
	font-size: 13px;
	font-weight: 700;
}

.hames-mega-actions {
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	gap: 7px;
}

.hames-mega-close {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 3px 5px;
	border: 0;
	outline: 0;
	color: #6c7f8f;
	background: transparent;
	font-size: 11px;
	font-weight: 700;
	cursor: pointer;
}

.hames-mega-close span {
	color: #38576f;
	font-size: 21px;
	font-weight: 400;
	line-height: 13px;
}

.hames-mega-close:hover,
.hames-mega-close:focus {
	color: var(--hames-blue-dark);
}

.hames-mega-close:focus {
	border-radius: 4px;
	box-shadow: 0 0 0 2px rgba(23, 120, 189, .2);
}

.hames-view-all i {
	margin-left: 7px;
	transition: transform .2s ease;
}

.hames-view-all:hover i {
	transform: translateX(4px);
}

.hames-category-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px 18px;
}

.hames-category-group {
	min-width: 0;
}

.hames-category-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 5px;
	padding: 7px 9px;
	border-radius: 7px;
	color: var(--hames-navy);
	background: var(--hames-ice);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: -.35px;
}

.hames-category-title i {
	color: #8ea8bc;
	font-size: 9px;
}

.hames-category-title:hover {
	color: #fff;
	background: var(--hames-blue);
	text-decoration: none;
}

.hames-category-title:hover i {
	color: #fff;
}

.hames-category-group ul {
	margin: 0;
	padding: 0 8px;
	list-style: none;
}

.hames-category-group li {
	margin: 0;
}

.hames-category-group li a {
	display: block;
	padding: 3px 0;
	color: var(--hames-muted);
	font-size: 12px;
	line-height: 1.3;
	letter-spacing: -.2px;
}

.hames-category-group li a:hover {
	color: var(--hames-blue);
	text-decoration: none;
}

/* Footer */
#footer.hames-footer {
	margin-top: 0;
	border: 0;
	background: #17334f;
	color: #bdd0df;
}

.hames-footer-main {
	padding: 62px 0 54px;
	background:
		radial-gradient(circle at 8% 12%, rgba(42, 137, 194, .15), transparent 30%),
		linear-gradient(135deg, #17334f 0%, #102a42 100%);
}

.hames-footer-contact {
	padding-right: 34px;
}

.hames-footer-eyebrow {
	display: block;
	margin-bottom: 8px;
	color: #75c5f1;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 1.35px;
}

#footer.hames-footer h5 {
	position: relative;
	margin: 0 0 22px;
	padding-bottom: 13px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -.35px;
}

#footer.hames-footer h5::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 28px;
	height: 2px;
	border-radius: 2px;
	background: #278cc7;
	content: "";
}

.hames-footer-contact-copy {
	margin: -4px 0 20px;
	color: #a9bfce;
	font-size: 13px;
	line-height: 1.7;
}

.hames-footer-phone {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
	color: #fff !important;
	text-decoration: none !important;
}

.hames-footer-phone > i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(117, 197, 241, .35);
	border-radius: 50%;
	background: rgba(39, 140, 199, .13);
	color: #75c5f1;
	font-size: 15px;
}

.hames-footer-phone span,
.hames-footer-phone small,
.hames-footer-phone strong {
	display: block;
}

.hames-footer-phone small {
	margin-bottom: 1px;
	color: #91aabd;
	font-size: 10px;
}

.hames-footer-phone strong {
	color: #fff;
	font-size: 20px;
	letter-spacing: .2px;
}

.hames-footer-contact-list,
.hames-footer-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hames-footer-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 9px;
	color: #a9bfce;
	font-size: 12px;
	line-height: 1.55;
}

.hames-footer-contact-list i {
	flex: 0 0 14px;
	margin-top: 4px;
	color: #65b7e4;
	text-align: center;
}

#footer.hames-footer a {
	color: #bdcedb;
}

#footer.hames-footer a:hover {
	color: #fff;
	text-decoration: none;
}

.hames-footer-menu li {
	margin: 0;
}

.hames-footer-menu li a {
	position: relative;
	display: inline-block;
	padding: 5px 0 5px 13px;
	color: #b4c7d5 !important;
	font-size: 13px;
	line-height: 1.45;
	transition: color .18s ease, transform .18s ease;
}

.hames-footer-menu li a::before {
	position: absolute;
	top: 13px;
	left: 0;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #4e95bf;
	content: "";
}

.hames-footer-menu li a:hover {
	color: #fff !important;
	transform: translateX(3px);
}

.hames-footer-menu li a:hover::before {
	background: #75c5f1;
}

.hames-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .08);
	background: #0d2235;
}

.hames-footer-bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
}

.hames-footer-bottom p {
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 0;
	color: #7f9aae;
	font-size: 11px;
}

.hames-footer-bottom p strong {
	color: #dce8f0;
	font-size: 12px;
}

.hames-footer-bottom-links {
	display: flex;
	align-items: center;
	gap: 18px;
}

.hames-footer-bottom-links > a {
	color: #8ea6b8 !important;
	font-size: 11px;
}

.hames-footer-bottom-links > a:hover {
	color: #fff !important;
}

.hames-footer-top {
	padding: 7px 11px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 4px;
}

.hames-footer-top i {
	margin-left: 5px;
	font-size: 8px;
}

.hames-compact-menu,
.hames-company-menu {
	top: calc(100% - 7px) !important;
	min-width: 260px;
	padding: 10px !important;
}

.hames-company-menu {
	min-width: 190px;
}

.hames-compact-menu .dropdown-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 12px;
	border-radius: 9px;
}

.hames-compact-menu .dropdown-item:hover,
.hames-company-menu .dropdown-item:hover {
	background: var(--hames-ice);
}

.hames-compact-menu i {
	width: 28px;
	color: var(--hames-blue);
	font-size: 18px;
	text-align: center;
}

.hames-compact-menu span {
	display: flex;
	flex-direction: column;
}

.hames-compact-menu strong {
	color: var(--hames-text);
	font-size: 13px;
}

.hames-compact-menu small {
	margin-top: 2px;
	color: #8493a0;
	font-size: 11px;
}

.hames-company-menu .dropdown-item {
	padding: 10px 13px;
	border-radius: 8px;
	color: var(--hames-text);
	font-size: 13px;
	font-weight: 600;
}

.hames-gnb-dim {
	position: fixed;
	z-index: 1090;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	visibility: hidden;
	background: rgba(20, 43, 63, .18);
	opacity: 0;
	transition: visibility 0s linear .3s, opacity .3s ease;
}

.hames-gnb-dim.is-open {
	visibility: visible;
	opacity: 1;
	transition-delay: 0s;
}

.hames-gnb-panel-inner {
	display: flex;
	align-items: flex-start;
	gap: 38px;
	max-width: 1180px;
	margin: 0 auto;
	padding: 30px 32px 34px;
}

.hames-gnb-intro {
	display: flex;
	flex: 0 0 300px;
	align-items: center;
	gap: 18px;
	min-height: 86px;
}

.hames-gnb-icon {
	display: inline-flex;
	flex: 0 0 72px;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border: 1px solid #dbe7ef;
	border-radius: 17px;
	color: var(--hames-blue);
	background: #fff;
	box-shadow: 0 7px 22px rgba(23, 51, 79, .13);
	font-size: 26px;
}

.hames-gnb-intro h2 {
	margin: 0 0 5px;
	color: var(--hames-navy);
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -.8px;
}

.hames-gnb-intro p {
	margin: 0;
	color: var(--hames-muted);
	font-size: 13px;
	line-height: 1.55;
	word-break: keep-all;
}

.hames-gnb-links {
	display: grid;
	flex: 1 1 auto;
	gap: 12px;
	padding-top: 5px;
}

.hames-gnb-links-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hames-gnb-links-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hames-gnb-links-5 {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hames-gnb-links .dropdown-item {
	position: relative;
	display: flex;
	align-items: center;
	min-width: 0;
	min-height: 76px;
	padding: 14px 42px 14px 17px;
	border: 1px solid #e4ebf0;
	border-radius: 10px;
	color: var(--hames-text);
	background: #f5f7fa;
	white-space: normal;
	transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.hames-gnb-links .dropdown-item::after {
	position: absolute;
	top: 50%;
	right: 17px;
	color: #8ba0b0;
	content: "\f054";
	font-family: "Font Awesome 5 Free";
	font-size: 10px;
	font-weight: 900;
	transform: translateY(-50%);
}

.hames-gnb-links .dropdown-item:hover,
.hames-gnb-links .dropdown-item:focus {
	border-color: #b9d8ea;
	color: var(--hames-blue-dark);
	background: #eef7fc;
	text-decoration: none;
	transform: translateY(-2px);
}

.hames-gnb-links .dropdown-item > i {
	flex: 0 0 30px;
	margin-right: 11px;
	color: var(--hames-blue);
	font-size: 19px;
	text-align: center;
}

.hames-gnb-links .dropdown-item span,
.hames-gnb-links .dropdown-item strong,
.hames-gnb-links .dropdown-item small {
	display: block;
	min-width: 0;
}

.hames-gnb-links .dropdown-item strong {
	color: inherit;
	font-size: 14px;
	font-weight: 800;
}

.hames-gnb-links .dropdown-item small {
	margin-top: 4px;
	overflow: hidden;
	color: #788995;
	font-size: 11px;
	line-height: 1.4;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hames-compact-dropdown .hames-gnb-icon {
	flex-basis: 54px;
	width: 54px;
	height: 54px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	font-size: 23px;
}

.hames-compact-dropdown .hames-gnb-links {
	gap: 0 28px;
	padding-top: 0;
}

.hames-compact-dropdown .hames-gnb-links .dropdown-item {
	min-height: 70px;
	padding: 12px 26px 12px 0;
	border: 0;
	border-bottom: 1px solid #dfe8ee;
	border-radius: 0;
	background: transparent;
}

.hames-compact-dropdown .hames-gnb-links .dropdown-item:hover,
.hames-compact-dropdown .hames-gnb-links .dropdown-item:focus {
	border-bottom-color: var(--hames-blue);
	background: transparent;
	transform: none;
}

.hames-compact-dropdown .hames-gnb-links .dropdown-item::after {
	right: 5px;
}

.hames-compact-dropdown .hames-gnb-links .dropdown-item > i {
	display: none;
}

.hames-search {
	position: relative;
	display: flex;
	align-items: center;
	width: 150px;
	height: 40px;
	margin-left: 12px;
	border: 1px solid var(--hames-line);
	border-radius: 21px;
	background: #f8fafc;
	transition: width .25s ease, border-color .2s ease, box-shadow .2s ease;
}

.hames-search:focus-within {
	width: 190px;
	border-color: #8ec6e8;
	box-shadow: 0 0 0 3px rgba(23, 120, 189, .1);
}

.hames-search input {
	width: 100%;
	height: 100%;
	padding: 0 40px 0 15px;
	border: 0;
	outline: 0;
	color: var(--hames-text);
	background: transparent;
	font-size: 12px;
}

.hames-search button {
	position: absolute;
	top: 0;
	right: 4px;
	width: 36px;
	height: 38px;
	padding: 0;
	border: 0;
	outline: 0;
	color: var(--hames-blue-dark);
	background: transparent;
	cursor: pointer;
}

.hames-inquiry-cta {
	margin-left: 10px;
	padding: 11px 17px !important;
	border: 0 !important;
	border-radius: 21px !important;
	color: #fff !important;
	background: var(--hames-blue) !important;
	box-shadow: 0 8px 18px rgba(23, 120, 189, .2);
	font-size: 12px !important;
	font-weight: 700 !important;
	white-space: nowrap;
}

.hames-inquiry-cta:hover {
	background: var(--hames-blue-dark) !important;
	transform: translateY(-1px);
}

.hames-mobile-actions {
	display: none;
}

.hames-mobile-toggle {
	display: none;
	width: 42px;
	height: 42px;
	margin-left: 8px !important;
	padding: 10px !important;
	border-radius: 12px !important;
	background: var(--hames-navy) !important;
}

.hames-mobile-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	margin: 4px auto;
	border-radius: 2px;
	background: #fff;
}

@media (min-width: 992px) {
	.hames-header #mainNav > .dropdown {
		position: static !important;
	}

	.hames-header .hames-gnb-panel {
		z-index: 1110 !important;
		top: calc(100% - 1px) !important;
		right: auto !important;
		left: 50% !important;
		width: 100vw;
		max-width: none;
		margin: 0;
		padding: 0 !important;
		overflow-x: hidden;
		border: 0;
		border-top: 1px solid #dbe3e9;
		border-radius: 0;
		box-shadow: 0 22px 45px rgba(14, 37, 57, .14);
		transform: translateX(-50%);
	}

	.hames-header .hames-product-panel {
		max-height: calc(100vh - 132px);
		padding: 26px max(32px, calc((100vw - 1180px) / 2)) 30px !important;
	}

	.hames-header .dropdown:not(.show) > .dropdown-menu {
		display: none !important;
	}

	.hames-header .dropdown.show > .dropdown-menu {
		display: block !important;
		animation: hamesGnbPanelIn .26s cubic-bezier(.2, .75, .25, 1) both;
	}

	@keyframes hamesGnbPanelIn {
		from { opacity: 0; transform: translate(-50%, -10px); }
		to { opacity: 1; transform: translate(-50%, 0); }
	}

	.hames-header .hames-mega-dropdown.show > .hames-mega-menu {
		display: block;
		transform: translateX(-50%);
		animation: hamesGnbPanelIn .26s cubic-bezier(.2, .75, .25, 1) both;
	}
}

@media (max-width: 1199px) and (min-width: 992px) {
	.hames-header .hames-nav-link {
		padding-right: 11px !important;
		padding-left: 11px !important;
		font-size: 14px !important;
	}

	.hames-search {
		width: 44px;
	}

	.hames-search input {
		padding-left: 13px;
		opacity: 0;
	}

	.hames-search:focus-within {
		width: 160px;
	}

	.hames-search:focus-within input {
		opacity: 1;
	}

	.hames-category-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.hames-utility,
	.hames-search,
	.hames-inquiry-cta {
		display: none;
	}

	.hames-header .header-container {
		min-height: 70px;
	}

	.hames-header .header-logo img {
		width: 108px;
	}

	.hames-mobile-toggle {
		display: inline-block;
	}

	.hames-header .header-nav-main {
		position: static;
	}

	.hames-header .header-nav-main nav {
		position: absolute;
		top: 100%;
		right: 12px;
		left: 12px;
		max-height: calc(100vh - 86px);
		padding: 12px;
		overflow-y: auto;
		border: 1px solid var(--hames-line);
		border-radius: 16px;
		background: #fff;
		box-shadow: 0 20px 50px rgba(23, 51, 79, .2);
	}

	.hames-header #mainNav {
		display: block;
	}

	.hames-header #mainNav > li {
		border-bottom: 1px solid #edf2f6;
	}

	.hames-header #mainNav > li:last-child {
		border-bottom: 0;
	}

	.hames-header .hames-nav-link {
		height: 52px;
		padding: 0 10px !important;
		font-size: 15px !important;
	}

	.hames-header .hames-nav-link::before {
		display: none;
	}

	.hames-header .dropdown-menu {
		position: static !important;
		width: 100%;
		margin: 0 0 10px;
		border: 0;
		border-radius: 10px;
		box-shadow: none;
		transform: none !important;
	}

	.hames-gnb-intro {
		display: none;
	}

	.hames-gnb-panel-inner {
		display: block;
		padding: 6px 8px 10px;
	}

	.hames-gnb-links,
	.hames-gnb-links-2,
	.hames-gnb-links-3,
	.hames-gnb-links-5 {
		display: block;
		padding: 0;
	}

	.hames-gnb-links .dropdown-item {
		min-height: 0;
		margin-bottom: 5px;
		padding: 11px 38px 11px 12px;
		border: 0;
		background: #fff;
		transform: none;
	}

	.hames-gnb-links .dropdown-item small {
		white-space: normal;
	}

	.hames-mega-menu {
		padding: 14px !important;
		background: #f7fafc !important;
	}

	.hames-mega-head {
		align-items: flex-start;
		margin-bottom: 12px;
		padding-bottom: 12px;
	}

	.hames-mega-head strong {
		font-size: 16px;
	}

	.hames-view-all {
		margin-top: 3px;
		font-size: 12px;
	}

	.hames-category-grid {
		grid-template-columns: 1fr;
		gap: 7px;
	}

	.hames-category-group {
		padding: 0;
	}

	.hames-category-title {
		margin: 0;
		background: #fff;
	}

	.hames-category-group ul {
		display: flex;
		flex-wrap: wrap;
		gap: 2px 14px;
		padding: 5px 12px 9px;
	}

	.hames-category-group li a {
		padding: 4px 0;
	}

	.hames-compact-menu,
	.hames-company-menu {
		min-width: 0;
		padding: 5px 8px 10px !important;
		background: #f7fafc !important;
	}

	.hames-mobile-actions {
		display: flex;
		flex-direction: column;
		gap: 10px;
		margin-top: 14px;
	}

	.hames-mobile-actions .btn {
		padding: 12px;
		border-radius: 10px;
		font-weight: 700;
	}

	.hames-mobile-call {
		padding: 8px;
		color: var(--hames-navy);
		font-size: 13px;
		font-weight: 700;
		text-align: center;
	}

	.hames-footer-contact {
		padding-right: 0;
	}

	.hames-footer-main {
		padding: 48px 0 38px;
	}
}

@media (max-width: 575px) {
	.hames-footer-main {
		padding: 40px 0 28px;
	}

	.hames-footer-contact {
		margin-bottom: 8px;
		padding-bottom: 28px;
		border-bottom: 1px solid rgba(255, 255, 255, .09);
	}

	#footer.hames-footer h5 {
		margin-bottom: 16px;
	}

	.hames-footer-bottom-inner {
		flex-direction: column;
		gap: 16px;
		padding: 22px 0;
		text-align: center;
	}

	.hames-footer-bottom p {
		flex-direction: column;
		gap: 4px;
	}

	.hames-footer-bottom-links {
		flex-wrap: wrap;
		justify-content: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hames-header *,
	.hames-header *::before,
	.hames-header *::after {
		scroll-behavior: auto !important;
		transition: none !important;
		animation: none !important;
	}
}
