/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 12 2026 | 09:29:39 */
.desktop-menu .desktop-nav {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 22px;
	justify-content: center;
	align-items: center;
}

.desktop-menu .desktop-nav > li {
	position: relative;
}

.desktop-menu .desktop-nav > li > a {
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	color: #e4782b;
	padding: 12px 0;
	display: inline-block;
}

.desktop-menu .desktop-nav > li > ul.children {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	min-width: 240px;
	padding: 10px 0;
	margin: 0;
	list-style: none;
	box-shadow: 0 10px 30px rgba(0,0,0,0.12);
	border-radius: 6px;
	display: none;
	z-index: 999;
}

.desktop-menu .desktop-nav > li:hover > ul.children {
	display: block;
}

.desktop-menu .desktop-nav ul.children li {
	position: relative;
}

.desktop-menu .desktop-nav ul.children li a {
	padding: 10px 16px;
	display: block;
	font-size: 15px;
	color: #C58D2A;
	text-decoration: none;
	white-space: nowrap;
}

.desktop-menu .desktop-nav ul.children li a:hover {
	background: #f6f6f6;
	color: #1F345D;
}

.desktop-menu .desktop-nav ul.children li > ul.children {
	position: absolute;
	top: 0;
	left: 100%;
	background: #fff;
	min-width: 240px;
	padding: 10px 0;
	margin: 0;
	list-style: none;
	box-shadow: 0 10px 30px rgba(0,0,0,0.12);
	border-radius: 6px;
	display: none; 
	z-index: 999;
}

.desktop-menu .desktop-nav ul.children li:hover > ul.children {
	display: block;
}

.icon-arrow {
	display: none !important;
}

header,
header .container-fluid,
header .row {
	overflow: visible !important;
}

header {
	z-index: 9999 !important;
}
ul.children > li > .icon-arrow {
    right: 10% !important;
}
.icon-arrow.open {
    transform: none !important;
}
@media (min-width: 768px) {
	ul#mainNav{
		display: none !important;
	}
}
@media(max-width:768px){
	.icon-arrow {
    	right: 35% !important;
	}
	.icon-arrow{
		display: block !important;
	}
}
/* ==========================
   Top Header Bar
========================== */

.top-header-bar {
	background: #cccccc;
	padding: 12px 0;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1001;
}

.top-right {
	display: flex;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
	justify-content: flex-end;
	padding-right: 110px;
}

.top-link {
	font-weight: 500;
	font-size: 16px;
	color: #000;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
}

.top-link i {
	font-size: 16px;
}

.top-link:hover {
	text-decoration: underline;
}

.top-social {
	display: flex;
	align-items: center;
	gap: 16px;
}

.top-social a {
	font-size: 18px;
	color: #000000;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.top-social a:hover {
	opacity: 0.7;
}

/* Mobile */
@media (max-width: 767px) {
	.top-header-bar {
		display:none;
	}
}
