/*
Theme Name: Schooner
Theme URI: 
Author: Atlas Branding
Author URI: https://www.atlasbranding.com/
Description: 
Version: 2.0
License: 
License 
Tags: 
Text Domain: schooner
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	outline: 0;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
html * {
	max-height: 1000000px;
}
body {
	line-height: 1;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
/* END RESET */

/* VARIABLES */
:root {
	--default-background-color: #EAEAE4;
	--header-background-color: #1C2B06;
	--header-on-background-color: #FC845F;
	--header-border-color: #FC845F;
	--overlay-color: #000;
}

body {
	background: var(--default-background-color);
	-webkit-text-size-adjust: none;
}

#site-wrapper {
	position: relative;
	max-width: 100vw;
	min-height: 100vh;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
}

iframe {
	max-width: 100%;
}

/*#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #1C2B06 url('images/preloader.jpg') no-repeat center center;
	background-size: cover;
	z-index: 1000;
}

.preloader-image {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.preloader-logo {
	display: block;
	margin: 0 auto;
	padding: 0 50px 50px;
}

body.loaded #preloader {
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
}*/

#back-to-top {
	display: none;
	position: fixed;
	right: 10px;
	bottom: 10px;
	width: 68px;
	height: 68px;
	background: url('images/back-to-top.png') no-repeat center center;
	background-size: contain;
	cursor: pointer;
	z-index: 500;
}

.cmplz-cookiebanner .cmplz-message {
	width: 327px !important;
}

@media all and (max-width: 1023px) {

	/*.preloader-logo {
		display: block;
		margin: 0 auto;
		padding: 0 20px 50px;
	}*/

	#back-to-top {
		width: 40px;
		height: 40px;
	}

}

@media all and (max-width: 769px) {

	.cmplz-cookiebanner .cmplz-message {
		width: 100% !important;
	}

}

@media all and (max-width: 599px) {

	/*.preloader-logo {
		display: block;
		margin: 0 auto;
		padding: 0 10px 40px;
	}*/

}

/*-----------------------------------------------------------------------------------------------------------
		HEADER HAMBURGER
-----------------------------------------------------------------------------------------------------------*/

.header-wrapper {
	position: fixed;
	width: 100%;
	background: var(--header-background-color);
	transition: 0.25s ease;
	z-index: 400;
}

.transparent-header .header-wrapper:not(.scrolled, .on) {
	background: rgba(255,255,255,0.3);
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 0 40px;
	height: 80px;
	transition: 0.25s ease;
}

.header-logo-wrapper {
	max-width: 318px;
}

.header-logo-link {
	display: block;
	position: relative;
}

.header-logo {
	display: block;
	opacity: 1;
	transition: 0.25s ease;
}

.header-logo-transparent {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.transparent-header .header-wrapper:not(.scrolled, .on) .header-logo-transparent {
	opacity: 1;
}

.menu-button-wrapper {
	display: block;
}

.header-links {
	display: none;
}

body.touch .header-links {
	display: block;
}

.menu-button {
	position: relative;
	padding: 0;
	width: 40px;
	height: 40px;
	background: transparent;
	border: 0;
	cursor: pointer;
	appearance: none;
}

.menu-button .line-1 {
	position: absolute;
	left: 0;
	top: 20%;
	width: 100%;
	height: 2px;
	background: #EAEAE4;
	transition: all 0.25s;
	transition: transform 0.125s, top 0.125s 0.125s;
}

.menu-button .line-2 {
	position: absolute;
	left: 0;
	top: calc(50% - 1px);
	width: 100%;
	height: 2px;
	background: #EAEAE4;
	transition: all 0.25s;
	transition: transform 0.125s, opacity 0.125s 0.125s;
}

.menu-button .line-3 {
	position: absolute;
	left: 0;
	top: calc(80% - 2px);
	width: 100%;
	height: 2px;
	background: #EAEAE4;
	transition: all 0.25s;
	transition: transform 0.125s, top 0.125s 0.125s;
}

.transparent-header .header-wrapper:not(.scrolled, .on) .menu-button .line-1,
.transparent-header .header-wrapper:not(.scrolled, .on) .menu-button .line-2,
.transparent-header .header-wrapper:not(.scrolled, .on) .menu-button .line-3 { 
	background: #1C2B06;
}

.menu-button.open .line-1 {
	left: 0;
	top: calc(50% - 1px);
	width: calc(100% - 0px);
	background: #EAEAE4;
	transform-origin: center;
	transform: rotate(45deg);
	transition: top 0.125s, transform 0.125s 0.125s;
}

.menu-button.open .line-2 {
	opacity: 0;
	background: #EAEAE4;
	transition: opacity 0.125s, transform 0.125s 0.125s;
}

.menu-button.open .line-3 {
	left: 0;
	top: calc(50% - 1px);
	width: calc(100% - 0px);
	background: #EAEAE4;
	transform-origin: center;
	transform: rotate(-45deg);
	transition: top 0.125s, transform 0.125s 0.125s;
}

.header-spacer {
	height: 80px;
}

@media all and (max-width: 1199px) {
	
	.header-links {
		display: block;
	}

}

@media all and (max-width: 767px) {

	.header-wrapper {
		position: relative;
	}

	.header-content {
		padding: 0 20px;
		height: 60px;
	}

	.header-logo-wrapper {
		max-width: 240px;
	}

	.header-spacer {
		display: none;
	}

}

@media all and (max-width: 389px) {

	.header-logo-wrapper {
		max-width: 220px;
	}

}

/*-----------------------------------------------------------------------------------------------------------
		DESKTOP MENU
-----------------------------------------------------------------------------------------------------------*/

.desktop-menu-wrapper {
	display: block;
}

body.touch .desktop-menu-wrapper {
	display: none;
}

.desktop-menu {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 50px;
	margin: 0;
	list-style-type: none;
}

.desktop-menu > li {
	position: relative;
}

.desktop-menu > li > a {
	display: flex;
	align-items: center;
	height: 80px;
	font-family: "Sackers", sans-serif;
	font-size: 14px;
	line-height: 30px;
	text-transform: uppercase;
	color: #f1f1ec;
}

.transparent-header .header-wrapper:not(.scrolled, .on) .desktop-menu > li > a {
	color: #1c2b06;
}

.desktop-menu > li:hover > a {
	color: #749C5B;
}

.transparent-header .header-wrapper:not(.scrolled, .on) .desktop-menu > li:hover > a {
	color: #749C5B;
}

.desktop-menu > li > ul {
	position: absolute;
	left: -9999px;
	background: #172c00;
	margin: 0;
	padding: 10px 0;
	list-style-type: none;
}

.desktop-menu > li:hover > ul {
	left: -30px;
}

.desktop-menu > li > ul > li {
	position: relative;
	min-width: 100%;
	white-space: nowrap;
}

.desktop-menu > li > ul > li > a {
	display: block;
	padding: 4px 30px;
	font-size: 16px;
	line-height: 28px;
	color: #f1f1ec;
}

.desktop-menu > li > ul > li > a:hover {
	color: #749C5B;
}

@media all and (max-width: 1365px) {

	.desktop-menu {
		column-gap: 30px;
	}

}

@media all and (max-width: 1199px) {

	.desktop-menu-wrapper {
		display: none;
	}

}

/*-----------------------------------------------------------------------------------------------------------
		HAMBURGER MENU
-----------------------------------------------------------------------------------------------------------*/

.menu-wrapper {
	display: none;
	position: fixed;
	top: 80px;
	right: 0;
	width: 100%;
	height: calc(100vh - 80px);
	max-width: 800px;
	background: #1C2B06;
	overflow-y: auto;
}

.admin-bar .menu-wrapper {
	top: calc(80px + 32px);
	height: calc(100vh - 80px - 32px);
}

.menu-inner {
	width: 100%;
	padding-top: 40px;
}

.primary-menu {
	margin: 0;
	border-top: 1px solid #EAEAE4;
	list-style-type: none;
}

.primary-menu > li {
	display: block;
	border-bottom: 1px solid #EAEAE4;
}

.primary-menu > li > a {
	position: relative;
	display: block;
	padding: 15px 100px;
	font-size: 30px;
	line-height: 45px;
	font-weight: 400;
	letter-spacing: 0.05em;
	text-decoration: none !important;
	text-transform: lowercase;
	color: #EAEAE4;
	transition: all 0.25s ease;
}

.primary-menu > li > a:hover,
.primary-menu > li > a.open {
	color: #749C5B;
}

.menu-arrow {
	display: none;
}

.primary-menu > li.menu-item-has-children > a > .menu-arrow {
	display: block;
	position: absolute;
	right: 40px;
	top: 0;
	width: 40px;
	height: 100%;
}

.primary-menu > li.menu-item-has-children > a > .menu-arrow > span {
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 30px;
	height: 10px;
	background: url('images/mobile-arrow.png') no-repeat center center;
	background-size: contain;
	transform: translateX(-50%) translateY(-50%);
	transform-origin: center;
	transition: all 0.25s ease;
	overflow: hidden;
}

.primary-menu > li.menu-item-has-children > a.open > .menu-arrow > span {
	background-image: url('images/mobile-arrow-green.png');
	transform: translateX(-50%) translateY(-50%) rotate(180deg);
}

.primary-menu > li > ul {
	display: none;
	margin: 0;
	padding: 20px 0;
	list-style-type: none;
}

.primary-menu > li > ul > li {
	display: block;
	margin: 0 0 10px;
}

.primary-menu > li > ul > li > a {
	display: block;
	padding: 0 100px;
	font-size: 20px;
	line-height: 28px;
	font-weight: 400;
	letter-spacing: 0.05em;
	text-decoration: none !important;
	text-transform: lowercase;
	color: #EAEAE4;
	transition: all 0.25s ease;
}

.primary-menu > li > ul > li > a:hover {
	color: #749C5B;
}

.menu-bottom-content {
	padding: 60px 100px 40px;
}

@media all and (max-width: 1023px) {

	.primary-menu > li > a {
		padding: 15px 40px;
	}

	.primary-menu > li > ul > li > a {
		padding: 0 40px;
	}

	.menu-bottom-content {
		padding: 60px 40px 40px;
	}

}

@media all and (max-width: 783px) {

	.menu-wrapper {
		top: 80px;
		height: calc(100vh - 80px);
	}

	.admin-bar .menu-wrapper {
		top: calc(80px + 46px);
		height: calc(100vh - 80px - 46px);
	}

}

@media all and (max-width: 767px) {

	.menu-wrapper {
		display: none;
		position: relative;
		top: 0;
		height: auto;
	}
	
	.admin-bar .menu-wrapper {
		top: 0;
		height: auto;
	}

	.primary-menu {
		border-top: 1px solid #EAEAE4;
	}

	.primary-menu > li {
		border-bottom: 1px solid #EAEAE4;
	}

	.primary-menu > li > a {
		padding: 15px 20px;
		font-size: 24px;
		line-height: 40px;
	}

	.primary-menu > li.menu-item-has-children > a > .menu-arrow {
		right: 20px;
	}

	.primary-menu > li > ul > li > a {
		padding: 0 20px;
		font-size: 18px;
		line-height: 28px;
	}

}

/*-----------------------------------------------------------------------------------------------------------
		HEADER DROPDOWN
-----------------------------------------------------------------------------------------------------------*/
/*
.header-wrapper {
	position: relative;
	width: 100%;
	background: var(--header-background-color);
	border-bottom: 2px solid;
	border-color: var(--header-border-color);
	z-index: 400;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 0 100px;
	background: var(--header-background-color);
	transition: 0.2s ease;
}

.header-content.on {
	background: var(--header-on-background-color);
}

body.touch .header-content {
	display: none;
}

.header-logo-wrapper {
	max-width: 300px;
}

.header-logo-link {
	display: block;
	position: relative;
}

.header-logo {
	display: block;
	opacity: 1;
	transition: 0.2s ease;
}

.header-content.on .header-logo {
	opacity: 0;
}

.header-logo-open {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
	opacity: 0;
	transition: 0.2s ease;
}

.header-content.on .header-logo-open {
	opacity: 1;
}


@media all and (max-width: 1599px) {

	.header-content {
		padding: 0 50px;
	}

}

@media all and (max-width: 1365px) {

	.header-logo-wrapper {
		max-width: 200px;
	}

}

@media all and (max-width: 1199px) {

	.header-content {
		display: none;
	}

}*/

/*-----------------------------------------------------------------------------------------------------------
		DROPDOWN MENU
-----------------------------------------------------------------------------------------------------------*/
/*
.header-menu-wrapper {
	position: relative;
}

.header-menu-wrapper .primary-menu {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 0;
	list-style-type: none;
}

.header-menu-wrapper .primary-menu > li {
	position: relative;
}

.header-menu-wrapper .primary-menu > li > a {
	display: block;
	padding: 40px 25px 40px;
	font-family: Nexa, sans-serif;
	font-size: 20px;
	line-height: 30px;
	text-decoration: none !important;
	color: #FC845F;
	transition: 0.2s ease;
}

.header-content.on .header-menu-wrapper .primary-menu > li > a {
	color: #fff;
}

.header-menu-wrapper .primary-menu > li:hover > a {
	color: #112E46 !important;
}

.header-menu-wrapper .primary-menu > li.menu-button {
	padding-left: 25px;
}

.header-menu-wrapper .primary-menu > li.menu-button > a {
	padding: 6px 25px 4px;
	color: #fff;
	background: #FC845F;
	border-radius: 9999px;
	transition: 0.2s ease;
}

.header-content.on .header-menu-wrapper .primary-menu > li.menu-button > a {
	color: #FC845F;
	background: #fff;
}

.header-menu-wrapper .primary-menu > li.menu-button > a:hover {
	color: #fff !important;
	background: #112E46 !important;
}

.header-menu-wrapper .primary-menu > li > ul {
	display: block;
	position: absolute;
	left: 0;
	top: -200px;
	margin: 0;
	padding-bottom: 20px;
	min-width: 100%;
	background: #FC845F;
	list-style-type: none;
	visibility: hidden;
	opacity: 0;
	transition: 0.2s ease;
	z-index: -1;
}

.header-menu-wrapper .primary-menu > li:hover > ul {
	top: 110px;
	opacity: 1;
	visibility: visible;
}

.header-menu-wrapper .primary-menu > li > ul:before {
	content: '';
	position: absolute;
	left: -9999px;
	top: 0;
	display: block;
	width: 9999px;
	height: 100%;
	background: #FC845F;
}

.header-menu-wrapper .primary-menu > li > ul:after {
	content: '';
	position: absolute;
	right: -9999px;
	top: 0;
	display: block;
	width: 9999px;
	height: 100%;
	background: #FC845F;
}

.header-menu-wrapper .primary-menu > li > ul > li {
	white-space: nowrap;
}

.header-menu-wrapper .primary-menu > li > ul > li > a {
	display: block;
	padding: 0 25px;
	font-family: Nexa, sans-serif;
	font-size: 45px;
	line-height: 58px;
	text-decoration: none !important;
	color: #fff;
	transition: 0.2s ease;
}

.header-menu-wrapper .primary-menu > li > ul > li > a:hover {
	color: #112E46;
}

@media all and (max-width: 1365px) {

	.header-menu-wrapper .primary-menu > li > a {
		padding: 40px 20px 40px;
		font-size: 18px;
		line-height: 30px;
	}

	.header-menu-wrapper .primary-menu > li.menu-button {
		padding-left: 20px;
	}

	.header-menu-wrapper .primary-menu > li > ul > li > a {
		padding: 0 20px;
		font-size: 35px;
		line-height: 48px;
	}

}
*/
/*-----------------------------------------------------------------------------------------------------------
		AUX MENU
-----------------------------------------------------------------------------------------------------------*/

.header-search-wrapper {
	position: absolute;
	top: -2px;
	right: calc(100% + 5px);
	width: 0px;
	height: 34px;
	z-index: 999;
	transition: all 0.2s ease;
	overflow: hidden;
}

.header-search-wrapper.open {
	width: 160px;
}

.header-search-inner {
	display: block;
	position: relative;
	width: 160px;
	height: 34px;
	background: #fff;
	border: 2px solid #fc845f;
	border-radius: 999px;
}

.header-search-wrapper form {
	height: 34px;
}

#search {
	display: block;
	padding: 0 20px 0 10px;
	width: 100%;
	height: 30px;
	font-family: "PP Radio Grotesk", sans-serif;
	font-size: 18px;
	line-height: 24px;
	font-weight: 700;
	color: #fc845f;
	background: transparent;
	border: 0;
	outline: 0;
}

