@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Questrial&family=Source+Sans+Pro:ital,wght@1,600&family=Changa:wght@700&family=Tajawal&display=swap');
/**/

:root{
	--color1: #1b1f25;
	--color2: #FBC02D;
	--menu-shadow: 0px 10px 20px -10px #000;
	--menu-background: #1b1f25c7;
	--menu-mobile-background: linear-gradient(60deg, #1a2531 5%, #292f37) !important;
	--menu-text-color: #ffffff !important;
	--menu-text-color-hover: #FBC02D !important;
	--menu-border: 0px solid !important;
	--menu-accent-color: #FBC02D !important;
	--menu-submenu-background: #0a0c0ee6 !important;
	--gotop-color: #1f3249 !important;
	--gotop-background: #dd9e00 !important;
	--footer-border: solid #ffb600 !important;
	--footer-background: linear-gradient(60deg, #171a1e 5%, #111821) !important;
	--footer-text-color: #d6d6d6 !important;
	--footer-highlight-color: #fff !important;
	--footer-separator-color: #2a2d2f7d !important;
	--footer-paragraph-color: #ffb600 !important;
	--menu-padding: 10px;
	--menu-height: 30px;
	--menu-font-size: 18px;
	--menu-transition: 0.3s ease-out;
	--menu-mobile-shadow: px 0px 63px 0px inset #00000011;
	--footer-border-width: 10px 0px 0px 0px !important;
	/* */
	--swiper-navigation-color: #ffb600;
	--swiper-pagination-color: #ffb600;
}
/**/

body{
	font-family: 'Questrial', 'Tajawal', sans-serif!important;
}

h1, h2, h3, h4{
	font-family: 'Montserrat', 'Changa', sans-serif;
	color: #0e253f;
}
h1.underline::after, h2.underline::after{
    content: '';
    width: 55px;
    height: 2px;
    background: #ffc107;
    margin: 10px auto;
    display: block;
}
@media only screen and (max-width: 700px) {
	h1{
		font-size: 24px;
	}
}
/* header */

#header{
	text-align: center;
	z-index: 2;
	position: relative;
}
#header .container.bar{
    background-image: linear-gradient(60deg, #2b2e33 5%, #1b222d);
    color: #fff;
    font-size: 16px;
    line-height: 30px;
    box-shadow: 0px 0px 10px -3px #000;
}
#header .container.bar>div{
	display:flex;
	height: 30px;
	padding:5px;
	margin: auto;
	transition:0.3s;
}
@media only screen and (min-width: 820px) {
	#header .container.bar>div{
		max-width:800px;
	}
}
@media only screen and (min-width: 1020px) {
	#header .container.bar>div{
		max-width:1000px;
	}
}

#header .container.bar>div .flex{
	flex:1;
}

.hide_mobile{
	margin-inline-end: 5px;
	direction: ltr;
    unicode-bidi: bidi-override !important;
}
@media only screen and (max-width: 700px) {
	#header .hide_mobile,#header .container a.hide_mobile{
		display:none;
	}
}

#header a{
    display: inline-block;
	position: relative;
	padding: 0px 10px;
    color: #fff;
	text-decoration: none;
    transition: 0.2s;
	direction: ltr;
}
#header a:hover{
    color: var(--color2);
	transform: scale(1.2);
}

#header icon{
	vertical-align: middle;
}

#header .container.logo>div{
	height: 110px;
	padding: 10px;
}
#header .container.logo img{
	display: block;
	margin: auto;
	filter: drop-shadow(0px 5px 15px #fff);
}

/* menu */
#menu{
    position: relative;
    z-index: 2;
    height: 0px;
}
nav{
	font-family: 'Source Sans Pro', 'Changa', sans-serif!important;
}
/*@media only screen and (min-width: 701px) {
	#menu{
		height: 0px;
	}
}*/
#menu nav{
	margin: auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	height: 50px;
	transition:0.5s;
}
#menu nav.sticky{
	position: fixed;
	width: 100%;
	top: 0px;
	/* background: #002655d1; */
	/* box-shadow: 0 10px 10px -10px #00000080; */
}
@media only screen and (min-width: 700px) {
	#menu nav.sticky{
		/*-webkit-backdrop-filter: saturate(180%) blur(20px);
		backdrop-filter: saturate(180%) blur(20px);*/
	}
}
#menu nav>ul{
	flex:1;
	border-radius: 5px;
	backdrop-filter: saturate(180%) blur(20px);
}
@media only screen and (min-width: 820px) {
	#menu nav>ul{
		max-width:800px;
	}
}
@media only screen and (min-width: 1020px) {
	#menu nav>ul{
		max-width:1000px;
	}
}
@media only screen and (max-width: 700px) {
	#menu nav>ul{
		background: var(--menu-mobile-background);
	}
}

.menu_only{
	margin:0px 10px;
	vertical-align: text-bottom;
}
@media only screen and (min-width: 701px) {
	.menu_only{
		display:none;
	}
}

