html, body {
	margin: 0;
	padding: 0;
}
body a {
	text-decoration: none;
}

.header .menu {
	background-color: black;
	padding: 20px 0;
}
.header .menu a {
	color: white;
	text-decoration: none;
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
}
.header .menu .logo {
	width: 90px;
}
.header .menu .logo img {
	width: 100%;
}

.header .menu .menu-item {
	display: flex;
}

.bg {
	background-size:cover;
	-moz-background-size: cover;
	-webkit-background-size: cover;
	-o-background-size: cover;
}
.bg.dark {
	background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6));
}

.info {
	height: 80vh;
}

h1 {
	font-size: 52px;
	color: white;
}
h2 {
	font-size: 42px;
	margin-bottom: 20px;
}

.info ul {
	color: #afafaf;
	font-size: 22px;
}
.info ul li {
	margin-bottom: 5px;
}

.active-btn {
	color: white;
	background-color: #ea732d;
	font-weight: 400;
	text-transform: uppercase;
	text-decoration: none;
	padding: 20px 60px;
}

.block {
	padding-top: 10px;
	padding-bottom: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.list {
	padding: 0;
	list-style-type: none;
}

.list li {
	display: flex;
	margin-bottom: 10px;
}

.list .list-header {
	font-size: 20px;
	line-height: 1.35;
	font-weight: 600;
	margin-bottom: 10px;
}
.list .list-content {
	font-size: 18px;
	line-height: 1.55;
}
.list .list-number {
	flex: none;
	width: 30px;
	height: 30px;
	background-color: #ea732d;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	margin-right: 20px;
}
.bg.space {
	background-position: center center;
	height: 230px;
}

.contact .contact-info {
	font-size: 24px;
	line-height: 1.5;

}
.contact .social-label {
	font-size: 18px;
	font-weight: 300;
}

a.link {
	color: #ea732d;
}

.footer {
	background-color: #171717;
	color: white;
	padding-top: 40px;
	padding-bottom: 40px;
}
.footer-logo {
	width: 180px;
}


.ham7 {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    user-select: none;
}
.ham7 path{
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: white;
    stroke-width: 5.5;
    stroke-linecap: round;
}
.ham7.active {
    transform: rotate(45deg);
}
.ham7 .top {
    stroke-dasharray: 40 82;
}
.ham7 .middle {
    stroke-dasharray: 40 111;
}
.ham7 .bottom {
    stroke-dasharray: 40 161;
}
.ham7.active .top {
    stroke-dasharray: 17 82;
    stroke-dashoffset: -62px;
}
.ham7.active .middle {
    stroke-dashoffset: 23px;
}
.ham7.active .bottom {
    stroke-dashoffset: -83px;
}


@media (max-width: 768px) {
	.header .menu .logo {
		order: -1;
		width: 160px;
		margin-bottom: 40px;
	}
	.menu-item {
		margin-bottom: 20px;
	}

	.header .menu.collapsed .menu-item {
		height: 0;
		display: none;
	}

	.header .menu a {
		font-size: 15px;
	}

	h1 {
		font-size: 35px;
	}

	h2 {
		font-size: 30px;
	}

	.info ul {
		font-size: 17px;
	}

	.active-btn {
		font-size: 14px;
		padding: 20px 40px;
	}

	.list .list-header {
		font-size: 18px;
	}

	.list .list-content {
		font-size: 16px;
	}

	.bg.space {
		height: 140px;
	}

	.contact .contact-info {
		font-size: 20px;
	}

	.contact .social-label {
		font-size: 16px;
	}

	.footer-logo {
		width: 130px;
	}
}


@media (max-width: 510px) {
	.header .menu {
		padding: 0;
	}
	.header .menu .logo {
		order: -1;
		width: 140px;
		margin: 25px 0;
	}

	.menu-item {
		margin-bottom: 15px;
	}

	.info {
		height: auto;
		padding: 20px 20px;
		padding-bottom: 40px;
	}
	.header .menu a {
		font-size: 15px;
	}

	h1 {
		font-size: 27px;
	}

	h2 {
		font-size: 25px;
	}

	.info ul {
		font-size: 17px;
	}

	.active-btn {
		font-size: 12px;
		padding: 20px 30px;
	}

	.list .list-header {
		font-size: 17px;
	}

	.list .list-content {
		font-size: 14px;
	}

	.list .list-number {
		font-size: 16px;
		margin-right: 10px;
		width: 25px;
		height: 25px;
	}

	.bg.space {
		height: 100px;
	}
}