body {
	background-color: #000;
}

body,html {
	height: 100%;
}

.trailer-wrapper {
	padding: 10% 4% 10% 4%;
}

.trailer-nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	position: absolute;
	top: 25px;
    left: 50%;
    transform: translateX(-50%);
    -webkit- transform: translateX(-50%);
	width: 100%;
    
}

.trailer-nav-item {
	display: block;
	max-width: 300px;
    width: 100%;
    border: 1px solid #fff000;
	padding: 10px 0;
	text-align: center;
	color: #fff;
	margin: 0 5px;
    font-weight: bold;
    text-decoration: none;
}
.trailer-nav-item.active {
    color: #000;
    background-color: #fff000;
}

.trailer-movie {
	position: absolute;
	width: 100%;
    height: calc(100% - 100px);
	margin: auto;
	left: 0;
	top: 100px;
}

.trailer-movie iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

@media screen and (max-width:768px) {

	.trailer-wrapper {
		padding: 22% 4% 0;
	}

	.trailer-movie {
		position: relative;
		width: 100%;
		height: 0;
		padding: 50% 0 0 0;
		left: auto;
		top: auto;
	}
    
    .trailer-nav-item {
        width: 30%;
    }

}