@media only screen and (min-width: 701px) {
	#menu nav > ul > li.logo{
		flex: 0;
	}
	#menu nav > ul > li.logo > a {
		display: flex;
		width: 0px;
		height: 50px;
		align-items: center;
		padding: 0px;
		transition: 0.3s;
		border-right: none;
		overflow: hidden;
	}
	#menu nav > ul > li.logo > a::before{
		display: none;
	}
    #menu nav.sticky > ul > li.logo > a {
        width: 100px;
		padding: 0px 10px;
        box-shadow: rgba(0, 0, 0, 0) 0px 0px 10px inset;
    }
}

#menu .logo a{
	height: auto;
	text-align: center;
	direction: ltr;
}
#menu .logo a img,#menu .mobileMenu a img{
	height: 30px;
	padding:0px;
	vertical-align:bottom;
    transition: 0.3s;
	vertical-align: middle;
	filter: invert(1);
}
@media only screen and (max-width: 700px){
	#menu .logo a img{
		height: 60px;
	}
}
#menu .logo a:hover img,#menu .mobileMenu a:hover img{
	opacity: 0.8;
}
#menu .mobileMenu{
	width: 100%;
	backdrop-filter: saturate(180%) blur(20px);
}
#menu .mobileMenu a{
	margin:auto;
	direction: ltr;
}

#menu nav ul ul a{
	text-align: start;
}

nav ul .hover ul {
    box-shadow: 0px 4px 8px -3px #0000006b !important;
}
@media only screen and (max-width: 700px){
	nav ul .expand>ul {
		margin: 10px!important;
		border-radius: 10px;
		overflow: hidden;
		background-color: #00000040!important;
	}
}

nav li li{
	border-top:solid 1px #ffffff12;
	text-wrap: nowrap;
}

@media only screen and (max-width: 820px){
	nav li.lang ul{
		left: 0px;
	}
}

/**/
.page-title{
	display: flex;
	height: 170px;
	/*padding-bottom: 50px;*/
	/* border-bottom: solid 10px #596575; */
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	/*text-shadow: 0px -5px 20px #000, 0px 0px 4px #000;*/
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: -1;
	transition-duration: 0s;
}
.page-title::before,.page-title::after {
    content: ' ';
    display: block;
    position: absolute;
    top: 0px;
    width: 100%;
    height: 390px;
    padding-top: 0px;
    z-index: -1;
    /* background-image: none; */
}
.page-title::before{
	background-image: var(--background-image);
	background-size: cover;
	background-position: center;
	z-index: -2;
	background-color: #e6e8ed;
}
.page-title::after {
    box-shadow: 0px -100px 200px -130px #b1d5ff inset;
    background-image: linear-gradient(0deg, #000000b0 0%, #00000000 50%, #00000000 70%, #0e1b4380) !important;
}
.page-title h1{
	padding-bottom: 30px;
	margin: 0px 10px;
	color: #fff;
	text-shadow: 0px 5px 10px #000, -1px -1px 0 #00000061, 1px -1px 0 #0000004f, -1px 1px 0 #000000ba, 1px 1px 0 #0000007a;
	text-align:center;
	line-height: 1.25em;
}
@media only screen and (max-width: 700px) {
	.page-title{
		height: 120px;
		padding-bottom: 30px;
	}
	.page-title::before, .page-title::after {
		height: 370px;
	}
	.page-title h1{
		padding-bottom: 0px;
	}
}


/**/
#content{
	min-height: 800px;
	margin-top: 50px;
	font-size: 18px;
    color: #222;
}

/**/
.summary{
	display: inline-block;
	padding: 15px;
	border-radius: 3px;
	border-inline-start: solid 2px #FBC02D;
	margin-bottom: 10px;
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
	position: relative;
}
.summary::before {
    content: " ";
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    box-shadow: 0px 0px 40px #00000011 inset;
	z-index: -1;
}
.summary a, .summary p{
    display: block;
	padding: 2px 10px;
	margin: 2px 0px;
    color: var(--color1);
    text-decoration: underline;
}
.summary a:hover {
    text-decoration: none;
}
.summary p{
	text-decoration: none;
}
.summary ul{
	margin: 0px;
}

/**/
#content .page-image{
	float: none;
	margin: auto;
	display: block;
}
@media only screen and (min-width: 550px) {
	#content .page-image{
		float: right;
	}
}

/**/
#content .container{
	margin: auto;
	padding:15px;
	transition:0.3s;
}
@media only screen and (min-width: 820px) {
	#content .container{
		max-width:800px;
	}
}
@media only screen and (min-width: 1020px) {
	#content .container{
		max-width:1000px;
	}
}

