.footerContact{
	display: none;
}

/* START hero */
.hero{
	min-height: 70vh;
	height: auto;
}

.hero .serarator{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
	display: flex;
}

@media screen and (max-width: 650px) {
	.hero{
		min-height: 30vh;
		height: auto;
	}
}

/* END hero */


/* START introHero */
.introHero .containerImg{
	width: 100%;
	display: flex;
	justify-content: center;
}

.introHero .logo{
	width: auto;
	height: 40vh;
	display: flex;
	z-index: 1;
}

.introHero .introText{
	align-items: center;
}

.introHero .introText svg{
	width: 6em;
	height: auto;
}

/* END introHero */

/* START contact */
.contact .uniformSpacing {
	display: flex;
	flex-direction: column;
	gap: 1.5em;
}

.contact .containerFormContact {
	display: flex;
	gap: 5em;
}

.contact form {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	width: 50%;
}

.contact form input{
	width: calc((100% - 2em) / 2);
	padding: 1em;
	border: 1px solid #D6D6D6;
	border-radius: calc(var(--basicRadius) / 2);
}

.contact form textarea{
	width: 100%;
	padding: 1em;
	border: 1px solid #D6D6D6;
	border-radius: calc(var(--basicRadius) / 2);
	min-height: 10em;
}

.contact form button{
	color: var(--basicWhite);
	background-color: var(--basicColor1);
	text-align: center;
	padding: 1em;
	border: 1px solid #D6D6D6;
	border-radius: calc(var(--basicRadius) / 2);
	cursor: pointer;
}

.contact .contactContainer {
	display: flex;
	flex-direction: column;
	gap: 1.25em;
	width: 50%;
	justify-content: center;
}

.contact .contactContainer div {
	width: 100%;
	background-color: var(--basicWhite);
	display: flex;
	align-items: center;
	gap: .5em;
	padding: 1.5em;
	height: fit-content;
	border: none;
	position: relative;
	box-shadow: 0px 3px 15px #00000029;
}

.contact .contactContainer div span {
	display: flex;
}

.contact .contactContainer div svg {
	width: 1.5em;
	height: 1.5em;
}


@media screen and (max-width: 1100px) {
	.contact .contactContainer div {
		padding: 1em;
	}
	.contact .containerFormContact{
		flex-direction: column-reverse;
	}

	.contact form, .contact .contactContainer{
		width: 100%;
	}

	.contact .containerFormContact{
		gap: 2.5em;
	}

}

@media screen and (max-width: 500px) {
	.contact .contactContainer div{
		width: 100%;
	}

	.contact form input{
		width: 100%
	}
}
/* END contact */

iframe {
	width: 100%;
	height: 20em;
}