

/* .................... NEW TEMPLATE......................... */

	
	.number_of_visitors
	{
		display: inline-block;
		color: white;
		background: #fD6A02;
		padding: 10px 20px;
		margin: 70px 20px;
		cursor: pointer;
		border-radius: 10px;
		font-weight: bold;
	}
	
	.number_of_visitors span
	{
		margin: auto;
		font-weight: normal;
	}
	


	.main_navbar
	{
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 20;
		background-color: darkred;
		display: flex;
		padding: 15px 20px 10px 20px;
	}
	

	
	/* LOADING EFFECT */
	
	.loading_container
	{
		position: fixed;
		z-index: 9999;
		background: white;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	
	
	
	.dot_container
	{
		display: flex;
		justify-content: center;
	}
	
	.loading_dot
	{
		width: 15px;
		height: 15px;
		background: darkred;
		border-radius: 50%;
		margin: 5px;
	}
	
	
	.highlight
	{
		background: #fD6A02;
	}
	
	
	.loading_content img
	{
		width: 100px;
		display: block;
		text-align: center;
		margin: 20px auto;
		animation-name: logo_opacity;
		animation-duration: 1s;
		animation-iteration-count: infinite;
	}
	
	@keyframes logo_opacity
	{
	   0% {opacity: 1;}
	   20% {opacity: 0.8;}
	   40% {opacity: 1;}
	   60% {opacity: 0.8;}
	   80% {opacity: 1;}
	   100% {opacity: 0.8;}
	}
	
/*Loading effect ends */





	
	.button_container
	{
		display: block;
		width: 100%;
		text-align: center;
		display: flex;
		align-items: center;
		flex-direction: column;
		
	}
	
	.button_container a
	{
		display: block;
		text-decoration: none;
		width: 100%;
		max-width: 450px;
	}
		
	
	
	.dropdown
	{
		display: none;
		background: white;
		box-shadow: 0 0 5px 5px #FAFAFA;
		width: 90%;
		margin: auto;
		padding: 10px 20px;
		border-radius: 0px 0px 20px 20px;
	} 
 
	.dropdown .program_button
	{
		background: #fD6A02;
		box-shadow: 5px 5px 10px #FAFAFA;
		transition: 1s;
	} 
 
	.dropdown .program_button:hover
	{
		background: red;
		transition: 1s;
	} 
	
	.dropdown a
	{
		text-decoration: none;
	} 
	
	
	
	
	
	.extend_web_development
	{
		height: 400px;
		padding: 10px;
		box-shadow: 0 0 10px silver;
		border-radius: 0  0 10px 10px;
		transition: 1s;
		margin-bottom: 20px;
	}
	
	.extend_digital_marketing
	{
		height: 290px;
		padding: 10px;
		box-shadow: 0 0 10px silver;
		border-radius: 0  0 10px 10px;
		transition: 1s;
		margin-bottom: 20px;
	}
	
	
	.expand_basic_computer_education
	{
		height: 160px;
		padding: 10px;
		box-shadow: 0 0 10px silver;
		border-radius: 0  0 10px 10px;
		transition: 1s;
		margin-bottom: 20px;
	}
	
	
	
	.expand_amb_options
	{
		height: 480px;
		padding: 10px;
		box-shadow: 0 0 10px silver;
		border-radius: 0  0 10px 10px;
		transition: 1s;
		margin-bottom: 20px;
	}
	
	
	.cost_overlay
	{
		background: green;
		text-align: center;
		padding: 10px;
		color: white;
		position: fixed;
		width: 100%;
		top: 0;
		display: none;
	}
	
	
	.cost_overlay h1
	{
		margin: 2px 0;
		line-height: 1.5;
	}
	
	.cost_overlay p
	{
		line-height: 1.5;
	}
	
		
	
	.top_bar_container
	{
		background-color: darkred;
		padding: 5px 40px;
		color: white;
	}
	
	/* NAVIGATION BAR */
	
	.header_container
	{
		background-color: white;
		padding: 10px 40px;
		box-shadow: 0px 1px 10px  silver;
		position: sticky;
		top: 0;
		display: flex;
		z-index: 3;
	}
	
	.header_container img
	{
		width: 50px;
	}
	
	.header_container img:hover
	{
		opacity: 0.7;
		transition: 0.5s ease;
	}
	
	.header_container ul
	{
		list-style: none;
		display: flex;
		margin-left: auto;
	}
	
	
	.header_container ul li
	{
		padding: 10px 15px;
		margin-top: 5px;
	}
	
	.header_container ul li a
	{
		text-decoration: none;
		color: black;
	}
	
	.header_container ul li a:hover
	{
		color: #fD6A02;
		transition: 0.5s ease;
	}
	
	
	
	
	/* SLIDER STYLING */
	
	.slider_container
	{
		overflow: hidden;
		
	}
	
	.slider_container figure
	{
		display: flex;
		position: relative;
		width: 500%;
		margin: 0;
		left: 0;
		animation: 20s slider infinite;
		
	}
	
	.slider_container figure img
	{
		width: 20%;
		
	}
	
	@keyframes slider{
		0%{ left: 0; transform: scale(1.2); opacity: 0.8}
		20% { left: 0; transform: scale(1); opacity: 1}
		25% { left: -100%; transform: scale(1.2); opacity: 0.7}
		45% { left: -100%; transform: scale(1); opacity: 1}
		50% { left: -200%; transform: scale(1.2); opacity: 0.7}
		70% { left: -200%; transform: scale(1); opacity: 1}
		75% { left: -300%; transform: scale(1.2); opacity: 0.7}
		95% { left: -300%; transform: scale(1); opacity: 1}
		100% { left: -400%; transform: scale(1.2); opacity: 07}
	}
	
	
	
	.slider
	{
		max-width: 700px;
		border: 10px solid;
		margin: 50px auto;
		position: relative;
		overflow: hidden;
	}
	
	.slider .left-slide, .slider .right-slide
	{
		position: absolute;
		height: 40px;
		width: 40px;
		background-color: red;
		border-radius: 50px;
		color: white;
		font-size: 20px;
		cursor: pointer;
		top: 50%;
		margin-top: -20px;
		text-align: center;
		line-height: 40px;
		transition: all .5s ease;
		
	}
	
	.slider .left-slide:hover, .slider .right-slide:hover
	{
		background-color: #fD6A02;
		box-shadow: 0px 0px 5px black;
		
	}
	
	.slider .left-slide
	{
		left: 30px;
	}
	
	.slider .right-slide
	{
		right: 30px;
	}
	
	
	.slider .slider-items .item img
	{
		width: 100%;
		display: block;
		animation: zoom 1s ease;
	}
	
	@keyframes zoom 
	{
		0% {transform: scale(2); opacity: 0}
		100% {transform: scale(1); opacity: 1}
	}
	
	.slider .slider-items
	{
		width: 400%;
		margin: 0;
		left: 0;
		display: flex;
	}
	
	
	.slider .slider-items .item 
	{
		display: none;
		position: relative;
		width: 25%;
		/*animation: 20s slider2 infinite;*/
	}
	

	.slider .slider-items .item .caption
	{
		position: absolute;
		width: 100%;
		height: 40px;
		background-color: black;
		bottom: 0;
		left: 0;
		text-align: center;
		color: white;
		font-size: 20px;
		box-sizing: border-box;
		padding: 10px;
		opacity: 0.5;
	}
	
	.slider .slider-items .item.active 
	{
		display: block;
		
		
	}
	
	
	
	/* OTHER PAGES CONTAINER */
	
	.main_container
	{
		display: flex;
		min-height: 65%;
		position: relative;
		justify-content: center;
		align-items: center;
	}

	
	.mainContainer .book_container img
	{
		width: 100%;
		
	}
	
	

	/*........... SIDEBAR .................*/
	
	
	.sidebar
	{
		width: 300px;
		text-align: left;
		background-color: darkred;
		height: 90vh;
		overflow: auto;
		position: fixed;
		top: 70px;
		left: 0;
		z-index: 10;
		
	}
	
	.sidebar2
	{
		width: 280px;
		height: 100vh;
	}
	.sidebar .course
	{
		color: #fD6A02;
		text-transform: uppercase;
		text-align: left;
		font-weight: bold;
		padding: 40px 10px 10px 50px;
	}
	
	
	.sidebar ul
	{
		margin: 0;
		padding: 0;
	}
	
	.sidebar ul a
	{
		list-style: none;
		text-decoration: none;
		color: white;
		margin: 0;
		padding: 0;
		display: block;
		
	}
	
	
	
	.sidebar ul a li
	{
		text-align: left;
		padding: 10px 20px 15px 50px;
		margin: 0;
		
	}
	
	
	.sidebar ul a li:hover
	{
		background-color: #fD6A02;
		color: white;
		transition: all .8s ease;
	}
	
	
	.sidebar .active
	{
		background-color: #fD6A02;
		color: white;
	}
	
	
	.main_body
	{
		flex: 1;
		overflow: auto;
		height: 100vh;
		text-align: center;
		max-width: 1300px;
	}
	
	
	
	
	.title
	{
		margin-top: 50px;
		background-color: darkred;
		color: white;
		text-align: center;
		padding: 10px 10px;
		position: relative;
		overflow: hidden;
		
		
	}
	
	.main_body .title .caution
	{
		background: linear-gradient(yellow, orange);
		background-color: orange;
		color: darkred;
		border-radius: 10px;
		font-weight: bold;
		padding: 5px 10px;
		width: 600px;
		margin: auto;
		margin-bottom: 20px;
		display: flex;
		position: absolute;
		top: -120px;
		left: 50%;
		transform: translate(-50%);
		z-index: 90;
		transition: 2s;
	}
	
	
	.main_body .title .caution.show_caution
	{
		top: 20px;
		transition: 2s;
	}
	
	
	
	
	.main_body .title .caution span:first-child
	{
		font-size: 40px;
		color: red;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.main_body .title .caution span
	{
		text-align: left;
		padding: 10px;
	}
	
	

	.title h3
	{
		line-height: 1.5;
		text-transform: uppercase;
	}





.loader
{
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: white;
	
	display: flex;
	justify-content: center;
	align-items: center;
}

.loader .hidden{
	animation: fadeOut 1s;
	animation-fill-mode: forwards;
}


@keyframes fadeOut
{
	100% {
		opacity: 0;
		visibility: hidden;
	}
}


/* ....................LINK......................... */

a
{
	color: #fD6A02;
}

 /* ....................GRID SYSTEM......................... */
	
   .col1{
	   margin: 0px;
	   padding: 40px 0px 40px 0px;
	   text-align: center;
	   background-color: lavender;
	   
   }
   

   .col2{
	   margin: 0px;
	   padding: 40px 0px 40px 0px;
	   text-align: center;
	   
	   
   }
   
    .col3
	{
	   margin: 0px;
	   padding: 40px;
	   text-align: center;
	  
	   border-radius: 10px;
   }
   
  
     
	
	
	
	
	
	.mainContainer_paragraph
	{
	   
	   margin: auto;
	   margin-top: 70px;
	   margin-bottom: 70px;
	   padding:40px;
	   text-align: justify;
	   border: 1px solid lavender;
	   border-radius: 30px;
	   box-shadow: 5px 5px 5px silver;
	   background-color: white;
	   max-width: 600px;
	   
	}
	


	.navigation_container{
	   padding:2px;
	   text-align: center;
	   background-color: darkred;
	   } 
	
	
	.table_wrap
	{
		max-width: 800px;
		margin: auto;
		padding: 0 10px 50px 10px;
		
	}
	
	
	.table_wrap p
	{
		text-align: center;
		
	}
	
	
	.table_inner_wrap
	{
		overflow: auto;
	}

	
   
   .table_container
	{
		width: 100%;
		min-height: 10px;
		overflow: scroll;
		
	}
   
   .cost_button
   {
	   display: block;
	   margin: auto;
	   border: none;
	   border-radius: 5px;
	   background: #fD6A02; 
	   padding: 10px 20px;
	   color: white;
   }
  
   
  .overlay
  {
	  width: 100%;
	  height: 100%;
	  opacity: .8;
	  background-color: darkred;
	  position: absolute;
  }
  
  
  .love_container
  {
	  background-image: url(images/gif/love4.gif);
	  background-position: center; 
		background-repeat: no-repeat; 
		background-size: cover;
	  background-attachment: fixed;
	  height: 100%;
	 width: 100%;
	  
  }
  
 .love_container2
  {
	 background-image: url(images/gif/love3.gif);
     background-position: center; 
	 background-repeat: no-repeat; 
	 background-size:cover;
	 background-attachment: fixed;
	 height: 100%;
	 padding: 70px 0;
	
}
  
   /* ....................IMAGES......................... */
  
  .icon_box
  {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	box-sizing: border-box;
	padding: 10px;
	border-radius: 10px;
	box-shadow: 1px 2px 4px gray;
	text-align: center;
	margin: 0px 20px;
	width: 230px;
	height: 300px;
	  
  }
    
  .icons
  {
	 display: block;
	 width: 100px;
	 height:100px;
	 padding: 10px;
}
  

  
  
   
 /* ....................PARAGRAPH......................... */
   
	p 
	{
	font-size: 18px;
	color: darkred;
	margin: 30px 0px 8px 0px;
	}


 /* ....................HEADING......................... */
 


	 .navbar_container
	{
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 2;
		background-color: darkred;
	} 
	
	
	.classroom_navbar
	{
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 25;
	}
	
	h1, h2, h3 {
	text-align: center;
	font-weight: bold;
	margin: 20px;
	}  

	h1
	{
		font-size: 30px;
	}  	
	
	
	
		
	h2{
	font-size: 25px;
	} 
	
	h3{
	font-size: 20px;
	}

	.table_header
	{
		margin: 5px;
	}
	

	
	.heading
	{
		background-color: darkred;
		color: white;
		text-align: center;
		padding: 10px 20px;
		border-radius: 25px;
		line-height: 30px;
	}
/* ....................LOGO......................... */

.Sure_anchor_logo
{
	width: 100%;
}



.logo_only
	{
		visibility: hidden;
	}
	


.logo{
	width: 160px;
	height: auto;
	margin: 5px 10px;
	
}

.logo:hover{
	opacity: 0.8;
}

.logo_container
{
	margin-top: 10px;
	min-height: 60px;
	text-align: center;
}

.navbar_logo_container
{
	margin-top: 10px;
	min-height: 60px;
	display: flex;
	
} 

.flyer_container
{
	text-align: center;
}

.flyer
{
	margin-top: 10px;
	max-width: 500px;
	width: 100%;
	text-align: center;
} 


.menu_container
{
	min-height: 70px;
	padding: 0px;
	
}

.amb_menu_container
{
	background-color: darkred;
	opacity: 1;
	color: darkred;
	height: 70px;
	padding: 0px 50px;
	margin-bottom: 50px;
	width: 100%;
}

.amb_menu_container a
{
	color: white;
	font-weight: bold;
}

.amb_menu_container ul li
{
	padding: 10px 10px;
	
}
.amb_menu_container ul
{
	width: 100%;
}



.logo2{
	max-height: 100px;
	margin-bottom: 20px;
	
}

.logo3{
	width: 50px;
	height: auto;
	margin: 10px 0px 0px 0px;
}





.small_view_button
{
	border-bottom: 1px solid lavender;
	padding: 20px 0 20px 0;
}

.small_view_search
{
	border-bottom: 1px solid lavender;
	padding: 20px 0 20px 0;
}





.search_container
{
	text-align: center;
}

#search{
	margin-left: 5px;
	margin-right: 10px;
	padding: 5px;
	padding-top: 20px;
    overflow: hidden;
	float: right;
	
}

.search_button{
	background-color: red;
	border: 0px;
	padding: 5px 10px 5px 10px;
	border-radius: 5px;
	color: white;
}

.search_input{
	
	border: 1px solid lavender;
	padding: 5px;
	border-radius: 5px;
	max-width: 150px;
}



#sign_nav{
	
	margin: 7px 10px;
	text-decoration: none;
	color: white;	
	float: right;
	display:inline-block;
	
	
	}
  
  
	.navbar_logo_container ul
	{
		padding: 0px;
		list-style: none;
		position: relative;
	}
	
	
	
	
	
	
	.menu_button
	{
		margin: 0 5px;
		color: white;
		display: inline-block;
		border: 1px solid #fD6A02;
		padding: 3px 10px;
		border-radius: 10px;
		background-color: darkred;
		
	}
	
	
	
	.sub_menu
	{
		width: 250px;
		text-align: left;
		background-color: darkred;
		padding-top: 20px;
		height: 100vh;
		overflow: auto;
		position: fixed;
		top: 70px;
		right: 0;
		z-index: 10;
		display: none;
		
	}
	
	
	.sub_menu ul
	{
		margin: 0;
		padding: 0;
	}
	
	.sub_menu ul a
	{
		list-style: none;
		text-decoration: none;
		color: white;
		margin: 0;
		padding: 0;
		display: block;
		
	}
	
	
	
	.sub_menu ul a li
	{
		text-align: left;
		padding: 10px 10px 10px 50px;
		margin: 0;
		
	}
	
	
	.sub_menu ul a li:hover
	{
		background-color: #fD6A02;
		color: white;
		transition: all .8s ease;
	}
	
	
	
	
	
	
	
