body {
	position: relative;
	margin: 0;
	display: flex;
	justify-content: center;

	font-size: 1.125em;
	font-family: Helvetica, sans-serif;
}

.flag {
	position: absolute;
	left: 0;
	top: 0;
	margin: 0;
	height: 160px;
	width: 100%;
	background-size: contain;
	background-image: url("../img/flag-belarus.png");
	background-repeat: repeat-x;
}

header {
	width: 100%;
	max-width: 800px;
	margin: 110px 0 2vh;
	padding: 20px 30px 10px;
}
header h1 {
	color: #000;
	line-height: 1.25em;
}
header p {
	font-size: 1.25em;
	color: #555;
}

.content {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;

	width: 70vw;
}

article {
	width: 65%;
	min-width: 600px;
	padding: 20px 30px;

	box-sizing: border-box;

	color: #555;
}

h2 {
	margin: 50px 0 20px;
	color: #000;
}

h3 {
	margin: 20px 0 20px;
	color: #000;
}

a {
	cursor: pointer;

	color: rgb(190, 0, 4);
	white-space: nowrap;
	text-decoration: none;

	border-bottom: solid 1px transparent;

	transition: all 0.1s ease-out;
}
a:hover {
	border-color: rgb(190, 0, 4);
}

p {
	line-height: 1.5em;
}

li {
	margin: 15px 0;
	line-height: 1.5em;
}

hr {
	border: none;
	border-top: solid 1px #CCC;
}

aside {
	width: 35%;
	min-width: 320px;
	padding: 20px 30px;

	background-color: #F6F6F6;
	box-sizing: border-box;
	border-radius: 10px;

	color: #777;
	line-height: 1.5em;
}

footer {
	width: 100%;
	margin: 20px 0;
	padding: 20px 30px;

	border-top: solid 1px #DDD;

	color: #555;
}

.contact-list {
	display: flex;
	flex-wrap: wrap;

	font-size: 0.875em;
}
.contact-item {
	width: 33%;
	min-width: 200px;
	margin: 20px 0;

	box-sizing: border-box;

	line-height: 2em;
}
.contact-item-title {
	font-weight: bold;
	color: #000;
}
.contact-item-comment {
	color: #CCC;
}

/* ----------- iPhone 6+ ----------- */

/* Portrait and Landscape */
@media (max-width: 736px) {

	header {
		max-width: 100%;
		margin: 140px 0 1vh;
		padding: 20px 30px 0;
	}

	header h1 {
		font-size: 1.75em;
	}

	h2 {
		font-size: 1.375em;
	}

	.content {
		flex-direction: row;
		width: 100vw;
	}

	article {
		width: 100%;
		min-width: 100%;
	}

	aside {
		width: 100%;
		min-width: 100%;

		border-radius: 0px;
	}


	footer {
		border: none;
	}

	.contact-item {
		width: 100%;
		margin: 20px 0;
	}
}
