@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Seymour+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tilt+Warp&display=swap');

.contact-section {
	width: 80%;
	height: auto;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	padding: 10px;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0px 0px 10px 0px #666;
	font-family: 'Tilt Warp', sans-serif;
}

.contact-map {
	width: 100%;
	height: auto;
	flex: 50%;
}

.contact-map iframe {
	width: 100%;
	height: 100%;
}

.contact-form {
	width: 100%;
	height: auto;
	flex: 50%;
	padding: 30px;
	text-align: center;
}

.contact-form h1 {
	margin-bottom: 5px;
	text-transform: uppercase;
	font-family: 'Tilt Warp', sans-serif;
}

.contact-form-txt {
	width: 100%;
	height: 40px;
	color: #000;
	border: 1px solid #bcbcbc;
	border-radius: 12px;
	outline: none;
	margin-bottom: 20px;
	padding: 15px;
	font-family: 'Tilt Warp', sans-serif;
}

.contact-form-txt::placeholder {
	color: #aaa;
}

.contact-form-textarea {
	width: 100%;
	height: 130px;
	color: #000;
	border: 1px solid #bcbcbc;
	border-radius: 12px;
	outline: none;
	margin-bottom: 20px;
	padding: 15px;
	font-family: 'Tilt Warp', sans-serif;
	resize: none;
}

.contact-form-textarea::placeholder {
	color: #aaa;
}

.contact-form-btn {
	width: 100%;
	border: none;
	outline: none;
	border-radius: 12px;
	background: rgb(20,30,30);
	color: #fff;
	text-transform: uppercase;
	padding: 10px 0;
	cursor: pointer;
	font-size: 18px;
	font-family: 'Tilt Warp', sans-serif;
}