@import url("https://fonts.googleapis.com/css?family=Barlow:400,500,600,700,800,800i");

* {
	margin: 0;
	padding: 0;
	border: none;
	underline: none;
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	}

html, body {
	width: 100%;
	position: relative;
	background: #fff;
	font-family: "Barlow", Campton, Nunito, Helvetica Neue, Helvetica, Arial, sans-serif;
	}

body {
	height: 100%;
	}

#header {
	width: 100%;
	height: 90px;
	position: fixed;
	z-index: 40;
	top: 0; left: 0;
	}

#header #logo {
	width: 40px;
	height: 44px;
	position: absolute;
	background: url(../img/health-lions-logo-white.svg);
	background-size: cover;
	background-repeat: no-repeat;
	text-indent: -99999px;
	z-index: 99;
	top: 30px; left: 0px;
	}

#header ul#menu {
	width: 100%;
	height: 100%;
	position: fixed;
	background: #191919;
//	overflow-y: auto;
	list-style: none;
	counter-reset: number-counter;
//	display: none;
	margin-right: -160px;
	top: 0; right: -100%;

	transition: margin-right .6s ease, right .6s ease;
	}

#header ul#menu.show {
	margin-right: 0;
	right: 0;
	}

#header ul#menu:before {
	width: 160px;
	width: 0;
	height: 100%;
	position: absolute;
	background: #191919;
	content: " ";
	transform: skew(-8deg);
	top: 0; left: -100px;
	}

#header ul#menu a {
	position: relative;
	display: table;
	margin-bottom: 70px;
	left: 5%;
	}

#header ul#menu a:first-child {
	display: table;
	margin-top: 160px;
	}

#header ul#menu a li {
	font-size: 18px;
	color: #fff;
	counter-increment: number-counter;
	}

#header ul#menu a li:before {
	content: "0" counter(number-counter) ". ";
	}

#hamburger-menu {
	height: 19px;
	width: 26px;
	position: absolute;
	cursor: pointer;
	z-index: 94;
	top: 38px; right: 0;

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	}

#hamburger-menu .hamburger {
	width: 0;
	height: 2px;
	position: absolute;
	background: #fff;
	opacity: 0;
	right: 0;

	-webkit-transition: width .3s, opacity .3s ease, top .3s ease, -webkit-transform .3s ease;
	-moz-transition: width .3s, opacity .3s ease, top .3s ease, -moz-transform .3s ease;
	-ms-transition: width .3s, opacity .3s ease, top .3s ease, -ms-transform .3s ease;
	-o-transition: width .3s, opacity .3s ease, top .3s ease, -o-transform .3s ease;
	transition: width .3s, opacity .3s ease, top .3s ease, transform .3s ease;
	}

#hamburger-menu .hamburger.show {
	opacity: 1;
	}

#hamburger-menu .hamburger.one.show {
	width: 26px;
	}

#hamburger-menu .hamburger.one {
	top: 0;
	}

#hamburger-menu.open .hamburger.one {
	width: 16px;
	top: 8px;

	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	}

#hamburger-menu.open .hamburger.three {
	width: 16px;
	top: 8px;

	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	}

#hamburger-menu .hamburger.two {
	width: 0;
	top: 8px;
	}

#hamburger-menu .hamburger.two.show {
	width: 18px;
	}

#hamburger-menu.open .hamburger.two {
	width: 0px;
	}

#hamburger-menu .hamburger.three {
	width: 0;
	top: 16px;
	}

#hamburger-menu .hamburger.three.show {
	width: 22px;
	}

.holder {
	width: 90%;
	position: relative;
	display: table;
	z-index: 2;
	margin-left: auto;
	margin-right: auto;
	}

.holder.full {
	width: 100%;
	}

#cover {
	width: 100%;
	max-height: 0;
	position: relative;
	background: #1d1d1d;
	background-size: cover;
	background-position: center;
	overflow: hidden;
	z-index: 4;
	margin-bottom: 100px;

	transition: max-height 2.6s ease;
	}

#cover.fill {
	max-height: 700px;
	}

#cover.after {
	width: 0px !important;
	position: absolute;
	border-width: 10vw 0 0 100vw;
	border-color: transparent transparent transparent #fff;
	border-style: solid;
	content: " ";
	padding-bottom: 0.6vw;
	bottom: -1px;
	z-index: 1;
	}

#cover:after {
	width: 0px !important;
	position: absolute;
	border-left: 100vw solid transparent;
	border-bottom: 16vw solid #fff;
	content: " ";
	bottom: 0;
	z-index: 1;

	transition: border-bottom 2s ease;
	}

#cover.fill:after {
	border-bottom: 0vw solid #fff;
	}
/*
#cover .holder {
	z-index: 2;
	top: 50%;
	left: 0;
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	}*/

#cover .holder {
	padding: 0;

	transition: padding 1.6s ease;
	}

#cover.fill .holder {
	padding: 200px 0 100px 0;
	}

#cover .sub-title {
	height: 12px;
	overflow: hidden;
	display: block;
	margin-bottom: 4px;
	}

