/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact {
	min-height: 60vh;
	padding: 155px 500px 0;
	transition: all 0.2s;
	text-align: center;
}

@media only screen and (max-width: 767px) {
	.contact {
		padding: 180px 60px 50px !important;
	}
}

/*--------------------------------------------------------------
# Contact Form
--------------------------------------------------------------*/

.contact-form {
	margin-bottom: 20px;
	padding-bottom: 20px;
	text-align: left;
}

.contact-form form {
	display: flex;
	flex-direction: column;
}

.contact-form label {
	font-weight: bold;
	margin-bottom: 5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	resize: vertical;
	padding: 10px;
	border-radius: 5px;
	border: none;
	margin-bottom: 15px;
	background-color: #f0eeee62;
}

.contact-form textarea {
	height: 100px;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
}

.contact-form button[type='submit'] {
	background-color: #69b7ff;
	color: white;
	border: none;
	border-radius: 5px;
	padding: 10px;
	font-weight: bold;
	cursor: pointer;
}

.contact-form button[type='submit']:hover {
	background-color: #3f8fdf;
}
