/* defaults & variables */
html {
	--white-color: white;
	--black-color: black;
	--light-blue-color: #2020a0;
	--almost-black-color: #202020;
	--black-blend-color: #707070;
	--green-color: #008000;/*#96ca2d;*/ /*#405F07;*/
	--blue-color: #4caab9; /*#0557b8;*/
	--gray-color: #394141;
	--top-banner-cta-text-color: var(--white-color);
	--top-banner-cta-background-color: var(--green-color);
	--top-banner-cta-hover-text-color: var(--white-color);
	--top-banner-cta-hover-background-color: var(--blue-color);
	--cta-text-color: var(--white-color);
	--cta-background-color: var(--green-color);
	--cta-hover-text-color: var(--white-color);
	--cta-hover-background-color: var(--blue-color);
	--cta-border-radius: 8px;
	--header-bg-color: #ffffff;
	--nav-text-color: var(--gray-color);
	--nav-hover-text-color: var(--blue-color);
	--subnav-text-color: var(--gray-color);
	--subnav-background-color: var(--white-color);
	--subnav-hover-text-color: var(--green-color);
	--subnav-hover-background-color: var(--almost-black-color);
	--site-width: 1280px;
	--site-break: 1320px;
	--tablet-width: 1024px;
	--tablet-break: 1023px;
	--mobile-width: 768px;
	--mobile-break: 767px;
	--phone-width: 600px;
	--phone-break: 599px;
	font-family: "Montserrat", sans-serif;
	color: var(--gray-color);
}
body {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	vertical-align: top;
	overflow-x: hidden;
}
banner, header, logo, columns, column, section, main, sidebar, widget, carousel, wrapper, input, button, ul, li, footer, foot {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	vertical-align: top;
}
ul, ol {
	margin: 0;
	padding: 0;	
}
h1,h2,h3,h4,h5,h6 {
	margin: 0 0 16px;
}
h1 {
	font-size: 48px;
	font-weight: 900;
	text-transform: uppercase;
}
h2 {
	font-size: 48px;
	font-weight: 900;
	text-transform: uppercase;
}
h3 {
	font-size: 24px;
}
h4 {
	font-size: 20px;	
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 18px;
	font-style: italic;
}
p {
	line-height: 1.2;
	margin-bottom: 16px;
}
a {
	color: var(--blue-color);
}
a:hover {
	color: var(--green-color);
}
a.cta {
	text-decoration: none;
	display: inline-block;
	padding: 10px 20px;
	transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
	border-radius: var(--cta-border-radius);
	color: var(--cta-text-color);
	background-color: var(--cta-background-color);
	font-weight: 700;
}
a.cta:hover {
	color: var(--cta-hover-text-color);
	background-color: var(--cta-hover-background-color);
}
@media all and (max-width:640px) {
	h1 {
		font-size: 32px;
	}
	h2 {
		font-size: 28px;
	}
}

.center {
	text-align: center;
}




/* HEADER */
banner, header {
	position: relative;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: space-between;
	padding: 20px calc(50% - 640px);
}
banner {
	background-color: var(--almost-black-color);
	z-index: 120;
	min-height: 58px;
}
header {
	background-color: var(--header-bg-color);
	z-index: 119;
	min-height: 140px;
}
@media all and (max-width:1320px) {
	banner, header {
		padding: 20px 40px;
	}
}
@media all and (max-width:768px) {
	banner, header {
		padding: 20px;
	}
}
logo, logo a, logo a img {
	display: block;
}
logo a img {
	width: 100%;
	height: auto;
}


/* NAVIGATION */
nav {}
nav div {}
nav div ul {
	display: block;
	margin: 0;
	padding: 0;
}
nav div ul li {
	display: inline-block;
	position: relative;
}
nav div ul li a {
	display: block;
	padding: 10px 20px;
	text-decoration: none;
	color: var(--nav-text-color);
	text-transform: uppercase;
	font-weight: 700;
}
nav div > ul > li:hover > a {
	color: var(--nav-hover-text-color);
}
nav div > ul > li > ul {
	display: none;
	position: absolute;
	right: 0;
	box-shadow: 0px 2px 4px var(--almost-black-color);
}
nav div > ul > li > ul > li {
	width: 200px;
}
nav div > ul > li > ul > li a {
	color: var(--subnav-text-color);
	background-color: var(--white-color);
}
nav div > ul > li > ul > li:hover {
	color: var(--subnav-text-color);
}
nav div > ul > li > ul > li:hover > a {
	color: var(--subnav-hover-text-color);
	background-color: var(--subnav-hover-background-color);
}
nav div > ul > li:hover > ul {
	display: block;
}


