*
{
	box-sizing: border-box;
	margin: 0px;
	color: white;
}
img
{
	width: 100%;
	height: auto;
}	
#bigwrapper
{
	background: url(images/banner.jpg);
	padding: 10px;
	width: 100%;
	margin-top: 0px;
}
/* navbar */
.nav_bar
{
	font-family: futura md bt;
}
.nav_bar a
{
	color: white;
	padding: 14px 20px;
	text-decoration: none;
	text-align: center;
	font-size: 13px;
}
.nav_bar a:hover
{
	border-bottom: 1px solid white;
	color: yellow;
}
/*header*/
.header
{
	text-align: center;
	padding: 5px;
	margin-top: 8px;
	margin-bottom: 8px;
}
.headerFont
{
	color: white;
	font-family: bahnschrift;
	font-size: 3em;
	padding: 50px;
	margin-left: 5px;
}
/* main section */
.create_row
{
	display: flex;
	flex-wrap: wrap;
}
.left_aside
{
	flex: 30%;
	background: #62727b;
	padding: 20px;
	color: white;	
	font-family: arial;
}
.main_section
{
	flex: 70%;
	background: #8eacbb;
	padding: 20px;
	font-family: arial;
}
.page_img
{
	background: #7d9bbf;
	padding: 10px;
	width: 100%;
	text-align: center;
}

/* overflow animation */
.very_big
{
	float: left;
	display: inline-block;
}
.very_big2
{
	float: left;
	display: inline-block;
}
.container2
{
	width: 50%;
	position: relative;
	float: left;
	display: inline-block;
}
.images
{
	display: block;
	width: 75%;
	height: auto;
}
#overlay
{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: #008cba;
	overflow: hidden;
	width: 100%;
	height: 0;
	transition: .5s ease;
}
#overlay2
{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: #455a64;
	overflow: hidden;
	width: 100%;
	height: 0;
	transition: .5s ease;
}
#overlay3
{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: #880000;
	overflow: hidden;
	width: 100%;
	height: 0;
	transition: .5s ease;
}
#overlay4
{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: #4cbfa1;
	overflow: hidden;
	width: 100%;
	height: 0;
	transition: .5s ease;
}
.container2:hover #overlay
{
	height: 100%;
}
.container2:hover #overlay2
{
	height: 100%;
}
.container2:hover #overlay3
{
	height: 100%;
}
.container2:hover #overlay4
{
	height: 100%;
}
.text2
{
	color: white;
	position: absolute;
	overflow: hidden;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
/* Video container */
#big
{
	text-align: center;
}
.player {
  max-width:750px;
  border:5px solid rgba(0,0,0,0.2);
  box-shadow:0 0 20px rgba(0,0,0,0.2);
  position: relative;
  font-size: 0;
  overflow: hidden;
}

.player
{
  max-width: none;
  width: 100%;
}

#video_3 
{
  width: 100%;
}

.player__controls {
  display:flex;
  position: absolute;
  bottom:0;
  width: 100%;
  transform: translateY(100%) translateY(-5px);
  transition:all .3s;
  flex-wrap:wrap;
  background:rgba(0,0,0,0.1);
}

.player:hover .player__controls {
  transform: translateY(0);
}

.player:hover .progress {
  height:15px;
}

.player__controls > * {
  flex:1;
}

.progress {
  flex:10;
  position: relative;
  display:flex;
  flex-basis:100%;
  height:5px;
  transition:height 0.3s;
  background:rgba(0,0,0,0.5);
  cursor:ew-resize;
}

.progress__filled {
  width:50%;
  background:#FFFFFF;
  flex:0;
  flex-basis:50%;
}

/* unholy css to style input type="range" */

input[type=range] {
  -webkit-appearance: none;
  background: #ffffff;
  width: 100%;
  margin: 0 5px;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 0 0 1px rgba(13, 13, 13, 0);
  background: rgba(255,255,255,0.8);
  border-radius: 1.3px;
  border: 0.2px solid rgba(1, 1, 1, 0);
}
input[type=range]::-webkit-slider-thumb {
  height: 15px;
  width: 15px;
  border-radius: 50px;
  background: #ffc600;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -3.5px;
  box-shadow:0 0 2px rgba(0,0,0,0.2);
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #bada55;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0), 0 0 1px rgba(13, 13, 13, 0);
  background: #ffffff;
  border-radius: 1.3px;
  border: 0.2px solid rgba(1, 1, 1, 0);
}
input[type=range]::-moz-range-thumb {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(13, 13, 13, 0);
  height: 15px;
  width: 15px;
  border-radius: 50px;
  background: #ffc600;
  cursor: pointer;
}
* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 720px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  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);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
/* Footer */
.footer
{
	text-align: center;
	padding: 20px;
	background: #455a64;
	color: white;	
	font-family: great fighter;
}
.footer a
{
	text-decoration: none;
	color: white;
}