.search-button {
	position: absolute;
	right: 6px;
	top: 8px;
	width: 8px;
	height: 15px;
}

.aux-menu-wrapper {
	position: relative;
}

.aux-menu {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
	margin: 0;
	list-style-type: none;
}

.aux-menu > li {
	margin-left: 20px;
}

.aux-menu > li:first-child {
	margin: 0;
}

.header-search-button {
	display: block;
	position: relative;
	cursor: pointer;
}

.header-search-icon {
	display: block;
	width: auto;
	height: 24px;
	opacity: 1;
	transition: 0.2s ease;
}

.header-content.on .header-search-icon {
	opacity: 0;
}

.header-search-icon-on {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
	opacity: 0;
	transition: 0.2s ease;
}

.header-content.on .header-search-icon-on {
	opacity: 1;
}

.phone-icon-wrapper {
	display: block;
	position: relative;
}

.phone-icon {
	display: block;
	width: auto;
	height: 24px;
	opacity: 1;
	transition: 0.2s ease;
}

.header-content.on .phone-icon {
	opacity: 0;
}

.phone-icon-open {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
	opacity: 0;
	transition: 0.2s ease;
}

.header-content.on .phone-icon-open {
	opacity: 1;
}

/*-----------------------------------------------------------------------------------------------------------
		MOBILE HEADER
-----------------------------------------------------------------------------------------------------------*/
/*
.mobile-header-content {
	display: none;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding: 20px 20px 15px;
}

body.touch .mobile-header-content {
	display: flex;
}

.mobile-header-logo-wrapper {
	display: block;
	max-width: 160px;
}

.mobile-header-logo-link {
	display: block;
}

.mobile-header-logo {
	display: block;
}

.mobile-menu-button-wrapper {
	display: block;
}

.mobile-menu-button {
	position: relative;
	width: 40px;
	height: 40px;
	cursor: pointer;
}

.mobile-menu-button .line-1 {
	position: absolute;
	left: 0;
	top: 20%;
	width: 100%;
	height: 2px;
	background: #FC845F;
	transition: all 0.25s;
	transition: transform 0.125s, top 0.125s 0.125s;
}

.mobile-menu-button .line-2 {
	position: absolute;
	left: 0;
	top: calc(50% - 1px);
	width: 100%;
	height: 2px;
	background: #FC845F;
	transition: all 0.25s;
	transition: transform 0.125s, opacity 0.125s 0.125s;
}

.mobile-menu-button .line-3 {
	position: absolute;
	left: 0;
	top: calc(80% - 2px);
	width: 100%;
	height: 2px;
	background: #FC845F;
	transition: all 0.25s;
	transition: transform 0.125s, top 0.125s 0.125s;
}

.mobile-menu-button.open .line-1 {
	left: 0;
	top: calc(50% - 1px);
	width: calc(100% - 0px);
	background: #FC845F;
	transform-origin: center;
	transform: rotate(45deg);
	transition: top 0.125s, transform 0.125s 0.125s;
}

.mobile-menu-button.open .line-2 {
	opacity: 0;
	background: #FC845F;
	transition: opacity 0.125s, transform 0.125s 0.125s;
}

.mobile-menu-button.open .line-3 {
	left: 0;
	top: calc(50% - 1px);
	width: calc(100% - 0px);
	background: #FC845F;
	transform-origin: center;
	transform: rotate(-45deg);
	transition: top 0.125s, transform 0.125s 0.125s;
}

.mobile-menu-wrapper {
	display: none;
	position: absolute;
	left: 0;
	top: 77px;
	padding: 80px 0 40px;
	width: 100%;
	min-height: calc(100vh - 77px);
	background: #fff;
}

.mobile-menu-container {
	width: 100%;
	overflow-x: auto;
}

.mobile-menu {
	margin: 0;
	list-style-type: none;
}

.mobile-menu > li {
	display: block;
	margin: 0 0 20px;
}

.mobile-menu > li > a {
	position: relative;
	display: block;
	padding: 0 10px;
	font-family: Nexa, sans-serif;
	font-size: 35px;
	line-height: 40px;
	font-weight: 400;
	letter-spacing: 0.04em;
	text-align: center;
	text-decoration: none !important;
	color: #112E46;
	transition: all 0.25s ease;
}

.mobile-menu > li > a:hover,
.mobile-menu > li > a.open {
	color: #FC845F;
}

.mobile-menu > li.menu-button {
	display: flex;
	justify-content: center;
}

.mobile-menu > li.menu-button > a {
	padding: 10px 25px;
	color: #fff;
	background: #FC845F;
	border-radius: 999px;
}

.mobile-menu > li.menu-button > a:hover {
	background: #112E46;
}

.mobile-menu > li.menu-button > a > span {
	padding: 0;
}

.mobile-menu > li > a > span {
	position: relative;
	display: inline-block;
	padding: 0 50px;
}

.menu-arrow {
	display: none;
}

.mobile-menu > li.menu-item-has-children > a > span > .menu-arrow {
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	width: 40px;
	height: 100%;
}

.mobile-menu > li.menu-item-has-children > a > span > .menu-arrow > span {
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 26px;
	height: 13px;
	background: url('images/mobile-arrow.png') no-repeat center center;
	background-size: contain;
	transform: translateX(-50%) translateY(-50%);
	transform-origin: center;
	transition: all 0.25s ease;
	overflow: hidden;
}

.mobile-menu > li.menu-item-has-children > a.open > span > .menu-arrow > span {
	transform: translateX(-50%) translateY(-50%) rotate(180deg);
}

.mobile-menu > li > ul {
	display: none;
	margin: 10px 0 0;
	list-style-type: none;
}

.mobile-menu > li > ul > li {
	display: block;
	margin: 0 0 10px;
}

.mobile-menu > li > ul > li > a {
	display: block;
	padding: 0 20px;
	font-family: Nexa, sans-serif;
	font-size: 20px;
	line-height: 28px;
	font-weight: 400;
	letter-spacing: 0.03em;
	text-align: center;
	text-decoration: none !important;
	color: #112E46;
	transition: all 0.25s ease;
}

.mobile-menu > li > ul > li > a:hover {
	color: #FC845F;
}

.mobile-menu > li > ul > li > ul {
	display: block;
	margin: 0;
	list-style-type: none;
}

.mobile-menu > li > ul > li > ul > li {
	display: block;
}

.mobile-menu > li > ul > li > ul > li > a {
	display: block;
	padding: 4px 60px 4px 140px;
	font-size: 18px;
	line-height: 22px;
	font-weight: 400;
	text-decoration: none !important;
	color: #fff;
	transition: all 0.25s ease;
}

.mobile-menu > li > ul > li > ul > li > a:hover {
	opacity: 0.7;
}

.mobile-menu-content {
	padding-top: 40px;
}

@media all and (max-width: 1199px) {

	.mobile-header-content {
		display: flex;
	}

}

@media all and (max-width: 379px) {

	.mobile-menu > li > a {
		font-size: 30px;
		line-height: 35px;
	}

}
*/
/*-----------------------------------------------------------------------------------------------------------
		FLEXIBLE CONTENT - MAIN
-----------------------------------------------------------------------------------------------------------*/

