/********************************
	Developed by AXA Studios
	The Creative Engine
	http://www.axastudios.com
*********************************/

:root {
	--main-color: #131E37;
	--light-main-color: #404B64;
	--sub-color: #EF9A07;
	--dark-sub-color: #C87F00;
	--mid-sub-color: #F8AE2D;
	--light-sub-color: #f7cf88;
	
	--bg-color: #FFFFFF;	
	--light-bg-color: #f6f6f7;
	--input-bg-color: #ECEDEF;
	
	--text-color: #131E37;
	--light-text-color:#D5D5D5;

	--grey-color: #c9cbd0;
	--light-grey-color: #f7f7f7;
	--white-color: #FFFFFF;
	--light-white-color: rgba(255, 255, 255, 0.48);
	--border-color: #ebebeb;
	
	--red-color: #e93a3a;

	--sm-radius: 3px;
	--main-radius: 7px;
	
	--xxs-pad: 8px;
	--xs-pad: 8px;
	--sm-pad: 12px;
	--mid-pad: 16px;
	--main-pad: 24px;
	--med-pad: 32px;
	--lg-pad: 48px;
	--xl-pad: 72px;
	--xxl-pad: 96px;
	--lg-neg: -48px;
	--main-neg: -24px;
	--lg-font: 16px;
	--main-font: 14px;
	--sm-font: 12px;
	--input-font: 14px;
	--button-font: 16px;
	--sm-icon: 18px;
	--main-icon: 32px;
	--large-icon: 96px;
}

/* MAIN STYLES *****************************/


html {
	overflow-y: scroll;
	margin: 0;
	padding: 0;
	font-size: 16px;
}

body {
	padding: 0px;
	margin: 0px;
	background: var(--bg-color);
	font-family: 'Inter', Arial, Helvetica, sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.6;
	color: var(--text-color);
}

/* TEXT & LINK STYLES *****************************/

h1, h2, h3, h4, h5, h6 {
	font-family: "Inter", serif;
	margin-top: 0px;
}

h1 {
	font-size: 64px;
	font-weight: 700;
	line-height: 1.2;
/*	letter-spacing: 1px;*/
	margin-bottom: var(--main-pad);
}

h2 {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: var(--sm-pad);
}

h3 {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: var(--xs-pad);
}

h4 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: var(--xs-pad);
	line-height: 1.2;
}
h5 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: var(--xs-pad);
	line-height: 1.2;
}

h1 span, h2 span, h3 span, h4 span, h5 span{
	color: var(--sub-color);
}

.sub-title {
	display: block;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 12px;
	margin-bottom: var(--sm-pad);
}

.italic {
	font-style: italic;
}
.bold-txt {
	font-weight: 700;
}
p {
	margin-bottom: 24px;
}
.bold-txt{
	font-weight: 700;
	color: var(--white-color);
}
.lead{
	font-weight: 300;
	font-size: 18px;
	margin-bottom: 24px;
	line-height: 1.6;
}

h3+.lead {
	margin-top: 16px;
}

:focus {
	-moz-outline-style: none;
}
::selection {
	background-color: #333333;
	color: #fff;
}
::-moz-selection {
	background-color: #333333;
	color: #fff;
}

img {
	max-width: 100%;
}

input:focus, button:focus {
	outline: none;
}

a, a:visited {
	color: var(--text-color);
	border: none;
	outline: 0;
	text-decoration: none;
	-moz-outline-style: none;
	transition: color 0.2s ease;
}

a:hover, a:focus, a:active {
	text-decoration: none;
	color: inherit;
	color: var(--sub-color);
	transition: color 0.4s ease-out;
}

a img {
	border: none;
	outline: 0;
	-moz-outline-style: none;
}

.page p a {
	font-weight: 700;
	text-decoration: underline;
}
.btn.focus, .btn:focus {
	outline: 0;
	box-shadow: none;
}

input.button, .button, .button:visited, .btn, .btn:visited, .l-btn {
	display: inline-flex;
	position: relative;
	cursor: pointer;
	color: var(--white-color);
	font-size: var(--button-font);
	line-height: 24px;
	font-weight: 400;
	border-radius: 24px;
	border: none;
	outline: none;
	box-shadow: none;
	background: var(--sub-color);
	text-align: center;
	transition: all 0.2s ease;
	text-decoration: none;
}

a.button, .button {
	color: var(--white-color);
	padding: 12px 32px 12px 32px;
}
.button:disabled {
	opacity: 0.48;
	cursor: default;
	pointer-events: none;
}
.button:hover, .button:active, .button:focus {
	background: var(--dark-sub-color);
	box-shadow: none;
	transition: all 0.4s ease;
}
a.l-btn, .l-btn {
	background: transparent;
	color: var(--white-color);
	border: 1px solid var(--white-color);
	padding: 11px 32px 11px 32px;
}
.l-btn:hover, .l-btn:active, .l-btn:focus {
	background: var(--white-color);
	color: var(--sub-color);
	border: 1px solid var(--white-color);
	box-shadow: none;
	transition: all 0.4s ease;
}
.btn-icon.l-btn{
	padding:0px 16px 0px 32px;
	line-height: 46px;
}
.btn-icon.l-btn i{
	height: 46px;
}

.btn-icon.button{
	padding:0px 0px;
	font-weight: 700;
	line-height: 48px;
	background: transparent;
}
.dark-txt.button{
	color: var(--main-color);
}
.btn-icon span{
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	width: 48px;
	height: 48px;
	padding: 0px;
	margin-left: 16px;
	border-radius: 50%;
	background: var(--sub-color);
	transition: all 0.2s ease;
}
.btn-icon i{
	font-weight: 300;
	font-size: 20px;
	color: var(--white-color);
	transition: all 0.2s ease;
}
.btn-white.btn-icon span{
	background: var(--white-color);	
}
.btn-white.btn-icon i{
	color: var(--main-color);	
}
.btn-icon:hover span, .btn-icon:active span, .btn-icon:focus span {
	box-shadow: none;
	background: var(--dark-sub-color);
	transition: all 0.4s ease;
}
.btn-icon.button:hover i{
	margin-left: 6px;
	transition: all 0.4s ease;
}

.button.txt-btn{
	line-height: 24px;
	font-weight: 400;
	padding: 0;
	background: transparent;
	color: var(--sub-color);
	transition: all 0.2s ease;
}
button.txt-btn{
	font-size: var(--main-font);	
}
.button.txt-btn i{
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	width: 24px;
	height: 24px;
	margin: 0px 4px;
	font-weight: 300;
	transition: all 0.2s ease;
	font-size: var(--button-font);
}
.button.txt-btn:hover i{
	margin: 0px 0px 0px 8px;
	transition: all 0.4s ease;
}
.button.txt-btn:hover, .button.txt-btn:active, .button.txt-btn:focus{
	color: var(--dark-sub-color);
	transition: all 0.4s ease;
}
.txt-link, .txt-link:visited{
	position: relative;
	font-weight: 400;
	color: var(--sub-color);
}
.txt-link:hover, .txt-link:active, .txt-link:focus{
	position: relative;
	text-decoration: underline;
	color: var(--dark-sub-color);
}

.i-btn, .i-btn:visited{
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	width: 24px;
	height: 24px;
	font-weight: 300;
	transition: all 0.2s ease;
	font-size: 20px;
	color: var(--light-text-color);
}

/* FORM STYLES *****************************/

.form-wrap {
	position: relative;
	/*    margin-bottom: 72px;*/
}

.form-title{
	position: relative;
	display: block;
	margin-bottom: 32px;
}
.form-title h1,
.form-title h2,
.form-title h3{
	margin: 0;
}
.form-row-main {
	margin-left: -24px;
	margin-right: -24px;
}
.form-col-main {
	position: relative;
	display: block;
	width: 50%;
	float: left;
	padding: 0px 24px;
}
.form-wrapper .form-wrap {
	margin-bottom: 0px;
}
.form-cols {
	display: flex;
	margin-left: -12px;
	margin-right: -12px;
}
.form-col {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 50%;
	margin: 0px 12px;
}
.form-cols .form-col {
	display: flex;
	float: none;
}
.form-group {
	position: relative;
	display: block;
	/*    padding: 0px;*/
	margin-bottom: 24px;
	margin-bottom: 12px;
}
.form-group:not(.form-floating) .control-label {
	position: relative;
	display: block;
	font-weight: 400;
	margin-bottom: 8px;
}
.form-col h3 {
	padding: 0px 20px;
}
.form-control {
	height: 48px;
	padding: 12px 16px 12px 16px;
	line-height: 24px;
	padding: 14px 16px 14px 16px;
	line-height: 18px;
	font-size: var(--input-font);
	border: 1px solid var(--input-bg-color);
	border-radius: var(--sm-radius);
	color: var(--text-color);
	background: var(--input-bg-color);
	box-shadow: none;
	transition: border 0.2s ease;
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
	font-size: var(--input-font);
	padding: 14px 16px 14px 16px;
	line-height: 18px;
	height: 48px;
}
.form-control:focus {
	color: var(--text-color);
	border: 1px solid var(--input-bg-color);
	background: var(--input-bg-color);
	box-shadow: none;
	transition: border 0.4s ease;
}
.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown),
.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
	padding-top: 21px;
	padding-bottom: 7px;
}
.form-floating > label {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-weight: 400;
	color: var(--label-color);
	font-size: var(--input-font);
	line-height: 24px;
	padding: 12px 16px;
	overflow: hidden;
	text-align: start;
	text-overflow: ellipsis;
	white-space: nowrap;
	pointer-events: none;
	border: 1px solid transparent;
	transform-origin: 0 0;
	transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
	opacity: 1;
	transform: scale(0.8) translateY(-6px) translateX(4px);
}
textarea.form-control {
	min-height: 144px;
	max-height: 200px;
}

