/*header*/


.top-info
{
	display: none;
}


header
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	left: 0;
	right: 0;
	position: fixed;
	top: 0;
	height: 100px;
	padding: 30px 30px;
	width: 100%;
	z-index: 1;
	transition: 0.5s;
}

.logo
{
	display: flex;
	justify-content: space-between;
	align-items: center;

}



nav ul
{
	display: flex;
}

nav ul li
{
	list-style: none;
	position: relative;
}

nav ul li:after {
  background-color: red;
  content: "";
  width: 0;
  height: 3px;
  left: 15px;
  top: 15px;
  transition: width 0.35s;
  position: absolute;
  margin-top: 15px;
}

nav ul li:hover:after {
  width: 30%;
}

nav ul li a
{
	text-decoration: none;
	color: white;
	padding: 0px 15px;
	font-size: 15px;
	display: block;
	transition: 0.5s;
	cursor: pointer;
}

.logo-img
{
	width: 150px;
	height: auto;
}

.logo-img img
{
	width: 100%;
	height: 100%;
	border-radius: 5px;
	padding: 5px 10px;
	background: white;
}

.join
{
	text-decoration: none;
	background: blue;
	color: white;
	font-size: 15px;
	padding: 5px 15px;
	border-radius: 35px;
	margin-left: 10px;
	animation: pulse 2s infinite;
	border: none;
	cursor: pointer;
}

.navopen_btn, 
.res-header, 
.res-header button,
.fa-bars,
.fa-bars-staggered
{
	display: none;
}


/*Header End*/




/* Header Sticky */

header.sticky
{
	
	height: 70px;
	padding: 20px;
	z-index: 2;
	background: rgb(255, 255, 255);
}

.sticky nav ul li:after {
  background-color: red;
  content: "";
  width: 0;
  height: 3px;
  left: 10px;
  top: 15px;
  transition: width 0.35s;
  position: absolute;
  margin-top: 15px;
}

.sticky nav ul li:hover:after {
  width: 30%;
}

.sticky nav ul li a
{
	text-decoration: none;
	color: black;
	padding: 0px 10px;
	font-size: 15px;
	display: block;
	transition: 0.5s;
	cursor: pointer;
}


.sticky .logo-img
{
	width: 150px;
	height: auto;
}
.sticky .logo-img img
{
	width: 100%;
}

.sticky .nav1 i
{
	margin-right: 2px;
	color: black;
}

.sticky .join
{
	text-decoration: none;
	background: blue;
	color: white;
	font-size: 15px;
	padding: 5px 15px;
	border-radius: 35px;
	margin-left: 10px;
	animation: sticky 2s infinite;
	border: none;
	cursor: pointer;
}

@keyframes sticky
{
  0% 
  {
    nnbox-shadow: 0 0 0 0 rgba(35,35,35, 0.8);
  }

  70% 
  {
    box-shadow: 0 0 0 10px rgba(35,35,35, 0);
  }

  100% 
  {
    box-shadow: 0 0 0 0 rgba(35,35,35, 0);
  }
}


/*header end*/



