:root {
	--color-primary: #1a1a1a;
	--color-secondary: #666666; 
	--color-text: #333333;
	--color-yellow: #fecb00;
	--color-white: #ffffff;
	--color-black: #000000;
	--color-grey: #3c3c3c;
	--color-grey1: #151515;
	--color-grey2: #262626;
	--color-grey3: #232323;
	--swiper-theme-color: #fecb00;
}
body,
html {
	background-color: var(--color-primary);
	font-family: 'Verlag';
	font-size: 14px;
	line-height: 18px;
	color: #666666;
	position: relative;
	scroll-behavior: smooth;
}
body {
	padding-top: 100px;
}
html { scroll-behavior: smooth; }
.img-responsive {
	width: 100%;
}
@media screen and (min-width: 1024px) {
	.section {
	    padding: 50px;
	}
}
.custom-fancybox .container {
	height: 100%;
}  
.custom-fancybox.fancybox-is-open .fancybox-stage {
	background-color: rgba(0, 0, 0, 0.8);
	margin: 50px 0px;
}
.custom-fancybox .fancybox-infobar {
	display: none;
}
.fancybox-bg {
	background: #000000;
}
.fancybox-is-open .fancybox-bg {
	opacity: 1;
	background-color: var(--color-primary);	
}
.fancybox-navigation .fancybox-button div {
	padding: 0px; 
} 
.fancybox-button, 
.fancybox-button:hover,
.fancybox-button div, 
.fancybox-button:hover div {
    color: transparent;
    background: transparent;
}
.fancybox-button svg {
	fill:#ffffff;
}
.fancybox-button[disabled] svg, .fancybox-button[disabled]:hover svg,
.fancybox-button[disabled] div, .fancybox-button[disabled]:hover div  {
	fill:#222222; 
}
.fancybox-button--close, .fancybox-button--close:hover { 
    color: #ffffff;
    background: var(--color-primary);
}
.navbar {
	background-color: var(--color-black);
}
.sticky-nav {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}
.nav-wrapper { 
	width: 100%;
	text-align: center;
	padding: 15px 20px;
	max-width: 80%;
	margin: 0px auto;
	position: relative;
	max-height: 60px;
}
.nav-wrapper .logo {
	position: absolute;
	left: 0;
	top: 0;
}
.nav-wrapper ul {
	margin:0px auto;
}
.nav-wrapper ul li {
	display: inline-block;
	border-right: solid 1px var(--color-white);
	margin: 5px 0px;
}
.nav-wrapper ul li:last-child {
	border-right: none;
}
.nav-wrapper ul li a {
	display: block;
	padding: 0px 10px;
	font-family: 'Open Sans';
	font-size: 14px;
	line-height: 14px;
	font-weight: bold;
	color: var(--color-white);
	-webkit-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}
.nav-wrapper ul li a:hover, .nav-wrapper ul li a.active {
	color: var(--color-yellow);
	-webkit-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}
.burger-menu {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 25px;
	height: 20px;
	cursor: pointer;
	position: absolute;
	left: 15px;
	top: 15px;
	cursor: pointer;
	display: none;
	z-index: 1;
}

