/* montserrat-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: 'Montserrat';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/montserrat-v26-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-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: 'Montserrat';
	font-style: normal;
	font-weight: 300;
	src: url('../fonts/montserrat-v26-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
	--white			:	#fff;
	--grey			:	#6d767c;
	--light			:	#f5f5f5;
	
	--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;
	--gradient		:	conic-gradient(from 315deg, #72245B, #271D2E);
	--transition	:	all 0.2s ease-in-out;
	
	--maxWidth		:	1524px;
}
/* ------ */
/* 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: 'Montserrat';
	font-weight: 400;
}
body,
html {
	width: 100%;
	height: 100%;
	background: var(--white);
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	padding: 0 0 24px 0;
	font-size: 24px;
	line-height: 32px;
	color: var(--textColor);
	text-shadow: var(--textShadow);
}
h1, h2 {
	font-size: 48px;
	line-height: 56px;
}
@media( max-width: 589px ) {
	h1, h2 {
		font-size: 24px;
		line-height: 32px;
	}
}
p {
	padding: 0 0 24px 0;
	color: var(--textColor);
}
b, strong {
	font-weight: 700;
}
a {
	color: var(--mainColor);
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}
a:hover {
	color: var(--mainColor);
}
a img {
	border: none;
}
*.clear {
	clear: both;
}
*.center {
	text-align: center;
}
/*--------*/
/* 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;
}
/*--------*/
/* INPUT  */
/*--------*/
label {
	font-size: 14px;
	padding-bottom: 2px;
	text-align: left;
}
input,
select,
textarea {
	font-size: 16px;
	border: 1px solid var(--grey);
	background: var(--white);
	border-radius: var(--borderRadius);
	padding: 4px 16px;
}
input:focus,
select:focus,
textarea:focus {
	outline: none;
	border: 1px solid var(--mainColor);
}
input[type="radio"]:focus,
input[type="checkbox"] {
	
}
/*--------*/
/* 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: 5s;
	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;
}
ul.check li::before {
	content: '\f00c';
	font-family: "Font Awesome 5 Free"; 
	font-weight: 900;
	width: 24px;
	height: 24px;
	background: var(--yellow);
	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%);
}
/*-------------*/
/* BLOCKQUOTE  */
/*-------------*/
blockquote {
	position: relative;
	font-size: 40px;
	line-height: 48px;
	color: var(--textColor);
	text-shadow: var(--textShadow);
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	padding: 24px 0;
}
blockquote::after,
blockquote::before {
	content: '\f10e';
	font-family: "Font Awesome 5 Free"; 
	font-weight: 900; 
	font-size: 64px;
	line-height: 64px;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%) translateY(-60%);
}
blockquote::after {
	content: '\f10d';
	top: 100%;
	transform: translateX(-50%) translateY(-50%);
}
/*------------*/
/* SELECTION  */
/*------------*/
::selection {
	background: var(--mainColor);
	color: var(--white);
}
::-moz-selection {
	background: var(--mainColor);
	color: var(--white);
}
/*---------*/
/* BUTTON  */
/*---------*/
/*---------*/
/* BUTTON  */
/*---------*/
*.buttons {
	display: flex;
	flex-wrap: nowrap;
	margin: 0 -8px;
}
*.buttons *.btn {
	margin: 0 8px;
}
*.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(--mainColor);
	color: var(--white);
	border-radius: var(--borderRadius);
	border: 2px solid transparent;
}
*.btn.btn-small {
	padding: 6px 12px;
}
*.btn:hover {
	background: var(--secondColor);
}
*.btn.btn-outlined {
	background: var(--white);
	color: var(--mainColor);
	border-radius: var(--borderRadius);
	border-color: var(--mainColor);
}
*.btn.center {
	margin: 0 auto;
	float: none;
	display: table;
}
/*-------------*/
/* BREADCRUMB  */
/*-------------*/
div#breadcrumb {
	display: inline-block;
	padding: 0 0 64px 0;
	width: 100%;
}
div#breadcrumb div,
div#breadcrumb span {
	float: left;
	font-size: 14px;
	line-height: 16px;
	padding: 0 0 0 0;
	position: relative;
}
div#breadcrumb div.line::after {
	content: '';
	width: 24px;
	height: 1px;
	background: var(--linkColor);
	float: right;
	margin: 7px 16px;
}
div#breadcrumb a:hover,
div#breadcrumb 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 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: 1448px;
	padding: 0 24px;
	display: block;
	margin: 0 auto;
	position: relative;
	z-index: 9;
}
*.article.small {
	max-width: 768px;
	margin: 0 auto;
}
/*-----------------*/
/* !IFRAME / VIDEO */
/*-----------------*/
div.iframe,
div.video {
	position: relative;
	border-radius: var(--borderRadius);
	overflow: hidden;
	background: var(--yellow);
}
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%;
}
/*------*/
/* 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 {
	display: flex;
	justify-content: flex-end;
	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.full *.flexbox:nth-child(1) *.flexboxContent {
		padding-right: 0;
	}
	*.flex *.flexbox.image.right {
		padding: 0 24px 24px 24px;
	}
}
@media (max-width: 589px) {
	*.flex {
		flex-wrap: wrap;
	}
	*.flex *.flexbox {
		width: 100%;
		max-width: 100%;
		flex-basis: auto;
		flex-grow: initial;
	}
	article *.flex *.flexbox {
		text-align: left;
	}
	*.flexbox + *.flexbox {
		padding: 12px 24px;
	}
	*.flex.full *.flexbox:nth-child(1) *.flexboxContent {
		padding-right: 0;
	}
	*.flex.full *.flexbox:nth-child(2) *.flexboxContent {
		padding-left: 0;
	}
	*.flex + *.flex {
		padding-top: 24px;
	}
	*.flex *.flexbox.image {
		order: -1;
		padding: 0 24px 24px 24px;
	}
}
/*------*/
/* MENU */
/*------*/
div#menu {
	display: none;
}
@media (max-width: 768px) {
	div#menu {
		display: inline-block;
		width: 32px;
		height: 40px;
		margin-left: auto;
		position: relative;
		display: none;
	}
	div#menu::before,
	div#menu::after {
		content: '';
		width: 100%;
		height: 2px;
		background: var(--textColor);
		position: absolute;
		left: 0;
		top: 50%;
	}
	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;
	}
}
/*---------*/
/* HEADER  */
/*---------*/
header#header {
	width: 100%;
	left: 0;
	top: 0;
	z-index: 999;
	padding: 0;
	height: 80px;
	position: absolute;
}
header#header.sticky {
	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;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
