/** @format */
.caurasel_contacts {

	display: flex;
	/* Make the wrapper a flex container */
	overflow: hidden;
	/* Hide overflow content */
	height: 80%;
	background-image: url(../img/handshake.jpg);
	background-position: left;
	background-attachment: fixed;
	background-size: cover;
	font-size: small;
}

.contact-container {
	width: 50%;
	margin: 0;
	padding: 50px 20px;
	background-color: #000000b2;
}

.contact_page {
	width: 70vw;
	position: absolute;
	left: 50%;

	display: flex;
	justify-content: center;
	transform: translate(-50%, -70%) scale(0.8);
	opacity: 0;
	margin: auto;
	transition: opacity 0.3s ease-in-out, transform 0.7s ease-out;
}

.contact_information {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	color: var(--text_white);
	width: 40%;
	background-color: var(--background_sky);
	margin: 0;
	padding: 20px;
	overflow: hidden;
}

.contact_information img {
	width: 100%;
	margin-left: 50%;
	transition: 1s ease-out;
}

.contact_information a {
	color: var(--text_white);
}

.contact_page_banner {

	padding-top: 50px;
	height: 400px;

}

.contact-containe h2 {
	text-align: center;
	margin-bottom: 20px;
	color: var(--text_sky);
	font-family: 'Montserrat', 'Arial', sans-serif;
}

.form_header {
	color: #ffffff;
	font-family: 'Montserrat', 'Arial', sans-serif;
	padding: 20px;
}

form {
	display: flex;
	color: var(--text_sky);
	flex-direction: column;
	font-family: 'Montserrat', 'Arial', sans-serif;
}

label {
	color: var(--text_white);

	text-shadow: var(--shadow);
}

fieldset {
	border: none;
	padding: 20px 0;
}

fieldset div {

	padding: 5px 0;
}

legend {
	font-weight: bold;
	color: var(--text_white);
	text-shadow: var(--shadow);
	padding: 10px 0;
}

input[type='text'],
input[type='email'],
textarea {
	margin-bottom: 10px;
	padding: 10px;
	border: 1px solid var(--background_sky);
	border-radius: 4px;
	font-size: 16px;
	outline: none;
}

button {
	background-color: var(--background_sky);
	color: #fff;
	border: none;
	border-radius: 20px;
	padding: 10px 20px;
	margin-top: 20px;
	font-size: 16px;

	cursor: pointer;
	transition: background-color 0.3s ease;
}

button:hover {
	background-color: var(--background_semi_transparent_sky);
}

.mail_sent {
	text-align: center;
	padding: 50px;
}

@media screen and (max-width: 768px) {
	.contact-container {
		width: 100%;
		margin: 0;
	}

	.contact_page {
		display: block;
		width: 85%;
		margin: 0;
		padding: 100px 10px;
	}

	.contact_information {
		width: 100%;
	}

	.contact_page_banner {
		font-size: small;
		height: 900px;
		padding: 0;
		width: 100vw;
		margin: 0;
	}
}