html,body{margin:0px;padding:0px;background:#000;}
body{
    width: 100%;
    font-family: 'Barlow Condensed', sans-serif;
	font-weight: 400;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.min-height-viewport{
	min-height: 100vh;
	min-height: calc(100vh - 40px);
}
@media screen and (max-width: 767px){
	.min-height-viewport{
		min-height: calc(100vh - 86px);
	}
}
.relative{
	position: relative;
}
.absolute{
	position: absolute;
}
.fixed{
	position: fixed;
}
.center-in-view{
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.white{
	color: #FFF;
}
.black{
	color: #000;
}
i.dot {
    display: inline-block;
    background: white;
    width: 0.3em;
    height: 0.3em;
    border-radius: 0.2em;
    margin: 0.1em;
    margin-bottom: 0.2em;
	transition: all ease-in 150ms;
}
.caps{
	text-transform: uppercase;
}
.text-center{
	text-align: center;
}
.text-left{
	text-align: left;
}
.text-right{
	text-align: right;
}
.bg-white{
	background: #FFF;
}
.bg-black{
	background: #000;
}
.reset-margin{
	margin: 0px;
}
.reset-padding{
	padding: 0px;
}
a.see-more{
	font-size: 1.5em;
    -webkit-filter: drop-shadow(0px 0px 0px rgba(69,153,221,0.7));
    filter: drop-shadow(0px 0px 0px rgba(69,153,221,0.7));
	transition: all ease-in 150ms;
}
a.see-more:hover{
	color: #00F;
	text-decoration: none;
    -webkit-filter: drop-shadow(0px 0px 3px rgba(69,153,221,0.7));
    filter: drop-shadow(0px 0px 3px rgba(69,153,221,0.7));
    opacity: 0;
    -webkit-animation: fade 0.5s forwards normal;
    -moz-animation: fade 0.5s forwards normal;
    -o-animation: fade 0.5s forwards normal;
    animation: fade 0.5s forwards normal;
}
a.see-more:hover i.dot{
	background: #00F;
}
/*  NAV  */
.navbar{
	min-height: 65px;
	background: #000;
}
.navbar a.navbar-brand > img{
	width: auto;
	height: 2.2em;
	-webkit-filter: drop-shadow(0px 0px 3px rgba(69,153,221,0.7));
	filter: drop-shadow(0px 0px 3px rgba(69,153,221,0.7));
}
.navbar-nav > li > a{
	padding-top: 1.5em;
    padding-bottom: 1.5em;
    color: #FFF;
    text-transform: uppercase;
    -webkit-filter: drop-shadow(0px 0px 0px rgba(69,153,221,0.7));
    filter: drop-shadow(0px 0px 0px rgba(69,153,221,0.7));
	transition: all ease-in 150ms;
}
.navbar-nav > li > a:focus{
    background: transparent !important;
}
.navbar a:hover{
    color: #00F;
    -webkit-filter: drop-shadow(0px 0px 3px rgba(69,153,221,0.7));
    filter: drop-shadow(0px 0px 3px rgba(69,153,221,0.7));
    background: transparent !important;
    opacity: 0;
    -webkit-animation: fade 0.5s forwards normal;
    -moz-animation: fade 0.5s forwards normal;
    -o-animation: fade 0.5s forwards normal;
    animation: fade 0.5s forwards normal;
}
.navbar-toggle .icon-bar{
	background: #FFF;
}
@media screen and (max-width: 767px){
	.navbar a.navbar-brand > img{
		height: 1.5em;
	}
}
/*  END NAV  */
#popup{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100vh;
	background: #000;
	z-index: 999;
	display: none;
}
#popup > #close-popup{
    position: fixed;
    top: 70px;
    cursor: pointer;
    font-size: 2em;
    right: 20px;
    width: 30px;
    height: 30px;
    z-index: 999;
    color: white;
}
#popup > #vimeo_wrapper{
	display: inline-block;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
}
/*  SECTIONS  */
.section_title_right{
	float: right;
	font-size: 1.2em;
	margin-right: -15px;
	margin-bottom: 1em;
	padding-right: 30%;
	border-bottom: 2px solid white;
}
#section-1{
	margin-top:69px;
}
#section-1 > .content-1-wrapper{
	background: #999;
}
#section-1 > .content-1-wrapper:before{
	content: " ";
	display: block;
	padding-top: 42.1875%;
}
#section-1 > .content-1-wrapper > img.background-image,
#section-1 > .content-1-wrapper > video#videoBackground{
	position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
}
#section-1 > .content-1-wrapper > video#videoBackground{
	display: none;
	opacity: 0;
	transition-property: opacity;
	transition-duration: 300ms;
	transition-timing-function: cubic-bezier(0.15, 0.61, 0.35, 1);
}
#section-1 > .content-1-wrapper.playing > video#videoBackground{
	display: block;
	opacity: 1;
}
#section-1 > .content-1-wrapper > .lsi_mark{
	width: 6em;
	height: auto;
	right: 2em;
	top: 2em;
}
#section-1 > .content-1-wrapper > .bio{
	top: 4em;
	left: 0px;
	border-top: 2px solid #FFF;
}
#section-1 > .content-1-wrapper > .bio > .bio_wrapper{
    background: rgba(255,255,255,0.18);
    margin-left: 8em;
    margin-top: 1em;
    color: white;
}
#section-1 > .content-1-wrapper > .bio > .bio_wrapper > .bio_id{
    writing-mode: tb-rl;
    transform: rotate(180deg);
    background: rgba(255,255,255,0.18);
    transform-origin: center;
    padding: 0.5em 0.1em;
    display: flex;
    float: left;
    font-size: 1.2em;
}
#section-1 > .content-1-wrapper > .bio > .bio_wrapper > .bio_info{
	display: flex;
    padding: 0.6em;
    padding-top: 2.1em;
    margin: 0px;
    line-height: 1em;
    font-size: 1.2em;
}
#section-1 > .content-1-wrapper > .num{
	bottom: 6em;
	right: 0px;
    color: white;
	border-top: 2px solid #FFF;
}
#section-1 > .content-1-wrapper > .num > .num_wrapper{
	margin-right: 10em;
    font-size: 1.2em;
}
#section-1 .content-1-wrapper .play_button{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
}
#section-1 .content-1-wrapper .play_button iframe{
	width: 40px;
	height: auto;
}
@media screen and (max-width: 1100px){
	#section-1 > .content-1-wrapper > .bio{
		top: 2em;
	}
	#section-1 > .content-1-wrapper > .bio > .bio_wrapper {
		margin-left: 4em;
	}
	#section-1 > .content-1-wrapper > .bio > .bio_wrapper > .bio_id{
		font-size: 1em;
	}
	#section-1 > .content-1-wrapper > .bio > .bio_wrapper > .bio_info{
		font-size: 1em;
	}
	#section-1 > .content-1-wrapper > .num{
		bottom: 3em;
	}
	#section-1 > .content-1-wrapper > .num > .num_wrapper{
		margin-right: 6em;
	}
}
@media screen and (max-width: 767px){
	#section-1 > .content-1-wrapper > .lsi_mark{
		width: 3em;
		right: 1em;
		top: 1em;
	}
	#section-1 > .content-1-wrapper > .bio > .bio_wrapper {
		margin-left: 2em;
	}
	#section-1 > .content-1-wrapper > .bio > .bio_wrapper > .bio_id{
		font-size: 0.8em;
	}
	#section-1 > .content-1-wrapper > .bio > .bio_wrapper > .bio_info{
		font-size: 0.8em;
	}
	#section-1 .content-1-wrapper .play_button{
		width: 20px;
	}
	#section-1 > .content-1-wrapper > .num{
		bottom: 1em;
	}
	#section-1 > .content-1-wrapper > .num > .num_wrapper{
		margin-right: 3em;
		font-size: 1em;
	}
}
@media screen and (max-width: 600px){
	#section-1 > .content-1-wrapper > .bio{
		display: none;
	}
}
#section-2{
	margin-top: 6em;
}
#section-2 .hero-text-1{
	padding-right: 6em;
}
#section-2 .hero-text-1 > .lsi-label{
    background: rgba(0,0,255,0.4);
    display: inline-block;
    padding: 2px;
    padding-right: 5px;
    transform: rotate(-90deg) translateX(0.8em) translateY(7em);
    transform-origin: left center;
    font-size: 1.5em;
}
#section-2 .hero-text-1 span{
	display: inline-block;
	padding: 0em 1em;
}
#section-2 .hero-text-1 img.lsi_mark{
	height: 1em;
    width: auto;
    margin-bottom: 4px;
}
#section-2 .hero-text-1 .text{
	font-size: 2em;
	letter-spacing: 0.1em;
	line-height: 1em;
	width: calc(100% - 6em);
}
@media only screen and (max-width: 1300px){
	#section-2 .hero-text-1 .text{
		font-size: 1.5em;
		width: calc(100% - 7.5em);
	}
}
@media only screen and (max-width: 900px){
	#section-2 .hero-text-1 .text{
		font-size: 1em;
    	width: calc(100% - 12em);
	}
}
@media screen and (max-width: 767px){
	#section-2 .hero-text-1{
		padding: 0px;
	}
	#section-2 .hero-text-1 > .lsi-label{
		display: block;
		margin-bottom: 1em;
		transform: none;
	}
	#section-2 .hero-text-1 .text{
		width: 100%;
	}
}
#section-3{
	padding-top: 6em;
}
#section-3 .synopsys_wrapper{
	background: rgba(255,255,255,0.33);
	margin-top: 3em;
}
#section-3 .synopsys_wrapper .lsi_label{
	background: rgba(0,0,255,0.81);
	top: 0px;
	bottom: 0px;
	left: 0px;
	width: 2em;
	text-align: center;
}
#section-3 .synopsys_wrapper .lsi_label img.lsi_mark{
	height: 1.2em;
    width: auto;
	display: inline-block;
	margin-top: 0.5em; 
}
#section-3 .synopsys_wrapper .lsi_label_header{
	bottom: 0px;
	left: 0px;
	z-index: 2;
	transform-origin: left;
    transform: rotate(-90deg) translate(-0.1em, 0.9em);
    font-size: 1.1em;
}
#section-3 .synopsys_wrapper p.synopsys{
	padding: 8em;
	font-size: 1.2em;
	line-height: 2em;
}
@media only screen and (max-width: 800px){
	#section-3 .synopsys_wrapper p.synopsys{
		padding: 5em;
	}
}
@media only screen and (max-width: 600px){
	#section-3 .synopsys_wrapper p.synopsys{
		padding: 3em;
		line-height: 1.5em;
		padding-left: 4em;
	}
}
#section-4{
	padding-top: 6em;
}
#section-4 .bts_wrapper{
	width: 100%;
	margin-top: 4em;
}
#section-4 .bts_wrapper .bts_video{
	width: 66.66666667%;
	display: inline-block;
}
#section-4 .bts_wrapper .bts_video:after{
	content: ' ';
	display: block;
	width: 100%;
	padding-top: 42.1875%;
}
#section-4 .bts_wrapper .bts_video iframe{
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	width: 100%;
    height: 100%;
}
#section-4 .bts_wrapper .bts_video_title_wrapper{
	right: 0px;
	bottom: 6em;
	width: 150px;
	z-index: 2;
}
#section-4 .bts_wrapper .bts_video_title_wrapper span{
	font-size: 2.4em;
	padding-left: 0.8em;
}
#section-4 .bts_wrapper .bts_video_title_wrapper div{
	font-size: 1.2em;
	padding-left: 1.6em;
	padding-right: 0.2em;
	background: rgba(0,0,255,0.81);
}
#section-4 .bts_wrapper .bts_video_title_wrapper div img{
	width: auto;
	height: 1em;
	float: right;
	margin-top: 0.2em;
}
#section-4 .page_break{
	text-align: left;
    margin-left: -15px;
	margin-top: 1em;
	margin-bottom: 1em;
}
#section-4 .page_break span{
	display: inline-block;
	width: 30%;
	height: 1px;
	background: #FFF;
}
#section-4 .page_break img{
    width: auto;
    height: 1.5em;
    margin-top: 0.4em;
}
#section-4 .bts-gallery{
	margin-top: 2em;
}
#section-4 .bts-gallery > .bts-item{
	margin-bottom: 30px;
}
#section-4 .bts-gallery > .bts-item > .img-wrap{
	width: 100%;
	position: relative;
	overflow: hidden;
}
#section-4 .bts-gallery > .bts-item > .img-wrap:before{
	width: 100%;
	content: ' ';
	display: block;
	padding-top: 75%;
}
#section-4 .bts-gallery > .bts-item > .img-wrap > img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
    left: 0;
}
@media only screen and (max-width: 767px){
	#section-4 .bts_wrapper .bts_video_title_wrapper{
		display: none;
	}
	#section-4 .bts_wrapper .bts_video{
		width: 100%;
	}
}
#section-5{
	padding-top: 6em;
}
#section-5 .sb-gallery{
	margin-top: 2em;
}
#section-5 .sb-gallery > .sb-item{
	position: relative;
	overflow: hidden;
	transform: scale(1);
	margin-bottom: 30px;
	transition: all 150ms cubic-bezier(0.15, 0.61, 0.35, 1);
}
#section-5 .sb-gallery > .sb-item > .img-wrap{
	width: 100%;
	position: relative;
	overflow: hidden;
}
#section-5 .sb-gallery > .sb-item > .img-wrap:before{
	width: 100%;
	content: ' ';
	display: block;
	padding-top: 75%;
}
#section-5 .sb-gallery > .sb-item > .img-wrap > img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
    left: 0;
}
#section-5 .sb-gallery > .sb-item > span{
	display: block;
    background: rgba(0,0,255,0.81);
    padding: 0.2em 0.4em;
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: 15px;
	transition: all 150ms cubic-bezier(0.15, 0.61, 0.35, 1);
}
#section-5 .sb-gallery > .sb-item:hover{
	transform: scale(1.1);
}
#section-5 .sb-gallery > .sb-item:hover span{
	bottom: -2em;
}
/*  END SECTIONS  */
/*  FOOTER  */
footer{
	margin-top: 6em;
    text-align: center;
}
footer img.incipient_bottom{
	width: 60%;
	height: auto;
	-webkit-filter: drop-shadow(0px 0px 3px rgba(69,153,221,0.7));
	filter: drop-shadow(0px 0px 3px rgba(69,153,221,0.7));
}
footer .produced_by{
	margin-top: 6em;
}
footer .produced_by span{
	display: block;
}
footer .produced_by img{
	width: 8em;
	height: auto;
}
footer .copyright{
	margin-top: 2em;
}
/*  END FOOTER  */
/*  ANIMATION  */

