* {
	/* border: 1px solid #ddd; */
	box-sizing: border-box;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

body {
	font-size: 16px;
	font-family: 'Montserrat';
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100vh;
	color: #fff;
	background-image: url('../img/slide-home.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 0;
	margin: 0;
}

img{max-width: 100%;}

header,
footer {
	width: 100%;
	min-height: 90px;
	background-color: #000;
}

h1 {
	font-weight: 600;
	font-size: 42px;
	margin-bottom: 15px;
}

h3 {
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 15px;
}

section {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

a {
	text-decoration: none;
	color: inherit;
}

.flex {
	display: flex;
}

.flex-1 {
	flex: 1;
}

.justify-content-between {
	justify-content: space-between;
}

.align-items-center {
	align-items: center;
}

.gap-1 {
	gap: 1em;
}

.gap-2 {
	gap: 2em;
}

.py-1 {
	padding: 1em 0 !important;
}

.py-2 {
	padding: 2em 0 !important;
}

.gap-3 {
	gap: 3em;
}

.mb-1 {
	margin-bottom: 1em;
}

.mb-2 {
	margin-bottom: 2em;
}

.wrapper {
	width: 100%;
	max-width: 1280px;
	padding: 0 20px;
	margin: 0 auto;
}

.content {
	background-color: #2d5770;
}

.field-row {
	width: 100%;
	margin-bottom: 15px;
}

.contact-info li {
	margin-bottom: 1em;
}

.content {
	padding: 20px 50px;
	border-radius: 5px;
}

[type="text"],
[type="email"] {
	min-height: 40px;
	border: 1px solid transparent;
	width: 100%;
	padding: 0 10px;
	font-size: inherit;
	border-radius: 3px;
}

[type="text"].error,
[type="email"].error {
	border-color: #ff6363;
}

.form-text-error {
	display: block;
	color: #ff6363;
	margin-top: 5px;
}

.form-text-error:empty{
	margin: 0;
}

[type="submit"],
[type="button"] {
	border: none;
	padding: 10px 20px;
	border-radius: 3px;
	background-color: #0d19d4;
	color: inherit;
	font-size: 18px;
	cursor: pointer;
}

[name="contact[ari-contacts]"] {
	max-width: 150px;
}

.about-info {
	max-width: 60%;
}

.about-description {
	color: #FFFFFFA8;
	font-size: 20px;
	font-weight: 400;
	line-height: 28px;
}

.footer-logo>img {
	width: 60px;
}

[type="checkbox"] {
	width: 20px;
	height: 20px;
}

[type="checkbox"].error + span{
	color: #ff6363;
}

#image-ari-contacts {
	width: 80px;
	height: 40px;
	border-radius: 3px;
	cursor: pointer;
}

#contact-us-success:not([hidden]) {
	border: 1px solid #fff;
	display: flex;
	min-height: 320px;
	align-items: center;
	padding: 20px;
	border-radius: 3px;
	font-size: 20px;
}

@media screen and (max-width: 1200px) {

	h1{
		font-size: 30px;
	}

	.about-description{
		font-size: 16px;
	}

	.content{
		flex-direction: column;
		align-items: center;
		padding: 15px;
		max-width: calc(100% - 25px);
	}

	.about-info{
		max-width: 100%;
	}
}