/* Contact */

.contact {
	width: 100%;
	height: 100%;
	background-color: #9fad9e;
	background-image: linear-gradient(to top right, #9fad9e, #a5c5a2);
	padding-bottom: 80px;
	padding-top: 40px;
}

.contact__top {
	width: 100%;
	text-align: center;
}

.contact__topText {
	font-size: 40px;
	line-height: 50px;
	color: black;
	margin-bottom: 10px;
}

.contact__topUnderline {
	width: 150px;
	height: 2px;
	background-color: black;
	margin: auto;
	margin-top: 25px;
	margin-bottom: 50px;
}

.contact__image {
	width: 100%;
	border-radius: 50%;
}

@media (min-width: 1000px) {
	.contact__imageWrapper {
		display: inline-block;
		vertical-align: top;
		width: 30%;
		margin-left: 10%;
		margin-right: 10%;
	}

	.information {
		display: inline-block;
		vertical-align: top;
		width: 50%;
	}
	
	.information__wrapper {
		padding: 40px 20px;
	}
}

@media (max-width: 1000px) {
	.contact__imageWrapper {
		width: 70%;
		margin-left: 15%;
		margin-right: 15%;
	}

	.information {
		width: 100%;
	}
	
	.information__wrapper {
		padding: 20px;
	}
}

.information__item {
	margin: 20px;
	text-align: center;
}

.information__title {
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: bold;
}

.information__icon {
	max-width: 20px;
	max-height: 20px;
	margin-right: 10px;
}

.information__text {
	font-size: 18px;
}

/* Form */

@media (min-width: 1000px) {
	.form {
		display: inline-block;
		vertical-align: top;
		width: 40%;
		margin-left: 5%;
		margin-right: 5%;
		margin-top: -40px;
		margin-bottom: 40px;
		background-color: white;
		border-radius: 8px;
	}
}

@media (max-width: 1000px) {
	.form {
		vertical-align: top;
		width: 90%;
		margin-left: 5%;
		margin-right: 5%;
		margin-top: -40px;
		margin-bottom: 40px;
		background-color: white;
		border-radius: 8px;
	}
}

.form__table {
	width: 100%;
}

.form__title {
	font-size: 40px;
	line-height: 50px;
	color: black;
	margin-bottom: 10px;
}

.form__titleUnderline {
	width: 100px;
	height: 2px;
	background-color: #9fad9e;
	margin: auto;
	margin-top: 25px;
	margin-bottom: 40px;
}

.form__input {
	padding: 4px;
    width: 70%;
    margin-left: 15%;
    border: 1px solid #8a8a8a;
}

.form__button {
	margin-left: 75%;
    width: 12%;
}

.form__message {
	font-size: 18px;
    margin-left: 70%;
}

.form__send {
	font-size: 18px;
}

/* Social Media */

@media (min-width: 1000px) {
	.media {
		display: inline-block;
		vertical-align: top;
		width: 40%;
		margin-left: 5%;
		margin-right: 5%;
		margin-top: -40px;
		margin-bottom: 40px;
		background-color: white;
		border-radius: 8px;
	}
}

@media (max-width: 1000px) {
	.media {
		vertical-align: top;
		width: 90%;
		margin-left: 5%;
		margin-right: 5%;
		margin-top: 40px;
		margin-bottom: 40px;
		background-color: white;
		border-radius: 8px;
	}
}

.media__table {
	width: 100%;
	text-align: center;
}

.media__title {
	font-size: 40px;
	line-height: 50px;
	color: black;
	margin-bottom: 10px;
}

.media__titleUnderline {
	width: 100px;
	height: 2px;
	background-color: #9fad9e;
	margin: auto;
	margin-top: 25px;
	margin-bottom: 40px;
}

.media__link {
	cursor: pointer;
}

.media__wrapper {
	display: inline-block;
}

.media__icon {
	display: inline-block;
	vertical-align: middle;
	max-width: 50px;
	max-height: 50px;
	margin-right: 10px;
	margin-top: 10px;
}

.media__text {
	display: inline-block;
	vertical-align: middle;
	font-size: 18px;
	transform: translate(6px, 6px);
}

.media__tagline {
	margin-top: 10px;
	font-size: 16px;
}

/* Map */

.map {
	width: 100%;
	border-top: 1px solid #9fad9e;
}

.map__iframe {
	width: 100%;
	height: 300px;
	vertical-align: middle;
}