.burger-menu span {
	display: block;
	width: 100%;
	height: 3px;
	background-color: var(--color-white);
	transition: background-color 0.3s ease;
	-webkit-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

.burger-menu span:first-child {
	transform-origin: top left;
}

.burger-menu span:last-child {
	transform-origin: bottom left;
}

.navbar.active .burger-menu span {
	background-color: var(--color-white);
}

.navbar.active .burger-menu span:first-child {
	transform: rotate(45deg);
}

.navbar.active .burger-menu span:last-child {
	transform: rotate(-45deg);
}
.navbar.active .burger-menu span:nth-child(2) {
	display: none;
}

@media(max-width:1200px) {
	.nav-wrapper { 
		max-width: 95%;
	}
}
@media(max-width:769px) {
	.burger-menu {
		display: flex;
	}
	.nav-wrapper { 
		max-width: 100%;
	} 
	.menu { 
		background-color: var(--color-black);
		position: absolute;
		left: 0;
		top:0;
		width: 180px;
		text-align: left;
		padding: 0px;
		padding-top: 50px; 
		left:-180px;
		-webkit-transition: all 200ms ease-in-out;
		-o-transition: all 200ms ease-in-out;
		transition: all 200ms ease-in-out;
	}
	.menu ul {
		width: 100%;
	}
	.nav-wrapper ul li {
		border-right: none;
	}
	.menu ul li {
		display: block;
		width: 100%;
		border-top: solid 1px var(--color-secondary);
		padding: 0px;
	}
	.menu ul li a {
		padding: 20px 20px;
		display: block;
		width: 100%;
		box-sizing: border-box;
	}
	.navbar.active .menu {
		display: block;
		left: 0px;
		-webkit-transition: all 200ms ease-in-out;
		-o-transition: all 200ms ease-in-out;
		transition: all 200ms ease-in-out;
	}
	.nav-wrapper .logo { 
		width: 100%;
	}
}
.bg-grey {
	background-color: rgba(35, 35, 35, 0.4); 
}
.bg-white {
	background-color: rgba(255, 255, 255, 1); 
}
.bg-color1 {
	background-color: var(--color-text);
}
.bg-color2 {
	background-color: var(--color-grey1);
}
.bg-color3 {
	background-color: var(--color-grey2);
}
.bg-color4 {
	background-color: var(--color-grey3);
}
.section-intro h1.title {
	font-family: 'Verlag XLight';
	text-transform: uppercase;
	margin-bottom: 30px;
	font-size: 28px;
	color: var(--color-secondary);
	line-height: 28px; 
}
.section-intro h1.title b {
	font-family: 'Verlag';
}
.section-intro p.subtitle {
	font-family: 'Verlag XLight';
}
.section-intro p {
	font-family: 'Verlag XLight';
	font-size: 18px;
	line-height: 24px;
	color: var(--color-secondary);
}
.section-intro p a {
	color:inherit;
	text-decoration: underline;
}
.section-intro p b {
	color: var(--color-yellow);
}
.section-intro ul.contact-list {
	margin: 0px auto;
	padding: 0px; 
}
.section-intro ul.contact-list li {
	margin: 0px;
	padding: 0px 10px;
	display: inline-block;
	position: relative;
	font-family: 'Verlag XLight';
	font-size: 18px;
	line-height: 24px;
	color: var(--color-secondary);
}
.section-intro ul.contact-list li a {
	color:inherit;
	text-decoration: underline;
}
.section-intro ul.contact-list li b {
	color: var(--color-yellow);
}
.section-intro ul.contact-list li:not(:first-child):before {
	content: '•';
	padding-right: 5px;
}
@media(max-width:769px) {
	.section-intro ul.contact-list li:not(:first-child):before {
		content: ' ';
		padding-right: 0px;
	}
}
.section-body {
	background-image: url(../images/arrow-down.png);
	background-repeat: no-repeat;
	background-position: center top;
}
.section-body-video {
	padding-bottom: 20px;
}
.section-header {
	background-color: var(--color-primary);
	text-align: center;
	text-transform: uppercase; 
	padding: 35px 0px 20px 0px;
}
.section-header:not(.section-header-first) {
	padding-top: 90px;
}
.section-header h2 {
	font-size: 120px;
	line-height: 120px;
	display: block;
	overflow: hidden;
	color: var(--color-text);
	-webkit-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;  
}
@media(max-width:769px) {
	/*.section-header {
		margin-top: 30px;
	}*/
	.section-header h2 {
		font-size: 60px;
		line-height: 60px; 
		-webkit-transition: all 200ms ease-in-out;
		-o-transition: all 200ms ease-in-out;
		transition: all 200ms ease-in-out;
	}
	.section-intro h1.title b {
		display: block;
	}
}
.video-container {
	position: relative; 
	cursor: pointer;
	-webkit-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}
.video-container .video {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: -2px;
	z-index: 1;
	display: none;
}
.video-container .video.show {
	display: block;
}
.video-container .video video {
	height: 100%;
	width: 100%;
	z-index: 1;
	object-fit: fill;
}
.video-container:hover {
	opacity: 0.75;
	-webkit-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}
.video-container .play {
	position: absolute;
	right: 25px;
	top: 15px;
	display: block;
	width: 62px;
	height: 62px;
	background-image: url(../images/play.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	display: none;
}
.bg-white hr {
	background-color: var(--color-primary);
	height: 6px;
}

.swiper {
	width: 100%; 
}
.swiper-wrapper {
	padding-bottom: 40px;
}
.swiper-pagination-bullet {
	background: var(--color-white);
	opacity:1;
}
.swiper-pagination-bullet-active {
	background: var(--color-yellow);
}
.contact-wrapper {
	max-width: 800px;
	margin: 0px auto;
}
.contact-wrapper fieldset {
    position:relative;
}
.contact-wrapper fieldset label {
	text-align: left;
	display: inline-block;
	margin-bottom: 10px;
	color: var(--color-white);
	font-family: 'Open Sans';
	opacity: 0.4;
	position: relative;
	float: left;
    padding-right: 10px;
}
.contact-wrapper fieldset.required label:after {
    position: absolute;
    content: '*';
    right: 0px; top: -3px;
    color: var(--color-yellow);
    font-size:12px;
}
.contact-wrapper fieldset span {
    position: absolute;
    bottom: -20px;
    right: 0px;
    font-size: 10px;
    color: var(--color-yellow);
    display:none;
}
.contact-wrapper fieldset.error span {
    display:block;
}
.contact-wrapper input[type='text'],
.contact-wrapper textarea {
	width: 100%;
	font-family: 'Open Sans';
	background-color: var(--color-grey);
	border: solid 1px var(--color-grey);
	padding: 5px 10px;
	font-size: 13px;
	outline: none;
	color: var(--color-white);
}
.contact-wrapper fieldset.error input[type='text'],
.contact-wrapper fieldset.error textarea {
	border: solid 1px var(--color-yellow);
}
.contact-wrapper a.button {
	font-family: 'Verlag';
	display:inline-block;
	background-color: var(--color-yellow);
	margin: 0px auto;
	border: solid 1px var(--color-yellow);
	border-radius: 20px;
	padding: 10px 20px;
	min-width: 200px;
	font-size: 20px;
	line-height: 30px;
	text-transform: uppercase;
	-webkit-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
	cursor: pointer;
}
.contact-wrapper a.button:hover {
	opacity: 0.75;
	-webkit-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}
.slides { 
	display: grid;
	justify-content: center;
	align-items: center;
	justify-items: center;
	gap: 10px;
	grid-template-columns: repeat(4, 1fr);
}
.swiper-button-prev, .swiper-button-next {
	display: none;
}
@media(max-width:769px) {
	.hide-mobile {
		display: none;
	}
	.slides { 
		grid-template-columns: repeat(2, 1fr);
	}
}