@import url('https:??fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins',sans-serif;
}
body
{
	background: black;
}
header
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 100px;
	z-index: 100;
}
header .logo img
{
	max-width: 150px;
}
.navigation
{
	display: flex;
}
.navigation li
{
	list-style: none;
	margin: 0 10px;
}
.navigation li a
{
	color: white;
	text-decoration: none;
	font-weight: 500;
	letter-spacing: 1px;
}
.navigation li:hover a{
	color: #de0611;
}
.search
{
	position: relative;
	width: 300px;
	height: 40px;

}
.search input
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: white;
	background:transparent;
	border: 1px solid rgba(255, 255, 2555, 0.5);
	outline:none;
	border-radius: 4px;
	backdrop-filter: blur(10px);
	padding: 0 10px 0 45px;	
}
.search input::placeholder
{
	color:white;

}
.search .fa-search
{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	padding-right: 10px;
	padding-left: 10px;
	color:white;
	border-right: 1px solid white
}
.banner
{
	position: relative;
	width:100%;
	min-height: 100vh;
	padding :0 100px;
	display:flex;
	justify-content:center;
	align-items: center;
}
.banner .bg{
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.content
{
	position:relative;
	z-index:1;
	max-height: 550px;

}
.movieTitle{
	width: 70%;
}
.banner .content h4
{font-size: 100%;
	color: rgba(255, 255, 2555, 0.5);
	font-weight: 500;
}
.banner .content h4 span
{
	padding: 0 10px;
	border-right: 1px solid rgba(255, 255, 2555, 0.5);

}
.banner .content h4 span:first-child{
	padding-left: 0;
}
.banner .content h4 span:last-child
{
	border-right: none;
}
.banner .content h4 span i
{
	background:#de0611;
	color: white;
	padding: 0 8px;
	display: inline-block;
	font-style:normal;
	border-radius: 2px
}
.banner .content p
{width: 50%;
	font-style: 1em;
	font-weight: 300;
	line-height: 1.5em;
	color:white;
	margin: 20px 0 20px;
}
.banner .content .buttons
{
	position: relative;

}
.banner .content .buttons a
{
	position: relative;
	display: inline-block;
	margin-right: 10px;
	background:#de0611;
	color:white;
	padding: 6px 20px;
	text-decoration: none;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform:uppercase;
}
.banner .content .buttons a:nth-child(2)
{
	background:rgba(14, 13, 13, 0.5);
	border: 1px solid rgba(255, 255, 2555, 0.1);
}
.banner .content .buttons a:hover:nth-child(2)
{
	background: red;
}
.play
{
	position: absolute;	
	bottom: 50px;
	left: 100px;
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	color:#fff;
	text-transform: uppercase;
	font-weight:500;
	text-decoration: none;
	letter-spacing: 1px;
	font-size: 1.2em;
	cursor: pointer;
}
.play img
{
	margin-right: 10px;
	max-width:50px;

}
.trailer{
	position: fixed;
	top: 50%;
	left: 50%;
transform: translate(-50%, -50%);
z-index: 1000;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
backdrop-filter: blur(10px);
visibility: hidden;
opacity: 0;
}
.active{
	visibility: visible;
	opacity: 1;
}
.trailer video{
	max-width: 900px;
	outline: none;
}
.trailer img{
	width: 3%;
}
.close{
	position: absolute;
	top: 30px;
	right: 40px;
	cursor: pointer;
	filter: invert(1);
	max-width: 32px;
}
.footer {
	max-width: 70%;
	margin: 1rem auto;
	overflow: auto;
}

.footer,
.footer a {
	color: #999;
	font-size: 0.9rem;
}

.footer p {
	margin-bottom: 1.5rem;
}

.footer .footer-cols {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 2rem;
}

.footer li {
	line-height: 1.9;
}

.footer .lang-select {
	margin-top: 2rem;
	color: #999;
	background-color: #000;
	background-image: none;
	border: 1px solid #333;
	padding: 1rem 1.2rem;
	border-radius: 5px;
}


@media(max-width: 991px){
header{
padding: 20px 50px;
flex-direction: column;
}

.navigation{
		display: flex;
		margin:10px 0px;
		flex-wrap: wrap;
		justify-content: center;
}
.banner {
	padding: 120px 50px;
}

.banner .play{
	left: 50px;
	font-size: 1em;
}
.trailer video{
	max-width: 90%;
}
.banner .content p{
width: 90%;
}

.footer .footer-cols {
	grid-template-columns: repeat(2, 1fr);
}
}
@media(max-width:600px){
.search{
	position: relative;
	width: calc(100% - 20px);
	height: 40px;
}
.banner .content{
	padding: 130px 20px 100px;
}
.banner .play{
	left: 20px;
	font-size: 1em;
	bottom: 50px;
}
.movieTitle{
	width: 90%;
	padding-bottom: 15px;
}
.banner .content h4{
	text-align: center;
	
}

.banner .content h4 span{
	margin-bottom: 20px;
	
}
.buttons a{
margin-bottom: 10px;
}
.banner .content p{
	width: 100%;
	}
}