/* first */
#content .first{
	height: 20px;
}
#content .first::before{
	content: '';
	width: 100%;
	display: block;
	position: relative;
	top: -70px;
	height: 70px;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSI1MHB4IiB2aWV3Qm94PSIwIDAgMTI4MCAxNDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI2ZmZmZmZiI+PHBhdGggZD0iTTEyODAgMGwtMjYyLjEgMTE2LjI2YTczLjI5IDczLjI5IDAgMCAxLTM5LjA5IDZMMCAwdjE0MGgxMjgweiIvPjwvZz48L3N2Zz4=);
	pointer-events: none;
	z-index: 1;
}
@media only screen and (max-width: 700px) {
	#content .first::before{
		top: -30px;
		height: 30px;
	}
}

/* */
#content .white-top{
	height: 0px;
}
#content .white-top::before{
	content: '';
	width: 100%;
	display: block;
	position: relative;
	transform: rotate(180deg);
	top: 0px;
	height: 70px;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSI1MHB4IiB2aWV3Qm94PSIwIDAgMTI4MCAxNDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI2ZmZmZmZiI+PHBhdGggZD0iTTEyODAgMGwtMjYyLjEgMTE2LjI2YTczLjI5IDczLjI5IDAgMCAxLTM5LjA5IDZMMCAwdjE0MGgxMjgweiIvPjwvZz48L3N2Zz4=);
}
@media only screen and (max-width: 700px) {
	#content .white-top::before{
		height: 30px;
	}
}

.container h1, .container h2{
	text-align: center;
}

#content .no-page-image{
    margin-top: 30px;
}

.section{
	overflow: hidden;
}

/**/

#products{
	background-color: #38403e;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
	text-align: center;
}
#products h1 {
    color: #fff;
    text-shadow: 0 0 10px black;
}
/**/

#featured_products{
	background-color: #38403e;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
	text-align: center;
}
#featured_products h1 {
    color: #fff;
    text-shadow: 0 0 10px black;
}
/**/

#featured_products>div>a{
	display:inline-block;
	position:relative;
	top:0px;
	padding:10px;
	border-radius: 3px;
	margin-top: 20px;
    background: #0e253f;
    color:#fff;
	text-decoration:none;
    font-weight: bold;
	transition:0.2s;
}
#featured_products>div>a:hover{
    background: #04b78e;
	top:-5px;
    box-shadow: 0 10px 10px -10px #00000080;
}
/**/




/**/
#footer{
	position: relative;
	line-height:22px;
	clear: both;
}
#footer>div:first-of-type{
	display: block;
    position: absolute;
    top: -10px;
    width: 100%;
    right: 0px;
    left: 0px;
    bottom: 0px;
    padding: 0px;
    margin: 0px;
	pointer-events: none;
}
#footer>div:first-of-type.animationOut{
    background-color: #000000bb;
    transition: 3s;
}
#footer>div:first-of-type.animationIn{
    background-color: #00000000;
    transition: 3s;
}
#footer div.logo{
    text-align: center;
}
#footer .logo a{
	font-family: 'Source Sans Pro', 'Changa', sans-serif!important;
	font-size:22px;
	direction: ltr;
}
#footer .logo a:hover{
	text-decoration: none;
}
#footer .logo a img{
	vertical-align:middle;
	filter: invert(1);
	opacity: 0.7;
    transition: 0.2s;
}
#footer .logo a:hover img{
	opacity: 1;
}
#footer .logo p{
	color:#aaa;
}

/* djidel */
.djidel{
	padding-top: 40px !important;
}

/* animate */
.scrollAnimate{
	position:relative;
	transition:0.5s;
}
.an1.animationOut, .an2.animationOut, .an3.animationOut{
	opacity:0;
}
.an1.animationIn, .an2.animationIn, .an3.animationIn{
	opacity:1;
}

.an1.animationOut{
	transform: scale(0.6);
}
.an1.animationIn{
	transform: scale(1);
}

.an2{
	translate: none;
    rotate: none;
    scale: none;
	/*perspective 1000px;*/
}
.an2.animationOut{
    transform: perspective(400px) translate3d(0px, 0px, 90px) rotateY(-80deg) scale(1.2, 1.2);
	top: 30px;
}
.an2.animationIn{
    transform: perspective(400px);
	top: 0px;
}

.an3.animationOut{
	top: 50px;
}
.an3.animationIn{
	top: 0px;
	transition-delay:0.3s;
	transition-duration:0.8s;
}

/**/
.center{
	text-align:center;
}

#header .hide_mobile, #header.phone{
	direction:ltr;
	unicode-bidi: bidi-override !important;
}
#footer .phone{
    direction: ltr;
    unicode-bidi: bidi-override !important;
}

/**/
blockquote{
	padding:25px;
	text-align:center;
	quotes:"\201C" "\201D";
	font-size:24px;
	font-style:italic;
	color:#426C84;
	text-shadow:1px 1px 20px rgb(168,192,204);
}
blockquote:before, blockquote:after{
	font-size: 60px;
    font-family: sans-serif;
}
blockquote:before{
	content:open-quote;
}
blockquote:after{
	content:close-quote;
}