/* TOP BANNER */
banner nav div > ul li a {
	color: var(--white-color);
	padding: 10px 10px;
}
banner nav div > ul li:hover a {
	color: var(--green-color);
}
banner nav div > ul li a.cta {
	color: var(--top-banner-cta-text-color);
	background-color: var(--top-banner-cta-background-color);
	padding: 10px 20px;
}
banner nav div > ul li:hover a.cta {
	color: var(--top-banner-cta-hover-text-color);
	background-color: var(--top-banner-cta-hover-background-color);
}
@media all and (max-width:480px) {
	banner nav div > ul li a.cta {
		padding: 10px 5px;
	}
}
#searchform {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: center;
}
#searchform input, #searchform button {
	display: block;
	border: 0 none;
}
#searchform input {
	width: 320px;
	height: 40px;
	border-radius: var(--cta-border-radius);
	text-indent: 5px;
}
@media all and (max-width:400px) {
	#searchform input {
		width: 240px;
	}
}
#searchform button {
	width: 40px;
	height: 40px;
	background: transparent;
	color: var(--green-color);
}
#searchform button:hover {
	color: var(--blue-color);
}
#searchform .search-title {
	display: none;
}
#searchform button i img {
	margin-top: 4px;
}

/* HEADER CTAs */
header aside {
	position: relative;
	width: calc(100% - 371px);
	display: flex;
	flex-flow: column;
	align-items: end;
	justify-content: center;
}
header aside ctas {
	display: block;
	box-sizing: border-box;
	margin-bottom: 10px;
}
@media all and (max-width:1280px) {
	header aside ctas {
		right: 20px;
	}
}
header aside ctas ul {
	list-style: none;
	display: block;
}
header aside ctas ul li {
	display: inline-block;
}
header aside ctas ul li a {
	text-transform: uppercase;
	width: 240px;
	text-align: center;
}



/* BASIC SECTION STRUCTURE */
section {
	position: relative;
	padding: 0 40px;
}
section.full, section.narrow, section.split {
	display: flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: space-between;
}
section.full {
	padding: 0;
}
section.narrow {
	padding: 0px calc(50% - 640px);
}
@media all and (max-width:1320px) {
section.narrow {
	padding: 0px 20px;
}
}
@media all and (max-width:1023px) {
	section {
		padding: 30px 40px;
	}
	section.full, section.narrow {
		padding: 0;
	}
}
@media all and (max-width:767px) {
	section {
		padding: 30px 20px;
	}
	section.full, section.narrow {
		padding: 0;
	}
}
main, sidebar {
	position: relative;
}
main {
	width: calc(100% - 480px);
	padding: 40px 40px 40px 0;
}
main.full {
	width: 100%;
	padding: 40px 0;
}
sidebar {
	width: 480px;
	padding: 40px 0 40px 40px;
}
@media all and (max-width:1320px) {
	main {padding: 40px 40px 40px 20px;}
	main.full {padding: 60px 0;}
	sidebar {padding: 40px 20px 40px 40px;}
}
@media all and (max-width:1023px) {
	main {padding:30px 20px;}
	main.full {padding: 30px 0;}
	sidebar {padding:30px 20px;}
}
@media all and (max-width:767px) {
	main, sidebar {width:100%;}
}
/* split section */
section.split sidebar, section.split main {
	width: 50%;
}
@media all and (max-width:767px) {
	section.split sidebar, section.split main {width:100%;}
}



/* default rotator */
carousel, wrapper {
	display: block;
	height: 200px;
}
carousel {
	position: relative;
	overflow: hidden;
}
wrapper {
	position: absolute;
	width: 100%;
	transition: left 0.3s ease-in-out;
}
wrapper ul, wrapper ul li {
	display: flex;
	align-items: center;
}
wrapper ul {
	flex-flow: row;
	padding: 0;
	margin: 0;
	height: 200px;
}
wrapper ul li {
	justify-content: center;
	padding: 0;
	margin: 0;
	text-align: center;
}



