body {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	color: #333; 
	background-color: #F9F6EE;
}

.content-padding {
	padding-left: 11%;
	padding-right: 11%; 
}

#hero-image {
	height: 680px;
	width: 100%;
	background-color: #444;
	background-image: url('../images/death_star_image.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative; 
}

#hero-image::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.15); 
	content: ""; 
}

#hero-image #hero-title {
	position: absolute;
	padding: 25px 60px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 0.6; 
  color: white; 
  bottom: 0;
  margin: 0px;
  text-transform: uppercase;
  font-weight: 600; 
  font-size: 1.20em;
  letter-spacing: 0.4px; 
}

.navbar-fixed-top {
	position: absolute;
	padding-top: 10px;
}

.navbar-nav li a {
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	font-size: 12px;
  padding-right: 30px;
}

.dropdown.open .dropdown-menu li a {
	transition: 0.5s ease-in-out;
}

.dropdown.open .dropdown-menu li a:hover {
	color: #fde5b9;
}

.navbar-nav > li:first-child {
	margin-right: 10px;
}

.nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
	background-color: transparent;
}

.navbar-nav li a:hover,
.navbar-nav li a:focus {
	background-color: transparent;
}

.navbar-nav>li>.dropdown-menu {
	background-color: rgba(0,0,0,0.5);
}

#logo {
  color: #fff;
  font-size: 15px;
}

#posters-wrapper {
	padding-top: 35px;
	padding-bottom: 35px;
	background-color: #28282B;
	filter: brightness(0.9);
}
.poster {
	width: 30%;
	margin-right: 4%;
	display: inline-block;
	position: relative;
	filter: brightness(0.9);
}

.poster-info-overlay {
	position: absolute;
  background: rgba(0,0,0,0.7);
	bottom: 0;
	left: 0;
	opacity: 0;
	transition: 0.5s ease-in-out;
	padding: 30px 15px;
}
.poster-info-overlay h3 {
	text-transform: uppercase;
	font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.3px;
  color: #fff; 
  margin: 0px;
}
.poster-info-overlay h4 {
	text-transform: uppercase;
	font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.3px;
  color: #fff; 
  margin: 0px;	
  margin-top: 15px;
}
.poster:hover .poster-info-overlay {
	opacity: 1;
}

footer {
	margin-top: 0px;
}

footer::before {
	content: "";
	display: block;
	width: 90%;
	margin-bottom: 20px;
	border-top: 1px solid #dedede; 
	margin-left: auto;
	margin-right: auto; 
}

footer p {
	float: left;
  color: black; 
	letter-spacing: 0.3px;
	font-size: 12px;
	padding-bottom: 20px;  
}

footer .social-media-icons {
	float: right;
}

footer .social-media-icons i {
	font-size: 24px;
	color: #999;
	transition: 0.5s ease-in-out; 
}

footer .social-media-icons a:first-child {
	margin-right: 20px;
}

footer .social-media-icons a:last-child:hover i {
	color: #af0b0c;
}

footer .social-media-icons a:first-child:hover i {
	color: #333;
}

#hero-image-single {
	height: 680px;
	width: 100%;
	background-color: #444;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
}

#hero-image-single::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.15);
	content: "";
}

#hero-image-single #hero-title {
	position: absolute;
	padding: 25px 60px;
	left: 50%;
	width: auto;
  opacity: 0.6; 
  color: white; 
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  margin: 0px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.20em;
  letter-spacing: 0.4px;
}

.poster-wrapper {
	float: left;
	width: 30%;
	margin-top: 50px;
}

.description-wrapper {
	float: right;
	margin-left: 5%;
	width: 65%;
	margin-top: 50px;
}

.movie-header {
	text-transform: uppercase;
  font-weight: 400;
  font-size: 0.95em;
  letter-spacing: 0.4px;
  padding: 15px 25px;
  border: 2px solid #333;
  display: inline-block;
  margin-top: 0px;
  margin-bottom: 15px;
}

.description-wrapper p {
	line-height: 1.95;
	letter-spacing: 0.3px;
	font-size: 13px;
	margin-bottom: 25px;
}

.main-characters ul li {
	display: inline-block;
	list-style: none;
	margin-right: 40px;
	margin-bottom: 15px;
	letter-spacing: 0.3px;
	font-size: 13px;
}

.main-characters ul {
	padding-left: 0px;
}

@media (max-width: 1024px) {
	.content-padding {
		padding-left: 8%;
		padding-right: 8%;
	}
}
@media (max-width: 767px) {
	.content-padding {
		padding-left: 5%;
		padding-right: 5%;
	}
}

@media (min-width: 992px) {
	.poster:nth-child(3), .poster:last-child {
		margin-right: 0px;
	}

	.poster:nth-child(-n + 3) {
		margin-bottom: 30px;
	}
}

@media (max-width: 991px) {
	.poster-wrapper {
		width: 100%;
	}
	.poster-wrapper img {
		width: 350px;
		margin-right: auto;
		margin-left: auto;
	}
	.description-wrapper {
		margin-top: 30px;
		width: 100%;
	}

	.poster {
		width: 47%;
		margin-bottom: 50px;
	}

	.poster:nth-child(2n) {
		margin-right: 0px;
	}

}

@media (max-width: 1099px) {
	#hero-image-single #hero-title {
		font-size: 1.05em;
		text-align: center;
		width: 60%;
		padding-left: 40px;
		padding-right: 40px;
	}
}
@media (max-width: 767px) {
	#hero-image-single #hero-title, #hero-image-notFound #hero-title {
		width: 75%;
	}	
}

@media (max-width: 767px) {
	#hero-image #hero-title {
		font-size: 1.05em;
		text-align: center;
		width: 50%;
		padding-left: 40px;
		padding-right: 40px;
	}
}
@media (max-width: 500px) {
	#hero-image #hero-title  {
		width: 65%;
	}	
}

@media (max-width: 767px) {
	.navbar-right {
		float: left;
	}
	.navbar-right li {
		display: inline-block;
	}
	.navbar-nav .open .dropdown-menu {
		position: absolute;
		margin-left: -100px;
		background-color: rgba(0,0,0,0.5);
	}
	
}

@media (max-width: 767px) {
	.poster-info-overlay h3 {
		font-size: 12px;
	}
	.poster-info-overlay {
		padding: 20px 8px;
	}
}

@media (max-width: 767px) {
	#hero-image, #hero-image-single, #hero-image-notFound {
		height: 400px;
	}
}

@media(max-width: 400px) {
	#hero-image-single #hero-title, #hero-image-notFound #hero-title,
	#hero-image #hero-title {
		width: 90%;
		font-size: 0.95em;
	}
}

#hero-image-notFound {
	height: 550px;
	width: 100%;
	background-color: #444;
	background-image: url('../images/404.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
}

#hero-image-notFound::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.15);
	content: "";
}

#hero-image-notFound #hero-title {
	position: absolute;
	background-color: #fff;
	padding: 25px 60px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
  transform: translateX(-50%);

  bottom: 0;
  margin: 0px;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.20em;
  letter-spacing: 0.4px;
}
