html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: top;
}

html {
	scroll-behavior: smooth;
}

body {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100vh;
	font-family: "Nunito", sans-serif;
	font-size: 16px;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	font-variation-settings: "wdth" 100;
	color: #000;
	line-height: 1.2;
	overflow-y: scroll;
}

header, main, nav, section, content, div, a, footer {
	display: block;
	box-sizing: border-box;
}

b {
	font-weight: 600;
}

a {
	text-decoration: none;
	color: inherit;
}

i {
	line-height: inherit !important;
	-webkit-font-smoothing: antialiased;
}

content {
	-webkit-box-flex: 1;
	-ms-flex: auto;
	flex: auto;
}

section {
	position: relative;
	width: calc(var(--vw,1vw) * 100);
	height: 100%;
	padding: 0 60px;
	margin: 0 auto;
	box-sizing: border-box;
}

.wrap {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
}

.main {
	display: flex;
	justify-content: center;
	align-items: stretch;
	width: calc(100 * var(--vw));
	height: 100vh;
	min-height: 1000px;
	padding: 60px 0;
	background-image: url(../img/bg.jpg);
	background-position: top center;
	background-size: cover;
	box-shadow: 0 0 0 20px #fff inset, 0 0 0 20px #fff;
	border-radius: 80px;
}

nav {
	display: flex;
	height: 60px;
	width: 100%;
}

.navlogo {
	height: 60px;
	transition: .3s;
}

.navlogo:hover {
	transform: scale(1.05);
}

.navlogo img {
	display: block;
	max-height: 100%;
}

.mainscreen {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.maininfo {
	display: flex;
	width: 100%;
}

.infoblock {
	display: flex;
	align-items: flex-end;
	width: 100%;
	height: auto;
	padding: 30px;
	background-image: url(../img/infoblock.jpg);
	background-position: center;
	background-size: cover;
	box-shadow: inset 0 -270px 200px -150px #000;
	border-radius: 40px;
	border: 10px solid #fff;
}

.infoblock h2 {
	width: 100%;
	color: #fff;
	font-size: 30px;
	font-weight: 600;
	border-left: 4px solid #c3e678;
	padding-left: 10px;
}

.infoblock h2 b {
	font-weight: 600;
	color: #c3e678;
}

.logo {
	max-width: 800px;
	margin-top: -60px;
	transition: .3s;
}

.logo:hover {
	transform: scale(1.05);
}

.logo img {
	display: block;
	max-width: 100%;
}