.fab-container {
	position: fixed;
	bottom: 50px;
	right: 35px;
	z-index: 999;
	cursor: pointer;
  }

  .navbar-light .navbar-nav .nav-link
  {
	  color: #01ab99;
  }

  .navbar-global {
	background-color: indigo;
  }
  
  .navbar-global .navbar-brand {
	color: white;
  }
  
  .navbar-global .navbar-user > li > a
  {
	color: white;
  }
  
  .navbar-primary {
	background-color: transparent;
	bottom: 0px;
	right: 0px;
	position: fixed;
	top: 400px;
	width: 200px;
	z-index: 8;
	overflow: hidden;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
  }
  
  .navbar-primary.collapsed {
	width: 60px;
  }
  
  .navbar-primary.collapsed .glyphicon {
	font-size: 22px;
  }
  
  .navbar-primary.collapsed .nav-label {
	display: none;
  }
  
  /* .btn-expand-collapse {
	  position: absolute;
	  display: block;
	  left: 0px;
	  bottom:0;
	  width: 100%;
	  padding: 8px 0;
	  border-top:solid 1px #0000;
	  color: grey;
	  font-size: 20px;
	  text-align: center;
  }
  
  .btn-expand-collapse:hover,
  .btn-expand-collapse:focus {
	  background-color: #222;
	  color: white;
  }
   */
  .btn-expand-collapse:active {
	  background-color: #111;
  }
  
  .navbar-primary-menu,
  .navbar-primary-menu li {
	margin:0; padding:0;
	list-style: none;
  }
  
  .navbar-primary-menu li a {
	display: block;
	padding: 10px 18px;
	text-align: left;
	border-bottom:solid 1px #11b3ab;
	color: #000;
  }
  
  .navbar-primary-menu li a:hover {
	background-color: #01ab99;
	text-decoration: none;
	color: black;
  }
  
  .navbar-primary-menu li a .glyphicon {
	margin-right: 6px;
  }
  
  .navbar-primary-menu li a:hover .glyphicon {
	color: orchid;
  }
  



  

  #mainNav .navbar-toggler
  {
	  background-color: #01ab99;
  }
  
