*{
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
}
.header{
	min-height: 100vh;
	width: 100% ;
	background-image: url(images/background.jpg);
	background-position: center;
	background-size: cover;
	position: relative;
}
.icons .fa{
	color: #f44336;
	margin: 0 18px;
	cursor: pointer;
	padding: 18px 0;
}
nav{
	display: flex;
	padding: 0;
	justify-content: space-between;
	align-items: center;
}
nav img{
	width: 175px;	
	padding-top: 30px;
	padding-left: 50px;
}
.nav-links{
	flex: 1;
	text-align: right;
}
.nav-links ul li{
	list-style: none;
	display: inline-block;
	padding: 12px 15px;
	position: relative;
}
.nav-links ul li a{
	color: #000000;
	text-decoration: none;
	font-size: 16px;
	font-weight: bold;
}
.nav-links ul li::after{
	content: '';
	width: 0%;
	height: 2px;
	background: #F44336;
	display: block;
	margin: auto;
	transition: 0.5s;
}
.nav-links ul li:hover::after{
	width: 100%;
}
.text-box{
	width: 90%;
	color: #ffffff;
	position: absolute;
	top: 58%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
    padding: 25px;
    background-color: rgba(225,225,225,.5);
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
}
.text-box h1{
	font-size: 40px;
    color: black;
}
.text-box h3{
	margin: 10 0 40px;
	font-size: 48px;
	color: black;
}
.text-box p{
	font-size: 18px;
	color: black;
	font-weight: bold;
}
nav .fa{
  	display: none;
}

@media only screen and (max-width: 1024px){
    .header{
	   width: 100% ;
    }
	.text-box h1{
		font-size: 20px;
	}
    .text-box h3{
	   margin: 10 0 40px;
	   font-size: 30px;
	   color: black;
    }
    .text-box p{
	   font-size: 14px;
	   color: black;
	   font-weight: bold;
    }
    nav img{
	   width: 100px;	
	   padding-top: 20px;
	   padding-left: 20px;
    }
	.nav-links ul li{
		display: block;
	}
    .nav-links ul li a{
	   color: #000000;
	   text-decoration: none;
	   font-size: 16px;
	   font-weight: bold;
    }
	.nav-links{
		position: absolute;
		background: #f44336;
		height: 100vh;
		width: 200px;
		top: 0;
		right: -200px;
		text-align: left;
		z-index: 2;
		transition: 1s;
	}
	nav .fa{
		display: block;
		color: #000000;
		margin: 20px;
		font-size: 22px;
		cursor: pointer;
	}
	.nav-links ul{
		padding: 25px;	
	}	
}
@media (max-width: 1024px) and (orientation: landscape){
    .header{
	   width: 100% ;
    }
	.text-box h1{
		font-size: 20px;
	}
    nav img{
	   width: 75px;	
	   padding-top: 15px;
	   padding-left: 20px;
    }
	.nav-links ul li{
		display: block;
	}
	.nav-links{
		position: absolute;
		background: #f44336;
		height: 100vh;
		width: 200px;
		top: 0;
		right: -200px;
		text-align: left;
		z-index: 2;
		transition: 1s;
	}
	nav .fa{
		display: block;
		color: #000000;
		margin: 20px;
		font-size: 20px;
		cursor: pointer;
	}
	.nav-links ul{
		padding: 25px;	
	}	
}

/*----- footer -----*/

.footer{
	width: 100%;
	text-align: center;
	padding: 30px 0;
}
.icons .fa{
	color: #f44336;
	margin: 0 5px;
	cursor: pointer;
	padding: 5px 0;
}
