/*/////////////////////////////////////////////
//// BEGIN: General Styles
/////////////////////////////////////////////*/
/*	Colors:
	Orange: #f26522;
	Blue: #9acfda;
	Brown: #8C5F35;
	Yellow: #F9C83F;
*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: #000;
	overflow-x: hidden;
	color: #fff;
	font-family: 'proxima-nova', Helvetica, Arial, sans-serif;
	font-weight: 400;
}

body.modal-open {
	overflow: hidden;
}

a {
	outline: none;
	color: #f26522;
	font-weight: bold;
	text-decoration: none;
}

article {
	position: relative;
	width: 100%;
	height: 100%;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 20px;
	font-weight: 700;
	line-height: 1.2;
}

h1 {
	margin-bottom: 40px;
	font-size: 90px;
	line-height: 0.9;
}

h2 {
	margin-bottom: 23px;
	font-size: 54px;
}

h3 {
	font-size: 23px;
}

h4 {
	font-size: 25px;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

iframe, embed, video {
	max-width: 100%;
	border: 0;
	outline: none;
}

li {
	list-style: none;
}

p {
	margin: 0 0 20px;
	font-size: 27px;
	line-height: 1.3;
}

p:last-child {
	margin-bottom: 0;
}

section {
	position: relative;
	width: 100%;
	height: 100vh;
	/* max-height: 768px; */
}

section.shutter--enabled {
	position: absolute;
	top: 0;
	left: 0;
}

section.shutter--enabled:first-of-type {
	position: relative;
}

sup {
	font-size: 51%;
	font-weight: 100;
}

/* BEGIN: Layout
--------------------------------------*/
@keyframes fadein {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.site-container {
	position: relative;
	max-width: 1600px;
	margin: 0 auto;
	animation: fadein 1s;
}

.site-container.shutter--enabled {
	position: fixed;
	max-width: none;
	overflow: hidden;
}

.flexit-container {
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	padding: 0;
	flex-wrap: wrap;
	-ms-flex-pack: justify;
	-ms-flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	align-content: center;
}

.flexit-center {
	justify-content: center;
    text-align: center;
}

.flexit-evenly {
	justify-content: space-evenly;
    text-align: center;
}

.section-wrapper {
	width: 1080px;
    max-width: 75%;
	height: 100%;
	margin: 0 auto;
}

.section-wrapper.fullwidth {
	width: 100%;
	max-width: none;
}

.mobile, .hidden, .template {
	display: none;
}

/* BEGIN: Buttons & Icons
--------------------------------------*/
.plus {
	color: #f26522;
}

.note {
	text-transform: uppercase;
}

.button_close {
	position: absolute;
	top: 0;
	right: 0;
	padding: 20px 20px 0;
}

.button_close img {
	width: 25px;
	margin: 25px;
}

/* BEGIN: Carousel
--------------------------------------*/
.carousel__wrapper {
	position: relative;
	overflow: hidden;
}

/* BEGIN: Video
--------------------------------------*/
.addvideo,.video-container {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 50px auto 60px;
    text-align: center;
}

.video-container {
	text-align: center;
}

.addvideo .video-wrapper {
	position: relative;
	height: 0;
	/*padding-top: 25px;*/
	padding-bottom: 56.243%;
	/* 16:9 */
}

.video-container .video-wrapper {
	position: relative;
}

.addvideo .video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.addvideo .video-wrapper .video-poster {
	position: relative;
	z-index: 1;
}

.addvideo .video-wrapper .video-poster img {
	width: 100%;
	cursor: pointer;
	vertical-align: top;
}

.addvideo .video-wrapper .video-poster .play-button,
.video-container .video-wrapper .play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 15%;
	-ms-transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
}

.addvideo .video-wrapper .video-poster .play-button img:hover {
	opacity: 0.8;
}

/*/////////////////////////////////////////////
//// BEGIN: Navigation
/////////////////////////////////////////////*/
.main-menu {
	position: fixed;
	top: 0;
    left: 0;
	width: 300px;
    padding: 10px 20px;
	z-index: 1000;
}

.main-menu.main-menu--active {
	opacity: 1;
	display: block;
}

.main-menu ul {
	position: relative;
}

.main-menu li {
	opacity: 0;
	display: none;
	position: absolute;
	margin-top: 5px;
}

.main-menu li.active,
.main-menu.main-menu--active li {
	opacity: 1;
	display: block;
}

.main-menu.main-menu--active li {
	position: relative;
    margin-bottom: 5%;
}

.main-menu.main-menu--dark li a {
	color: #000;
}

.main-menu:not(.main-menu--active) li.main-menu__social-forces.active a {
    float: right;
	color: #000;
}

.main-menu li.main-menu__ssk img {
	width: 130px;
    width: 85px;
	vertical-align: middle;
}

.main-menu li span {
	display: none;
}

.main-menu:not(.main-menu--active) li.active span {
	display: inline;
}

.main-menu li span img {
	width: 20px;
	vertical-align: baseline;
}

.main-menu li a {
	color: #fff;
	font-size: 36px;
	font-size: 30px;
    line-height: 0.76;
	text-transform: lowercase;
}