a
{
	color: white ;
}

  .fab-icon-holder {
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background: #f88827;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  }
  
  .fab-icon-holder:hover {
	opacity: 0.8;
  }
  
  .fab-icon-holder i {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-size: 25px;
	color: #ffffff;
  }
  
  .fab {
	width: 60px;
	height: 60px;
	background: #f88827;
  }
  
  .fab-options {
	list-style-type: none;
	margin: 0;
	position: absolute;
	bottom: 70px;
	right: 0;
	opacity: 0;
	transition: all 0.3s ease;
	transform: scale(0);
	transform-origin: 85% bottom;
  }
  
  .fab:hover+.fab-options,
  .fab-options:hover {
	opacity: 1;
	transform: scale(1);
  }
  
  .fab-options li {
	display: flex;
	justify-content: flex-end;
	padding: 5px;
  }
  
  .fab-label {
	padding: 2px 5px;
	align-self: center;
	user-select: none;
	white-space: nowrap;
	border-radius: 3px;
	font-size: 16px;
	background: #666666;
	color: #ffffff;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	margin-right: 10px;
  }




/*
PURE RESPONSIVE CSS3 SLIDESHOW GALLERY by Roko C. buljan
http://stackoverflow.com/a/34696029/383904
*/

.CSSgal {
	position: relative;
	overflow: hidden;
	height: 100%; /* Or set a fixed height */
}

/* SLIDER */

.CSSgal .slider {
	height: 100%;
	white-space: nowrap;
	font-size: 0;
	transition: 0.8s;
}

/* SLIDES */

.CSSgal .slider > * {
	font-size: 1rem;
	display: inline-block;
	white-space: normal;
	vertical-align: top;
	height: 100%;
	width: 100%;
	background: none 50% no-repeat;
	background-size: cover;
}

/* PREV/NEXT, CONTAINERS & ANCHORS */

.CSSgal .prevNext {
	position: absolute;
	z-index: 1;
	top: 50%;
	width: 100%;
	height: 0;
}

.CSSgal .prevNext > div+div {
	visibility: hidden; /* Hide all but first P/N container */
}

.CSSgal .prevNext a {
	background: #00ab99;
	position: absolute;
	width:       60px;
	height:      60px;
	line-height: 60px; /* If you want to place numbers */
	text-align: center;
	opacity: 0.7;
	-webkit-transition: 0.3s;
					transition: 0.3s;
	-webkit-transform: translateY(-50%);
					transform: translateY(-50%);
	left: 0;
}
.CSSgal .prevNext a:hover {
	opacity: 1;
}
.CSSgal .prevNext a+a {
	left: auto;
	right: 0;
}

/* NAVIGATION */

.CSSgal .bullets {
	position: absolute;
	z-index: 2;
	bottom: 0;
	padding: 10px 0;
	width: 100%;
	text-align: center;
}
.CSSgal .bullets > a {
	display: inline-block;
	width:       30px;
	height:      30px;
	line-height: 30px;
	text-decoration: none;
	text-align: center;
	background: rgba(255, 255, 255, 1);
	-webkit-transition: 0.3s;
					transition: 0.3s;
}
.CSSgal .bullets > a+a {
	background: rgba(255, 255, 255, 0.5); /* Dim all but first */
}
.CSSgal .bullets > a:hover {
	background: rgba(255, 255, 255, 0.7) !important;
}

/* NAVIGATION BUTTONS */
/* ALL: */
.CSSgal >s:target ~ .bullets >* {      background: rgba(255, 255, 255, 0.5);}
/* ACTIVE */
#s1:target ~ .bullets >*:nth-child(1) {background: rgba(255, 255, 255,   1);}
#s2:target ~ .bullets >*:nth-child(2) {background: rgba(255, 255, 255,   1);}
#s3:target ~ .bullets >*:nth-child(3) {background: rgba(255, 255, 255,   1);}
#s4:target ~ .bullets >*:nth-child(4) {background: rgba(255, 255, 255,   1);}
#s5:target ~ .bullets >*:nth-child(5) {background: rgba(255, 255, 255,   1);}

/* More slides? Add here more rules */

/* PREV/NEXT CONTAINERS VISIBILITY */
/* ALL: */
.CSSgal >s:target ~ .prevNext >* {      visibility: hidden;}
/* ACTIVE: */
#s1:target ~ .prevNext >*:nth-child(1) {visibility: visible;}
#s2:target ~ .prevNext >*:nth-child(2) {visibility: visible;}
#s3:target ~ .prevNext >*:nth-child(3) {visibility: visible;}
#s4:target ~ .prevNext >*:nth-child(4) {visibility: visible;}
#s5:target ~ .prevNext >*:nth-child(5) {visibility: visible;}

/* More slides? Add here more rules */

/* SLIDER ANIMATION POSITIONS */

#s1:target ~ .slider {transform: translateX(   0%); -webkit-transform: translateX(   0%);}
#s2:target ~ .slider {transform: translateX(-100%); -webkit-transform: translateX(-100%);}
#s3:target ~ .slider {transform: translateX(-200%); -webkit-transform: translateX(-200%);}
#s4:target ~ .slider {transform: translateX(-300%); -webkit-transform: translateX(-300%);}
#s5:target ~ .slider {transform: translateX(-400%); -webkit-transform: translateX(-400%);}

/* More slides? Add here more rules */


/* YOU'RE THE DESIGNER! 
   ____________________
   All above was mainly to get it working :)
   CSSgal CUSTOM STYLES / OVERRIDES HERE: */

.CSSgal{
	color: #fff;	
	text-align: center;
	height: 80vh;
}
.CSSgal .slider h2 {
	margin-top: 40vh;
	font-weight: 200;
	letter-spacing: -0.06em;
	word-spacing: 0.2em;
	font-size: 3em;
}
.CSSgal a {
	border-radius: 50%;
	margin: 0 3px;
	color: rgba(0,0,0,0.8);
	text-decoration: none;
}






/* 
  .hidden {
	display: none;
  }
  
  .container2 {
	margin: 0;
	max-width: 750px;
	margin:10vh auto 0 auto;
  }
  
  .container2 > div {
	display: inline-block;
  }
  
  #slideshow {
	margin: 0;
	  position: relative;
	  width: 620px;
	height: 250px;
  }
  
  #slideshow > div {
	  position: absolute;
	  top: 0; 
	  left: 0; 
	  right: 0; 
	  bottom: 0; 
  }
  
  #slideshow img {
	  width: 100%;
	margin: 0;
	border: solid 1px #283593;
  }
  
  #a2 {
	width: 40px;
	font-size: 64px;
	display: inline-block;
	color: #9FA8DA;
	text-decoration: none;
	text-align: center;
	vertical-align: middle;
	line-height: 400px;
	font-weight: bold;
	padding: 0 10px;
  } */



  


#eventspage
{
	padding-top: 15%;
}


form .submit
{
	background-color: rgb(0, 171, 153);
	color: #fff;
}



#box-1 {
  height: 100vh;
  width: 100%;
  background-image: url(../../assets/img/i3.png);
  background-size: cover;
  display: table;
  background-attachment: fixed;
}

