@charset "utf-8";
/* =====================================================
   Base
===================================================== */
body, html {
	height: 100%;
}
body {
	font-family: "Quattrocento Sans", Helvetica, Arial, sans-serif;
	background-color: #F1F4F9;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Montserrat", Helvetica, Arial, sans-serif;
}
h1 {
	font-weight: 700;
	text-transform: uppercase;
}
a {
	color: #046544;
	text-decoration: underline;
}
a:hover {
	color: #F26E24;
}
a:focus {
	outline: none;
}
ol, ul {
	list-style: none;
	padding: 0 0 0 30px;
}
em {
	padding-right: 3px;
}
img, object {
	display: block;
	width: 100%;
	height: auto;
}
hr {
	display: block;
	border-top-color: #ddd;
	width: 100%;
	margin-top: 2rem;
	margin-bottom: 2rem;
	clear: both;
}
sup {
	text-transform: none;
}
.clearfix {
	zoom: 1;
}
.clearfix:before, .clearfix:after {
	content: "";
	display: table;
	clear: both;
}
.clearfix:after {
	clear: both;
}
.no-link {
	cursor: default;
}
/* =====================================================
   Margins, Paddings, Borders and Alignments
===================================================== */
/* Margins */
.no-margin, .margin-0 {
	margin: 0!important;
}
.no-left-margin {
	margin-left: 0;
}
.no-right-margin {
	margin-right: 0;
}
.no-top-margin {
	padding-top: 0;
}
.no-bottom-margin {
	margin-bottom: 0;
}
.margin-20 {
	margin-bottom: 20px;
}
.margin-30 {
	margin-bottom: 30px;
}
.margin-40 {
	margin-bottom: 40px;
}
.margin-50 {
	margin-bottom: 50px;
}
.margin-70 {
	margin-bottom: 70px;
}
.margin-100 {
	margin-bottom: 100px;
}
/* Paddings */
.no-padding, .padding-0 {
	padding: 0!important;
}
.no-left-padding {
	padding-left: 0;
}
.no-right-padding {
	padding-right: 0;
}
.no-top-padding {
	padding-top: 0;
}
.no-bottom-padding {
	padding-bottom: 0;
}
.padding-10 {
	padding-top: 10px;
	padding-bottom: 10px;
}
.padding-20 {
	padding-top: 20px;
	padding-bottom: 20px;
}
.padding-30 {
	padding-top: 30px;
	padding-bottom: 30px;
}
.padding-40 {
	padding-top: 40px;
	padding-bottom: 40px;
}
.padding-50 {
	padding-top: 50px;
	padding-bottom: 50px;
}
.padding-70 {
	padding-top: 70px;
	padding-bottom: 70px;
}
.padding-100 {
	padding-top: 100px;
	padding-bottom: 100px;
}
/* Borders */
.no-border {
	border: none!important;
}
.border-right {
	border-right: 1px solid rgba(0,0,0,0.2);
}
/* Alignments */
.vcenter {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.hcenter {
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}
.clear {
	clear: both;
}
/* ========================================================
   Animations
======================================================== */
a, .anim {
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
/*Page Loading Fade Effect */
@-webkit-keyframes fadeIn {
from {
opacity:0;
}
to {
opacity:1;
}
}
@-moz-keyframes fadeIn {
from {
opacity:0;
}
to {
opacity:1;
}
}
@keyframes fadeIn {
from {
opacity:0;
}
to {
opacity:1;
}
}
.fade-in {
	opacity: 0;
	-webkit-animation: fadeIn ease-in 1;
	-moz-animation: fadeIn ease-in 1;
	animation: fadeIn ease-in 1;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-duration: 0.5s;
	-moz-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	animation-delay: 1s;
}
/* =====================================================
   Navigation
===================================================== */
/* Trigger navigation */
.button_container {
	position: fixed;
	top: 40px;
	right: 60px;
	width: 35px;
	height: 27px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	cursor: pointer;
	z-index: 9999;
}
.button_container:before {
	position: absolute;
	left: -150%;
	top: 0;
	content: "MENU";
	font-size: 0.8rem;
	line-height: 27px;
}
.button_container span {
	position: absolute;
	left: 0;
	height: 5px;
	border: none;
	transition: all .35s ease;
	cursor: pointer;
}
.button_container span:nth-of-type(1) {
	top: 0;
	width: 60%;
	background-color: #000;
}
.button_container span:nth-of-type(2) {
	top: 11px;
	width: 100%;
	background-color: #DB0080;
}
.button_container span:nth-of-type(3) {
	bottom: 0;
	width: 60%;
	background-color: #7fb724;
}
.button_container:hover span, .button_container.active:hover span {
	background-color: #F26E24;
	width: 100%;
}
.button_container.active .top {
	transform: translateY(11px) translateX(0) rotate(45deg);
	background-color: #000;
	width: 100%;
}
.button_container.active .middle {
	background-color: #000;
	width: 100%;
	opacity: 0;
}
.button_container.active .bottom {
	transform: translateY(-11px) translateX(0) rotate(-45deg);
	width: 100%;
	background-color: #000;
}
/* Overlay navigation */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	padding: 40px 80px 40px;
	transition: opacity .35s, visibility .35s, height .35s;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	z-index: 99;
}
.overlay:before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: "";
	background: linear-gradient(90deg, #FFF 50.5%, transparent 50%);
	border-bottom: 40px solid #FFF;
}
.overlay:after {
	position: absolute;
	top: 50%;
	right: 0;
	bottom: 0;
	content: "";
	width: 50%;
	height: 100%;
	background-image: url("../img/layout/menu-bg.jpg");
	background-position: center;
	background-size: auto 100%;
	border-top: 15vh solid #FFF;
	border-left: 0 solid #FFF;
	border-right: 80px solid #FFF;
	border-bottom: 15vh solid #FFF;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 1;
}
.overlay.open {
	height: 100%;
	min-height: 720px;
	visibility: visible;
	opacity: 1;
	z-index: 999;
}
.overlay.open li {
	animation: fadeInRight .5s ease forwards;
	animation-delay: .15s;
}
@keyframes fadeInRight {
 0% {
 opacity: 0;
 left: 20%;
}
 100% {
 opacity: 1;
 left: 0;
}
}
.overlay.open li:nth-of-type(2) {
	animation-delay: .20s;
}
.overlay.open li:nth-of-type(3) {
	animation-delay: .25s;
}
.overlay.open li:nth-of-type(4) {
	animation-delay: .30s;
}
.overlay.open li:nth-of-type(5) {
	animation-delay: .35s;
}
.overlay.open li:nth-of-type(6) {
	animation-delay: .40s;
}
.overlay.open li:nth-of-type(7) {
	animation-delay: .45s;
}
.overlay.open li:nth-of-type(8) {
	animation-delay: .50s;
}
.overlay.open li:nth-of-type(9) {
	animation-delay: .55s;
}
.overlay nav {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 999;
}
.overlay .menu {
	padding-bottom: 30px;
}
.overlay ul {
	position: relative;
	display: inline-block;
	list-style: none;
	margin: 0 auto;
	padding: 0;
	width: 100%;
	height: 100%;
}
.overlay ul li {
	position: relative;
	display: block;
	opacity: 0;
}
.overlay ul li a {
	position: relative;
	display: inline-block;
	font-family: "Montserrat", Helvetica, Arial, sans-serif;
	font-weight: 700;
	font-size: 2.5vw;
	text-transform: uppercase;
	text-decoration: none;
	color: rgba(0,0,0,0.5);
	width: 100%;
}
.overlay ul li:hover a {
	color: #F26E24;
}
.overlay ul li a:before {
	position: absolute;
	left: 50%;
	bottom: 0;
	content: "";
	width: 0;
	height: 3px;
	background-color: #FFF;
	transition: .35s;
	z-index: 4;
}
.overlay ul li a:after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	width: 0;
	height: 3px;
	background-color: #7F7F7F;
	transition: .35s;
	z-index: 3;
}
.overlay ul li:hover a:after {
	width: 50%;
}
.overlay ul li:hover a:before {
	left: 50%;
	width: 50%;
}
.overlay ul li a .icon {
	margin-left: 15px;
}
.overlay p {
	margin-bottom: 0;
}
/* Sub-items */
.overlay li > ul {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 50%;
	padding: 10px 0;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	display: none;
}
.overlay li:hover > ul {
	display: block;
}
.overlay ul ul {
	height: auto;
	list-style: none!important;
}
.overlay li > ul > li {
	margin: 0 20px;
}
.overlay li > ul > li a, .overlay li:hover > ul > li a {
	font-family: "Quattrocento Sans", Helvetica, Arial, sans-serif;
	font-weight: normal;
	font-size: 1rem;
	text-align: left;
	width: 100%;
	padding: 5px 10px;
	background-color: transparent;
	color: #FFF;
}
.overlay li > ul > li a:hover {
	background-color: #000;
}
.overlay li > ul > li a:after, .overlay li > ul > li a:before, .overlay li:hover > ul > li a:after, .overlay li:hover > ul > li a:before {
	opacity: 0;
}
/* Overlay widgets */
.overlay .logo {
	position: relative;
	margin-bottom: 20px;
}
.overlay .logo img {
	display: block;
	width: 180px;
	height: auto;
	margin-left: -15px;
}
.overlay .promo, .overlay .socialmedia, .overlay .contacts {
	padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 0;
}
.overlay .promo, .overlay .socialmedia {
	padding-top: 20px;
}
.overlay .socialmedia {
	padding-top: 40px;
}
.overlay .promo {
	text-align: center;
	text-transform: uppercase;
}
.overlay .promo a {
	position: relative;
	display: inline-block;
}
.overlay .promo p, .overlay .socialmedia p {
	margin-bottom: 20px;
	color: #FFF;
}
.overlay .promo img {
	position: relative;
	max-width: 125px;
	margin-left: auto;
	margin-right: auto;
}
.overlay .promo .row > div {
	border-right: 1px solid rgba(255,255,255,0.25);
}
.overlay .promo .row > div:last-of-type {
	border-right: none;
}
.overlay .socialmedia span {
	display: block;
	width: 100%;
}
.overlay .socialmedia span a {
	display: inline-block;
	color: rgba(0,0,0,0.5);
	margin-right: 15px;
	width: 45px;
}
.overlay .socialmedia span a:hover {
	color: rgba(0,0,0,1);
}
.overlay .socialmedia .icon {
	font-size: 2rem;
	margin: 0!important;
}
.overlay .contacts p {
	font-size: 0.9rem;
	padding-left: 30px;
}
.overlay .contacts .icon {
	display: inline-block;
	text-align: center;
	width: 30px;
	margin-left: -35px;
}
/* Back to top: https://codyhouse.co/gem/back-to-top/ */
.cd-top {
	position: fixed;
	bottom: 40px;
	right: 40px;
	display: inline-block;
	height: 50px;
	width: 50px;
	text-align: center;
	overflow: hidden;
	white-space: nowrap;
	background: #046544;
	background: -webkit-linear-gradient(45deg, #013825 0%, #046544 50%, #7FB724 100%);
	background: -moz-linear-gradient(45deg, #013825 0%, #046544 50%, #7FB724 100%);
	background: linear-gradient(45deg, #013825 0%, #046544 50%, #7FB724 100%);
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	-ms-border-radius: 50px;
	-o-border-radius: 50px;
	border-radius: 50px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	visibility: hidden;
	opacity: 0;
	z-index: 999;
}
.cd-top:hover {
	background: #FF9800;
	background: -webkit-linear-gradient(45deg, #FF5722 0%, #F26E24 50%, #FF9800 100%);
	background: -moz-linear-gradient(45deg, #FF5722 0%, #F26E24 50%, #FF9800 100%);
	background: linear-gradient(45deg, #FF5722 0%, #F26E24 50%, #FF9800 100%);
}
.cd-top.cd-is-visible {
	visibility: visible;
	opacity: 1;
}
/*.cd-top.cd-fade-out {
	opacity: .5;
}*/
.no-touch .cd-top:hover {
	background-color: #FF9800;
	opacity: 1;
}
.cd-top .icon {
	position: absolute;
	left: 0;
	top: 0;
	color: #FFF;
	width: 100%;
	line-height: 50px;
}
/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}
.header:before, .header:after {
	position: absolute;
	top: 0;
	right: 0;
	content: "";
	width: 50%;
	background-color: #FFF;
	border-bottom: 1px solid transparent;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.header:before {
	left: 40px;
	height: 40px;
}
.header:after {
	right: 40px;
	height: 105px;
}
.header .main-logo {
	position: relative;
	top: 0;
	left: 50%;
	width: 187px;
	height: auto;
	padding: 5px 10px;
	background-color: #FFF;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: inherit;
}
.header .main-logo img:nth-of-type(1), .header.sticky .main-logo img:nth-of-type(2) {
	position: relative;
	display: block;
	top: 0;
}
.header .main-logo img:nth-of-type(2), .header.sticky .main-logo img:nth-of-type(1) {
	position: relative;
	display: none;
	top: -100%;
}
/* Header sticky */
.header, .header.sticky:before, .header.sticky:after {
	height: 70px;
}
.header.sticky:before, .header.sticky:after {
	border-bottom-color: #D9D9D9;
}
.header.sticky .main-logo {
	width: 250px;
}
.header.sticky .main-logo img:nth-of-type(2) {
	padding: 10px 0;
}
.header.sticky .nav-lang, .header.sticky .event-date {
	top: 14px;
}
.header.sticky .button_container {
	top: 20px;
}
/* Header - event date */
.header .event-date {
	position: absolute;
	top: 34px;
	left: 55%;
	font-family: "Montserrat", Helvetica, Arial, sans-serif;
	font-weight: 700;
	font-size: 1.5rem;
	text-align: center;
	letter-spacing: 0.1rem;
	line-height: 40px;
	width: 140px;
	height: 40px;
	color: #777;
	-webkit-transform: translateX(100%);
	-moz-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
	z-index: inherit;
}
/* Header - languages */
.nav-lang {
	position: fixed;
	top: 0;
	left: 40px;
	width: 100px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	z-index: 9999;
}
.nav-lang a {
	display: inline-block;
	font-family: "Montserrat", Helvetica, Arial, sans-serif;
	font-weight: 700;
	text-decoration: none;
	color: rgba(0,0,0,0.3);
	padding: 0 10px;
}
.nav-lang a:hover, .nav-lang a.selected:hover {
	color: rgba(242,110,36,1);
}
.nav-lang a.selected {
	color: #DB0080;
}
/* Header - languages */
.header-page {
	position: relative;
	width: 100%;
	height: 350px;
	padding-left: 40px;
	padding-right: 40px;
	background: #046544;
	background: -webkit-linear-gradient(-45deg, #7fb724 0%, #046544 50%, #013825 100%);
	background: -moz-linear-gradient(-45deg, #7fb724 0%, #046544 50%, #013825 100%);
	background: linear-gradient(135deg, #7fb724 0%, #046544 50%, #013825 100%);
	z-index: 1;
}
.header-page:before, .header-page:after {
	position: absolute;
	left: 50%;
	content: "";
	width: 3px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 1;
}
.header-page:before {
	bottom: 0;
	height: 20px;
	background-color: #FFF;
}
.header-page:after {
	bottom: -50px;
	height: 50px;
	background-color: #000;
}
.header-page .section-title.custom {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
}
.header-page .section-title.custom h1, .header-page .section-title.custom h2 {
	color: #FFF;
}
.header-page .section-title.custom h1 {
	font-size: 2.8rem;
	line-height: 3rem;
	margin-bottom: 10px;
}
.header-page .section-title.custom h1 span {
	display: block;
}
/* ========================================================
   Slideshow
======================================================== */
.slideshow {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100vh;
	background: #000;
	overflow: hidden;
	z-index: 1;
}
.slides {
	position: absolute;
	width: 100%;
	height: 100%;
}
.slide {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: center;
	align-items: center;
}
.slide--current {
	opacity: 1;
	pointer-events: auto;
}
.slide__img {
	position: absolute;
	top: -200px;
	left: -200px;
	width: calc(100% + 400px);
	height: calc(100% + 400px);
	background-size: cover;
	background-position: 50% 50%;
}
.slidenav {
	position: absolute;
	left: 50%;
	bottom: 8%;
	text-align: center;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}
.slidenav__item {
	display: inline-block;
	float: left;
	width: auto;
	height: 50px;
	font-size: 2rem;
	border: 0;
	background-color: #046544;
	color: #FFF;
	margin: 0;
	padding: 0 20px;
	cursor: pointer;
}
.slidenav__item:focus {
	outline: none;
}
.slidenav__item:hover {
	background-color: #F26E24;
	color: #FFF;
}
.slidenav__item.slidenav__item--prev {
	-webkit-border-radius: 25px 0 0 25px;
	-moz-border-radius: 25px 0 0 25px;
	-ms-border-radius: 25px 0 0 25px;
	-o-border-radius: 25px 0 0 25px;
	border-radius: 25px 0 0 25px;
}
.slidenav__item.slidenav__item--next {
	-webkit-border-radius: 0 25px 25px 0;
	-moz-border-radius: 0 25px 25px 0;
	-ms-border-radius: 0 25px 25px 0;
	-o-border-radius: 0 25px 25px 0;
	border-radius: 0 25px 25px 0;
}
.slidenav .btn {
	box-shadow: 2px 2px 20px -1px rgba(0,0,0,1);
}
.slide__title {
	position: relative;
	font-family: "Montserrat", Helvetica, Arial, sans-serif;
	font-weight: 700;
	font-size: 6vw;
	text-transform: none;
	text-shadow: 2px 2px 28px rgba(0, 0, 0, 0.15);
	line-height: 1;
	color: rgba(255,255,255,0.85);
	margin: 0;
	cursor: default;
}
.slide__quote {
	font-family: "Montserrat", Helvetica, Arial, sans-serif;
	font-size: 2.65vw;
	font-weight: 700;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
	line-height: 8vh;
	color: rgba(255,255,255,0.9);
}
/* Slideshow scattered text: https://codepen.io/mvaneijgen/pen/LpjQYZ */
.scatter-text {
	position: relative;
	background-color: rgba(236,241,242,0.9);
	color: #000;
	padding: 20px 50px;
}
.scatter-text:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	content: attr( data-text);
	color: #ECF1F2;
	padding: 20px 50px;
	background-color: rgba(4,101,68,0.8);
	/*-webkit-clip-path: polygon(0 0, 60% 0%, 40% 100%, 0% 100%);
	clip-path: polygon(0 0, 60% 0%, 40% 100%, 0% 100%);*/
	overflow: hidden;
}
/* ========================================================
   Video background: https://codepen.io/henripeetsmann/pen/KpVVLq
======================================================== */
.videobg {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #111;
}
.videobg-width {
	position: absolute;
	width: 100%;
	height: 100%;
	left: -9999px;
	right: -9999px;
	margin: auto;
}
.videobg-aspect {
	position: absolute;
	width: 100%;
	height: 0;
	top: -9999px;
	bottom: -9999px;
	margin: auto;
	padding-bottom: 56.25%;
	overflow: hidden;
}
.videobg-make-height {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.videobg-hide-controls {
	box-sizing: content-box;
	position: relative;
	height: 100%;
	width: 100%;
	padding: 55px 97.7777px;
	top: -55px;
	left: -97.7777px;
}
.videobg iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border: 0 none;
}
/* Play pause buttons: https://codepen.io/filipbech/pen/cbaxq */
.buttons-play-pause {
	position: absolute;
	bottom: 8%;
	right: 10%;
	text-align: center;
	z-index: 999;
}
.buttons-play-pause .play, .buttons-play-pause .pause {
	display: inline-block;
	text-align: center;
	background-color: transparent;
	border: none;
	cursor: pointer;
}
.buttons-play-pause .play, .buttons-play-pause .pause, .buttons-play-pause .play:focus, .buttons-play-pause .pause:focus {
	outline: 0;
}
.buttons-play-pause i {
	font-size: 3rem;
	color: #FFF;
}
.buttons-play-pause .play:hover i, .buttons-play-pause .pause:hover i {
	color: #F26E24;
}
/* =====================================================
   Content Sections
===================================================== */
/* Common */
/*main {
	position: relative;
	width: 100%;
	padding-bottom: 350px;
	overflow-y: auto;
	transform-style: preserve-3d;
	will-change: transform;
	z-index: 1;
}*/
main {
	position: relative;
	width: 100%;
	z-index: 1;
}
/* Sections common */
.section {
	position: relative;
}
.section-page {
	padding-top: 100px;
	padding-bottom: 50px;
}
.section.full-height {
	height: 100vh;
}
/* Section titles */
.section-title {
	position: relative;
	text-align: left;
	padding-bottom: 30px;
	margin-bottom: 40px;
	text-shadow: 0 25px 25px rgba(0,0,0, .15);
}
.section-title:before {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	width: 70px;
	height: 5px;
	background: #F26E24;
	background: -webkit-linear-gradient(45deg, #FF5722 0%, #F26E24 50%, #FF9800 100%);
	background: -moz-linear-gradient(45deg, #FF5722 0%, #F26E24 50%, #FF9800 100%);
	background: linear-gradient(45deg, #FF5722 0%, #F26E24 50%, #FF9800 100%);
}
.section-title h1 {
	font-size: 2.8rem;
	color: #046544;
}
.section-title h2 {
	font-weight: normal;
	color: #777;
}
.section-title span {
	display: block;
}
.section-title.custom {
	padding-top: 20px;
	padding-bottom: 0;
}
.section-title.custom:before {
	display: none;
}
.section-title.custom h1 {
	font-size: 3.5vw;
	line-height: 3.5vw;
}
.section .section-first-paragraph, .section .section-paragraph {
	padding-left: 3vw;
	padding-right: 3vw;
}
.section .section-paragraph img {
	max-width: 130px;
	margin: 0 auto;
	padding: 0 0 20px;
}
.section .section-first-paragraph {
	position: relative;
	font-family: "Oswald", Helvetica, Arial, sans-serif;
	font-size: 1.5rem;
	font-style: normal;
	color: rgba(0,0,0,0.7);
}
.section .section-first-paragraph:before {
	position: absolute;
	top: 10px;
	left: 5px;
	content: "";
	width: 15px;
	height: 15px;
	background-color: #DB0080;
}
.section p span {
	display: block;
}
/* Section pages */
.header-section {
	text-align: center;
}
.header-section h2 {
	font-family: "Oswald", Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	color: #F26E24;
}
.header-section h2 span {
	display: block;
}
.header-section h3 {
	font-family: "Oswald", Helvetica, Arial, sans-serif;
	color: #777;
}
.section-content > div:nth-of-type(1) {
	padding-right: 30px;
}
.section-content > div:nth-of-type(2) {
	border-left: 1px solid #D9D9D9;
	padding-left: 50px;
}
.section-content h3, .section-content h4, .section-content h5 {
	line-height: 1.5rem;
}
.section-content h3, .section-content h4 {
	font-size: 1.2rem;
	margin-bottom: 10px;
}
.section-content h3 {
	position: relative;
	font-weight: 700;
	text-transform: uppercase;
	text-align: right;
	color: #DB0080;
	z-index: 2;
}
.section-content .note {
	color: #046544;
}
.section-content .icon {
	position: absolute;
	right: 30px;
	top: 0;
	font-size: 5rem;
	width: 7rem;
	text-align: center;
	color: rgba(0,0,0,0.1);
	-webkit-transform: rotate(-10deg);
	-moz-transform: rotate(-10deg);
	-ms-transform: rotate(-10deg);
	-o-transform: rotate(-10deg);
	transform: rotate(-10deg);
	z-index: 0;
}
.section-content h4 {
	font-weight: 700;
	text-transform: uppercase;
	color: #046544;
}
.section-content h5 {
	font-weight: 700;
	color: #046544;
}
.section-content ul li {
	position: relative;
}
.section-content ul li:before {
	position: absolute;
	left: -15px;
	content: "-";
}
.section-content ul li li:before {
	position: absolute;
	left: -15px;
	content: "› ";
}
.section-content hr {
	margin-top: 2rem;
	margin-bottom: 2rem;
}
.section-content h3 > span {
	position: absolute;
	right: -15px;
	top: 35px;
	font-size: 5rem;
	width: 7rem;
	text-align: center;
	color: rgba(0,0,0,0.1);
	-webkit-transform: rotate(-10deg);
	-moz-transform: rotate(-10deg);
	-ms-transform: rotate(-10deg);
	-o-transform: rotate(-10deg);
	transform: rotate(-10deg);
	z-index: 1;
}
.section-content .text-highlight {
	color: #DB0080;
}
.section-content .text-highlight span {
	display: block;
}
/* Intro */
.section.intro {
	padding-top: 100px;
	padding-bottom: 100px;
}
.section.intro p {
	font-size: 1.5rem;
	padding-left: 4vw;
	padding-right: 4vw;
}
.section.intro p:last-of-type {
	font-weight: 700;
	color: #DB0080;
	margin-bottom: 0;
}
/* Countdown */
.section.countdown {
	padding-top: 50px;
	padding-bottom: 50px;
}
/* News */
.news h4 {
	text-transform: none;
}
.news h5 {
	font-size: 0.8rem;
	color: #777;
}
/* About */
.about {
	margin-bottom: 50px;
}
/* Certification */
.certification figure {
	position: relative;
	top: 50%;
	max-width: 200px;
	margin-left: auto;
	margin-right: auto;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
/* Highlight sections */
.section.highlight {
	padding-top: 50px;
	padding-bottom: 50px;
}
.section.highlight .section-title {
	margin-top: 50px;
}
.section.highlight .section-title h1, .section.highlight .section-first-paragraph, .section.highlight p {
	color: #FFF;
}
.section.highlight .section-title h1 {
	font-size: 4rem;
	background: none;
}
.section.highlight .section-title span {
	position: absolute;
	top: -40%;
	right: 0;
	font-size: 10vw;
	color: rgba(255,255,255,0.2);
}
.section.highlight .section-first-paragraph:before {
	display: none;
}
.section.highlight figure {
	position: relative;
	max-width: 380px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
}
.section.highlight.green figure {
	top: 10%;
	max-width: 380px;
}
.section.highlight.green .left-column, .section.highlight .right-column {
	position: relative;
}
.section.highlight.green .left-column:before {
	position: absolute;
	top: -100%;
	left: -190%;
	content: "";
	width: 245%;
	height: 200%;
	-webkit-transform: rotate(30deg);
	-moz-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	-o-transform: rotate(30deg);
	transform: rotate(30deg);
	background: #FFF;
	background: -webkit-linear-gradient(-60deg, #f1f4f9 50%, #FFFFFF 75%, #FFFFFF 100%);
	background: -moz-linear-gradient(-60deg, #f1f4f9 50%, #FFFFFF 75%, #FFFFFF 100%);
	background: linear-gradient(150deg, #f1f4f9 50%, #FFFFFF 80%, #FFFFFF 100%);
	z-index: 0;
}
.highlight-bg.green {
	background: #046544;
	background: -webkit-linear-gradient(-45deg, #7fb724 0%, #046544 50%, #013825 100%);
	background: -moz-linear-gradient(-45deg, #7fb724 0%, #046544 50%, #013825 100%);
	background: linear-gradient(135deg, #7fb724 0%, #046544 50%, #013825 100%);
	overflow: hidden;
}
.section.highlight.pelicas .section-title h1, .section.highlight.pelicas .section-first-paragraph {
	font-family: "Montserrat", Helvetica, Arial, sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	color: #046544;
}
.section.highlight.pelicas .section-title h1 {
	font-size: 1.2vw;
}
.section.highlight.pelicas p {
	line-height: 1.25;
	color: inherit;
}
.section.highlight.pelicas {
	padding-top: 0;
	padding-bottom: 0;
}
.section.highlight.pelicas .left-column {
	position: relative;
}
.section.highlight.pelicas .left-column figure {
	max-width: 380px;
	margin-left: auto;
	margin-right: auto;
}
.section.highlight.pelicas .center-column > div, .section.highlight.pelicas .left-column figure {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.section.highlight.pelicas .center-column figure {
	position: relative;
	max-width: 380px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 0;
}
.section.highlight.pelicas figure {
	max-width: none;
}
/* Sponsors */
.section.sponsors {
	padding-top: 50px;
}
.section.sponsors h3 {
	font-family: "Oswald", Helvetica, Arial, sans-serif;
	font-size: 1rem;
	text-align: center;
	color: #777;
	margin-bottom: 2rem;
	padding-top: 25px;
}
.section.sponsors .container > .row {
	padding-top: 20px;
	padding-bottom: 0;
	border-bottom: #D9D9D9;
}
.section.sponsors .container > .row > div {
	border-right: 1px solid #D9D9D9;
}
.section.sponsors .container > .row > div:last-child {
	border-right: none;
}
.section.sponsors img, .section.sponsors a img {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
	max-width: 140px;
	opacity: 0.9;
}
.section.sponsors img:hover, .section.sponsors a:hover img {
	opacity: 1;
}
.section.sponsors a {
	display: block;
	width: 100%;
}
/* Colors */
.light-bg {
	background-color: #FFF;
}
.no-bg {
	background-color: #F1F4F9;
}
/*.gradientback:after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -100px;
	content: "";
	height: 100px;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(137,255,241,0)), color-stop(100%, rgba(0,0,0,1)));
	background: -webkit-linear-gradient(top, rgba(137,255,241,0) 0%, rgba(0,0,0,1) 100%);
	background: -moz-linear-gradient(top, rgba(137,255,241,0) 0%, rgba(0,0,0,1) 100%);
	background: -ms-linear-gradient(top, rgba(137,255,241,0) 0%, rgba(0,0,0,1) 100%);
	background: -o-linear-gradient(top, rgba(137,255,241,0) 0%, rgba(0,0,0,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}*/
/* Footer */
.footer {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	height: 40px;
	z-index: 9;
}
.footer p {
	line-height: 40px;
	font-size: 12px;
	margin-bottom: 0;
}
.footer a {
	text-decoration: none;
}
.footer .credits {
	text-align: left;
}
.footer .policy {
	text-align: right;
}
/* Footer - social links */
.footer .nav-social {
	text-align: center;
}
.footer .nav-social a {
	display: inline-block;
	font-size: 1.4rem;
	text-align: center;
	line-height: 40px;
	color: rgba(0,0,0,0.5);
	padding: 0 10px;
}
.footer .nav-social a:hover {
	color: rgba(0,0,0,1);
}
/* Sub footer */
/*.sub-footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	padding-top: 100px;
	background-color: #FFF;
}*/
.sub-footer {
	position: relative;
	width: 100%;
	background-color: #FFF;
}
.sub-footer .contacts {
	text-align: center;
	margin-bottom: 40px;
	padding: 10px 10px 40px;
	border-bottom: 1px solid #D9D9D9;
}
.sub-footer .contacts span {
	display: block;
}
.sub-footer .contacts p {
	display: inline;
	font-size: 0.9rem;
	padding: 0 10px;
}
.sub-footer .contacts span:nth-of-type(1) p {
	font-family: "Montserrat", Helvetica, Arial, sans-serif;
	font-size: 1.2em;
	font-weight: 700;
	color: #777;
}
/* ==================================================
   Custom Bootstrap 4 Accordion/Collapse
================================================== */
.card {
	margin-top: 10px;
	border: none;
	border-radius: 0;
}
.card-header {
	padding: 0;
}
.card-header h5 {
	font-family: "Oswald", Helvetica, Arial, sans-serif;
	margin-bottom: 0;
}
.card-header a {
	display: block;
	text-decoration: none;
	padding: .75rem 1.25rem;
	border: 1px solid #D9D9D9;
	border-left: 2px solid #046544;
	border-bottom: none;
}
.card-header a:hover, .card-header a:hover span, .card-header a[aria-expanded="true"], .card-header a[aria-expanded="true"] span {
	color: #F26E24;
}
.card-header a[aria-expanded="true"] {
	border-left: 2px solid #F26E24;
}
.card-header a span {
	color: #7fb724;
}
.card-header .fas {
	float: right;
	line-height: 1.2;
}
.card-header a[aria-expanded="false"] .fas {
	float: right;
	line-height: 1.2;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}
.card-header a[aria-expanded="true"] .fas {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}
.card-body {
	padding: 1.25rem 3rem;
	border: 1px solid #D9D9D9;
	border-top: none;
}
.card-body h4 {
	font-size: 1.2rem;
	color: #046544;
}
.card-body h5 {
	font-size: 1rem;
	font-weight: 700;
	color: #046544;
}
.card-body p:last-child, .card-body ul:last-child {
	margin-bottom: 0;
}
.card-body ul li:before {
	position: relative;
	content: "- ";
	margin-left: -12px;
}
/* =====================================================
   UI - Buttons
===================================================== */
/* Common cases */
.btn {
	position: relative;
	font-family: "Montserrat", Helvetica, Arial, sans-serif;
	font-size: 0.9rem;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.1rem;
	max-height: 50px;
	padding: 0.9rem 1.8rem;
	border-radius: 50px;
	box-shadow: 2px 2px 20px -1px rgba(167,179,184,1);
	transition: none;
	overflow: hidden;
}
.btn, .btn:hover, .btn:focus, .btn:active, .btn:active:focus {
	border: none;
}
.btn.btn-primary {
	background-color: #046544;
	color: #FFF;
}
a.btn:not([href]):not([tabindex]) {
	color: #FFF;
	text-decoration: none;
}
.btn.btn-primary.btn-gradient {
	background: -webkit-linear-gradient(45deg, #013825 0%, #046544 50%, #7FB724 100%);
	background: -moz-linear-gradient(45deg, #013825 0%, #046544 50%, #7FB724 100%);
	background: linear-gradient(45deg, #013825 0%, #046544 50%, #7FB724 100%);
	color: #FFF!important;
}
.btn.btn-primary:hover {
	background-color: #F26E24;
}
.btn.btn-primary.btn-gradient:hover, .section.highlight .btn.btn-primary:hover, .slideshow .btn.btn-primary:hover {
	background: -webkit-linear-gradient(45deg, #FF5722 0%, #F26E24 50%, #FF9800 100%);
	background: -moz-linear-gradient(45deg, #FF5722 0%, #F26E24 50%, #FF9800 100%);
	background: linear-gradient(45deg, #FF5722 0%, #F26E24 50%, #FF9800 100%);
}
.btn.btn-secondary, .btn-secondary:not(:disabled):not(.disabled):active:focus {
	font-size: 0.8rem;
	background-color: #FFF;
	border: 2px solid #046544;
	color: #046544;
	padding: 0.5rem 1.5rem;
	box-shadow: none;
}
.btn.btn-secondary:hover {
	background-color: #046544;
	border-color: #046544;
	color: #FFF;
}
.btn.btn-link {
	position: relative;
	text-align: left;
	text-decoration: none;
	line-height: 1.2;
	padding-left: 80px;
	color: #046544;
	border: 1px solid #D9D9D9;
	border-radius: 0;
	background-color: rgba(0,0,0,.03);
	box-shadow: none;
	white-space: normal;
	max-width: 250px;
	max-height: inherit;
}
.btn.btn-link:hover {
	border-color: #046544;
	background-color: #046544;
}
.btn.btn-link i {
	float: left;
	margin-left: -60px;
	font-size: 3rem;
	color: #7fb724;
}
.btn.btn-link:hover, .btn.btn-link:hover i {
	color: #FFF;
}
.btn-link span {
	display: block;
	font-size: 0.75rem;
}
/* Special cases */
.section.highlight .btn.btn-primary, .slideshow .btn.btn-primary, .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
	color: #046544;
	background-color: #FFF;
	box-shadow: 2px 2px 20px -1px rgba(0,0,0,0.25);
}
.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus {
	box-shadow: none!important;
}
.slideshow .btn.btn-primary {
	color: #046544!important;
}
.section.highlight .btn.btn-primary:hover, .slideshow .btn.btn-primary:hover {
	color: #FFF!important;
}
.slideshow .btn.btn-primary.sold-out {
	cursor: auto;
}
/* =====================================================
   UI - Images
===================================================== */
/* Framed images */
.framed {
	overflow: hidden;
}
.framed img {
	position: relative;
}
.framed:after {
	position: absolute;
	top: 30px;
	bottom: 30px;
	content: "";
	width: 100%;
	border: 3px solid #FFF;
}
.framed.left:after {
	left: 30px;
}
.framed.right:after {
	left: -60px;
}
/* Pacemakers */
#pacemakers img {
	width: 80%;
}
/* Skyline */
.skyline {
	position: relative;
	min-height: 250px;
	padding: 40px 0;
}
.skyline:after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	content: "";
	background-image: url("../img/layout/skyline.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 75% auto;
}
/*.skyline > div:before {
	position: absolute;
	top: 145px;
	top: 57.75%;
	left: 0;
	right: 0;
	content: "";
	height: 1px;
	background-color: #006443;
}*/
/* ==================================================
   Men vs Women Infograph + Animated Graph: http://codepen.io/ejsado/pen/cLrlm/
================================================== */
.intersex div.graph {
	position: relative;
	margin: 20px 0;
}
.intersex div.graph .fa {
	font-size: 1.5em;
}
.intersex div.graph .fa.woman {
	color: #BD2766;
}
.intersex div.graph .fa.man {
	color: #79B62B;
}
.intersex time {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -28px;
	margin-top: -45px;
	width: 56px;
	height: 56px;
	line-height: 53px;
	background-color: rgba(22,182,206,0.9);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	font-family: "Oswald", Helvetica, Arial, sans-serif;
	font-size: 1.2em;
	text-align: center;
	color: #fff;
}
.intersex p {
	font-size: 0.8em;
	text-align: center;
	text-transform: uppercase;
}
/* Pie Chart */
@keyframes bake-pie {
 from {
 transform: rotate(0deg) translate3d(0, 0, 0);
}
}
.pieID {
	display: inline-block;
	vertical-align: top;
	margin: 0 auto;
}
.pie, .slice, .slice span {
	height: 200px;
	width: 200px;
}
.pie {
	position: relative;
	margin: 20px auto 0 -100px;
	left: 50%;
}
.pie:before {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	width: 100px;
	height: 100px;
	background-color: #FFF;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	margin-left: -50px;
	margin-top: -50px;
}
.pie:after {
	content: "";
	display: block;
	width: 120px;
	height: 2px;
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	box-shadow: 0 0 3px 4px rgba(0, 0, 0, 0.1);
	margin: 220px auto;
}
.slice {
	position: absolute;
	clip: rect(0px, 200px, 200px, 100px);
	animation: bake-pie 1s;
}
.slice span {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #000;
	border-radius: 50%;
	clip: rect(0px, 200px, 200px, 100px);
}
.legend {
	list-style-type: none;
	margin: 0;
	background-color: #FFF;
	padding: 15px;
	width: 100%;
}
.legend li {
	margin: 0.7em 0;
	padding: 0 0 0 15px;
	border-left: 1.25em solid #000;
	font-size: 0.85em;
	text-transform: uppercase;
}
.legend li:before {
	content: ""!important;
}
.legend li:last-child {
	margin-bottom: 0;
}
.legend li.men {
	background-color: #16B6CE;
	width: 50%;
}
.legend li.women {
	background-color: #BD2766;
	width: 100%;
}
.legend em {
	display: block;
	font-style: normal;
}
.legend span {
	padding: 0 5px;
}
/* =====================================================
   UI - Other elements
===================================================== */
/* Frame borders */
.frame > .frame-top, .frame > .frame-bottom {
	position: fixed;
	left: 0;
	right: 0;
	height: 40px;
	background-color: #FFF;
	z-index: 2;
}
.frame > .frame-top:before, .frame > .frame-bottom:before {
	position: fixed;
	top: 0;
	content: "";
	width: 40px;
	height: 100%;
	background-color: #FFF;
}
.frame > .frame-top {
	top: 0;
}
.frame > .frame-top:before {
	left: 0;
}
.frame > .frame-bottom {
	bottom: 0;
}
.frame > .frame-bottom:before {
	right: 0;
}
/* Scroll indicator */
.scroll-indicator {
	position: fixed;
	height: 5px;
	top: 0;
	left: 0;
	background: #F26E24;
	background: -webkit-linear-gradient(45deg, #FF5722 0%, #F26E24 50%, #FF9800 100%);
	background: -moz-linear-gradient(45deg, #FF5722 0%, #F26E24 50%, #FF9800 100%);
	background: linear-gradient(45deg, #FF5722 0%, #F26E24 50%, #FF9800 100%);
	z-index: 999;
}
/* Countdown */
.countdown .right-column h3 {
	position: absolute;
}
.countdown .right-column figure {
	position: relative;
	z-index: 9;
}
#countdown {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	text-align: center;
	color: #FFF;
	margin: 0;
	padding: 20px 15px 20px 15px;
	background: -webkit-linear-gradient(45deg, #FF5722 0%, #F26E24 50%, #FF9800 100%);
	background: -moz-linear-gradient(45deg, #FF5722 0%, #F26E24 50%, #FF9800 100%);
	background: linear-gradient(45deg, #FF5722 0%, #F26E24 50%, #FF9800 100%);
	z-index: 99;
}
#countdown h3 {
	font-family: "Oswald", Helvetica, Arial, sans-serif;
	font-size: 1.5rem;
	text-transform: uppercase;
	line-height: 2rem;
	background-color: #046544;
	margin-top: -40px;
	margin-left: 15px;
	padding: 0 15px 3px;
	box-shadow: 2px 2px 20px -1px rgba(0,0,0,0.3);
}
#countdown ul {
	margin: 0;
	padding: 0;
}
#countdown li {
	display: inline-block;
	font-family: "Montserrat", Helvetica, Arial, sans-serif;
	font-weight: 700;
	font-size: 4rem;
	text-align: center;
	margin: 0 -3px 0 0;
	padding: 0;
	width: 24%;
	text-shadow: 0 25px 25px rgba(0,0,0, .15);
}
#countdown li .label {
	font-size: 1vw;
	text-transform: uppercase;
}
/* Watermarks */
.watermark:before {
	position: absolute;
	left: 0;
	right: 0;
	top: 25%;
	bottom: 0;
	content: "SSLx";
	font-family: "Montserrat", Helvetica, Arial, sans-serif;
	font-weight: 700;
	font-size: 35vw;
	line-height: 35vh;
	text-align: center;
	color: rgba(0,0,0,0.03);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
/* Forms */
.forms {
	margin-top: 40px;
}
/* Display content based on date and time: http://jsfiddle.net/eN6Sg/5/ */
.timedContent, .DateRange {
	display: none;
}
/* Asterisks */
.asterisk {
	display: inline;
	font-size: 1.25rem;
	color: #f26e24;
}
/* Text highlights */
.highlight h5 {
	font-family: "Oswald", Helvetica, Arial, sans-serif;
	font-weight: normal;
	text-align: center;
	font-size: 1.5rem;
	color: #F26E24;
}
/* Custom horizontal rules */
.custom-hr {
	display: block;
	border-top: 3px solid #DDD;
	width: 100%;
	margin-top: 2rem;
	margin-bottom: 2rem;
	clear: both;
}
/* =====================================================
   Responsive Tables
===================================================== */
.datagrid {
	background-color: #FFF;
}
.datagrid table {
	border: 1px solid #D9D9D9;
	margin: 10px 0px 30px;
	width: 100%;
	overflow: hidden;
}
.datagrid table h4 {
	text-align: center;
	padding: 0;
}
.datagrid table h6 {
	font-size: 1.1em;
	font-weight: 700;
	color: #79B62B;
	margin-bottom: 0;
}
.datagrid table .fa {
	font-size: 1.5em;
	margin-right: 5px;
}
.datagrid table thead tr {
	text-align: center;
	font-size: 1em;
	border-bottom: 1px solid #D9D9D9;
	background-color: rgba(0,0,0,0.075);
}
.datagrid table thead:hover tr {
	background-color: rgba(0,0,0,0.075);
}
.datagrid table thead, .datagrid table th, .datagrid table td {
	padding: 10px;
	vertical-align: middle;
}
.datagrid table th, .datagrid table td {
	border-right: 1px solid #D9D9D9;
}
.datagrid table th:last-child, .datagrid table td:last-child {
	border-right: none;
}
.datagrid table th h5 {
	margin-bottom: 0;
}
.datagrid table tr {
	border-bottom: 1px solid #D9D9D9;
}
.datagrid table tr:nth-child(2n) {
	background-color: #F9F9F9;
}
.datagrid table tr:hover {
	background-color: #F2F2F2;
}

/* =====================================================
   Responsive Media Queries
===================================================== */
@media (max-height:800px) {
.overlay li > ul > li a {
	padding: 0.5vh 10px!important;
	line-height: 1.2;
}
}

@media (min-width:0em) and (max-width:40em) {
main {
	margin-bottom: 0;
	padding-bottom: 0;
}
.overlay {
	padding: 20px;
}
.overlay .logo {
	position: relative;
	margin-bottom: 0;
}
.overlay .logo img {
	width: 150px;
}
.overlay nav {
	position: fixed;
	top: 15vh;
	left: 0;
	width: 100%;
	padding-left: 40px;
	padding-right: 40px;
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
}
.overlay .menu {
	padding-top: 5vh;
	padding-left: 15px;
	padding-bottom: 0;
}
.overlay ul li a {
	font-size: 1.5rem;
}
.overlay li > ul {
	position: relative;
	top: inherit;
	left: 0;
	width: inherit;
	padding: 5px 0;
}
.overlay li > ul > li a {
	font-size: 0.7rem;
	color: #000;
}
.overlay li:hover > ul > li a {
	color: #000;
}
.overlay li > ul > li a:hover {
	background-color: #000;
	color: #FFF;
}
.overlay li > ul > li {
	margin: 0;
}
.overlay ul li a:before, .overlay ul li a:after {
	display: none;
}
.overlay li > ul > li a, .overlay li:hover > ul > li a {
	padding: 5px;
	text-transform: none;
	line-height: 1rem;
}
.overlay.open {
	min-height: 100%;
}
.overlay .promo {
	display: none;
}
.overlay:after {
	display: none;
}
.overlay:before {
	background-color: #FFF;
}
.header:before {
	left: 0;
	width: 100%;
	height: 50px;
}
.header:after {
	display: none;
}
.header .main-logo {
	width: 150px;
}
.header.sticky .main-logo {
	width: 190px;
	padding: 10px 10px;
}
.header .event-date {
	display: none;
}
.header-page {
	height: 280px;
}
.header-page .section-title.custom h1 {
	font-size: 1.5rem;
	line-height: 1.5rem;
}
.header-section h2 {
	font-size: 1.5rem;
}
.header-section h2 span {
	display: inline;
}
.header-section h3 {
	font-size: 1.2rem;
}
.section-content h3 {
	text-align: left;
}
.section-content .icon {
	top: -25px;
}
.section-content > div:nth-of-type(2) {
	border-left: none;
	padding-left: 15px;
}
.section.highlight.pelicas .section-first-paragraph p {
	font-size: 5vw;
	text-align: center;
}
.nav-lang {
	left: 0;
	width: 20%;
	height: 50px;
	line-height: 50px;
	padding-left: 0;
}
.nav-lang a {
	padding: 0 5px;
}
.button_container {
	top: 12px;
	right: 10px;
}
.button_container:before {
	display: none;
}
.slide__title {
	font-size: 3rem;
}
.slide__quote {
	font-size: 1.5rem;
}
.frame {
	display: none;
}
.section-title h1 {
	font-size: 1.6rem;
	line-height: 2rem;
}
.section-title h2 {
	font-size: 1.3rem;
}
.section-title span {
	display: inline;
}
.section-title.custom h1 {
	font-size: 2.8rem;
	line-height: 2.8rem;
}
.section .section-first-paragraph, .section .section-paragraph {
	padding-left: 40px;
	padding-right: 10px;
}
.section .section-first-paragraph {
	font-size: 1.2rem;
}
.section.highlight figure {
	max-width: 250px;
}
.section.highlight {
	padding-top: 0;
	padding-bottom: 40px;
}
.section.highlight.green .left-column {
	padding-left: 40px;
	padding-right: 40px;
}
.section.highlight .section-title h1 {
	font-size: 2.8rem;
	line-height: 3.2rem;
	text-align: center;
}
.section.highlight .section-title span {
	top: 80%;
	font-size: 5rem;
	text-align: right;
	width: 100%;
}
.section.highlight.green .section-title {
	max-width: 75%;
	margin-left: auto;
	margin-right: auto;
}
.section.highlight.green .section-first-paragraph {
	padding-top: 40px;
	padding-left: 40px;
	padding-right: 40px;
}
.section.highlight.green figure {
	max-width: 220px;
}
.section.highlight.green .left-column:before {
	top: -250%;
	left: -175%;
	width: 280%;
	height: 250%;
}
.section.highlight.pelicas {
	padding-top: 40px;
	background-color: #FFF;
}
.section.highlight.pelicas:before {
	display: none;
}
.section.highlight.pelicas .center-column > div, .section.highlight.pelicas .left-column figure {
	position: relative;
	top: inherit;
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
}
.section.highlight.pelicas .left-column {
	margin-left: 0;
}
.section.highlight.pelicas .section-title h1, .section.highlight.pelicas .section-first-paragraph {
	font-size: 1.2rem;
	line-height: 1.5rem;
	padding-left: 10px;
}
.section.highlight.pelicas .center-column {
	padding-left: 40px;
	padding-right: 40px;
}
.section-page {
	padding-left: 20px;
	padding-right: 20px;
}
.section-page:nth-of-type(1) {
	padding-bottom: 0;
}
.section-page:nth-of-type(2) {
	padding-top: 0;
	padding-bottom: 40px;
}
.section.sponsors {
	padding-top: 40px;
	padding-bottom: 40px;
	margin-bottom: 0;
}
.section.sponsors .container > .row > div:first-child {
	padding-right: 15px;
	text-align: center;
}
.section.sponsors img, .section.sponsors a img {
	max-width: 105px;
}
.section.intro {
	padding-top: 40px;
	padding-bottom: 40px;
}
.section.intro p {
	font-size: 1.25rem;
}
.section.intro br {
	display: none;
}
.section.countdown {
	padding-top: 20px;
	padding-bottom: 0;
}
.section.countdown .left-column {
	margin-bottom: 30px;
}
#countdown {
	position: relative;
	left: 0;
	right: 0;
	bottom: auto;
	width: 100%;
	padding: 20px 15px 20px 15px;
}
#countdown li {
	font-size: 2.6rem;
}
#countdown li .label {
	font-size: 0.6rem;
}
.countdown .right-column figure {
	margin-top: 0;
	margin-bottom: 0;
}
.footer {
	position: relative;
	height: auto;
	background-color: #FFF;
	padding-top: 0;
}
.footer .credits p {
	margin-top: 1rem;
}
.footer .credits, .footer .nav-social, .footer .policy {
	text-align: center;
}
.sub-footer {
	position: relative;
	bottom: 0;
	padding-top: 0;
}
.sub-footer .contacts {
	margin-bottom: 0;
	padding-bottom: 0;
}
.sub-footer .contacts .address span:nth-of-type(1) p {
	display: block;
	margin-bottom: 0;
}
.sub-footer .contacts .address {
	padding: 10px 0 30px;
}
.sub-footer .contacts .address p {
	font-size: 0.8rem;
	padding: 0 0;
}
.skyline {
	min-height: 100px;
	max-height: 100px;
	padding: 0;
}
.skyline > div::before {
	display: none;
}
.skyline > div:after {
	background-size: 90% auto;
}
.framed.right:after {
	left: -30px;
}
.certification figure {
	position: relative;
	top: inherit;
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
}
.watermark::before {
	top: 21%;
}
/*.gradientback:after {
	display: none;
}*/
.card-body {
	padding: 1.25rem 2rem;
}
.card-body ul {
	padding-left: 15px;
}
.slidenav {
	bottom: 5%;
}
.buttons-play-pause {
	display: none;
}
.buttons-play-pause i {
	font-size: 2rem;
}
.videobg {
	display: none;
}
}

@media (min-width:30em) and (max-width:39em) {
.section.intro br {
	display: none;
}
}

@media (min-width:40em) and (max-width:59em) {
.button_container {
	right: 20px;
}
.button_container:before {
	display: none;
}
.overlay .socialmedia, .overlay .contacts {
	padding-left: 0;
	padding-right: 0;
}
.overlay:after {
	border-left: 0 solid #FFF;
}
.header .event-date {
	left: 48%;
}
.section-title h1 {
	font-size: 2.5rem;
}
.section-title h2 {
	font-size: 1.5rem;
}
.section-title.custom h1 {
	font-size: 3rem;
	line-height: 3rem;
}
.certification figure {
	margin: 0 auto;
}
.about {
	margin-bottom: 0;
}
.watermark::before {
	top: 5%;
}
.section .left-column .section-first-paragraph, .section .left-column .section-paragraph {
	padding-left: 5vw;
}
.section .center-column .section-first-paragraph, .section .center-column .section-paragraph {
	padding-left: 0;
}
.section .section-first-paragraph::before {
	left: 10px;
}
.section.highlight.pelicas .center-column > div, .section.highlight.pelicas .left-column figure {
	position: relative;
	top: inherit;
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
}
.section.highlight.pelicas .left-column figure img {
	max-width: 230px;
	margin-left: auto;
	margin-right: auto;
}
.section.highlight.pelicas .section-title h1, .section.highlight.pelicas .section-first-paragraph {
	font-size: 1.5rem;
	line-height: 1.8rem;
	padding-top: 20px;
}
.section.highlight.green .left-column:before {
	top: -200%;
	left: -145%;
}
.section.highlight.green .section-title {
	text-align: center;
}
.section.highlight.green .section-title span {
	top: -35%;
	right: 5%;
	font-size: 10rem;
}
.section.highlight.green .section-title:before {
	left: 18%;
}
.section.highlight.green .section-first-paragraph, .section.highlight.green .section-paragraph {
	padding-left: 10vw;
	padding-right: 10vw;
}
.section.intro br {
	display: none;
}
.countdown .right-column figure {
	margin-top: auto;
	margin-bottom: auto;
}
#countdown li {
	font-size: 3rem;
}
}

@media (min-width:60em) and (max-width:63em) {
}

@media (min-width:64em) and (max-width:79em) {
}

@media (min-width:80em) and (max-width:85em) {
.section.highlight.pelicas .section-title h1, .section.highlight.pelicas .section-first-paragraph {
	font-size: 1.5rem;
	line-height: 1.8rem;
}
}

@media (min-width:86em) and (max-width:89em) {
}

@media (min-width:90em) {
}
/* =====================================================
   Bootstrap additional 5 columns layout: http://www.wearesicc.com/quick-tips-5-column-layout-with-twitter-bootstrap/
===================================================== */
.col-xs-15, .col-sm-15, .col-md-15, .col-lg-15 {
	position: relative;
	min-height: 1px;
	padding-right: 10px;
	padding-left: 10px;
}
.col-xs-15 {
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	max-width: 20%;
}

@media (min-width: 768px) {
.col-sm-15 {
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	max-width: 20%;
}
}

@media (min-width: 992px) {
.col-md-15 {
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	max-width: 20%;
}
}

@media (min-width: 1200px) {
.col-lg-15 {
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	max-width: 20%;
}
}
/* For Bootstrap 4 */
.col-15, .col-sm-15, .col-md-15, .col-lg-15, .col-xl-15 {
	position: relative;
	width: 100%;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}
.col-15 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	max-width: 20%;
}

@media (min-width: 540px) {
.col-sm-15 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	max-width: 20%;
}
}

@media (min-width: 720px) {
.col-md-15 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	max-width: 20%;
}
}

@media (min-width: 960px) {
.col-lg-15 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	max-width: 20%;
}
}

@media (min-width: 1140px) {
.col-xl-15 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	max-width: 20%;
}
}
/* =====================================================
   Hacks for IE
===================================================== */
_:-ms-lang(x), .sub-footer {
 position: relative;
}
_:-ms-lang(x), main {
 margin-bottom: 0;
}
_:-ms-lang(x), .overlay.open li {
 animation: none;
 animation-delay: none;
}
_:-ms-lang(x), .overlay ul li {
 opacity: 1;
}
/*_:-ms-lang(x), .gradientback:after {
 display: none;
}*/
_:-ms-lang(x), .sub-footer {
 position: relative;
 padding-top: 0;
}
_:-ms-lang(x), .sub-footer .contacts {
 margin-bottom: 0;
 padding: 10px 10px 10px;
}
_:-ms-lang(x), .footer {
 position: relative;
}
