*,
*:before,
*:after {
	margin: 0;
	padding: 0;
}

html {
  scroll-behavior: smooth;
}

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: 88vh;
	position: absolute;
	top: 12vh;
	background-image: url('images/BGcontact.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	box-sizing: border-box;
	text-align: center;
}

.banner-area h4 {
	margin-top: 55px;
	font-size: 60pt;
	font-family: Crimson Pro, serif;
	color: #363a3a;
	position: relative;
	animation: reachme 0.5s;	
}

@keyframes reachme {
	from {
		bottom: -20px;
		opacity: 0%;
	}
	to {
		bottom: 0px;
		opacity: 100%;
	}
}

.icon {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
}

.icon > div {
	width: 100px;
	margin: 5px 40px;
}

.icon img {
	transition: transform 0.5s;
	position: relative;
	animation: icon 1s;	
}

@keyframes icon {
	from {
		bottom: -20px;
		opacity: 0%;
	}
	to {
		bottom: 0px;
		opacity: 100%;
	}
}

.icon img:hover {
	transform: scale(1.2);
	opacity: 80%;
}

input[type=text], select, textarea {
	width: 500px;
	padding: 10px;
	box-sizing: border-box;
	text-align: center;
	background-color: #363a3a;
	color: #efe9cb;
	border-radius: 12px;
	border: none;
	display: block;
	word-spacing: 2pt;
	font-family: "Baloo 2", sans-serif;
	font-size: 17px;
	margin: 10px auto;
}

input[type=submit] {
	background-color: #363a3a;
	color: #efe9cb;
	padding: 9px 20px;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	word-spacing: 2pt;
	text-align: center;
	font-family: "Baloo 2", sans-serif;
	font-size: 17px;
}

input[type=submit]:hover {
	background-color: #5b6b6b;
}

.container {
	text-align: center;
	padding: 20px;
	position: relative;
	animation: container 1.5s;	
}

@keyframes container {
	from {
		bottom: -20px;
		opacity: 0%;
	}
	to {
		bottom: 0px;
		opacity: 100%;
	}
}

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;
}