
body{
	background-size: cover;
}


#contactWrapper h2{
	text-align: center;
	margin-top: 20px;
	margin-bottom: 5px;
}

#contactWrapper{
	margin-bottom: 40px;
	padding-bottom: 40px;
}

#map{
	display: block;
    width: 100%;
    height: 435px;
    margin-top: 68px;
	-webkit-box-shadow: 0px 10px 17px 0px rgba(0,0,0,0.35);
	-moz-box-shadow: 0px 10px 17px 0px rgba(0,0,0,0.35);
	box-shadow: 0px 10px 17px 0px rgba(0,0,0,0.35);
}

#contactWrapper h3{
	margin-top: 15px;
}

#contactWrapper h4{
	font-size: 15px;
	font-weight: 100;
	font-style: italic;
	color: #567BFF;
}

.managementWrapper{
	margin: auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	padding: 30px 40px;
	width: 90%;
}

.managementPerson{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 233px;
	height: 355px;
	padding: 15px;
	background-color: #EEEDED;
	margin: 0 5px 20px 0;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: 0.5s;
	-webkit-transition: 0.5s;
}

.managementPerson:hover{
	border: 1px solid black;
	background-color: #FFFFFF;
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}

.managmentPicture{
	width: 80%;
	height: auto;
	max-height: 230px;
	object-fit: cover;
}

.contactWrapper{
	align-items: flex-end;
	height: 70px;
	display: flex;
	width: 100%;
}

.contactContainer{
	width: 90%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

.iconContainer{
	width: 10%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

.smallIcon{
	margin-top: 15px;
	width: 18px;
	height: 16px;
}

.italic_parahraph{
	margin: 15px 0 0 10px;
	font-size: 14px;
	align-self: flex-start;
	font-style: italic;
}

.italic_parahraph.small_margin{
	margin: 0px;
}

.address{
	width: 20%;
	padding: 30px 5px 0 0;
	border-right: 1px solid #000000;
}

.addressHeader{
	margin-bottom: 20px;
}

.contactForm{
	width: 80%;
	max-width: 900px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	height: fit-content;
}

input{
	border-style: hidden;
	margin: 0 5px 30px 0;
	background-color: #F4F5F9;
	border-radius: 14px;
	height: 28px;
	width: 40%;
	padding: 15px;
	font-size: 14px;
	font-family: Century Gothic, sans-serif;
}

form{
	display:flex;
	justify-content: center;
	width: 70%;
}

input:focus,
textarea:focus{
	outline: none;
}

::placeholder{
	font-size: 24px;
	font-style: italic;
	font-weight: 100;
}

textarea{
	border-style: hidden;
	width: 100%;
	background-color: #F4F5F9;
	border-radius: 14px;
	font-size: 16px;
	padding: 30px 0 0 30px;
	font-family: Century Gothic, sans-serif;
	height: 200px;
}

.sendButton{
	border: none;
	background-color: #F4F5F9;
	text-align: center;
	padding: 14px;
	font-size: 24px;
	border-radius: 20px;
	margin-top: 30px;
	width: 30%;
	cursor: pointer;
	transition: 0.5s;
	-webkit-transition: 0.5s;
}

.sendButton:hover{
	color: #FFFFFF;
	background-color: #1841D1;
}

.mapContainer{
	width: 100%;
	padding: 110px 0;
	background-color: #1C1C1C;
}

.map{
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 800px){

	.address{
		display:none;
	}

	.contactForm{
		width: 100%;
	}

	input{
		width: 100%;
	}

	.sendButton{
		width: 100%;
	}

	#contactWrapper .left,
	#contactWrapper .right, 
	#contactWrapper .center{
		display: block;
		float: none;
		width: 100%;
	}
	
	#map{
		height: 340px;
	}
	
}