.block-anchor-wrapper {
	position: relative;
	height: 0;
	overflow: hidden;
}

.block-anchor {
	position: absolute;
	top: -20px;
}

.content-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
}

.content-wrapper.desktop-show {
	display: flex;
}

.content-wrapper.mobile-show {
	display: none;
}

.no-top-padding { padding-top: 0px; }
.small-top-padding { padding-top: 50px; }
.medium-top-padding { padding-top: 100px; }
.large-top-padding { padding-top: 150px; }
.extra-large-top-padding { padding-top: 250px; }
.no-bottom-padding { padding-bottom: 0px; }
.no-bottom-padding.show-borders { padding-bottom: 0px; }
.small-bottom-padding { padding-bottom: 50px; }
.medium-bottom-padding { padding-bottom: 100px; }
.large-bottom-padding { padding-bottom: 150px; }
.extra-large-bottom-padding { padding-bottom: 250px; }

.content-block {
	position: relative;
	margin: 0 auto;
	width: 100%;
}

.content-block.tc {
	padding: 0 50px;
}

.full-width.show-borders .content-block.tc {
	padding: 0;
}

.small-width .content-block {
	max-width: 860px;
}

.small-width.show-borders .content-block {
	max-width: 964px;
}

.medium-width .content-block {
	max-width: 1200px;
}

.medium-width.show-borders .content-block {
	max-width: 1304px;
}

.large-width .content-block {
	max-width: 1720px;
}

.large-width.show-borders .content-block {
	max-width: 1824px;
}

.light-text, .light-text a, .light-text .h1, .light-text h1, .light-text h2, .light-text h3, .light-text h4, .light-text h5, .light-text h6 {
	color: #EAEAE4;
}

@media all and (max-width: 767px) {

	.content-wrapper.desktop-show {
		display: none;
	}

	.content-wrapper.mobile-show {
		display: flex;
	}

	.content-block.tc {
		padding: 0 20px;
	}

	.small-top-padding { padding-top: 30px; }
	.medium-top-padding { padding-top: 60px; }
	.large-top-padding { padding-top: 100px; }
	.extra-large-top-padding { padding-top: 160px; }
	.small-bottom-padding { padding-bottom: 30px; }
	.medium-bottom-padding { padding-bottom: 60px; }
	.large-bottom-padding { padding-bottom: 100px; }
	.extra-large-bottom-padding { padding-bottom: 160px; }

}

/*-----------------------------------------------------------------------------------------------------------
		FLEXIBLE CONTENT - BACKGROUND SECTION
-----------------------------------------------------------------------------------------------------------*/

.background-section {
	position: relative;
}

.background-section.min-height-100 {
	display: flex;
	align-items: center;
	min-height: 100vh;
}

.background-section.min-height-100.first-block {
	min-height: calc(100vh - 80px);
}

.admin-bar .background-section.min-height-100 {
	min-height: calc(100vh - 32px);
}

.admin-bar .background-section.min-height-100.first-block {
	min-height: calc(100vh - 80px - 32px);
}

.background-section.min-height-75 {
	display: flex;
	align-items: center;
	min-height: 75vh;
}

.background-section.min-height-50 {
	display: flex;
	align-items: center;
	min-height: 50vh;
}

.background-section.min-height-25 {
	display: flex;
	align-items: center;
	min-height: 25vh;
}

.background-section.min-height-5 {
	display: flex;
	align-items: center;
	min-height: 5vh;
}

.default-bg {
	
}

.slate-gray-bg {
	background: #484640;
}

.dark-green-bg { 
	background: #1C2B06;
}

.moss-bg { 
	background: #749C5B;
}

