/* raleway-300 - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 300;
	src: url('../fonts/raleway-v29-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* raleway-regular - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/raleway-v29-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* raleway-500 - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 500;
	src: url('../fonts/raleway-v29-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* raleway-700 - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/raleway-v29-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* raleway-900 - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 900;
	src: url('../fonts/raleway-v29-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* calligraffitti-regular - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Calligraffitti';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/calligraffitti-v19-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
	
:root {
	--white			:	#fff;
	--grey			:	#6d767c;
	--light			:	#f5f5f5;
	--blue			:	#002D47;
	--blueDark		:	#001724;
	--gold			:	#A6894F;
	--goldLight		:	#fff7e8;
	
	--mainColor		:	#53c99b;
	--secondColor	:	#c9537d;
	
	--headline		:	#192026;
	--textColor		:	#373f46;
	--linkColor		:	#51a74f;
	--linkColorH	:	#1a6818;
	
	--error			:	#ff6e6c;
	--errorLight	:	#ffebed;
	--success		:	#2ea753;
	--successLight	:	#ebfff0;
	--warning		:	#ffc107;
	--warningLight	:	#fff9e7;
	
	--boxShadow		:	0px 24px 40px rgba(25, 34, 64, 0.15);
	--borderRadius	:	4px;
	--borderRadiusB	:	10vw;
	--gradient		:	linear-gradient(45deg, #c61c71  0%, #f98d21 100%);
	--transition	:	all 0.2s ease-in-out;
	
	--maxWidth		:	1248px;
}
/* ------ */
/* GLOBAL */
/* ------ */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}
body,
input,
select,
textarea {
	line-height: 24px;
	font-size: 16px;
	color: var(--textColor);
	font-family: 'Raleway';
	font-weight: 400;
	font-size: 16px;
	counter-reset: steps;
}
body,
html {
	width: 100%;
	height: 100%;
	background: var(--white);
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 500;
	padding: 0 0 24px 0;
	font-size: 24px;
	line-height: 32px;
	color: var(--blue);
}
h1, h2 {
	font-size: 40px;
	line-height: 48px;
}

