* {
	box-sizing: border-box;
}
html, body {
	height: 100%;
}
html {
	font-size: 18px;
}
body {
	display: flex;
	flex-direction: column;
	font-family: "Fira Sans", sans-serif;
	font-size: 1rem;
	line-height: 1.56;
	color: #000000;
	margin: 0;
	padding: 0;
	background-color: white;
}
b, strong {
	font-weight: 700;
}
p {
    margin-bottom: 1.5rem;
}
a, a:hover {
	color: #000000;
	text-decoration: none;
}
a:hover {
	color: #79ac2b;
}
.logo {
	margin-top: 13vw;
	max-width: 100%;
	height: auto;
}
h1 {
	font-weight: 700;
	margin-top: 67px;
    font-size: 46px;
    line-height: 1.1;
    margin-bottom: 45px;
	text-transform: uppercase;
}
.colored {
	color: #79ac2b;
}
.wrap-all {
	display: flex;
	flex: 1 0 auto;
	position: relative;
	background: url(header.svg) center top no-repeat;
    background-size: 100% auto;
}
.texts {
	text-align: center;
	max-width: 1150px;
    padding: 0 15px 50px;
    margin: 0 auto;
}
.details {
	justify-content: center;
	display: flex;
}
.item {
	display:flex;
	justify-content: flex-start;
	padding: 0 20px;
}
.item img {
    width: 25px;
    margin-right: 15px;
}
.main-footer {
	flex-shrink: 0;
	position: relative;
	z-index: 1;
	background: url(footer.svg) center bottom no-repeat;
    background-size: 100% auto;
	min-height: 7vw;
}
@media (max-width: 1199px) {
	.item {
		padding: 0 10px;
	}
}
@media (max-width: 992px) {
	h1 {
		margin-top: 35px;
		font-size: 33px;
		margin-bottom: 27px;
	}
	.wrap-all {
		background: url(header-mobile.svg) center top no-repeat;
		background-size: 100% auto;
	}
	.main-footer {
		background: url(footer-mobile.svg) center bottom no-repeat;
		background-size: 100% auto;
		min-height: 11vw;
	}
	.logo {
		margin-top: 28vw;
	}
	.item span {
		display: none;
	}
	.item img {
		width: 34px;
		margin-right: 8px;
	}
}
@media (max-width: 575px) {

}