html, body {
	margin: 0;
	padding: 0;
	font-family: proximanova-regular, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background-color: #000;
}

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: inherit;
}

.img-responsive {
	width: 100%;
	max-width: 100%;
	display: block;
}

.main-wrapper {
	width: 100%;
	min-height: 100vh;
	background-color: #fff;
}

.header {
	height: 85px;
	background-color: #5d5650;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header > span {
	font-family: proximanova-bold, sans-serif;
	font-size: 25px;
	margin: 0 10px;
	color: #fff;
	text-align: right;
}

.header br {
	display: none;
}

.header a {
	color: #ff8905;
}

.header .discussion-guide-image {
	width: 50px;
	display: inline-block;
}

.player {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-image: url('../img/top-bkg.jpg');
	background-size: cover;
	background-position: bottom;
	background-repeat: no-repeat;
}

.player .title-image {
	display: block;
	width: 340px;
	margin: 20px auto;
}

.player .video-wrapper {
	width: calc(100% - 40px);
	max-width: 880px;
	position: relative;
	background-color: #000;
}

.video-container {
	width: 100%;
	padding-bottom: 56.25%;
	position: relative;
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.player .sub-title {
	color: #fff;
	font-family: proximanova-bold, sans-serif;
	font-size: 20px;
	margin-top: 20px;
	margin-bottom: 2px;
	text-transform: uppercase;
}

.player .video-title {
	font-size: 27px;
	font-family: proximanova-bold, sans-serif;
	margin-bottom: 40px;
	color: #383435;
	text-align: center;
	padding: 0px 20px;
}

.gallery-section {
	width: calc(100% - 40px);
	max-width: 1024px;
	margin: 0 auto;
	margin-top: 40px;
	margin-bottom: 20px;
}

.gallery-wrapper {
	width: calc(100% + 30px);
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
	justify-content: center;
}

.gallery-wrapper .gallery-item {
	width: 33.333333%;
	padding: 0px 15px;
	margin-bottom: 25px;
}

.gallery-item {
	cursor: pointer;
}

.gallery-item .gallery-image {
	width: 100%;
	padding-bottom: 56.25%;
	background-color: #6e6e6e;
	position: relative;
	background-position: center;
	background-size: cover;
	background-repeat: none;
}

.gallery-item .gallery-image .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border: 3px solid transparent;
	transition: border-color .2s ease-in-out;
}

.gallery-item:hover .gallery-image .overlay {
	border-color: #0ca3d4;
}

.gallery-item.active .gallery-image .overlay {
	border-color: #ff8905;
}

.gallery-item.active .gallery-image .overlay:after {
	content: 'Playing';
	background-color: #ff8905;
	padding: 5px 10px;
	color: #fff;
	font-family: proximanova-regular;
	right: 0px;
	bottom: 15px;
	position: absolute;
}

.gallery-item .item-title {
	font-family: proximanova-bold, sans-serif;
	font-size: 17px;
	text-align: center;
	margin-top: 5px;
	transition: color .2s ease-in-out;
}

.gallery-item:hover .item-title {
	color: #0ca3d4;
}

.additional-resources {
	width: calc(100% - 40px);
    max-width: 1024px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.additional-resources h2 {
    font-size: 40px;
    font-family: proximanova-bold, sans-serif;
}

.additional-resources h4 {
    font-size: 25px;
    font-family: proximanova-light, sans-serif;
    font-weight: 100;
    margin-bottom: 0;
}

.additional-resources ul {
    margin-bottom: 50px;
    list-style: none;
    padding-left: 20px;
    border-left: 5px solid #eee;
}

.additional-resources ul a {
	color: #0ca3d4;
	text-decoration: none;
}

.additional-resources ul a:hover {
	text-decoration: underline;
}

.additional-resources li {
    font-size: 18px;
    margin-bottom: 15px;
}

.spinner {
	width: 70px;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #fff;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

@media only screen and (max-width: 667px) {
	.header br {
		display: inline;
	}

	.gallery-wrapper .gallery-item {
		width: 50%;
	}
}

@media only screen and (max-width: 420px) {
	.header > span {
		font-size: 20px;
	}

	.gallery-wrapper .gallery-item {
		width: 100%;
	}
}