.bs-image-background-wrapper {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.bs-image-background {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.bs-overlay  {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--overlay-color);
	opacity: 0;
}

.bs-video {
	position: absolute;
	top: 50%;
	left: calc(50% - 2px);
	width: calc(100% + 2px);
	height: 100%;
	object-fit: cover;
	background-color: transparent !important;
	z-index: 0;
	transform: translate(-50%, -50%);
  &::-webkit-media-controls {
     display:none !important;
  }
}

@media all and (max-width: 1199px) {

	.background-section.min-height-100.first-block {
		min-height: calc(100vh - 77px);
	}

	.admin-bar .background-section.min-height-100.first-block {
		min-height: calc(100vh - 77px - 32px);
	}

}

@media all and (max-width: 783px) {

	.admin-bar .background-section.min-height-100 {
		min-height: calc(100vh - 46px);
	}

	.admin-bar .background-section.min-height-100.first-block {
		min-height: calc(100vh - 77px - 46px);
	}

}

@media all and (max-width: 767px) {

	.background-section.first-block {
		padding-top: 60px;
	}

	.logo-watermark-bg {
		background-image: none;
	}

}

@media all and (max-width: 599px) {

	.background-section.first-block {
		padding-top: 40px;
	}

}

@media all and (max-width: 479px) {

	.background-section.first-block {
		padding-top: 20px;
	}

}

@media all and (max-width: 389px) {

	.background-section.first-block {
		padding-top: 0;
	}

}

/*-----------------------------------------------------------------------------------------------------------
		FLEXIBLE CONTENT - TEXT COLUMNS
-----------------------------------------------------------------------------------------------------------*/

.text-columns-wrapper {
	
}

.show-borders .text-columns-wrapper {
	padding: 0 50px;
	border: 2px solid #FC845F;
}

.hide-top-border.show-borders .text-columns-wrapper {
	border-top: 0;
}

.full-width.show-borders .text-columns-wrapper {
	border-left: 0;
	border-right: 0;
}

.text-column {
	position: relative;
	width: 100%;
}

.show-borders .text-column {
	padding: 40px 0 20px;
}

.two-col .text-columns-wrapper,
.three-col .text-columns-wrapper,
.four-col .text-columns-wrapper {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.middle-aligned.two-col .text-column,
.middle-aligned.three-col .text-column,
.middle-aligned.four-col .text-column {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.two-col .text-column {
	width: calc(50% - 50px);
}

.two-col.two-col-size-60-40 .text-column.tc-one,
.two-col.two-col-size-40-60 .text-column.tc-two {
	width: calc(60% - 50px);
}

.two-col.two-col-size-60-40 .text-column.tc-two,
.two-col.two-col-size-40-60 .text-column.tc-one {
	width: calc(40% - 50px);
}

.three-col .text-column {
	width: calc(33.3333% - 33px);
}

.three-col.three-col-size-50-25-25 .text-column.tc-one,
.three-col.three-col-size-25-50-25 .text-column.tc-two,
.three-col.three-col-size-25-25-50 .text-column.tc-three {
	width: calc(50% - 33px);
}

.three-col.three-col-size-50-25-25 .text-column.tc-two,
.three-col.three-col-size-50-25-25 .text-column.tc-three,
.three-col.three-col-size-25-50-25 .text-column.tc-one,
.three-col.three-col-size-25-50-25 .text-column.tc-three,
.three-col.three-col-size-25-25-50 .text-column.tc-one,
.three-col.three-col-size-25-25-50 .text-column.tc-two {
	width: calc(25% - 33px);
}

.three-col.show-borders .text-column {
	width: calc(33.3333% - 66px);
}

.three-col.three-col-size-50-25-25.show-borders .text-column.tc-one,
.three-col.three-col-size-25-50-25.show-borders .text-column.tc-two,
.three-col.three-col-size-25-25-50.show-borders .text-column.tc-three {
	width: calc(50% - 66px);
}

.three-col.three-col-size-50-25-25.show-borders .text-column.tc-two,
.three-col.three-col-size-50-25-25.show-borders .text-column.tc-three,
.three-col.three-col-size-25-50-25.show-borders .text-column.tc-one,
.three-col.three-col-size-25-50-25.show-borders .text-column.tc-three,
.three-col.three-col-size-25-25-50.show-borders .text-column.tc-one,
.three-col.three-col-size-25-25-50.show-borders .text-column.tc-two {
	width: calc(25% - 66px);
}

.four-col .text-column {
	width: calc(25% - 37.5px);
}

.four-col.show-borders .text-column {
	width: calc(25% - 75px);
}

.two-col.show-borders .text-column.tc-one:after,
.three-col.show-borders .text-column.tc-one:after,
.three-col.show-borders .text-column.tc-two:after,
.four-col.show-borders .text-column.tc-one:after,
.four-col.show-borders .text-column.tc-two:after,
.four-col.show-borders .text-column.tc-three:after {
	content: '';
	position: absolute;
	right: -51px;
	top: 0;
	width: 2px;
	height: 100%;
	background: #FC845F;
}

.text-column-inner {
	position: relative;
	top: 0;
	width: 100%;
	opacity: 1;
	transition: all 0.25s ease;
	transition-delay: 0.25s;
}

.text-column-inner.lazy-hide {
	top: 40px;
	opacity: 0;
}

@media all and (max-width: 1199px) {

	.four-col .text-column {
		width: calc(50% - 50px);
	}

	.four-col.show-borders .text-column {
		width: calc(50% - 50px);
	}

	.four-col.show-borders .text-column.tc-two:after {
		display: none;
	}

	.four-col.show-borders .text-column.tc-one:before,
	.four-col.show-borders .text-column.tc-two:before {
		content: '';
		position: absolute;
		left: -50px;
		bottom: -1px;
		width: calc(100% + 100px);
		height: 2px;
		background: #FC845F;
	}

}

@media all and (max-width: 1023px) {

	.two-col .text-column {
		width: 100% !important;
	}

	.two-col.show-borders .text-column.tc-one:after {
		display: none
	}
	
	.two-col.show-borders .text-column.tc-one:before {
		content: '';
		position: absolute;
		left: -20px;
		bottom: -1px;
		width: calc(100% + 40px);
		height: 2px;
		background: #FC845F;
	}

	.three-col .text-column {
		width: 100% !important
	}

	.three-col.show-borders .text-column.tc-one:after,
	.three-col.show-borders .text-column.tc-two:after {
		display: none;
	}

	.three-col.show-borders .text-column.tc-one:before,
	.three-col.show-borders .text-column.tc-two:before {
		content: '';
		position: absolute;
		left: -50px;
		bottom: -1px;
		width: calc(100% + 100px);
		height: 2px;
		background: #FC845F;
	}

}

@media all and (max-width: 767px) {

	.show-borders .text-columns-wrapper {
		padding: 0 20px;
	}

	.two-col .text-column {
		width: calc(50% - 25px);
	}

	.two-col.two-col-size-60-40 .text-column.tc-one,
	.two-col.two-col-size-40-60 .text-column.tc-two {
		width: calc(60% - 25px);
	}

	.two-col.two-col-size-60-40 .text-column.tc-two,
	.two-col.two-col-size-40-60 .text-column.tc-one {
		width: calc(40% - 25px);
	}

	.two-col.show-borders .text-column.tc-one:after {
		right: -26px;
	}

	.three-col.show-borders .text-column.tc-one:before,
	.three-col.show-borders .text-column.tc-two:before {
		left: -20px;
		width: calc(100% + 40px);
	}

	.four-col .text-column {
		width: calc(50% - 25px);
	}

	.four-col.show-borders .text-column {
		width: calc(50% - 25px);
	}

	.four-col.show-borders .text-column.tc-one:after,
	.four-col.show-borders .text-column.tc-three:after {
		right: -26px;
	}

	.four-col.show-borders .text-column.tc-one:before {
		left: -20px;
		width: calc(100% + 50px);
	}
	
	.four-col.show-borders .text-column.tc-two:before {
		left: -25px;
		width: calc(100% + 45px);
	}

}

@media all and (max-width: 599px) {

	.four-col .text-column,
	.four-col.show-borders .text-column {
		width: 100%;
	}

	.four-col.show-borders .text-column.tc-one:after,
	.four-col.show-borders .text-column.tc-three:after {
		display: none;
	}

	.four-col.show-borders .text-column.tc-one:before,
	.four-col.show-borders .text-column.tc-two:before,
	.four-col.show-borders .text-column.tc-three:before {
		content: '';
		position: absolute;
		left: -20px;
		bottom: -1px;
		width: calc(100% + 40px);
		height: 2px;
		background: #FC845F;
	}
	
}

/*-----------------------------------------------------------------------------------------------------------
		FLEXIBLE CONTENT - IMAGE/TEXT
-----------------------------------------------------------------------------------------------------------*/

.image-text-wrapper {
	display: flex;
}

.it-image-column-wrapper {
	position: relative;
	width: 50%;
}

.it-image-right .it-image-column-wrapper {
	order: 2;
}

.it-cs-70-30 .it-image-column-wrapper {
	width: 70%;
}

.it-cs-70-30.it-image-right .it-image-column-wrapper {
	width: 30%;
}

.it-cs-30-70 .it-image-column-wrapper {
	width: 30%;
}

.it-cs-30-70.it-image-right .it-image-column-wrapper {
	width: 70%;
}

.it-image-column {
	position: relative;
	top: 0;
	height: 100%;
	opacity: 1;
	transition: all 0.25s ease;
	transition-delay: 0.25s;
}

.it-image-column.lazy-hide {
	top: 40px;
	opacity: 0;
}

.it-image {
	display: block;
	width: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: center center;
}

.full-width .it-image {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.it-icon-graphic-wrapper {
	position: absolute;
	left: 100px;
	bottom: 0;
	width: 175px;
	transform: translateY(50%);
}

.it-image-right .it-icon-graphic-wrapper {
	left: calc(100% - 100px);
	transform: translateX(-100%) translateY(50%);
}

.it-text-column-wrapper {
	width: 50%;
}

.it-cs-70-30 .it-text-column-wrapper {
	width: 30%;
}

.it-cs-70-30.it-image-right .it-text-column-wrapper {
	width: 70%;
}

.it-cs-30-70 .it-text-column-wrapper {
	width: 70%;
}

.it-cs-30-70.it-image-right .it-text-column-wrapper {
	width: 30%;
}

.it-image-right .it-text-column-wrapper {
	order: 1;
}

.it-text-column {
	position: relative;
	top: 0;
	padding: 60px 60px 40px;
	width: 100%;
	opacity: 1;
	transition: all 0.25s ease;
	transition-delay: 0.25s;
}

.it-text-column.lazy-hide {
	top: 40px;
	opacity: 0;
}

.it-middle-aligned .it-text-column-wrapper {
	display: flex;
	align-items: center;
}

.it-bottom-aligned .it-text-column-wrapper {
	display: flex;
	align-items: flex-end;
}

@media all and (max-width: 1023px) {

	.it-cs-70-30 .it-image-column-wrapper,
	.it-cs-70-30.it-image-right .it-image-column-wrapper,
	.it-cs-70-30 .it-text-column-wrapper,
	.it-cs-70-30.it-image-right .it-text-column-wrapper {
		width: 50%;
	}

	.it-icon-graphic-wrapper {
		left: 50px;
		width: 100px;
	}

	.it-image-right .it-icon-graphic-wrapper {
		left: calc(100% - 50px);
	}

}

@media all and (max-width: 767px) {

	.image-text-wrapper {
		display: block;
	}

	.it-image-column-wrapper {
		width: 100% !important;
	}

	.it-image {
		border-radius: 0px;
	}

	.it-icon-graphic-wrapper {
		left: 40px;
	}

	.it-image-right .it-icon-graphic-wrapper {
		left: calc(100% - 40px);
	}

	.it-text-column-wrapper {
		width: 100% !important;
	}

	.it-text-column {
		padding: 50px 40px 0px;
		width: 100%;
	}

}

@media all and (max-width: 479px) {

	.it-icon-graphic-wrapper {
		left: 20px;
	}

	.it-image-right .it-icon-graphic-wrapper {
		left: calc(100% - 20px);
	}

	.it-text-column {
		padding: 50px 20px 0px;
	}

}

/*-----------------------------------------------------------------------------------------------------------
		FLEXIBLE CONTENT - CALLS TO ACTION ACCORDION
-----------------------------------------------------------------------------------------------------------*/

.calls-to-action-outer {
	margin: 0 auto;
	padding: 0 40px;
	max-width: 1280px;
}

.cta-main-headline {
	margin: 0 !important;
	padding: 0 445px 20px 40px;
}

.calls-to-action-wrapper {
	position: relative;
	padding: 10px 0 0;
}

.calls-to-action-wrapper:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 1px;
	background: #2E4252;
}

.light-text .calls-to-action-wrapper:before {
	background: #fff;
}

.call-to-action-wrapper {
	position: relative;
	top: 0;
	padding: 0 0 10px;
	opacity: 1;
	transition: all 0.25s ease;
	transition-delay: 0.25s;
}

.call-to-action-wrapper.lazy-hide {
	top: 40px;
	opacity: 0;
}

.call-to-action-wrapper:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: #2E4252;
}

.light-text .call-to-action-wrapper:after {
	background: #fff;
}

.call-to-action-headline {
	position: relative;
	padding: 22px 460px 18px 40px;
	font-size: 28px;
	line-height: 34px;
	font-weight: 400;
	cursor: pointer;
}

.call-to-action-headline span {
	position: relative;
}

.call-to-action-headline span:after {
	content: '';
	display: inline-block;
	position: relative;
	margin-left: 10px;
	width: 30px;
	height: 10px;
	background: url('images/mobile-arrow-grey.png') no-repeat center center;
	background-size: contain;
	vertical-align: middle;
	transform-origin: center center;
	transition: all 0.2s ease;
}

.light-text .call-to-action-headline span:after {
	background-image: url('images/mobile-arrow.png');
}

.call-to-action-headline.open span:after {
	transform: rotate(180deg);
}

.call-to-action-image-wrapper {
	position: absolute;
	right: 0;
	top: -60px;
	width: 425px;
	z-index: 10;
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s ease;
}

.call-to-action-wrapper:hover .call-to-action-image-wrapper {
	top: -80px;
	opacity: 1;
	visibility: visible;
}

.call-to-action-wrapper.open .call-to-action-image-wrapper {
	display: none !important;
}

.call-to-action-image {
	display: block;
	margin: 0 auto;
}

.call-to-action-content-wrapper {
	display: none;
}

.call-to-action-content {
	display: flex;
	column-gap: 40px;
	padding: 0 40px 0 40px;
}

/*.call-to-action-content.has-image {
	padding: 0 445px 0 40px;
}*/

.call-to-action-content-left {
	padding: 0 0 20px;
	width: 50%;
}

.call-to-action-content-right {
	padding: 0 0 20px;
	width: 50%;
}

@media all and (max-width: 1199px) {

	.cta-main-headline {
		padding: 0 325px 20px 40px;
	}

	.call-to-action-headline {
		padding: 22px 320px 18px 40px;
	}

	/*.call-to-action-content.has-image {
		padding: 0 325px 0 40px;
	}*/

	.call-to-action-image-wrapper {
		width: 305px;
	}

}

@media all and (max-width: 1023px) {

	.cta-main-headline {
		padding: 0 265px 20px 20px;
	}

	.calls-to-action-outer {
		padding: 0 20px;
	}

	.calls-to-action-wrapper {
		padding: 10px 0 0;
	}

	.call-to-action-wrapper {
		padding: 0 0 10px;
	}

	.call-to-action-headline {
		padding: 22px 220px 18px 20px;
	}

	.call-to-action-headline span:after {
		width: 24px;
		height: 9px;
	}

	.call-to-action-content {
		column-gap: 20px;
		padding: 0 20px 0 20px;
	}

	/*.call-to-action-content.has-image {
		padding: 0 265px 0 20px;
	}*/

	.call-to-action-image-wrapper {
		top: -60px;
		width: 245px;
	}

}

@media all and (max-width: 767px) {

	.cta-main-headline {
		padding: 0 225px 20px 20px;
	}

	.call-to-action-headline {
		padding: 22px 220px 18px 20px;
		font-size: 20px;
		line-height: 28px;
	}

	.call-to-action-content {
		display: block;
		padding: 0 20px 10px 20px;
		font-size: 16px;
		line-height: 30px;
	}

	/*.call-to-action-content.has-image {
		padding: 0 225px 10px 20px;
	}*/
	
	.call-to-action-content-left,
	.call-to-action-content-right {
		padding: 0;
		width: 100%;
	}
	
	.call-to-action-image-wrapper {
		width: 205px;
	}

}

@media all and (max-width: 599px) {

	.cta-main-headline {
		padding: 0 20px 10px 20px;
	}

	.call-to-action-headline {
		padding: 20px 20px 20px 20px;
	}

	/*.call-to-action-content.has-image {
		padding: 0 20px 10px 20px;
	}*/

	.call-to-action-image-wrapper {
		display: none;
	}

}

@media all and (max-width: 479px) {

	.calls-to-action-outer {
		padding: 0 10px;
	}

	.cta-main-headline {
		padding: 0 10px 10px 10px;
	}

	.call-to-action-headline {
		padding: 22px 10px 18px 10px;
	}

	/*.call-to-action-content.has-image {
		padding: 0 10px 10px 10px;
	}*/

}

/*-----------------------------------------------------------------------------------------------------------
		FLEXIBLE CONTENT - IMAGE SLIDER
-----------------------------------------------------------------------------------------------------------*/

.image-slider-outer {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
}

.image-slider-wrapper {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.image-slider {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.image-slider .slick-list,
.image-slider .slick-track {
	height: 100% !important;
}

.image-slider.slick-dotted.slick-slider {
	margin: 0 !important;
}

.image-slider .slick-prev {
	position: absolute !important;
	left: 60px !important;
	width: 60px !important;
	height: 60px !important;
	background: url('images/slider-arrow-left.png') no-repeat center center !important;
	background-size: contain !important;
	z-index: 100;
}

.image-slider .slick-next {
	position: absolute !important;
	right: 60px !important;
	width: 60px !important;
	height: 60px !important;
	background: url('images/slider-arrow-right.png') no-repeat center center !important;
	background-size: contain !important;
	z-index: 100;
}

.image-slider .slick-prev:before,
.image-slider .slick-next:before {
	display: none;
}

.image-slider .slick-dots {
	display: flex;
	flex-direction: column;
	row-gap: 6px;
	flex-wrap: wrap;
	position: absolute;
	bottom: 50px;
	right: 50px;
	padding: 0;
	width: 20px;
}

.image-slider .slick-dots li {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	width: 20px;
	height: 20px;
}

.image-slider .slick-dots li button {
	width: 16px;
	height: 16px;
	background: transparent;
	border-radius: 10px;
	border: 2px solid #fff;
	opacity: 0.5;
}

.image-slider .slick-dots li.slick-active button {
	background: #fff;
	opacity: 1;
}

.image-slider .slick-dots li button:before {
	display: none;
}

.no-controls .slick-dots,
.no-controls .slick-prev,
.no-controls .slick-next {
	display: none;
}

.image-slide {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.is-image {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.is-overlay {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0;
}

.is-link {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.is-content-wrapper {
	position: absolute;
	left: 0;
	bottom: 50px;
	padding: 0 60px;
}

.is-content {
	
}

.slider-graphic-wrapper {
	position: absolute;
	left: 180px;
	top: 50%;
	width: calc(100% - 360px);
	transform: translateY(-50%);
}

.slider-graphic {
	display: block;
	margin: 0 auto;
}

@media all and (max-width: 1023px) {

	.image-slider .slick-prev {
		left: 20px !important;
		width: 40px !important;
		height: 40px !important;
	}

	.image-slider .slick-next {
		right: 20px !important;
		width: 40px !important;
		height: 40px !important;
	}

	.is-content-wrapper {
		bottom: 40px;
		padding: 0 60px 0 40px;
	}

	.dot-controls .is-content-wrapper {
		bottom: 50px;
	}

	.image-slider .slick-dots {
		right: 30px;
		padding: 0;
	}

}

@media all and (max-width: 767px) {

	.image-slider-outer {
		height: 500px;
		padding-bottom: 0;
	}

	.is-content-wrapper {
		padding: 0 40px 0 20px;
	}

	.dot-controls .is-content-wrapper {
		bottom: 30px;
	}

	.image-slider .slick-dots {
		right: 10px;
		bottom: 30px;
	}

}

@media all and (max-width: 479px) {

	.image-slider .slick-prev {
		left: 10px !important;
		width: 30px !important;
		height: 30px !important;
	}

	.image-slider .slick-next {
		right: 10px !important;
		width: 30px !important;
		height: 30px !important;
	}

	.is-content-wrapper {
		bottom: 30px;
		padding: 0 20px;
	}

	.dot-controls .is-content-wrapper {
		bottom: 50px;
	}

	.image-slider .slick-dots {
		flex-direction: row;
		column-gap: 6px;
		right: 0;
		bottom: 20px;
		padding: 0 20px !important;
		width: 100% !important;
	}

}

/*-----------------------------------------------------------------------------------------------------------
		FLEXIBLE CONTENT - IMAGE CAROUSEL
-----------------------------------------------------------------------------------------------------------*/

.image-carousel-outer {
	padding: 0 60px;
}

.image-carousel-wrapper {
	position: relative;
	top: 0;
	margin: 0 0 20px;
	opacity: 1;
	transition: all 0.25s ease;
	transition-delay: 0.25s;
}

.image-carousel-wrapper.lazy-hide {
	top: 40px;
	opacity: 0;
}

.image-carousel .slick-prev {
	position: absolute !important;
	left: -60px !important;
	width: 60px !important;
	height: 60px !important;
	background: url('images/slider-arrow-left.png') no-repeat center center !important;
	background-size: contain !important;
	z-index: 100;
}

.image-carousel .slick-next {
	position: absolute !important;
	right: -60px !important;
	width: 60px !important;
	height: 60px !important;
	background: url('images/slider-arrow-right.png') no-repeat center center !important;
	background-size: contain !important;
	z-index: 100;
}

.image-carousel .slick-prev:before,
.image-carousel .slick-next:before {
	display: none !important;
}

.small-width .image-carousel .slick-prev,
.medium-width .image-carousel .slick-prev {
	left: -60px !important;
}

.small-width .image-carousel .slick-next,
.medium-width .image-carousel .slick-next {
	right: -60px !important;
}

.carousel-slide {
	display: flex !important;
	align-items: center;
	padding: 0 25px;
	height: 485px;
}

.ic-link {
	display: block;
}

.ic-image {
	display: block;
	width: auto !important;
	height: auto !important;
	max-height: 485px;
}

@media all and (max-width: 1023px) {

	.image-carousel-outer {
		padding: 0 40px;
	}

	.image-carousel .slick-prev {
		left: -40px !important;
		width: 40px !important;
		height: 40px !important;
	}

	.image-carousel .slick-next {
		right: -40px !important;
		width: 40px !important;
		height: 40px !important;
	}

	.small-width .image-carousel .slick-prev,
	.medium-width .image-carousel .slick-prev {
		left: -40px !important;
	}

	.small-width .image-carousel .slick-next,
	.medium-width .image-carousel .slick-next {
		right: -40px !important;
	}

	.carousel-slide {
		padding: 0 20px;
		height: 440px;
	}

	.ic-image {
		max-height: 440px;
	}

}

@media all and (max-width: 767px) {

	.carousel-slide {
		height: 300px;
	}

	.ic-image {
		max-height: 300px;
	}

}

@media all and (max-width: 479px) {

	.image-carousel-outer {
		padding: 0 30px;
	}

	.image-carousel .slick-prev {
		left: -30px !important;
		width: 30px !important;
		height: 30px !important;
	}

	.image-carousel .slick-next {
		right: -30px !important;
		width: 30px !important;
		height: 30px !important;
	}

	.small-width .image-carousel .slick-prev,
	.medium-width .image-carousel .slick-prev {
		left: -30px !important;
	}

	.small-width .image-carousel .slick-next,
	.medium-width .image-carousel .slick-next {
		right: -30px !important;
	}

	.carousel-slide {
		height: 260px;
	}

	.ic-image {
		max-height: 260px;
	}

}

/*-----------------------------------------------------------------------------------------------------------
		FLEXIBLE CONTENT - BEFORE & AFTER SLIDER
-----------------------------------------------------------------------------------------------------------*/

.baa-slider-outer {
	position: relative;
}

.baa-slider-wrapper {
	position: relative;
	padding: 0 50px;
}

.baa-slider {
	position: relative;
}

.baa-slider .slick-prev {
	position: absolute !important;
	left: -50px !important;
	width: 50px !important;
	height: 50px !important;
	background: url('images/slider-arrow-left-dark.png') no-repeat center center !important;
	background-size: 11px 30px !important;
	z-index: 100;
}

.light-text .baa-slider .slick-prev {
	background-image: url('images/slider-arrow-left-white.png') !important;
}

.baa-slider .slick-next {
	position: absolute !important;
	right: -50px !important;
	width: 50px !important;
	height: 50px !important;
	background: url('images/slider-arrow-right-dark.png') no-repeat center center !important;
	background-size: 11px 30px !important;
	z-index: 100;
}

.light-text .baa-slider .slick-next {
	background-image: url('images/slider-arrow-right-white.png') !important;
}

.baa-slider .slick-prev:before,
.baa-slider .slick-next:before {
	display: none;
}

.baa-slide {
	position: relative;
}

.baa-slide-inner {
	display: flex;
	column-gap: 50px;
	row-gap: 0;
	width: 100%;
}

.baa-slide-left {
	width: calc(50% - 25px);
}

.baa-slide-right {
	width: calc(50% - 25px);
}

.baa-image-wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 66.625%;
}

.baa-image {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	object-position: center center;
	object-fit: cover;
}

.baa-before-text {
	position: absolute;
	left: 40px;
	top: calc(100% - 65px);
	font-family: "Sackers", sans-serif;
	font-size: 30px;
	line-height: 30px;
	text-transform: uppercase;
	color: #fff;
}

.baa-after-text {
	position: absolute;
	left: 40px;
	top: calc(100% - 65px);
	font-family: "Sackers", sans-serif;
	font-size: 30px;
	line-height: 30px;
	text-transform: uppercase;
	color: #fff;
}

@media all and (max-width: 1199px) {

	.baa-before-text {
		left: 30px;
		top: calc(100% - 55px);
		font-size: 24px;
		line-height: 24px;
	}

	.baa-after-text {
		left: 30px;
		top: calc(100% - 55px);
		font-size: 24px;
		line-height: 24px;
	}

}

@media all and (max-width: 1023px) {

	.baa-slider-wrapper {
		padding: 0 50px;
	}

	.baa-slide-inner {
		column-gap: 0;
		flex-wrap: wrap;
	}

	.baa-slide-left {
		width: 100%;
	}

	.baa-slide-right {
		width: 100%;
	}

	.baa-after-text {
		top: 25px;
	}

}

@media all and (max-width: 767px) {

	.baa-slider-wrapper {
		padding: 0 40px;
	}

	.baa-slider .slick-prev {
		left: -40px !important;
		width: 40px !important;
		height: 40px !important;
		background-size: 9px 24px !important;
	}

	.baa-slider .slick-next {
		right: -40px !important;
		width: 40px !important;
		height: 40px !important;
		background-size: 9px 24px !important;
	}

}

@media all and (max-width: 479px) {

	.baa-before-text {
		left: 20px;
		font-size: 18px;
		line-height: 24px;
	}

	.baa-after-text {
		left: 20px;
		font-size: 18px;
		line-height: 24px;
	}

}

/*-----------------------------------------------------------------------------------------------------------
		FLEXIBLE CONTENT - IMAGE GALLERY
-----------------------------------------------------------------------------------------------------------*/

.image-gallery-outer {
	position: relative;
	padding: 0 25px;
}

.grid-sizer {
	display: block;
	width: calc(100% / 3);
}

.gallery-image-wrapper {
	position: relative;
}

.gallery-item-2 {
	padding-top: 50px;
}

.gallery-image-headline {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 10px 20px;
	width: 100%;
	font-size: 26px;
	line-height: 34px;
	text-align: center;
	color: #112E46;
	background: rgba(255,255,255,0.5);
	opacity: 0;
	transition: all 0.2s ease;
}

.gallery-image-wrapper:hover .gallery-image-headline {
	opacity: 1;
}

.grid-item {
	display: block;
	margin: 0 25px 50px;
	width: calc(100% / 3 - 50px);
	float: left;
}

.gallery-image {
	display: block;
	position: relative;
	top: 0;
	width: 100%;
	height: auto;
	opacity: 1;
	transition: all 0.25s ease;
	transition-delay: 0.25s;
}

.gallery-image.lazy-hide {
	top: 40px;
	opacity: 0;
}

@media all and (max-width: 1023px) {

	.image-gallery-outer {
		padding: 0 20px;
	}

	.grid-sizer {
		width: calc(100% / 2);
	}

	.grid-item {
		margin: 0 20px 40px;
		width: calc(100% / 2 - 40px);
	}

	.gallery-item-2 {
		padding-top: 40px;
	}

}

@media all and (max-width: 479px) {

	.image-gallery-outer {
		width: 100%;
	}

	.grid-sizer {
		width: 100%;
	}

	.grid-item {
		margin: 0 0 40px;
		width: 100%;
	}

	.gallery-item-2 {
		padding-top: 0;
	}

}

/*-----------------------------------------------------------------------------------------------------------
		FLEXIBLE CONTENT - ANIMATED TICKER
-----------------------------------------------------------------------------------------------------------*/

.animated-ticker-wrapper {
	position: relative;
	top: 0;
	width: 100%;
	height: 80px;
	font-size: 0;
	opacity: 1;
	transition: all 0.25s ease;
	transition-delay: 0.25s;
}

.animated-ticker-wrapper.lazy-hide {
	top: 40px;
	opacity: 0;
}

.light-text .animated-ticker-wrapper {
	color: #EAEAE4;
}

.animated-ticker {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	white-space: nowrap;
}

.animated-ticker-text {
	display: inline-block;
	padding: 0 25px;
	font-family: Nexa, sans-serif;
	font-size: 75px;
	line-height: 80px;
	font-weight: 400;
	color: #182D44;
	white-space: nowrap;
	vertical-align: middle;
}

.ticker-image-wrapper {
	display: inline-block;
	padding: 0 25px;
	vertical-align: middle;
}

.ticker-image {
	display: block;
	width: auto;
	height: 80px;
}

/*-----------------------------------------------------------------------------------------------------------
		FLEXIBLE CONTENT - INSTAGRAM
-----------------------------------------------------------------------------------------------------------*/

.instagram-feed-wrapper {
	position: relative;
	top: 0;
	width: 100%;
	opacity: 1;
	transition: all 0.25s ease;
	transition-delay: 0.25s;
}

.instagram-feed-wrapper.lazy-hide {
	top: 40px;
	opacity: 0;
}

.instagram-wrapper {
	margin: 0 auto;
}

#sb_instagram .sbi_load_btn,
#sb_instagram .sbi_follow_btn a {
	font-family: Nexa, sans-serif;
	font-size: 30px !important;
	line-height: 30px !important;
	font-weight: 400 !important;
	color: #fff !important;
	background: 112E46 !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

#sb_instagram .sbi_load_btn:hover,
#sb_instagram .sbi_follow_btn a:hover {
	background: #FC845F !important;
}

#sb_instagram #sbi_images {
	padding: 0 !important;
}

/*-----------------------------------------------------------------------------------------------------------
		SEARCH RESULT
-----------------------------------------------------------------------------------------------------------*/

.search-results-wrapper {
	margin-top: 60px;
}

.search-result {
	display: flex;
	align-items: center;
	margin: 0 0 60px;
}

.search-result-image {
	padding: 0 50px 0 0;
	width: 50%;
}

.search-result-text {
	width: 100%;
}

.has-thumb .search-result-text {
	width: 50%;
}

@media all and (max-width: 599px) {

	.search-result {
		display: block;
	}

	.search-result-image {
		padding: 0 0 20px;
		width: 100%;
	}

	.has-thumb .search-result-text {
		width: 100%;
	}

	.featured-image {
		display: block;
		margin: 0 auto;
		width: 400px;
	}

}

/*-----------------------------------------------------------------------------------------------------------
		BLOG
-----------------------------------------------------------------------------------------------------------*/

.blog-categories-wrapper {
	display: none;
	justify-content: center;
	align-items: center;
	position: relative;
	top: 0;
	margin: 0 0 100px;
	padding: 0 40px;
	width: 100%;
	opacity: 1;
	transition: all 0.25s ease;
	transition-delay: 0.25s;	
}

.blog-categories-wrapper.lazy-hide {
	top: 40px;
	opacity: 0;
}

.blog-categories-wrapper:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 1px;
	background: #172c00;
}

.blog-categories-wrapper:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: #172c00;
}

.blog-category-headline {
	position: relative;
	margin: 0;
	padding: 10px 70px 10px 70px;
	font-family: "Sackers", sans-serif;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	text-transform: uppercase;
	color: #484640;
}

.blog-category-headline:after {
	content: '';
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background: #172c00;
}

.blog-categories {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	margin: 0;
	padding: 10px 70px 10px 20px;
	list-style-type: none;
}

.blog-categories:before {
	content: '';
	display: block;
	position: absolute;
	left: -1px;
	top: 0;
	width: 1px;
	height: 100%;
	background: #172c00;
}

.blog-categories li {
	padding: 0 0 0 50px;
}

.blog-categories li a {
	display: block;
	position: relative;
	padding: 5px 0;
	font-family: "Sackers", sans-serif;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	text-decoration: none !important;
	text-transform: uppercase;
	color: #172c00;
}

.blog-categories li a:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 4px;
	width: 100%;
	height: 1px;
	background: #172c00;
	opacity: 0;
	transition: all 0.2s ease;
}

.blog-categories li a:hover:after,
.blog-categories li.current-cat a:after {
	opacity: 1;
}

@media all and (max-width: 1199px) {

	.blog-category-headline {
		padding: 10px 40px 10px 40px;
	}

	.blog-categories {
		padding: 10px 40px 10px 0;
	}

	.blog-categories li {
		padding: 0 0 0 40px;
	}

}

@media all and (max-width: 1023px) {

	.blog-categories-wrapper {
		display: block;
		padding: 20px;
	}

	.blog-category-headline {
		position: relative;
		margin: 0;
		padding: 0 0 20px;
	}

	.blog-categories {
		padding: 0;
	}

	.blog-category-headline:after,
	.blog-categories:before {
		display: none;
	}

	.blog-categories li {
		padding: 0 40px 0 0;
	}

}

@media all and (max-width: 479px) {

	.blog-categories-wrapper {
		padding: 20px 10px;
	}

}

/*-----------------------------------------------------------------------------------------------------------
		BLOG FEED
-----------------------------------------------------------------------------------------------------------*/

.blog-feed-wrapper {
	padding: 0 50px;
}

.blog-feed {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 50px;
	row-gap: 120px;
}

.blog-post {
	position: relative;
	top: 0;
	width: 100%;
	opacity: 1;
	transition: all 0.25s ease;
	transition-delay: 0.25s;
}

.blog-post.lazy-hide {
	top: 40px;
	opacity: 0;	
}

.blog-image-wrapper {
	display: block;
	position: relative;
	width: 100%;
	margin: 0 0 20px;
	padding: 0 0 60%;
	border-radius: 30px;
}

.blog-main-image {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.blog-hover-image {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	opacity: 0;
	transition: all 0.2s ease;
}

.blog-image-wrapper:hover .blog-hover-image {
	opacity: 1;
}

.blog-title {
	margin: 0 0 10px !important;
}

.blog-title a {
	margin: 0px 0px 5px;
	font-size: 32px;
	line-height: 36px;
	font-weight: 400;
	letter-spacing: 0.02em;
	text-transform: lowercase;
	color: #484640;
}

.blog-sub-head {
	font-family: "Sackers", sans-serif;
	font-size: 16px;
	line-height: 30px;
	font-weight: 400;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #484640;
}

.blog-excerpt {
	
}

.blog-navigation {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 50px;
	margin: 60px 0 0;
	font-family: Nexa, sans-serif;
	font-size: 20px;
	line-height: 30px;
	font-weight: 400;
	letter-spacing: 0.03em;
}

.prev-page a {
	position: relative;
	display: inline-block;
	margin: 0 0 20px;
	padding: 0;
	font-family: "Sackers", sans-serif;
	font-size: 14px;
	line-height: 30px;
	font-weight: 500;
	text-align: center;
	text-decoration: none !important;
	text-transform: uppercase;
	color: #484640;
	transition: all 0.2s ease;
}

.prev-page a:after {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	width: 80%;
	height: 1px;
	background: #30302D;
	transform: translateX(-50%);
	transition: all 0.2s ease;
}

.prev-page a:hover {
	color: #749C5B;
	border-color: #749C5B;
}

.prev-page a:hover:after {
	width: 100%;
	background: #749C5B;
}

.next-page a {
	position: relative;
	display: inline-block;
	margin: 0 0 20px;
	padding: 0;
	font-family: "Sackers", sans-serif;
	font-size: 14px;
	line-height: 30px;
	font-weight: 500;
	text-align: center;
	text-decoration: none !important;
	text-transform: uppercase;
	color: #484640;
	transition: all 0.2s ease;
}

.next-page a:after {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	width: 80%;
	height: 1px;
	background: #30302D;
	transform: translateX(-50%);
	transition: all 0.2s ease;
}

.next-page a:hover {
	color: #749C5B;
	border-color: #749C5B;
}

.next-page a:hover:after {
	width: 100%;
	background: #749C5B;
}

.blog-footer-image-wraper {
	position: realtive;
}

.blog-footer-image {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
}

@media all and (max-width: 1023px) {

	.blog-feed-wrapper {
		padding: 0 20px;
	}

	.blog-feed {
		column-gap: 20px;
	}

	.blog-title.h1 {
		font-size: 40px;
		line-height: 45px;
	}

}

@media all and (max-width: 767px) {

	.blog-feed-wrapper {
		padding: 0 40px;
	}

	.blog-feed {
		grid-template-columns: 1fr;
	}

}

@media all and (max-width: 479px) {

	.blog-feed-wrapper {
		padding: 0 20px;
	}

	.blog-feed {
		row-gap: 60px;
	}

}

/*-----------------------------------------------------------------------------------------------------------
		BLOG SINGLE
-----------------------------------------------------------------------------------------------------------*/

.blog-header-image {
	display: block;
	margin: 0 0 20px;
}

.blog-title-single {
	margin: 0 0 10px;
}

/*-----------------------------------------------------------------------------------------------------------
		PORTFOLIO
-----------------------------------------------------------------------------------------------------------*/

.portfolio-categories-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	top: 0;
	margin: 0 0 80px;
	padding: 0 100px;
	width: 100%;
	opacity: 1;
	transition: all 0.25s ease;
	transition-delay: 0.25s;	
}

.portfolio-categories-wrapper.lazy-hide {
	top: 40px;
	opacity: 0;
}

.portfolio-category-headline.h1 {
	margin: 0;
	width: 100%;
	text-align: center;
	text-transform: lowercase;
}

.portfolio-categories-wrapper h5 {
	width: 100%;
	text-align: center;
}

.portfolio-categories {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin: 0;
	padding: 0 0 0 100px;
	list-style-type: none;
}

.portfolio-categories li {
	padding: 0 0 0 50px;
}

.portfolio-categories li a {
	display: block;
	position: relative;
	padding: 5px 0;
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none !important;
	color: #2E4252;
}

.portfolio-categories li a:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 5px;
	width: 100%;
	height: 1px;
	background: #2E4252;
	opacity: 0;
	transition: all 0.2s ease;
}

