/****Form****/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,700;1,600&display=swap');


@media (max-width: 964px){
	.contact-container
	{
		margin: 0 auto;
		width: 90%;
	}
}

@media (max-width: 700PX){
	.contact-container
	{
		grid-template-columns: 1fr;
		gap: 1rem;
		margin-top: 20rem !important;
	}

	.map iframe
	{
		height: 250px;
	}
}


*{
	font-family: 'Poppins', sans-serif;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
	box-sizing: border-box;
}

.contact-container
{
	max-width: 960px;
	margin: auto;
	width: 100%;
	display: flex;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	align-items: center;
	justify-content: space-around;
	color: rgb(193, 0, 0);
	border-radius: 1rem;
	overflow: hidden;
	flex-wrap: wrap;
}

.form-container
{
	padding: 50px;
}

.form-container h3
{
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 1rem;
}

.contact-form
{
	display: grid;
	row-gap: 1rem;
}

.contact-form input,
.contact-form textarea
{
	width: 350px;
	border: none;
	outline: none;
	background-color: rgb(43, 42, 42);
	padding: 10px;
	font-size: 0.9rem;
	color: rgb(198, 11, 11);
	text-decoration: none;
	border-radius: 0.4rem;
}

.contact-form textarea
{
	resize: none;
	height: 250px;
}

.contact-form .send-button
{
	border: none;
	outline: none;
	background-color: rgb(26, 25, 25);
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	cursor: pointer;
}

.contact-form .send-button:hover
{
	background-color: rgb(173, 13, 13);
	color: azure;
	transition: 0.3s;
}

.map iframe
{
	width: 450px;
	height: 350px;
}