#cover .sub-title span {
	position: relative;
	font-size: 8px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 6px;
	opacity: 0;
	display: block;
	top: 12px;

	transition: top 0.6s cubic-bezier(.25, 1, .47, 1), opacity 0.6s cubic-bezier(.25, 1, .47, 1);
	}

#cover .sub-title.show span {
	opacity: 0.8;
	top: 0;
	}

#cover .sub-title span:after {
	width: 0px;
	height: 1px;
	position: relative;
	background: #fff;
	content: " ";
	opacity: 0;
	display: inline-block;
	margin-left: 10px;
	top: -3px;

	transition: width .8s ease, opacity .2s ease;
	}

#cover .sub-title.loaded span:after {
	width: 26px;
	opacity: 1;
	}

#cover h1 {
	width: 100%;
	position: relative;
	font-size: 42px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.6px;
	text-transform: uppercase;
	opacity: 0;
//	display: none;
	top: 60px;
	margin-bottom: 50px;
	}

#cover.show h1 {
	transition: opacity 1s ease, top 1s cubic-bezier(.25, 1, .47, 1);
	}

#cover.loaded h1 {
	opacity: 1;
	top: 0;
	}

#cover p {
	width: 560px;
	font-size: 17px;
	font-weight: 500;
	color: #fff;
	line-height: 230%;
	opacity: 0.95;
	}

a.button {
	background: #ff641a;
	font-weight: 600;
	font-size: 12px;
	color: #fff;
	letter-spacing: 0.3px;
	border-radius: 2px;
	box-shadow: 0px 30px 40px rgba(0, 0, 0, 0.07);
	display: inline-block;
	padding: 15px 20px;

	-webkit-transition: background .3s ease, box-shadow .3s ease, opacity .3s ease, margin-left .3s ease;
	}

a.button.show {
	-webkit-transition: background .3s ease, box-shadow .3s ease, transform .15s ease, opacity .3s ease, margin-left .3s ease;
	}

a.button:hover {
	background: #e54b00;
	box-shadow: 0px 10px 22px rgba(0, 0, 0, 0.07);
	}

a.button:active {
	transform: scale(0.95);
	}

#cover .button {
	display: none;
	}

#bg-lines {
	width: 100%;
	height: 100%;
	position: absolute;
	overflow: hidden;
	top: 0; left: 0;
	}

#bg-lines .line {
	width: 1px;
	height: 0;
	position: relative;
	background: #f5f5f5;
	float: left;
	left: 5%;

	transition: height 8s ease;
	}

#bg-lines.show .line {
	height: 100%;
	}

#bg-lines .line:not(:first-child) {
	margin-left: 150px;
	}
/*
.text-holder .small-title {
	font-size: 10px;
	color: #ff641a;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	display: inline-block;
	margin-bottom: 14px;
	}*/

.text-holder .small-title {
	height: 12px;
	overflow: hidden;
	display: block;
	margin-bottom: 16px;
	}

.text-holder .small-title span {
	position: relative;
	font-size: 10px;
	color: #ff641a;
	text-transform: uppercase;
	letter-spacing: 1.8px;
	opacity: 0;
	display: block;
	top: 12px;

	transition: top 0.8s cubic-bezier(.25, 1, .47, 1), opacity 0.8s cubic-bezier(.25, 1, .47, 1);
	}

.text-holder .small-title.show span {
	opacity: 0.8;
	top: 0;
	}

.text-holder h2 {
	position: relative;
	font-family: "Barlow";
	font-size: 36px;
	color: transparent;
	text-transform: uppercase;
	line-height: 110%;
	display: table;
	margin-left: -2px;
	margin-bottom: 20px;
	}

.text-holder h2:after {
	width: 0;
	height: 100%;
	position: absolute;
	z-index: 999;
	background: #ff641a;
	pointer-events: none;
	content: "";
	top: 0;
	left: 0;

	transition: width .4s ease;
	}

.text-holder h2.block:after {
	width: 100%;
	}

.text-holder h2.show {
	color: #101010;
	}

.text-holder h2.show:after {
	left: auto;
	right: 0;
	}

.text-holder h2.block-hide:after {
	width: 0;
	}

.text-holder h2 strong {
	color: #ff641a;
	}

.text-holder.center h2 {
	text-align: center;
	}

.text-holder p {
	font-family: "Barlow";
	font-size: 15px;
	color: #262626;
	line-height: 240%;
	margin-left: -1px;
	margin-bottom: 60px;
	}

.text-holder p a {
	color: #ff641a;
	text-decoration: none;
	}

.text-holder p a:hover {
	text-decoration: underline;
	}

.text-holder p span {
	position: relative;
	opacity: 0;
	display: inline-block;
	margin-right: 5px;
	top: 18px;

	transform: rotate(20deg);

	transition: opacity 1s ease, top .2s ease, transform .2s ease;
	}

.text-holder p span.show {
	opacity: 1;
	top: 0;

	transform: rotate(0deg);
	}

.text-holder .button {
	opacity: 0;
	margin-left: -10px;
	margin-bottom: 40px;

	transition: opacity .3s ease, margin-left .3s ease;
	}

.text-holder .button.show {
	opacity: 1;
	margin-left: 0;
	}