@media only screen and (max-width: 768px)
{

	header
	{
		background: white;
		height: 60px;
		position: relative;
		padding: 10px;
	}

	.logo
	{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.logo-img
	{
		width: 100px;
		height: auto;
	}

/* ------------ Header End ------------ */




/* ------------ Sticky Header Start ------------ */

	.nav1
	{
		display: none;
	}

	header.sticky
	{
		display: flex;
		justify-content: space-between;
		align-items: center;
		left: 0;
		right: 0;
		position: fixed;
		top: 0;
		height: 60px;
		padding: 10px;
		z-index: 10;
		background: #fff;
		transition: 0.5s;
	}



	.sticky .join
	{
		text-decoration: none;
		background: blue;
		color: white;
		font-size: 12px;
		padding: 3px 10px;
		border-radius: 35px;
		margin-left: 10px;
		animation: sticky 2s infinite;
		border: none;
		cursor: pointer;
	}

	.sticky .logo-img
	{
		width: 94px;
		height: auto;
		transition: 0.5s;
	}

/* ------------ Sticky Header End ------------ */





/* ------------ Responsive Header Start ------------ */

	.main-nav
	{
		display: none;
	}

	.res-header
	{
		position: absolute;
		top: 0;
		left: 0;
		background: rgba(20, 20, 20, 0.9);
		width: 100%;
		height: 100vh;
		z-index: 10;
		padding: 20px;
		/*display: no;*/
	}

	.res-header ul li
	{
		padding: 20px 0px;
		list-style: none;
	}

	.res-header ul li a
	{
		text-decoration: none;
		font-size: 15px;
		color: white;
		transition: 0.5s;
		padding: 10px;
		width: auto;
	}

	.res-header ul li a:hover
	{
		background: white;
		color: black;
	}

	.join
	{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		font-size: 12px;
		animation: pulse2 1.5s infinite;
		box-shadow: 0 0 0 rgba(35,35,35, 0.8);
	}

	@keyframes pulse2
	{
	  0% 
	  {
	    box-shadow: 0 0 0 0 rgba(35,35,35, 0.8);
	  }

	  70% 
	  {
	    box-shadow: 0 0 0 8px rgba(35,35,35, 0);
	  }

	  100% 
	  {
	    box-shadow: 0 0 0 0 rgba(35,35,35, 0);
	  }
	}



	header .navopen_btn
	{
		position: absolute;
		top: 50%;
		transform: translate(0, -50%);
		right: 20px;
		font-size: 28px;
		color: black;
		display: block;
		opacity: 1;
		background: transparent;
		border: none;
		cursor: pointer;
	}

	.navopen_btn
	{
		display: block;
	}
	.fa-bars
	{
		display: block;
	}


	button .fa-arrow-left-long
	{
		position: absolute;
		top: 10px;
		right: 20px;
		font-size: 20px;
		color: white;
		padding: 10px 20px;
		transition: 0.5s;
	}

	.fa-arrow-left-long:hover
	{
		background: white;
		color: black;
		border-radius: 35px;
		animation: pulse3 1.5s infinite;
		box-shadow: 0 0 0 rgba(35,35,35, 0.8);
	}

	@keyframes pulse3
	{
	  0% 
	  {
	    box-shadow: 0 0 0 0 rgba(255,255,255, 0.8);
	  }

	  70% 
	  {
	    box-shadow: 0 0 0 10px rgba(35,35,35, 0);
	  }

	  100% 
	  {
	    box-shadow: 0 0 0 0 rgba(35,35,35, 0);
	  }
	}

	.logo .navopen_btn
	{
		display: block;
	}


	.res-header button
	{
		display: block;
		background: transparent;
		border: none;
		margin-bottom: 20px;
	}



/* ------------ Responsive Header End ------------ */




















/* ------------ Header Top Info Start ------------ */

.top-info
{
	width: 100%;
	height: 60px;
	position: relative;
	z-index: 1;
	display: block;
}

.info1, 
.info2, 
.info3
{
	width: 100%;
	height: 30px;
}

.info1 a, 
.info2 a, 
.info3 a
{
	text-decoration: none;
}

.info1
{
	display: flex;
	justify-content: space-between;
	color: white;
	font-size: 12px;
	text-align: center;
	line-height: 30px;
	background: red;
}

.info1 h3
{
	width: 100%;
	height: 30px;
	background: white;
}

.info1 h3 a
{
	color: white;
	font-weight: 200;
}

.info1 .h31
{
	background: rgb(255, 0, 0, 0.9);
	width: 50%;
	height: 30px;
}

.info1 .h32
{
	background: rgb(26, 26, 255, 0.9);
	width: 50%;
	height: 30px;
}

.info1 i
{
	margin-right: 10px;
	/*font-weight: lighter;*/
}


.info2
{
	background: black;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 30px;
	line-height: 30px;
}

.info2 a
{
	color: white;
	font-size: 12px;
}

.info2 i
{
	margin-left: 10px;
}


.info3
{
	background: #f2f2f2;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 30px;
	line-height: 30px;
	padding: 5px;
}

.info3 i
{
	margin-left: 10px;
}

.info3 a
{
	color: black;
	font-size: 12px;
}

/* ------------ Header Top Info End ------------ */

}




/* --------- Join Now Form PopUp -------- */
/* -------------------------------------- */


.joinNow_popup_form
		{
			width: 50%;
			height: auto;
			position: fixed;
			top: -50%;
			left: 50%;
			transform: translate(-50%, -50%) scale(0.1);
			background: white;
			display: flex;
			justify-content: space-between;
			align-items: center;
			transition: 0.5s, opacity 300ms ease-in-out;
			padding: 100px 20px 40px;
			z-index: 2;
			border-radius: 12px;
			box-shadow: 0px 0px 50px 0px rgba(35, 35, 35, 0.5);
		}

		.form-head
		{
			position: absolute;
			top: 10px;
			left: 50%;
			transform: translate(-50%, 0);
			text-align: center;
		}

		.form-head h2
		{
			font-size: 24px;
			font-weight: 700;
		}

		.form-head p
		{
			font-size: 14px;
		}

		.joinNow_popup_form .info_img
		{
			width: 300px;
			height: auto;
		}

		.form_open
		{
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%) scale(1.0);
		}

		.formClose
		{
			width: 30px;
			height: 30px;
			border-radius: 100%;
			background: transparent;
			cursor: pointer;
			font-size: 20px;
			position: absolute;
			top: 20px;
			right: 20px;
			border: 0;
		}

		.form_info
		{
			display: flex;
			flex-direction: column;
			width: 60%;
			height: auto;
			padding: 0 20px;
			line-height: 10px;
		}

		.input_info
		{
			width: 100%;
			height: 40px;
			display: flex;
			padding: 0 10px;
			margin-bottom: 20px;
			border: 1.5px solid black;
			border-radius: 4px;
			position: relative;
		}

		.input_info img
		{
			width: 16px;
			height: auto;
		}

		.input_info input
		{
			width: 100%;
			height: 100%;
			margin-bottom: 20px;
			background: transparent;
			padding-left: 10px;
			margin-left: 10px;
			border: 0;
			outline: 0;
			font-size: 16px;
			font-weight: 400;
			border-left: 1px solid black;
		}

		.input_info .fa-circle-exclamation, .fa-circle-check
		{
			position: absolute;
			right: 10px;
			top: 50%;
			transform: translate(0, -50%);
			opacity: 0;
		}

		.input_info .fa-circle-exclamation
		{
			color: red;
		}

		.input_info .fa-circle-check
		{
			color: green;
		}

		.course_option
		{
			width: 100%;
			height: 40px;
			outline: 0;
			border: 1.5px solid black;
			font-weight: 400;
			font-size: 14px;
			padding: 0 10px;
			border-radius: 4px;
		}

		.info_btn
		{
			width: 120px;
			height: 40px;
			line-height: 40px;
			text-decoration: none;
			background: rgba(0, 0, 255, 0.8);
			color: white;
			text-align: center;
			margin-top: 20px;
			border-radius: 4px;
		}


		/* ------ Media Start ------- */
		/* -------------------------- */

		@media (max-width: 768px)
		{
			.joinNow_popup_form
			{
				width: 85%;
				padding: 100px 10px 40px;
			}

			.form-head
			{
				width: 100%;
			}

			.form-head h2
			{
				font-size: 20px;
				font-weight: 600;
			}

			.joinNow_popup_form .info_img
			{
				display: none;
			}

			.form_info
			{
				width: 100%;
				padding: 0 10px;
			}

			.formClose
			{
				top: 5px;
				right: 5px;
			}

			.input_info
			{
				width: 100%;
				padding: 0 10px;
				margin-bottom: 30px;
			}

			.input_info img
			{
				width: 16px;
				height: auto;
			}

			.input_info input
			{
				font-size: 14px;
				margin-right: 14px;
			}

			.input_info .fa-circle-exclamation, .fa-circle-check
			{
				font-size: 14px;
			}

			.info_btn
			{
				margin: 0 auto;
				margin-top: 20px;
			}


		}