/**
	@Author:	Trident Marketing
	@Date:		1 June 2022
	@Notes:		Baya Homes
		
	FONTS & COLORS
	-------------
	font-family: eurostile,sans-serif; font-weight: 400; font-style: normal;
	inner max-width: 1070px;
*/
@import url('reset.css');
@import url('font-awesome.min.css');

:root {
	--accent: #9C7F52;
	--page-margin: 0; /* 0 | 20px */
	--header-bg: transparent; /* #fff */
	--header-bg2: #222; /* #fff */
	--header-padding: 0 30px 0 0;
	--hero-border: none;
	--hero-border2: none;
	
	--grey1: #363A3D;
	--grey2: #c4c4c4;
	--grey3: #939393;
	--grey4: #242424;
	--black: #000000;
    --inner: 1200px;
    --inner-narrow: 900px;
    --inner-wide: 1400px;
    --inner-max: 100%;
    --medium-shadow: 0px 20px 50px rgba(0, 0, 0, 0.1);
	}

* {
	box-sizing: border-box;
	}

html {
	font-size: 100%;
	}
body {
	margin: 0;
	padding: 0;
	position: relative;
	font-size: 16px;
	line-height: 1.3;
	background: var(--grey1);
	}

body, input, textarea, table {
	font-family: eurostile,sans-serif;
	font-weight: 400;
	color: #fff;
	}

/* ----- [ Typography ] -------------------------*/
p,
li,
td {
	font-family: eurostile,sans-serif;
	font-weight: 300;
	font-size: 1.2rem;
	line-height: 1.4;
	margin: 0 0 1em;
	color: #fff;
	text-align: justify;
	}
li {
	margin: 0;
	}

em {
	font-style: italic;
	}
b,
strong {
	font-weight: 700;
	}

a {
	color: #888;
	border-bottom: 1px solid var(--accent);
	border-bottom: 1px solid transparent;
	}
.cms-text a:not(.button),
.sidebar-nav a {
	color: var(--accent);
	}
a:hover {
	color: var(--accent);
	border-bottom: 1px solid var(--accent);
	}

h1,h2,h3,h4 {
	font-family: eurostile,sans-serif;
	font-weight: 400;
	margin: 0 0 0.5em;
	color: #fff;
	}
h1, .h1 {
	font-weight: 400;
	font-size: 2.6rem;
	line-height: 1;
	margin: 0 auto 0.2em;
	max-width: 1380px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.13em;
	}
h2, .h2 {
	color: #fff;
	font-weight: 300;
	font-size: 1.7em;
	line-height: 1.3;
	margin: 0 0 0.6em;
	text-transform: none;
	}
h3 {
	font-weight: 300;
	font-size: 1.8em;
	line-height: 1.2;
	margin: 0 0 0.6em;
	}
	
p + h3 {
	margin: 1em 0 0.6em;
	}

h4 {
	font-size: 0.9em;
	line-height: 1.4em;
	font-weight: 300;
	color: #fff;
	margin: 0 0 0.5em;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	}

@media only screen and (min-width: 400px) {
	h1, .h1 {
		font-size: 3em;
		line-height: 1;
		}
}

@media only screen and (min-width: 600px) { 
	h1, .h1 {
		font-size: 3.4em;
		line-height: 1;
		}
	h2, .h2 {
		font-size: 2em;
		}
	h3 {
		font-size: 1.5em;
		}		
}

img {
	display: block;
	vertical-align: middle;
	}

.image-fit {
	object-fit: cover;
	height: 100%;
	width: 100%;
	}

/* global section centering */
.centered,
.centered p,
.centered h2,
.centered h3 {
	text-align: center;
	}

.center-content {
	display: flex;
	justify-content: center;
	align-items: center;
	}

/* ----- [ Structure ] --------------------------*/
.page-overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	background: rgba(0,0,0,0.8);
	z-index: 600;
	opacity: 0;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	}
.page-overlay.is-open {
	visibility: visible;
	opacity: 1;
	}

header,
section,
footer {
	width: 100%;
	margin: 0;
	position: relative;
	}
section {
	padding: 30px 0;
	}
.inner {
	position: relative;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 30px;
	}
.inner-full {
	max-width: 100%;
	padding: 0;
	overflow: hidden;
	}
.inner-narrow {
	max-width: 900px;
	}
.inner-wide {
	max-width: 1600px;
	}
	
@media only screen and (min-width: 600px) { 
	section {
		padding: 70px 0;
		}
}

/* ----- [ Strandoo Flex Grid System v1 ] --------------- */
.row {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	flex-direction: column;
	/*justify-content: stretch;*/
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	position: relative;
	}

.col {
	flex: 1;
	}

.row.no-padding,
.row.padding-0 {
	margin-left: 0;
	margin-right: 0;
	}
.row.padding-1 {
	margin-left: -1px;
	margin-right: -1px;
	}
.row.padding-5 {
	margin-left: -5px;
	margin-right: -5px;
	}
.row.padding-10 {
	margin-left: -10px;
	margin-right: -10px;
	}
.row.padding-15 {
	margin-left: -15px;
	margin-right: -15px;
	}
.row.padding-20 {
	margin-left: -20px;
	margin-right: -20px;
	}
.row.padding-30 {
	margin-left: -30px;
	margin-right: -30px;
	}

.no-padding > .col,
.padding-0 > .col {
	padding: 0;
	}
.padding-1 > .col {
	padding-left: 1px;
	padding-right: 1px;
	}
	
.padding-5 > .col {
	padding-left: 5px;
	padding-right: 5px;
	}
.padding-10 > .col {
	padding-left: 10px;
	padding-right: 10px;
	}
.padding-15 > .col {
	padding-left: 15px;
	padding-right: 15px;
	}
.padding-20 > .col {
	padding-left: 20px;
	padding-right: 20px;
	}
