/* Minification failed. Returning unminified contents.
(554,1): run-time error CSS1019: Unexpected token, found '}'
(593,2): run-time error CSS1019: Unexpected token, found '@keyframes'
(594,8): run-time error CSS1035: Expected colon, found '{'
(598,2): run-time error CSS1019: Unexpected token, found '@-moz-keyframes'
(599,8): run-time error CSS1035: Expected colon, found '{'
(607,1): run-time error CSS1019: Unexpected token, found '}'
 */
/***********************
	FEATURE INTRO
***********************/
.featureSection.introRelative {
	position: relative;
}

	.featureSection.introRelative > section {
		max-width: initial;
		position: relative;
		overflow: hidden;
		padding: 0;
	}

        #feature .featureSection.introRelative > section p.intro {
            margin: 100px auto;
	    }

@media only screen and (min-width: 664px) and (max-width: 979px) {
	.featureSection.introRelative section {
		padding: 120px 0;
		width: 632px;
	}
}

@media only screen and (min-width: 979px) and (max-width: 1299px) {
    .featureSection.introRelative section {
        width: 952px;
    }
}

@media only screen and (min-width: 1300px) {
    .featureSection.introRelative section {
        width: 1272px;
    }
}

/***********************
	FEATURE NAV
***********************/
aside.nav {
	display: none;
	background-color: #000000;
	position: fixed;
	width: 50px;
	z-index: 1000;
	height: 100vh;
	top: 0;
	right: 0;

	-webkit-transition: width 0.5s;
	-moz-transition: width 0.5s;
	-o-transition: width 0.5s;
	transition: width 0.5s;
}

	aside.nav.on {
		display: block;
		-webkit-transition: width 0.5s;
		-moz-transition: width 0.5s;
		-o-transition: width 0.5s;
		transition: width 0.5s;
	}

	aside.nav:hover {
		width: 300px;
	}

		aside.nav ul {
			margin-top: 128px;
		}

			aside.nav ul li {
				height: 64px;
			}

				aside.nav ul li:after {
					background-color: #ffffff;
					display: inline-block;
					content: '';
					width: 32px;
					height: 1px;
					transform: rotate(-45deg);
					-webkit-transform: rotate(-45deg);
					-moz-transform: rotate(-45deg);
					-o-transform: rotate(-45deg);
					transform-origin: 0 0;
					-webkit-transform-origin: 0 0;
					-moz-transform-origin: 0 0;
					-o-transform-origin: 0 0;
					position: absolute;
					right: 0;
				}

				aside.nav ul li a {
					display: none;
				}

				aside.nav:hover ul li a {
					display: block;
				}


