@charset "utf-8";
 /*CSS Document */


body {
    font-family: 'Tajawal';
	padding-top: 60px;
}
@media (max-width: 979px){
	body{
		padding-top: 0px;
	}
}
p {
  	font-family: 'Tajawal';
}
h1 {
  	font-family: 'Balsamiq Sans'; 
	color: white; 
	font-size: 60px; 
	text-shadow: 2px 2px 4px #000000;
}
h4 {
  	font-family: 'Tajawal';
}
h5 {
  	font-family: 'Balsamiq Sans'; 
	color: white; 
	font-size: 45px; 
	*text-shadow: 2px 2px 10px #000000;
}
.led-text {
  font-size: 35px;
  font-family: 'Balsamiq Sans';
  color: white;
  text-shadow:
    0 0 7px #fff,
    0 0 10px #fff,
    0 0 21px #e500c8,
    0 0 42px #e500c8,
    0 0 82px #e500c8,
    0 0 92px #e500c8,
    0 0 102px #e500c8,
    0 0 151px #e500c8;
}
.led-textyel {
  font-size: 25px;
  font-family: 'Balsamiq Sans';
  color: white;
  text-shadow:
    0 0 7px #808080,
    0 0 10px #fff,
    0 0 21px #FFFF00,
    0 0 42px #FFFF00,
    0 0 82px #FFFF00,
    0 0 92px #FFFF00,
    0 0 102px #FFFF00,
    0 0 151px #FFFF00;
}

/*--------------------------------------------
Turn Scrollbar to PIANO. WHAT?!! Party!!!!!
--------------------------------------------*/
body::-webkit-scrollbar {
  width: 22px;               /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: white;        /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
	background-image: url('../Images/VertP.png');
     /* color of the scroll thumb */
  border-radius: 20px;       /* roundness of the scroll thumb */
  border: 2.6px solid #00ab8e;  /* creates padding around scroll thumb */
}
/*That's how you turn Scrollbar to PIANO. HA HAAAAA!*/


/*
h5 {
  	font-family: 'Balsamiq Sans'; 
	color: white; 
	font-size: 60px; 
	text-shadow: 2px 2px 4px #000000;
}/*
small {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
}

h1 {
  text-align: center;
  padding: 50px 0;
  font-weight: 800;
  margin: 0;
  letter-spacing: -1px;
  color: inherit;
  font-size: 40px;
}

h2 {
  text-align: center;
  font-size: 30px;
  margin: 0;
  font-weight: 300;
  color: inherit;
  padding: 50px;
}

.center {
  text-align: center;
}

section {
  height: 100vh;
}

/* NAVIGATION 
nav {
  width: 100%;
  margin: 0 auto;
  background: #151414;
  padding: 50px 0;
  box-shadow: 0px 5px 0px #dedede;
}
nav ul {
  list-style: none;
  text-align: center;
}
nav ul li {
  display: inline-block;
}
nav ul li a {
  display: block;
  padding: 15px;
  text-decoration: none;
  color: #red;
  font-weight: 800;
  text-transform:none;
  margin: 0 10px;
}
nav ul li a,
nav ul li a:after,
nav ul li a:before {
  transition: all .5s;
}
nav ul li a:hover {
  color: #555;
}
.navbar-light .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        color: rgb(254, 150, 0);
        text-decoration: underline;
    }
*/

/* stroke 
nav.stroke ul li a,
nav.fill ul li a {
  position: relative;
}
nav.stroke ul li a:after,
nav.fill ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #aaa;
  height: 1px;
}
nav.stroke ul li a:hover:after {
  width: 100%;
}

nav.fill ul li a {
  transition: all 2s;
}

nav.fill ul li a:after {
  text-align: left;
  content: '.';
  margin: 0;
  opacity: 0;
}
nav.fill ul li a:hover {
  color: #fff;
  z-index: 1;
}
nav.fill ul li a:hover:after {
  z-index: -10;
  animation: fill 1s forwards;
  -webkit-animation: fill 1s forwards;
  -moz-animation: fill 1s forwards;
  opacity: 1;
}*/



/* SHIFT */
/*
nav.shift ul li a {
  position:relative;
  z-index: 1;
}
nav.shift ul li a:hover {
  color: white;
}
nav.shift ul li a:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  content: '.';
  color: transparent;
  background: pink;
  visibility: none;
  opacity: 0;
  z-index: -1;
}
nav.shift ul li a:hover:after {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

nav .nav-link {
  position:relative;
  flex:1;
  line-height:70px;
  text-align:center;
}
nav .nav-link a {
  position:relative;
  color:#f5f5f5;
  font-size:20px;
	
  text-decoration:none;
  z-index: -1;
}
nav .nav-link:before {
  content:"";
  position:absolute;
  top:0px;
  left:0px;
  width:100%;
  height:0%;
  background:pink;
  z-index:-1;
  transition:all 300ms ease-in-out;
}
nav .nav-link:after {
  content:"";
  position:absolute;
  top:0px;
  left:0px;
  width:100%;
  height:0%;
  background:pink;
  transition:all 300ms ease-in-out;
}
nav .nav-link:hover {
  cursor:pointer;
}
nav .nav-link:hover:before {
  height:100%;
  filter:blur(30px);
}
nav .nav-link:hover:after {
  height:100%;
}
.dropdown-menu {
  min-width:250px;
}

/* Keyframes 
@-webkit-keyframes fill {
  0% {
    width: 0%;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  100% {
    width: 100%;
    height: 100%;
    background: #333;
  }
}
*/
/*--------------------------------------------------------------
Menus
--------------------------------------------------------------*/

