:root {
	--fg-color: #FDF6EA;
	--bg-color: #5B6B5B;
	--ff: 'Barlow Condensed', sans-serif;
	--base-fs: 12px;
}

body {
	color: var(--fg-color);
	font-family: var(--ff);
	font-size: var(--base-fs);
	background-color: var(--bg-color);
	transition: font-size .4s;
}

body,
figure,
h1,
h2,
p {
	margin: 0;
	padding: 0;
}

figure img {
	width: 100%;
	height: auto;
}

h1 {
	font-size: 2.05em;
	font-weight: 400;
}

h2 {
	margin: 0 0 10px;
	font-size: 2em;
}

h3 {
	margin: 0 0 10px;
	font-size: 1.74em;
	font-weight: 400;
}

p {
	font-size: 1.5em;
}

p a {
	color: var(--fg-color);
	font-weight: 700;
	text-decoration: underline var(--fg-color);
	transition: all .4s;
}

p a:hover {
	color: #fff;
	text-decoration: underline #fff;
}

section {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.intro {
	/* display: flex; */
	/* flex-direction: column; */
	height: 100vh;
	min-height: 768px;
	text-align: center;
	background: url('bg.jpg') no-repeat center center;
	background-size: cover;
}

.intro-content {
	/* margin: auto; */
	width: 100%;
}

.info {
	width: 100%;
	height: auto;
	min-height: 0;
	padding: 50px 0;
	background: #2E3E2E;
}

.info-content {
	box-sizing: border-box;
	padding: 0 20px;
	width: 100%;
	text-align: center;
}

.logo {
	margin: 30px auto 45px;
	width: 35%;
	max-width: 295px;
	min-width: 200px;
}

.logo figure {
	position: relative;
	display: block;
	padding-bottom: 100%;
	width: 100%;
	height: 0;
}

.logo img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.intro-text {
	margin: 30px 0;
	/* transform: translateY(70px); */
}

.contacts-content {
	padding: 50px 10px;
}

.contacts-text {
	margin-top: 20px;
}

.contacts-text p+h2 {
	margin-top: 20px;
}

@media screen and (min-width: 570px) {

	body {
		font-size: 14px;
	}

}

@media screen and (min-width: 768px) {

	body {
		font-size: 16px;
	}

	section {
		height: 100vh;
		min-height: 600px;
	}

	.logo {
		margin-top: 0;
	}

	.intro-text {
		margin: 30px 0;
	}

	.intro-info {
		padding: 114px 0;
	}

	.intro-info-content {
		padding: 0 50px;
	}

	.contacts-content {
		display: flex;
		align-items: center;
		padding: 0;
		width: 95%;
		max-width: 1300px;
	}

	.contacts-content figure {
		width: 65%;
	}

	.contacts-text {
		margin-top: 0;
		margin-left: 5.5%;
	}

	.contacts-text p+h2 {
		margin-top: 50px;
	}

}