* {
	box-sizing: border-box;
	margin: 0;
	font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body {
	height: 100%;
	background: rgb(175, 175, 175);
	background: linear-gradient(32deg, rgb(0, 0, 0) 0%, rgb(97, 97, 97) 100%);
	background-repeat: no-repeat;
	background-size: cover;
}

.container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	min-width: 350px;
}

.box-container {
	max-width: 60%;
	box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
	background-color: white;
}

/* Banner */

.banner-container {
	height: 350px;
	background-image: url("../images/banner-ecf.png");
	filter: brightness(50%);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

/* Study explication container */

.study-explication-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 60px 60px 0 60px;
}

/* Contact form container */

.contact-form-container {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding: 20px 60px 60px 60px;
}

.contact-form {
	text-align: center;
	justify-content: center;
	align-items: center;
}

.form-image {
	max-width: 280px;
	height: auto;
}

form {
	max-width: 500px;
	min-width: 350px;
	margin: 0 auto;
	padding: 20px;
}

input,
textarea {
	background-color: #eee;
	border: none;
	border-radius: 20px;
	padding: 12px 15px;
	margin: 8px 0;
	width: 80%;
	font-size: 0.8rem;
}

input:focus,
textarea:focus {
	outline: 1px solid #940500;
}

.required-field-label {
	text-align: right;
	font-size: 12px;
	width: 88%;
	font-style: italic;
}

button {
	border-radius: 20px;
	border: 1px solid #940500;
	background-color: #940500;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	padding: 12px 45px;
	margin-top: 10px;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: transform 80ms ease-in;
	cursor: pointer;
}

button:hover {
	opacity: 0.8;
	transition: all 0.5s
}

/* Footer */

.footer-section {
	display: flex;
	justify-content: center;
}

footer {
	padding: 20px;
	text-align: center;
}


@media only screen and (max-width: 700px) {
	.form-image-container {
		display: none;
	}
}

@media only screen and (min-height: 1023px) {
	html {
		height: 100%;
	}
}

@media only screen and (max-width: 1180px) {
	.box-container {
		max-width: 100%;
		height: 100%;

	}

	.container {
		height: auto;
	}
}


@media only screen and (min-width: 1024px) and (max-width: 1180px) {
	.box-container {
		max-width: 100%;
		height: 100%;

	}

	.container {
		height: auto;
	}
}

@media only screen and (min-width: 2000px) {
	.box-container {
		width: 100%;
		max-width: 55%;
	}

	input,
	textarea {
		width: 71%;
	}

}