.main-navigation {
	display: block;
	float: left;
	clear: both;
	width: 100%;
	padding: 0 30px;
	/*border-top: 3px solid #444;*/
	border-right: 1px solid #ebebeb;
	/*border-bottom: 3px solid #444;*/
	border-left: 1px solid #ebebeb;
	background-color: #fff;
	font-family: 'Balsamiq Sans';
	font-weight: 300;
}

.main-navigation ul {
	margin: 0;
	padding-left: 0;
	list-style: none;
}

.main-navigation li {
	float: left;
	position: relative;
	margin: -3px 0 -1px;
	padding: 15px;
	font-size: 16px;
	font-weight: 400;
	/*text-transform: uppercase;*/
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.main-navigation a {
	display: block;
	position: relative;
	z-index: 11;
	color: #505559;
	text-decoration: none;
}
.main-navigation ul ul {
	float: left;
	position: absolute;
	z-index: 99999;
	top: 100%;
	left: -999em;
	background-color: #FFFFFF;
	-webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

.main-navigation ul ul ul {
	top: 0;
	left: -999em;
}

.main-navigation ul ul a {
	width: 200px;
	color: #272e37;
}

.main-navigation ul ul li {
	border-bottom: 1px solid #fff;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-weight: 300;
	/*text-transform: none;*/
}
.main-navigation ul ul li:last-of-type {
	border: 0;
}
.main-navigation ul ul li:hover {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.main-navigation li:hover > a,
.main-navigation li:hover::before,
.main-navigation ul ul li::before {
	color: #fff;
}

.main-navigation ul li:hover > ul {
	left: 0;
}

.main-navigation ul ul li:hover > ul {
	left: 100%;
}

.main-navigation li::before {
	float: left;
	margin-right: 5px;
	color: #1e262d;
	font-family: Fontawesome;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}
.slicknav_nav li:hover {
	background-color: transparent;
}
.slicknav_nav li::before {
	display: none;
}
.main-navigation a {
	float: left;
}
.main-navigation ul ul a {
	float: none;
}
.menu-fallback {
	font-size: 20px;
	line-height: 50px;
}

.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	overflow: hidden;
	margin: 0;
	padding: 30px;
	border-right: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
	border-left: 1px solid #ebebeb;
	background-color: #fff;
}
.custom-menu-item-1:hover,
.custom-menu-item-1 .sub-menu {
	background-color: #ff147a;
}
.custom-menu-item-2:hover,
.custom-menu-item-2 .sub-menu {
	background-color: #ffdc2b;
}
.custom-menu-item-3:hover,
.custom-menu-item-3 .sub-menu {
	background-color: #00d491;
}
.custom-menu-item-4:hover,
.custom-menu-item-4 .sub-menu {
	background-color: #0091ff;
}
.custom-menu-item-0:hover,
.custom-menu-item-0 .sub-menu {
	background-color: #bf6bff;
}
.custom-menu-item-1 {
	border-top: 3px solid #ff147a;
}
.custom-menu-item-2 {
	border-top: 3px solid #ffdc2b;
}
.custom-menu-item-3 {
	border-top: 3px solid #00d491;
}
.custom-menu-item-4 {
	border-top: 3px solid #0091ff;
}
.custom-menu-item-0 {
	border-top: 3px solid #bf6bff;
}

.nav-tabs > li {
    float:none;
    display:inline-block;
    zoom:1;
}


.nav-tabs > a {
	text-align:center;
  color: #272e37;
  font-family: 'Tajawal'; !important;
  font-size: 3em ;
  padding: 3px 3px 3px ;
}
/*--------------------------------------------------------------
Page/posts navigation
--------------------------------------------------------------*/S
Keyframes 
@-webkit-keyframes circle {
  0% {
    width: 1px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 1px;
    z-index: -1;
    background: #eee;
    border-radius: 100%;
  }
  100% {
    background: #aaa;
    height: 5000%;
    width: 5000%;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 0;
  }
}




@media all and (min-width: 992px) {
	.navbar .nav-item .dropdown-menu{  display:block; opacity: 0;  visibility: hidden; transition:.3s; margin-top:0;  }
	.navbar .nav-item:hover .nav-link{ color: #fff;  }
	.navbar .dropdown-menu.fade-down{ top:80%; transform: rotateX(-75deg); transform-origin: 0% 0%; }
	.navbar .dropdown-menu.fade-up{ top:180%;  }
	.navbar .nav-item:hover .dropdown-menu{ transition: .3s; opacity:1; visibility:visible; top:100%; transform: rotateX(0deg); }
}		
/* ============ desktop view .end// ============ */

/* ============ Carouse// ============*/ 


/*
@media(max-width:768px){
.carousel .carousel-inner{
//prevent it from adding a white space between carousel and container elements
height:500px;
 }
}
.carousel-caption {
	bottom: 220px;
}
.carousel-caption h5 {
	font-size: 45px;
	color: pink;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-top: 25px;
}
.carousel-caption p {
	width: 60%;
	margin: auto;
	font-size: 18px;
	line-height: 1.9;
}
.carousel-caption a {
	text-transform: uppercase;
	text-decoration: none;
	background: white;
	padding: 10px 30px;
	display: inline-block;
	color: #000;
	margin-top: 15px;
}
.carousel-caption a:hover {
	background: pink;
	color: white;
  	text-decoration-color: white;
}*/

 /* ============ Parallax start// ============ */
.parallax {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
}
.animation {
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-play-state: running;
}
@keyframes slide-up {
    from {opacity:0; top:100px;}
    to {opacity:1; top:0;}
}
.animation_slide-up {
    animation-name: slide-up;
}
@keyframes slide-down {
    from {opacity:0; bottom:100px;}
    to {opacity:1; bottom:0;}
}
.animation_slide-down {
    animation-name: slide-down;
}
@keyframes slide-left {
    from {opacity:0; left:100px;}
    to {opacity:1; left:0;}
}
.animation_slide-left {
    animation-name: slide-left;
}
@keyframes slide-right {
    from {opacity:0; right:100px;}
    to {opacity:1; right:0;}
}
.animation_slide-right {
    animation-name: slide-right;
}
@keyframes flip-x {
    from {opacity:0;transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -180deg);}
    to {opacity:1;transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);}
}
.animation_flip-x {
    backface-visibility: visible;
    animation-name: flip-x;
}
@keyframes flip-y {
    from {opacity: 0;transform: perspective(400px) rotate3d(1, 0, 0, 90deg);}
    to {opacity:1;transform: perspective(400px);}
}
.animation_flip-y {
    backface-visibility: visible !important;
    animation-name: flip-y;
}
@keyframes zoom {
    from {opacity: 0;transform: scale3d(0.3, 0.3, 0.3);}
    to {opacity: 1;}
}
.animation_zoom {
    animation-name: zoom;
}
.list_item:last-child .index .index-divider {
			border-width: 0;
		}
		.list_item .index {
			text-align: center;
			color: #ffffff;
		}
		.list_item .index .index-text {
			display: inline-flex;
			border: 1px solid;
			width: 52px;
			height: 52px;
			justify-content: center;
			align-items: center;
			margin-bottom: 12px;
			font-size: 26px;
			font-weight: bold;
		}
		.list_item .index .index-divider {
			position: absolute;
			top: 27px;
			left: calc(50% + 52px);
			width: calc(100% - 112px);
			height: 1px;
			border-top: 1px solid;
		}
		@media (max-width: 768px) {
			.list_item .index {
				float:left;
				margin-right: 20px;
				height: 100%;
				width: auto;
			}
			.list_item .index .index-divider {
				position: absolute;
				top: 75px;
				left: 40px;
				width: 1px;
				height: calc(100% - 70px);
				border-right: 1px solid;
				border-top: 0;
			}
			.list_item {
				margin-bottom: 30px;
			}
			.list_item .card {
				float: left;
				width: calc(100% - 80px);
			}
		}

.card { background-color: rgba(245, 245, 245, .4); 
	opacity: .4;
}
.cardBk { background-color: rgba(0, 0, 0, .4); 
	opacity: .4;
}

/* Player */
#mobile-box {
  width: 360px; }