/* ....................NEW HOME PAGE......................... */	
	
	
	.slider_container
	{
		z-index: 1;
	}
	
	
	.wrapper
	{
		min-height: 10px;
		background-color: darkred;
		box-sizing: border-box;
		padding: 80px;
		
	}
		

	

/* ....................FORM......................... */

/*
.form_input
{
	
	border: 1px solid lavender;
	padding: 10px 25px;
	border-radius: 50px;
	width: 100%;
}

.form_input_message_box
{
	
	border: 1px solid lavender;
	padding: 10px 25px;
	border-radius: 20px;
	width: 100%;
}

.form_input2
{
	
	border: 1px solid lavender;
	padding: 10px 18px;
	border-radius: 5px;
	width: 100%;
	max-width: 800px;
}

.confirm_input
{
	
	border: 1px solid lavender;
	padding: 10px 18px;
	border-radius: 5px;
	width: 100%;
	max-width: 300px;
	
}

.payment_wrapper
{
	text-align: center;
	background-color: white;
	padding: 70px 20px;
	margin: 0px;
	overflow: scroll;
}

.payment_wrapper2
{
	text-align: center;
	padding: 70px 20px;
	margin: 0px;
	
}

.form_label{
	text-align: left;
	margin-top: 30px;
}

.form-wrapper
{
	text-align: left;
	padding: 0px 80px;
	
}
*/
.vote_form-wrapper
{
	text-align: left;
	padding: 0px 80px;
	text-transform: UPPERCASE;
	font-weight: bolder;
	
}

