/* @override 
	https://dev-skr.zh2.de/wp/wp-content/themes/skr/style.css?* */


/*
Theme Name: Schloss Krobnitz
Description: 
Version: 1.0
Author: ZH2
*/


/*	IMPORTS
-------------------------------------------------------------------------------*/

/*Typekit*/
@import url("https://use.typekit.net/kcw7mlm.css");


/* @group WEBFONTS */

/*	WEBFONTS
-------------------------------------------------------------------------------*/




/* Icon Font – extra here for iframe views in WP Editor and TinyMCE */
@font-face { 
  font-family: 'icons';
  font-style: normal;
  font-weight: normal;
  src: url('assets/icons/fonts/icons.woff') format('woff');
}



/* @end */

/* @group RESET */

/*	RESET
-------------------------------------------------------------------------------*/


article, aside, figure, footer, header, hgroup, nav, section {display: block;}
img, picture, video, canvas, svg {display:  block; max-width: 100%; height:auto;}

/* force a vertical scrollbar to prevent a jumpy page */
html {overflow-y: scroll;}

/* we use a lot of ULs that aren't bulleted. 
   don't forget to restore the bullets within content. */
ul {list-style: none;}

blockquote, q {quotes: none;}

blockquote:before,
blockquote:after,
q:before,
q:after {content: ''; content: none;}

a {margin: 0; padding: 0; vertical-align: baseline;}
del {text-decoration: line-through;}
abbr[title], dfn[title] {border-bottom: 1px dotted #000; cursor: help;}

/* tables still need cellspacing="0" in the markup */
table {border-collapse: collapse; border-spacing: 0;}
th {font-weight: 700; vertical-align: bottom;}
td {font-weight: normal; vertical-align: top;}

input, button, textarea, select { font: inherit; margin: 0; border-radius: 0;}
input:focus, textarea:focus, select:focus { AUS_outline: none;}

input { /* remove top input shadow */
-webkit-appearance: none;
-moz-appearance: none;
}

*:focus:not(:focus-visible) { outline: none }

table {font-size: inherit; font: 100%;}

a:hover, a:active {outline: none;}

/* standardize any monospaced elements */
pre, code, kbd, samp {font-family: monospace, sans-serif;}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
button {cursor: pointer;}


/* prevent flickering on touch */
* {
	-webkit-tap-highlight-color:transparent;
}

/* natural box layout model to all elements */
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
 }

 /* subscript and superscript */
sub { vertical-align: sub; font-size: 70%; line-height: 0; }
sup { vertical-align: super; font-size: 70%; line-height: 0; }

/* fine-grained control over hyphenation in text */
* { hyphenate-limit-chars: 10 4 4; }

/* @end */


/* @group VARS */


/*	VARS
-------------------------------------------------------------------------------*/


/* Color Info

SKR blue			#0F3866
secondary		#F7D788

primary-100		#E7EBF0
primary-50		#F3F5F7


*/

:root {
	--base-font-size: 19px;
	--base-line-height: 1.6;

	--body-bg: #FFF;
	
	--text-color: #000;
	--link-color: #000;
	--link-color-hover: var(--text-muted);

	--border-color: #DDD;

	--primary-color: #0F3866;
	--secondary-color: #F7D788;

	--primary-100: #E7EBF0;
	--primary-50:  #F3F5F7;

	--secondary-300: #FDF3DB;
	--secondary-500: #FBEBC3;

	--primary-bg: var(--primary-100);
	--secondary-bg: var(--secondary-300);

	--text-muted: #757575;

	--font-sans: vista-sans, sans-serif;

	--text-tiny: 0.75rem;
	--text-small: 0.9rem;
	--text-base: var(--base-font-size);
	--text-large: 1.2rem;
	
	--text-tiny: calc(var(--base-font-size) * .65);
	--text-small: calc(var(--base-font-size) * .85);
	--text-base: var(--base-font-size); 
	--text-large: calc(var(--base-font-size) * 1.25);
	
	
	--default-width: calc((820/16) * 1rem);
	--wide-width: calc((1440/16) * 1rem);
	--semiwide-width: calc((1200/16) * 1rem);
	--full-width: 100%;
	
	--page-padding: 40px;

	--main-padding-top: clamp(4rem, 10vw, 6.0rem);
	--main-padding-bottom: clamp(5.6rem, 20vw, 8.4rem); 
		
 	--space-xs: 10px;
	--space-sm: 20px;
	--space-md: 30px; 	/* base (1.5rem, 4vw, 2rem)*/
	--space-lg: clamp(44px, 5vw, 50px);  /*2.5rem*/
	--space-xl: clamp(60px, 7vw, 80px); 	/*4rem */
	--space-xxl: clamp(80px, 11vw, 116px);  /* (5rem, 9vw, 7rem)*/
	--space-xxxl: clamp(100px, 14vw, 140px); /*(7rem, 12vw, 9rem)*/


	--block-gap: var(--space-md);
	--block-gap-text: 1.5rem;

	--columns-gap: clamp(30px, 5vw, 50px);
	
	--box-padding: clamp(25px, 5vw, 40px);
	
	--box-padding-sm: clamp(20px, 5vw, 30px);
	--box-padding-md: var(--box-padding);
	--box-padding-lg: clamp(25px, 5vw, 40px);
	--box-padding-xl: clamp(25px, 5vw, 60px);
	--box-padding-xxl: clamp(40px, 5vw, 80px);

	--radius: 0px;
	--field-radius: 5px;
	--media-radius: var(--radius);

	--header-height: 150px;
 }
 
 @media screen and (max-width: 1024px) {
	 :root {
		--header-height: 130px; 
	}
}



  
 @media screen and (max-width: 600px) {
	 :root {
		--base-font-size: 18px;
		--page-padding: 20px;
		--block-gap: 1.5rem;
		--header-height: 100px; 
	}
}


/* @end */



/* @group GENERAL */


/* GENERAL
---------------------------------------------------------------------------------*/


html {
	height: 100%;
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	 -webkit-text-size-adjust: 100%;
    font-feature-settings: 'pnum' on, 'lnum' on;
}

body {
	height: 100%;
	font-family: var(--font-sans);
	font-size: var(--base-font-size);
	line-height: var(--base-line-height);
	color: var(--text-color);
	background: var(--body-bg);
}



a {
	position: relative;
	color: var(--link-color);
	text-decoration: none;
	text-underline-offset: 0.08em;
}

a, input {
	transition: all 200ms ease;
}

a:visited {
}

a:active {
}

a:hover {
}

:where(.entry-content) a {
	text-decoration: underline;
}

:where(.entry-content) a:hover {
	text-decoration: none;
	color: var(--link-color-hover);
}




/* TYPOGRAPHY
---------------------------------------------------------------------------------*/


h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	margin-bottom: 0;
	text-wrap: balance;
	word-break: break-word;
	overflow-wrap: break-word;
}


h1, .is-style-h1 {
	font-size: 3rem;
	line-height: 1.2;
}

:where(.is-layout-flow, .is-layout-constrained) h1 + * {
	--block-gap: 4rem;
}

h2, .is-style-h2 {
	font-size: 2rem;
	line-height: 1.3;
	--block-gap: 3rem;
}

h3, .is-style-h3 {
	line-height: 1.5;
	font-size: 1.4rem;
}

h4, .is-style-h4 {
	line-height: 1.4;
	font-size: 1.1rem;
	color: var(--text-muted);
	text-transform: uppercase;
}

:where(p,ul,ol) {
	margin: var(--block-gap-text) 0 0 0;
	--block-gap: var(--block-gap-text);
}

hr {
	position: relative;
	display: block;
	clear: both;
	height: 1px;
	border: 0;
	background: transparent;
	border-bottom: 1px solid var(--border-color);
	margin: 3rem 0;
}


@media screen and (max-width: 1024px) {

}


@media screen and (max-width: 840px) {

}


@media screen and (max-width: 600px) {

}


@media screen and (max-width: 360px) {

}

/* @end */


/* @group ELEMENTS */

/* === Lists */
ul, ol {
}

ul {
	padding-left: 2.5ch;
	list-style-type: revert;
}

li {
	position: relative;
	margin: 0 0 5px 0;
}

ul li::marker {
}


li ul {
	margin-top: 5px;
}

ol {
	padding-left: 2.5ch;
}

ol li {
	list-style: revert;
}

.list-unstyled,
.list-unstyled li {
	padding: 0;
	margin: 0;
	list-style: none;
}

.list-unstyled li:before {
	display: none;
}

/* list style: icon */

ul[class*="is-style-icon"],
ul[class*="is-style-icon"] ul {
	--list-icon-width: 2.2rem;
	list-style: none;
	padding-left: 0;
}

ul[class*="is-style-icon"] li {
	position: relative;
	padding-left: calc(var(--list-icon-width));
	padding-bottom: .1em;
}

ul[class*="is-style-icon"] li::before {
  content: '✓'; 
  position: absolute;
  left: 0;
  top: 0.1em;
  font-family: 'icons';
  font-size: 1.3em;
  display: inline-flex;
  width: var(--list-icon-width);
  align-items: center;
  line-height: 1;
 }
 
ul.is-style-icon-check li::before {
	content: '\e94a';
}

ul.is-style-icon-download li::before {
	content: '\e948'; 
}

ul.is-style-icon-arrow li::before {
 content: '\e93a';
}


/* === Caption */


figcaption {
	font-size: var(--text-small);
	line-height: 1.4;
	margin: 10px 0 10px 0;
	text-align: left;
	word-break: break-word;
	overflow-wrap: break-word;
	margin: 1rem 0; 
	color: var(--text-muted)
}


/* WP Edit Link */

a.post-edit-link {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 10;
	font-size: 11px;
	padding: 8px 12px;
	text-transform: uppercase;
	text-decoration: none;
	background: #0073AA;
	color: #FFF;
}



/* === Embeds, iFrames  */

.embed-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.embed-responsive iframe,
.embed-responsive object,
.embed-responsive embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}


/* === Icons */


i[class^="icon-"] {
	font-family: 'icons';
}

i.icon {
	font-weight: normal!important;
}

.icon.download {
	font-size: 1.9rem;
	color: var(--link-color);
	margin: 0 5px 5px 0;
	vertical-align: middle;
	display: inline-block;
}

.icon.download:before {
	margin: 0;
}

.icon.bullet {
	font-size: 85%;
}


/* === WP Styles */

/* default padding for has-background + override WP default */
:is(p,ul,ol,*).has-background,
.has-background { 
	padding: var(--box-padding);
	border-radius: var(--radius);
}


.alignfull.has-background {
	border-radius: 0;
}

.has-global-padding.alignfull {
	border-radius: 0;
	padding-inline: 0;
	padding-inline: var(--page-padding);
}

.alignfull:not(.has-global-padding) {
	AUS_padding: inherit;
}

.alignfull > .has-background {
	padding: var(--box-padding);
}

.alignfull > .has-background > * { /*BE*/
       padding-inline: 0;
}

.is-root-container :where(.has-global-padding:not(.has-background)) { /*BE*/
	padding-inline: 0;
}


:is(ul,ol).has-background { /*add space for bullets*/
	padding-left: calc(var(--box-padding) + 1rem);
}

.has-small-font-size {
	font-size: var(--text-small);
}

.has-large-font-size {
	font-size: var(--text-large);
}


/* === Highlight Anchor Links */


.entry-content :target {
    animation: highlight 500ms ease-in;
}

@keyframes highlight {
    from {
        background-color: rgb(253 224 71);
    }
    to {
        background-color: #fff;
    }
}



/* @end */




/* @group LAYOUT */

/* LAYOUT
----------------------------------------------------------------------------------*/


/* # Container */


.page-wrap {
}


.container,
.container-fluid {
	position: relative;
	max-width: calc(var(--wide-width) + 2 * var(--page-padding));
	margin: 0 auto;
	padding: 0 var(--page-padding);
}

.content-width { /*add to container class*/
	max-width: calc(var(--default-width) + 2 * var(--page-padding));
}