.padding-30 > .col {
	padding-left: 30px;
	padding-right: 30px;
	}

.row.text-center > .col {
	text-align: center;
	}

.col > img {
	max-width: 100%;
	}

@media only screen and (min-width: 100px) and (max-width: 599px) {
	.base-row.row {
		flex-direction: row;
		}

	.base-row .m-1of2,
	.base-row .m-2of4,
	.base-row .m-50 {
		width: 50%;
		flex: none;
		}
	.base-row .m-1of3,
	.base-row .m-33 {
		width: 33.3333%;
		flex: none;
		}
		
	.base-row {
		margin-left: 20px !important;
		margin-right: 20px !important;
		}
	.base-row .col {
		width: 50%;
		flex: none;
		}
}

@media only screen and (min-width: 600px) { 
	.row {
		flex-direction: row;
		}
	
	.m-auto {
		width: auto;
		}
	.m-full,
	.m-1of1,
	.m-2of2 {
		width: 100%;
		flex: auto;
		}
	.m-1of2,
	.m-50 {
		width: 50%;
		flex: none;
		}
	.m-1of3,
	.m-33 {
		width: 33.3333%;
		flex: none;
		}
	.m-2of3,
	.m-66 {
		width: 66.6667%;
		flex: none;
		}
	.m-1of4,
	.m-25 {
		width: 25%;
		flex: none;
		}
	.m-3of4,
	.m-75 {
		width: 75%;
		flex: none;
		}
	.m-1of5,
	.m-20 {
		width: 20%;
		flex: none;
		}
		
	.m-hidden { display: none; }
}

@media only screen and (min-width: 770px) {
	.t-auto {
		width: auto;
		}
	.t-full,
	.t-2of2,
	.t-3of3,
	.t-4of4,
	.t-5of5 {
		width: 100%;
		flex: none;
		}
	.t-1of2,
	.t-2of4,
	.t-3of6,
	.t-50 {
		width: 50%;
		flex: none;
		}
	.t-1of3,
	.t-2of6,
	.t-33 {
		width: 33.3333%;
		flex: none;
		}
	.t-2of3,
	.t-4of6,
	.t-66 {
		width: 66.6667%;
		flex: none;
		}
	.t-1of4,
	.t-25 {
		width: 25%;
		flex: none;
		}
	.t-3of4,
	.t-75 {
		width: 75%;
		flex: none;
		}
	.t-1of5,
	.t-3of6,
	.t-20 {
		width: 20%;
		flex: none;
		}
	.t-2of5,
	.t-40 {
		width: 40%;
		flex: none;
		}
	.t-3of5,
	.t-60 {
		width: 60%;
		flex: none;
		}
	.t-4of5,
	.t-80 {
		width: 80%;
		flex: none;
		}
	.t-hidden { display: none; }
}
@media only screen and (min-width: 1200px) { 
	.d-auto {
		width: auto;
		}
	.d-full,
	.d-2of2,
	.d-3of3,
	.d-4of4,
	.d-5of5 {
		width: 100%;
		flex: none;
		}
	.d-1of2,
	.d-2of4,
	.d-3of6,
	.d-50 {
		width: 50%;
		flex: none;
		}
	.d-1of3,
	.d-2of6,
	.d-33 {
		width: 33.3333%;
		flex: none;
		}
	.d-2of3,
	.d-4of6,
	.d-66 {
		width: 66.6667%;
		flex: none;
		}
	.d-1of4,
	.d-25 {
		width: 25%;
		flex: none;
		}
	.d-3of4,
	.d-75 {
		width: 75%;
		flex: none;
		}
	.d-1of5,
	.d-3of6,
	.d-20 {
		width: 20%;
		flex: none;
		}
	.d-2of5,
	.d-40 {
		width: 40%;
		flex: none;
		}
	.d-3of5,
	.d-60 {
		width: 60%;
		flex: none;
		}
	.d-4of5,
	.d-80 {
		width: 80%;
		flex: none;
		}
	.d-1of6,
	.d-16 {
		width: 16.6666%;
		flex: none;
		}
		
	.d-hidden { display: none; }
}

/* ----- [ Masthead / Page Header ] -------------*/
.page-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	margin: var(--page-margin);
	padding: 5px;
	z-index: 1000;
	background: rgba(0,0,0,0.5);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* Force Hardware Acceleration */
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
	}

.open .page-header {
	position: fixed;
	}

.page-header .inner {
	max-width: 1500px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	/*flex-wrap: wrap;*/
	justify-content: center;
	justify-content: space-between;
	align-items: center;
	align-itmes: flex-end;
	background: var(--header-bg);
	position: relative;
	max-width: 100%;
	height: 100%;
	margin: 0 auto 0;
	padding: 10px;
	}

.logo-wrap {
	width: auto;
	max-width: 140px;
	width: 100%;
	margin: 0 auto 0 0;
	padding: 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	z-index: 100;
	}
.logo-wrap img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: middle;
	padding: 5px 10px;
	}
	
.menu-trigger,
.logo-wrap a,
.logo-wrap a:hover {
	border-bottom: none;
	}
	
@media only screen and (min-width: 600px) {
	.page-header .inner {
		padding: 10px 30px;
		}
}

@media only screen and (min-width: 1020px) {
	.page-header {
		position: fixed;
		padding: 15px;
		}

	.page-header .inner {
		margin: 0 auto 0;
		padding: 0;
		justify-content: space-between;
		overflow-x: visible;
		}
	.page-header.small .inner {
		margin-top: 0;
		}

	.logo-wrap {
		display: block;
		max-width: 220px;
		width: auto;
		margin: 0 auto 0 0;
		padding: 5px;
		}
	.logo-wrap img {
		}
	.logo-wrap a,
	.logo-wrap a:hover {
		border: none;
		}
}