#box-2 {
  height: 100vh;
  width: 100%;
  background-image: url(../../assets/img/i2.png);
  background-size: cover;
  display: table;
  background-attachment: fixed;
}

.fixed-top
{
	position: relative;
}

html {
	scroll-behavior: smooth;
	/* overflow-x: hidden; */
  }

  /* body
  {
	  overflow-x: hidden;
	  position: relative;
  } */

  @media screen and (max-width: 500px) {
	  html
	{
		padding-right: 10px;
		padding-left: 10px;
		overflow-x: hidden;
	}
	#logo
	{
		margin-left: 0;
	}
  }

  @media screen and (min-width: 501px) {
	  #logo
	  {
		  margin-left: 20%;
	  }
  }

  
  #scroll-to-top {
	background-color: rgba(19,20,25,0.6);
	width: 44px;
	height: 40px;
	position: fixed;
	bottom: 0;
	right: 40px;
	border-radius: 5px 5px 0 0;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	text-align: center;
  }
  
  #scroll-to-top i {
	color: #fff;
	font-size: 22px;
	line-height: 44px;
  }
  
  

/* popup2 */
/* popup */
.box {
	width: 40%;
	margin: 0 auto;
	background: rgba(255,255,255,0.2);
	padding: 35px;
	border: 2px solid #fff;
	border-radius: 20px/50px;
	background-clip: padding-box;
	text-align: center;
  }
  .overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	transition: opacity 500ms;
	visibility: hidden;
	opacity: 0;
  }
  .overlay:target {
	visibility: visible;
	opacity: 1;
	z-index: 9999;
  }
  .popup2 {
	margin: 0px auto;
	padding: 30px;
	background: #fff;
	border-radius: 5px;
	width: 52%;
	/* height: 100%; */
	position: relative;
	transition: all 5s ease-in-out;
  }
  
  .popup2 h2 {
	margin-top: 0;
	margin-bottom: 25px;
	color: #112c44;
	font-family: Tahoma, Arial, sans-serif;
  }
  .popup2 .close {
	position: absolute;
	top: 0px;
	right: 30px;
	transition: all 200ms;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	color: #112c44;
  }
  .popup2 .close:hover {
	color: #06D85F;
  }
  .popup2 .content {
	max-height: 30%;
	overflow: auto;
  }
  
  @media screen and (max-width: 700px){
	/* .box{
	  width: 70%;
	}
	.popup2{
	  width:100%;
	} */
	#menuDesktop
	{
		display: none;
	}
  }
  @media screen and (min-width: 701px){
	/* .box{
	  width: 70%;
	}
	.popup2{
	  width:100%;
	} */
	#menuMobile
	{
		display: none;
	}
  }
  




