* {
	margin: 0;
	padding: 0;
	font-family: 'Alkatra', cursive;
}
nav{
	position: fixed;
	background: #ff3300;
	width: 100%;
	padding: 10px 0;
	z-index: 12;
}
nav .menu{
	max-width: 1250px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px;
}
.menu .logo a{
	text-decoration: none;
	color: #990000;
	font-size: 35px;
	font-weight: 600;
}
.menu ul{
	display: inline-flex;
}
.menu ul li{
	list-style: none;
	margin-left: 7px;
}
.menu ul li a:first-child{
	margin-left: 0px;
}
.menu ul li a{ 
text-decoration: none;
color: #FFFFFF;
font-size: 18px;
font-weight: 500;
padding: 8px 15px;
border-radius: 5px;
transition: all .4s ease;
}
.menu ul li a:hover{
	background-color: #FFFFFF;
	color: #000000;
}
.img{
	background: url(mango.jpg) no-repeat;
	width: 100%;
	height: 100vh;
	background-size: cover;
	background-position: center;
	position: relative;
}
.center{
	position: absolute;
	top: 52%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	padding: 0 20px;
	text-align: center;
}
.center .title{
	color: #FFFFFF;
	font-size: 55px;
	font-weight: 600;
}
.center .sub_title{
	color: #FFFFFF;
	font-size: 30px;
	font-weight: 600;
}
.center .btns{
	margin-top: 45px;
}
.center .btns button{
	height: 69px;
	width: 200px;
	border-radius: 8px;
	margin: 0 20px;
	border: 2px solid white;
	font-size: 14px;
	font-weight: 500;
	padding: 0 10px;
	transition: all 0.3s ease;
	color: #ff3300;
	background: #9585hf;
}
.btns button:hover{
	background: #AAAAAA;
	color: #8574hn;
}
	