.form-btn-inline {
}

.form-col.form-col-md .selectric-wrapper {
	display: block;
	width: 100%;
}
.form-group .selectric {
	border: 0px;
	background: var(--input-bg-color);
	position: relative;
	border-radius: 0px;
	text-align: left;
}
.form-group .selectric .label {
	height: 48px;
	font-weight: 400;
	line-height: 24px;
	margin: 0px 48px 0 0px;
	padding: 12px 16px 12px 16px;
}
.form-group .selectric .button {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	right: 0;
	top: 0;
	width: 48px;
	height: 48px;
	min-width: initial;
	color: var(--grey-color);
	text-align: center;
	font-family: "Font Awesome 6 Pro";
	background: none !important;
	border: none !important;
	padding: 0px !important;
}
.form-group .selectric-items li {
	color: var(--text-color);
}
.form-group .selectric-items li:hover {
	background: var(--light-border-color);
	color: var(--text-color);
	font-weight: 500;
}
.form-group .selectric-items li.highlighted {
	color: var(--text-color);
	background: var(--light-grey-color);
}
.form-group .selectric-items li.selected {
	font-weight: 500;
}
.form-group .selectric-items {
	display: none;
	position: absolute;
	top: 100%;
	top: calc(100% - 1px);
	left: 0;
	overflow: hidden;
	background: var(--input-bg-color);
	border: none;
	z-index: 2;
	transform-origin: 0% 0%;
	transform: scaleY(0);
	transition: all 0.2s ease;
}
.selectric-scroll {
	scrollbar-color: rgba(0, 0, 0, 0.24) rgba(0, 0, 0, 0.08);
	scrollbar-width: thin;
}
.selectric-scroll::-webkit-scrollbar {
	width: 8px;
	border-radius: 4px;
	cursor: pointer;
}
.selectric-scroll::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.08);
	cursor: pointer;
	border-radius: 4px;
}
.selectric-scroll::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.24);
	border-radius: 4px;
	cursor: pointer;
	transition: background 300ms ease;
}
.selectric-scroll::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 0, 0, 0.32);
	cursor: pointer;
}

.form-group .selectric-open {
	z-index: 2;
}
.form-group .selectric-open.selectric-below .selectric,
.form-group .selectric-open.selectric-above .selectric {
	border-radius: 0px;
}
.form-group .selectric-open.selectric-below .selectric-items {
	border-radius: 0px;
	border: none;
	transform: scaleY(1);
	transition: all 0.3s ease-out;
}
.form-group .selectric-above .selectric-items {
	transform-origin: 50% 100%;
}
.form-group .selectric-open.selectric-above .selectric-items {
	border-radius: 0px;
	border: none;
	transform: scaleY(1);
	transition: all 0.3s ease-out;
}
.form-control::-webkit-input-placeholder {
	color: var(--text-color);
}
.form-control::-moz-placeholder {
	color: var(--text-color);
}
.form-control:-ms-input-placeholder {
	color: var(--text-color);
}
.form-control::placeholder {
	color: var(--text-color);
}

input:-internal-autofill-selected,
input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
input:-internal-autofill-selected {
	-webkit-appearance: none !important;
	-webkit-box-shadow: 0 0 0px 1000px var(--input-bg-color) inset !important;
	background-color: var(--input-bg-color) !important;
	background-image: none !important;
	color: var(--text-color) !important;
}

.form-group .error-text,
.select-box .error-text,
.checkbox .error-text,
.form-captcha .error-text,
.form-option-group .error-text,
.form-options .error-text {
/*
	position: absolute;
	top: auto !important;
	bottom: -20px;
*/
	display: block;
	font-weight: 400;
	min-height: 20px;
	line-height: 1.2;
	padding-top: 4px;
	color: var(--red-color) !important;
	font-size: 12px !important;
}
.form-floating .error-text{
	padding-left: 16px;
}

.grecaptcha-badge { 
    visibility: hidden;
}

/*
.checkbox .error-text {
	bottom: -16px;
}
*/

input[type="file"] {
	/*
	opacity: 0;
	width: 0.1px;
	height: 0.1px;
	position: absolute;
*/
}

.form-fileinput .error-text {
	font-weight: 400;
	color: var(--red-color) !important;
	font-size: 12px !important;
}

.box .inputfile {
	/*    width: 0.1px;*/
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.inputfile + label {
	display: flex;
	width: 100%;
	font-size: var(--input-font);
	font-weight: 400;
	text-overflow: ellipsis;
	white-space: nowrap;
	cursor: pointer;
	overflow: hidden;
	padding: 11px 16px;
	margin-bottom: 0px;
}
.inputfile + label span {
	display: inline-block;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	line-height: 24px;
	padding-right: 32px;
}
.no-js .inputfile + label {
	display: none;
}

.inputfile:focus + label,
.inputfile.has-focus + label {
}
.inputfile + label i {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	align-items: center;
	width: 48px;
	height: 48px;
	right: 0;
	top: 0;
	font-size: var(--icon-font);
	color: var(--text-color);
}
.inputfile-1 + label {
	border-radius: var(--sm-radius);
	color: var(--text-color);
	border: 1px solid var(--input-bg-color);
	background: var(--input-bg-color);
}
.inputfile-1:focus + label,
.inputfile-1.has-focus + label,
.inputfile-1 + label:hover {
	color: var(--text-color);
}
/*
.inputfile + label:hover svg {
	fill: var(--sub-color);
}
*/
.inputfile + label:hover i {
	color: var(--sub-color);
}
.inputfile-1 + label:hover {
	border: 1px solid var(--input-bg-color);
}

.form-btns {
	display: flex;
	justify-content: flex-end;
	text-align: left;
}



/* WRAPPER STYLES *****************************/

#outer-wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	/*	overflow: hidden;*/
}

.white-page{
	background: var(--white-color);	
	color: var(--main-color);	
}

#bg-wrapper {
	position: fixed;
	content: '';
	display: none;
	opacity: 0;
	width: 100%;
	height: 150%;
	z-index: 10;
	background: var(--bg-color);
}

.menu-open #bg-wrapper {
	display: block;
	opacity: 1;
	animation: opac-in-animate 0.4s ease-out forwards;
}

.menu-ani #bg-wrapper {
	display: block;
	opacity: 1;
	animation: opac-out-animate 0.3s ease-in forwards;
}

#main-wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
}

#content-wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	z-index: 2;
}

.page-wrap #content-wrapper {
	padding: 96px 0 0 0;
}
.banner-page #content-wrapper {
	padding: 0px 0 0 0;
}


/* HEADER *****************************/

#navbar {
	position: fixed;
	display: flex;
	flex-direction: row;
	top: 0px;
	left: 0px;
	width: 100%;
	padding: 8px 24px;
	background: transparent;
	transition: all 0.2s ease;
	z-index: 99;
}
#navbar.sticky {
	background: var(--light-bg-color);
	transition: all 0.3s ease-out;
}
.navbar-header {
	position: relative;
	display: inline-flex;
	flex-direction: row;
	width: 20%;
	z-index: 2;
}
.logo-main {
	position: relative;
	display: flex;
	align-self: flex-start;
	margin: 24px 24px;
	padding: 0px;
	opacity: 1;
	z-index: 2;
	transition: all 0.2s ease;
}
.logo-main:hover{
	opacity: 0.64;
	transition: all 0.4s ease;
}
.logo-main img {
	height: 32px;
	width: auto;
	vertical-align: top;
}
.logo-main span {
	position: relative;
	height: 32px;
}
.logo-main-light{
	display: flex;
}
.logo-main-dark{
	display: none;
}

.navbar-button{
	display: none;
}