@font-face {
	font-family: 'CaboArabic';
	src: url(/assets/fonts/ArabicCaboFont.otf) format('opentype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'EffraBold';
	src: url(/assets/fonts/Effra-Bold.otf) format('opentype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'EffraLight';
	src: url(/assets/fonts/Effra-Light.otf) format('opentype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'EffraRegular';
	src: url(/assets/fonts/Effra-Regular.otf) format('opentype');
	font-weight: normal;
	font-style: normal;
}

#arabicText
{
  font-family: "CaboArabic", serif ;
  direction:rtl;
  font-size: calc(5vmin + 4vmax);
  margin-bottom: 15%;
  margin-top: 0;
  /* font-size: 40px; */
}



#mainNav .navbar-nav .nav-item .nav-link {
  font-size: 22px;
  font-weight: 400;
  padding: .75em 0;
  letter-spacing: 1px;
  color: #00ab99;
  font-family: "EffraRegular";
}



.bg-dark
{
  background-color: white !important;
}
#box-3 {
  height: 100vh;
  width: 100%;
  background-image: url(../../assets/img/i7.png);
  background-size: cover;
  display: table;
  background-attachment: fixed;
}
/* 
h1 {
  font-family: arial black;
  font-size: 50px;
  color: white;
  margin: 0px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
} */

*,*:before,*:after {box-sizing:inherit;margin:0; padding:0; border:0 none; position: relative;}
html {
	background: #fff;
	box-sizing:border-box;
	font-family: 'Vollkorn', sans-serif;
	font-size: 1rem;
	color: #fff;
}

@media screen and (min-width: 992px) {
	body > article {
		display: flex;
		flex-wrap: wrap;
	}
	figurenew {
		background: #eee;
		width: calc( 50% + 1px);
		height: 100vh;
		margin: 0 auto 10vh 0;
		position: sticky;
		top: 0;
		overflow: hidden;
		box-shadow: 4px -4px 8px rgba(0,0,0,.4);
			}

	figurenew:nth-of-type(2n)::after {
		right: 45%;
		left: 5vmin;
	}
	section {
		background: #efefef;
		width: calc(50% + 1px);
		height: 100vh;
		margin: 0 0 10vh auto;
		position: sticky;
		top: 0;
		overflow: hidden;
		padding: 5vmin;
		box-shadow: -4px -4px 8px rgba(0,0,0,.4);
			}
	figurenew:nth-of-type(1),
	section:nth-of-type(1) {
		margin: 0 0 10vh 0;
		width: 50%;
			}
	figurenew:nth-of-type(2n) {
		margin: 0 0 10vh auto;
		box-shadow: -4px -4px 8px rgba(0,0,0,.4);
			}
	section:nth-of-type(2n) {
		margin: 0 auto 10vh 0;
		box-shadow: 4px -4px 8px rgba(0,0,0,.4);
		}
	figurenew:last-of-type,
	section:last-of-type {
		margin-bottom: 0;
	}
	section::before {
		background: inherit;
		z-index: 1;
		content: '';
		position: absolute;
		top: 50%;
		left:0;
		width: 7vmin;
		height: 7vmin;
		transform: translate(calc(-50% + 1px), -50%) rotate(-45deg);
		clip-path: polygon(-15% -15%, 110% 0%, 0% 110%);
		box-shadow: -4px -2px 8px rgba(0,0,0,.4);
		border-radius: 1.5vmin 0 0 0;

		display: none;
	}
	section:nth-of-type(2n)::before {
		left:auto;
		right: 0;
		transform: translate(calc(50% - 1px), -50%) rotate(-45deg) scale(-1);
	}
	section::after {
		content: '';
		position: absolute;
		top: 5vmin;
		right: 45%;
		bottom: 5vmin;
		left: 5vmin;
		/* border: 2px dashed #fff;
		outline: 1px solid #fff; */
		outline-offset: -5vmin;
    /* background-color: white;
    z-index: -1; */
		/* backdrop-filter: blur(10px); */
		pointer-events: none;
	}

  /* #textImage
  {
    padding-top: 15%;
    padding-bottom: 5%;
    width: 80%;
  } */

  /* #englishP
  {
    font-family: EffraLight;
    font-size: 22px;
    text-align: justify;
  }

  #arabicP
  {
    font-family: EffraLight;
    font-size: 24px;
    direction: rtl;
    text-align: justify;

  } */

	section:nth-of-type(2n):after {
		right: 5vmin;
		left: 45%;
	}
	#storyImage {
		max-width: 50vw;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}

  figurenew img {
		min-width: 100%;
		min-height: 100%;
		object-fit: cover;
		object-position: center;
	}
	section > div {
		display: flex;
		flex-direction: column;
		align-items: center;
		height: 100%;
		padding: 1rem;
	}
	h1,
	h2 {
		/* margin: 15% 0 auto; */
    margin-top: 10%;
    margin-bottom: 0;
		font-size: calc(5vmin + 1.5vmax);
		text-align: center;
		font-weight: 700;
		line-height: 1;
    color: rgb(0, 171, 153);
		word-spacing: .5rem;
	}
	p {
		/* text-align: right; */
		width: 100%;
		font-family: "Cormorant", serif;
		font-weight: 400;
		/* font-style: italic; */
		font-size: 20px;
		/* margin-bottom: 5%; */
	}
	a {
		color: transparent;
		font-family: EffraLight;
		/* -webkit-text-stroke: 2px #212121; */
		text-decoration: none;
    font-weight: 900;
    letter-spacing: 2px;
	}
	a:hover, a:focus {	
		-webkit-text-stroke: 1px #203d6e;
	}
  #mainNav .navbar-nav .nav-item .nav-link.active, #mainNav .navbar-nav .nav-item .nav-link:hover
  {
    color: #203d6e !important;
  }

}
#mainNav .navbar-nav .nav-item .nav-link.active, #mainNav .navbar-nav .nav-item .nav-link:hover
{
  color: #203d6e !important;
}