.entry-content {
}

.stack > *:first-child {
	margin-top: 0;
}


/*
.wp-block-post-content is root container for all content blocks
in backend editor AND frontend
*/

.wp-block-post-content {
	padding-left: var(--page-padding);
	padding-right: var(--page-padding);
}

.wp-block-post-content.is-root-container { /*backend editor*/
	padding-inline: var(--page-padding)!important;
}


.wp-block-post-content > *:first-child {
	margin-top: 0;
}

.wp-block-post-content > *:last-child {
  margin-bottom: 0!important;
}


/* alignment */
  

.is-layout-flow > .alignwide {
	max-width: var(--wide-width);
}

.is-layout-constrained .alignsemiwide {
	max-width: var(--semiwide-width);
}

.is-layout-flow > .alignfull {
	margin-right: calc(var(--wp--style--root--padding-right) * -1);
	margin-left: calc(var(--wp--style--root--padding-left) * -1);
}


/* @end */

/* @group HEADER */

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


#header {
	height: var(--header-height);
	transition: 300ms;
	display: flex;
	align-items: center;
	color: #FFF;
	background: var(--primary-color);
}

@media screen and (min-width: 100rem) {
	#header {
		--page-padding: 80px;
	}
}


#header > .container {
	flex: 1 0 auto;
	display: flex;
	align-items: center;
	max-width: 100%;
	transition: 250ms ease;
}

/* Logo */


.logo {
	flex: 0 0 auto;
	width: clamp(240px, 20vw, 260px);
    transition: all 0.3s ease;
	margin-top: -1px; /*balance*/
}

.logo a {
	display: block;
}

.logo img {
	display: block;
	width: 100%;
	height: auto;
}


@media screen and (max-width: 600px) {
	.logo {
		width: 195px;
	}

}

.header-toolbar {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: nowrap;
	gap: 30px;
	margin-left: auto;
	
	border: 1px solid TAN;
}


.menu-lang {
	position: relative;
	display: flex;
	align-items: center;
	font-weight: bold;
	width: 6ch;
	margin-right: -.3rem;
	height: 3.2rem;
	background: #FFF;
	border: 0px solid RED;
}


/* gTranslate */

.lang-dropdown {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	padding-top: 0;
	background: #FFF;
	cursor: pointer;
	border: 1px solid #FFF;
}

.lang-dropdown.open {
	border-radius: 2px;
	border-color: var(--primary-color);
}

.lang-dropdown.open a {
	display: block;
	border-top: 1px solid var(--primary-color);
}

.lang-dropdown.open a:hover {
	opacity: .6;
}

.lang-dropdown a {
	display: none;
	padding: 10px 3px;
	text-align: center;
}

.lang-dropdown a.gt-current-lang {
	display: flex;
	justify-content: center;
	align-items: center;
	order: -1;
	pointer-events: none;
	border:  none;
}

.lang-dropdown a[data-gt-lang="de"] {
}

.lang-dropdown a.gt-current-lang::after {
	content: "\e804";
	font-family: 'icons';
	font-weight: normal;
	font-size: 1.3rem;
	line-height: 1;
	margin: 0 -1px 0 0px;
}

.lang-dropdown.open a.gt-current-lang {
	opacity: .3;
}

.lang-dropdown.open a.gt-current-lang::after {
	transform: rotate(180deg);
}



@media screen and (max-width: 600px) {
	.menu-lang {
		display: none;
	}
}


/* @end */




/* @group MENU */

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



/* Mobile Menu
--------------------------------------------------------------------------------- */

.mob-menu {
	display: none; /*js trigger*/
	position: fixed;
   	right: 0;
   	top: 0;
	width: 28rem; /*the width*/
	width: clamp(30rem, 60vw, 36rem);
	min-height: 100vh;
    height: 100%;
	z-index: 10;
	opacity: 0;
	background: #FFF;
	animation: navfadeInRight 400ms ease-in-out 1 forwards;
}

.mob-menu :where(a) {
	color: var(--primary-color);
}

.mob-menu a:hover {
	text-decoration: none;
}

.mob-menu.open::after { /*overlay*/
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	transform: translateX(-100%);
	background: rgba(0,0,0, .2);
	z-index: 2;
	pointer-events: none;
	transition: none;
}

@media screen and (max-width: 600px) {
	.mob-menu.open::after { /*overlay*/
		display: none;
	}
}


@media screen and (max-width: 600px) {
	.mob-menu {
		position: absolute;
		min-height: auto;
		height: auto;
	
		width: 100vw; /*the width*/
		animation: navfadeInTop 400ms ease-in-out 1 forwards;
		box-shadow: 0px 0px 60px 0px rgba(0,0,0, .2);
	}

	.mob-menu.open::after {
		top: auto;
		bottom: 0;
		transform: translate(0,100%);	
	}

}


.mob-menu .inner {
    height: 100%;
    overflow-y: scroll;
	padding: 50px 90px;
	padding-top: calc(var(--header-height) / 1.10);
	padding-inline: clamp(50px, 8vw, 100px);
}

@media screen and (max-width: 600px) {
	.mob-menu .inner {
		padding-bottom: 80px;
		padding-top: calc(var(--header-height) * 0.8);
		padding-inline: 40px;
	}
}


.mob-menu-open .mob-menu {
	display: flex;
	flex-direction: column;
}


.mob-menu-lang {
	position: relative;
	display: flex;
	gap: 20px;
	display: none; /*show on mob only*/
}

@media screen and (max-width: 600px) {
	.mob-menu-lang {
		display: flex;
	}
}


.mob-menu-lang a {
	line-height: 1;
	padding: 0.2em 0;
	margin-left: -1px;
	opacity: .3;
	font-weight: bold;
	border: 0px solid #333;
}

.mob-menu-lang a:hover {
	opacity: 1;
}

.mob-menu-lang  a:first-child {
}

.mob-menu-lang  a.gt-current-lang {
	opacity: 1;
	pointer-events: none;
	border-bottom: 2px solid #333;
}

.mob-social {
	margin: var(--space-lg) 0 0 -.4rem;
	display: flex;
	gap: 16px;
}

.mob-social a {
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1;
	width: calc(48/16 * 1rem);
	border-radius: 100rem;
	background: var(--primary-50);
	font-size: 1.7rem;
}

.mob-social a:hover {
	color: var(--primary-color);
	background: var(--primary-100);
}

.mob-search {
	position: relative;
	margin: var(--space-md) 0 0 0;
}

.mob-search .searchform {
	width: 100%;
	border: none;
	box-shadow: none;
	overflow: hidden;
}

.mob-search input.s {
	font-size: var(--text-base);
	padding: 15px 2px;
	height: 3.6rem;
	border: none;
	border-bottom: 1px solid var(--border-color);
	width: 100%;
	transition: 300ms ease;
}

.mob-search .searchform button {

}

.mob-search input::placeholder {
}

.mob-search input:focus {
	border-color: var(---primary-color);
	outline: none;
}

.mob-search button {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	border: none;
	line-height: 1;
	overflow: hidden;
	padding: 0;
	background: transparent;
	width: 2.9rem;
	font-size: 24px;
	color: var(--primary-color);
}

.mob-menu nav {
}

.mob-menu nav li a {
	display: flex;
	font-size: var(--base-font-size);
	line-height: 1.3;
	letter-spacing: .02em;
	text-transform: uppercase;
	text-decoration: none;
	padding-block: .6em;
	text-align: left;
	color: var(--primary-color);
}

.mob-menu nav li:first-child a {
	border-top: 0;
}

.mob-menu nav li a:hover {
	color: var(--primary-color);
	opacity: .6;
}

.mob-menu nav li.current-menu-item > a {
	AUS_color: var(--text-muted);
}

.mob-menu nav li.menu-item-has-children.active > a {
}

.mob-menu nav li.menu-item-has-children > a::after {
	content: "\e814";
	display: flex;
	margin-bottom: auto; /*!*/
	margin-left: 0.3rem;
	align-items: flex-start;
	color: rgba(0,0,0, .2);
	font-family: 'icons';
	font-weight: normal;
	font-size: 1.3rem;
	line-height: 1;
	transition: all 300ms ease;
	
	background: CYAN;
}

.mob-menu nav li.menu-item-has-children.active > a::after {
	transform: rotate(180deg);
}

.mob-menu nav li.active > a {
}


.mob-menu nav li ul {
	position: relative;
	padding: 0 0 0 20px;
	margin: 0;
	margin-bottom: 10px;
}

.mob-menu nav li li {
	transform: none;
	opacity: 1;
	animation: none;
}

.mob-menu nav li li a {
	text-transform: none;
	letter-spacing: 0;
}


/* Menu Items Styles */


/* style: icon */

.mob-menu li.menu-item-style-icon {
	--icon-size: 80px;
	--icon-gap: 12px;
}

.mob-menu li.menu-item-style-icon + li.menu-item-style-icon {
	margin-top: 16px;
}

.mob-menu li.menu-item-style-icon + li:not(.menu-item-style-icon) {
	margin-top: var(--space-lg);
}


.mob-menu li.menu-item-style-icon a {
	position: relative;
	flex: 0 0 auto;
	display: grid;
	grid-template-columns: var(--icon-size) auto;
	gap: var(--icon-gap);
	align-items: center;
	font-weight: bold;
	padding: 0;
	border: 0px solid PINK;
	
}

.mob-menu ul li.menu-item-style-icon a::after {
	display: none;
}


.mob-menu li.menu-item-style-icon a span {
	content: "";
	display: block;
	width: 100%;
	aspect-ratio: 1;
	order: -1;
	margin-left: -16%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.mob-menu li.menu-item-style-icon ul {
	padding-left: calc(var(--icon-size) + var(--icon-gap));
}

.mob-menu li.menu-item-style-icon ul {
	margin-top: calc(var(--icon-size) * .05 * -1);
}

.mob-menu li.menu-item-style-icon ul li a {
	padding-block: .5em;
	font-weight: normal;
}


/* Mobile List Animation */


.mob-menu li {
	opacity: 0;
	transform: translate(20px, 0px);
	animation: list-slide-in 400ms ease-in-out forwards;	
	animation-delay: calc((sibling-index() - 1) * 80ms);
 }
 
 @media screen and (max-width: 600px) {
	.mob-menu li {
	transform: translate(0px, -20px);
	}

}
 
 @keyframes list-slide-in {
  to {
    opacity: 1;
    transform: translate(0,0);
 }
}





/* Mobile Menu Animation */

@keyframes navfadeInRight {
0% {
	opacity: 0.0;
	transform: translate(200px,0);
}

100% {
	opacity: 1.0;
	transform: translate(0,0);
	}
}

@keyframes navfadeInTop {
0% {
	opacity: 0.0;
	transform: translate(0,-100px);
}

100% {
	opacity: 1.0;
	transform: translate(0,0);
	}
}


@keyframes navfadeOut {
0% {
	opacity: 1.0;
	transform: translate(0px,0);
}

100% {
	opacity: 0.0;
	transform: translate(0px,-50px);
	}
}



/* Mobile Menu Trigger */

.mob-menu-trigger {
	--hamburger-stroke-color: #FFF;
	--hamburger-stroke-width: clamp(26px, 3vw, 32px);
	--hamburger-stroke-height: 2px;
	--hamburger-stroke-gap: 8.5px;
	--hamburger-stroke-radius: 0px;

	display: block;
	position: absolute;
	top: 50%;
	right: 20px;
	right: calc(var(--page-padding) - 10px);
	transform: translateY(-50%);

	border: none;
	width: 50px;
	height: 49px;
	margin: 0 0 0 0;
	z-index: 999;
	text-transform: uppercase;
	background: transparent;
}

.mob-menu-trigger.open {
	--hamburger-stroke-color: var(--primary-color);
	position: fixed;
	top: calc(var(--header-height) / 2);
}

.mob-menu-trigger::before { /* Menu Label */
	content: "Menü";
	position: absolute;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	padding-inline: 10px;
	font-size: calc(17/16 * 1rem);
	color: #FFF;
	transform: translate(-100%, 0);
}

.mob-menu-trigger.open::before {
	display: none;
}

@media screen and (max-width: 600px) {
	.mob-menu-trigger.open {
		position: absolute;
		top: 50%;
	}
	
	.mob-menu-trigger::before {
		display: none;
	}
}


.mob-menu-open .mob-menu {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}


/* Hamburger Icon ani*/


.mob-menu-trigger span {
	margin: 0 auto;
	position: relative;
}
.mob-menu-trigger span:before,
.mob-menu-trigger span:after {
	position: absolute;
	content: '';
}
.mob-menu-trigger span,
.mob-menu-trigger span:before,
.mob-menu-trigger span:after {
	width: var(--hamburger-stroke-width);
	height: var(--hamburger-stroke-height);
	background-color: var(--hamburger-stroke-color);
	border-radius: var(--hamburger-stroke-radius);
	display: block;
}

.mob-menu-trigger span:before {
	margin-top: calc(var(--hamburger-stroke-gap) * -1);
}
.mob-menu-trigger span:after {
	margin-top: calc(var(--hamburger-stroke-gap) * 1);
}

.mob-menu-trigger span {
	transition-duration: 0s;
	transition-delay: 0.15s;
}
.mob-menu-trigger.open span {
	background-color: rgba(0,0,0,0.0);
	transition-delay: 0.15s;
}
.mob-menu-trigger span:before {
	transition-property: margin, transform;
	transition-duration: 0.15s;
	transition-delay: 0.15s, 0s;
}
.mob-menu-trigger.open span:before {
	margin-top: 0;
	transform: rotate(45deg);
	transition-delay: 0s, 0.15s;
}
.mob-menu-trigger span:after {
	transition-property: margin, transform;
	transition-duration: 0.15s;
	transition-delay: 0.15s, 0s;
}
.mob-menu-trigger.open span:after {
	margin-top: 0;
	transform: rotate(-45deg);
	transition-delay: 0s, 0.15s;
}

/* end Hambuger Icon ani*/


/* @end */



/* @group CONTENT */

/* CONTENT
--------------------------------------------------------------------------------- */

#content {
	position: relative;
	overflow-x: clip;
}


