@charset "utf-8";
/* CSS Document */

body {
    --header-height: 5vh;
    margin-top: var(--header-height);
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    font-family: 'Muli', sans-serif;
}


.preload * {
    transition: none !important;
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: var(--header-height);
    /*background: #0000B6;*/
	background: hsla(240,100%,36%,0.00);
    display: flex;
	min-height: 5vh;
}

.header__button {
    width: var(--header-height);
    flex-shrink: 0;
    background: none;
    outline: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
}


.nav__links {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100vh;
    width: 75vw;
    background: #ffffff;
    transform: translateX(-75vw);
    transition: transform 0.3s;
	overflow: scroll;
}

.nav--open .nav__links {
    transform: translateX(0);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
	z-index: 120;
	
}

.nav__link {
    display: flex;
    align-items: center;
    color: #666666;
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    padding: 12px 15px;
    background: transform 0.3s;
	z-index: 120;
}

.nav__link > i {
    margin-right: 15px;
	z-index: 120;
}

.nav__link--active {
    color: #0000B6;
	
}

.nav__link--active,
.nav__link:hover {
    background: #AAAAAA;
}

.nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s;
	z-index: 12;
}

.nav--open .nav__overlay {
    visibility: visible;
    opacity: 1;
	z-index: 12;
}


.nav__text {
    font-size: calc(2rem + 2.5vw);
    font-family: var(--font);
    margin: 0;
    padding: 0;
    line-height: 1.2;
    text-align: center;
    z-index: 99;
}

.nav__arabic-text {
    display: block;
    /*align-self: flex-end;*/
    font-size: calc(1rem + 1.5vw);
    font-family: var(--font-arabic);
    margin-top: 0.4em;
    direction: rtl;
    right: 0px;
    unicode-bidi: bidi-override;
}

#btnNav {
    z-index: 144;
}



.NaviWhiteL {	
	font-size: 5.0vw;
	text-shadow: 2px 2px 2px rgba(23,23,23,1.00);
	font-family: Tahoma, Geneva, sans-serif;
	color: #FFF;
}

.NaviWhiteLAR {	
	font-size: 5.5vw;
	text-shadow: 2px 2px 7px rgba(50, 50, 50, 1);
	font-family: Tahoma, Geneva, sans-serif;
	color: #FFF;
	direction: rtl;
}

.NaviGreyL {	
	font-size: 5.0vw;
	text-shadow: 1px 1px 1px rgba(7,7,7,1.00);
	font-family: Tahoma, Geneva, sans-serif;
	color: #AAAAAA;
}