input:focus ~ label, textarea:focus ~ label, input:valid ~ label, textarea:valid ~ label {
  font-size: 0.75em;
  color: #999;
  top: -5px;
  -webkit-transition: all 0.225s ease;
  transition: all 0.225s ease;
  display: none;
}

.styled-input {
  float: left;
  width: 293px;
  margin: 1rem 0;
  position: relative;
  border-radius: 4px;
}

@media screen and (min-width: 330px) {
	#textImage
	{
	  padding-top: 0%;
	  padding-bottom: 5%;
	  width: 80%;
	}
	#textImage2
	{
	  padding-top: 0%;
	  padding-bottom: 5%;
	  width: 80%;
	}
	#englishP
	{
	  font-family: EffraLight;
	  font-size: 18px;
	  text-align: justify;
	}

	#englishCP
	{
	  font-family: EffraLight;
	  font-size: 18px;
	  text-align: justify;
	}
	
  
	#arabicP
	{
	  font-family: EffraLight;
	  font-size: 20px;
	  direction: rtl;
	  text-align: justify;
  
	}

	#arabicCP
	{
	  font-family: EffraLight;
	  font-size: 20px;
	  direction: rtl;
	  text-align: justify;
  
	}

	#contactP
	{
		font-size: 40px;
	}

	.submit-btn {
		font-size: 15px;
	  }

	h1,
	h2 {
		/* margin: 15% 0 auto; */
    margin-top: 7%;
    margin-bottom: 0;
		font-size: calc(5vmin + 1.5vmax);
		text-align: center;
		font-weight: 700;
		line-height: 1;
    color: rgb(0, 171, 153);
		word-spacing: .5rem;
	}
}


