@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
	font-family: 'Poppins', sans-serif;
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}

.home {
	position: relative;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
}
.home img
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;

}
.home .slogan{
	position: relative;
	max-width: 750px;
	text-align: center;
}
.vflogo {
	max-width: 300px;
	min-width: 300px;
	margin-left: 50px;
}
h1 {
	font-size: 60px;
	font-weight: 900;
	max-width: 750px;
	text-align: center;
	display: block;


}
.experience {
	font-size: 40px;
	font-weight: bold;
	margin-bottom: 20px;
	background-color: rgba(255,255,255, .5);
	border-radius: 10px;
	line-height: 2em;

}

button {
	background-color: black;
	color: white;
	border-radius: 50px;
	height: 100px;
	width: 150px;
	position: relative;
	left: 100px;
	margin-bottom: 20px;
	margin-top: 20px;
	font-size: 20px;
}
button:hover {
	background-color: black;
	color: #ff0000;
	border: 2px solid #ff0000;
}
.about {
	background-color: #d93327;
	text-align: center;
	border-top: 2px solid black;
	margin-top: 0px;
	padding: 20px;
	font-weight: bold;
	color: #fcfcfc;
	display: flex;
	border-bottom: 2px solid black;
	width: 100%;
	position: relative;
}
h2 {
	text-align: center;
	display: block;
	font-size: 30px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 10px;
}
figcaption {
	font-size: xx-large;
}
.aboutP {
	max-width: 700px;
	display: flex;
	margin: 20px auto 10px auto;
	padding-bottom: 30px;
	padding-right: 30px;
	padding-left: 30px;
	clear: both;
	line-height: 2em;
	font-size: 30px;
	font-weight: 600;
}
.aboutBox{
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.services {
	background-color: #bdbdbd;
	margin-top: 0px;
	display: flex;
	text-align: center;
	font-weight: 600;
	font-size: 30px;
	overflow: hidden;
	width: 100%;
}
.services h2 {
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	padding: 20px;
	font-weight: 600;
	font-size: xx-large;
}
.content {
	clear: both;
	text-align: center;
	margin: auto;
}
figure img{
	max-width: 350px;
	max-height: 350px;
	min-height: 350px;
	min-width: 350px;
	margin-top: 20px;
	padding: 5px;
	border: 2px double black;
	float: left;
}
.figures {
	overflow: auto;
	display: flex;
}
.hidden {
	display: none;
}
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: white;
	color: black;
	min-height: fit-content;
	border-bottom: 2px solid black;
	margin-bottom: 0px;
}
.brand-title {
	font-size: 1.5rem;
	margin: .5rem;
}
.navbar-links ul {
	margin: 0;
	padding: 0;
	display: flex;
}
.navbar-links li {
	list-style: none;
	font-size: xx-large;
}
.navbar-links li a {
	text-decoration: none;
	color: black;
	padding: 1rem;
	display: block;
}
.navbar-links li:hover {
	background-color: black;
}
.navbar-links a:hover {
	color: #ff0000;
}
.toggle-button {
	position: absolute;
	top: .75rem;
	right: 2rem;
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 10%;
	height: 5%;
}
.toggle-button .bar {
	height: 5px;
	width: 100%;
	background-color: black;
	border-radius: 10px;
}
.contact
{
	padding: 100px;
	background-color: #d93327;
	text-align: center;
	border-top: 2px solid black;
}
.contact .VF
{
	width: 150px;
	height: 150px;
	align-items: center;
}
@media (max-width: 1200px) {

	.toggle-button {
		display: flex;
		margin-top: 30px;
		margin-bottom: 30px;
	}
	.navbar-links {
		display: none;
		width: 100%;
	}
	.navbar {
		flex-direction: column;
		align-items: flex-start;
	}
	.navbar-links ul {
		width: 100%;
		flex-direction: column;
	}
	.navbar-links li {
		text-align: center;
		font-size: xx-large;
	}
	.navbar-links li a {
		padding: .5rem 1rem;
	}
	.navbar-links.active {
		display: flex;
	}
	figure img {
		display: none;
	}
	.figures {
		display: none;
	}
	figure img{
		max-width: 700px;
		max-height: 700px;
		min-height: 700px;
		min-width: 700px;
		margin-top: 20px;
		padding: 5px;
		border: 2px double black;
		display: flex;
		margin-left: auto;
		margin-right: auto;
		clear: both;
	}
	.figures {
		display: block;
	}
	h2, figcaption {
		font-size: xx-large;
	}

	.aboutP {
		margin-top: 20px;
		max-width: 1000px;
	}
	

}