.gradient-card {
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 1.0)), color-stop(100%, rgba(0, 0, 0, 1.0)));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 1.0) 0%, rgba(0, 0, 0, 1.0) 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(0, 0, 0, 1.0) 0%, rgba(0, 0, 0, 1.0) 100%);0
  /* Opera 11.10+ */
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 1.0)), to(rgba(0, 0, 0, 1.0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1.0) 0%, rgba(0, 0, 0, 1.0) 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#002f4b', endColorstr='#00000000', GradientType=0);
  /* IE6-9 */ }

/*.card {
  -webkit-border-radius: 10px;
  border-radius: 10px; }

.card .view {
  -webkit-border-top-left-radius: 10px;
  border-top-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  border-top-right-radius: 10px; }*/

/*.card h5 a {
  color: #0d47a1;
}
.card h5 a:hover {
  color: #072f6b;
}

#pButton {
  float: left; }

#timeline {
  width: 90%;
  height: 2px;
  margin-top: 20px;
  margin-left: 10px;
  float: left;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.3); }

#pButton {
  margin-top: 12px;
  cursor: pointer; }

#playhead {
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-top: -3px;
  background: black;
  cursor: pointer; }
*/
/* Art Gallery */
img{
	max-width: 100%;
}
.gallery{
	background-color: #FFFFFF;
	padding: 80px 0;
}
.gallery img{
	background-color: #ffffff;
	padding: 15px;
	width: 100%;
	box-shadow: 0 0 15px rgba(0,0,0,0.3);
	cursor: pointer;
}
#gallery-modal .modal-img{
	width: 100%;
}