.portfolio-categories li a:hover:after,
.portfolio-categories li.active a:after {
	opacity: 1;
}

@media all and (max-width: 1365px) {

	.portfolio-categories-wrapper {
		padding: 20px 40px;
	}

	.portfolio-categories {
		padding: 0 0 0 50px;
	}

	.portfolio-categories li {
		padding: 0 0 0 50px;
	}

}

@media all and (max-width: 1199px) {

	.portfolio-categories-wrapper {
		padding: 20px 20px;
	}

	.portfolio-categories {
		padding: 0 0 0 40px;
	}

	.portfolio-categories li {
		padding: 0 0 0 40px;
	}

}

@media all and (max-width: 1023px) {

	.portfolio-categories-wrapper {
		display: block;
	}

	.portfolio-categories {
		padding: 10px 0 0;
	}

	.portfolio-categories li {
		padding: 0 40px 0 0;
	}

}

@media all and (max-width: 479px) {

	.portfolio-categories-wrapper {
		padding: 20px 10px;
	}

}

/*-----------------------------------------------------------------------------------------------------------
		PORTFOLIO FEED
-----------------------------------------------------------------------------------------------------------*/

.portfolio-feed-wrapper {
	padding: 0 50px;
}

.portfolio-feed {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 50px;
	row-gap: 120px;
}

