/* Mobile Burger Menu CSS */
.burger-menu {
    position: relative;
}

.burger-icon {
    display: block;
    cursor: pointer;
    position: relative;
	margin: 0px 5px 10px 5px;
}

.burger-icon i {
    display: block;
    color: #9AA3B7;
	font-size: 25px;
	margin: 0px 5px;
}

.burger-closer {
	margin-bottom: 20px;
}

.burger-closer i {
	font-size: 3rem;
	font-weight: 100;
	color: #9AA3B7;
	padding: 0px 15px;
}

.slide-menu {
	margin-top: 27px;
    position: fixed;
    top: 0;
    left: -100vw; /* Initially hide the menu off-screen to the left */
    width: 80vw;
    height: 100vh;
    background-color: #1B2431;
    box-shadow: 2px 0px 5px rgba(0,0,0,0.5);
    padding: 20px;
    transition: transform 0.3s ease-in-out, left 0.3s ease-in-out;
    /* Initially transformed to slide off screen */
    transform: translateX(-100%);
	filter: none !important;
	overflow-y: auto;
	overflow-x: hidden;
}

html[lang="ar"] .slide-menu {
	margin-top: 30px;
    position: fixed;
    top: 0;
    right: -100vw; /* Initially hide the menu off-screen to the left */
    width: 80vw;
    height: 100vh;
    background-color: #1B2431;
    box-shadow: 2px 0px 5px rgba(0,0,0,0.5);
    padding: 20px;
    transition: transform 0.3s ease-in-out, right 0.3s ease-in-out;
    /* Initially transformed to slide off screen */
    transform: translateX(100%);
}

html[lang="en-US"] .slide-menu.active {
	transform: translateX(0); /* Slide in to original position */
    left: 0;
}

html[lang="ar"] .slide-menu.active {
	transform: translateX(0); 
	right: -10px;
}

.slide-menu ul {
	margin: 0px !important;
}

.burger-search-bar {
    margin-bottom: 20px;
	background-color: #C3C7D3;
	border-radius: 8px;
}

.burger-search-bar-input {
    width: 100%;
    padding: 10px;
    border: none !important;
	content: "/f002";
}

.burger-search-bar-input::placeholder {
    font-size: 14px; 
}

.menu-items {
    list-style: none;
    padding: 0;
}

.menu-items li {
    margin: 15px 0;
}

.menu-items li a {
    text-decoration: none;
    color: #9AA3B7;
    font-size: 1.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
	font-weight: 100;
}

.slide-menu hr {
	border-top: 1px solid #9AA3B7
}

.submenu li a {
/* 	font-size: 1.2rem !important; */
}

.menu-items li a:hover {
    color: white;
}

i.fab.fa-instagram:hover {
    color: purple;
}

i.fa.fa-youtube-play:hover {
	color: red;
}

.menu-items li .arrow {
    font-size: 14px;
    margin-left: 10px;
	transition: transform 0.3s;
}

.menu-items li .arrow.active {
	transform: rotate(180deg);
}

.menu-items .submenu {
    list-style: none;
    padding: 0px 20px;
    display: none;
    margin-top: 10px;
}

.menu-items .submenu li {
    margin-bottom: 10px;
}

.menu-items .dropdown.active .submenu {
/*     display: block; */
}


.burger-social-icons {
    display: flex;
    gap: 15px;
    bottom: 25vh;
    right: 5%;
 	margin-top: 10vh;
	float: right;
	padding-bottom: 10vh;
}

html[lang="ar"] .burger-social-icons {
	float: left;
}

.burger-social-icons a {
    text-decoration: none;
    color: #707D98; /* Adjust icon color */
}

.burger-social-icons a i {
    font-size: 2rem; /* Adjust icon size */
    transition: color 0.3s ease;
	font-weight: 100;
}

.burger-language-switcher {
	display: flex;
	flex-direction: row;
	margin-top: 10px;
}

.burger-language-switcher p {
	font-size: 1.6rem;
	font-weight: 400;
	color: white;
}

.burger-language-switcher a {
	color: #2B84FF;
 
}

.language-option {
	margin: 0px 10px;
	
}

.filter-active {
	filter: brightness(50%) blur(2px);
}
/* End of Mobile Burger Menu CSS */