/* ----- [ Navigation ] ------------------------ */
.main-navigation {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center; 
	align-items: center;
	padding: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.8s ease;
	-moz-transition: all 0.8s ease;
	-o-transition: all 0.8s ease;
	transition: all 0.8s ease;
	background: rgba(0,0,0,0.7);
	}
.main-navigation.is-open {
	opacity: 1;
	visibility: visible;
	overflow-x: auto;
	}
	
@media only screen and (min-width: 600px) {
	.main-navigation {
		margin: -15px;
		}
}

.main-navigation ul {
	text-align: center;
	margin: 0;
	padding: 1.5em 3.5em;
	border: 1px solid var(--accent);
	}
.nav-item {
	position: relative;
	font-size: 1.8rem;
	text-transform: uppercase;
	margin: 10px 0;
	letter-spacing: 0.05em;
	text-align: center;
	}
.nav-item a,
.nav-item span {
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 0 0 10px;
	border: none;
	}
.nav-item a:hover,
.nav-item a.on,
.nav-item span:hover,
.nav-item span.on {
	color: #fff;
	}

.has-children:after {
	content: " +";
	content: "\f107";
	font-family: fontawesome;
	font-weight: bold;
	margin-left: 0.3em;
	display: none;
	}

.nav-item {
	opacity: 0;
	}
.menu-is-open .nav-item:nth-child(1) {
	animation: fade-in-item 1s 0.2s ease-out forwards; animation-delay: 100ms;
	}
.menu-is-open .nav-item:nth-child(2) {
	animation: fade-in-item 1s 0.2s ease-out forwards; animation-delay: 200ms;
	}
.menu-is-open .nav-item:nth-child(3) {
	animation: fade-in-item 1s 0.2s ease-out forwards; animation-delay: 300ms;
	}
.menu-is-open .nav-item:nth-child(4) {
	animation: fade-in-item 1s 0.2s ease-out forwards; animation-delay: 400ms;
	}
.menu-is-open .nav-item:nth-child(5) {
	animation: fade-in-item 1s 0.2s ease-out forwards; animation-delay: 500ms;
	}
.menu-is-open .nav-item:nth-child(6) {
	animation: fade-in-item 1s 0.2s ease-out forwards; animation-delay: 600ms;
	}
.menu-is-open .nav-item:nth-child(7) {
	animation: fade-in-item 1s 0.2s ease-out forwards; animation-delay: 700ms;
	}
@-webkit-keyframes fade-in-item {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

/* ------ [ Projects Trigger (deprecated) ] ------ */
.group-trigger {
	position: absolute;
	background-color: transparent;
	right: 120px;
	top: 0;
	height: 100%;
	width: 80px;
	z-index: 100;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	}
.group-trigger:hover {
	text-decoration: none;
	border-bottom: none;
	}
.group-text {
	display: none;
	}
.group-icon {
	width: 62px;
	height: 29px;
	border: 2px solid var(--accent);
	display: block;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	}
.group-trigger:hover .group-icon {
	transform: scaleY(1.2);
	}

/* ------ [ Nav Trigger ] ------ */
.nav-trigger {
	position: absolute;
	background-color: transparent;
	right: 20px;
	top: 0;
	height: 100%;
	width: 80px;
	z-index: 100;
	text-decoration: none;
	}
.nav-trigger:hover {
	text-decoration: none;
	border-bottom: none;
	}
.nav-trigger .menu-text {
	color: white;
	text-transform: uppercase;
	font-weight: 700;
	/* hide the text on small devices */
	display: none;
	}
.nav-trigger .menu-icon {
	/* this span is the central line of the menu icon */
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	width: 60px;
	height: 2px;
	background-color: var(--accent);
	-webkit-transition: background-color 0.3s;
	-moz-transition: background-color 0.3s;
	transition: background-color 0.3s;
	/* these are the upper and lower lines in the menu icon */
	}
.nav-trigger .menu-icon::before,
.nav-trigger .menu-icon:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	background-color: var(--accent);
	right: 0;
	-webkit-transition: -webkit-transform .3s, top .3s, background-color 0s;
	-moz-transition: -moz-transform .3s, top .3s, background-color 0s;
	transition: transform .3s, top .3s, background-color 0s;
	}

.nav-trigger .menu-icon::before,
.nav-trigger .menu-icon::after {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	}
.nav-trigger .menu-icon::before {
	top: -12px;
	}
.nav-trigger .menu-icon::after {
	top: 12px;
	}
.nav-trigger:hover .menu-icon::before {
	top: -15px;
	}
.nav-trigger:hover .menu-icon::after {
	top: 15px;
	}
.nav-trigger .menu-icon.is-clicked {
	background-color: rgba(255, 255, 255, 0);
	}
.nav-trigger .menu-icon.is-clicked::before,
.nav-trigger .menu-icon.is-clicked::after {
	background-color: var(--accent);
	}
.nav-trigger .menu-icon.is-clicked::before {
	top: 0;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-o-transform: rotate(135deg);
	transform: rotate(135deg);
	width: 40px;
	right: 10px;
	}
.nav-trigger .menu-icon.is-clicked::after {
	top: 0;
	-webkit-transform: rotate(225deg);
	-moz-transform: rotate(225deg);
	-ms-transform: rotate(225deg);
	-o-transform: rotate(225deg);
	transform: rotate(225deg);
	width: 40px;
	right: 10px;
	}

/* ----- [ Flex Container (Header) ] ----------- */
@media only screen and (min-width: 1020px) { /* 800  1110 */
	/* Make this a Utility Class */
	.flex-container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
		position: relative;
		justify-content: space-between;
		align-items: center;
		padding: 0 20px;
		}
		
	.f-top { align-items: flex-start; }
	.f-middle { align-items: center; }
	.f-bottom { align-items: flex-end; }
	.f-left { justify-content: flex-start; }
	.f-right { justify-content: flex-end; }
	.f-center { justify-content: center; }
}