@-webkit-keyframes fade {12.4%{opacity:0;}12.5%{opacity:1;}32.9%{opacity:1;}33%{opacity:0;}69.1%{opacity:0;}69.2%{opacity:1;}91.6%{opacity:1;}91.7%{opacity:0;}99.9%{opacity:0;}100%{opacity:1;}}
@-moz-keyframes fade {12.4%{opacity:0;}12.5%{opacity:1;}32.9%{opacity:1;}33%{opacity:0;}69.1%{opacity:0;}69.2%{opacity:1;}91.6%{opacity:1;}91.7%{opacity:0;}99.9%{opacity:0;}100%{opacity:1;}}
@-o-keyframes fade {12.4%{opacity:0;}12.5%{opacity:1;}32.9%{opacity:1;}33%{opacity:0;}69.1%{opacity:0;}69.2%{opacity:1;}91.6%{opacity:1;}91.7%{opacity:0;}99.9%{opacity:0;}100%{opacity:1;}}
@keyframes fade {12.4%{opacity:0;}12.5%{opacity:1;}32.9%{opacity:1;}33%{opacity:0;}69.1%{opacity:0;}69.2%{opacity:1;}91.6%{opacity:1;}91.7%{opacity:0;}99.9%{opacity:0;}100%{opacity:1;}}