.vote_result_wrapper
{
	display: none;
	
}

.display
{
	display: block;
	
}

.vote_form-wrapper td, .vote_form-wrapper th
{
	padding: 15px 10px;
}




.signuperror{
	color: red;
	font-style: italic;
	font-weight: bold;
	font-size: 18px;
	text-align: center;
	border: solid 1px red;
	border-radius: 50px;
	box-shadow: 5px 5px 5px silver;
	padding: 3px 10px;
}

.signupsucess{
	color: green;
	font-style: italic;
	font-weight: bold;
	font-size: 18px;
	text-align: center;
	border: solid 1px green;
	border-radius: 50px;
	box-shadow: 5px 5px 5px silver;
	padding: 3px 10px;
}

.signupsucess a
{
	color: green;
}

.signupsucess2{
	
	font-style: italic;
	font-weight: bold;
	font-size: 18px;
	text-align: center;
	background-color: darkred;
	box-shadow: 5px 5px 5px silver;
	padding: 3px;
}

.cost
{
	font-size: 35px;
	font-weight: bold;
	color: red;
}

.signupsucess2 a{
	color: white;
}


.payment_guide
{
	background-color: darkred;
	color: white;
	border-radius: 10px;
	padding: 5px;
	width: 100%;
}

.payment_form
{
	background-color: lavender;
	border-radius: 10px;
	width: 100%;
}

	 .exam_paper
	{
	   margin: 0px 5px 20px 5px;
	   padding:30px;
	   background-color: white;
	   box-shadow: 5px 5px 5px silver;
	   
	}
	
	.correct
	{
		color: green;
		
		text-align: center;
		border: solid 1px green;
		border-radius: 50px;
		box-shadow: 5px 5px 5px silver;
		padding: 3px 10px;
		
	}