/* ----- [ Hero Images ] -----------------*/
.hero {
	height: 640px;
	height: 100vh;
	padding: 0;
	margin: 0;
	border-top: var(--hero-border);
	overflow: hidden;
	background-size: cover;
	}
.fixed-hero {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 20;
    animation: preload-animation 1.8s 0.2s ease-out forwards; 
    animation-delay: 600ms;
    opacity: 1;
    visibility: visible;
	}

.hero-overlay,
.hero-nav {				
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center; 
	align-items: center;
	margin: 0;
	padding: 0;
	-webkit-transition: all 0.8s ease;
	-moz-transition: all 0.8s ease;
	-o-transition: all 0.8s ease;
	transition: all 0.8s ease;
	background: rgba(0,0,0,0.7);
	}
.hero-nav {
	margin: -15px;
	opacity: 0;
	visibility: hidden;
	}

.hero-nav.is-visible,
.hero-nav.group-overlay {
	opacity: 1;
	visibility: visible;
	}
	
/* Basic Page Sections */
.main-section {
	overflow: hidden;
	padding: 0;
	background: url('../images/bg-pattern-sm.jpg') 50% 50% no-repeat;
	background-size: cover;
	}
	
.main-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.3);
	}
	
.main-section.people-section {
	height: auto;
	}
	
.text-wrapper {
	max-width: 600px;
	padding: 80px 30px;
	margin: 0;
	margin-left: auto;
	}
	
.image-wrapper {
	height: 100%;
	}

.main-section .text-wrapper {
	overflow: auto;
	padding: 0 30px 20px;
	margin: 145px auto 100px;
	}

.main-section .text-wrapper h2:first-child {
	color: var(--accent);
	font-size: 3.5rem;
	text-transform: uppercase;
	line-height: 1;
	}
	
.http404 h2 {
	margin-top: 2em;
	}

/* Utility? */
.main-section .text-wrapper::-webkit-scrollbar,
.bio-text-wrapper::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 4px;
	}
.main-section .text-wrapper::-webkit-scrollbar-track,
.bio-text-wrapper::-webkit-scrollbar-track {
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.6);
    border-radius: 10px;
	}
.main-section .text-wrapper::-webkit-scrollbar-thumb,
.bio-text-wrapper::-webkit-scrollbar-thumb {
	border-radius: 4px;
	background-color: var(--accent);
	height: 30px;
	}


/* ----- [ Progress bar ] ------------- */
.t-basic-page .progress-bar,
.t-contact-page .progress-bar,
.t-people-page .progress-bar {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	height: 5px;
	width: 100%;
	z-index: 99999;
	}
.t-basic-page .progress-value,
.t-contact-page .progress-value,
.t-people-page .progress-value {
	animation: load 2s normal forwards; 
	background: var(--accent);
	height: 5px;
	width: 0;
	z-index: 9999;
	}
@keyframes load {
	0% {
		width: 0;
		opacity: 1;
	}
	98% {
		width: 100%;
		opacity: 1;
	}
	100% {
		width: 100%;
		opacity: 0;
	}
}

@media only screen and (min-width: 600px) {
	.main-section,
	.main-section .inner, 
	.main-section .image-wrapper,
	.main-section .text-wrapper {
		height: 100vh;
		}
		
	.main-section .text-wrapper {
		overflow: auto;
		padding: 0 30px 20px;
		margin: 145px 0 100px auto;
		height: calc(100vh - 245px);
		}
}


/* ----- [ Group home ] ---------- */
.home-group-overlay	{
	background: transparent;
	flex-direction: column;
	}
.group-home-hero-logo {
	max-width: 400px;
	margin: 0 auto 30px;
	}
.sub-sites {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center; 
	align-items: center;
	text-align: center;
	max-width: 260px;
	width: 100%;
	}
	
.sub-sites > div {
	text-align: center;
	margin: 30px 5px;
	flex: 1;
	}
.sub-sites > .divider {
	width: 2px;
	height: 50px;
	background: #fff;
	flex: 0;
	align-self: flex-start;
	}
.sub-sites h2 {
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 0.3em;
	white-space: nowrap;
	}
	
.hero-text {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 20px;
	border-top: 1px solid var(--accent);
	border-bottom: 1px solid var(--accent);
	background: rgba(0,0,0,0.5);
	}


/* ----- [ Home Page(s) ] -----------------*/
/* not used but still in place */
.hero-down-link {
	position: absolute;
	bottom: 130px;
	left: 0;
	height: auto;
	width: 100%;
	text-align: center;
	display: none;
	}
.se-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto;
	padding: 10px;
	margin: 0 auto;
	border: 1px solid var(--accent);
	border-radius: 50%;
	background: rgba(0,0,0,0.5);
	}
.se-icon a {
	fill: #fff;
	text-decoration: none;
	border: none;
	}

.home-intro p {
	font-size: 1.2rem;
	}

.home-intro-meta {
	padding: 8px 0;
	}
.home-intro-meta h3 {
	margin: 0 0 0.2em;
	}
	
.motto-section {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 20px;
	border-top: 1px solid var(--accent);
	border-bottom: 1px solid var(--accent);
	background: rgba(255,255,255,0.1);
	background: rgba(0,0,0,0.5);
	}

@media only screen and (min-width: 600px) {
	.home-hero {
		height: 100vh;
		}
	.home-intro-meta {
		padding: 8px 0 0 2.5vw;
		}
}
@media only screen and (min-width: 1020px) {
	.hero {
		border-top: var(--hero-border2); /* header height */
		}
}