main {
	padding-top: 0;
	padding-top: var(--main-padding-top);
	padding-bottom: var(--main-padding-bottom);
	min-height: 50vh;
}


/* @end */



/* @group WP BLOCK EDITOR  */

/* WP BLOCK EDITOR
--------------------------------------------------------------------------------- */


.editor-styles-wrapper { 
	overflow-y: auto; 
}

.is-root-container {
	overflow: hidden; /*fix for swiper js is-overflow*/
}

.is-root-container.wp-block-post-content {
	padding: var(--main-padding-top) 0 var(--main-padding-bottom) 0; 
}


.wp-block {
	box-sizing: border-box;
}


.wp-block.components-placeholder {
	margin-top: var(--block-gap); /*e.g. for Shortcode block*/
}


.wp-block[class*="wp-block-acf-"].is-selected { /* for selected custom ACF blocks */
}


.wp-block[data-align] {
	float: none!important;
	max-width: var(--default-width);
}

.wp-block[data-align="wide"] {
	
}

.wp-block input { /* unset */
	-webkit-appearance: auto;
	-moz-appearance: auto;
}


.wp-block.acf-block-preview a { /*disable link clickability*/
	pointer-events: none; 
}

/*fix double root padding in BE (bc has-global-padding is missing on is-root-container on PHP templates)*/
:where(.is-root-container) :where(.has-global-padding:not(.wp-block-block)) {
	padding-right: 0;
	padding-left: 0;
}

/* disable drop cap in block preview */
.has-drop-cap:not(:focus):first-letter {
	all: unset;
}

/*remove underlinded links on pattern edit mode */
.block-editor-block-list__layout a:where(:not(.wp-element-button)) {
    text-decoration: unset;
}

/* ACF fields */

.block-editor-block-list__block.acf-block-component.is-selected {
	display: block;
}

.acf-field {
	-moz-osx-font-smoothing: auto;
}

.acf-field ul, 
.acf-field ol {
	padding: 0;
	margin: 0;
}

.editor-styles-wrapper .acf-fields :where(th,tr,td) {
	box-sizing: initial;
}

.acf-field a,
.acf-field a:hover {
	color: #0783BE;
	text-decoration: none;
}

a.acf-icon {
	color: #0783BE;
}

.acf-fields table { 
	border-collapse: inherit;
}

/*ACF block in editing mode */
.block-editor-block-list__block.acf-block-component.is-selected {
  display: block;
}

/*ACF block - when empty add some height*/
.block-editor-block-list__block.acf-block-component {
	min-height: 30px;
}


 /* Helper - Block Outline */	
 
.block-editor-block-list__block.acf-block-preview:not(.block-visibility__has-visibility).wp-block,
.block-editor-block-list__block.acf-block-preview:not(.block-visibility__has-visibility) .wp-block,
.block-editor-block-list__block:not([data-type*="acf"]):not(.is-reusable):not(.block-visibility__has-visibility),
.block-editor-block-list__block.block-visibility__has-visibility.is-selected.wp-block {
	outline: 1px solid rgba(0,0,0, .13);
}

.block-editor-block-preview__content-iframe .block-editor-block-list__block {
	outline: none!important; /*no block outlines in block previews*/
}

.edit-site-style-book__examples .block-editor-block-list__block {
	outline: none!important; /*no block outlines in style book examples*/
}

.block-editor-block-list__block:not([data-type*="acf"]):not(.is-reusable) .wp-block {
	outline-offset: -1px; /*prevent overlapping outline of nested blocks*/
}

/* Helper - Missing Blocks */

.wp-block.wp-block-missing {
	border: 2px solid RED;
}

/* TinyMCE - fix CSS conflicts, halbwegs */

.mce-tinymce .mce-btn button {
	font-size: 20px;
}

/* reset editor-styles in ACF fields with TinyMCE */

#tinymce {
	background: #FFF;
}

#tinymce * {
	margin: revert;
	padding: revert;
	font-size: .938rem;
	line-height: 1.4;
	color: #000;
	font-family: sans-serif;
	list-style: inside;
}

#tinymce::before,
#tinymce::after {
	display: none;
}

#tinymce :where(strong, b) {
	font-weight: bold;
}

#tinymce a {
	color: #2171b1;
	text-decoration: underline;
}

#tinymce h1 { font-size: 2rem; }
#tinymce h2 { font-size: 1.5rem; }
#tinymce h3 { font-size: 1.25rem; }

#tinymce :where(p,h1,h2,h3,h4,h5,hr,ul,ol) { /*helper border*/
	position: relative;
	border: 1px dashed #CCC;
	border-color: #CCC;
	border-color: rgba(1,1,1, 0.25);
	padding: 2px;	
}


/*spacing helper - visualize spaces*/

.spacing-helper {
	display: flex;
	align-items: flex-end;
	gap: 20px;
}

.spacing-helper :where(.space) {
	position: relative;
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #CCC;
	height: var(--space);
}

.space[data-size="xs"]   { --space: var(--space-xs); }
.space[data-size="sm"]   { --space: var(--space-sm); }
.space[data-size="md"]   { --space: var(--space-md); }
.space[data-size="lg"]   { --space: var(--space-lg); }
.space[data-size="xl"]   { --space: var(--space-xl); }
.space[data-size="xxl"]  { --space: var(--space-xxl); }
.space[data-size="xxxl"] { --space: var(--space-xxxl); }

.space::after {
	content: attr(data-size);
	font-size: 14px;
	text-transform: uppercase;
}

.space[data-size="md"] { /*default space*/
	background: lightblue;
}




/* @end */



/* @group WP BLOCKS  */





/* WP BLOCKS
--------------------------------------------------------------------------------- */


/* @group WP HEADING  */


/* WP HEADING
--------------------------------------------------------------------------------- */


/* @end */




/* @group WP PARAGRAPH  */


/* WP PARAGRAPH
--------------------------------------------------------------------------------- */


/* @end */



/* @group WP IMAGE  */


/* WP IMAGE
--------------------------------------------------------------------------------- */


.wp-block-image {
}

.wp-block-image img {
	width: 100%;
	display: inline-block;
}

.wp-block-image:not(.alignfull) img {
	border-radius: var(--media-radius);
}

.wp-block-image.alignwide img,
.wp-block-image.alignfull img {
	width: 100%;
}

.wp-block-image .aligncenter, 
.wp-block-image .alignleft, 
.wp-block-image .alignright {
    display: table;
}

.wp-block-image .aligncenter > figcaption, 
.wp-block-image .alignleft > figcaption, 
.wp-block-image .alignright > figcaption {
    display: table-caption;
    caption-side: bottom; 
}


figcaption,
.wp-block-image figcaption,
.wp-block-embed figcaption {
	font-size: var(--text-small);
	line-height: 1.4;
	font-style: italic;
	margin: var(--space-xs) 0 ;
	text-align: left;
	word-break:break-word;
	overflow-wrap:break-word;
}

/*custom image styles*/

.is-style-image-shadow img {
	box-shadow: 0px 3px 15px -5px rgba(0,0,0, .6);
}


/* wp lightbox*/

.wp-lightbox-overlay .scrim {
	/*add custom bg color here*/
}


/* for Block Editor */

.wp-block[data-align] > .wp-block-image {
}


.wp-block[data-align="left"] > .wp-block-image {
	float: left;
}

.wp-block[data-align="right"] > .wp-block-image {
	float: right;
}


.wp-block-image .components-resizable-box__container { /*remove small space below images*/
    vertical-align: top; 
}

/* @end */


/* @group WP MEDIA-TEXT  */


/* WP MEDIA-TEXT
--------------------------------------------------------------------------------- */


.wp-block-media-text {
	gap: clamp(30px, 5vw, 60px);
}

.wp-block-media-text .wp-block-media-text__media {
}

.wp-block-media-text .wp-block-media-text__media img{
	  border-radius: var(--media-radius);
}

.wp-block-media-text .wp-block-media-text__content {
	padding: 0;
}

.wp-block-media-text__content > :first-child {
	margin-top: 0;
}

.wp-block-media-text__content > :last-child {
	margin-bottom: 0;
}

:where(.wp-block-media-text__content) > * { /*WP missed this*/
	margin-top: var(--block-gap);
}

@media screen and (max-width: 600px) {
	.wp-block-media-text__content {
		
	}

}



/* @end */


/* @group WP GALLERY  */


/* WP GALLERY
--------------------------------------------------------------------------------- */


.wp-block-gallery {
	--wp--style--gallery-gap-default: 20px;
}

.wp-block-gallery > .wp-block-image {
	border-radius: var(--media-radius);
	overflow: hidden;
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  font-size: var(--text-small);
  text-shadow: 0 0 10px #000;
  padding: 10px 10px;
}

.wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before {
	/*WP defaults*/
}


/* @end */

/* @group WP EMBED  */

/* WP EMBED
--------------------------------------------------------------------------------- */

.wp-block-embed {
}

.wp-block-embed__wrapper > * {
	margin: 0 auto!important;
}

.wp-block-embed__wrapper iframe {
	width: 100%;
	border-radius: var(--media-radius);
}

/* @end */


/* @group WP VIDEO  */


/* WP VIDEO (self hosted)
--------------------------------------------------------------------------------- */


.wp-block-video {
}

.wp-block-video video {
	display: block;
	width: 100%;
	border-radius: var(--media-radius);
}

/* @end */


/* @group WP COVER  */

/* WP COVER
--------------------------------------------------------------------------------- */

.wp-block-cover {
}

.wp-block-cover.alignfull {
	padding: var(--page-padding);
}


/* @end */



/* @group WP QUOTE  */

/* WP QUOTE
--------------------------------------------------------------------------------- */

blockquote.wp-block-quote {
	margin-block: var(--space-lg);
	max-width: 40rem;
}


