* {
	margin: 0px;
	padding: 0px;
}

.Header {
	min-height: 100vh;
	width: 100%;
	background-image: url(Sources/MarvelousWallpaperGrey.png);
	background-position: center;
	background-size: cover;
	position: relative;
}

nav {
	display: flex;
	padding: 2% 6%;
	justify-content: space-between;
	align-items: center;
}

nav img {
	width: 150px;
}

.Nav-links {
	flex: 1;
	text-align: right;
}

.Nav-links ul li {
	list-style: none;
	display: inline-block;
	padding: 8px 12px;
	position: relative;
	font-family: 'Arya', sans-serif;
}

.Nav-links ul li a {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 24px;
}

.Nav-links ul li::after {
	content: '';
	width: 0%;
	height: 2px;
	background: #EB1A33;
	display: block;
	margin: auto;
	transition: 0.5s;
}

.Nav-links ul li:hover::after {
	width: 100%;
}

.TextBox {
	font-family: 'Arya', sans-serif;
	width: 80%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
}

.TextBox h1 {
	font-size: 50px;
	color: #000000;
}

.TextBox p {
	margin: 10px 0px 40px;
	font-size: 20px;
	color: #FFFFFF;
}

.VisitButton {
	display: inline-block;
	text-decoration: none;
	color: #000000;
	border-radius: 5px;
	border: 2px solid #000000;
	padding: 12px 34px;
	font-size: 18px;
	background: transparent;
	cursor: pointer;
	position: relative;
}

.VisitButton:hover {
	border: 2px solid #EB1A33;
	color: #FFFFFF;
	background: #EB1A33;
	transition: 1s;
}

nav .fa {
	display: none;
}

@media(max-width: 720px) {
	.TextBox h1 {
		font-size: 36px;
	}
	.TextBox p {
		font-size: 20px;
	}
	.Nav-links {
		position: fixed;
		background: #000000;
		height: 100vh;
		width: 200px;
		top: 0px;
		right: -200px;
		text-align: left;
		z-index: 2;
		transition: 1s;
	}
	.Nav-links ul li {
		display: block;
	}
	.Nav-links ul {
		padding: 30px;
	}
	nav .fa {
		display: block;
		color: #EB1A33;
		margin: 10px;
		font-size: 22px;
		cursor: pointer;
	}
}

/*----- Services -----*/
.Services {
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 100px;
}

h1 {
	font-family: 'Arya', sans-serif;
	font-size: 36px;
	font-weight: 600;
}

p {
	color: #777777;
	font-family: 'Arya', sans-serif;
	font-size: 20px;
	font-weight: 300;
	line-height: 22px;
	padding: 10px;
}

.Row {
	color: #EB1A33;
	margin-top: 5%;
	display: flex;
	justify-content: space-between;
}

h3 {
	text-align: center;
	font-family: 'Arya', sans-serif;
	font-weight: 600;
	margin: 10px 0px;
}

.OurServices {
	flex-basis: 32%;
	border-radius: 10px;
	margin-bottom: 5%;
	position: relative;
	overflow: hidden;
}

.OurServices img {
	width: 100%;
	display: block;
}

.Layer {
	font-family: 'Arya', sans-serif;
	color: #EB1A33;
	background: transparent;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.5s;
}

.Layer:hover {
	background: rgba(60, 60, 60, 0.5);
}

.Layer h3 {
	width: 100%;
	font-weight: 500;
	color: #EB1A33;
	font-size: 22px;
	bottom: 0;
	left: 50%;
	transform: translateX(-76%);
	position: absolute;
	opacity: 0;
	transition: 0.5s;
}

.Layer:hover h3 {
	bottom: 92%;
	opacity: 1;
}

@media(max-width: 720px) {
	.Services {
		padding-top: 50px;
	}
	.Row {
		flex-direction: column;
	}
}


/*----- WhyUs -----*/
.WhyUs {
	width: 80%;
	margin: auto;
	text-align: center;
	padding-top: 100px;
}

.ChooseUs {
	flex-basis: 32%;
	border-radius: 10px;
	margin-bottom: 5%;
	text-align: left;
}

.ChooseUs img {
	width: 100%;
	border-radius: 10px;
}

.ChooseUs p {
	padding: 0;
}

.ChooseUs h3 {
	margin-top: 16px;
	margin-bottom: 15px;
	text-align: left;
}

@media(max-width: 720px) {
	.WhyUs {
		padding-top: 50px;
	}
}


/*----- Footer -----*/
.Footer {
	width: 100%;
	text-align: center;
	padding: 30px 0px;
	padding-top: 120px;
	font-family: 'Arya', sans-serif;
}

.Footer h4 {
	margin-top: 10px;
	margin-bottom: 10px;
	font-family: 'Arya', sans-serif;
	font-weight: 600;
}

.Footer p {
	color: #777777;
	font-size: 16px;
}

.Icons .fa {
	color: #EB1A33;
	margin: 0px 10px;
	cursor: pointer;
	padding: 18px 0px;
	text-decoration: none;
}

@media(max-width: 720px) {
	.Footer p {
		font-size: 16px;
	}
}