@charset "utf-8";

html, body {
	height: 100%;
	background-color: #FBFCFC;
	font-family: Century Gothic;
	color: #626567;
}

.wrapper {
	min-height: 90%;
}

.container {
	max-width: 1200px;
	margin: 0px auto;
	padding: 0px 10px;
}

@media (min-width: 1200px) {
	.content {
		max-width: 1200px;
	}
	.footer {
		max-width: 1200px;
	}
}

@media (max-width: 1200px) {
	.container {
		max-width: 970px;
	}
	.content {
		max-width: 970px;
	}
	.footer {
		max-width: 970px;
	}
}

.header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 50;
}
.header:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #F7F9F9;
	z-index: 2;
	border-bottom: 1px solid #ECF0F1;
}

.header__body {
	position: relative;
	display: flex;
	justify-content: space-between;
	height: 80px;
	align-items: center;
}

/*.header__logo {
	flex: 0 0 60px;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	z-index: 3;
}

.header__logo img {
	max-width: 100%;
	display: block;
}*/

.header__burger {
	display: none;
}

.header__menu {

}

.header__list {
	display: flex;
	position: relative;
	z-index: 2;
}

.header__list li {
	list-style: none;
	margin: 0px 30px 0px 0px;
	font-family: Century Gothic;
}

.header__link {
	color: #7B7D7D;
	text-transform: capitalize;
	font-size: 18px;
	text-decoration: none;
}

.content {
	margin: 0 auto;
	padding: 60px 0px 10px 0px;
	background-color: white;
}

.footer {
	margin: 10px auto;
	position: relative;
	text-align: center;
}

@media (max-width: 992px){
	body.lock {
		overflow: hidden;
	}
	.header__body {
		height: 70px;
	}
/*	.header__logo {
		flex: 0 0 40px;
	}*/
	.header__burger {
		display: block;
		position: relative;
		width: 30px;
		height: 20px;
		z-index: 3;
	}
	.header__burger span {
		background-color: grey;
		position: absolute;
		width: 100%;
		height: 2px;
		left: 0;
		top: 9px;
		transition: all 0.3s ease 0s;
	}
	.header__burger:before,
	.header__burger:after {
		content: '';
		background-color: grey;
		position: absolute;
		width: 100%;
		height: 2px;
		left: 0;
		transition: all 0.3s ease 0s;
	}
	.header__burger:before {
		top: 0;
	}
	.header__burger:after {
		bottom: 0;
	}
	.header__burger.active span {
		transform: scale(0);
	}
	.header__burger.active:before {
		transform: rotate(45deg);
		top: 9px;
	}
	.header__burger.active:after {
		transform: rotate(-45deg);
		bottom: 9px;
	}
	.header__menu {
		position: fixed;
		transform: translateY(-100%);
		left: 0;
		width: 100%;
		height: 100%;
		overflow: auto;
		padding: 90px 10px 20px 10px;
		background-color: #FBFCFC;
		transition: all 0.3s ease 0s;
	}
	.header__menu.active {
		transform: translateY(0);
		top: 0;
	}
	.header__list {
		display: block;
	}
	.header__list li {
		margin: 0px 0px 20px 0px;
	}
	.header__link {
		font-size: 24px;
	}
	.container {
		max-width: 750px;
	}
	.content {
		max-width: 750px;
	}
	.footer {
		max-width: 750px;
	}
}

@media (max-width: 767px) {
	.content {
		padding: 50px 0px 10px 0px;
		max-width: none;
	}
	.container {
		max-width: none;
	}
	.footer {
		font-size: 10px;
		max-width: none;
	}
}