.portfolio-item {
	position: relative;
	top: 0;
	width: 100%;
	opacity: 1;
	transition: all 0.25s ease;
	transition-delay: 0.25s;
}

.portfolio-item.lazy-hide {
	top: 40px;
	opacity: 0;	
}

.portfolio-image-wrapper {
	display: block;
	position: relative;
	width: 100%;
	margin: 0 0 20px;
	padding: 0 0 60%;
}

.portfolio-main-image {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.portfolio-hover-image {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	opacity: 0;
	transition: all 0.2s ease;
}

.portfolio-image-wrapper:hover .portfolio-hover-image {
	opacity: 1;
}

.portfolio-name {
	margin: 0 0 5px;
	font-size: 32px;
	line-height: 36px;
	font-weight: 400;
	letter-spacing: 0.02em;
	text-transform: lowercase;
	color: #484640;
}

.portfolio-name a {
	color: #484640;
}

.light-text .portfolio-name a {
	color: #EAEAE4;
}

.light-text .portfolio-name a:hover {
	color: #749C5B;
}


.portfolio-location {
	margin: 0 !important;
	text-transform: uppercase;
}

.project-archive-footer-image {
	display: block;
	margin: 0;
	width: 100%;
}

@media all and (max-width: 1023px) {

	.portfolio-feed-wrapper {
		padding: 0 20px;
	}

	.portfolio-feed {
		column-gap: 20px;
	}

	.portfolio-name.h1 {
		font-size: 40px;
		line-height: 45px;
	}

}

@media all and (max-width: 767px) {

	.portfolio-feed-wrapper {
		padding: 0 40px;
	}

	.portfolio-feed {
		grid-template-columns: 1fr;
	}

}

@media all and (max-width: 479px) {

	.portfolio-feed-wrapper {
		padding: 0 20px;
	}

	.portfolio-feed {
		row-gap: 60px;
	}

}

/*-----------------------------------------------------------------------------------------------------------
		OC DIVIDERS
-----------------------------------------------------------------------------------------------------------*/

.oc-divider-wrapper {
	padding: 0 40px;
}

.oc-divider {
	position: relative;
	width: 100%;
	height: 43px;
	background: url('images/oc-divider-green.png') no-repeat center center;
	background-size: auto 43px;
}

.light-text .oc-divider {
	background-image: url('images/oc-divider-white.png');
}

@media all and (max-width: 767px) {

	.oc-divider-wrapper {
		padding: 0 20px;
	}

	.oc-divider {
		height: 30px;
		background-size: auto 30px;
	}

}

@media all and (max-width: 479px) {

	.oc-divider {
		height: 30px;
		background-size: auto 30px;
	}

}

/*-----------------------------------------------------------------------------------------------------------
		PRE-FOOTER
-----------------------------------------------------------------------------------------------------------*/

.pre-footer-wrapper {
	background: #FC845F;
}

.pre-footer-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 auto;
	padding: 40px 40px 20px;
	max-width: 1480px;
	color: #fff;
}

