*
{
	box-sizing: border-box;
	margin: 0;
	font-family: verdana;
}
a
{
	text-decoration: none;
	color: #FFFFFF;
	font-family: verdana;
}
body
{
	overflow-y: scroll;
}
img
{
	width: 100%;
}
/*Navbar*/
#navbar
{
	background: #FFFFFF;
	display: flex;
	list-style-type: none;
	overflow: hidden;
	position: sticky;
	top: 0;
	font-size: 20px;
	font-family: verdana;
	z-index: 10;
}
li a
{
	text-decoration: none;
	text-align: center;
	display: inline-block;
	color: #606060;
	text-decoration: none;
	padding: 20px;
}
li .active
{
	border-bottom: 3px solid #8B00FF;
}
li a:hover
{
	color: #000000;
	border-bottom: 3px solid #ABABAB;
	transition: 0.2s ease;
}
li .active:hover
{
	border-bottom: 10px solid #8B00FF;
	transition: 0.1s ease;
}
/*Banner/slider*/
#banner
{
	text-align: center;
	padding: 0;
	font-family: verdana;
	height: 650px;
	overflow: hidden;
}
#slideContainer
{
	z-index: -1;
	height: 600px;
	overflow: hidden;
}
#slide
{
	width: 100%;
}
#slide:hover
{
	cursor: pointer;
}
#prev, #next
{
	cursor: pointer;
 	position: absolute;
  	top: 50%;
  	width: auto;
  	padding: 16px;
  	color: #ABABAB;
  	font-weight: bold;
  	font-size: 18px;
	transition: 0.4s ease;
	font-size: 50px;
}
#next
{
	right: 10;
}
#prev:hover, #next:hover
{
	color: #FFFFFF;
	background: rgba(0,0,0, 0.25);
}
/*Main Page elements*/
h2
{
	font-family: verdana;
	border-bottom: 2px solid #FF0074;
}
#switchUl
{
	margin: 40px 10px;
}
.theP
{
	margin: 40px 10px;
}
.title
{
	width: 200px;
	margin: auto;
	background: #0074FF;
	border-radius: 100px;
	margin-top: -2%;
	position: relative;
	z-index: 0;
	padding: 20px;
	font-size: 25px;
}
.title:hover
{
	cursor: url("images/cursor.cur"),auto;
}
.wrap
{
	display: flex;
	flex-wrap: wrap;
	margin: 50px;
}
.main
{
	flex: 75%;
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
}
.aside
{
	flex: 25%;
	padding: 10px;
	background: #666666;
	border-radius: 10px;
	height: 500px;
}
.text
{
	padding: 10px;
	font-family: verdana;
}
.tile
{
	flex: 25%;
	padding: 0;
	background: #666666;
	border-radius: 20px;
	margin: 10px;
	position: relative;
	height: 400px;
}
#tile1
{
	background: #000000;
}
#tile2
{
	background: #FF60CD;
}
#tile3
{
	background: #606EFF;
}
#container1
{
	background: #000000;
}
#container2
{
	background: #FF60CD;
}
#container3
{
	background: #606EFF;
}
.container
{
	position: absolute;
	top: 80%;
	right: 0;
	left: 0;
	overflow: hidden;
	width: 100%;
	height: 20%;
	transition: .4s ease;
	border-radius: 20px;
}
.tile:hover .container
{
	height: 100%;
	top: 0;
}
/*Video Player*/
#mainArea
{
	text-align: center;
	background: #57D04D;
	flex: 100%;
	margin: auto;
	padding: 0;
	border-radius: 15px;
	overflow: auto;
}
video
{
	cursor: pointer;
	display: block;
	width: 100%;
	height: auto;
}
#vidContainer
{
	position: relative;
}
#vidContainer:hover #overlay
{
	height: 100%;
	bottom: 0;
	opacity: .25;
	cursor: pointer;
}
#overlay
{
	position: absolute;
	bottom: 100%;
	right: 0;
	left: 0;
	overflow: hidden;
	width: 100%;
	height: 0;
	background: #000000;
}
#timewrap
{
	margin: 0;
}
#Time
{
	float: left;
	margin: 10px;
}
#totTime
{
	float: right;
	margin: 10px;
}
#pp
{
	width: 200px;
	margin: 200px;
	padding: auto;
}
/*Footer*/
footer
{
	background: #000000;
	padding: 40px;
	color: #FFFFFF;
	text-align: center;
}
footer a
{
	color: #0059FF;
}
/*For Mobile/Tablet displays*/
@media screen and (max-width: 760px)
{
	#navbar
	{
		flex-direction: column;
		text-align: center;
		position: relative;
	}
	li a
	{
		padding: 10px;
	}
	#banner
	{
		display: none;
	}
	.tile
	{
		font-size: 10px;
	}
	.main
	{
		flex: 100%;
	}
	.aside
	{
		display: none;
	}
	#overlay
	{
		display: none;
	}
}
@media screen and (max-width: 1200px)
{
	.title
	{
		width: 100%;
		border-radius: 0;
		margin-top: -100px;
	}
	.wrap
	{
		margin: 20px;
	}
	.tile
	{
		height: 250px;
		font-size: 10px;
	}
	.main
	{
		flex: 80%;
	}
	.aside
	{
		flex: 20%;
		height: 320px;
		font-size: 10px;
	}
	li a
	{
		font-size: 15px;
		padding: 15px;
	}
}