/***********************
	FEATURE CONTENTS
***********************/
.featureSection.headerContents {
	position: relative;
}

    .featureSection.headerContents.sticky {
        margin-bottom: 350px;
    }

	.featureSection.headerContents > section {
		/*height: 100vh;*/
		max-width: initial;
		position: relative;
		padding: 0;
	}

	.featureSection.headerContents > section > div {
		overflow: hidden;
	}

	.featureSection.headerContents.on > section > div {
		position: fixed;
		width: 100%;
	}

	.featureSection.headerContents.on:not(.bottom) > section > div {
		top: 0;
	}

	.featureSection.headerContents.on.bottom > section > div {
		bottom: 0;
	}

	.featureSection.headerContents.on > section > div > img {
		animation: blur 0.5s forwards;
		-webkit-animation: blur 0.5s forwards;
		-moz-animation: blur 0.5s forwards;
		-o-animation: blur 0.5s forwards;
	}

	.featureSection.headerContents ul {
		border-bottom: 2px solid rgba(255, 255, 255, 0.4);
		display: none;
		font-size: 64px;
		position: absolute;
		bottom: 60px;
		padding-bottom: 16px;
		left: 50%;
	}

	.featureSection.headerContents.on ul {
		display: block;
	}

	main #feature .featureSection.headerContents > section > div > ul > li > div > a {
		color: #7bfffb !important;
	}

	main #feature .featureSection.headerContents > section > div > ul > li > div > a:hover {
		background-color: #7bfffb !important;
		color: #000000 !important;
	}
	
	.featureSection.headerContents ul li {
		line-height: 1;
		opacity: 0;
		min-height: 74px;
		vertical-align: top;
	}

		.featureSection.headerContents ul > li > div:first-child {
			line-height: 16px;
			opacity: 0.4;
			font-size: 16px;
			padding: 8px 16px 0 0;
			vertical-align: top;
			float: left;
		}

		.featureSection.headerContents ul > li > div:last-child {
			margin-left: 36px;
		}

		.featureSection.headerContents ul li > div > div.line {
			background-color: #ffffff;
			display: inline-block;
			width: 96px;
			height: 1px;
			transform: rotate(-45deg);
			-webkit-transform: rotate(-45deg);
			-moz-transform: rotate(-45deg);
			-o-transform: rotate(-45deg);
			transform-origin: 0 0;
			-webkit-transform-origin: 0 0;
			-moz-transform-origin: 0 0;
			-o-transform-origin: 0 0;
			vertical-align: -18px;
			margin-left: 16px;
		}

	@keyframes blur {
		from {
			-webkit-filter: blur(0);
			-moz-filter: blur(0);
			-o-filter: blur(0);
			-ms-filter: blur(0);
			filter: blur(0);
		}
		to {
			-webkit-filter: blur(10px);
			-moz-filter: blur(10px);
			-o-filter: blur(10px);
			-ms-filter: blur(10px);
			filter: blur(10px);
		}
	}

	@-webkit-keyframes blur {
		from {
			-webkit-filter: blur(0);
			-moz-filter: blur(0);
			-o-filter: blur(0);
			-ms-filter: blur(0);
			filter: blur(0);
		}
		to {
			-webkit-filter: blur(10px);
			-moz-filter: blur(10px);
			-o-filter: blur(10px);
			-ms-filter: blur(10px);
			filter: blur(10px);
		}
	}
	
	@-moz-keyframes blur {
		from {
			-webkit-filter: blur(0);
			-moz-filter: blur(0);
			-o-filter: blur(0);
			-ms-filter: blur(0);
			filter: blur(0);
		}
		to {
			-webkit-filter: blur(10px);
			-moz-filter: blur(10px);
			-o-filter: blur(10px);
			-ms-filter: blur(10px);
			filter: blur(10px);
		}
	}

	@-o-keyframes blur {
		from {
			filter: blur(0);
			-webkit-filter: blur(0);
			-moz-filter: blur(0);
			-o-filter: blur(0);
			-ms-filter: blur(0);
		}
		to {
			filter: blur(10px);
			-webkit-filter: blur(10px);
			-moz-filter: blur(10px);
			-o-filter: blur(10px);
			-ms-filter: blur(10px);
		}
	}

	@keyframes show {
		from {opacity: 0;}
		to {opacity: 1;}
	}

	@-webkit-keyframes show {
		from {opacity: 0;}
		to {opacity: 1;}
	} 

	@-moz-keyframes show {
		from {opacity: 0;}
		to {opacity: 1;}
	}

	@-o-keyframes show {
		from {opacity: 0;}
		to {opacity: 1;}
	}

	@keyframes moveup {
		from {margin-bottom: -20px}
		to {margin-bottom: 0}
	}

	@-webkit-keyframes moveup {
		from {margin-bottom: -20px}
		to {margin-bottom: 0}
	}

	@-moz-keyframes moveup {
		from {margin-bottom: -20px}
		to {margin-bottom: 0}
	}

	@-o-keyframes moveup {
		from {margin-bottom: -20px}
		to {margin-bottom: 0}
	}

	@media only screen and (max-width: 663px) {
		.featureSection.headerContents ul {
			bottom: 16px;
			font-size: 36px;
			left: 0;
			margin: 0 8px;
            width: 95%;
		}

			.featureSection.headerContents ul li {
                font-size: 16px;
				margin-bottom: 4px;
				min-height: initial;
                line-height: 16px;
			}

            .featureSection.headerContents ul > li > div:first-child {
                padding-top: 0;
            }
            

			.featureSection.headerContents ul li > div > div.line {
				display: none;
			}
	}

	@media only screen and (min-width: 664px) and (max-width: 979px) {
		.featureSection.headerContents ul {
			margin-left: -325px;
            margin-bottom: 16px;
			width: 632px;
		}

            .featureSection.headerContents ul li {
                font-size: 32px;
				min-height: initial;
			}

            .featureSection.headerContents ul > li > div:first-child {
                padding: 4px 16px 0 0;
            }

                .featureSection.headerContents ul li > div > div.line {
                    margin-bottom: 8px;
                    width: 50px;
                }
	}

	@media only screen and (max-width: 979px) {
		.featureSection.headerContents > section,
		.featureSection.headerContents > section > div,
		.featureSection.headerContents > section > img  {
			width: 100%;
		}

		.featureSection.headerContents > section img:not(.small) {
			display: none;
		}

        .featureSection.headerContents.on ul li {
		    opacity: 1;
	    }
	}

	@media only screen and (min-width: 980px) {
		.featureSection.headerContents > section img.small {
			display: none;
		}

		.featureSection.headerContents > section {
			width: 100%;
		}

			.featureSection.headerContents > section img {
				width: 100%;
			}

            .featureSection.headerContents.on ul li {
		        animation: show 1s forwards;
		        -webkit-animation: show 1s forwards;
		        -moz-animation: show 1s forwards;
		        -o-animation: show 1s forwards;
		        animation-delay: 0.7s;
		        -webkit-animation-delay: 0.7s;
		        -moz-animation-delay: 0.7s;
		        -o-animation-delay: 0.7s;
	        }
	}

	@media only screen and (min-width: 980px) and (max-width: 1299px) {
		.featureSection.headerContents > section {
			width: 100%;
		}

		.featureSection.headerContents ul {
			margin-left: -476px;
			width: 952px;
		}
	}

	@media only screen and (min-width: 1300px) {
		.featureSection.headerContents > section {
			width: 100%;
		}

		.featureSection.headerContents ul {
			margin-left: -637px;
			width: 1272px;
		}
	}