/* ....................PROFILE SYSTEM......................... */






		#profile_container
		{
			width: 70%;
			left: 20%;
			margin: auto;
			margin-top: 50px;
			background-color:lavender;
			border-radius: 20px;
			overflow: hidden;
			text-align: center;
			padding: 0px 50px 0px 50px;
		}
		
		
		#profile_menu
		{
			padding-top: 40px;
			text-align: center;
			width: 100%;
		}
		
		#profile_menu a
		{
			background-color: darkred;
			color:#FFF;
			padding: 10px 40px 10px 40px;
			font-size: 18px;
			text-decoration: none;
			border-radius: 5px;
			
			box-shadow:2px 2px rgba(0,0,0,0.4);
			
		}
		
		
		#profile_menu a:hover
		{
			color: #fD6A02;
		}
		
		.profile_picture
		{
			text-align: center;
			background-color:white;
			margin: auto;
			width: 250px;
			height: 250px;
			border-radius: 20px;
			overflow: hidden;
		}
	
	
		
		.profile_picture p
		{
			position: relative;
			padding-top: 50%;
		}
		
			
		#userDetails
		{
			margin: auto;
			border: 1px solid white;
			padding: 30px;
			background: lavender;
			margin-bottom: 80px;
			
		}
		
		
		
		#profile_intro
		{
			margin: 40px 0px 0px 0px;
			text-align: center;
			padding: 20px;
			font-size: 28px;
		}
	
		
	
	/* ....................VIDEOS......................... */

	#video_wrapper
	{
		height: 100%;
		display: none;
	}
	
	.video_wrap
	{
		max-width: 800px;
		margin: auto;
		padding: 50px 20px;
	}
	

		.video
		{
			width: 100%;
			max-width: 900px;
			
		}

		.video_container
		{
			
			
			width: 100%;
			height: 0;
			padding-bottom: 56.25%;
			position: relative;
			
		}
		
		.video_container iframe
		{
			
			position: absolute;
			left: 0;
			width: 100%;
			height: 100%;
			margin: auto;
		}
		
		
		
		
		.vote
		{
			text-align: center;
			padding: 10px;
			margin: 10px;
			background-color: red;
			border-radius: 10px;
			width: 100%;
			max-width: 900px;
			color: white;
			margin: auto;
			font-weight: bold;
		}
		
		
		.video_box
		{
			min-height: 20px;
			width: 100%;
			max-width:400px;
		}
		
		
		.register_button
		{
			padding:10px 30px 10px 30px;
			margin:10px;
			background-color: red;
			color: yellow;
			font-size: 16px;
			font-weight: bold;
			border: none;
			border-radius: 30px;
			width: 90%;
			max-width: 400px;
			box-shadow: 3px 3px 8px #888888;
			animation-name: button_animation;
			animation-duration: 2s;
			animation-iteration-count: infinite;
						
		}
		
		@keyframes button_animation
		{
			0% { background-color: darkred; }
			100% { background-color: red; }
			
		}
		
		
		
		
		
		.download_button
		{
			padding:10px 30px 10px 30px;
			margin:10px;
			background-color: red;
			background: linear-gradient(red, darkred);
			color: white;
			font-size: 16px;
			border: none;
			border-radius: 30px;
			max-width: 220px;
			box-shadow: 3px 3px 8px #888888;
			white-space: nowrap;			
		}
		
		
		.download_button:hover
		{
			background-color: #fD6A02;
			background: linear-gradient(darkred, red);
			color: white;
			transition: all 0.8s;
		}
		
		.download_button a:hover
		{
			color: white;
		}
		
		
		.button
		{
			padding:10px 30px 10px 30px;
			margin:10px;
			background-color: white;
			color: darkred;
			font-size: 16px;
			border: none;
			border-radius: 30px;
			width: 90%;
			max-width: 220px;
		}
		
		
		.button2
		{
			padding:10px 30px 10px 30px;
			margin:10px;
			background-color: #fD6A02;
			color: white;
			font-size: 16px;
			border: none;
			border-radius: 30px;
			width: 90%;
			max-width: 220px;
		}
		
		.button:hover
		{
			background-color: #fD6A02;
			color: white;
			transition: all 0.5s;
		}
		
		.button2:hover
		{
			background-color: white;
			color: #fD6A02;
			transition: all 0.5s;
		}
		
		.register_button:hover
		{
			background-color: #fD6A02;
			color: white;
			transition: all 0.8s;
		}
		
		
		
		.program_button:hover
		{
			background-color: #fD6A02;
			/*background: linear-gradient(darkred, red);*/
			color: white;
			transition: all 0.8s;
		}
		
		.program_button a:hover
		{
			color: white;
		}
		
		
		
		
		
		
		
		.button_container2
		{
			text-align: center;
		}
		
		.vote_button
		{
			text-align: center;
			padding:10px 40px 10px 40px;
			margin:20px 20px 20px 20px;
			background-color: yellow;
			color: red;
			font-weight: bold;
			font-size: 20px;
			border-radius: 50px;
			
		}
		
		.vote_button:hover
		{
			background-color: red;
			color: yellow;
		}

		.video_gallery
		{
			width:100%;
			max-width: 800px;
		}
	
		.video_gallery_container
		{
			background-color: lavender;
			padding: 20px;
			width: 100%;
		}
		
		.video_gallery_container video
		{
			width: 100 %;
		}
		
		.video_box p
		{
			color:white;
		}
		
		.marquee_container
		{
			background-color: #A91101;
			padding: 15px 0px 10px 0px;
			color: white;
			width: 100%;
		}
		
		


	
	/* ....................TABLE......................... */
	/*
	.price_table
	{
		background-color: white;
		box-shadow: 5px 5px 5px silver;
		width: 95%;
		margin: auto;
	}
	
	
	.price_table th
	{
		background-color: darkred;
		color: white;
		text-align: left;
		padding: 5px 20px;
		text-align: left;
		border-bottom: 1px solid rgb(239,239,239);
	}
	
	.price_table td
	{
		color: darkred;
		text-align: left;
		padding: 20px 40px 20px 20px;
		
	}
	
	.price_table tr:nth-child(even)
	{
		background-color: rgb(239,239,239);
		
	}
	
	.price_table tr:nth-child(odd)
	{
		background-color: white;
		
	}
	
	td
	{
		
		text-align: left;
	}
	
	
	*/
	.program_button
	{
		padding:10px 30px 10px 30px;
		background-color: darkred;
		color: white;
		font-size: 16px;
		border: none;
		border-radius: 30px;
		box-shadow: 3px 3px 8px #888888;
		display: block;
		width: 100%;
		margin: 15px 0;			
	}
		
	
	