/* ----- [ Fixed home pages, no footer ] ------ */
body.no-scroll,
body.home,
body.homes,
body.projects {
	height: 100vh;
	overflow: hidden;
	}

/* ----- [ People Page ] -----------------*/
.bio-wrapper {
	position: relative;
	overflow: hidden;
	}
	
.bio-wrapper .image-wrapper {
	height: 40vh;
	}
	
.bio-wrapper .image-fit {
	object-position: 55%;
	border-right: 1px solid var(--accent);
	}
	
.bio-title {
	color: #fff;
	transition: 0.3s;
	background: rgba(0,0,0,0.5);
	padding: 20px;
	}
.bio-title.is-open {
	right: 3vw;
	}
.bio-text-wrapper {
	padding-right: 1em;
	overflow: hidden;
	opacity: 0;
	max-height: 0;
	visibility: hidden;
	transition: all 0.4s ease;
	}

.bio-title .read-more,
.bio-title.is-open .close {
	display: inline-block;
	}
.bio-title.is-open .read-more,
.bio-title .close {
	display: none;
	}
	
.bio-title.is-open > .bio-text-wrapper {
	opacity: 1;
	max-height: 1000px;
	max-width: 1000px;
	visibility: visible;
	overflow: auto;
	margin-bottom: 20px;
	}

@media only screen and (min-width: 600px) {
	.bio-wrapper .image-wrapper {
		height: 100vh;
		height: calc(100vh - 82px);
		margin-top: 82px;
		}
	.bio-title {
		color: #fff;
		position: absolute;
		top: auto;
		bottom: 120px;
		left: 3vw;
		right: 3vw;
		transition: 0.3s;
		/*opacity: 0;
		visibility: hidden;*/
		min-width: 20em;
		background: rgba(0,0,0,0.5);
		padding: 30px;
		}
		
	.bio-title.is-open > .bio-text-wrapper {
		opacity: 1;
		max-height: 55vh;
		max-height: calc(100vh - 480px);
		max-width: 1000px;
		visibility: visible;
		overflow: auto;
		margin-bottom: 20px;
		}
}
@media only screen and (min-width: 1020px) {
	.bio-wrapper .image-wrapper {
		height: 100vh;
		height: calc(100vh - 120px);
		margin-top: 120px;
		}
}




/* ----- [ Projects Pages ] ---------- */
.project-section {
	height: auto;
	overflow: hidden;
    padding: 0;
    background: url(../images/bg-pattern-sm.jpg) 50% 50% no-repeat;
    background-size: cover;
	}
.project-section h1 {
	color: var(--accent);
	font-size: 3.5rem;
	text-transform: uppercase;
	line-height: 1;
	text-align: left;
	}
.project-section .text-wrapper {
	margin: 0 auto;
	}
.projects-section h1 {
	color: var(--accent);
	font-size: 3.5rem;
	text-transform: uppercase;
	line-height: 1;
	text-align: left;
	}
.projects-section .text-wrapper {
	margin: 0 auto;
	}
.project-slider {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	}
	
.project-slider2 {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 100%;
	}

.slick-slide {
	margin: 0 30px;
	position: relative;
	}
.slick-slide img {
	padding: 20px;
	border: 1px solid var(--accent);
	width: 100%;
	}
.project-caption {
	text-align: center;
	margin: 10px auto;
	}
	
.fsm-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	max-width: 100%;
	height: 100%;
	-webkit-transition:  .6s ease;
    -moz-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
	}
	
.fsm-inner.is-hidden {
	opacity: 0;
	visibility: hidden;
	}
	
.fsm-container {
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: auto;
	box-sizing: border-box;
	overflow-x: scroll;
	overflow-y: hidden;
	padding-top: 100px;
	padding-bottom: 180px;
	cursor: grab;
	}

.fsm {
	margin: 10vh 5vw;
	margin: 0 10px;
	height: 100px;
	flex: 1 0 auto;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	flex-direction: column;
	color: #f5f5f5;
	font-size: 1.5rem;
	transition: 1s ease;
	cursor: pointer;
	background-size: cover;
	background-position: center;
	height: auto;
	width: 500px;
	position: relative;
	padding: 20px;
	margin: 0 30px;
	border: 1px solid var(--accent);
    -webkit-transition:  .8s ease;
    -moz-transition: all .8s ease;
    -o-transition: all .8s ease;
    transition: all .8s ease;
	}
.fsm img {
	width: 100%;
	padding: 0;
    -webkit-transition:  .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
	}
.fsm.full-screen img,
.fsm.growing img,
.fsm.shrinking img {
	/*transform: scale(1.03);*/
	object-fit: cover;
	min-height: 100%;
	min-width: 100%;
	}

.fsm.full-screen {
	padding: 0;
	border: none;
	}

.project-1 {
	margin-left: 20%;
	}
.empty-fsm {
	width: 20%;
	height: auto;
	flex: 1 0 auto;
	}

.fsm.full-screen {
	height: 100vh;
	z-index: 100;
	margin: 0;
	border-radius: 0;
	}

.text-content {
	color: #fff;
	display: none;
	margin: 50px;
	transition: 0.3s;
	}
.caption-content {
	color: #fff;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	transition: 0.3s;
	}
.fsm h4 {
	color: #fff;
	margin: 10px 0 0;
	}
.fsm p {
	color: #fff;
	margin: 5px 0;
	font-size: 0.95rem;
	}
.fsm .button {
	}
	
.growing .caption-content,
.full-screen .caption-content {
	color: #fff;
	position: absolute;
	top: auto;
	bottom: 50px;
	left: 30px;
	right: 30px;
	max-width: 28em;
	transition: 0.3s;
	opacity: 0;
	visibility: hidden;
	background: rgba(0,0,0,0.5);
	padding: 30px;
	}
	
.full-screen {
	cursor: default;
	}
.full-screen .caption-content {
	opacity: 1;
	visibility: visible;
	}