@media screen and (min-width: 992px) {
	#textImage
	{
	  padding-top: 20%;
	  padding-bottom: 5%;
	  width: 80%;
	}
	#textImage2
	{
	  padding-top: 0%;
	  padding-bottom: 5%;
	  width: 80%;
	}
	#englishP
	{
	  font-family: EffraLight;
	  font-size: 20px;
	  text-align: justify;
	}
  
	#arabicP
	{
	  font-family: EffraLight;
	  font-size: 22px;
	  direction: rtl;
	  text-align: justify;
  
	}
	
	.submit-btn {
		font-size: 20px;
	  }
}

@media screen and (min-width: 1200px) {
	#textImage
	{
	  padding-top: 15%;
	  padding-bottom: 5%;
	  width: 80%;
	}
	#textImage2
	{
	  padding-top: 0%;
	  padding-bottom: 5%;
	  width: 80%;
	}
	#englishP
	{
	  font-family: EffraLight;
	  font-size: 1.1vw;
	  text-align: justify;
	}

	#englishCP
	{
	  font-family: EffraLight;
	  font-size: 1.4vw;
	  text-align: justify;
	}
  
	#arabicP
	{
	  font-family: EffraLight;
	  font-size: 1.2vw;
	  direction: rtl;
	  text-align: justify;
  
	}

	#arabicCP
	{
	  font-family: EffraLight;
	  font-size: 1.4vw;
	  direction: rtl;
	  text-align: justify;
  
	}

	#contactP
	{
		font-size: 4vw;
	}
	
	.submit-btn {
		font-size: 1vw;
	  }
}



@media only screen and (max-width: 768px){
  .styled-input {
      width:100%;
  }

}

.styled-input label {
  color: #999;
  padding: 0.8rem 20px 1rem 20px;
  position: absolute;
  /* top: 10px; */
  left: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  pointer-events: none;
}

.styled-input.wide { 
  width: 650px;
  max-width: 100%;
}

input,
textarea {
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 10px;
	padding-bottom: 10px;
  /* padding: 30px; */
  border: 0;
  width: 100%;
  font-size: 1rem;
  background-color: white;
  color: grey;
  border-radius: 4px;
}

input:focus,
textarea:focus { outline: 0; }

input:focus ~ span,
textarea:focus ~ span {
  width: 100%;
  -webkit-transition: all 0.075s ease;
  transition: all 0.075s ease;
}

textarea {
  width: 100%;
  min-height: 10em;
}

.input-container {
  width: 650px;
  max-width: 100%;
  margin: 20px auto 25px auto;
}

.submit-btn {
  float: right;
  padding: 7px 35px;
  border-radius: 7px;
  display: inline-block;
  background-color: #01ab99;
  color: white;
  /* font-size: 1vw; */
  cursor: pointer;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,0.06),
            0 2px 10px 0 rgba(0,0,0,0.07);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.submit-btn:hover {
  transform: translateY(1px);
  box-shadow: 0 1px 1px 0 rgba(0,0,0,0.10),
            0 1px 1px 0 rgba(0,0,0,0.09);
}

@media (max-width: 768px) {
  .submit-btn {
      width:100%;
      float: none;
      text-align:center;
  }
}

input[type=checkbox] + label {
color: #ccc;
font-style: italic;
} 

input[type=checkbox]:checked + label {
color: #f00;
font-style: normal;
}

/* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 16px;
	margin-top: -22px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
	right: 0;
	border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
	background-color: rgba(0,0,0,0.8);
  }