/* FS Slider basic styles */
.fs-slider-container {
	width: 100%;
	overflow-x: hidden;
}
.fs-slider {
	display: flex;
	position: relative;
	transition: transform 0.3s ease-in-out;
	flex-flow: row;
	align-items: stretch;
	justify-content: start;
	width: calc((28vw + 40px) * var(--slide-count));	
}
@media all and (max-width:var(--tablet-break)) { 
	.fs-slider {
		width: calc((38vw + 40px) * var(--slide-count));
	}
}
@media all and (max-width:660px) { 
	.fs-slider {
		width: calc((68vw + 40px) * var(--slide-count));
	}
}
@media all and (max-width:480px) { 
	.fs-slider {
		width: calc((90vw + 40px) * var(--slide-count));
	}
}
	
.fs-slide {
	display: block;
	position: relative;
	width: 28vw;
	height: 500px;
	margin-left: 20px;
	margin-right: 20px;
}
@media all and (max-width:var(--tablet-break)) {
	.fs-slide {
		width: 38vw; 
	}
}
@media all and (max-width:660px) {
	.fs-slide {
		width: 68vw; 
	}
}
@media all and (max-width:480px) {
	.fs-slide {
		width: 90vw; 
	}
}
.fs-slide.spacer {
	background-color: transparent;  
}
.fs-slide a {
	display: block;
	position: relative;
	height: 100%;
}


.fs-slider-pager {
	display: flex;
	flex-flow: row;
	align-items: stretch;
	justify-content: end;
	width: var(--site-width);
	margin: 0 auto;
	padding-top: 20px;
}
.fs-slider-pager .prev, .fs-slider-pager .next {
	width: 40px;
	height: 40px;
	margin: 0 5px; 
}
.fs-slider-pager .prev a, .fs-slider-pager .next a {
	display: block;
	width: 100%;
	height: 100%;
	text-align: center; 
	background-color: var(--green-color);
	border-radius: 20px;
	color: var(--white-color);
}
.fs-slider-pager .prev a:hover, .fs-slider-pager .next a:hover {
	background-color: var(--blue-color);
}
.fs-slider-pager .prev a i, .fs-slider-pager .next a i {
	line-height: 40px;
}
.fs-slider-pager .prev a span, .fs-slider-pager .next a span {
	display: none;
}

@media all and (max-width:var(--site-break)) {
	.fs-slider-pager {
		width: 100%;
	}
}






/* HOME HERO CONTAINER */
#home-hero-container {
	color: var(--gray-color);
}
#home-hero-container h1 {
	color: var(--gray-color);
	font-weight: 900;
	line-height: 1;
}
#home-hero-container .video {
	width: 100%;
	height: auto;
	aspect-ratio: 800/450;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 24px;
}
@media all and (min-width:1025px) {
	#home-hero-container {	
		min-height: 450px;
	}
	#home-hero-container .video {
		background-image: var(--background-image) !important; 
	}	
}
@media all and (max-width:1024px) {
	#home-hero-container {	
		min-height: 250px;
	}
}
#home-hero-container .hero-subtitle {
	font-size: 20px;
	font-weight: 700;
}



/* first slider special styles */
#home-get-to-know-container {
	padding-top: 40px;
	padding-bottom: 0px; 
}
@media all and (max-width:var(--tablet-break)) {
	#home-get-to-know-container {
		padding-top: 30px;
		padding-bottom: 0px;
	}
}
#home-get-to-know-container main article h2 {
	text-align: left;
	margin-left: calc(50vw - 680px);
	text-transform: capitalize;
	margin-bottom: 40px;
}
@media all and (max-width:var(--site-break)) {
	#home-get-to-know-container main article h2 {
		margin-left: 20px;
	}
}

.home-get-to-know-slide {
	//background-color: var(--green-color);
	border-radius: 24px; 
	background-size: cover;
	background-position: center;
}
.home-get-to-know-slide a .titles {
	position: absolute;
	bottom: 0; 
	padding-top: 10px;
	padding-bottom: 20px;
	padding-left: 20px;
	width: 100%;
	background-color: rgba(255,255,255,0.3);
	border-radius: 0 0 20px 20px;
}
.home-get-to-know-slide a .titles p {
	color: var(--gray-color);
	font-size: 20px;
	font-weight: 700;
	text-shadow: 0px 0px 15px #808080;
	margin: 0;
}
.home-get-to-know-slide a .titles h3 {
	color: var(--gray-color);
	font-size: 24px;
	font-weight: 900;
	text-shadow: 0px 0px 15px #808080;
	margin: 0;
}
@media all and (min-width:var(--tablet-break)) {
	#home-get-to-know-slider-pager {
		display: none;
	}
}