.full-screen p {
	font-size: 1.2rem;
	margin: 0 0 1em;
	}
.full-screen .button {
	visibility: visible;
	}
	
.shrinking .caption-content {
	opacity: 0;
	visibility: hidden;
	}

@media only screen and (min-width: 600px) {
	.project-section .text-wrapper {
		overflow: auto;
		padding: 0 30px 20px;
		margin: 50px 0 100px auto;
		height: auto;
		}

	.growing .caption-content,
	.full-screen .caption-content {
		bottom: 100px;
		left: 100px;
		right: auto;
		}
}

.fsm-container::-webkit-scrollbar::vertical {
	display: none;
	}
.fsm-container::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 4px;
	height: 4px;
	}
.fsm-container::-webkit-scrollbar-track {
	box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.6);
	border-radius: 10px;
	}
.fsm-container::-webkit-scrollbar-thumb {
	border-radius: 4px;
	background-color: var(--accent);
	height: 4px;
	}

/* ----- [ Projects Gallery ] ------- */
.gallery-wrapper {
	margin: 50px auto;
	}

.gallery-link {
	position: relative;
	display: block;
	text-decoration: none;
	border: none;
	margin: 0 0 20px;
	overflow: hidden;
	}
.gallery-link:hover {
	border: none;
	text-decoration: none;
	}
	
.gallery-link img {
	width: 100%;
    -webkit-transition: .2s all ease-out;
    -o-transition: .2s all ease-out;
    transition: .2s all ease-out;
	}
.gallery-link:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
	transform: scale(1.1);
	}
	
.gallery-link:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgba(0,0,0,0.2);
	opacity: 0;
    -webkit-transition: .2s opacity ease-out;
    -o-transition: .2s opacity ease-out;
    transition: .2s opacity ease-out;
	}
.slick-slide .gallery-link:after {
	right: 15px;
	}

.gallery-link:hover:after {
	opacity: 1;
	}
	
.gallery-icon {
    font-size: 20px;
    position: absolute;
    top: 25px;
    right: 0;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    color: #fff;
    z-index: 999;
    margin-top: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .2s all ease-out;
    -o-transition: .2s all ease-out;
    transition: .2s all ease-out;
	}

.pb_hover-zoom:hover {
    outline: none
	}

.gallery-link:hover .gallery-icon {
    margin-top: 0;
    opacity: 1;
    visibility: visible
	}

@media only screen and (min-width: 600px) {
	.gallery-wrapper {
		margin: 50px 50px 50px 0;
		}
}

/* magnific */
.mfp-container button,
.mfp-container button:hover {
	background: none;
	}
img.mfp-img {
	padding: 30px;
    border: 1px solid var(--accent);
	background: #000;
	max-height: 540px!important;
	}
.mfp-bottom-bar  {
	margin-top: 5px;
	}
.mfp-image-holder .mfp-close {
	margin: -35px -20px 0 0;
	}
.mfp-image-holder .mfp-content {
	padding: 30px;
	}

.mfp-content {
	max-height: 600px;
	}

/* ----- [ Contact Page ] --------------- */
.contact-content {
	background: url('../images/bg-pattern-sm.jpg') 50% 50% no-repeat;
	background-size: cover;
	padding: 0;
	}

.form-wrapper {
	width: 100%;
	padding: 0;
	margin: 120px auto 60px;
	}
	
@media only screen and (min-width: 600px) { 
	.form-wrapper {
		padding: 20px;
		}
	
	.form-bg {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 50%;
		bottom: 0;
		background: var(--grey1);
		z-index: 0;
		}
}

/* ----- [ Contact form ]----------------------- */
input,
select,
textarea {
    font-size: 1.2rem;
    width: 100%;
    padding: 10px;
    margin: 0 0 27px;
	color: #333;
	background: #fff;
    webkit-appearance: none;
    border: 1px solid #ccc;
    border-radius: 0;
    }

input:focus, 
textarea:focus {
	background: #fff;
	}

input[type=submit],
input.button {
    -webkit-appearance: none;
	}
input[type="checkbox"] {
	width: auto !important;
	float: left;
	margin-top: 4px;
	}

.InputfieldForm {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: stretch;
	}
.InputfieldFieldset {
	flex: 1;
	}

.InputfieldFieldset > label {
	display: none;
	}
	
.form__item--c_contact_consent,
.form__item--c_terms_consent {
	line-height: 1.1em;
	margin-bottom: 1em;
	}

.form__item label {
	font-weight: 400;
	margin: 0 0 10px;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	}

.field__header--hidden,
.form__item--scf-website {
	display: none;
	}
.field--error--message {
	/*float: right;*/
	color: #f36617;
	font-weight: 400;
	font-size: 0.8em;
	margin: 0;
	display: none;
	}
	
.form__item--c_terms_consent .field--error--message {
	float: none;
	}
	
.form--error--message,
.form--success--message {
	text-align: center;
	font-size: 1.2rem;
	font-weight: 400;
	padding: 20px;
	flex: auto;
	border: 2px solid #f00;
	border-radius: 0;
	width: 100%;
	}
	
.form--success--message {
	font-size: 1.2em;
	color: #222;
	border: 2px solid #222;
	background: #fff;
	}

.FieldtypeCheckbox {
	margin-right: 0.5em;
	}

#wrap_InputfieldSubmit span {
	display: none;
	}
	
.form__item--label {
	/* display: none; */
	display: inline-block;
	padding: 15px 0 10px;
	font-weight: 300;
	}
	
.field--required label:after {
	content:"*";
	margin-left: 2px;
	color: #333;
	}
.field--required.field--error label:after {
	color: #f00;
	}
.field--required.field--error input,
.field--required.field--error select,
.field--required.field--error textarea {
	border-color: #f00;
	border: 1px solid #f00 !important;
	}