.nav-toggle {
	position: relative;
	float: right;
	cursor: pointer;
	display: none;
	width: 24px;
	height: 24px;
	padding: 0px;
	margin: 16px 16px 16px 0px;
	background: none;
	border: none;
	overflow: hidden;
	cursor: pointer;
}
.nav-icon span, .menu-ani .nav-icon span {
	display: block;
	position: absolute;
	top: 11px;
	left: 3px;
	right: 3px;
	height: 2px;
	background: var(--white-color);
	transition: background 0s 0.2s;
}
.nav-icon span::before, 
.nav-icon span::after, 
.menu-ani .nav-icon span::before, 
.menu-ani .nav-icon span::after {
	content: '';
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--white-color);
	transition-duration: 0.2s, 0.2s;
	transition-delay: 0.2s, 0s;
}
.nav-icon span::before, 
.menu-ani .nav-icon span::before {
	top: -5px;
	transition-property: top, transform;
}
.nav-icon span::after, 
.menu-ani .nav-icon span::after {
	bottom: -5px;
	transition-property: bottom, transform;
}
.menu-open .nav-icon span {
	background: none;
}
.menu-open .nav-icon span::before {
	top: 0;
	width: 100%;
	transform: rotate(45deg);
}
.menu-open .nav-icon span::after {
	bottom: 0;
	width: 100%;
	transform: rotate(-45deg);
}
.menu-open .nav-icon span::before, .menu-open .nav-icon span::after {
	transition-delay: 0s, 0.2s;
}

/* NAV MAIN *****************************/

.nav-wrap {
	position: relative;
	display: flex;
	justify-content: center;
	width: 60%;
}

.menu-open .nav-wrap {
	display: flex;
	opacity: 1;
	pointer-events: auto;
	transition: all 0.4s ease-out;
	animation: opac-in-animate 0.4s ease-out forwards;
}
.menu-open.menu-ani .nav-wrap {
	animation: opac-out-animate 0.2s ease-out forwards;
}

#nav-main {
	position: relative;
	display: flex;
}
#nav-main ul {
	position: relative;
	display: flex;
	margin: 8px 0px;
	padding: 0px;
	list-style: none;
	text-align: left;
}

#nav-main ul li{
	position: relative;
	display: flex;
	padding: 12px 0px;
	margin: 0px 24px;
	text-align: center;
}

#nav-main ul li a{
	position: relative;
	display: flex;
	line-height: 20px;
	padding: 10px 0px;
	color: var(--white-color);
	font-weight: 400;
	font-size: var(--lg-font);
	transition: all 0.2s ease;
	cursor: pointer;
	text-decoration: none;
}
#nav-main ul li a:hover{
	color: var(--sub-color);	
	transition: all 0.4s ease-out;
}
.nav-mobile{
	display: none;
}

.nav-right {
	position: relative;
	display: flex;
	padding: 16px 24px 16px 0px;
	justify-content: flex-end;
	width: 20%;
}

/* STICKY HEADER STYLES *****************************/

.light-page #navbar.sticky-ani {
    top: 0px;
}

.light-page #navbar{
	background: var(--light-bg-color);	
}
.light-page #navbar,
#navbar.sticky {
	background: var(--light-bg-color);
	transition: all 0.3s ease-out;
}
.light-page #navbar #nav-main ul li a,
#navbar.sticky #nav-main ul li a{
	color: var(--main-color);	
}
.light-page #navbar #nav-main ul li a:hover,
#navbar.sticky #nav-main ul li a:hover{
	color: var(--sub-color);
}
.light-page #navbar .logo-main-light,
#navbar.sticky .logo-main-light{
	display: none;
}
.light-page #navbar .logo-main-dark,
#navbar.sticky .logo-main-dark{
	display: flex;
}
.light-page #navbar .btn-icon.button,
#navbar.sticky .btn-icon.button{
	color: var(--main-color);
}

/* CONTENT BANNER STYLES *****************************/

.content-banner-wrap {
	position: relative;
	display: block;
	padding: 176px 0px;
	z-index: 1;
}

.content-banner{
	position: relative;
	display: flex;
	flex-direction: row;
	margin-left: -48px;
	margin-right: -48px;
}

.banner-blk-txt, .banner-blk-img{
	position: relative;
	display: flex;
	width: 50%;
	padding: 0px var(--lg-pad);
	align-content: flex-start;
	align-self: center;
	flex-direction: column;
}
.banner-align-top .banner-blk-txt{
	align-self: flex-start;
}
.banner-blk-txt {
	width: 50%;
	padding: 0px var(--lg-pad);
}

.banner-blk-img {
	width: 50%;
	padding: 0;
	padding: 0px var(--xxl-pad);	
}
.banner-blk-full{
	width: 100%;
	padding: 0px var(--lg-pad);	
}
.banner-blk-txt.banner-txt-left {
	padding-right: 144px;
}

.banner-blk-txt.banner-txt-right {
	padding-left: 144px;
}
.banner-blk-center {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	width: 66%;
	padding: 0px var(--lg-pad);
	margin: 0 auto var(--lg-pad) auto;
}
.banner-blk-center .button{
	align-self: center;
	margin-top: var(--main-pad); 
}

.top-content-banner{
	padding-bottom: 0;
}
.top-content-banner .banner-blk-center{
	padding: 0px;
}
.top-content-banner .banner-blk-center p{
	font-size: var(--lg-font);
}

.content-banner-title {
	position: relative;
	display: block;
	margin-bottom: 24px;
}
.content-banner-title h1,
.content-banner-title h2,
.content-banner-title h3 {
	margin: 0;
}
.banner-blk-txt p + .content-banner-title {
	margin-top: 24px;
}

.content-banner-center {
	flex-direction: column;
}

.content-banner-center .content-banner-title {
	margin-bottom: 24px;
}

.banner-title-button {
	display: flex;
}
.banner-title-button h1,
.banner-title-button h2,
.banner-title-button h3 {
/*	display: inline-flex;*/
	margin: 0;
	line-height: 48px;
}
.banner-title-button .button{
	margin-left: auto;
}

/* PROJECT SLIDER STYLES *****************************/

#home-content-2,
#projecten-content{
	overflow: hidden;
}

#project-slider{
	overflow: initial;
	margin-top: 48px;
	padding-bottom: 48px;
}
#project-slider .swiper-wrapper{
	margin-bottom: 72px;
}

#project-slider .swiper-slide { 
	width: fit-content; 
}

.project-slide-block{
	position: relative;
	display: flex;
	box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.12);
}
.project-slide-image{
	position: relative;
	display: flex;
	width: 36%;
	width: 360px;
}
.project-slide-image img{
	width: 100%;
	height: auto;
}
.project-slide-content{
	position: relative;
	display: block;
	width: 0px;	
	height: 360px;
	padding: 0px;
	background: var(--white-color); 
	overflow: hidden;
	transition: width 0.2s ease;
}
.swiper-slide-active .project-slide-content{
	width: 64%;
/*	width: calc(100% - 320px);*/
	width: 720px;
	transition: width 0.4s ease-out;
	transition-delay: 0.2s;
}
.project-slide-text{
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 720px;
	height: 100%;
	padding: 64px;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.1s ease;
	transition-delay: 0s;
}
.project-slide-text h3{
	margin-bottom: 4px;
}
.project-subtext{
	position: relative;
	display: block;
	color: var(--light-text-color);
	margin-bottom: 12px;
}

.swiper-slide-active .project-slide-text{

	opacity: 1;
	transition: opacity 0.6s ease-out;
	transition-delay: 0.4s;
}
.swiper-bottom-bar{
	position: relative;
	display: flex;
}
.swiper-bottom-line{
	position: relative;
	display: flex;
	height: 56px;
	width: calc(100% - 172px);
}
.swiper-bottom-line .swiper-pagination-progressbar{
	top: 27px;
	height: 1px;
	background: var(--grey-color);
}
.swiper-bottom-line .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
	background: var(--sub-color);
	height: 5px;
	top: -2px;
/*	border-radius: 5px;*/
}
.swiper-navigation{
	position: relative;
	height: 56px;
	width: 144px;
	margin-left: auto;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
/*    top: calc(50% - var(--main-pad));*/
	top: 0;
    width: 56px;
    height: 56px;
    z-index: 10;
    cursor: pointer;
    margin:0;
	text-shadow: none;
    color: var(--white-color);
	background: var(--sub-color);
	border-radius: 50%;
}
.swiper-button-next:after, .swiper-button-prev:after {
	font-family: "Font Awesome 6 Pro";
	font-weight: 300;
    font-size:18px;
    text-transform: none!important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}
.swiper-button-prev:after{
    content: "\f053";
}
.swiper-button-next:after{
    content: "\f054";
}
.swiper-button-prev:hover,
.swiper-button-next:hover{
	background: var(--dark-sub-color);
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 8px;
    left: auto;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 8px;
    right: auto;
}

