#main {
	height: auto;

	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;

	@media (max-width: 600px) {
		height: auto;
	}
}

#content {
	position: static;

	left: 0;
	top: 270px;

	width: 100%;
	height: auto;

	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;

	z-index: 3;

	@media (max-width: 600px) {
		margin-left: 0;
		margin-top: 33.5vw;

		left: auto;
		top: auto;

		width: 100vw;
		height: auto;
	}
}

#header-mobile-logo {
	background-image: url("../images/header-mobile-logo-dark.svg");
}

#header-mobile-phone-button {
	background-image: url("../images/header-mobile-phone-dark.svg");
}

#header-mobile-menu-button {
	background-image: url("../images/header-mobile-menu-dark.svg");
}

#block-1 {
	position: static;

	width: 1170px;
	padding-top: 270px;

	@media (max-width: 600px) {
		position: static;

		padding-top: 0;
		margin-left: 5vw;

		width: 90vw;
		height: 11vw;

		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
	}
}

#block-1-title {
	width: 1170px;

	@media (max-width: 600px) {
		position: static;

		width: 262px;
		height: 53px;

		left: auto;
		top: auto;
	}
}

#block-1-title p {
	font-family: 'Gogol';
	font-style: italic;
	font-weight: 400;
	font-size: 108px;
	line-height: 110%;
	text-align: center;
	vertical-align: top;

	color: #A14D2A;

	@media (max-width: 600px) {
		font-family: 'Gogol';
		font-style: normal;
		font-weight: 400;
		font-size: 31.4px;
		line-height: 110%;
		text-align: left;
	}
}

#block-1-separator {
	display: none;

	@media (max-width: 600px) {
		display: block;
		padding-bottom: 2.2vw;

		width: 32vw;
		height: 1px;

		border-top: 1px solid #A14D2A;
	}
}

#block-2 {
	position: static;

	padding-bottom: 100px;

	margin-top: 4.5vw;

	width: 1170px;
	height: auto;

	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;

	@media (max-width: 600px) {
		padding-top: 10vw;

		width: 90vw;
		height: auto;

		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}
}

#block-2 > pre {
	width: 1170px;
	white-space: pre-wrap;

	@media (max-width: 600px) {
		width: 90vw;
	}
}

#footer {
	position: relative;

	top: 0;

	@media (max-width: 600px) {
		top: 0;
	}
}