header#header div.content a.logo {
	display: inline-flex;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
	height: 80px;
	width: auto;
	padding: 24px 0;
}
header#header div.content a.logo picture {
	width: 100%;
	height: 100%;
}
header#header div.content a.logo picture img {
	width: 100%;
	height: 100%;
	filter: brightness(0) invert(1);
}
header#header.sticky div.content a.logo picture img {
	filter: none;
}
/*------------*/
/* NAVIGATION */
/*------------*/
nav#nav {
	margin-left: auto;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	flex-wrap: nowrap;
}
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;
}
/*----------*/
/* 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);
}
/*---------*/
/* SECTION */
/*---------*/
section {
	background: var(--white);
	padding: 64px 0;
	position: relative;
	z-index: 1;
	min-height: 100%;
	overflow: hidden;
}
section.bg-gradient {
	background: var(--gradient);
}
section.bg-gradient * {
	color: var(--white);
}
section:first-of-type {
	padding-top: 240px;
}
section.bg-image picture.bg,
section.bg-image picture.bg img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
section.bg-image * {
	color: var(--white)
}
@media ( max-width: 1240px ) {
	
}
@media ( max-width: 998px ) {
	
}
@media ( max-width: 768px ) {
	
}
@media ( max-width: 589px ) {
	section:first-of-type {
		padding-top: 124px;
	}
}
/*-----------------*/
/* !SECTION TEASER */
/*-----------------*/
section.teaser {
	width: 100vw;
	height: 100vh;
	padding: 0;
}
section.teaser div.video,
section.teaser picture.bg,
section.teaser picture.bg img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
section.teaser picture.bg img {
	object-fit: cover;
}
section.teaser div.video {
	z-index: 2;
}
section.teaser div.video video {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
section.teaser div.video video img {
	
}
section.teaser div.swiper,
section.teaser div.swiper div.swiper-wrapper,
section.teaser div.swiper div.swiper-wrapper div.swiper-slide {
	width: 100%;
	height: 100%;
}
/*--------*/
/* FOOTER */
/*--------*/
footer {
	padding: 24px 12px;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 99;
	width: 100%;
}
footer p {
	padding: 0;
}
footer *.content {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 24px;
}
footer * {
	color: var(--white);
	font-size: 12px;
	line-height: 24px;
	font-weight: 300;
}
footer ul {
	padding: 0;
	display: flex;
	align-content: center;
	align-items: center;
}
footer ul li {
	list-style: none;
	padding: 0 12px;
}
@media ( max-width: 589px ) {
	footer * {
		text-align: center;
	}
	footer *.flexbox.flexEnd {
		justify-content: center;
	}
}