.pre-footer-col {
	width: calc(50% - 25px);
}

.pre-footer-content a, .pre-footer-content .h1, .pre-footer-content h1, .pre-footer-content h2, .pre-footer-content h3, .pre-footer-content h4, .pre-footer-content h5, .pre-footer-content h6 {
	color: #fff;
}

@media all and (max-width: 767px) {

	.pre-footer-col {
		width: 100%;
	}

}

/*-----------------------------------------------------------------------------------------------------------
		FOOTER
-----------------------------------------------------------------------------------------------------------*/

.footer-wrapper {
	position: relative;
	background: #1C2B06;	
}

.footer-graphic-wrapper {
	position: absolute;
	left: calc(50% + 700px);
	top: 0;
	width: 300px;
	transform: translateX(-100%) translateY(-50%);
}

.footer-headline-wrapper {
	display: flex;
	margin: 0 auto;
	padding: 60px 340px 0 40px;
	max-width: 1800px;
}

.footer-headline {
	display: block;
	font-size: 40px;
	line-height: 45px;
	font-weight: 400;
	letter-spacing: 0.03em;
	color: #EAEAE4;
	text-decoration: none !important;
	text-transform: lowercase;
}

a.footer-headline:hover {
	color: #749C5B;
}

.footer-content-wrapper {
	position: relative;
}

