* {
	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: #000000;
	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;
	}
}


/*----- Our Work -----*/
.OurWork {
	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;
}

.LargeImage {
	border-radius: 10px;
	margin-bottom: 5%;
	position: relative;
	overflow: hidden;
}

.LargeImage img {
	width: 100%;
	display: block;
}

@media(max-width: 720px) {
	.OurWork {
		padding-top: 50px;
		padding-bottom: 25px;
	}
	.Row {
		padding-top: 25px;
		display: block;
	}
}


/*----- Services Center -----*/
.ServicesCenter {
	width: 80%;
	margin: auto;
	text-align: center;
}

.Row {
	color: #EB1A33;
	margin-top: 5%;
	display: flex;
	justify-content: space-between;
}

.Row2 {
	color: #EB1A33;
	margin-top: 0%;
	display: flex;
	justify-content: space-between;
}

.SmallImage {
	flex-basis: 32%;
	border-radius: 10px;
	margin-bottom: 5%;
	position: relative;
	overflow: hidden;
}

.SmallImage img {
	width: 100%;
	border-radius: 10px;
}

@media(max-width: 720px) {
	.PetsCenter {
		padding-bottom: 25px;
	}
	.Row {
		padding-top: 25px;
		display: block;
	}
	.Row2 {
		display: block;
	}
}


/*----- 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;
	}
}