blockquote.wp-block-quote > * {
	font-weight: bold;
	color: var(--primary-color);
}

.wp-block-quote p + p {
}

.wp-block-quote cite {
	display: block;
	font-style: normal;
	font-weight: normal;
	font-size: var(--text-small);
	color: var(--text-muted);
	margin: 10px 0 0 0;
}

/* @end */


/* @group WP PULLQUOTE  */

/* WP PULLQUOTE
--------------------------------------------------------------------------------- */

.wp-block-pullquote,
.wp-block-pullquote.has-background {
	padding-block: var(--space-xl);
}


.wp-block-pullquote blockquote {
	  font-weight: bold;
	  font-size: clamp(36px, 8vw, 40px);
	  line-height: 1.2;
	  max-width: 30ch;
	  margin-inline: auto;
}

.wp-block-pullquote cite {
	display: block;
	font-style: normal;
	font-weight: normal;
	font-size: var(--text-small);
	color: var(--text-color);
	margin: 20px 0 0 0;
}


.wp-block-quote p + p {
}

.wp-block-quote cite {

}

/* @end */

/* @group WP COLUMNS  */


/* WP COLUMNS
--------------------------------------------------------------------------------- */

.wp-block-columns {
}

.wp-block-column {
	
}


/* custom style: breakpoint 1024 */

@media screen and (max-width: 1024px) {
	.is-style-breakpoint-1024 {
		flex-wrap: wrap!important;
	}	
	.is-style-breakpoint-1024> .wp-block-column {
		flex-basis: 100%!important;
	}
}

/* custom style: breakpoint 840 */

@media screen and (max-width: 840px) {
	.is-style-breakpoint-840 {
		flex-wrap: wrap!important;
	}	
	.is-style-breakpoint-840 > .wp-block-column {
		flex-basis: 100%!important;
	}
}


/* @end */




/* @group WP SPACER  */


/* WP SPACER
--------------------------------------------------------------------------------- */

.wp-block-spacer {
}


/* @end */


/* @group WP FILE  */


/* WP FILE
--------------------------------------------------------------------------------- */


.wp-block-file {
	position: relative;
	background: var(--primary-bg);
	background: transparent;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1ch 2ch;
	padding: 0 0 0 2.2rem;
}


.wp-block-file + .wp-block-file {
	margin-top: 0.75em;
	border-top: 0px solid var(--border-color);

}

.wp-block-file__embed {
	border: 1px solid var(--border-color);
}

.wp-block-file a:not(.wp-block-file__button) {
	font-size: var(--base-font-size);
	display: inline-block;
}

.wp-block-file a:not(.wp-block-file__button)::before {
	position: absolute;
	top: 0.00em;
	content: "\e948"; /*e947*/
	font-family: 'icons';
	font-size: 1.5em;
	font-weight: normal;
	line-height: 1;
	margin-left: -2.2rem;
	color: inherit;
}


.wp-block-file__button.wp-element-button {
	font-weight: bold;
	text-transform: uppercase;
	font-size: var(--text-tiny);
	border-radius: 0;
	padding: 4px 15px;
	margin: 0;
	border-radius: 10rem;
	background: transparent;
	color: var(--link-color);
	text-decoration: none;
	border: 1px solid var(--link-color);
}

.wp-block-file__button:hover {
	color: var(--link-color-hover);
	border-color: var(--link-color-hover);
}


/* @end */


/* @group WP TABLE  */


/* WP TABLE
--------------------------------------------------------------------------------- */


.wp-block-table {
}

/* for editor */
.wp-block[data-align] table {
	width: 100%;
}

.wp-block-table table {
	width: 100%;
	max-width: 100%;
}

.wp-block-table table thead {
	text-align: left;
	border-bottom: 3px solid var(--border-color);
}

table thead td {
	font-weight: bold;
}

.wp-block-table  tfoot {
	border-top: 1px solid var(--border-color);
}


.wp-block-table tr {
	background: transparent;
	border-bottom: 1px solid var(--border-color);
}

.wp-block-table tr:last-child {
	border-bottom: none;
}

.wp-block-table tr th {
}

.wp-block-table :is(th,td) {
	border-color: var(--border-color);
	padding: 0.75rem 0.5rem;
}


.wp-block-table p {
	margin: 0;
}

.wp-block-table figcaption {
}


/* custom style: stripes */

.wp-block-table.is-style-stripes {
	border-bottom: none;
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd){
	background: rgba(0,0,0, .04);
}

.wp-block-table.is-style-stripes :is(th,td) {
	padding-left: 15px;
}

.wp-block-table.is-style-stripes :is(tr,thead,tfoot) {
	border: none;
}


/* custom style: lines */

.wp-block-table.is-style-lines {
	border-bottom: none;
}

.wp-block-table.is-style-lines :is(th,td) {
	padding-inline: 0px 15px;
}

.wp-block-table.is-style-lines td:last-child {
	padding-right: 0;
}

.wp-block-table.is-style-lines :is(thead,tfoot, tr, th, td){
	border: none;
}

.wp-block-table.is-style-lines thead tr {
	border-bottom: 2px solid var(--border-color);
}

.wp-block-table.is-style-lines tr {
	border-bottom: 1px solid var(--border-color);
}

.wp-block-table.is-style-lines :not(thead) > tr:last-child {
	border-bottom: none;
}

.wp-block-table.is-style-lines tfoot tr {
	border-bottom: none;
	border-top: 1px solid var(--border-color);

}


/* custom style: blank */

.wp-block-table.is-style-blank {
	line-height: inherit;
}

.wp-block-table.is-style-blank :is(thead, tfoot, tr) {
	border: none;
}

.wp-block-table.is-style-blank :is(th,td) {
	padding-block: 0;
	padding-left: 0;
	border: none;
}


/*for editor - show borders on select*/

.wp-block-table.is-selected table :is(thead,tfoot,th,tr,td) {
	border: 1px dashed #999;
}


/* @end */


/* @group WP GROUP  */

/* WP GROUP
--------------------------------------------------------------------------------- */

.wp-block-group {
}

.wp-block-group.has-background {
	
}

.wp-block-group > .wp-block-group {
	margin-bottom: 0;
}

.wp-block-group > :first-child {
	margin-top: 0;
}

.wp-block-group > :last-child {
	margin-bottom: 0;
}


/* @end */


/* @group WP BUTTONS  */


/* WP BUTTONS
--------------------------------------------------------------------------------- */

.wp-block-buttons { 
	gap: 15px; /*override WP inline default*/
}



div.wp-block-button__link,
.wp-block-button__link  { /*the div is for fse editor */
	width: auto;
	height: auto;
	text-transform: uppercase;
	padding: 15px 30px;
	font-weight: bold;
	font-size: 13px;
	font-size: 1rem;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #FFF;
	letter-spacing: .1px;
	text-decoration: none;
	background: var(--primary-color);
	border: 2px solid var(--primary-color);
	border-radius: 10rem;
}

.wp-block-button__link:hover {
	background: var(--text-color);
	border-color: var(--text-color);
	color: #FFF;
	text-decoration: none;
}

.wp-block-button__link {
}

.wp-block-button__link:hover {
}

.wp-block-button__link:focus-visible {
	outline-offset: 3px;
}

/*custom style: btn-outline*/

.wp-block-button.is-style-btn-outline .wp-block-button__link {
	color: var(--primary-color);
	background: transparent;
}

.wp-block-button.is-style-btn-outline .wp-block-button__link:hover {
	color: var(--text-color);
}


/* @end */



/* @group WP SHORTCODE  */

/* WP SHORTCODE
--------------------------------------------------------------------------------- */

.wp-block-shortcode { /* class only in editor */
}

/* @end */


/* @group WP HTML  */

/* WP HTML
--------------------------------------------------------------------------------- */

.wp-block-html { /* class only in editor */
}

/* @end */


/* @group WP VIDEO  */

/* WP VIDEO
--------------------------------------------------------------------------------- */

.wp-block-video {
}

/* @end */


/* @group WP AUDIO  */

/* WP AUDIO
--------------------------------------------------------------------------------- */

.wp-block-audio {
}

/* @end */


/* @group WP CODE  */


/* WP CODE
--------------------------------------------------------------------------------- */

.wp-block-code {
	border-radius: var(--radius);
	background: #F1F1F1;
}

.wp-block-code code {
	background: none;
	padding: var(--box-padding);
	font-size: 1rem;
}

code {
	margin: 0;
}

/* @end */


/* @group WP DETAILS  */


/* WP DETAILS
--------------------------------------------------------------------------------- */

.wp-block-details {
	--block-gap: 1.4em;
}

.wp-block-details[open] {
}

.wp-block-details summary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: .9em 1.6rem;
	font-size: var(--text-small);
	font-weight: bold;
	line-height: 1;
	background: transparent;
	border-radius: 10rem;
	border: 1px solid var(--border-color);
	transition: all 300ms ease;
}

.wp-block-details summary:hover {
	color: var(--link-color);
}

.wp-block-details summary::marker,
.wp-block-details summary::-webkit-details-marker  {
	/*::marker has no safari support*/
	display: none;
}

.wp-block-details summary::before {
	content: "\e93b";
	display: inline-block;
	margin-left: -.2em;
	font-family: 'icons';
	font-size: 1.3em;
	line-height: 1;
	transform: translateY(4%);
}

.wp-block-details[open] > summary::before {
	transform: rotate(180deg) translateY(5%);
}


.wp-block-details summary + * {
}

.wp-block-details + .wp-block-details {
	margin-top: 3px;
}


.wp-block-details .wp-block-details { /*details within details*/
	margin-left: 30px;
}



/* @end */


/* @group WP FOOTNOTES  */


/* WP FOOTNOTES
--------------------------------------------------------------------------------- */

.wp-block-footnotes {
	font-size: var(--text-tiny);
	padding-top: var(--space-sm);
	border-top: 1px solid var(--border-color);
}




/* @end */


/* @group WP SEPARATOR  */


/* WP SEPARATOR
--------------------------------------------------------------------------------- */

hr.wp-block-separator {
	position: relative;
	display: block;
	clear: both;
	height: 1px;
	border: 0;
	background: transparent;
	border-bottom: 2px solid var(--border-color);
	margin: var(--space-lg) 0;
}


/* @end */

/* @group WP ACCORDION  */


/* WP ACCORDION
--------------------------------------------------------------------------------- */

.wp-block-accordion {
}

.wp-block-accordion-item { 
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	
	border: 1px solid #333;
}

.wp-block-accordion-item + .wp-block-accordion-item {
	margin-top: -1px;
	
}

.wp-block-accordion-heading {
	padding: 0;
	font-size: var(--base-font-size); /*override h2,h3,h4 etc.*/
	line-height: var(--base-line-height);
}

.wp-block-accordion-heading .wp-block-accordion-heading__toggle {
	display: flex;
	gap: 12px;
	padding: 20px 0;
}

.wp-block-accordion-heading__toggle:focus { /*the button*/
}

.wp-block-accordion-heading__toggle:focus {
	border-radius: var(--radius);
	outline-offset: 1px;
}

.wp-block-accordion-heading__toggle:hover .wp-block-accordion-heading__toggle-title {
	text-decoration: none;
	color: var(--link-color-hover);
}

.wp-block-accordion-heading__toggle-title {
}

.wp-block-accordion-heading__toggle-icon { 
}

.wp-block-accordion-panel {
	position: relative;
	margin-top: 0;
}

.wp-block-accordion-panel > *:last-child:not(.wp-block-accordion) {
	margin-bottom: var(--block-gap);
}

.wp-block-accordion-panel > .wp-block-accordion { /*warning nested accordion*/
	border: 1px solid red;
}

.wp-block-accordion-panel > .wp-block-accordion::after {
	content: "⚠️ Kein Akkordion im Akkordion verwenden!";
	position: absolute;
	top: 0;
	left: 0;
	background: red;
	color: #FFF;
	padding: 5px;
	font-weight: bold;
	font-size: .75rem;
}


/* @end */







/* @end */


