.app-header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10;
	background: linear-gradient(
		90.18deg,
		rgba(179, 201, 188, 0.99) 1.71%,
		rgba(99, 127, 125, 0.99) 73.33%
	);

	border-radius: 0 0 15px 15px;
}

.app-header-box {
	display: flex;
	align-items: center;
	padding: 15px 0;
}

.app-header-logo {
	max-width: 50px;
}

.app-header-logo-box {
	margin-right: 45px;
}

.app-header-logo {
	min-width: 60px;
}

.app-header-menu {
	display: flex;
	align-items: center;
	gap: 65px;
}

.app-header-manu__item {
	padding: 5px;
	position: relative;
}

.app-header-manu__link {
	font-family: "Rubik", sans-serif;
	font-weight: 500;
	font-size: 16px;
	text-decoration: none;
	color: #fff;
	transition: 0.3s;
	background: none;
	border: none;
	position: relative;
	/* display: flex;
	gap: 5;
	align-items: center; */
}

.app-header-manu__link:not(button):hover {
	text-decoration: underline;
}

.app-header-action-box {
	margin-left: auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	position: relative;
}

.app-header-search-box {
	margin-right: 35px;
}

.app-header-link-box {
	display: flex;
	align-items: center;
	gap: 25px;
}

.app-header-mob-burger {
	background: none;
	border: none;
}

.app-menu-dropdown {
	position: absolute;
	left: 0;
	padding: 10px;
	top: calc(100% + 15px);
	width: 100%;
	border-radius: 0 0 15px 15px;
	background: #fff;
	box-shadow: 0px 1.85px 3.15px 0px #00000004, 0px 8.15px 6.52px 0px #00000007,
		0px 20px 13px 0px #00000009, 0px 38.52px 25.48px 0px #0000000b,
		0px 64.81px 46.85px 0px #0000000e, 0px 100px 80px 0px #00000012;

	display: flex;
	flex-direction: column;
	gap: 10px;
	display: none;
	z-index: 9;
}

.app-menu-dropdown.app-menu-dropdown--menu {
	top: calc(100% + 20px);
}

.app-header-action-box.open .app-menu-dropdown,
.app-header-manu__item.open .app-menu-dropdown {
	display: flex;
}

.app-menu-dropdown__item {
}

[dir="rtl"] .app-menu-dropdown__item {
    text-align: right;
}

.app-menu-dropdown__link {
	font-size: 15px;
	color: #000;
	text-decoration: none;
}

.app-menu-dropdown__link:hover {
	text-decoration: underline;
}

.app-menu-dropdown.app-menu-dropdown--lg {
	width: 300px;
}

@media (max-width: 1200px) {
	.app-header-logo-box {
		margin-right: 30px;
	}

	.app-header-menu {
		gap: 20px;
	}
	.app-header-manu__link {
		font-size: 14px;
	}
}


/* language  */
.ui-language {
	position: relative;
	display: inline-block;
}

.ui-language__button {
	background: none;
	border: none;
	display: flex;
	align-items: center;
	padding: 4px;
	gap: 5px;
}

.ui-language__button-icon {
}

.ui-language-list {
	display: none;
	position: absolute;
	border-radius: 15px;
	background: #fff;
	top: 100%;
	padding: 10px;
}

.ui-language--open .ui-language-list {
	display: block;
}

.ui-language-list__item {
	margin-bottom: 7px;
}

.ui-language-list__item:last-child {
	margin-bottom: 0;
}

.ui-language-list__link {
	text-decoration: none;
	display: flex;
	flex-direction: row;
	gap: 10px;
	color: #303533;
	transition: 0.3s;
}

.ui-language-list__link:hover {
	color: red;
}

.ui-language-list__link-name {
	font-size: 14px;
}

.ui-language-list__link-icon {
	max-width: 22px;
}
/* language */

@media (max-width: 768px) {
	.ui-hide-on-mb {
		display: none;
	}

	.app-header-logo-box {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		margin-right: 0;
	}

	.app-header-menu,
	.app-header-action-box {
		display: none;
	}

	.app-header.app-header--mob-open .app-header-logo-box {
		margin-bottom: 20px;
	}

	.app-header.app-header--mob-open .app-header-box {
		flex-direction: column;
	}

	.app-header.app-header--mob-open .app-header-menu {
		display: flex;
		flex-direction: column;
		gap: 15px;
		margin-bottom: 20px;
	}

	.app-header.app-header--mob-open .app-header-action-box {
		display: flex;
		flex-direction: column;
		margin-left: 0;
	}

	.app-header.app-header--mob-open .app-header-search-box {
		margin-right: 0;
		margin-bottom: 20px;
	}

	.app-menu-dropdown.app-menu-dropdown--lg {
		width: 100%;
	}
}