.swiper-pagination-bullets{
	bottom: 0;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
	bottom: 0;
}
.swiper-pagination-bullet{
	position: relative;
	width: 16px;
	height: 16px;
	margin: 0 4px;
	background: transparent; 
	border: 1px solid transparent;
	opacity: 1;
}
.swiper-pagination-bullet-active{
	background: transparent; 
	border: 1px solid var(--sub-color);
}
.swiper-pagination-bullet:after{
	content: '';
	display: block;
	position: absolute;
	top: 3px;
	left: 3px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--grey-color);
}
.swiper-pagination-bullet-active:after{
	background: var(--sub-color);	
}


/* CONTENT STYLES *****************************/

/*
.full-page #content-wrapper{
	padding-bottom: 0;
}
.full-page .content-banner-wrap{
	padding: 100px 0px;
}
*/

.page-banner-top{
	position: relative;
	display: flex;
	height: 60vh;
	height: 720px;
	background: var(--main-color);
}
.bmt-1{
	background: url(../images/hs-brandwering-banner-diensten.jpg) center center no-repeat var(--main-color);
	background-size: cover;
}
.bmt-2{
	background: url(../images/hs-brandwering-banner-vacature.jpg) center center no-repeat var(--main-color);
	background-size: cover;
}
.grey-banner{
	background: var(--light-bg-color);
}

.border-bar{
	position: relative;
	display: flex;	
}
.border-bar-full{
	width: 100%;
}
.border-bar-blk{
	position: relative;
	display: flex;
	width: 33.3333%;
	height: 24px;
	background: var(--sub-color);	 
}
.bb-1{
	background: var(--sub-color);
}
.bb-2{
	background: var(--mid-sub-color);
}
.bb-3{
	background: var(--light-sub-color);
}

#services-content{
	background: var(--main-color);	
	background: transparent linear-gradient(125deg, #404B64 0%, #131E37 100%);
	color: var(--white-color);
	padding: 176px 0 0 0;
}

.content-blocks-wrap{
	position: relative;
	display: flex;
	margin: 24px 0px 176px 0px;
	flex-wrap: wrap;
	border-radius: var(--sm-radius);
	overflow: hidden;
}

.content-block{
	position: relative;
	display: flex;
	padding:0 0;
	width: 33.3333%;
}
.content-block.content-block-lg{
	width: 66.6666%;
}
.content-block.content-block-md{
	width: 50%;
}
.content-block-main{
	position: relative;
	display: flex;
	flex-direction: column;
/*	justify-content: flex-end;*/
	width: 100%;
	padding: var(--lg-pad);
}
.content-block-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-bottom: var(--main-pad);
    font-size: 32px;
    color: var(--dark-sub-color);
}
.content-block-main p{
	color: var(--light-text-color);
}
.content-block-main .button.txt-btn{
	margin-top: auto;
}
.grey-blocks.content-blocks-wrap{
	margin-bottom: 0;
}
.grey-blocks .content-block-icon {
    color: var(--sub-color);	
}
.grey-blocks .content-block-main p{
	color: var(--text-color);
}

.cb-1{
	background: rgba(255, 255, 255, 0.14);
}
.cb-2{
	background: rgba(255, 255, 255, 0.12);
}
.cb-3{
	background: rgba(255, 255, 255, 0.10);
}
.cb-4{
	background: rgba(255, 255, 255, 0.08);
}
.cb-5{
	background: rgba(255, 255, 255, 0.06);
}

.cib-1{
	background: rgba(19, 30, 55, 0.08);
}
.cib-2{
	background: rgba(19, 30, 55, 0.06);
}
.cib-3{
	background: rgba(19, 30, 55, 0.04);
}

.content-logos {
	position: relative;
	display: flex;
	flex-wrap: wrap;
}

.content-logo-block {
	position: relative;
	display: flex;
	width: 25%;
	padding: 2px;
}
.logo-block {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 16px 32px;
	background: var(--light-bg-color);
	width: 100%;
}
.logo-block img {
	width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
}


.cards-wrapper{
	position: relative;
	display: flex;	
	justify-content: center;
	margin: var(--lg-pad) -12px; 
}
.card-column{
	position: relative;
	display: flex;
	flex-direction: column;
	width: 50%;
}
.cards-full .card-column{
	width: 70%;
}
.cards-full .card-column .button-full-center{
	margin-top: var(--lg-pad);
}

.card-column.col-margin {
	padding-top: var(--xl-pad);
}
.card-wrap{
	position: relative;
	display: flex;
	flex-direction:column;
	padding:0 var(--sm-pad);
	width: 50%;
	margin-bottom: var(--main-pad);	
}
.card-column .card-wrap{
	width: 100%;
}
.card-main{
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: var(--lg-pad);
	border-radius: var(--sm-radius);
	color: var(--main-color);
	overflow: hidden;
    background: var(--white-color);
	box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.12);
}
.border-card .card-main{
	border-radius: 0 0 var(--sm-radius) var(--sm-radius);
}
.card-icon{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
	font-size: 56px;
   	margin-bottom: var(--main-pad);
    color: var(--sub-color);	
}
.card-main p{
/*	color: var(--light-text-color);*/
	margin-bottom: var(--main-pad);
}
.card-main-text{
	position: relative;
	display: flex;
	flex-direction: column;
	margin-bottom: var(--main-pad);
}
.card-main-text .text-collapse{
	
}
.card-text-wrap{
	position: relative;
	display: flex;
	flex-direction: column;
/*
	display: -webkit-box;
	line-clamp: 3;
	-webkit-line-clamp: 3;	
	-webkit-box-orient: vertical;
*/
	overflow: hidden;
	max-height: 72px;
    transition: max-height 0.2s ease-out;
}

.text-open .card-text-wrap{
	max-height: 1200px;
    transition: max-height 0.5s ease-out;
	
}


.card-bottom{
	position: relative;
	display: flex;
	margin-top: var(--main-pad);
}
.card-main .txt-btn{
	align-self: flex-start;
}
.card-bottom-icons{
	position: relative;
	display: flex;
	padding: 12px 0px;
}
.card-chip{
	position: relative;
	display: flex;
	margin-right: 16px;
	line-height: 24px;
}
.card-chip i{
	display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 24px;
    height: 24px;
    font-weight: 300;
    font-size: 20px;
	margin-right: 8px;
	color: var(--sub-color);
}
.card-bottom-btns{
	position: relative;
	display: flex;
	justify-content: flex-end;
	margin-left: auto;
}
.card-bottom-btns .i-btn{
	margin-left: 16px;
}

/* HOME PAGE STYLES *****************************/

.banner-main-wrapper{
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;	
/*	margin-bottom: 240px;*/
	padding-bottom: 176px;
}

#banner-main {
	position: relative;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	height: 110vh;
	justify-content: center;
	background: var(--main-color);
	z-index: 1;
}

#banner-main-slider {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.bms-1{
	background: url(../images/hs-brandwering-mainbanner1.jpg) center top no-repeat var(--main-color);
	background-size: cover;		
}
.bms-2{
	background: url(../images/hs-brandwering-mainbanner2.jpg) center top no-repeat var(--main-color);
	background-size: cover;		
}
.bms-3{
	background: url(../images/hs-brandwering-mainbanner3.jpg) center top no-repeat var(--main-color);
	background-size: cover;		
}

#banner-main > .container{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	z-index: 1;
}
.banner-main-white-bg{
	position: absolute;
	display: block;
	width: 100%;
	height: 200px;
	left: 0;
	bottom: -120px;
/*	transform: rotate(-3deg) skew(-3deg) scale(1.1) translate(0px);*/
	transform: rotate(-3deg) skew(-3deg) scaleX(1.1) translate(0px);
	z-index: 0;
    background:var(--white-color);
}
.banner-text{
	position: relative;
	display: flex;
	flex-direction: column;
	color: var(--white-color);
	width: 72%;
}
.banner-header-title{
	position: relative;
	display: flex;
	flex-direction: column;	
	margin-bottom: var(--main-pad); 	
}
.banner-header-title h1{
	white-space: nowrap;
	margin: 0;
	text-shadow: 0px 12px 32px rgba(0, 0, 0, 0.4);
}
.banner-main-top{
	position: relative;
	display: flex;
	flex-direction: column;	
	margin-bottom: var(--lg-pad); 
}
.banner-main-top p{
	font-size: var(--lg-font);
	margin: 0px;
	padding-right: 24%;
	text-shadow: 0px 12px 32px rgba(0, 0, 0, 0.4);
}
.banner-buttons .button{
	margin-right: var(--main-pad); 
}

.button-full-center{
	position: relative;
	display: flex;
	justify-content: center;
}

