*{
	margin:0;
	padding:0;
	font-family:'poppins',sans-serif;
	box-sizing:border-box;
}
body{
	background:#000;
	
}
.header{
	width:100%;
	height:100vh;
	background-image:linear-gradient(rgb(0,0,0,0.4),rgb(0,0,0,0.4)),url('header-image.png');
	background-size:cover;
	background-position :center;
	padding:10px 8px;
	position:relative;
}

nav{
	display:flax;
	align-items:center;
	justify-content:space-between;
	padding: 15px 0;
	margin-right: 15px;
}

.logo{
	width:150px;
	cursor:pointer;
	margin-left: 80px;
	margin-top: 20px;
}
nav button{
	border:0;	
	outline:0;
	background:#db0001;
	color:#fff;
	padding:10px 30px;
	font-size: 12px;
	border-radius:4px;
	margin-left:15px;
	cursor:pointer;
	float:right;
	margin-top:-20px;
	margin-right: 12px;
	
}

/*select button section*/
select{
	display:inline-flex;
	align-items:center;
	background:black;
	border:1px solid white;
	padding:7px 14px;
	color: white;
	float: right;
	border-radius: 5px;
	margin-top: -19px;
	cursor:pointer;
	font-size: 12px;
}

.language-btn img{
	width: 12px;
	margin-left:10px;
}

.header-content{
	position:absolute;
	top:40%;
	left:50%;
	transform:translate(-50%,-50%);
	text-align:center;
	margin-top:100px;
	color: white;
}

.header-content h1{
	font-size:60px;
	line-height:70px;
	font-weight:600;
	max-width:650px;
}

.header-content h3{
	font-weight:400px;
	margin-bottom:-10px;
}

.header-content p{
	margin-top: 10px;
}

.nav-button{
	padding-right: 17px;
}

.email-signup{
	margin-top: 20px;
}

.input{
	width: 50%;
	padding: 11px;
	text-align: left;
	border-radius: 10px;
	border: solid-white 2px;	
	background: transparent;
	color: white;
	font-size: 15px;
}

.button{
	padding: 12px 30px;
	background-color: red;
	color: white;
	border-radius: 10px;
	border: none;
	font-size: 15px;
	cursor: pointer;
}

h2{	
	color: white;
	font-size: 30px;
	font-style: Arial;
	margin-left: 110px;	
	padding: 10px 10px;
}

.movies_cards{
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
	width: 90%;
	padding-left: 150px;
}
.movies_cards img{
	width: 195px;
	height: 225px;
	border-radius: 10px;
}

.informatiom_cards{
	height: auto;
	width: 100%;
}

.informatiom_cards h3{
	color: white;
	font-size: 26px;
	margin: 20px 0 10px 110px;
}

.cards {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 50px;
}

.box{
	width: 250px;
	height: 240px;
	border: 1px;
	background-color: rgb(33, 33, 109);
	border-radius: 10px;
	padding: 20px;
	cursor: pointer;
}

.box strong {
	padding: 20px 0;

	color: rgba(255, 255, 255, 0.933);
}

.box p {
	color: rgba(255, 255, 255, 0.725);
	padding-top: 15px;
}