h1.small,
h2.small {
	font-size: 20px;
	line-height: 28px;
	font-weight: 900;
}
@media( max-width: 589px ) {
	h1, h2 {
		font-size: 24px;
		line-height: 32px;
	}
}
p {
	padding: 0 0 24px 0;
	color: var(--textColor);
}
p.subheadline {
	text-transform: uppercase;
	color: var(--textColor);
	padding-bottom: 8px;
	letter-spacing: -0.01em;
}
b, strong {
	font-weight: 700;
}
a {
	color: var(--gold);
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}
a:hover {
	color: var(--blue);
}
a img {
	border: none;
}
*.clear {
	clear: both;
}
*.center {
	text-align: center;
}
*.highlight {
	position: relative;
}
*.highlight span {
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%) scale(1.2);
	background-image: url('../images/ellipse.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	z-index: -1;
}
/*--------*/
/* ALIGN  */
/*--------*/
.alignright {
	padding: 0;
	margin: 0 0 0 24px;
	float: right;
}
.aligncenter {
	display: block;
	margin: 0 auto;
}
.alignleft {
	padding: 0;
	margin: 0 24px 0 0;
	float: left;
}
*.handwritten {
	font-family: 'Calligraffitti';
	font-size: 48px;
	line-height: 56px;
}
@media ( max-width: 1240px ) {
	
}
@media ( max-width: 998px ) {
	
}
@media ( max-width: 768px ) {
	*.handwritten {
		font-size: 32px;
		line-height: 40px;
	}	
}
@media ( max-width: 589px ) {
	
}
/*--------*/
/* INPUT  */
/*--------*/
label {
	font-size: 14px;
	padding-bottom: 2px;
	text-align: left;
}
input,
select,
textarea {
	font-size: 16px;
	border: 1px solid var(--grey);
	background: var(--goldLight);
	border-radius: var(--borderRadius);
	padding: 8px 16px;
}
input:focus,
select:focus,
textarea:focus {
	outline: none;
	border: 1px solid var(--gold);
	background: var(--gold);
	color: var(--white);
}
input[type="radio"]:focus,
input[type="checkbox"] {
	
}
form {
	margin-bottom: 24px;
}
form div.flex+div.flex {
	padding-top: 24px;
}
form div.flex,
section.text form div.flex {
	margin: 0 -12px;
}
form div.flex div.flexbox {
	padding: 0 12px;
}
/*--------*/
/* ALERTS */
/*--------*/
div.alert {
	z-index: 998;
	position: fixed;
	left: 50%;
	top: -100px;
	transform: translateX(-50%);
	width: 480px;
	max-width: calc(100vw - 48px);
	border-radius: var(--borderRadius);
	padding: 8px 56px 8px 16px;
	color: var(--white);
	border: 1px solid var(--grey);
	margin-bottom: 24px;
	animation-name: alert;
	animation-fill-mode: forwards;
	animation-iteration-count: 1;
	animation-timing-function: ease-in-out;
	animation-duration: 15s;
	animation-delay: 1s;
}
@keyframes alert {
	0% {
		top: -100px;
	} 25% {
		top: 120px;
	} 75% {
		top: 120px;
	} 100% {
		top: -100px;
	}
}
div.alert::after {
	position: absolute;
	right: 0;
	top: 0;
	width: 40px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	background: rgba(255,255,255,0.6);
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f057";
	cursor: pointer;
}
div.alert.alert-success {
	color: var(--success);
	border-color: var(--success);
	background: var(--successLight);
}
div.alert.alert-error {
	color: var(--error);
	border-color: var(--error);
	background: var(--errorLight);
}
div.alert.alert-success::after {
	color: var(--white);
	background: var(--success);
}
div.alert.alert-error::after {
	color: var(--white);
	background: var(--error);
}
div.alert h3 {
	padding: 0 0 0 0;
	font-size: 16px;
	line-height: 24px;
}
div.alert.alert-success h3 {
	color: var(--success);
}
div.alert.alert-error h3 {
	color: var(--error);
}
div.alert p,
div.alert ul {
	padding: 0 0 0 0;
}
div.alert p+p {
	padding: 8px 0 0 0;
}
/*-------------*/
/* BORDER BOX  */
/*-------------*/
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/*----------*/
/* ADDRESS  */
/*----------*/
address {
	font-style: italic;
	padding: 0 0 24px 0;
}
/*-------*/
/* MARK  */
/*-------*/
mark {
	background-color: var(--linkColor);
	padding: 0 2px;
}
/*-------------*/
/* WP CAPTION  */
/*-------------*/
div.wp-caption {
	display: inline-block;
	background: var(--white);
	padding: 5px;
	margin-bottom: 24px;
	border: 1px solid var(--grey);
}
div.wp-caption img {
	max-width: 100%;
	height: auto;
	margin: 0 0 5px 0;
}
div.wp-caption p {
	width: 100%;
	text-align: center;
	padding: 0;
}
/*--------*/
/* TABLE  */
/*--------*/
table {
	width: 100%;
	margin: 0 0 24px 0;
	border: 1px solid var(--grey);
	border-collapse: collapse;
	border-spacing: 0;
}
table thead,
table tbody,
table tfoot,
table tr {
	width: 100%;
}
table th,
table td {
	text-align: left;
	padding: 5px 7px;
}
table th {
	border-bottom: 1px solid var(--grey);
}
table tr+tr {
	border-top: 1px solid var(--grey);
}
table td+td,
table th+th,
table th+td {
	border-left: 1px solid var(--grey);
}
/*-------*/
/* LIST  */
/*-------*/
ol,
ul {
	padding: 0 0 24px 40px;
}
ul li {
	list-style: disc;
}
ol li {
	list-style: decimal;
}
ul.check {
	padding: 0 0 24px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
ul.check li {
	list-style: none;
	position: relative;
	padding: 6px 6px 6px 40px;
	margin: 8px 0;
	width: 48%;
	background: var(--light);
	border-radius: 20px;
	text-align: left;
}
ul.check li::before {
	content: '\f00c';
	font-family: "Font Awesome 5 Free"; 
	font-weight: 900;
	width: 24px;
	height: 24px;
	background: var(--gold);
	color: var(--white);
	font-size: 12px;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	border-radius: 50%;
	position: absolute;
	left: 6px;
	top: 50%;
	transform: translateY(-50%);
}
@media ( max-width: 1240px ) {
	
}
@media ( max-width: 998px ) {
	
}
@media ( max-width: 768px ) {
	ul.check li {
		width: 100%;
	}	
}
@media ( max-width: 589px ) {
	
}
/*---------*/
/* !SOCIAL */
/*---------*/
ul.social {
	padding: 0;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	margin: 0 -8px;
}
ul.social li {
	list-style: none;
	padding: 0 8px;
}
ul.social li a {
	font-size: 24px;
	line-height: 24px;
	color: var(--white);
}
/*-----------------*/
/* !IFRAME / VIDEO */
/*-----------------*/
div.iframe,
div.video {
	position: relative;
	border-radius: var(--borderRadius);
	overflow: hidden;
}
div.iframe::after,
div.video::after {
	content: '';
	display: block;
	margin-top: 56.25%;
}
div.iframe iframe,
div.video video {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
div.video picture,
div.video picture img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}
div.video i {
	z-index: 9;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	font-size: 124px;
	color: var(--white);
}
div.video video:hover i {
	color: var(--gold);
}
/*-------------*/
/* BLOCKQUOTE  */
/*-------------*/
blockquote {
	position: relative;
	color: var(--textColor);
	text-shadow: var(--textShadow);
	max-width: 100%;
	margin: 0 auto;
	padding: 24px 0 0 64px;
	margin-bottom: 24px;
	border-left: 2px solid var(--gold);
	font-style: italic;
}
@media ( max-width: 1240px ) {
	
}
@media ( max-width: 998px ) {
	
}
@media ( max-width: 768px ) {
	
}
@media ( max-width: 589px ) {
	blockquote {
		padding-left: 26px;
	}	
}
/*------------*/
/* SELECTION  */
/*------------*/
::selection {
	background: var(--blue);
	color: var(--gold);
}
::-moz-selection {
	background: var(--blue);
	color: var(--gold);
}
/*---------*/
/* BUTTON  */
/*---------*/
*.buttons {
	display: flex;
	flex-wrap: nowrap;
	gap: 16px;
}
*.buttons.buttons-center {
	justify-content: center;
}
*.buttons.buttons-right {
	justify-content: flex-end;
}
*.btn {
	text-align: center;
	padding: 8px 24px;
	border: none;
	display: inline-block;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	background: var(--gold);
	color: var(--white);
	border-radius: 40px;
	border: 2px solid transparent;
	overflow: hidden;
}
*.btn::before {
	content: '\f061';
	font-family: "Font Awesome 5 Free"; 
	font-weight: 900;
	position: absolute;
	left: -24px;
	transform: translateY(-50%);
	transition: var(--transition);
	top: 50%;
}
*.btn.btn-small {
	padding: 6px 12px;
}
*.btn:hover {
	background: var(--blue);
	color: var(--white);
	padding-left: 38px;
}
*.btn:hover::before {
	left: 12px;
}
*.btn.btn-blue {
	background: var(--blue);
}
*.btn.btn-blue:hover {
	background: var(--textColor);
}
*.btn.btn-outlined {
	background: transparent;
	color: var(--blue);
	border-color: var(--blue);
}
*.btn.btn-outlined:hover{
	background: var(--blue);
	color: var(--white);
	border-color: var(--blue);
}
*.btn.center {
	margin: 0 auto;
	float: none;
	display: table;
}
*.btn.btn-error {
	background: var(--error);
}
@media ( max-width: 1240px ) {
	
}
@media ( max-width: 998px ) {
	
}
@media ( max-width: 768px ) {
	*.buttons {
		justify-content: center;
	}	
}
@media ( max-width: 589px ) {
	
}
/*---------------*/
/* !BUTTON GROUP */
/*---------------*/
*.buttons-group {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 0;
}
*.buttons-group *.btn {
	border-radius: 0;
	background: var(--white);
	border: 2px solid var(--gold);
	color: var(--gold);
}
*.buttons-group *.btn.btn-active {
	background: var(--gold);
	color: var(--white);
}
*.buttons-group *.btn.btn-active:hover {
	padding-left: 24px;
}
*.buttons-group *.btn.btn-active:hover::before {
	display: none;
}
*.buttons-group *.btn:first-child {
	border-radius: 40px 0 0 40px;
}
*.buttons-group *.btn:last-child {
	border-radius: 0 40px 40px 0;
}
/*-------------*/
/* BREADCRUMB  */
/*-------------*/
div#breadcrumb {
	padding: 0 0 24px 0;
	display: flex;
	justify-content: center;
	width: 100%;
}
div#breadcrumb div.content {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	align-items: center;
	justify-content: flex-start;
}
div#breadcrumb div.content div,
div#breadcrumb div.content span {
	font-size: 14px;
	line-height: 16px;
	padding: 0 0 0 0;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	align-items: center;
	justify-content: flex-start;
}
div#breadcrumb div.content span[itemprop="itemListElement"]::after {
	content: '';
	width: 24px;
	height: 1px;
	background: var(--white);
	margin: 7px 16px;
	display: inline-block;
}
div#breadcrumb div.content a:hover,
div#breadcrumb div.content span:hover {
	text-decoration: underline;
}
/*-----------*/
/* OVERLAYER */
/*-----------*/
div.overlayer {
	z-index: 997;
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.6);
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	padding: 24px;
	display: none;
}
div.overlayer div.overlayerBg {
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vw;
}
div.overlayer div.overlayerContent {
	position: relative;
	z-index: 9;
	background: var(--white);
	border-radius: var(--borderRadius);
	box-shadow: var(--boxShadow);
	padding: 24px;
	max-width: 600px;
	width: 100%;
}
div.overlayer div.overlayerContent h2 {
	padding-bottom: 16px;
}
div.overlayer div.overlayerContent div.overlayerCross {
	position: absolute;
	right: 8px;
	top: 8px;
}
/*---------*/
/* SWIPER */
/*--------*/
.slider {
	max-width: 100vw;
}
.swiper-container {
	width: 100%;
}
.swiper-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.swiper-slide a {
	width: 100%;
	display: inline-block;
}
.swiper-slide img {
	width: 100%;
	height: auto;
}
.swiper-slide a img {
	float: left;
}
.swiper-slide picture {
	width: 100%;
	height: 80px;
	border: 1px solid var(--light);
	padding: 12px;
}
.swiper-slide picture img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}
/*----------------*/
/* SWIPER BUTTONS */
/*----------------*/
.swiper-button-prev,
.swiper-button-next {
	top: auto;
	bottom: -40px;
	background: none;
	position: absolute;
	height: 16px;
	width: 80px;
	outline: none;
	z-index: 13;
}
.swiper-button-next {
	right: 0;
}
.swiper-button-prev {
	left: 0;
}
.swiper-button-prev::before,
.swiper-button-next::before {
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -1px;
	background: var(--linkColor);
}
.swiper-button-prev:hover::before,
.swiper-button-next:hover::before {
	background: var(--textColor);
}
.swiper-button-prev::after,
.swiper-button-next::after {
	content: '';
	width: 8px;
	height: 8px;
	position: absolute;
	top: 50%;
	margin-top: -5px;
	border-right: 2px solid var(--linkColor);
	border-bottom: 2px solid var(--linkColor);
}
.swiper-button-prev::after {
	transform: rotate(135deg);
	left: 0;
}
.swiper-button-next::after {
	transform: rotate(-45deg);
	right: 0;
}
.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
	border-color: var(--textColor);
}
/*-------------------*/
/* SWIPER PAGINATION */
/*-------------------*/
.swiper-pagination {
	width: 100%;
	display: flex;
	justify-content: center;
	bottom: -33px;
}
.swiper-pagination span {
	width: 8px;
	height: 2px;
	background: var(--linkColor);
	outline: none;
	border-radius: 2px;
	opacity: 1;
	margin: 0 2px;
	transition: all 0.2s ease-in-out;
}
.swiper-pagination span.swiper-pagination-bullet-active {
	width: 16px;
	background: var(--textColor);
}
/*----------*/
/* CONTENT  */
/*----------*/
*.content {
	width: 100%;
	max-width: var(--maxWidth);
	padding: 0 24px;
	display: block;
	margin: 0 auto;
	position: relative;
	z-index: 9;
}
*.article.small {
	max-width: 768px;
	margin: 0 auto;
}
/*------*/
/* FLEX */
/*------*/
*.flex {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	flex-wrap: nowrap;
	align-content: stretch;
	-webkit-box-align: stretch;
	align-items: stretch;
	margin: 0 -24px;
}
*.flex.flexColumn {
	flex-direction: column;
	align-content: stretch;
	align-items: stretch;
	justify-content: flex-start;
}
*.flex *.flexColumn {
	flex-direction: column;
	display: flex;
}
*.flex.alignCenter {
	align-items: center;
	align-content: center;
}
*.flex.flexStart {
	justify-content: flex-start;
	margin: 0;
}
*.flex.flexEnd,
*.flexbox.flexEnd {
	justify-content: flex-end;
	display: flex;
	flex-wrap: wrap;
	margin: 0;
}
*.flex.justifyCenter {
	justify-content: center;
}
*.flex.wrap,
*.flex.flexWrap {
	flex-wrap: wrap;
	justify-content: flex-start
}
*.flex *.flexbox {
	flex-basis: 0;
	flex-grow: 1;
	padding: 0 24px;
}
*.flex *.flexbox.image img,
*.flex *.flexbox.image picture {
	display: table;
	margin: 0 auto;
	max-width: 100%;
	width: auto;
	height: auto;
}
*.flex *.flexbox.image.left {
	order: -1;
}
@media (max-width: 768px) {
	*.flex {
		flex-wrap: wrap;
	}
	*.flex *.flexbox {
		width: 100%;
		max-width: 100%;
		flex-basis: auto;
		flex-grow: initial;
		text-align: center;
	}
	article *.flex *.flexbox {
		text-align: left;
	}
	*.flexbox + *.flexbox {
		padding: 12px 24px;
	}
	*.flex *.flexbox.assets {
		order: -1;
	}
	*.flex + *.flex {
		padding-top: 24px;
	}
	*.flex *.flexbox.image {
		order: -1;
		padding: 0 24px 24px 24px;
	}
}
/*------*/
/* MENU */
/*------*/
div#menu {
	display: none;
}
@media ( max-width: 998px ) {
	div#menu {
		display: block;
		width: 32px;
		height: 40px;
		position: absolute;
		right: 24px;
		top: 12px;
		z-index: 999;
	}
	div#menu.active {
		position: fixed;
		right: 24px;
		top: 24px;
	}
	div#menu::before,
	div#menu::after {
		content: '';
		width: 100%;
		height: 2px;
		background: var(--white);
		position: absolute;
		left: 0;
		top: 50%;
	}
	*.sticky div#menu::before,
	*.sticky div#menu::after {
		background: var(--blue);
	}
	div#menu.active::before,
	div#menu.active::after {
		background: var(--blue);
	}
	div#menu::before {
		margin-top: -4px;
	}
	div#menu::after {
		margin-top: 4px;
	}
	div#menu.active::before {
		animation-name: menuTop;
		animation-duration: 0.5s;
		animation-fill-mode: forwards;
		animation-iteration-count: 1;
		animation-timing-function: ease-in-out;
	}
	div#menu.active::after {
		animation-name: menuBottom;
		animation-duration: 0.5s;
		animation-fill-mode: forwards;
		animation-iteration-count: 1;
		animation-timing-function: ease-in-out;
	}
	div#menu.close::before {
		animation-name: closeMenuTop;
		animation-duration: 0.5s;
		animation-fill-mode: forwards;
		animation-iteration-count: 1;
		animation-timing-function: ease-in-out;
	}
	div#menu.close::after {
		animation-name: closeMenuBottom;
		animation-duration: 0.5s;
		animation-fill-mode: forwards;
		animation-iteration-count: 1;
		animation-timing-function: ease-in-out;
	}
}
/* OPEN */
@keyframes menuTop {
	0% {
		margin-top: -4px;
	} 50% {
		margin-top: -1px;
		transform: rotate(0deg);
	} 100% {
		transform: rotate(45deg);
		margin-top: 0;
	}
}
@keyframes menuBottom {
	0% {
		margin-top: 4px;
	} 50% {
		margin-top: -1px;
		transform: rotate(0deg);
	} 100% {
		transform: rotate(-45deg);
		margin-top: 0;
	}
}
/* CLOSE */
@keyframes closeMenuTop {
	0% {
		transform: rotate(45deg);
		margin-top: 0;
	} 50% {
		margin-top: -1px;
		transform: rotate(0deg);
	} 100% {
		margin-top: -4px;
	}
}
@keyframes closeMenuBottom {
	0% {
		transform: rotate(-45deg);
		margin-top: 0;
	} 50% {
		margin-top: -1px;
		transform: rotate(0deg);
	} 100% {
		margin-top: 4px;
	}
}
/*------------*/
/* !SUBHEADER */
/*------------*/
div.subheader {
	border-top: 1px solid var(--gold);
	background: var(--blueDark);
	height: 40px;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 9;
	display: flex;
	justify-content: center;
	align-content: stretch;
	align-items: center;
}
div.subheader div.content {
	display: flex;
	align-content: stretch;
	align-items: center;
}
div.subheader ul.social {
	margin-left: 16px;
	padding-left: 16px;
	border-left: 1px solid rgba(255,255,255,0.3);
	margin-right: 40px;
}
div.subheader ul.social li a {
	font-size: 18px;
}
div.subheader ul.social li a:hover {
	color: var(--gold);
}
div.subheader div.contact {
	margin-left: auto;
}
div.subheader div.contact a {
	margin: 0 8px 0 16px;
	color: var(--white);
}
div.subheader div.contact a:hover {
	color: var(--gold);
}
div.subheader div.contact a i {
	margin-right: 4px;
}
@media ( max-width: 1240px ) {
	
}
@media ( max-width: 998px ) {
	
}
@media ( max-width: 768px ) {
	
}
@media ( max-width: 589px ) {
	div.subheader div.contact a span {
		display: none;
	}	
}
/*---------*/
/* HEADER  */
/*---------*/
header#header {
	width: 100%;
	left: 0;
	top: 40px;
	z-index: 999;
	padding: 0;
	height: 64px;
	position: absolute;
	background: var(--blue);
}
header#header.sticky {
	top: 0;
	box-shadow: 0 4px 8px 0 rgba(46,43,56,0.16), 0 8px 16px 0 rgba(46,43,56,0.08), 0 16px 32px 0 rgba(46,43,56,0.04);
	position: fixed;
	background: var(--white);
	transform: translateY(-200%);
	animation-name: showMenu;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	animation-iteration-count: 1;
}
@keyframes showMenu {
	0% {
		transform: translateY(-200%);
	} 100% {
		transform: translateY(0%);
	}
}
header#header div.content {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
}
header#header div.content a.logo {
	display: inline-flex;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	height: 96px;
	width: auto;
	padding: 8px 0;
	position: relative;
	transform: translateY(-32px);
}
header#header.sticky div.content a.logo {
	height: 64px;
	transform: none;
}
header#header div.content a.logo picture {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: flex-start;
}
header#header div.content a.logo picture img {
	width: auto;
	height: 100%;
	filter: brightness(0) invert(1);
}
header#header.sticky div.content a.logo picture img {
	filter: none;
}
@media ( max-width: 1240px ) {
	
}
@media ( max-width: 998px ) {
	header#header.openMenu div.content a.logo picture img {
		filter: none;
	}
	header#header div.content a.logo {
		transform: none;
		height: 64px;
	}
}
@media ( max-width: 768px ) {
	
}
@media ( max-width: 589px ) {
	
}
/*------------*/
/* NAVIGATION */
/*------------*/
nav#nav {
	margin: -32px -16px 0 auto;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
}
*.sticky nav#nav {
	margin-top: 0;
}
nav#nav ul {
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	padding: 0;
}
nav#nav ul li {
	list-style: none;
	position: relative;
}
nav#nav ul li a {
	padding: 8px 16px;
	color: var(--white);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 14px;
}
nav#nav ul li a:hover,
nav#nav ul li.current-menu-item a {
	color: var(--gold);
}
*.sticky nav#nav ul li a {
	color: var(--textColor);
}
*.sticky nav#nav ul li.current-menu-item a {
	color: var(--blue);
}
@media ( max-width: 998px ) {
	nav#nav {
		position: fixed;
		left: 0;
		top: 0;
		z-index: 990;
		background: var(--white);
		width: 100%;
		height: 100vh;
		display: none;
		justify-content: center;
		align-content: center;
		align-items: center;
		padding: 80px 24px 24px 24px;
	}
	nav#nav ul {
		height: 100%;
		display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-direction: column;
	}
	nav#nav ul li a,
	*.sticky nav#nav ul li a {
		color: var(--blue);
		font-size: 20px;
		line-height: 56px;
	}
	nav#nav ul li.current-menu-item a,
	*.sticky nav#nav ul li.current-menu-item a {
		color: var(--gold);
	}
}
/*----------*/
/* SUB MENU */
/*----------*/
nav#nav ul li ul {
	position: absolute;
	left: 50%;
	top: 100%;
	padding: 0;
	max-width: 100vw;
	width: 300px;
	transform: translateX(-50%);
	background: var(--white);
	box-shadow: var(--borderRadius);
	border-radius: var(--borderRadius);
	display: none;
}
nav#nav ul li:hover ul {
	display: flex;
	flex-direction: column;
	align-content: stretch;
	align-items: stretch;
}
nav#nav ul li:hover ul li {
	display: flex;
	width: 100%;
	justify-content: center;
	align-content: stretch;
	align-items: stretch;
}
nav#nav ul li:hover ul li+li {
	border-top: 1px solid var(--grey);
	)
}
nav#nav ul li:hover ul li a {
	padding: 8px 16px;
	width: 100%;
	display: flex;
	justify-content: center;
}
nav#nav ul li:hover ul li a:hover {
	background: var(--grey);
}
/*------------*/
/* !LANGUAGES */
/*------------*/
div.languages {
	position: relative;
	cursor: pointer;
	margin-left: 8px;
	position: absolute;
	right: 24px;
	top: -32px;
}
div.languages *.language {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap: 4px;
	color: var(--white);
	padding: 4px 8px;
}
div.languages *.language span.name {
	display: none;
}
div.languages *.language picture {
	display: flex;
	height: 16px;
	width: auto;
	border-radius: var(--borderRadius);
	overflow: hidden;
}
div.languages *.language picture img {
	display: flex;
	height: 16px;
	width: auto;
	border-radius: var(--borderRadius);
}
div.languages ul {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	flex-direction: column;
	align-items: stretch;
	justify-self: stretch;
	padding: 0;
	overflow: hidden;
	border-radius: var(--borderRadius);
	background: var(--blue);
}
div.languages.active ul {
	display: flex;
}
div.languages ul li {
	list-style: none;
}
/*---------*/
/* SECTION */
/*---------*/
section {
	padding: 6vh 0;
	position: relative;
	z-index: 1;
}
section+section {
	z-index: 2;
}
section#section-1 {
	padding-top: calc(104px + 6vh);
}
section.section-bg {
	background: var(--goldLight);
}
/*---------*/
/* !TEASER */
/*---------*/
section.teaser {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	overflow: hidden;
}
section.teaser div.flex {
	width: 100%;
}
/*
section.teaser::before {
	content: '';
	width: 200%;
	height: 200px;
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: 4;
	background: var(--white);
	transform: translateX(-50%) translateY(50%) rotate(-2deg);
}
*/
section.teaser::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
	background: rgba(4,105,133,0.72);
}
section.teaser.blank::after {
	display: none;
}
section.teaser div.flex {
	position: relative;
	z-index: 9;
	margin: 0;
}
section.teaser div.flex div.flexbox.assets {
	padding: 0;
	max-height: 80vh;
	display: flex;
	border-radius: var(--borderRadiusB) 0 0 var(--borderRadius);
	overflow: hidden;
}
section.teaser div.flex div.flexbox.assets div.assets-content {
	max-width: 1200px;
	position: relative;
	width: 100%;
	height: 100%;
}
section.teaser div.content {
	padding-top: 80px;
	padding-bottom: 80px;
}
section.teaser picture.bg,
section.teaser picture.bg img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	object-fit: cover;
}
section.teaser * {
	color: var(--white);
}
section.teaser.blank * {
	color: var(--textColor);
}
section.teaser.blank h1,
section.teaser.blank h2 {
	color: var(--blue);
}
section.teaser h1 span,
section.teaser h2 span,
section.teaser.blank h1 span,
section.teaser.blank h2 span {
	display: inline-block;
	background: var(--gold);
	border-radius: var(--borderRadius);
	color: var(--white);
	padding: 4px 8px;
}
section.teaser article p {
	font-size: 24px;
	line-height: 32px;
}
section.teaser.blank *.btn {
	color: var(--white);
}
@media ( max-width: 1240px ) {
	
}
@media ( max-width: 998px ) {
	
}
@media ( max-width: 768px ) {
	section.teaser div.content {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}
@media ( max-width: 589px ) {
	
}
/*---------------*/
/* !SECTION TEXT */
/*---------------*/
section.text div.flex {
	margin: 0;
	align-content: stretch;
	align-items: stretch;
}
section.text div.text-left *.full{
	display: flex;
	justify-content: center;
}
section.text *.text-center div.content {
	margin: 0 auto;
	text-align: center;
	max-width: 900px;
}
section.text div.content {
	margin: 0;
	max-width: calc( var(--maxWidth ) / 2 );
}
section.text div.text-left div.content {
	padding-left: 36px;
	padding-right: 0;
}
section.text div.text-right div.content {
	padding-right: 36px;
	padding-left: 0;
}
section.text div.text-left *.full div.content {
	width: 100%;
	max-width: var(--maxWidth);
}
section.text div.text {
	display: flex;
	justify-content: flex-end;
	align-content: center;
	align-items: center;
}
section.text div.text-right div.text {
	justify-content: flex-start;
}
section.text div.assets {
	border-radius: var(--borderRadius);
	overflow: hidden;
	padding: 0;
	max-height: 100vh;
	min-height: 60vh;
	position: relative;
}
section.text div.text-right div.assets {
	order: -1;
	justify-content: flex-end;
	display: flex;
}
section.text div.text-left div.assets div.assets-content {
	border-radius: var(--borderRadiusB) 0 0 var(--borderRadius);
}
section.text div.text-right div.assets div.assets-content {
	border-radius: 0 var(--borderRadiusB) var(--borderRadius) 0;
}
div.assets div.assets-content {
	max-width: 1200px;
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
div.assets div.assets-content::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: calc(100% - 32px);
	height: calc(100% - 32px);
	border: 1px solid var(--white);
	z-index: 6;
	transform: translateX(-50%) translateY(-50%);
	border-radius: calc(var(--borderRadiusB) - 1vw)  0 0 var(--borderRadius);
}
div.assets.empty div.assets-content::after {
	display: none;
}
div.text-right div.assets div.assets-content::after {
	border-radius: 0 calc(var(--borderRadiusB) - 1vw) var(--borderRadius) 0;
}
section.text div.assets picture {
	width: 100%;
	height: 100%;
	display: flex;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}
section.text div.assets picture img {
	width: 100%;
	height: 100%;
	display: flex;
	position: absolute;
	left: 0;
	top: 0;
	object-fit: cover;
}
section.text div.text-left div.assets.videoWrapper {
	cursor: pointer;
}
section.text div.text-left div.assets.videoWrapper i {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	font-size: 8vw;
	color: var(--white);
	z-index: 9;
}
section.text div.text-left div.assets.videoWrapper:hover i {
	color: var(--gold);
}
section.text div.text-left div.assets.videoWrapper:hover::before {
	content: '';
	width: 100%;
	height: 100%;
	display: flex;
	position: absolute;
	left: 0;
	top: 0;
	background: var(--blue);
	opacity: 0.5;
	z-index: 4;
}
@media ( max-width: 1240px ) {
	
}
@media ( max-width: 998px ) {
	
}
@media ( max-width: 768px ) {
	section.text div.flex {
		align-content: center;
		align-items: center;
	}
	section.text div.assets {
		margin-bottom: 24px;
	}
	section.teaser div.flex div.flexbox.assets,
	section.text div.text-left div.assets,
	section.text div.text-right div.assets {
		max-width: calc(100% - 24px);
		margin-left: 24px;
		max-height: auto;
		min-height: auto;
	}
	section.text div.text-right div.assets {
		margin-left: 0;
	}
	section.text div.text-left div.content {
		padding-left: 0;
	}
	section.text div.text-right div.content {
		padding-right: 0;
	}
	section.text div.assets picture,
	section.text div.assets picture img {
		position: relative;
		left: auto;
		top: auto;
	}
}
@media ( max-width: 589px ) {
	
}
/*---------------*/
/* !MORE CONTENT */
/*---------------*/
.more_content {
	display: none;
}
.more_content.show {
	display: block;
}
/*--------*/
/* !STEPS */
/*--------*/
div.step {
	padding: 16px 0 16px 80px;
	position: relative;
}
div.step::before {
	counter-increment: steps;
	content: counter(steps);
	position: absolute;
	left: 0;
	top: 0;
	border: 2px solid var(--blue);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	z-index: 3;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	color: var(--blue);
	background: var(--white);
	font-weight: 300;
	box-shadow: 0 4px 0 var(--white), 0px -4px 0 var(--white);
}
div.step::after {
	content: '';
	position: absolute;
	left: 28px;
	top: 0;
	transform: translateX(-50%);
	width: 2px;
	height: 100%;
	background: var(--blue);
	display: block;
	z-index: 1;
}
div.step h3 {
	color: var(--textColor);
	padding: 0 0 12px 0;
	transform: translateY(-4px);
	cursor: pointer;
}
div.step h3:hover {
	color: var(--gold);
}
div.step.active h3:hover {
	color: var(--textColor);
}
div.step.open h3:hover {
	color: var(--blue);
	cursor: default;
}
div.step article {
	display: none;
}
div.step.active article,
div.step.open article {
	display: block;
}
div.step.active::before,
div.step.open::before {
	border-color: var(--gold);
	color: var(--gold);
}
div.step.active::after,
div.step.open::after {
	background: var(--gold);
}
div.step+div.buttons {
	margin-top: 48px;
}
/*-------*/
/* !FAQS */
/*-------*/
div.faq {
	margin: 8px 0;
	border: 1px solid var(--light);
	border-radius: var(--borderRadius);
}
div.faq h3 {
	padding: 16px 40px 16px 24px;
	position: relative;
	color: var(--textColor);
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	cursor: pointer;
}
div.faq h3:hover {
	color: var(--blue);
	background: var(--light);
}
div.faq h3::after {
	content: '\f0dd';
	font-family: "Font Awesome 5 Free"; 
	font-weight: 900; 
	position: absolute;
	right: 0;
	top: 0;
	height: 48px;
	width: 48px;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	color: var(--textColor);
}
div.faq.active h3::after {
	color: var(--gold);
	transform: rotate(180deg);
}
div.faq article {
	padding: 24px 24px 0 24px;
	display: none;
}
/*--------*/
/* !ITEMS */
/*--------*/
section.boxen div.items {
	display: flex;
	flex-wrap: wrap;
	align-content: stretch;
	align-items: stretch;
	margin: 0 -24px;
	padding-top: 24px;
}
section.boxen div.items div.item {
	padding: 24px;
}
section.boxen div.items div.item div.item-content {
	height: 100%;
}
section.boxen div.items div.item div.item-content h3 {
	padding-bottom: 8px;
}
section.boxen div.items div.item div.item-content div.image {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}
section.boxen div.items div.item div.item-content div.image picture {
	display: block;
	margin: 0 auto 12px auto;
	position: relative;
}
section.boxen div.items div.item div.item-content div.image.yellow picture {
	background: var(--gold);
}
section.boxen div.items div.item div.item-content div.image.blue picture {
	background: var(--blue);
}
section.boxen div.items div.item div.item-content div.image.round picture {
	border-radius: 50%;
}
section.boxen div.items div.item div.item-content div.image.round.corners picture {
	border-radius: var(--borderRadius);
}
section.boxen div.items div.item div.item-content div.image.icon picture {
	width: 80px;
	height: 80px;
}
section.boxen div.items div.item div.item-content div.image.photo picture {
	width: 100%;
	height: 200px;
}
section.boxen div.items div.item div.item-content div.image picture img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	object-fit: contain;
	object-position: center;
}
section.boxen div.items div.item div.item-content div.image.icon picture img {
	width: 80%;
	height: 80%;
	left: 10%;
	top: 10%;
	filter: brightness(0) invert(1);
}
@media ( max-width: 1240px ) {
	
}
@media ( max-width: 998px ) {
	
}
@media ( max-width: 768px ) {
	section.boxen div.items {
		margin: 0;
	}
	section.boxen div.items div.item {
		max-width: 50% !important;
		min-width: 50% !important;
		width: 50% !important;
	}	
	
}
@media ( max-width: 589px ) {
	section.boxen div.items div.item {
		max-width: 100% !important;
		min-width: 100% !important;
		width: 100% !important;
	}	
}
/*-------------*/
/* !SINGLE BOX */
/*-------------*/
section.boxen div.singlebox div.item {
	padding: 12px;
}
section.boxen div.singlebox div.item div.item-content {
	padding: 24px 24px 0 24px;
	background: var(--white);
	border-radius: var(--borderRadius);
	box-shadow: var(--boxShadow);
}
section.boxen div.singlebox div.item div.item-content div.image.icon picture img {
	filter: none;
}
/*------------*/
/* !BOXEN BOX */
/*------------*/
section.boxen div.box {
	border-radius: var(--borderRadius);
	box-shadow: var(--boxShadow);
	padding: 48px 24px 24px 24px;
	background: var(--white);
	max-width: calc( var(--maxWidth) - 48px );
}
section.boxen.text-center {
	text-align: center;
}
section.boxen.text-right {
	text-align: right;
}
/*------------------*/
/* !BOXEN BOX CLEAN */
/*------------------*/
section.boxen div.box.clean {
	border-radius: 0;
	box-shadow: none;
	background: transparent;
	max-width: var(--maxWidth);
	padding: 0;
}
/*-------------*/
/* !BOXEN FULL */
/*-------------*/
section.boxen div.full {
	max-width: 100%;
	padding: 0;
	background: var(--white);
}
section.boxen div.full div.items {
	padding: 12px;
	margin: 0;
}
section.boxen div.full div.items div.item div.item-content {
	padding: 12px;
	border-radius: var(--borderRadius);
	box-shadow: var(--boxShadow);
	background: var(--white);
}
/*---------------*/
/* !BOXEN SWIPER */
/*---------------*/
section.boxen div.slider div.swiper {
	overflow: hidden;
	margin-top: 24px;
	padding-bottom: 80px;
}
section.boxen div.slider div.swiper div.swiper-wrapper {
	align-content: stretch;
	align-items: stretch;
}
section.boxen div.slider div.swiper div.swiper-slide {
	padding: 24px;
	height: auto;
}
section.boxen div.slider div.swiper div.swiper-slide div.item-content {
	padding: 12px;
	border-radius: var(--borderRadius);
	box-shadow: var(--boxShadow);
	background: var(--white);
	height: 100%;
}
/*------*/
/* !CTA */
/*------*/
section.call {
	background: var(--gold);
	border-left: 24px solid var(--white);
	border-right: 24px solid var(--white);
}
section.call div.content {
	display: flex;
	flex-wrap: nowrap;
	align-content: center;
	align-items: center;
	justify-content: space-between;
}
section.call div.content * {
	color: var(--white);
}
section.call div.content p {
	font-size: 20px;
	line-height: 28px;
}
section.call div.content div.buttons {
	min-width: 300px;
	justify-content: flex-end;
}
@media ( max-width: 1240px ) {
	
}
@media ( max-width: 998px ) {
	
}
@media ( max-width: 768px ) {
	section.call div.content {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-content: center;
		align-items: center;
		text-align: center;
	}
	section.call div.content div.buttons {
		min-width: initial;
		justify-content: center;
	}
}
@media ( max-width: 589px ) {
	
}
/*---------*/
/* !SINGLE */
/*---------*/
section.single div.content {
	margin: 0 auto;
	max-width: 800px;
}
/*----------------*/
/* !FORM REQUESTS */
/*----------------*/
form#requestForm {
	margin-top: 24px;
}
#requestForm *.box {
	border-radius: var(--borderRadius);
	overflow: hidden;
}
#requestForm *.box h2 {
	background: var(--blue);
	color: var(--white);
	border-bottom: 2px solid var(--gold);
}