.banner-main-blocks{
	position: relative;
	display: flex;
	margin-bottom: -120px;
	z-index: 2;
}
.banner-main-blocks .container{
	display: flex;
}
.banner-main-block{
	position: relative;
	display: flex;
	flex-direction: column;	
	padding: var(--lg-pad); 
	width: 33.3333%;
	background: var(--bg-color);
	box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.12);
	overflow: hidden;
}
.main-block-content{
	position: relative;
	display: flex;
	flex-direction: column;		
}
.main-block-icon{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 56px;
    height: 56px;
    margin-bottom: var(--main-pad);  
	font-size: 48px;
    color: var(--light-sub-color);
}
.main-block-content p{
	margin: 0;
}

.bm-1{
	border-top: 24px solid var(--sub-color);
	border-radius: var(--sm-radius) 0 0 var(--sm-radius);
}
.bm-2{
	border-top: 24px solid var(--mid-sub-color);
}
.bm-3{
	border-top: 24px solid var(--light-sub-color);
	border-radius: 0 var(--sm-radius) var(--sm-radius) 0;
}

#home-content-1{
	padding-bottom: 120px;
}

.home-wrap #services-content{
	padding: 176px 0 0 0;
	padding: 320px 0 0 0;
	overflow: hidden;
}
.home-wrap #services-content:before{
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 200px;
	left: 0;
	top: -120px;
	transform: rotate(-3deg) skew(-3deg) scaleX(1.1) translate(0px);
	z-index: 0;
    background: #FFF;
}


/* OTHER CONTENT STYLES *****************************/

#content-orange-banner{
	overflow: hidden;
	color: var(--white-color);
	margin: 176px 0;
}
.home-wrap #content-orange-banner{
	margin: 0;
}
#content-orange-banner .content-banner:after{
	content: '';
	position: absolute;
	display: block;
	width: 120%;
	height: 200%;
	left: -10%;
	top: -50%;
	background: url(../images/hs-brandwering-oranjebanner.jpg) right top no-repeat var(--sub-color);
	background-size: contain;	
	z-index: -1;
}
#content-orange-banner .banner-blk-txt {
	width: 72%;
}
#content-orange-banner h2{
	font-size: 64px;
}
#content-orange-banner h2 span{
	color: var(--main-color);
}
#content-orange-banner p{
	font-size: var(--lg-font); 
	padding-right: 32%;
}

.content-banner-wrap.top-margin{
	padding-top: 0;
	margin-top: -20%;	
}

#service-page{
	padding-top: 0;
}
#work-page{
	padding: 0;	
}
#service-page h1,
#work-page h1{	
	color: var(--white-color);	
}
#form-wrap .banner-blk-center,
#work-page .banner-blk-center{
	padding: 0;
	margin-bottom: 0;
}
#form-wrap{
	padding-bottom: 0;
}	
#form-wrap .banner-blk-center {
	width: 100%;
}


/* CONTACT *****************************/

.contact-info-list{
	display: flex;
	width: 100%;
	margin: 0 0 var(--lg-pad) 0;
	padding: 0 10%;
}
.contact-info-list div{
	display: flex;
	width: 25%;
	line-height: 24px;
}
.contact-info-list div i{
	display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 24px;
    height: 24px;
    font-size: 16px;
	margin-right: 12px;
    color: var(--sub-color);
}

.contact-inline{
	display: flex;
	justify-content: space-between;
}
.contact-inline-social{
	position: relative;
	display: flex;
	flex-direction: row;
	list-style: none;
	margin: 0;
	padding: 0;
}

.contact-inline-social li {
	display: flex;
	flex-direction: row;
	line-height: 24px;
	padding: 12px 0;
	margin: 0 16px 0 0;
}

.contact-inline-social li a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	padding: 0px 0px;
	width: 24px;
	height: 24px;
	line-height: 24px;
	font-size: 16px;
	text-decoration: none;
	color: var(--white-color);
	opacity: 1;
	transition: all 0.2s ease;
	cursor: pointer;
}
.contact-inline-social li a:hover{
	color: var(--sub-color);
	transition: all 0.4s ease;
}

.contact-map{
	position: relative;
	display: block;
	background: var(--white-color);
}
.contact-map:before {
	content: "";
	display: block;
	position: absolute;
	left: 0%;
	top: 0%;
	width: 100%;
	height: 25%;
	background: var(--white-color);
	background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 60%) no-repeat;
	z-index: 1;
}
.contact-map:after {
	content: "";
	display: block;
	position: absolute;
	left: 0%;
	bottom: 0%;
	width: 100%;
	height: 25%;
	background: var(--white-color);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 60%) no-repeat;
	z-index: 1;
}

#map-canvas {
	position: relative;
	width: 100%;
	height: 720px;
	z-index: 0;
	background: var(--white-color);
}


/* FOOTER *****************************/

#footer {
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--main-color);
	color: var(--white-color);
	margin-top: auto;
	z-index: 2;
}
#footer .container{
	display: flex;
}
.footer-content{
	position: relative;
	display: flex;
	padding: 80px 0 80px 0;
}
.footer-content-left{
	position: relative;
	display: flex;
	flex-direction: column;
	text-align: left;
	padding-right: var(--lg-pad);
	width: 31%;
}
.footer-logo{
	position: relative;
	display: flex;
	flex-direction: column;
	align-self: flex-start;
	margin-bottom: var(--med-pad);
	opacity: 1;
	transition: all 0.2s ease;
}
.footer-logo:hover{
	opacity: 0.64;
	transition: all 0.4s ease;
}
.footer-logo img{
	height: 32px;
	width: auto;
}
.footer-content-left .button{
	align-self: flex-start;
}
.footer-menu{
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 0 var(--main-pad);
	width: 23%;
}
.footer-menu-title{
	position: relative;
	display: block;
	margin-bottom: var(--sm-pad);
}
.footer-menu-title div{
	line-height: 24px;
	font-size: 18px;
	font-weight: 700;
	margin: 0;
}

.footer-menu-list{
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 0;
	list-style: none;
}
.footer-menu-list li{
/*	line-height: var(--main-pad);*/
	margin-bottom: var(--sm-pad);
	color: var(--light-text-color);
}
.footer-menu-list a{
/*	font-size: var(--sm-font);*/
/*	font-size: 20px;*/
	color: var(--light-text-color);
	font-weight: 400;
	transition: color ease 0.2s;
}
.footer-menu-list a:hover{
	color: var(--sub-color);
	transition: color ease-out 0.4s;
}

.footer-bottom {
	position: relative;
	display: flex;
	width: 100%;
	background: var(--light-main-color);
	background: rgba(255, 255, 255, 0.08);
	padding: 24px 0px;
}
.footer-copyright {
	position: relative;
	display: flex;
	text-align: left;
	width: 50%;
	line-height: 24px;
	font-weight: 400;
	color: var(--light-text-color);
}
.footer-social {
	position: relative;
	display: flex;
	text-align: right;
	justify-content: flex-end;
	width: 50%;
}

ul.nav-social {
	position: relative;
	display: flex;
	flex-direction: row;
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.nav-social li {
	display: flex;
	flex-direction: row;
	padding: 0;
	margin: 0 0 0 24px;
}

ul.nav-social li a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	padding: 0px 0px;
	width: 24px;
	height: 24px;
	line-height: 24px;
	font-size: 16px;
	text-decoration: none;
	color: var(--sub-color);
	opacity: 1;
	transition: all 0.2s ease;
	cursor: pointer;
}
ul.nav-social li a:hover{
	color: var(--dark-sub-color);
	transition: all 0.4s ease;
}

#footer.footer-empty .container{
	justify-content: center;
}
.footer-empty .footer-content-left{
	align-items: center;
	text-align: center;
}
.footer-empty .footer-logo,
.footer-empty .footer-content-left .button{
	align-self: center;
}

/* MODAL STYLES *****************************/

.modal-success {
	position: relative;
	display: none;
	justify-content: center;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	border-radius: var(--main-radius);
	flex-direction: column;
	text-align: center;
	background: var(--white-color);
	z-index: 9;
	opacity: 1;
}
.complete.modal-success {
	position: absolute;
	display: flex;
	padding: 0 48px;
	opacity: 1;
	animation: opac-in-animate 0.3s ease-out forwards;
}
.modal-success-block {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	text-align: center;
	padding: 48px 24px;
	z-index: 9;
}
.modal-success-icon {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	width: 120px;
	height: 120px;
	padding: 4%;
	line-height: 116px;
	border-radius: 50%;
	border: 2px solid var(--border-color);
	font-size: 60px;
	margin: 0 auto 48px auto;
}
.modal-success-icon img {
	display: none;
	margin: 0 auto;
}
.complete.modal-success .modal-success-icon img {
	display: flex;
}
.modal-success-block h3 {
}
.modal-success-block p {
/*	color: var(--grey-color);*/
	font-size: var(--lg-font);
	margin-bottom: 48px;
	padding: 0 5%;
}

.modal-success-button {
	display: flex;
	justify-content: center;
}

/* ANIMATIONS STYLES *****************************/

.banner-header{
	opacity: 0;
	animation: btm-in-animate 0.5s ease-out forwards;
	animation-delay: 0.3s;
}

