* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'poppins', sans-serif;
}

.contact-hero {
	width: 100%;



}


form {
	margin: auto;
	padding: 2em;
	width: 100%;
	max-width: 600px;


}

.input-group {

	margin-bottom: 30px;
	position: relative;


}

input,
textarea {

	width: 100%;
	padding: 10px;
	outline: 0;
	border: none;
	border-bottom: 1px solid gray;
	background: transparent;
	font-size: 15px;


}

label {
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	padding: 10px;
	color: #938787;
	cursor: text;
	transition: 0.2s;

}

button {
	padding: 10px 0;
	color: #938787;
	outline: none;
	background: transparent;
	border: 1px solid #938787;
	width: 100%;
	cursor: pointer;
}

input:focus~label,
input:valid~label,
textarea:focus~label,
textarea:valid~label {

	top: -35px;
	font-size: 14px;

}

.row {
	display: flex;
	align-items: center;
	justify-content: space-between;

}

.row .input-group {
	flex-basis: 100%;


}

.contact-container {
	padding: 5em;
	width: 100%;
	display: flex;

	justify-content: space-between;


}

.contact-left {
	width: 50%;
	height: 100px;
	background-color: white;
	height: fit-content;


}

.contact-right {

	min-width: 350px;
	width: 50%;
	background-color: white;
	height: fit-content;
}

.contact-left h1 {
	margin-bottom: 1em;
}

.contact-left p {
	margin-bottom: .5em;
}

.contact-left a {

	color: rgb(226, 226, 226);
	text-decoration: none;
	letter-spacing: 1px;
	font-weight: bold;
	font-size: 14px;
}

.contact-left a:hover {
	color: orange;
}







@media screen and (max-width:768px) {
	.contact-container {
		flex-direction: column;
	}

	.contact-left {
		width: 100%;
		padding: 50px;
	}

	.contact-container {

		padding: 1em;
	}

	.contact-right {

		display: block;
		width: 100%;
		background-color: white;
		height: fit-content;



	}
}