#background {
	position: fixed;
	opacity: 0.5;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background-color: #e4e4e4;
}
.circle {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	filter: blur(30px);
	transform-origin: center;
	animation-timing-function: linear;
}
.content {
	position: relative;
	z-index: 1;
	padding: 20px;
}
body {
	background-color: #e4e4e4;
	margin: 0;
	padding: 0;
}
header {
	background-color: white;
	padding: 16px;
	font-family: 'Exo 2';
}
.nav-container {
	max-width: 1140px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.nav-container a {
	text-decoration: none;
	color: black;
	font-weight: 500;
}
.nav-container a:hover {
	text-decoration: underline;
}
.title {
	padding-left: 16px;
	padding-right: 16px;
	max-width: 1140px;
	margin: 0 auto;
	padding-top: 180px;
	padding-bottom: 8px;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
.content-block {
	margin: 0 auto;
	background-color: white;
}
.contents {
	max-width: 1140px;
	margin: 0 auto;
	padding: 16px;
	padding-top: 10px;
}
p {
	font-family: 'Exo 2';
	font-size: 26px;
}
h1 {
	font-family: 'Dela Gothic One';
	font-size: 40px;
	letter-spacing: 2px;
}
.footer div {
	position: absolute;
	top: 70px;
	margin: 0;
}
.footer-text p {
	font-size: 18px;
}
.content-footer-hr {
	margin-top: 48px;
	border-top: 2px solid #777;
}
.container-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 26px;
}
.container-row-text {
	max-width: 235px;
	align-content: center;
}
.contact-form {
max-width: calc(100% - 4px);
	margin: 0 auto;
	font-family: sans-serif;
}
.contact-form label {
	display: block;
	margin-top: 15px;
	font-size: 14px;
}
.contact-form input,
.contact-form textarea {
	width: 100%;
	border: none;
	border-bottom: 1px solid #ccc;
	padding-top: 8px;
	padding-bottom: 8px;
	font-size: 14px;
	outline: none;
	background-color: transparent;
	resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
	border-bottom-color: #000;
}
.contact-form button {
	margin-top: 20px;
	width: 300px;
	padding: 10px;
	font-size: 14px;
	background-color: black;
	color: white;
	border: none;
	border-radius: 0; /* без скруглений */
	cursor: pointer;
	text-transform: uppercase;
}
.contact-form button:hover {
	background-color: #333;
}
.home-mobile-menu {
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	visibility: hidden;
	z-index: 2;
	position: absolute;
	flex-direction: column;
	justify-content: space-between;
	background-color: #fff;
	display: none;
}
#footer-image {
	height: 400px;
	float: right;
}
#nav-container-2 {
	display: none;
}
@media (max-width: 1040px) {
	.footer-text {
		padding-top: 26px;
	}
	.footer div {
		position: relative;
		top: 1px;
	}
}
@media (max-width: 768px) {
	#footer-image {
		height: auto;
		width: 100%;
	}
	.content-footer-hr {
		margin-top: 30px;
	}
	.footer-text {
		padding-top: 1px;
	}
	.contents {
		padding-left: 32px;
		padding-right: 32px;
	}
	.title {
		padding-top: 120px;
		padding-left: 32px;
		padding-right: 32px;
	}
	h1 {
		font-size: 22px;
	}
	p {
		font-size: 18px;
	}
	#nav-container-1 {
		display: none;
	}
	#nav-container-2 {
		display: flex;
	}
	header {
		padding-left: 32px;
		padding-right: 32px;
	}
	.home-mobile-menu {
		width: 100%;
		visibility: hidden;
		display: none;
	}
	.container-photo {
		max-height: 200px;
		margin-bottom: 18px
	}
	.container-row {
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-bottom: 18px;
	}
	.container-row-text {
		max-width: 160px;
	}
}