/* @group CUSTOM BLOCKS  */

/* CUSTOM BLOCKS
--------------------------------------------------------------------------------- */


/* @group BANNER */

/* Banner
--------------------------------------------------------------------------------- */


.banner {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 0;
	margin-bottom: var(--main-padding-top);
	margin-bottom: var(--space-xxl);
	height: 730px; /*the height*/
	height: clamp(600px, 50vw, 730px);
}

.entry-content > .banner:first-child {
	margin-top: calc(var(--main-padding-top) * -1); /*  minus the main top padding*/
}

.is-root-container > .wp-block-acf-banner:first-child { /*for editor*/
	margin-top: calc(var(--main-padding-top) * -1);
}


.banner__content {
	position: relative;
	width: 100%;
	height: 100%;
	justify-content: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-inline: var(--page-padding);
	margin: 0 auto;
	max-width: var(--default-width);
}

.banner__content .container {
	display: flex;
	justify-content: center;
	text-align: center;
}


.banner__title {
	width: 100%;
	text-align: center;
	color: #FFF;
	margin: 0;
	max-width: 55rem;
	text-shadow: 0px 2px 10px rgba(0,0,0, .3);
}

.banner__image-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0, .1);
}

.banner img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	margin: 0 auto;
	opacity: 1;
}

.banner__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.3;
}


@media screen and (max-width: 1024px) {

}

@media screen and (max-width: 600px) {
	.banner {
		height: clamp( 380px, 105vw, 450px);
	}
	
	.banner__title br {
		display: none;
	}
	
}


/* @end */



/* @group IMAGE-SLIDER */

/* Image-Slider
--------------------------------------------------------------------------------- */

.image-slider {
     border-radius: var(--radius);
}

.image-slider.alignwide {
}

.image-slider.alignfull {
}

.image-slider .swiper {
}

.image-slider .swiper-wrapper {
}

.image-slider .swiper-slide {
  max-width: var(--default-width); /*default*/
}

/*size small */
.image-slider .swiper-slide.size-sm {
  max-width: 26rem;
}

/*size large*/
.image-slider .swiper-slide.size-lg {
  max-width: 980px;
}


.image-slider__image {
  position: relative;
  background: rgba(0,0,0, .05);
}

.image-slider.alignwide .image-slider__image,
.image-slider.alignfull .image-slider__image {
}

.image-slider:not(.alignfull) {
  border-radius: var(--media-radius);
}

.image-slider__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--media-radius);
}


.image-slider__caption {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  margin: 0;
  color: #FFF;
  font-size: var(--text-small);
  padding: clamp(15px, 4vw, 30px);
  text-shadow: 0 2px 5px rgba(0,0,0, .5);
  background: rgba(0,0,0, .4);
  background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0, .6) 90%);
}



/* style: is-contain */

.image-slider__image.is-contain img {
  object-fit: contain;
}


/* style: is-overflow */

.swiper.is-overflow {
  overflow: visible;
}


/* @end */





/* @group GALLERY */

/* Gallery v1.01
--------------------------------------------------------------------------------- */


.gallery {
}

.gallery__grid {
	--columns: 3;
	--gap: clamp(10px, 2vw, 20px);
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
}

.gallery__grid.gap-none {
	--gap: 0px;
}

.gallery__grid.columns-align-center {
	justify-content: center;

}
.gallery__grid.columns-align-right {
	justify-content: flex-end;
}

.gallery__item {
	position: relative;
	/* Calculate width minus the gap */	
	flex: 0 1 calc((100% / var(--columns)) - (((var(--columns) - 1) / var(--columns)) * var(--gap)));
	width: 100%;
	display: flex;
	flex-direction: column;
	margin: 0;
	aspect-ratio: unset!important;
}

.gallery__grid.gallery-columns-1 { --columns: 1 }
.gallery__grid.gallery-columns-2 { --columns: 2 }
.gallery__grid.gallery-columns-3 { --columns: 3 }
.gallery__grid.gallery-columns-4 { --columns: 4 }
.gallery__grid.gallery-columns-5 { --columns: 5 }
.gallery__grid.gallery-columns-6 { --columns: 6 }


@media screen and (max-width: 1024px) {

.gallery__grid.gallery-columns-3 { --columns: 2 }
.gallery__grid.gallery-columns-4 { --columns: 2 }
.gallery__grid.gallery-columns-5 { --columns: 3 }
.gallery__grid.gallery-columns-6 { --columns: 3 }
}

@media screen and (max-width: 600px) {

.gallery__grid.gallery-columns-3 { --columns: 2 }
.gallery__grid.gallery-columns-4 { --columns: 2 }
.gallery__grid.gallery-columns-5 { --columns: 2 }
.gallery__grid.gallery-columns-6 { --columns: 2 }
}


.gallery .gap-zero .gallery__grid {
	--gallery-gap: 0;
}

.gallery__image {
	border-radius: var(--media-radius);
}

.gallery__image a {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: var(--media-radius);
	outline-offset: 2px;
}

.gallery__image img {
	display: block;
	margin: 0;
	width: 100%;
	transition: all 600ms ease!important;
	border-radius: var(--media-radius);
}

.gallery__image a:hover img {
	transform: scale(1.08);
	opacity: .8;
}


/* gallery flex grow */
.gallery__item.is-grow  {
	flex-grow: 1; /* items in last row fill remaining space*/
}

.gallery__item.is-grow img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	margin: 0 auto;
}

/* gallery has custom aspect ratio */
.gallery__item.has-ratio .ratio-wrap {
	position: relative;
}

.gallery__item.ratio-1-1 .gallery__image { aspect-ratio: 1 }
.gallery__item.ratio-4-3 .gallery__image { aspect-ratio: 4/3 }
.gallery__item.ratio-3-2 .gallery__image { aspect-ratio: 3/2 }
.gallery__item.ratio-16-9 .gallery__image { aspect-ratio: 16/9 }


.gallery__item.has-ratio .gallery__image {
	position: relative;
}

.gallery__item.has-ratio img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	margin: 0 auto;
}

.gallery__item figcaption {
	margin: var(--space-xs) 0 0 0;
}


/* -- Gallery Masonry (JS) */

.gallery__grid.is-masonry {
	display: grid;
	grid-template-columns: repeat(var(--columns),minmax(0,1fr)); 
	grid-template-rows: masonry;
	grid-auto-flow: dense;
 }
  
.gallery__grid.is-masonry > * {
    align-self: start;
    grid-column-end: span var(--span, 1);
}

.gallery__grid.is-masonry .gallery__item  {
	width: 100%;
	padding: 0;
}



/* -- Gallery Staggered (asymetric/pseudo masonry) */

.gallery__grid.is-staggered {
	container-type: inline-size;
}

.gallery__grid.is-staggered :where(.gallery__item) {
	flex: 1 0 auto;
	max-width: calc(55% - (var(--gap) / 2) );
	height: clamp(200px, 35vw, 500px); /*the height*/
	height: 34cqw; /*query container’s width*/
}

.gallery__grid.is-staggered :where(.gallery__item:nth-child(4n)),
.gallery__grid.is-staggered :where(.gallery__item:nth-child(4n + 1)) {
	max-width: calc(45% - (var(--gap) / 2) );
}

.gallery__grid.is-staggered .gallery__item:nth-child(4n) .gallery__image,
.gallery__grid.is-staggered .gallery__item:nth-child(4n + 1) .gallery__image {

} 

.gallery__grid.is-staggered .gallery__image {
	height: 100%;
	aspect-ratio: initial!important;
}

.gallery__grid.is-staggered :where(.gallery__item.is-grow:last-child) {
	flex-grow: 1;
	max-width: 100%;
}


@media screen and (max-width: 600px) {
	.gallery__grid.is-staggered  { 
		--columns: 1; 
	}
	
	.gallery__grid.is-staggered .gallery__item {
		width: 100%;
		height: auto;
	}
	
	.gallery__grid.is-staggered .gallery__image {
		aspect-ratio: 4/3!important;
	}

}






/* @end */


/* @group ACCORDION  */

/* ACCORDION
--------------------------------------------------------------------------------- */


.accordion {
	position: relative;
	border: none;
	width: 100%;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	outline-offset: 1px;
}

.accordion + .accordion {
	border-top: none;
	margin-top: 0;
}

.accordion-heading {
	margin: 0;
	padding: 0;
	border: none;
	text-transform: none;
}

.accordion-trigger {
	display: block;
	position: relative;
	border: none;
	text-align: left;
	width: 100%;
	padding: 1.2em 0;
	padding-right: 35px;
	font-size: var(--base-font-size);
	line-height: var(--base-line-height);
	color: var(--link-color);
	background: transparent;
	font-weight: bold;
	transition: all 300ms ease;
}

.accordion-trigger:hover {
	text-decoration: none;
	color: var(--text-color);
}

.accordion-trigger.active {
}

.accordion-trigger:hover,
.accordion-trigger:hover i {
}

.accordion-trigger:hover i {
	text-decoration: none;
}

.accordion-trigger span {
	display: flex;
}

.accordion-trigger i:after {
	position: absolute;
	top: .65em;
	right: 0;
	margin: 0;
	content: "\e93b";
	display: block;
	line-height: 1;
	border-radius:0;
	font-family: 'icons';
	font-size: 1.8em;
	font-weight: normal;
	font-style: normal;
	color: var(--link-color);
	text-decoration: none;
	transition: all 250ms ease-in-out;
}

.accordion-trigger:hover i:after {
	color: inherit;
}

 .accordion-trigger.active i:after {
	transform: rotate(180deg);
}

.accordion-content {
	position: relative;
	padding: 5px 0 var(--space-md) 0;
}

.accordion-content > *:first-child,
.accordion-content .acf-innerblocks-container > *:first-child  {
	margin-top: 0;
}


.wp-block-acf-accordion .accordion-content {
	display: none; /*WP preview: collapse item*/
}

.wp-block-acf-accordion.is-selected .accordion-content,
.wp-block-acf-accordion.has-child-selected .accordion-content {
	display: block; /*WP preview: expand item on select*/
}

.wp-block-acf-accordion.is-selected  .accordion-trigger i:after {
	transform: rotate(180deg); /*WP editor*/
}

@media screen and (max-width: 600px) {
}

/* @end */


/* @group FORM */

/* Form
--------------------------------------------------------------------------------- */


.form {
}

/* @end */



/* @group IFRAME EMBED */

/* iframe embed
--------------------------------------------------------------------------------- */


.iframe-embed {
}

.iframe-embed iframe {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	background: rgba(0,0,0, .05);
}

.iframe-embed:not(.alignfull) iframe {
	border-radius: var(--media-radius);
}

.wp-block.iframe-embed iframe {
	pointer-events: none; /*WP*/
}

.iframe-embed iframe {
	min-height: 320px; /*for mobile when ratio is to small*/
}

.ratio-1 { aspect-ratio: 1;}
.ratio-3-2 { aspect-ratio: 3/2;}
.ratio-4-3 { aspect-ratio: 4/3;}
.ratio-16-9 { aspect-ratio: 16/9;}
.ratio-2-1 { aspect-ratio: 2/1;}


/* @end */


/* @group LOGO GRID */

/* Logo Grid v1.0
--------------------------------------------------------------------------------- */


.logo-grid {	
}


.is-root-container .logo-grid__grid {
	padding: 1px;
}

.logo-grid__grid {
	/*vars*/
	--gap: clamp(20px, 3vw, 30px);
	 /*custom*/
	--columns: 4;
	--align: center; 
	--image-max-size: 80%;
	--image-ratio: 4/3;
	
    container-type: inline-size;
	display: flex;
	flex-wrap: wrap;
	gap: var(--gap);
	justify-content: var(--align);
}

.logo-grid__item {
	/* Calculate width minus the gap */	
	flex: 0 1 calc((100% / var(--columns)) - (((var(--columns) - 1) / var(--columns)) * var(--gap)));
    container-type: inline-size;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	aspect-ratio: var(--image-ratio);	
}