li label span {
	display: none;
	}
	
.form__item--submit {
	text-align: center;
	}

.form__item--submit button {
	margin-top: 27px;
	}

.form__item--c_email {
	flex-grow: 1;
	position: relative;
	}

/* SCF Checkbox */
/* radios & checkboxes */
/* hide the real checkbox; must be wrapped in the label to work 
 * make sure there's a pw-no-select; if not, check the javascript replacement */
.FieldtypeCheckbox {
	position: absolute;
	top:0;
	left:0;
	height:0;
	width:0;
	opacity: 0;
	}

/* must target specific field */
.form__item--c_terms_consent {
	position: relative;
	padding-left: 2.2em;
	}

.pw-no-select::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: -1px;
	left: 0;
	height: 18px;
	width: 18px;
	border: 1px solid #ccc;
	background: #fff;
	margin: 0;
	}
	
.field--required.field--error .pw-no-select::before {
	border-color: #f00;
	}
	
.pw-no-select::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 3px;
	left: 3px;
	height: 5px;
	width: 11px;
	border-left: 3px solid #000;
	border-bottom: 3px solid  #000;
	transform: rotate(-45deg);
	margin: 0 !important;
	}

input:hover + .pw-no-select::before {
	border-color: #000;
	/*background-color: #eee;*/
	}
input[type="checkbox"] + .pw-no-select::after,
input[type="radio"] + .pw-no-select::after {
	content: none;
	}
input[type="checkbox"]:checked + .pw-no-select::after,
input[type="radio"]:checked + .pw-no-select::after {
	content: "";
	}
	
@media only screen and (min-width: 600px) { 
	.InputfieldForm {
		flex-direction: row;
		}
	.InputfieldFieldset {
		padding: 30px;
		}
	.form-wrapper {
		margin: 0;
		}
	.form--error--message,
	.form--success--message {
		margin: -10px 30px 20px;
		width: calc(100% - 30px);
		}		
}

/* ----- [ Buttons ] --------------------------- */
button,
.button {
	font-family: eurostile,sans-serif;
	display: inline-block;
	padding: 10px 20px;
	color: #fff;
	background: var(--accent); 
	width: 100%;
	opacity: 1;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: center;
	margin-bottom: 10px;
	border: none;
	cursor: pointer;
	}
button:hover,
.button:hover {
	color: #fff;
	background: var(--accent);
	filter: brightness(110%);
	text-decoration: none;
	border: none;
	}
	
.button-rev {
	border: 1px solid var(--accent);
	background: transparent;
	}
.button-rev:hover {
	border: 1px solid var(--accent);
	}
	
.text-button {
	background: none;
	color: var(--accent);
	text-decoration: underline;
	}
	
@media only screen and (min-width: 600px) { 
	button,
	.button {
		width: auto;
		}
}

/* ----- [ Prefooter ] ---------------------------- */
.pre-footer {
	padding: 20px;
	border-top: 1px solid var(--accent);
	background: var(--grey1);
	}
.motto {
	color: var(--accent);
	font-size: 1.8rem;
	font-weight: 400;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0;
	}
.motto span {
	color: #fff;
	display: inline-block;
	}

@media only screen and (min-width: 600px) {
	.pre-footer {
		margin-top: -75px;
		}
}

/* ----- [ Footer ] ---------------------------- */
.page-footer {
	color: #fff;
	background: var(--grey1);
	border-top: 1px solid var(--accent);
	padding: 0;
	}
	
.page-footer .inner {
	padding: 50px 30px 10px;
	}

.page-footer p,
.page-footer li {
	color: #fff;
	/*font-size: 0.9em;*/
	line-height: 1.6em;
	font-weight: 300;
	margin: 0;
	text-align: left;
	}
.page-footer li {
	margin: 0;
	}
	
.page-footer strong {
	font-weight: 400;
	color: var(--accent);
	}

.page-footer a {
	color: #fff;
	border: 1px solid transparent;
	}
.page-footer a:hover,
.page-footer a.on {
	color: #000;
	color: #fff;
	}

p.copyright-credits {
	margin: 3em 0 0;
	font-size: 0.8rem;
	color: #aaa;
	}

@media only screen and (max-width: 769px) {
	.footer-col {
		width: 100%;
		}
	.footer-col:nth-of-type(2) { order: 1; }
	.footer-col:nth-of-type(5) { order: 2; }
	.footer-col:nth-of-type(4) { order: 3; }
	.footer-col:nth-of-type(6) { order: 3; }
}

@media only screen and (min-width: 770px) { 
	.footer-col:nth-of-type(3n),
	.footer-col:nth-of-type(3n) p,
	.footer-col:nth-of-type(3n) li {
		text-align: right;
		}
	.footer-col:nth-of-type(3n+2),
	.footer-col:nth-of-type(3n+2) p,
	.footer-col:nth-of-type(3n+2) li {
		text-align: center;
		}
}
	
/* ----- [ SVG Social Media Icons ] --------------- */
.social-icons {
	margin: 10px 0;
	}
.social-icons .social-icon {
    color: #333;
    display: inline-block;
    margin: 0 10px 0 0;
	}

.social-icons .social-icon a {
    color: #fff;
    color: #333;
    color: #aaa;
    opacity: 1;
    border: none;
	}

.social-icons .social-icon a:hover,
.social-icons .social-icon a:active {
    color: #77d8d8;
    color: #fff;
    opacity: 1;
    border: none;
	}

.social-icons .social-icon svg {
	height: 20px;
	width: 20px;
    fill: currentColor;
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
	}

.social-networks a:hover {
	opacity: 1;
	}

.top-link {
    position: fixed;
    bottom: 10px;
    right: 4%;
    opacity: 0;
    -webkit-transition:  .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 9;
    /*display: none;*/
	}