.logo-block img {
	opacity: 0;
}
.animate .logo-block img {
	animation: zoom-out-animate 0.4s ease-out forwards;
}
.content-logos .content-logo-block:nth-child(2) .logo-block img{
	animation-delay: 0.1s;
}
.content-logos .content-logo-block:nth-child(3) .logo-block img{
	animation-delay: 0.2s;
}
.content-logos .content-logo-block:nth-child(4) .logo-block img{
	animation-delay: 0.3s;
}
.content-logos .content-logo-block:nth-child(5) .logo-block img{
	animation-delay: 0.4s;
}
.content-logos .content-logo-block:nth-child(6) .logo-block img{
	animation-delay: 0.5s;
}
.content-logos .content-logo-block:nth-child(7) .logo-block img{
	animation-delay: 0.6s;
}
.content-logos .content-logo-block:nth-child(8) .logo-block img{
	animation-delay: 0.7s;
}
.content-logos .content-logo-block:nth-child(9) .logo-block img{
	animation-delay: 0.8s;
}
.content-logos .content-logo-block:nth-child(10) .logo-block img{
	animation-delay: 0.9s;
}
.content-logos .content-logo-block:nth-child(11) .logo-block img{
	animation-delay: 1.0s;
}
.content-logos .content-logo-block:nth-child(12) .logo-block img{
	animation-delay: 1.1s;
}

#services-content .content-block,
#content-orange-banner .banner-blk-txt{
	opacity: 0;
}
#content-orange-banner.animate .banner-blk-txt{
	animation: btm-in-animate 0.5s ease-out forwards;
}

#services-content.animate .content-blocks-wrap .content-block{
	animation: btm-in-animate 0.5s ease-out forwards;
}
#services-content .content-blocks-wrap .content-block:nth-child(2){
	animation-delay: 0.1s;
}
#services-content .content-blocks-wrap .content-block:nth-child(3){
	animation-delay: 0.2s;
}
#services-content .content-blocks-wrap .content-block:nth-child(4){
	animation-delay: 0.3s;
}
#services-content .content-blocks-wrap .content-block:nth-child(5){
	animation-delay: 0.4s;
}


/* OTHER STYLES *****************************/

.clear {
	display: block;
	clear: both;
}

.no_border {
	border: none!important;
}

.mob-break {
	display: none;
}

.web-break {
	display: inline;
}

.show-mob {
	display: none!important;
}

.mob-btn{
	display: none;
}


/* ANIMATIONS *****************************/

@keyframes opac-in-animate {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes opac-out-animate {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes zoom-img-animate {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.1);
	}
}

@keyframes btn-animate {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
}


@keyframes nav-animate {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(0%);
	}
}

@keyframes left-in-animate {
	0% {
		transform: translateX(-50%);
		opacity: 0;
	}
	100% {
		transform: translateX(0%);
		opacity: 1;
	}
}

@keyframes left-double-in-animate {
	0% {
		transform: translateX(-200%);
		opacity: 0;
	}
	100% {
		transform: translateX(0%);
		opacity: 1;
	}
}

@keyframes right-in-animate {
	0% {
		transform: translateX(50%);
		opacity: 0;
	}
	100% {
		transform: translateX(0%);
		opacity: 1;
	}
}

@keyframes right-double-in-animate {
	0% {
		transform: translateX(200%);
		opacity: 0;
	}
	100% {
		transform: translateX(0%);
		opacity: 1;
	}
}

@keyframes top-in-animate {
	0% {
		transform: translateY(-50%);
		opacity: 0;
	}
	100% {
		transform: translateY(0%);
		opacity: 1;
	}
}

@keyframes btm-in-animate {
	0% {
		transform: translateY(10%);
		opacity: 0;
	}
	100% {
		transform: translateY(0%);
		opacity: 1;
	}
}


@keyframes btm-hover-animate {
	0% {
		transform: translateY(0%);
		opacity: 1;
	}
	100% {
		transform: translateY(-5%);
		opacity: 1;
	}
}


@keyframes zoom-out-animate {
	0% {
		transform: scale(0.1);
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes zoom-pop-animate {
	0% {
		transform: scale(0);
		opacity: 1;
	}
	90% {
		transform: scale(1.05);
		opacity: 1;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes button-hover-animate {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	80% {
		transform: scale(1.1);
		opacity: 1;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes top-fade-animate {
	0% {
		transform: translateY(-20%);
		opacity: 0;
	}
	100% {
		transform: translateY(0%);
		opacity: 1;
	}
}

@keyframes btm-fade-animate {
	0% {
		transform: translateY(15%);
		opacity: 0;
	}
	100% {
		transform: translateY(0%);
		opacity: 1;
	}
}

@keyframes zoomOut {
	from {
		opacity: 1;
	}
	50% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	to {
		opacity: 0;
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0) scale(0.5);
		transform: translate3d(0, 100%, 0) scale(0.5);
	}
	30% {
		opacity: 0;
	}
	100% {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0) scale(1);
		transform: translate3d(0, 0, 0) scale(1);
	}
}
/* RESPONSIVE STYLES *****************************/

.container {
	/*    max-width: 1560px;*/
	padding-right: 48px;
	padding-left: 48px;
}

.row {
	margin-right: -24px;
	margin-left: -24px;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
	/*
    position: relative;
    width: 100%;
    min-height: 1px;
*/
	padding-right: 48px;
	padding-left: 48px;
	padding-right: 24px;
	padding-left: 24px;
}

@media (min-width: 1200px) {
	#navbar.sticky-ani {
		position: fixed;
		top: -100px;
	}
	#navbar.sticky {
		position: fixed;
		top: 0;
		transition: 0.4s ease-out top;
		-webkit-transition: 0.4s ease-out top;
	}
}

@media (min-width: 1921px) {

	.container{
		max-width: 1536px;
        padding-right: 48px;
        padding-left: 48px;
	}
	
	.content-banner-wrap.top-margin{
		margin-top: -12%;
	}
	
}
@media (min-width: 1600px) {

	.container{
		max-width: 1382px;
        padding-right: 48px;
        padding-left: 48px;
	}
}

@media (min-width: 1200px) and (max-width: 1599px) {
	body {}
	h1 {
		font-size: 40px;
	}
	h2 {
		font-size: 32px;
	}
	h3 {
		font-size: 24px;
	}
	.container {
		max-width: 1320px;
		padding-right: 48px;
		padding-left: 48px;
	}
	#nav-main ul li{
		margin: 0px 16px;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	body {
		font-size: 14px;
	}
	.container {
		max-width: 100%;
		padding-left: 24px;
		padding-right: 24px;
	}
	h1 {
		font-size: 40px;
	}
	h2 {
		font-size: 28px;
	}
	h3 {
		font-size: 18px;
	}
	#content-wrapper{
		
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	
	:root {
		--sm-font: 12px;
		--lg-font: 14px;
		--input-font: 14px;
		--button-font: 14px;
	}
	
	.container {
		max-width: 100%;
/*
		padding-left: 24px;
		padding-right: 24px;
*/
	}
	body {
		font-size: 14px;
	}
	h1{
		font-size: 40px;
	}
	h2 {
		font-size: 32px;
	}
	h3 {
		font-size: 20px;
	}
	
	#navbar{
		flex-direction: row;
	}
	.navbar-header{
		width: 100%;
		padding: 0px 0;
		z-index: 3;
	}
	.nav-toggle{
		margin: 24px 16px 24px 16px;
	}
	.nav-wrap{
		padding: 72px 40px 120px 48px;
		padding: 72px 0px 0px 0px;
	}
	#nav-main{
		padding: 0 40px 0 48px;
	}
	.nav-mobile{
		position: relative;
		display: flex;
		flex-direction: row;
		width: 100%;
		background: var(--light-main-color);
		padding: 24px 48px 32px 48px;
		margin-top: auto;
	}
	
	.page-banner-top{
		height: 480px;
	}
	.content-banner-wrap.top-margin{
		margin-top: -30%;
	}
	
	#content-orange-banner h2{
		font-size: 48px;
	}
	
	.card-main,
	.content-block-main,
	.banner-main-block{
		padding: 40px;
	}
	.banner-blk-center{
		width: 80%;
	}	
	
	#home-content-2 .banner-blk-txt,
	#projecten-content .banner-blk-txt{
		width: 70%;
	}
	
	.project-slide-image{
		width: 280px;
		width: 36%;
	}
	.project-slide-image img{
		object-fit: cover;
		
	}
	
	.project-slide-content{
		height: 320px;
		width: 64%;
	}
	.swiper-slide-active .project-slide-content{
		width: 440px;
		width: 64%;
	}
	.project-slide-text{
		width: 720px;
		width: 440px;
		padding: 32px;
	}
	.project-slide-text h3{
		font-size: 18px;
	}
	.project-slide-text p{
		font-size: 12px;
		margin-bottom: 16px;
	}
	.project-slide-text .button.txt-btn{
		font-size: 12px;
	}
	.project-slide-text .button.txt-btn i{
		font-size: 14px;
	}
	
	.card-column{
		width: 100%;
	}	
	.cards-full .card-column {
		width: 90%;
	}
	.card-icon{
		font-size: 48px;
	}
	.contact-info-list{
		padding: 0;
		flex-wrap: wrap;
	}
	.contact-info-list div{
		width: 50%;
		justify-content: center;
    	margin-bottom: 8px;
	}
	
	.footer-menu-title div{
		font-size: 16px;
	}
	.footer-menu-list{
		font-size: 12px;
	}
	
}