/***********************
	FEATURE CHAPTER
***********************/
.featureSection.chapter {
	height: 100vh;
	position: relative;
	min-height: 800px;
}

.featureSection.chapter.alignTop {
	height: 100vh;
	position: relative;
	min-height: 800px;
	padding-bottom: 160px;
}
	.featureSection.chapter:not(.alignTop) section {
		max-width: initial;
		position: relative;

		position: relative;
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-o-transform: translateY(-50%);

        line-height: 1;
	}

    .featureSection.chapter.alignTop section {
        max-width: initial;
	position: relative;
        padding-top: 80px;

        line-height: 1;
    }

		.featureSection.chapter .sub {
			opacity: 0.95;
		}

		.featureSection.chapter span {
			font-size: 16px;
		}

		.featureSection.chapter h1 {
			font-size: 110px;
			margin: 8px 0 32px 0 ;
		}

		.featureSection.chapter h2 {
			font-size: 64px;
		}

		.featureSection.chapter div.sub {
			font-size: 24px;
			margin: 32px 0 0 0;
		}

@media only screen and (max-width: 663px) {
	.featureSection.chapter h2 {
		font-size: 32px;
	}

    .featureSection.chapter div.sub {
        font-size: 32px;
        margin: 0;
    }
}

@media only screen and (min-width: 664px) and (max-width: 979px) {
	.featureSection.chapter section {
		padding: 120px 0;
		width: 632px;
	}
}

@media only screen and (min-width: 979px) and (max-width: 1299px) {
	.featureSection.chapter section {
		width: 952px;
	}

	.featureSection.chapter section > div {
		width: 50%;
	}

	.featureSection.chapter > section .line {
		background-color: #ffffff;
		width: 0;
		height: 4px;
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform-origin: 0 0;
		-webkit-transform-origin: 0 0;
		-moz-transform-origin: 0 0;
		-o-transform-origin: 0 0;
		left: 62%;
		position: absolute;
	}

	.featureSection.chapter > section .line.on {
		animation: showLine 1s forwards;
		-webkit-animation: showLine 1s forwards;
		-moz-animation: showLine 1s forwards;
		-o-animation: showLine 1s forwards;
	}

	@-webkit-keyframes showLine {
		from { width: 0; }
		to { width: 500px; }
	} 

	@keyframes showLine {
		from { width: 0; }
		to { width: 500px; }
	}

	@-moz-keyframes showLine {
		from { width: 0; }
		to { width: 500px; }
	}

	@-o-keyframes showLine {
		from { width: 0; }
		to { width: 500px; }
	}
}

