.contactPage h3 {
	text-align: center;
	font-weight: bold;
	font-size: 1.8rem;
	margin: 0;
}
.contactPage h4 {
	text-align: center;
	font-weight: bold;
	font-size: 1.8rem;
	margin-bottom: 10px;
	color: var(--blue-theme);
}
.contactPage h5 {
	margin: 0;
	font-size: 1rem;
	text-transform: uppercase;
}
.contactPage img {
	width: 80%;
	margin-left: 10%;
}
.contactPage {
	background-color: var(--grey-theme);
	padding: 2rem;
}
.contactPage .doubleBox {
	display: flex;
	width: 100%;
}
.contactPage .inputBox {
	width: 50%;
	margin: 0.5rem 0;
}
.contactPage label {
	display: inline-block;
	margin-bottom: 0.5rem;
}
.contactPage .inputBox input {
	width: 85%;
	height: 38px;
	outline: none;
	padding-left: 2%;
}
.contactPage textarea {
	width: 94%;
	height: 200px;
	font-family: inherit;
	font-size: inherit;
}
.submitBtn {
	display: block;
	text-transform: uppercase;
	padding: 0.5rem 1rem;
	margin-right: 1rem;
	margin-top: 1rem;
	background-color: var(--blue-theme);
	transition: all 0.3s ease;
	color: white;
	border: 2px var(--blue-theme) solid;
	cursor: pointer;
	width: fit-content;
}
.submitBtn:hover {
	transition: all 0.3s ease;
	background-color: transparent;
	color: var(--blue-theme);
}
@media all and (max-width: 1300px) {
	.contactPage > section {
		flex-direction: column;
	}
	.contactPage .half {
		width: 100%;
	}
	.contactPage .half.pu2 {
		padding: 0;
		margin: 8px;
	}
}

@media all and (max-width: 1000px) {
	.contactPage img {
		display: none;
	}
}

@media all and (max-width: 500px) {
	.contactPage .doubleBox {
		flex-wrap: wrap;
	}
	.contactPage .inputBox {
		width: 100%;
	}
}