@media (max-width: 767px) {
	:root {
		--xs-pad: 8px;
		--sm-pad: 16px;
		--main-pad: 24px;
		--med-pad: 32px;
		--lg-pad: 48px;
		--xl-pad: 72px;
		--xxl-pad: 96px;
		--lg-neg: -48px;
		--main-neg: -24px;
		--main-font: 14px;
		--sm-font: 12px;
		--lg-font: 14px;
		--input-font: 14px;
		--button-font: 14px;
		--sm-icon: 18px;
		--main-icon: 32px;
		--large-icon: 96px;
	}
	.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
		padding-right: 16px;
		padding-left: 16px;
	}
	body {
		font-size: 12px;
	}
	.container {
		padding-right: 16px;
		padding-left: 16px;
	}
	.row {
		margin-right: -16px;
		margin-left: -16px;
	}
	h1 {
		font-size: 32px;
	}
	h2 {
		font-size: 20px;
		line-height: 1.4;
	}
	h3 {
		font-size: 16px;
		letter-spacing: 0;
		line-height: 1.4;
	}
	h4 {
		font-size: 14px;
		line-height: 1.4;
	}
	h5 {
		font-size: 14px;
		line-height: 1.4;
	}
	p {
		margin-bottom: 24px;
	}
	.large-quote{
		font-size: 24px;
	}
	
	.mob-break {
		display: inline;
	}
	.web-break {
		display: none;
	}
	.hide-mob {
		display: none;
	}
	.show-mob {
		display: inline-block!important;
	}
	.button, .l-btn{
		font-size: 14px;
	}
	.btn-icon.button{
		line-height: 32px;
	}
	.btn-icon span{
		width: 32px;
    	height: 32px;
	}
	.btn-icon i{
		font-size: 16px;
	}
	.button.txt-btn{
		font-size: 12px;
	}
	.form-cols{
		flex-direction: column;
		margin: 0;
	}
	.form-col{
		width: 100%;
		margin: 0;
		margin-bottom: 12px;
	}

	#navbar{
		flex-direction: row;
		height: 56px;
		width: 100%;
	}
	.navbar-header{
		width: 100%;
		padding: 0px 0;
		z-index: 3;
	}
	.nav-wrap {
		padding: 72px 24px 120px 24px;
		padding: 72px 0px 0px 0px;
	}
	#nav-main{
		padding: 0 24px;
	}
	.nav-mobile{
		position: relative;
		display: flex;
		flex-direction: column;
		width: 100%;
		background: var(--light-main-color);
		padding: 24px 0px 32px 0px;
		margin-top: auto;
	}
	
	.logo-main{
		margin: 16px 0px;
		justify-content: center;
		width: 100%;
		padding-right: 40px;
	}
	.logo-main span{
		height: 24px;
	}
	.logo-main img{
		height: 24px;
		width: auto;
	}
	#outer-wrapper{
		display: flex;
		flex-direction: column;
		min-height: 100vh;
	}
	
	#main-wrapper{
		padding: 0;
		padding-top: 56px;
	}
	.home-wrap #main-wrapper,
	.banner-page #main-wrapper{
		padding: 0;
	}

	#content-wrapper{
		padding: 0px 0px;
	}
	.page-wrap #content-wrapper {
		padding: 0;
		padding-top: 24px;
		min-height: initial;
	}
	.banner-page #content-wrapper {
		padding-top: 0px;
	}
	
	.banner-main-wrapper{
		padding-bottom: 96px;
	}
	#banner-main{
		height: 100vh;
		height: initial;
		justify-content: flex-start;
		background:var(--white-color);
	}
	#banner-main-slider{
		height: 90vh; 
/*		height: 100%;*/
	}
	#banner-main > .container{
		height: 90vh;
	}
	.banner-main-white-bg{
		bottom: initial;
		top: 90vh;
	}
	
	.banner-text {
		flex-direction: column;
		width: 100%;
		text-align: left;
		padding: 0;
	}
	.banner-header-title h1 {
		white-space:initial;
		margin: 0;
	}
	.banner-main-top{
		margin-bottom: 24px;
	}
	.banner-main-top p {
		font-size: 14px;
		padding: 0;
		margin: 0px;
	}
	.banner-buttons .button, .banner-buttons .l-btn {
		text-align: center;
		justify-content: center;
		align-self: center;
		min-width: 160px;
		margin-right: 0;
		margin-bottom: 16px;
	}
	
	.banner-main-blocks{
		margin: 0;
		margin-top: -96px;
	}
	.banner-main-blocks .container {
		display: flex;
		flex-direction: column;
	}
	.banner-main-block{
		width: 100%;
		padding: 24px;
	}
	.bm-1 {
		border-top: 16px solid var(--sub-color);
		border-radius: 0 0;
	}
	.bm-2{
		border-top: none;
	}
	.bm-3{
		border-top: none;
	}
	.content-block-icon,
	.main-block-icon,
	.card-icon{
		width: 40px;
		height: 40px;
		font-size: 32px;
		margin-bottom: var(--main-pad);
	}
	
	.page-banner-top{
		height: 480px;
	}
	.content-banner-wrap.top-margin {
		padding-top: 0;
		margin-top: -360px;
	}
	
	.content-banner-wrap{
		padding: 24px 0px;
	}
	.content-banner {
		flex-direction: column;
		margin: 0px;
	}
	.banner-blk-txt, .banner-blk-img{
		width: 100%;
		padding: 0px 0;
		margin-bottom: var(--main-pad);
	}
	.banner-blk-img {
		padding: 0px var(--xxl-pad);	
		padding: 0px 0;	
	}
	.banner-blk-full{
		width: 100%;
		padding: 0px;	
	}
	.banner-blk-center{
		width: 100%;
		padding: 0px;
		margin-bottom: 16px;
	}
	.content-banner-title{
		margin-bottom: 8px;
	}
/*	.content-banner-title h1, */
	.content-banner-title h2, .content-banner-title h3{
/*		line-height: 24px;*/
	}
/*	.banner-title-button h1, */
	.banner-title-button h2, .banner-title-button h3{
		line-height: 24px;
	}

	.banner-blk-full .content-banner-title{
		margin-bottom: 24px;	
	}
	.banner-title-button .button{
		display: none;
	}
	.top-content-banner .banner-blk-center br{
		display: none;
	}
	.border-bar-blk{
		height: 16px;
	}
	
	.content-blocks-wrap{
		margin: 0px 0px 48px 0px;
		flex-direction: column;
		border-radius: 0px;
	}
	.content-block,
	.content-block.content-block-md {
		width: 100%;
		margin-bottom: 8px;
	}
	.content-block-main{
		padding: 24px;		
	}
	
	.cards-wrapper{
		flex-direction: column;
		margin: var(--lg-pad) -12px;
		margin: 0;
	}
	.card-column.col-margin {
		padding-top: 0;
	}
	.card-column,
	.cards-full .card-column{
		width: 100%;
		padding: 0;
	}
	.card-wrap{
		padding: 0;
	}
	.card-main{
		padding: 24px;
	}
	.card-main-text{
		margin-bottom: 0;
	}
	.card-text-wrap{
		max-height: initial;
	}