@media only screen and (min-width: 1300px) {
	.featureSection.chapter section {
		width: 1272px;
	}

	.featureSection.chapter section > div {
		width: 50%;
	}

	.featureSection.chapter > section .line {
		background-color: #ffffff;
		width: 0;
		height: 4px;
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform-origin: 0 0;
		-webkit-transform-origin: 0 0;
		-moz-transform-origin: 0 0;
		-o-transform-origin: 0 0;
		left: 72%;
		position: absolute;
	}

	.featureSection.chapter > section .line.on {
		animation: showLine 1s forwards;
		-webkit-animation: showLine 1s forwards;
		-moz-animation: showLine 1s forwards;
		-o-animation: showLine 1s forwards;
	}

	@-webkit-keyframes showLine {
		from { width: 0; }
		to { width: 500px; }
	} 

	@keyframes showLine {
		from { width: 0; }
		to { width: 500px; }
	}

	@-moz-keyframes showLine {
		from { width: 0; }
		to { width: 500px; }
	}

	@-o-keyframes showLine {
		from { width: 0; }
		to { width: 500px; }
	}
}

/***********************
	FEATURE STATS
***********************/
.featureSection.stats {
	position: relative;
	min-height: 100vh;
}

	.featureSection.stats > section {
		max-width: initial;
		position: relative;
		overflow: hidden;
		padding: 0;
	}

	.featureSection.stats ul {
		position: relative;
	}

		.featureSection.stats ul li {
			display: inline-block;
			font-size: 16px;
			height: 200px;
			margin-bottom: 120px;
			width: 312px;
			padding-right: 8px;
			vertical-align: top;
		}

			.featureSection.stats ul li div {
				line-height: 100%;
			}

			.featureSection.stats ul li div:first-child {
				margin-bottom: 8px;
			}

				.featureSection.stats ul li div:first-child:after {
					background-color: #ffffff;
					content: '';
					display: inline-block;
					width: 28px;
					height: 1px;
					transform: rotate(-45deg);
					-webkit-transform: rotate(-45deg);
					-moz-transform: rotate(-45deg);
					-o-transform: rotate(-45deg);
					transform-origin: 0 0;
					-webkit-transform-origin: 0 0;
					-moz-transform-origin: 0 0;
					-o-transform-origin: 0 0;
					vertical-align: -5px;
					margin-left: 8px;
				}

			.featureSection.stats ul li div:not(:last-child) {
				opacity: 0.4;
			}

			.featureSection.stats ul li div:last-child {
				display: none;
			}

				.featureSection.stats ul li .large {
					font-size: 110px;
				}

				.featureSection.stats ul li .small {
					font-size: 24px;
					margin: 16px 16px 0 0;
                }

@media only screen and (max-width: 663px) {
    .featureSection.stats {
        padding: 0 8px;
        width: initial;
    }

	.featureSection.stats > section {
		height: initial;
		overflow: visible;
		margin: 0 8px;
	}

	.featureSection.stats ul {
	}

		.featureSection.stats ul li {
			margin-bottom: 16px;
            width: 100%;
		}
}

@media only screen and  (min-width: 979px) {
	.featureSection.stats > section {
		height: 100vh;
		min-height: 1200px;
	}

	.featureSection.stats ul {
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-o-transform: translateY(-50%);
	}
}

@media only screen and (min-width: 664px) and (max-width: 979px) {
	.featureSection.stats > section {
		width: 632px;
	}

	.featureSection.stats ul {
		width: 640px;
	}
}

@media only screen and (min-width: 980px) and (max-width: 1299px) {
	.featureSection.stats > section {
		width: 952px;
	}

	.featureSection.stats ul {
		width: 960px;
	}
}

@media only screen and (min-width: 1300px) {
	.featureSection.stats > section {
		width: 1272px;
	}

	.featureSection.stats ul {
		width: 1280px;
	}
}

/***********************
	FEATURE PHOTO GALLERY
***********************/
	.featureSection.gallery > section {
		max-width: initial;
		padding: 0;
		position: relative;
		overflow: hidden;
		text-align: center;
	}

	.featureSection.gallery > section > div {
		position: absolute;
		top: 32px;
		font-size: 28px;
        opacity: 0;

        -webkit-transition: opacity 0.2s;
		-moz-transition: opacity 0.2s;
		-o-transition: opacity 0.2s;
		transition: opacity 0.2s;
	}

    .featureSection.gallery > section > div.number {
		left: 32px;
        width: 80px;
        height: 80px;
	}

    .featureSection.gallery > section > div.byline {
		right: 32px;
        height: 200px;
        text-align: left;
        line-height: 1;
	}

        .featureSection.gallery > section:hover > div {
            opacity: 0.6;
	    }

        .featureSection.gallery > section > div.number > div:first-child {
		    position: absolute;
		    top: 0;
		    left: 0;
	    }

        .featureSection.gallery > section > div > div:last-child {
		    position: absolute;
		    bottom: 0;
		    right: 0;
	    }

        .featureSection.gallery > section > div > div.line {
		    background-color: #ffffff;
		    width: 112px;
		    height: 1px;
		    transform: rotate(-45deg);
		    -webkit-transform: rotate(-45deg);
		    -moz-transform: rotate(-45deg);
		    -o-transform: rotate(-45deg);
		    transform-origin: 0 0;
		    -webkit-transform-origin: 0 0;
		    -moz-transform-origin: 0 0;
		    -o-transform-origin: 0 0;
		    bottom: 0;
		    position: absolute;
	    }

	