.logo-grid__item a {
	display: inherit;
	width: 100%;
	height: 100%;
}

.logo-grid__item img {
	width: 100%;
	height: 100%;
	max-width: var(--image-max-size);
	max-height: var(--image-max-size);
	object-fit: contain;
	margin: auto;
}

/*option: bg */

.logo-grid__item.style-bg {
	background: #FFF;
}


/*option: border*/

.logo-grid__item.style-border {
	background: #FFF;
	border: 1px solid rgba(0,0,0, .08);
}

/*option: shadow*/

.logo-grid__item.style-shadow {
		background: #FFF;
		box-shadow: 0px 3px 25px -5px rgba(0,0,0, .15);
}

/*option: grayscale*/

.logo-grid__item.grayscale img {
	filter: grayscale(1);
	mix-blend-mode: multiply;
}


@media (max-width: 840px) {
	.logo-grid__grid {
		--columns: var(--columns-tab)!important;
	}
}

@media (max-width: 600px) {
	.logo-grid__grid {
		--columns: var(--columns-mob)!important;
	}
}


/* @end */


/* @group TEASER-CARDS */

/* Teaser Cards
--------------------------------------------------------------------------------- */


.teaser-cards {
	--block-gap: var(--space-lg);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.alignwide .teaser-cards, 
.teaser-cards.alignwide {
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-columns: repeat(3, minmax(0,1fr));
}


.teaser-card {
	position: relative;
	background: #FFF;
	box-shadow: 0px 3px 35px -10px rgba(0,0,0, .25);
}

.teaser-card__image {
	aspect-ratio: 3/2;
	overflow: hidden;
}

.teaser-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.teaser-card__image a {
	display: block;
	height: 100%;
}

.teaser-card__image a img {
	transition: 600ms ease;
}

.teaser-card__image a:hover img {
	transform: scale(1.1);
}

.teaser-card__content {
	padding: var(--box-padding);
	padding-block: 30px;
}

.teaser-card__metatitle {
	color: var(--text-muted);
	color: rgba(0,0,0, .35);
	text-transform: uppercase;
	font-size: var(--text-small);
	font-weight: bold;
}

.teaser-card__title {
	margin: 0;
	line-height: 1.3;
}

.teaser-card__excerpt {
	margin-top: .8rem;
	font-size: var(--text-small);
}

.teaser-card__button {
	margin-top: 1rem;
}

@media screen and (max-width: 1024px) {
	.teaser-cards,
	.alignwide .teaser-cards,
	.teaser-cards.alignwide  {
		grid-template-columns: 1fr 1fr;
	}
}

@media screen and (max-width: 600px) {
	.teaser-cards,
	.alignwide .teaser-cards,
	.teaser-cards.alignwide  {
		grid-template-columns: 1fr;
	}
}


/* style: rows */


.teaser-cards.is-style-rows {
	grid-template-columns: 1fr;
	gap: 30px;
}

.teaser-cards.is-style-rows .teaser-card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

.teaser-cards.is-style-rows .teaser-card__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: var(--box-padding) var(--box-padding-xl);
}

.teaser-cards.is-style-rows .teaser-card__image {
	aspect-ratio: 3/2.3;
}

@media screen and (max-width: 600px) {
	.teaser-cards.is-style-rows .teaser-card {
		grid-template-columns: 1fr;
		gap: 0;
	}
	
	.teaser-cards.is-style-rows .teaser-card__image {
		aspect-ratio: 3/2;
	}
	
}


/* @end */


/* @end */



/* @group BLOG */

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


.post-cards-grid {
	margin-top: var(--space-xxl);
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-columns: repeat(3, minmax(0,1fr));
	gap: 30px;
}


.post-card {
	border: 1px solid var(--border-color);
	border-radius: var(--radius);

}

.post-card__image {
	margin: 0;
}

.post-card__image a {
	display: block;
	overflow: hidden;
	border-radius: var(--radius);
}

.post-card__image img {
	display: block;
	aspect-ratio: 4/3;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	margin: 0 auto;
	transition: all 600ms ease!important;
}

.post-card__image a:hover img {
	transform: scale(1.1);
}

.post-card__content {
	padding: 20px;
	padding-inline: var(--box-padding-sm);
	padding-bottom: var(--space-md);
}


.post-card__title {
	margin: 0;
	padding: 0;
	font-size: var(--base-font-size);
	line-height: 1.4;
	
}

.post-card__title a {
	display: block;
	color: var(--link-color);
}

.post-card__title a:hover  {
	color: var(--text-color);
}

.post-card__date {
	margin-top: 10px;
	font-size: var(--text-small);
	color: var(--text-muted);
}

.post-card__more-btn {
	margin: 1rem 0 0 0;
}

@media screen and (max-width: 1024px) {
	.post-card-grid {
		grid-template-columns: 1fr 1fr;
	}
	
	.post-card__content {
		padding-inline: 0;
	}
	
}

@media screen and (max-width: 600px) {
	.post-card-grid {
		grid-template-columns: 1fr;
	}
	
	.post-card__content {
		padding-bottom: 10px;
	}

	
}

/* single post */

.post .topic-title {
	text-align: left;
	margin-top: -1em;
	margin-bottom: .1em;
}

.post-title {
	text-align: left;
	font-size: clamp(2.4rem, 5vw, 3.5rem); /*reduced max h1 size*/

}

.post-date {
	margin-top: 20px;
	color: var(--text-muted);
	font-size: var(--text-small);
}

.post-image {
	position: relative;
	width: 100%;
	margin: 0;
	margin-top: var(--space-xl);
	aspect-ratio: 4/3;
	border-radius: var(--radius);
	overflow: hidden;
}

.post-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.post-image + * {
	margin-top: var(--space-lg);
}


.post-image p.wp-caption-text {
	margin: 0.6rem 0 0 0;
	font-size: 0.8rem;
}

.post-meta {
	margin-top: var(--space-lg);
}

.post-cats {
	color: var(--link-color);
	text-transform: uppercase; /*caps*/
	font-size: var(--text-small);
}

.post-cats span {
	display: none;
}

.post-cats a {
	font-weight: bold;
	margin-right: 1ch;
}

.post-cats a:hover {
}


.post-cats + .post-tags {
	margin-top: 20px;
}

.post-tags {
	font-size: var(--text-small);
}

.post-tags a {
	color: var(--text-muted);
	margin-right: .5ch;
	border-radius: 10rem;
	padding: .4em 1em;
	text-transform: uppercase;
	font-size: var(--text-tiny);
	border: 1px solid var(--border-color);
}

.post-tags a:hover {
	color: var(--primary-color);
	border-color: inherit;
}

.post-tags span {
	display: none;
}



/*related posts */


.related-posts-section {
	margin-top: var(--space-xxl);
	margin-bottom: -30px;
}

.related-posts {
}

.related-posts {
	margin-top: var(--space-xl);
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-columns: repeat(3, minmax(0,1fr));
	gap: 30px;
}

@media screen and (max-width: 1024px) {
	.related-posts {
		grid-template-columns: 1fr 1fr;
	}
	
	.post-card__content {
		padding-inline: 0;
	}
}


@media screen and (max-width: 600px) {
	.related-posts {
		grid-template-columns: 1fr;
	}
	
}





/* Archive */


.show-tax {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin-bottom: calc(var(--space-xl) * -1);
}

.show-tax__tax {
	flex: 1;
	color: var(--text-muted);
}

.show-tax__title {
	color: var(--text-color);
	font-weight: bold;
	text-transform: uppercase;
}

.show-tax__all {
	margin: 0 0 0 auto;
	line-height: 1;
	font-size: 1.5rem;
}


/* post-pagination */

.pagination {
	margin-top: var(--space-xl);
}

.pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	padding: 5px;
	font-size: var(--base-font-size);
	line-height: 1;
	height: 2em;
	border-bottom: 2px solid transparent;
}

.pagination .page-numbers.dots {
	border: none;
	font-weight: normal;
	margin-inline: -5px;
	color: var(--primary-color);
}

.pagination .page-numbers.current {
	color: var(--primary-color);
	border-color: inherit;
}

.pagination a:hover {
	color: var(--primary-color);
	border-color: inherit;
}

.pagination a.prev,
.pagination a.next {
		gap: 10px;

}

a.prev span,
a.next span { /* prev next*/
	display: none;
	text-transform: uppercase; /*caps*/
	font-size: 90%;
}

body:not(.paged) .pagination a.next,
body:not(.paged) .pagination a.next {
}

.pagination a.prev:before,
.pagination a.next:after {
	font-family: 'icons';
	font-weight: normal;
	font-size: 1.2em;
}

.pagination a.prev:before {
	content: "\e935";
}

.pagination a.next:after {
	content: "\e931";
}


@media screen and (max-width: 600px) {
		
}



/* Post Navigation */

.post-nav-section {
}

.post-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	justify-content: space-between;
}


.post-nav.first-post {
	grid-template-columns: 1fr;
	justify-content: flex-end;
}

.post-nav .prev-post,
.post-nav .next-post {
	display: flex;
}

.post-nav .next-post {
	justify-content: flex-end;
}

.post-nav a {
	position: relative;
	display: flex;
	gap: 10px;
	font-weight: bold;
	max-width: 25rem;
}

.post-nav .prev-post a {

}

.post-nav .next-post a {
	justify-content: flex-end;
	text-align: right;
}


.post-nav .prev-post a::before,
.post-nav .next-post a::after {
	content: "\e907";
	font-family: 'icons';
	font-weight: normal;
	font-size: 1.25em;
	margin-top: -.1em;
	
}

.post-nav .prev-post a::before {
	content: "\e901";
	left: 0;
}

.post-nav .next-post a::after {
	right: 0;
}


.post-nav span {
	display: block;
	font-size: 0.75rem;
	margin: 0 0 0.5rem 0;
	display: none;
}

.post-nav a br {
	display: none;
}

.post-nav a:hover {
}



.post-nav.first-post .next-post a,
.post-nav.last-post .prev-post a {

}



/* Post Taxonomies  */

.post-tax-section {
	position: relative;
	padding: var(--space-xxl) 0;
	border-top: 1px solid var(--border-color);
}


.post-tax-section .container {
}

.post-tax {
}

.post-tax__title {
	margin-top: 0;
}


.post-tax__list {
	margin-top: var(--space-md);
}

.post-tax__list li a {
	display: block;
	padding: 2px 0;
	text-decoration: none;
}

.post-tax__list li a:hover {
}



/* @end */



/* @group SEARCH PAGE*/

/* Search Page
--------------------------------------------------------------------------------- */



.search-result {
	margin-bottom: var(--space-xl);
}

.search-result__title {

}

.search-result__title span {
	font-weight: bold;
	font-style: italic;
}

.search-result.no-result .searchform {

}

.searchform-wrap {
	position: relative;
	max-width: 100%;
	margin-top: var(--space-md);
	border: 0px solid #333;
}

.search-result .searchform {
	position: relative;
	border: 1px solid var(--border-color);
	border-radius: 15px;
}
.search-result .searchform input[type="text"] {
	width: 100%;
	padding: 20px;
	height: auto;
	font-size: var(--base-font-size);
	line-height: 1;
	color: var(--text-color);
	border:  none;
	border-radius: inherit;
	box-shadow: none /*remove red border */;
}

.search-result .searchform input::placeholder {
	font-style: italic;
	font-weight: normal;
}

.search-result .searchform .searchsubmit {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	padding: 0 0;
	text-transform: uppercase;
	overflow: hidden;
	width: 3rem;
	font-size: 1.4rem;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	background: transparent;
}

.search-result .searchform i {
	position: relative;
	text-align: center;
	background: transparent;
}


.search-result__list {
	margin-top: var(--space-md);
}


.search .hentry {
	border: 0;
	border-bottom: 1px solid var(--border-color);
	margin: 0;
}

.search-result__entry a {
	display: block;
	text-decoration: none;
	padding: 0.6rem 0;
}