/*	.card-main .txt-btn {*/
	.card-main .text-toggle {
		display: none;
	}
	.card-bottom{
		margin-top: 0;
		flex-direction: column;
	}
	#service-page .card-bottom{
		flex-direction: row;
	}
	.card-bottom-icons{
		padding: 0;
		margin-bottom: 8px;
		flex-direction: column;
	}
	.card-chip{
		margin-bottom: 8px;
	}
	.cards-full .card-column .button-full-center{
		margin-top: 24px;
	}
	
	#content-logos{
		overflow: hidden;
		padding-bottom: 48px;
	}
	.content-logos{
		margin-left: -24px;	
		margin-right: -24px;	
	}
	.content-logo-block{
		width: 50%;
	}
	.logo-block{
		padding: 8px 16px;
	}
	
	#project-slider {
		overflow: initial;
		margin-top: 0px;
		padding-bottom: 2px;
	}
	#projecten-content{
		margin-bottom: 48px;
	}
	
	#project-slider .swiper-wrapper{
		margin-bottom: 48px;
	}
	
	#project-slider .swiper-slide { 
		width: 100%; 
		height: initial;
	}
	.project-slide-block{
		flex-direction: column;
		height: 100%;
	}
	.project-slide-image{
		width: 100%;
	}
	.project-slide-content{
		height: auto;
		width: 100%;
	}
	.swiper-slide-active .project-slide-content{
		height: auto;
		width: 100%;
		transition: none;
		flex-grow: 1;
	}
	.project-slide-text{
		position: relative;
		height: auto;
		top: initial;
		left: initial;
		width: 100%;
		padding: 24px;
		height: 100%;
		justify-content: flex-start;
	}
	.swiper-bottom-line .swiper-pagination-progressbar{
		top: 20px;
	}
	.swiper-bottom-line {
		height: 40px;
		width: calc(100% - 120px);
	}
	.swiper-navigation{
		height: 40px;
		width: 88px;
	}
	.swiper-button-next, .swiper-button-prev{
		width: 40px;
    	height: 40px;
	}
	.swiper-button-next, .swiper-rtl .swiper-button-prev {
		right: 0px;
	}
	.swiper-button-prev, .swiper-rtl .swiper-button-next {
		left: 0px;
	}
	
	#services-content{
		padding-top: 48px;
	}
	
	#home-content-1{
		padding-bottom: 48px;
	}
	.home-wrap #services-content{
		padding-top: 96px;
	}
	.home-wrap #services-content:before{
		height: 80px;
		left: 0;
		top: -60px;
	}
	#home-content-2{
		margin-top: 48px;
		margin-bottom: 24px;
	}
	#content-orange-banner{
		margin: 48px 0px;
	}
	#content-orange-banner .content-banner{
		padding-bottom: 240px;		
	}
	#content-orange-banner .banner-blk-txt{
		width: 100%;
		padding: 24px;
	}
	#content-orange-banner h2{
		font-size: 32px;
		line-height: 1.2;
	}
	#content-orange-banner p {
		padding-right: 0%;
	}
	#content-orange-banner .content-banner:after {
		width: 100%;
		height: 100%;
		left: 0%;
		top: 0%;
		border-radius: 3px;
		background: url(../images/hs-brandwering-oranjebanner-mobile.jpg) right bottom no-repeat var(--sub-color);
		background-size: contain;
		z-index: -1;
	}
	.contact-info-list{
		flex-direction: column;
		margin-top: 24px;
		padding: 0;
	}
	.contact-info-list div{
		width: 100%;
		margin-bottom: 4px;
	}
	
	#map-canvas{
		height: 560px;
	}
	
	#footer{
		padding:0;
	}
	#footer .container{
		flex-direction: column;
	}
	.footer-content{
		flex-direction: column;
		margin: 0;
		padding: 0; 
	}
	.footer-content .container{
		padding-bottom: 24px;	
	}
	.footer-content-left{
		text-align: left;
/*		justify-content: center;*/
		width: 100%;
		padding: 48px 0px 24px 0px;
	}
	.footer-logo{
/*		align-self: center;*/
	}
	.footer-logo img{
		height: 32px;
	}

	.footer-menu{
		padding: 0;
		width: 100%;		
		border-bottom: 1px solid var(--light-color);
	}
	.footer-menu-title{
		padding: 16px 0px;	
		margin: 0;
	}
	.footer-menu-title:after{
		position: absolute;
		display: inline-block;
		content: "\f078";
		right: -8px;
		top: 4px;
		height: 48px;
		width: 48px;
		line-height: 48px;
		font-size: 14px;
		color: var(--white-color);
		vertical-align: middle;
		text-align: center;
		font-family: "Font Awesome 6 Pro";
		font-weight: 300;
		transform: rotate(0deg);
		transition: all .3s ease;
	}
	.footer-menu-open .footer-menu-title:after{
		color: var(--sub-color);
		transform: rotate(-180deg);
		transition: all .3s ease;
	}
	.footer-content h4{
		font-size: 16px;
		line-height: 24px;
		margin: 0;
	}
	.footer-menu-title div{
		font-size: 16px;
	}
	.footer-menu-list{
		display: none;
		margin: 0;
		padding-bottom: 16px;
	}
	.footer-menu-list li{
		padding: 8px 0px;
		margin: 0;
	}
	.footer-menu-list li a{
		line-height: 24px;
		font-weight: 400;		
	}		
	
	.footer-copyright{
		width: 100%;
		text-align: center;
		line-height: 24px;
		font-size: 12px;
		font-weight: 300;
		justify-content: center;
		order: 2;
	}
	.footer-social{
		order: 1;
		width: 100%;
		text-align: center;
		justify-content: center;		
		margin-bottom: 16px;
	}
	ul.nav-social li {
		margin: 0 12px;
	}
}


/*NAV STYLES*/

@media (max-width: 1199px) {
	body.menu-open {
		
	}
	.navbar-button{
		position: relative;
		display: flex;
	}

	.nav-toggle {
		cursor: pointer;
		display: flex;
	}
	#navbar{
/*		background: var(--bg-color);*/
		padding: 0px 24px;
	}
	.nav-right{
		display: none;
	}
	
	.nav-wrap {
		position: absolute;
		position: fixed;
		display: block;
		float: none;
		top: 0px;
		left: -110%;
		width: 100%;
		margin: 0;
/*		height: 100vh;*/
		z-index: 2;
		opacity: 0;
		background: var(--main-color);
		overflow: hidden;
		overflow-y: auto;
		-webkit-transition: all 0.2s ease;
		transition: all 0.2s ease;
	}
	.menu-open .nav-wrap {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		height: 100%;
		min-height: 100vh;
		min-height: fill-available;
		min-height: -webkit-fill-available;
		left: 0px;
		opacity: 1;
		-webkit-transition: all 0.4s ease-out;
		transition: all 0.4s ease-out;
	}
	#nav-main{
		flex-direction: column;
	}
	#nav-main ul{
		flex-direction: column;
	}
	#nav-main ul li{
		margin: 0;
		padding: 0px 0px;
	}
	#nav-main ul li a{
		line-height: 24px;
		padding: 12px 0px;
		width: 100%;
		font-size: 16px;
	}
	.menu-open #nav-main a{

	}
	#nav-main ul li a:after{
		position: absolute;
		display: inline-block;
		content: "\f054";
		right: -12px;
		top: 0px;
		height: 48px;
		width: 48px;
		line-height: 48px;
		font-size: 16px;
		color: var(--light-text-color);
		vertical-align: middle;
		text-align: center;
		font-family: "Font Awesome 6 Pro";
		font-weight: 300;
		transform: rotate(0deg);
		transition: all .3s ease;
	}
	
/*	.nav-icon span, .menu-ani .nav-icon span*/
	
	body:not(.menu-open) #navbar.sticky .nav-icon span, 
	body:not(.menu-open) #navbar.sticky .nav-icon span:before, 
	body:not(.menu-open) #navbar.sticky .nav-icon span:after{
		background: var(--main-color);
	}	
	
	.light-page .nav-icon span, 
	.light-page .nav-icon span:before, 
	.light-page .nav-icon span:after{
		background: var(--main-color);
	}	
	.menu-open .light-page .nav-icon span::before, 
	.menu-open .light-page .nav-icon span::after{
		background: var(--white-color);
	}
	.menu-ani .light-page .nav-icon span,
	.menu-open .light-page .nav-icon span{
		background: transparent;
	}
	
	.menu-open .light-page #navbar .logo-main-dark, 
	.menu-open #navbar.sticky .logo-main-dark {
		display: none;
	}
	.menu-open .light-page #navbar .logo-main-light, 
	.menu-open #navbar.sticky .logo-main-light {
		display: flex;
	}
/*
	.white-page #nav-main ul li a {
		color: var(--white-color);
	}
*/
	.light-page #navbar #nav-main ul li a,
	#navbar.sticky #nav-main ul li a {
		color: var(--main-color);
		color: var(--white-color);
	}
	
}

@media (max-width: 375px) { 

}

@media (max-width: 767px) {

}


@media (max-width: 361px){
	
	.container {
		padding-right: 16px;
		padding-left: 16px;
	}

}

/*@media only screen (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {*/

@media only screen and (min-height: 600px) and (min-width: 768px) and (orientation: portrait) {}

/******** iPhone Fixes ********/

/* iPhone 8 with notch */

@media only screen and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) {

	
}

/* iPhone X with notch */

@media only screen and (width: 375px) and (-webkit-device-pixel-ratio: 3) {

}

/* iPhone XR with notch */

@media only screen and (width: 414px) and (-webkit-device-pixel-ratio: 2) {

}

/* iPhone XS Max with notch */

@media only screen and (width: 414px) and (-webkit-device-pixel-ratio: 3) {

}