@media only screen and (max-width: 979px) {
    .featureSection.gallery > section > div,
    .featureSection.gallery > section > img  {
		display: none;
	}

        .featureSection.gallery > section a,
        .featureSection.gallery > section img  {
		    cursor: default;
            max-width: 632px;
	    }

        .featureSection.gallery > section > ul > li:not(:last-child) {
            margin-bottom: 8px;
        }
}

@media only screen and (min-width: 979px) {
    .featureSection.gallery > section {
		background-color: #000;
    }

    .featureSection.gallery > section > ul {
		position: absolute;
        bottom: -100px;
		opacity: 0;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
		-o-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
        width: 100%;
	}

        .featureSection.gallery > section > ul {
            -webkit-transition: bottom 0.5s, opacity 0.5s;
		    -moz-transition: bottom 0.5s, opacity 0.5s;
		    -o-transition: bottom 0.5s, opacity 0.5s;
		    transition: bottom 0.5s, opacity 0.5s;
		}


		.featureSection.gallery > section:hover > ul {
            bottom: 0;
            opacity: 1;
		}

	.featureSection.gallery > section > ul > li {
		background-color: #fff;
		display: inline-block;
		vertical-align: bottom;
	}

		.featureSection.gallery > section > ul > li > a,
		.featureSection.gallery > section > ul > li > a > img {
			height: 76px;
		}

		.featureSection.gallery > section > ul > li > a:hover {
			opacity: 0.5;
		}
}

@media only screen and (min-width: 980px) and (max-width: 1299px) {
    .featureSection.gallery > section {
        width: 952px;
	}

    .featureSection.gallery > section,
    .featureSection.gallery > section > img {
		height: 595px;
	}
}

@media only screen and (min-width: 1300px) and (max-width: 1619px) {
    .featureSection.gallery > section {
        width: 1280px;
	}

    .featureSection.gallery > section,
    .featureSection.gallery > section > img {
		height: 800px;
	}
}

@media only screen and (min-width: 1620px) {
    .featureSection.gallery > section {
        width: 1600px;
	}

    .featureSection.gallery > section,
    .featureSection.gallery > section > img {
		height: 1000px;
	}
}

/***********************
	FEATURE FULL IMAGE
***********************/
	.featureSection.fullImage > section {
		max-width: initial;
		width: 100%;
		padding: 0;
		position: relative;
		overflow: hidden;
	}

	.featureSection.fullImage img {
		width: 100%;
	}



#feature.sfeature #feature-content,
#feature.sfeature header {
    display: none;
}

/***********************
	FEATURE HEADER VIDEO
***********************/
.featureSection.headerVideo > section {
		max-width: initial;
		width: 100%;
		padding: 0;
		position: relative;
		overflow: hidden;
	}

	.featureSection.headerVideo video {
	    margin-bottom: 40px;
		width: 100%;
	}

    .featureSection.headerVideo img:not(.mobile) {
        position: absolute;
        width: 100%;
        top: 50%;
        left: 50%;
        margin-top: -24px;
        transform: translateX(-50%) translateY(-50%);
		-webkit-transform: translateX(-50%) translateY(-50%);
		-moz-transform: translateX(-50%) translateY(-50%);
		-o-transform: translateX(-50%) translateY(-50%);
		-ms-transform: translateX(-50%) translateY(-50%);
	}

    .featureSection.headerVideo img.mobile {
        display: none;
	}

@media only screen and (max-width: 979px) {
    .featureSection.headerVideo video,
    .featureSection.headerVideo img:not(.mobile) {
        display: none;
	}

    .featureSection.headerVideo img.mobile {
        display: block;
	}
}

/***********************
	OTHER
***********************/
#feature-content.largeFeature {
    padding: 0;
    margin-bottom: -1px;
}