.search-result__post-type {
	color: var(--text-muted);
	text-transform: uppercase;
	font-size: var(--text-small);
	margin-left: 1ch;
	font-weight: bold;
}

.search-result__entry .type-page .entry-details {
	display: none;
}

.search .post-pagination {
	margin-top: 30px;
}


.search-results .entry-details span {
	display: none;
}


/* @end */




/* @group PW protected */

/* PW Protected
--------------------------------------------------------------------------------- */


.post-password-form {
	text-align: center;
	padding: var(--box-padding);
	background: var(--primary-bg);
}

.post-password-form p { /*WP info text*/
	display: none;
}

.post-password-form p + p {
	display: block;
	margin: 0;
}

.post-password-form label {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px
}

.post-password-form input {
	flex: 1 0 auto;
	font-size: 1rem;
	padding: 10px;
	max-width: 10rem;
	border: 1px solid var(--border-color);
}

.post-password-form input[type="submit"] {
	display: none;
}

/* @end */






/* @group FLUENT FORMS  */

/* Fluent Forms
--------------------------------------------------------------------------------- */


.fluentform {
  --fluentform-primary: var(--primary-color);
  --fluentform-secondary :var(--blue);
  --fluentform-danger: red;
  --fluentform-border-color: var(--border-color);
  --fluentform-border-radius: 5px;
  --fluentform-input-select-height: auto;
  
  --border-color: rgba(0,0,0, .3);
  accent-color: var(--primary-color);
  
  padding: var(--box-padding-lg);
  border-radius: var(--radius);
  background: var(--primary-bg);
}

.fluentform form {
	margin: 0 auto;
	max-width: var(--default-width);
}

.is-root-container .fluentform form {
	pointer-events: none; /*editor only*/
}

.fluentform .ff_screen_reader_title {
	height: 0px;
}

.fluentform fieldset {
	margin: 0;
	padding: 0;
	border: none;
}

/* FF Landing Page */

.ff_landing_page_body .ff_landing_form_wrapper {
} 

.ff_landing_form {
	background: #FFF;
	border-radius: var(--radius);
	box-shadow: 0 30px 40px 0 rgba(0,0,0,.25)!important;
}

.ff_landing_form .fluentform {
	padding: 10px 0;
	background: transparent;
	border-radius: 0;
}


/* FF HTML */

.fluentform .ff-custom_html > *:first-child,
.fluentform .ff-custom_html .form-field > *:first-child {
	margin-top: 0;	
}

.fluentform .ff-custom_html h2 {
}


 .fluentform .frm-fluent-form .ff-t-container {
 	gap: 30px;
 }
 /* FF section break */

.fluentform .ff-el-section-break {
	margin-top: var(--block-gap);
	border-top: 1px solid var(--border-color);
}

.fluentform *:not(.ff-el-group) + .ff-el-group.ff-el-section-break {
	margin-top: 0;
	border: none;
}

.fluentform .ff-el-section-break hr {
	display: none;
}

.fluentform *.ff-el-section-title {
}

 /* FF fields */
  
 .fluentform .ff-el-group {
   margin-bottom: 15px; /*20*/
}


.fluentform:is(*, .ff-default) .ff-el-input--label label {
  font-weight: bold;
  font-size: var(--text-small);
 }

.fluentform .ff-el-input--label.ff-el-is-required.asterisk-right label:after {
  color: var(--text-color);
  content: "*";
  margin-left: 3px
}


.fluentform .ff-el-form-control,
.fluentform.ff-default .ff-el-form-control,
.fluentform.ff-default .choices {
  font-family: var(--font-sans);
  font-size: var(--base-font-size);
  line-height: 1;
  margin-bottom:0;
  max-width: 100%;  
  padding: 10px;
  line-height: 1.3;
  color: var(--text-color);
  background-color: #FFF;
  width: 100%;
  box-sizing: border-box;
  font-weight: normal;
  border: none;
  border: 1px solid var(--border-color);
  transition: all 300ms ease;
}


.fluentform .ff-el-form-control:focus {
  color: var(--text-color);
  outline: revert;
}

.fluentform .ff-el-form-control:focus-visible {
} 


/*FF checkbox & radio */


.fluentform .ff-el-form-check label.ff-el-form-check-label {
  display: grid;
  grid-template-columns: 30px auto;
  gap: 8px;
}

.fluentform .ff-el-tc label.ff_tc_label > span {
  display: contents;
}


.fluentform:is(*, .ff-default) :is(input[type="checkbox"], input[type="radio"]) {
	--size: 24px;
	-webkit-appearance: none;
    appearance: none;
    position: relative;
    width: var(--size);
    height:  var(--size);
	margin-top: .25em;
    border: 1px solid var(--border-color);
    line-height: 1;
    background: #FFF;
}

/* FF checkbox */

 .fluentform input[type="checkbox"] {
	border-radius: var(--field-radius);
 }
  
 .fluentform input[type="checkbox"]::before {
	content: "";
	position: absolute;
	left: 7px;
	top:2px;
	width: 9px;
	height: 14px;
	margin: 0;
	border: solid #FFF;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
	opacity: 0;
}

.fluentform input[type="checkbox"]:checked {
	background: var(--primary-color);
	border-color: var(--primary-color);
}

.fluentform input[type="checkbox"]:checked::before {
    opacity: 1;
 }


/* FF radio */


 .fluentform input[type="radio"] {
 	border-radius: 100%; 	
 }
 
 
  .fluentform input[type="radio"]::before {
  	--size: 16px;
	content: "";
	position: absolute;
	left: 3px;
	top: 3px;
	width: var(--size);
	height: var(--size);
	margin: 0;
	background: var(--primary-color);
	border-radius: 100%;
	opacity: 0;
}
 
 
 .fluentform input[type="radio"]:checked {
	border-color: var(--primary-color);
}

.fluentform input[type="radio"]:checked::before {
    opacity: 1;
 }
 
  /* FF GDPR Checkbox */
 
 
.fluentform  .ff-el-form-check-input.ff_gdpr_field {
	margin-right: 10px;
}
 
 
/* FF select */