.site-container.social-forces .main-menu li a {
	color: #000;
}

/*/////////////////////////////////////////////
//// BEGIN: Modals
/////////////////////////////////////////////*/
.modal-container {
	display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 2000;
}

.modal-container .modal {
	display: none;
}

.modal-container.active,
.modal-container .modal.active {
	display: block;
}

/*/////////////////////////////////////////////
//// BEGIN: Media Queries
/////////////////////////////////////////////*/
/* BEGIN: Hovers */
@media screen and (min-width: 768px) {

	p a:hover {
		opacity: 0.7;
	}

	/*section {
		overflow-x: hidden;
	}*/
}

/* BEGIN: Responsive - 1080px */
@media screen and (max-width: 1366px) {

	h1 {
		font-size: 6.6vw;
	}

	h2 {
		font-size: 4vw;
	}

	h3 {
		font-size: 1.7vw;
	}

	p {
		font-size: 2vw;
	}

	/*.section-wrapper {
		width: 90%;
	}*/

	.main-menu li a {
		font-size: 2.25vw;
	}
}

/* BEGIN: iPad / Mobile */
@media screen and (max-width: 960px) {

	.site-container.site-container--orange::after {
		content: ' ';
		position: fixed;
		top: 0;
		left: 0;
		height: 12vh;
		width: 100vw;
		background-image: linear-gradient(180deg, #f26522, #f2652200);
		pointer-events: none;
		z-index: 10;
	}

	.site-container.site-container--black::after {
		content: ' ';
		position: fixed;
		top: 0;
		left: 0;
		height: 12vh;
		width: 100vw;
		background-image: linear-gradient(180deg, #000000, #00000000);
		pointer-events: none;
		z-index: 10;
	}

	.site-container.site-container--white::after {
		content: ' ';
		position: fixed;
		top: 0;
		left: 0;
		height: 12vh;
		width: 100vw;
		background-image: linear-gradient(180deg, #ffffff, #ffffff00);
		pointer-events: none;
		z-index: 10;
	}

	.site-container.site-container--grey::after {
		content: ' ';
		position: fixed;
		top: 0;
		left: 0;
		height: 12vh;
		width: 100vw;
		background-image: linear-gradient(180deg, #d4d4d4, #d4d4d400);
		pointer-events: none;
		z-index: 10;
	}

	.site-container.site-container--blue::after {
		content: ' ';
		position: fixed;
		top: 0;
		left: 0;
		height: 12vh;
		width: 100vw;
		background-image: linear-gradient(180deg, #9acfda, #9acfda00);
		pointer-events: none;
		z-index: 10;
	}

	section {
		max-height: none;
	}

	.section-wrapper {
		width: 90%;
		max-width: 90%;
	}

	.addvideo .video-wrapper .video-poster .play-button {
		width: 23%;
	}

	/* BEGIN: Navigation
	--------------------------------------*/

	.main-menu--dark.main-menu--active li a {
		color: #fff;
	}

	.main-menu {
		width: 100%;
    }

    .main-menu ul:after {
		content: '';
		display: block;
		position: absolute;
		top: calc(-100vh - 20px);
		left: -20px;
		width: calc(100% + 40px);
		height: 100vh;
		position: absolute;
		background: #f26522;
		transition: top 0.4s ease-in;
		z-index: -1;
	}

	.main-menu.main-menu--active ul:after {
		top: -20px;
	}

	.main-menu li {
		display: block;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.1s ease-in;
	}

	.main-menu li.active,
	.main-menu.main-menu--active li {
		visibility: visible;
	}

	.main-menu.main-menu--active li {
		opacity: 1;
		visibility: visible;
		transition: opacity 0.3s ease-in;
		transition-delay: 0.4s;
	}

	.main-menu li:not(.main-menu__ssk) {
		margin: 2vw auto;
		/*text-align: center;*/
	}

	.main-menu li a {
		font-size: 40px;
	}

	.main-menu.main-menu--active li.active a,
	.main-menu li.main-menu__leadership.active a {
		color: #000;
	}

	.main-menu.main-menu--active li span {
		display: none;
	}

	.main-menu li.main-menu__ssk img {
		width: 115px;
	}

	.button_close {
		padding: 10px 10px 0;
	}
}

/* BEGIN: Mobile */
@media screen and (max-width: 767px) {

	h1 {
		font-size: 12vw;
	}

	h2 {
		font-size: 7vw;
	}

	p {
		font-size: 4.9vw;
		line-height: 1.5;
	}

	section {
		height: auto;
		padding: 100px 0 40px;
		overflow-x: auto;
	}

	.mobile {
		display: block;
	}

	.desktop {
		display: none;
	}

	.main-menu li:not(.main-menu__ssk) {
		margin: 5vw auto;
	}

	.main-menu li a {
		font-size: 7.75vw;
	}

	.main-menu li.main-menu__ssk img {
		width: 22vw;
	}

	.button_close {
		padding: 5px 5px 0;
	}

	.button_close img {
		margin: 15px;
	}

	.addvideo .video-wrapper .video-poster .play-button,
	.video-container .video-wrapper .play-button {
		width: 25%;
	}
}
/* FIN */