.carousel--container {
	width: 100%;
	height: 85vh;
	background-color: rgb(71, 71, 69);
	display: flex;
	flex: 1 1 100%;
	align-items: center;
	justify-content: center;
}

.swiper {
	width: 70%;
	height: fit-content;
	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

.carousel--img {
	height: 100%;
	width: 100%;
}
@media (max-width: 1000px) {
	.carousel--container {
		height: fit-content;
		padding: 1rem 1rem;
	}
	.swiper {
		width: 100%;
		height: fit-content;
		box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
	}
}
/* bottom section */
footer {
	align-items: center;
	justify-content: center;
	position: static;
	bottom: 0;
	left: 0;
	transform: translateX(0%);
}

/* form!!! */

.form--hero {
	display: grid;
	background-color: var(--grey-color);
	max-width: 1000px;
	margin: 0 auto 4rem;
	text-align: center;
}
.form--hero p {
	color: #000;
	font-weight: var(--regular-font-weight);
	font-size: 2rem;
	margin-top: 3rem;
}
.form--input {
	display: grid;
	gap: 2rem;
	margin-bottom: 3rem;
	grid-template-columns: repeat(1fr, 3);
	grid-template-rows: repeat(1fr, 2);
	border: none;
	grid-column-start: 1;
	grid-column-end: 3;
}
.form--input input {
	display: inline;
	border: 1px solid #c5c5c5;
	border-radius: 0%;
	width: auto;
	background-color: var(--grey-accent-color);
	padding: 1rem;
}
.fields-one input {
	width: 40%;
}
.fields-two input {
	width: 40%;
}
.fields-three textarea {
	max-width: calc(80% + 2rem);
	width: 100%;
	height: 100px;
	resize: none;
	font-size: 1rem;
	padding: 1rem;
	background-color: var(--grey-accent-color);
	border: 1px solid #c5c5c5;
	border-radius: 0%;
}
.fields-one input:nth-child(odd),
.fields-two input:nth-child(odd) {
	margin-right: 2rem;
}
.form--submit {
	border: none;
	position: relative;
	grid-column-start: 3;
	grid-column-end: 3;
	grid-row-start: 1;
	grid-row-end: 4;
}
.form--submit p {
	color: #fff;
	margin: 0 auto;
	font-size: 2rem;
	transform: translateY(0);
}
form p {
	margin-top: 3rem;
	grid-column-start: 1;
	grid-column-end: 3;
}

@media (max-width: 600px) {
	.form--hero {
		max-width: 85vw;
		justify-content: center;
		margin: 0 auto 2rem;
	}
	.form--submit {
		border: none;
		position: relative;
		grid-column-start: 1;
		grid-column-end: 3;
		grid-row-start: 4;
		grid-row-end: 4;
	}
	.form--input {
		display: grid;
		gap: 0rem;
		margin-bottom: 1rem;
		justify-content: center;
	}
	.fields-one input,
	.fields-two input {
		max-width: calc(80% + 0.25rem);
		width: 100%;
		gap: 0.25rem;
	}
	.fields-three textarea {
		max-width: calc(80% + 0.25rem);
		width: 100%;
		resize: none;
	}
	.fields-one input:nth-child(odd),
	.fields-two input:nth-child(odd) {
		margin-right: 0rem;
	}
	.form--hero p {
		font-size: 1.5rem;
		margin-top: 2rem;
	}
	.form--submit > p {
		margin: 0;
	}
}

/* form!!! */

.bottom--contact_footer-container {
	padding: 2rem 0.5rem 0rem;
	background: linear-gradient(
		275deg,
		rgba(196, 196, 196, 1) 0%,
		rgba(255, 255, 255, 1) 100%
	);
}
