.contactContainer {
	width: 96%;
	min-height: 70vh;
	margin-left: 2%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	background-color: lightgreen;
	border-radius: 0 0 10px 10px;
}
/*-------------DIETER THEME & SOCIAL MEDIA---------------*/
.dieterTheme {
	width: 33%;
	min-height: 50vh;
	padding: 10px;
}
.dieterTheme h1, .dieterTheme h2 {
	text-align: center;
	line-height: 42px;
	position: relative;
	top: 18%;
}

.socialMedia {
	position: relative;
	top: 40%;
	display: flex;
	justify-content: center;
}
.dieterTheme .socialMedia ul li {
	display: flex;
	float: left;
	align-items: center;
}
.dieterTheme .socialMedia ul li a i {
	font-size: 28px;
}
.socialMedia .media1 {
	position: relative;
	right: 20%;}
.socialMedia .media3 {
	position: relative;
	left: 20%;}

/*-------------ADDRESS---------------*/
.dieterAddress {
	width: 33%;
	min-height: 50vh;
	padding: 10px;
}
.dieterAddress h2, .dieterAddress p {
	text-align: center;
	line-height: 29px;
	position: relative;
	top: 18%;
}

.dieterContacts {
	position: relative;
	top: 35%;
	display: flex;
	justify-content: center;
}
.dieterContacts ul li {
	list-style: none;
	line-height: 29px;
}

.dieterContacts ul li i {
	color: #000000;
	font-size: 22px;
}
.dieterContacts ul li a {
	text-decoration: none;
	color: #000;
}
@media screen and (max-width: 1024px) {
	.contactContainer, .dieterTheme, .dieterAddress {
		min-height: 30vh;
	}
}
@media screen and (max-width: 800px) {
	.contactContainer {
		width: 100%;
		margin-left: 0%;
	}
}
@media screen and (max-width: 600px) {
	.dieterTheme, .dieterAddress {
		width: 100%;
	}
	.contactContainer, .dieterTheme, .dieterAddress {
		min-height: 45vh;
	}
}
@media screen and (max-width: 350px) {
	.contactContainer, .dieterTheme, .dieterAddress {
		min-height: 60vh;
	}
}
/*-------------CONTACT FORM---------------*/
.contactBody {
	width: 30%;
	min-height: 400px;	
}
#contactSection {
	width: 100%;
	min-height: 400px;
	padding: 10px;
}
.formSection {
	width: 100%;
	min-height: 430px;
	border-radius: 12px;
	background: rgba(0,0,0,0.2);
	text-align: center;
	padding: 5px;
}
.formSection h1 {
	text-align: center;
	font-size: 24px;
	font-weight: bold; 
	color: #000;
}
.dieterContactForm {
	padding: 20px 0 0 0;
}
.dieterContactForm input {
	min-width: 90%;
	min-height: 35px;
	padding: 5px;
	border-radius: 8px;
	border: 0px solid black;
}
.dieterContactForm select {
	min-width: 90%;
	min-height: 35px;
	padding: 5px;
	border-radius: 8px;
	border: 0px solid black;
}
.dieterContactForm textarea {
	min-width: 90%;
	min-height: 60px;
	padding: 5px;
	border-radius: 8px;
	border: 0px solid black;
}
.dieterContactForm button {
	min-width: 20%;
	padding: 5px;
	border-radius: 8px;
	border: 0px solid black;
}
.dieterContactForm button:hover {
	background: #ddd;
	font-weight: bold;
}

.contactSubmitBtn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	color: #fff;
}
.contactSubmitBtn button {
	width: 
	color: #fff;
}
@media screen and (max-width: 800px) {
	.contactBody {
		width: 33%;	
	}
}
@media screen and (max-width: 600px) {
	.contactBody {
		width: 100%;	
	}
}
/*-------------DISCLAIMER---------------*/
.disclaimer {
	width: 80%;
	margin-left: 10%;
	padding: 20px;
	background-color: #80ffff;
	border-radius: 10px;
	box-shadow: 8px 8px 5px 0px rgba(0,0,0,0.7);
	transition: 1s;
}
.disclaimer:hover {
	transform: scale(0.97);
}
.disclaimer h2, .disclaimer p {
	text-align: center;
	padding: 10px;
	line-height: 32px;
}

/*-------------RESPONSIVE-MAP---------------*/
.map-responsive {
	width: 100%;
	min-height: 50vh;
	background-color: coral;
	display: flex;
	justify-content: center;
	position: relative;
	border: 2px solid #000;
}
.map-responsive iframe {
	position: absolute;
    left:0;
    top:0;
	width:100%;
    height:100%;
}

/*-------------COPYRIGHT BAR---------------*/
.copyright-bar {
	width: 100%;
	background-color: #000;
	color: #fff;
	text-align: center;
	padding: 15px 10px;
}