/*Main menu*/
/* Header Styles - Mobile First Approach */

/* Main Header */
.header__row-main {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0px;
	position: relative;
}

.header__logo {
	z-index: 1;
}

.logo__image {
	max-height: 40px;
	width: auto;
}
/*Media*/
	@media (min-width: 576px) {}
	@media (min-width: 768px) {
		.logo__image {
			max-height: 30px;
		}
	}
	@media (min-width: 992px) {}
	@media (min-width: 1200px) {}
	@media (min-width: 1400px) {}
/*/Media*/

/* Menu Container */
.header__menu {
	position: relative;
}

.header__menu-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #fff;
	z-index: 10;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	overflow-y: auto;
	padding-top: 80px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

.header__menu-container.active {
	transform: translateX(0);
}

/* Menu Overlay */
.header__menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 5;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header__menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Burger Button */
.header__menu-burger {
	display: block;
	width: 30px;
	height: 22px;
	position: relative;
	background: transparent;
	border: none;
	cursor: pointer;
	z-index: 11;
	padding: 0;
}

.burger__line {
	display: block;
	width: 100%;
	height: 4px;
	background-color: #000;
	position: absolute;
	left: 0;
	transition: all 0.3s ease;
}

.burger__line:nth-child(1) {
	top: 0;
}

.burger__line:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}

.burger__line:nth-child(3) {
	bottom: 0;
}

.header__menu-burger.active .burger__line:nth-child(1) {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.header__menu-burger.active .burger__line:nth-child(2) {
	opacity: 0;
}

.header__menu-burger.active .burger__line:nth-child(3) {
	bottom: 50%;
	transform: translateY(50%) rotate(-45deg);
}

/* Menu List */
.header__menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

.header__menu-list li {
	position: relative;
	width: 100%;
	text-align: center;
}

.header__menu-list a {
	display: block;
	padding: 15px;
	text-decoration: none;
	color: #333;
	font-size: 18px;
	transition: color 0.3s ease;
}
.header__menu-list a:visited {
	color: #333;
}

.header__menu-list a:hover {
	color: #007bff;
}

/* Submenu Styles - Mobile */
.header__menu-list .sub-menu {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0;
	background-color: #f8f8f8;
	width: 100%;
}

.header__menu-list .sub-menu li a {
	padding: 12px 15px;
	font-size: 16px;
	color: #555;
}

.header__menu-list .menu-item-has-children {
	position: relative;
}

.header__menu-list .menu-item-has-children > a:after {
	content: "+";
	margin-left: 5px;
	transition: transform 0.3s ease;
}

.header__menu-list .menu-item-has-children.active > a:after {
	content: "-";
}

.header__menu-list .menu-item-has-children.active > .sub-menu {
	display: block;
}

/* Desktop Styles */
@media (min-width: 768px) {
	/* Menu Container */
	.header__menu-container {
		position: static;
		width: auto;
		height: auto;
		background-color: transparent;
		transform: none;
		transition: none;
		padding-top: 0;
		overflow: visible;
	}

	/* Burger Button & Overlay */
	.header__menu-burger { display: none; }
	.header__menu-overlay { display: none; }

	/* Menu List */
	.header__menu-list {
		display: flex;
		flex-direction: row;
		justify-content: flex-end;
		align-items: center;
		width: auto;
	}
	.header__menu-list li {
		width: auto;
		text-align: left;
	}
	.header__menu-list a {
		padding: 10px 10px;
		font-size: 17px;
	}
	/* Submenu Styles - Desktop */
	.header__menu-list .menu-item-has-children {
		position: relative;
	}
	.header__menu-list .menu-item-has-children > a:after {
		content: "▼";
		font-size: 10px;
		margin-left: 5px;
	}
	.header__menu-list .sub-menu {
		position: absolute;
		top: 100%;
		left: 0;
		background-color: #fff;
		min-width: 200px;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
		opacity: 0;
		visibility: hidden;
		transform: translateY(10px);
		transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
		z-index: 100;
	}
	.header__menu-list .menu-item-has-children:hover > .sub-menu {
		display: block;
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
	.header__menu-list .sub-menu li {
		width: 100%;
	}
	.header__menu-list .sub-menu a {
		padding: 10px 15px;
	}
}
@media (min-width: 992px) {
	.header__menu-list a {
		padding: 10px 15px;
		font-size: 20px;
	}
}
/*/Desktop Styles */
/*/Main menu*/