#requestForm *.box *.contentBox input {
	padding: 8px 16px;
}
#requestForm *.box textarea.full {
	height: 200px;
}
#requestForm *.box div.line {
	width: 100%;
}
#requestForm *.box *.contentBox {
	justify-content: flex-start;
	
}
#requestForm *.box sup {
	margin: 0 8px;
	font-size: 24px;
}
/*----------*/
/* !BLUE BOX */
/*----------*/
div.bluBox {
	background: var(--goldLight);
	padding: 24px;
	text-align: center;
}
/*--------*/
/* FOOTER */
/*--------*/
footer {
	border-top: 24px solid var(--white);
	background: var(--blue);
	padding-top: 24px;
	max-width: 100%;
}
footer div.content {
	padding-bottom: 24px;
}
footer * {
	color: var(--white);
}
footer a,
footer a * {
	color: var(--white);
}
footer p {
	padding: 0 0 8px 0;
}
footer a:hover,
footer a:hover * {
	color: var(--gold);
}
footer div.flex {
	align-content: center;
	align-items: center;
}
footer picture.logo img {
	filter: brightness(0) invert(1);
	height: 88px;
	width: auto;
}
footer div.contact {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
footer div.contact a {
	margin: 0 0 8px 0;
	width: 100%;
}
footer div.contact a:hover {
	color: var(--gold);
}
footer div.contact a i{
	margin-right: 4px;
}
footer ul.social {
	width: 100%;
	text-align: right;
	margin-bottom: 16px;
	justify-content: flex-end;
}
footer h4 {
	font-size: 16px;
	line-height: 24px;
}
footer ul.menu {
	padding: 0;
	margin: 0 -16px;
	display: flex;
	justify-content: flex-start;
}
footer ul.menu li {
	padding: 0 16px;
	list-style: none;
}
footer ul.menu li a {
	font-size: 12px;
}
footer ul.social li a {
	background: var(--gold);
	border-radius: var(--borderRadius);
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	font-size: 20px;
}
footer ul.social li a:hover {
	background: var(--blueDark);
	color: var(--gold);
}
@media ( max-width: 1240px ) {
	
}
@media ( max-width: 998px ) {
	
}
@media ( max-width: 768px ) {
	footer ul.social,
	footer ul.menu,
	footer *.flex.flexEnd, 
	footer *.flexbox.flexEnd  {
		justify-content: center;
	}
}
@media ( max-width: 589px ) {
	footer div.contact {
		text-align: center;
		justify-content: center;
	}
	footer p {
		text-align: center;
	}
	
}
/*------------*/
/* !SUBFOOTER */
/*------------*/
div.subfooter {
	background: var(--blueDark);
	border-bottom: 2px solid var(--gold);
	padding: 16px 0;
	overflow: hidden;
}
footer div.subfooter div.content {
	padding: 0;
}
div.subfooter p {
	padding: 0;
	color: var(--white);
	opacity: 0.8;
	font-size: 12px;
}
/*----------*/
/* !SECTION */
/*----------*/
.ti-footer {
	display: none;
}