.footer-content {
	display: flex;
	column-gap: 80px;
	row-gap: 20px;
	margin: 0 auto;
	padding: 60px 40px 40px;
	max-width: 1800px;
	color: #EAEAE4;
}

.footer-content a {
	color: #EAEAE4;
	text-decoration: none !important;
}

.footer-content a:hover {
	color: #749C5B;
}

.footer-content .h1, .footer-content h1, .footer-content h2, .footer-content h3, .footer-content h4, .footer-content h5, .footer-content h6 {
	color: #EAEAE4;
}

.footer-column.fc1 {
	min-width: 180px;
	max-width: 22%;
}

.footer-column.fc2 {
	min-width: 180px;
	max-width: 22%;
}

.footer-column.fc3 {
	min-width: 180px;
	max-width: 22%;
}

.footer-column.fc4 {
	margin-left: auto;
	max-width: 34%;
	font-size: 26px;
	line-height: 36px;
}

.legal-wrapper {
	margin: 0 auto;
	padding: 40px 40px 40px;
	max-width: 1080px;
}

.legal {
	padding: 0 20px;
	font-size: 12px;
	line-height: 20px;
	font-weight: 400;
	text-align: center;
	color: #fff;
}

.legal a {
	color: #fff;
	text-decoration: none;
}

.legal a.atlas {
	font-family: georgia;
	font-weight: 700;
}

@media all and (max-width: 1799px) {

	.footer-graphic-wrapper {
		left: calc(100% - 160px);
		width: 260px;
	}

	.footer-headline-wrapper {
		padding: 60px 260px 0 40px;
	}

}

@media all and (max-width: 1365px) {

	.footer-headline {

	}

	.footer-content {
		column-gap: 50px;
		font-size: 20px;
		line-height: 28px;
	}

	.footer-content h3 {
		font-size: 40px;
		line-height: 48px;
	}

	.footer-column.fc1 {
		max-width: 22%;
	}

	.footer-column.fc2 {
		max-width: 22%;
	}

	.footer-column.fc3 {
		max-width: 22%;
	}

	.footer-column.fc4 {
		max-width: 34%;
	}

}

@media all and (max-width: 1199px) {

	.footer-graphic-wrapper {
		width: 160px;
	}

	.footer-headline-wrapper {
		padding: 40px 220px 0 40px;
	}

	.footer-headline {

	}

	.footer-content {
		padding: 40px 40px 40px;
		flex-wrap: wrap;
	}
	
	.footer-column.fc1 {
		order: 2;
		width: 30%;
		max-width: 100%;
	}

	.footer-column.fc2 {
		order: 3;
		width: 27%;
		max-width: 100%;
	}

	.footer-column.fc3 {
		order: 4;
		width: 27%;
		max-width: 100%;
	}

	.footer-column.fc4 {
		order: 1;
		padding-right: 50%;
		width: 100%;
		max-width: 100%;
	}

}

@media all and (max-width: 1023px) {

	.footer-headline {

	}

	.footer-column.fc4 {
		padding-right: 25%;
	}

}

@media all and (max-width: 767px) {

	.footer-graphic-wrapper {
		left: calc(100% - 20px);
		width: 100px;
	}

	.footer-headline-wrapper {
		padding: 40px 20px 0;
	}

	.footer-content {
		margin: 0 auto;
		padding: 40px 20px 40px;
		max-width: 440px;
	}

	.footer-column.fc1 {
		width: 100%;
	}

	.footer-column.fc2 {
		width: 100%;
	}

	.footer-column.fc3 {
		width: 100%;
	}

	.footer-column.fc4 {
		padding-right: 0%;
	}

}

/*-----------------------------------------------------------------------------------------------------------
		SOCIAL MEDIA MENU
-----------------------------------------------------------------------------------------------------------*/

.social-media-menu {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin: 0 0 20px;
	list-style-type: none;
}

.social-media-menu li {
	margin: 0 15px 20px 0;
}

.social-media-menu li a {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 28px;
	line-height: 28px;
	text-decoration: none !important;
	color: #fff;
	transition: all 0.25s ease;
}

/*-----------------------------------------------------------------------------------------------------------
		GRAVITY FORMS
-----------------------------------------------------------------------------------------------------------*/

.gform_wrapper {
	margin: 0 auto !important;
}

.gform_required_legend {
	display: none !important;
}

.gfield {
	margin-bottom: 15px !important;
}

.gform_wrapper .top_label .gfield_label {
	margin: 0 0 10px !important;
	font-family: "Sackers", sans-serif !important;
	font-size: 18px !important;
	line-height: 24px !important;
	font-weight: 500 !important;
	letter-spacing: 0 !important;
	text-transform: uppercase !important;
	color: #484640 !important;
}

.gform_wrapper .gfield_required {
	height: 10px !important;
	color: #484640 !important;
}

.gform_wrapper ul li.gfield {
	margin-top: 0 !important;
	margin-bottom: 20px !important;
}

body .gform_wrapper .top_label div.ginput_container {
	margin: 0 !important;
}

.gform_wrapper .gform_footer input[type="submit"] {
	display: block !important;
	padding: 2px 0 !important;
	font-family: "Sackers", sans-serif !important;
	font-size: 14px !important;
	line-height: 30px !important;
	font-weight: 500 !important;
	letter-spacing: 0 !important;
	text-align: center !important;
	text-decoration: none !important;
	text-transform: uppercase !important;
	color: #484640 !important;
	background: transparent !important;
	border: 0 !important;
	border-bottom: 1px solid #484640 !important;
	border-radius: 0 !important;
	outline: 0 !important;
	transition: all 0.2s ease !important;
	cursor: pointer !important;
	-webkit-appearance: none !important;
}

.gform_wrapper .gform_footer input[type="submit"]:hover {
	color: #749C5B !important;
	border-color: #749C5B !important;
}

.light-text .gform_wrapper .gform_footer input[type="submit"] {
	color: #eaeae4 !important;
}

.light-text .gform_wrapper .gform_footer input[type="submit"]:hover {
	color: #426046 !important;
	background: #E6A10D !important;
}

.gform_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type="text"] {
	margin-bottom: 0 !important;
}

.gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
	height: 42px !important;
	font-family: "Muli", sans-serif !important;
	font-size: 18px !important;
	font-weight: 400 !important;
	color: #1c2b06 !important;
	letter-spacing: 0 !important;
	background: transparent !important;
	border: 0 !important;
	border-bottom: 1px solid #484640 !important;
	outline: 0 !important;
	border-radius: 0 !important;
	-webkit-appearance: none !important;
}

.light-text .gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]) {
	color: #fff !important;
	border-bottom: 2px solid #fff !important;
}

.gform_wrapper select {
	padding: 0 30px 0 4px !important;
	height: 42px !important;
	font-family: "Muli", sans-serif !important;
	font-size: 18px !important;
	font-weight: 400 !important;
	color: #1c2b06 !important;
	background: transparent url('images/mobile-arrow-green.png') no-repeat !important;
	background-position: calc(100% - 8px) center !important;
	background-size: auto 8px !important;
	border: 0 !important;
	border-bottom: 1px solid #484640 !important;
	border-radius: 0 !important;
	outline: 0 !important;
	-moz-appearance: none !important;
	-webkit-appearance: none !important;
}

.light-text .gform_wrapper select {
	color: #fff !important;
	border-bottom: 1px solid #fff !important;
}

.gform_wrapper textarea {
	font-family: "Muli", sans-serif !important;
	font-size: 18px !important;
	font-weight: 400 !important;
	color: #1c2b06 !important;
	background: transparent !important;
	border: 1px solid #484640 !important;
	outline: 0 !important;
	border-radius: 0 !important;
	-webkit-appearance: none !important;
}

.light-text .gform_wrapper textarea {
	color: #fff !important;
	border: 1px solid #fff !important;
}

/*-----------------------------------------------------------------------------------------------------------
		MISC
-----------------------------------------------------------------------------------------------------------*/

.wsp-container ul {
	list-style-type: none;
}

@media all and (max-width: 1023px) {



}

@media all and (max-width: 767px) {



}

@media all and (max-width: 479px) {



}
