*,
*:before,
*:after {
	margin: 0;
	padding: 0;
}

body {
	text-align: center;
}

.wrapper {
	width: 1400px;
	margin: 0 auto;	
}

header {
	height: 12vh;
	background-color: #6BC1C1;
	width: 100%;
	z-index: 12;
	position: fixed;
}

.logo {
	float: left;
	width: 10%;
	padding-top: 10px;
}

.logo img {
	width: 70px;
}

nav {
	float: right;
	line-height: 12vh;
}

nav a {
	text-decoration: none;
	letter-spacing: 1pt;
	font-size: 17pt;
	font-family: "Baloo 2", sans-serif;
	font-weight: bolder;
	color: #efe9cb;
	padding: 0 30px;
	position: relative;
}

a:after {
	content: "";
	position: absolute;
	height: 2px;
	width: 0;
	background-color: #efe9cb;
	transition: 0.4s;
	left: 0;
	bottom: -3px;
}

a:hover:after {
	width: 100%;
}

.banner-area {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 12vh;
	background-image: url('images/BGAboutTop.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	box-sizing: border-box;
}

.text {
	text-align: left;
	padding-left: 700px;
	box-sizing: border-box;
}

.banner-area h4 {
	margin-top: 130px;
	font-size: 60pt;
	font-family: Crimson Pro, serif;
	color: #363a3a;
	animation: headline 0.5s;	
}

@keyframes headline {
	from {
		bottom: -30px;
		opacity: 0%;
	}
	to {
		bottom: 0px;
		opacity: 100%;
	}
}

.banner-area h2 {
	font-family: Crimson Pro, serif;
	color: #363a3a;
	animation: subhead 1s;	
}

@keyframes subhead {
	from {
		bottom: -50px;
		opacity: 0%;
	}
	to {
		bottom: 0px;
		opacity: 100%;
	}
}

.banner-area p {
	animation: body 1.5s;	
}

@keyframes body {
	from {
		bottom: -30px;
		opacity: 0%;
	}
	to {
		bottom: 0px;
		opacity: 100%;
	}
}

p {
	margin-top: 20px;
	font-size: 13pt;
	font-family: "Baloo 2", sans-serif;
	color: #363a3a;
	letter-spacing: 0.8pt;
	font-weight: bolder;
}

.software {
	width: 100%;
	position: relative;
	top: 760px;
	height: 100vh;
	background-image: url('images/BGAboutMiddle.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.text2 {
	padding: 130px 0 0 105px;
	font-family: Crimson Pro, serif;
	color: #363a3a;
	float: left;
	text-align: left;
	box-sizing: border-box;
}

.text2 h1 {
	font-size: 55pt;
}

.text2 h2 {
	line-height: 0.7;
	font-size: 30pt;
}

.software-img {
	width: 100%;
	padding: 40px 10px 0;
	margin: 20px auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	box-sizing: border-box;
}

.box1 {
	width: 270px;
	margin: 0 5px;
	transition: 0.3s;
}

.box1:hover {
	transform: scale(1.1);
	z-index: 2;
}

.software-text {
	width: 100%;
	margin: auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.box p {
	width: 280px;
	margin: -20px 0;
	padding-left: 55px;
	box-sizing: border-box;
	font-size: 19pt;
	text-align: left;
	line-height: 1.5;
}

footer {
	position: relative;
	top: 739px;
	height: 171px;
	background-color: #5b6b6b;
	width: 100%;
}

.site {
	display: flex;
}

footer p {
	color: #efe9cb;
	font-size: 12pt;
	float: left;
	padding: 10px 0 30px 95px;
	margin-top: 20px;
	font-family: "Baloo 2", sans-serif;
	letter-spacing: 0.8pt;
}

.site p:hover {
	text-decoration: underline;
}