/* ....................RESPONSIVE MEDIA QUERY......................... */
	
@media only screen and (min-width: 1200px)
{
	.small_view_button, .small_view_search
	{
		display: none;
	}
	
	.main_body .title .caution
	{
		top: -400px;
		transition: 5s;
		width: 500px;
	}
}
	
@media only screen and (max-width: 1199px) 
	
{
	.small_view_search
	{
		display: none;
	}
	
	
	
    .mainContainer
	{
	   margin: 0px 5px 40px 5px;
	   padding:30px;
	   overflow: auto;
	   
	}
	
	
	
	h1
	{
		font-size: 27px;
	} 
		
	h2
	{
		font-size: 24px;
	} 
	
	h3
	{
		font-size: 22px;
	}
	
	
	.small_view_button
	{
		display: none;
	}
	
	
}


@media only screen and (max-width: 991px)
{
	.main_body .title .caution
	{
		top: -400px;
		transition: 5s;
		width: 400px;
	}
	
	
	.logo3
	{
		float: left;
		margin-right: 10px;
	}
	
	
	
		
	#profile_menu a
	{
		padding: 10px 20px 10px 20px;
		font-size: 16px;
		margin-right: 10px;
	}
}








@media only screen and (max-width: 767px)
{
	.icon_box
	{
		margin: 10px;
	}
	
	
	
	
	.register_button
		{
			
			font-size: 20px;
			
		}
	
	
	.talent_video
		{
			width: 100%;
			
		}
	
	
	
	
	.mainContainer
	{
	   margin: 0px 20px 50px 20px;
	}
	
	
	.small_view_button
	{
		display: block;
	}
	
	
	
}