/* https://codepen.io/chriscoyier/pen/zYYZaGP */
.fluentform select.ff-el-form-control {
	display: block;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	transition: all 200ms ease;
	background-color: #FFF;
	/* https://websemantics.uk/tools/svg-to-background-image-conversion */
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='14' height='9' viewBox='0 0 14 9' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='718 26 725 35 732 26' transform='translate(-718 -26)' fill='%23111111' fill-rule='evenodd'/%3E%3C/svg%3E");
	background-repeat: no-repeat, repeat;
	background-position: right .8em top 50%, 0 0;
	background-size: 0.7em auto, 100%;
	padding-right: 30px!important;
	/* clip overflowed content with … */
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.fluentform select::-ms-expand {
	display: none;
}

.fluentform .select-css:focus {
	/* It'd be nice to use -webkit-focus-ring-color here but it doesn't work on box-shadow */
	box-shadow: 0 0 0 3px -moz-mac-focusring;
	outline: none;
}

.fluentform select option {
	font-weight: normal;
	font-size: 1rem;
}

select:disabled, select[aria-disabled=true] {
	opacity: .5;
}

/* FF Select Multi */

.ff-default.fluentform .choices {
	padding: 5px 0;
	border-radius: var(--fluentform-border-radius);
}

.ff-default.fluentform .choices__inner {
	border: none;
}

.ff-default.fluentform input.choices__input {
	border: none!important;
}

.ff-default.fluentform  .choices__list .choices__item {
	font-size: var(--text-small);
}



 /* FF Upload  */

.fluentform label.ff_file_upload_holder .ff_upload_btn.ff-btn {
	color: var(--text-color);
	font-size: var(--text-small);
	background: #FFF;
	border: 1px dashed var(--text-color);
	border-radius: var( --fluentform-border-radius);
	transition: 200ms ease;
}

.fluentform .ff_file_upload_holder .ff_upload_btn.ff-btn:hover {
	color: var(--primary-color);
	border-color: var(--primary-color);
	background: #FFF;
}

.fluentform .ff_file_upload_holder:focus-within .ff_upload_btn.ff-btn {
	outline: solid var(--primary-color);
}


.fluentform .ff-upload-preview {
	background: #FFF;
}

.fluentform .ff-upload-details {
	font-size: var(--text-small);
}

.fluentform .ff-uploaded-list:empty {
	margin-top: 0!important;
}


/* FF Checkable Grids */

.ff-default.fluentform table.ff-checkable-grids {
	font-size: var(--text-small);
}

.ff-default.fluentform table.ff-table.ff-checkable-grids :is(th, td, tr)  {
	border: 1px solid var(--border-color);
}


.ff-default.fluentform table.ff-table.ff-checkable-grids :is(th, td, tr)  {
	background: #FFF;
	vertical-align: middle;
}


/* FF Steps */


.fluentform .fluentform-step {
}

.ff-default.fluentform .step-nav {
	margin-top: var(--block-gap);
}

.ff-default.fluentform .step-nav .ff-btn {
	background: transparent;
	color: var(--text-color);
	padding: 5px 15px;
	border: 1px solid var(--text-color);
	border-radius: var(--fluentform-border-radius);
	}

.ff-default.fluentform .step-nav .ff-btn:hover {
	background: transparent;
	color: var(--primary-color);
	border-color: var(--primary-color);
	}

/* FF Range Slider */

.fluentform .rangeslider__fill {
	background-color: var(--primary-color);
}

.fluentform .ff_slider_wrapper {
}

.fluentform .ff_range_value {
}


/* FF submit */

.fluentform .ff_submit_btn_wrapper{
	margin-top: var(--space-sm);
}

.fluentform .ff_submit_btn_wrapper:last-child {
	margin-bottom: 0;
}

.fluentform .ff-btn.ff-btn-submit,
.fluentform .ff-btn.ff-btn-save-progress {
  width: auto;
  height: auto;
  padding: 12px 36px;
  padding: .65em 1.8em;
  font-weight: bold;
  font-size: var(--base-font-size);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.4;
  color: #FFF;
  letter-spacing: .1px;
  text-decoration: none;
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 10rem;
  outline-offset: 2px;
  outline: revert;
}

.fluentform .ff-btn.ff-btn-submit:hover,
.fluentform .ff-btn.ff-btn-save-progress:hover {
  background: var(--text-color);
  border-color: var(--text-color);
  color: #FFF;
  text-decoration: none;
  opacity: 1;
}

.fluentform .ff-btn:focus,
.fluentform .ff-btn:focus-visible {
	opacity: 1;
	outline: revert;	
}

.fluentform .ff_t_c {
  font-size: var(--text-small)!important;	
}

.fluentform .has-small-font-size {
  font-size: var(--text-small)!important;
}

/* FF Button Save Progress */

.fluentform .ff-btn.ff-btn-save-progress {
}

.fluentform .ff-saved-state-input .ff_input-group {
	flex-wrap: nowrap; /*fix*/
}


/* FF success */

.fluentform .ff-message-success {
	padding: 0;
	text-align: center;
	margin: 0;
	border: none;
	box-shadow: none;
}

.fluentform .ff-message-success > *:first-child {
	margin-top: 0;
}




/* @end */


/* @group SLIDER (swiperjs) */

/* SLIDER
--------------------------------------------------------------------------------- */


.swiper {
	--swiper-theme-color: var(--primary-color);
	
	/*navigation arrows*/
	--swiper-navigation-size: 50px;
	--swiper-navigation-color: #FFF;
	--swiper-navigation-top-offset: calc(50% - var(--swiper-padding-bottom)/2); /*!*/
	--swiper-navigation-sides-offset: 10px;
	
	/*pagination bullets*/
	--swiper-pagination-bullet-horizontal-gap: 5px;
    --swiper-pagination-bullet-vertical-gap: 5px;
    --swiper-pagination-bullet-size: 10px;
	--swiper-pagination-bullet-width: inherit;
	--swiper-pagination-bullet-height: inherit;
	--swiper-pagination-bullet-border-radius: 100px;
    --swiper-pagination-color: var(--primary-color);
	--swiper-pagination-bullet-inactive-color: var(--primary-color);
	--swiper-pagination-bullet-inactive-opacity: .2;
	
	/*custom*/
	--swiper-padding-bottom: 40px;
	
	width: 100%;
	height: 100%;
	padding-bottom: var(--swiper-padding-bottom); /*pagination outside swiper*/
}

.block-editor-block-list__block .swiper {
	pointer-events: none; /*disable in editor*/
}

.swiper:not(.swiper-initialized) .swiper-slide {
	margin-right: 30px; /*prevent layout if JS not loaded*/
}


.swiper-wrapper {
}

.swiper-slide {
	overflow: hidden;
	border-radius: var(--media-radius);
}

.swiper-button {
	--size: 50px;
	width: var(--size);
	height: var(--size);
	margin: 0;
	transform: translateY(-50%);
	transition: all 250ms ease-in-out;
	color: var(--primary-color);
	background: rgba(255,255,255, .9);
	border-radius: 10rem;
	box-shadow: 0px 2px 15px 0 rgba(0,0,0, .1);
	opacity: 0; /* ON/OFF*/
}


.block-editor-block-list__block .swiper .swiper-button, 
.swiper:focus-within .swiper-button {
	opacity: 1;
}

.swiper:hover .swiper-button {
	opacity: 1;
}

.swiper-button:hover {
}

.swiper-button::after {
	font-family: 'icons';
	font-size: 32px;
}

.swiper-button-prev {
}

.swiper-button-prev::after {
	content: "\e939";
}

.swiper-button-next {

}

.swiper-button-next::after {
	content: "\e93a";
	padding-left: 3px;
}

.swiper-button.swiper-button-disabled {
	opacity: 0!important;
}

.swiper-pagination {
}

.swiper-pagination:not(:has(*)) { /*hide if empty*/
	display: none;
}

.swiper > .swiper-pagination-bullets {
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.swiper-pagination-bullet {
	transition: all 250ms ease;
}

.swiper-pagination-bullet-active,
.swiper-pagination-bullet-active-main {
	--swiper-pagination-bullet-width: calc(var(--swiper-pagination-bullet-size) * 3);
}

.swiper-pagination-bullet:only-child {
   visibility: hidden;
}

.swiper:has(.swiper-pagination-bullet:only-child) { /*no pagination if only 1 slide*/
	--swiper-padding-bottom: 0;
}

@media screen and (max-width: 600px) {

	.swiper {
    --swiper-pagination-bullet-size: 12px;
	--swiper-padding-bottom: 30px;
	}
	
	.swiper-button {
		display: none;
	}
	
}





/* @end */



/* @group LIGHTBOX */

/* Lightbox PhotoSwipe Plugin
--------------------------------------------------------------------------------- */

.pswp {
	--pswp-bg: rgba(0,0,0, 1);
}


.pswp__caption {
	
}

.pswp__caption__text {
	font-size: var(--text-small);
	line-height: 1.4;
}

.pswp__button.pswp__button--zoom {
	display: none;
}

/* @end */




/* @group FOOTER */

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


#footer {
}

.site-footer {
	position: relative;
	width: 100%;
	padding: var(--space-xxl) 0;
	background: var(--primary-100);
	font-size: calc(16/16 * 1rem);
}

.site-footer :where(a) {
}

.site-footer :where(a:hover) {
	color: var(--text-muted);
}

.footer-columns {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.footer-column {
	line-height: 1.8;
	flex: 1 0 20%;
	max-width: 250px;
}

.footer-column :is(ul,li) {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-column a {
	display: block;

}

.footer-column a:hover {
}


.footer-social {
	margin-top: var(--space-lg);
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 2rem;
}


.footer-social a {
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1;
	width: calc(48/16 * 1rem);
	border-radius: 100rem;
	color: #FFF;
	background: var(--text-color);
	font-size: 1.7rem;
}

.footer-social a:hover {
	text-decoration: none;
	background: var(--primary-color);
}

.footer-menu {
	margin-top: var(--space-md);
}

.footer-menu ul {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 30px;
}

.footer-menu a {
	display: block;
}



@media screen and (max-width: 1024px) {
	.footer-column {
		flex: 100%;
		max-width: 100%;
	}
	
}



/* @end */


/* @group SCROLL TO TOP BUTTON */

/* Scroll to top button
--------------------------------------------------------------------------------- */

.scrolltopbtn {
	position: fixed;
	bottom: 20px;
	right: var(--page-padding);
	height: 50px;
	width: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 28px;
	text-align: center;
	border-radius: 100%;
	transition: 300ms;
	transform: translateY(100%);
	opacity: 0;
	z-index: 5;
    color: var(--text-color);
	border: none;
	padding: 0;
	background: rgba(0,0,0, .15);
}

.scrolltopbtn i {
	margin-bottom: 1px;
	transition: 250ms ease;
}

.scrolltopbtn.active:hover i {
}


.scrolltopbtn.active {
	transform: translateY(0);
	opacity: 1;
}

/* @end */



/* @group BORLABS COOKIE */

/* Borlabs Cookie Banner
--------------------------------------------------------------------------------- */


#BorlabsCookieBox,
.brlbs-cmpnt-container {
	--dialog-text-color: var(--text-color);
	
	--dialog-border-radius-bottom-left: var(--radius);
    --dialog-border-radius-bottom-right: var(--radius);
    --dialog-border-radius-top-left: var(--radius);
    --dialog-border-radius-top-right: var(--radius);
	
    --dialog-button-border-radius-bottom-left: 10rem;
    --dialog-button-border-radius-bottom-right: 10rem;
    --dialog-button-border-radius-top-left: 10rem;
    --dialog-button-border-radius-top-right: 10rem;
	
    --dialog-card-border-radius-bottom-left: 4px;
    --dialog-card-border-radius-bottom-right: 4px;
    --dialog-card-border-radius-top-left: 4px;
    --dialog-card-border-radius-top-right: 4px;
	
	--dialog-backdrop-background-color: #000;
	--dialog-backdrop-background-opacity: .7;
	
	
	--content-blocker-text-color: var(--text-color);
    
	--content-blocker-border-radius-top-left: var(--radius);
    --content-blocker-border-radius-top-right: var(--radius);
    --content-blocker-border-radius-bottom-left: var(--radius);
    --content-blocker-border-radius-bottom-right: var(--radius);
}


#BorlabsCookieBox .brlbs-cmpnt-container :is(.brlbs-text-2xl) {

}

.brlbs-cmpnt-container.brlbs-cmpnt-content-blocker .brlbs-cmpnt-cb-buttons .brlbs-cmpnt-cb-btn {
	border-radius: 10rem;
}



/* @end */


/* @group ACCESSIBILITY */

/* ACCESSIBILITY */


.sr-only {
	position: absolute;
	width: .0625rem;
	height: .0625rem;
	padding: 0;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

.sr-only-focusable {
	transition: all 0s ease;
}

.sr-only-focusable:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
}

.skip-link:focus {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: auto;
	padding: 5px;
	margin: 0;
	overflow: visible;
	clip: auto;
	z-index: 100;
	color: #FFF;
	background: var(--text-color);
	line-height: 1;
}


/* @end */


/* @group ANIMATIONS */

/* ANIMATIONS
---------------------------------------------------------------------------------*/


/* scroll reveal */

.reveal {
  opacity: 0;
  transform: translate3d(0, 100px, 0);
  transition: opacity 700ms, transform 600ms;
}

.reveal-notransform,
.reveal-notransform.reveal-visible {
	opacity: 1;
	transform: none;
	transition: none;
}

.reveal--slow {
  transition: opacity 1000ms, transform 1000ms;
}

:where(.is-root-container) .reveal,
.reveal-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
    /*prevent old safari flicker*/
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}



/*  https://github.com/daneden/animate.css */


.animated {
	animation-duration: 1s;
	animation-fill-mode: both;
	animation-timing-function: ease-in-out;
}

.animated.infinite {
	animation-iteration-count: infinite;
}

@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

.fadeIn {
  animation-name: fadeIn;
}


@keyframes fadeInDown {
  0% {
    opacity: 0;
   transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
	animation-name: fadeInDown;
}


@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

/* @end */


/* @group UTILITES */

/* UTILITES
---------------------------------------------------------------------------------*/

.mt-0  { 	margin-top: 0!important; }
.mt-5  { 	margin-top: 5px!important; }
.mt-10 {	margin-top: 10px!important; }
.mt-20  {	margin-top: 20px!important; }
.mt-30  {	margin-top: 30px!important; }
.mt-40  {	margin-top: 40px!important; }
.mt-50  {	margin-top: 50px!important; }
.mt-60  {	margin-top: 60px!important; }
.mt-70  {	margin-top: 70px!important; }
.mt-80  {	margin-top: 80px!important; }
.mt-90  {	margin-top: 90px!important; }
.mt-100  {	margin-top: 100px!important; }
.mt-110  {	margin-top: 110px!important; }
.mt-120  {	margin-top: 120px!important; }
.mt-130  {	margin-top: 130px!important; }
.mt-140  {	margin-top: 140px!important; }
.mt-150  {	margin-top: 150px!important; }


.mb-0  { 	margin-bottom: 0!important; }
.mb-5  { 	margin-bottom: 5px!important; }
.mb-10 {	margin-bottom: 10px!important; }
.mb-20  {	margin-bottom: 20px!important; }
.mb-30  {	margin-bottom: 30px!important; }
.mb-40  {	margin-bottom: 40px!important; }
.mb-50  {	margin-bottom: 50px!important; }
.mb-60  {	margin-bottom: 60px!important; }
.mb-70  {	margin-bottom: 70px!important; }
.mb-80  {	margin-bottom: 80px!important; }
.mb-90  {	margin-bottom: 90px!important; }
.mb-100  {	margin-bottom: 100px!important; }
.mb-110  {	margin-bottom: 110px!important; }
.mb-120  {	margin-bottom: 120px!important; }
.mb-130  {	margin-bottom: 130px!important; }
.mb-140  {	margin-bottom: 140px!important; }
.mb-150  {	margin-bottom: 150px!important; }


.ratio-1 	{ aspect-ratio: 1;}
.ratio-1-1	{ aspect-ratio: 1;}
.ratio-3-2	{ aspect-ratio: 3/2;}
.ratio-3-1	{ aspect-ratio: 3/1;}
.ratio-2-3	{ aspect-ratio: 2/3;}
.ratio-3-4	{ aspect-ratio: 3/4;}
.ratio-4-3 	{ aspect-ratio: 4/3;}
.ratio-16-9 { aspect-ratio: 16/9;}


.min-w-100 { min-width: 100px; }
.min-w-200 { min-width: 200px; }
.min-w-300 { min-width: 300px; }
.min-w-400 { min-width: 300px; }
.min-w-500 { min-width: 500px; }
.min-w-600 { min-width: 600px; }
.min-w-700 { min-width: 700px; }
.min-w-800 { min-width: 800px; }
.min-w-900 { min-width: 900px; }

.rounded-none { border-radius: 0; }

.whitespace-nowrap {
	white-space: nowrap;
}



/* @end */


/* ------------------------------------------------------------------------------

MEDIA QUERIES

---------------------------------------------------------------------------------*/


@media screen and (max-width: 1136px) {
body::before {
	content: "<1136";
	position: fixed;
	top: 0;
	line-height: 1;
	padding: 5px;
	font-size: 11px;
	background: lawngreen;
	z-index: 1000;
	opacity: .8;

	display: block; /* AN/AUS*/
}

}


@media screen and (max-width: 1024px) {
body::before {
	content: "<1024";
	background: TAN;
}


}


@media screen and (max-width: 840px) {
body::before {
	content: "<840";
	background: PINK;
}

}


@media screen and (max-width: 600px) {
body::before {
	content: "<600";
	background: YELLOW;
}

}


@media screen and (max-width: 360px) {
body::before {
	content: "<360";
	background: MAGENTA;
}


}




/* END
---------------------------------------------------------------------------------*/
