@charset "UTF-8";
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
a {
	text-decoration: none;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	font-weight: inherit;
	cursor: pointer;
}
h2 {
	font-size: 1rem;
	margin-bottom: 1rem;
}
header {
	background-color: #cb3b09;
	height: auto;
	width: 100%;
	display: flex;
	justify-content: space-evenly;
}
header .info {
	margin-top: 3em;
	font-size: 1em;
	color: white;
}
header .info:hover {
	cursor: pointer;
	color: gold;
}
header img {
	margin-top: 20px;
}
.spin {
	animation: rotate 5s linear infinite;
}
hr {
	background-color: white;
	border-color: white;
	border-width: 1.5px;
	margin: 0;
	width: auto;
}
@keyframes rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}
body.forma {
	background-color: #eceada;
	width: 100%;
	height: auto;
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 400;
}
body.small {
	background: url(/images/grey.png), url(/images/fon-forma.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 100vh;
}
body.small>.form {
	color: white;
}
body.small .form_label {
	margin: 1.5em;
}
.form {
	max-width: 850px;
	margin: 0px auto;
	color: #6e0f2d;
	font-family: "Montserrat", sans-serif;
	text-align: center;
}
.form_title{
	font-size: 40px;
	font-weight: 700;
	margin: 5% 0;
	text-align: center;
	font-size: 1.5em;
	}
.form_item {
	margin: 0px 0px 20px 0px;
	width: 100%;
}
.form_label {
	font-size: 18px;
	display: block;
	margin: 0.8em;
	text-align: left;
	padding-left: 10%
}
.form_input {
	min-height: 50px;
	padding: 0 20px;
	border-radius: 5px;
	font-size: 18px;
	color: #6e0f2d;
	font-family: "Montserrat", sans-serif;
	width: 100%;
	border-style: none;
}
textarea.form_input {
	padding: 20px 20px;
	min-height: 40px;
	resize: vertical;
	width: 80%;
}
.form_button {
	width: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 60px;
	background-color: #cb3b09;
	color: #ffffff;
	font-size: 18px;
	font-family: "Montserrat", sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 700;
	cursor: pointer;
	border-radius: 10px;
	border: 0;
	box-shadow: 6px 3px 20px 0px #6e0f2d,
	3px 2px 5px 0 #cb3b09;
	transition: background-color 0.5s ease 0s;
	position: relative;
	margin: 50px 25%;
	top: 0;
}
.form_button:hover {
	background-color: #6e0f2d;
}
@media (max-width: 767px) {
	header {
			width: 100%;
		}
	
		header img {
			max-width: 100%;
		}
	
		header .info {
			display: none;
		}
	
		header button {
			margin: 2.5em 10% 2.5em 0;
			padding: 0.6em;
			width: 100%;
			border-radius: 5px;
			font-size: 16px;
			box-shadow: 5px 5px 15px 0 #481403;	}
	.form {
	max-width: 100%;
	margin: 1.5em;
}
textarea.form_input{
	width: 100%;
	border-radius: 10px;
	font-size: 14px;
	line-height: 1.5em;
	padding: 5px;
	margin: 5%;
}
.form_button {
	width: 70%;
	margin: 0 17%;
}
.form_label {
margin: 0.8em 0;
font-size: 0.8em;
}
body.small {
	min-height: 100vh;
	height: auto;
	line-height: 1.3em;
	letter-spacing: 1px;
}
}
@media (min-width: 1224px) and (max-width: 1499px) {
.form {
	width: 80%;
	margin: 2em 29vh;
	text-align: center;
}
.form .form_label {
	text-align: left;
	padding-left: 10%;
}
textarea.form_input {
	width: 80%;
}
}
@media (min-width: 768px) and (max-width: 1223px){
.form {
	width: 80%;
	margin: 2em;
	text-align: center;
}
.form .form_label {
	text-align: left;
	padding-left: 10%;
}
.form_input {
	width: 100%;
}
textarea.form_input {
	width: 80%;
}
header .info {
	font-size: 0.8em;
}
body.small {
	min-height: 100vh;
	height: auto;
}
}