@media only screen and (max-width: 740px)
{
	
	.main_body .title .caution 
	{
		width: 100%;
		margin: 0 auto;
		margin-bottom: 20px;
	}
	
	
	.main_body .title .caution span
	{
		
		font-size: 14px;
		
	}
	
	
	
	.title
	{
		margin: 70 0 10px 0;
		padding: 15px;
		width: 100%;
	}
	
	
	
	
	.main_container
	{
		flex-direction: column;
	}
	
	.main_body
	{
		width: 100%;
	}
	
	.sidebar
	{
		display: none;
		
	}
	
	.show_sidebar
	{
		display: block;
		right: 0;
		
	}
	
	.sidebar2
	{
		display: none;
	}
	
	
	
	.classroom_navbar
	{
		display: block;
		background-color: darkred;
		display: flex;
		padding: 15px 20px 10px 20px;
	}
	
	.main_navbar
	{
		display: none;
	}
	
	
}






@media only screen and (max-width: 714px)
{
	.icon_box
	{
		width: 200px;
		padding: 15px;
	}
	
	
	.logo
	{
		display: none;
	}
	
	.logo_only
	{
		visibility: visible;
	}
	
	
	.mainContainer
	{
	   margin: 0px 5px 20px 5px;
	   padding:20px;
	   
	}
	
	
	
	
	.form-wrapper
	{
		padding: 10px 0px;
	}
	
	
}

@media only screen and (max-width: 620px)
{
	
	.icon_box
	{
		width: 180px;
		padding: 15px;
	}
	

	
	
	.vote_form-wrapper
	{
		padding: 0 20px;
	}
	
	.content_container
	{
		padding: 20px;
	}

}



@media only screen and (max-width: 490px)
{
	.icon_box
	{
		width: 150px;
		height: 200px;
		padding: 15px;
	}
	
	
	.icon_box p
	{
		font-size: 14px;
		font-weight: bold;
	}
	
	
	
	
	
	
	#sign_nav
	{
		display: none;
	}
	
	
	.form-wrapper
	{
		padding: 10px 0px;
	}
	
	
}

@media only screen and (max-width: 400px)
{
	.content_container
	{
		padding: 10px;
	}
	
	.main_body .title .caution
	{
		
		max-width: 320px;
		top: -180px;
		transition: 4s;
		box-sizing: border-box;
	}
	
	
}

@media only screen and (max-width: 380px)
{
	.icon_box
	{
		width: 120px;
		height: 200px;
		padding: 10px;
		font-size: 5px;
	}
	
	.icon_box p
	{
		font-size: 12px;
		font-weight: bold;
	}
}