.top-link a {
	color: #fff;
	font-size: 60px;
	line-height: 28px;
    display: block;
    height: 40px;
    width: 40px;
    outline: medium none;
    position: relative;
    z-index: 0;
    text-align: center;
	text-decoration: none;
	border: none;
	border-radius: 50%;
	background-color: var(--accent);
    }
.top-link svg {
	width: 100%;
	height: 100%;
	margin-top: -1px;
	}
.top-link a:hover {
	color: #272441;
	background-color: var(--accent);
	filter: brightness(110%);
	border: none;
	}

/* ----- [ CMS Content ] ------------------------*/
.cms-text p > img {
	max-width: 100%;
	display: block;
	}

.cms-text ul,
.cms-text ol {
	margin: 0 0 1em;
	}
.cms-text li {
	list-style-type: disc;
	list-style-position: outside;
	margin: 0 0 0.5em 1.5em;
	}
.cms-text ol li {
	list-style-type: decimal;
	list-style-position: outside;
	margin: 0 0 0.5em 1.5em;
	}

.cms-text hr {
	border: none;
	height: 2px;
	background: var(--accent);
	margin: 50px 0;
	}
	
/* ----- [ Misc. / Utility Styles ] ------------ */
img.right {
	float: right;
	}
img.inline {
	display: inline !important;
	}

.text-left,
.text-left p,
.text-left li,
.text-left h2,
.text-left h3 {
	text-align: left;
	}
.text-right,
.text-right p,
.text-right li {
	text-align: right;
	}
.text-center {
	text-align: center;
	}

.uppercase {
	text-transform: uppercase !important;
	}
.lowercase {
	text-transform: none !important;
	}
	
.overflow-visible {
	overflow: visible !important;
	}
	
.fl-right {
	float: right;
	}

.align_left {
	float: left;
	margin: 0 2em 1.5em 0;
	}
.align_right {
	float: right;
	margin: 0 0 1.5em 2em;
	}
.align_center {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1em;
	}

@media only screen and (min-width: 920px) {
	.cms-text .align_left {
		margin-left: -100px;
		}
	.cms-text .align_right {
		margin-right: -100px;
		}
}

.clearfix:before,
.clearfix:after {
	content: "\0020";
	display: block;
	height: 0;
	overflow: hidden;
	}
.clearfix:after {
	clear: both;
	}
.clearfix { 
	zoom: 1;
	}

#editpage {
	position: fixed;
	bottom: 0;
	left: 0; 
	padding: 5px 6px; 
	background: #db1174; 
	color: #fff; 
	display: block;
	font-weight: bold; 
	z-index: 1000;
	}
#editpage:hover {
	background: #ffffcc;
	color: #000; 
	}
.WireFatalError {
	background: #a30000; 
	color: #fff; 
	padding: 1em; 
	position: relative;
	z-index: 9999;
	}

/* used? */
.sticky {
	position: sticky;
	top: 5px;
	}

/* check if mobile */
@media (pointer: coarse) {
	.bg-image-fixed {
	 	background-attachment: initial !important;
		}
}

@media only screen and (min-width: 600px) {
	.background-image-1 .module-full-text {
		margin: 0 auto 0 5vw;
		padding-right: 30px;
		}
}	
@media only screen and (min-width: 1020px) {
	.sticky {
		position: sticky;
		top: 100px;
		}
}


.bounce,
.se-icon {
  -moz-animation: bounce 6s infinite;
  -webkit-animation: bounce 6s infinite;
  animation: bounce 6s infinite;
}
@keyframes bounce {
  0%, 10%, 20%, 30%, 100% {
    transform: translateY(0);
  }
  15% {
    transform: translateY(-30px);
  }
  25% {
    transform: translateY(-15px);
  }
}

/* ----- [ Preloader ] --------------- */
.page-loader {
    background: #000;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 9998
	}

.loader {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    text-indent: -9999em;
    background-color: transparent;
    border: 3px solid #151515;
    border-radius: 50%
	}

.loader:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 44px;
    height: 44px;
    padding: 3px;
    border-width: 2px;
    border-style: solid;
    border-color: #10c9c3 transparent transparent;
    border-radius: 50%;
    box-sizing: border-box;
    -webkit-animation: ringrotate .8s infinite cubic-bezier(.5, .49, .49, .49);
    animation: ringrotate .8s infinite cubic-bezier(.5, .49, .49, .49)
	}

/*----------------------- Preloader -----------------------*/
.preloader-site {
    overflow: hidden;
}
.preloader-wrapper {
    height: 100%;
    width: 100%;
    background: #fff;
    background: var(--grey1);
    background-color: #000;
    /*background-image: url('/site/assets/files/1/baya-bg.1920x0.jpg');*/
    background-image: url('../images/baya-bg.jpg');
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: preload-animation 3s 0.2s ease-out forwards; animation-delay: 600ms;
    opacity: 1;
    visibility: visible;
	}
.preloader-wrapper:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	}
.pre-logo {
	max-width: 250px;
	margin-top: -180px;
	margin-bottom: 50px;
	animation: logo-animation 4s 0.2s ease-out forwards; animation-delay: 600ms;
	opacity: 0;
	}
	
@media only screen and (min-width: 400px) { 
	.pre-logo {
		max-width: 340px;
		}
}
@media only screen and (min-width: 600px) { 
	.pre-logo {
		max-width: 400px;
		}
}

@keyframes logo-animation {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@-webkit-keyframes logo-animation {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@keyframes preload-animation {
	0% { opacity: 1; }
	80% { opacity: 1; }
	100% { opacity: 0; visibility: hidden; }
}

@-webkit-keyframes preload-animation {
	0% { opacity: 1; }
	80% { opacity: 1; }
	100% { opacity: 0; visibility: hidden; }
}
