/*
Theme Name: Weindorf
Author: URBAN PROPAGANDA Communications GmbH
Author URI: https://urban-propaganda.de/
Description: Custom theme.
Version: 2.0.4
Tags: php8, wp6
Text Domain: weindorf
*/

@charset "UTF-8";

:root {
	--text-color: #000;
	--text-hover-color: #8e1635;
	--text-primary-color: #621c35;
	--text-secondary-color: #d8bea7;
	--background-color: #f2ece6;
	--background-transparent: rgba(242, 236, 230, 0.9);
}

@font-face {
	font-family: "Syne";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url("fonts/syne/Syne-Regular.ttf") format('truetype');
}
@font-face {
	font-family: "Syne";
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url("fonts/syne/Syne-Bold.ttf") format('truetype');
}

html, body {
    height: 100%;
}

body {
	background-color: var(--background-color);
	overflow-y: scroll;
}

body, button, input, select, textarea {
    font-family: 'Syne', sans-serif;
	font-size: 18px;
	line-height: 26px;
	font-weight: 400;
	color: var(--text-color);
}

textarea {
	resize: vertical;
}

* {
	box-sizing: border-box;
	outline: none;
	margin: 0;
	padding: 0;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: none;
	appearance: none;
}

b, strong {
	font-weight: 700;
}

h1, .h1, h2, h3, h4, h5 {
	color: #000;
}
.textlight h1, .textlight .h1, .textlight h2, .textlight h3, .textlight h4, .textlight h5 {
	color: #fff;
}
.textlight svg path {
	fill: #fff;
}
h1, .h1, h2, h3, h4, h5, p {
	margin-bottom: 20px;
}
h1, .h1 {
	font-size: 72px;
	line-height: 80px;
	font-weight: 700;
}
h2 {
	font-size: 42px;
	line-height: 50px;
	font-weight: 700;
}
h3 {
	font-size: 30px;
	line-height: 38px;
	font-weight: 700;
}
h4 {
	font-size: 22px;
	line-height: 30px;
	font-weight: 700;
}
h5 {
	font-size: 18px;
	line-height: 26px;
	font-weight: 700;
}

a {
	color: var(--text-color);
	font-weight: 400;
	text-decoration: none;
}
a:hover {
	color: var(--text-hover-color);
	font-weight: 400;
	text-decoration: none;
}

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

#main {
	min-height: 100vh;
}


/* Content */
.c-content {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
}
.c-content-center {
	width: 100%;
	max-width: 1420px;
	margin: 0 auto;
}
.c-content-inner {
	padding: 0 80px;
}
.c-content-narrow {
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
}
.c-block {
	display: block;
}
/* /Content */


/* Spacers */
.c-spacer {
	height: 24px;
}
.c-spacer-halfhalf,
.c-spacer-small {
	height: 10px;
}
.c-spacer-half {
	height: 12px;
}
.c-spacer-double {
	height: 48px;
}
.c-spacer-section {
	height: 96px;
}
.c-spacer-header {
	height: 168px;
}
/* /Spacers */


/* Formatting */
.textcenter {
	text-align: center;
}
.textright {
	text-align: right;
}
.textleft {
	text-align: left;
}
.textsmall {
	color: #000;
	font-size: 12px;
	line-height: 17px;
}
.textbody {
	font-size: 14px;
	line-height: 26px;
}
.textlarge {
	font-size: 72px;
	line-height: 80px;
	font-weight: 700;
}
.textupper {
	text-transform: uppercase;
}
.textbold {
	font-weight: 700;
}
.textcolor {
	color: var(--text-color);
}
.textprimary {
	color: var(--text-primary-color);
}
.textnodecoration {
	text-decoration: none;
}
.textnowrap {
	white-space: nowrap;
}
/* /Formatting */


/* Countdown */
.c-countdown-date {
	background-color: var(--text-secondary-color);
}
.c-countdown-glass-1 {
	background-repeat: no-repeat;
	background-image: url('/wp-content/themes/weindorf/images/glass-1.png');
	background-position: center bottom;
	background-size: auto 85%;
}
.c-countdown-glass-2 {
	background-repeat: no-repeat;
	background-image: url('/wp-content/themes/weindorf/images/glass-2.png');
	background-position: center bottom;
	background-size: auto 85%;
}
.c-countdown-glasses {
	background-repeat: no-repeat;
	background-image: url('/wp-content/themes/weindorf/images/glasses.png');
	background-position: center bottom;
	background-size: contain;
	min-height: 200px;
	display: none;
}
/* Countdown */


/* Header */
#header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 80;
	transform: translateY(0);
	transition: transform 0.3s;
}
body.header-retracted #header {
	transform: translateY(-100%);
}
#headerbar {
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: var(--background-transparent);
	transition: all 0.3s;
	backdrop-filter: blur(10px);
}
body.header-reduced #headerbar {
	padding-top: 8px;
	padding-bottom: 8px;
}
#headercontent {
	display: grid;
	grid-template-columns: 288px 1fr 148px;
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
	height: 68px;
}
#headerlogo {
	height: 68px;
}
#headerlogo a {
	width: 268px;
	display: block;
}
#headerlogo a svg {
	width: 100%;
	display: block; 
}
#headerlogo a svg path {
	fill: var(--text-primary-color);
}
#headerlogo a:hover svg path {
	fill: var(--text-hover-color);
}
#headermenu {
	padding-top: 17px;
}
#headermenu .header-nav ul {
	width: 100%;
    list-style-type: none;
    margin: 0;
    padding: 0;
	text-align: center;
}
#headermenu .header-nav ul li {
	display: inline-block;
	height: 34px;
}
#headermenu .header-nav ul li a {
	display: inline-block;
	font-size: 18px;
	line-height: 34px;
	text-decoration: none;
	font-weight: bold;
	margin-right: 25px;
	margin-left: 25px;
}
#headersocial {
	margin-top: 16px;
	height: 36px;  
	text-align: right;
}
.social-nav a {
	display: inline-block;
	width: 36px;
	height: 36px;
}
.social-nav a svg {
	display: inline-block;
	width: 36px;
	height: 36px;
}
.social-nav a svg path {
	fill: var(--text-primary-color);
}
.main-social.social-nav a svg path {
	fill: #fff;
}
.social-nav a:hover svg path {
	fill: var(--text-hover-color);
}
/* /Header */


/* Mobile Menu */
#mobiletools {
	display: none;
	z-index: 90;
	position: fixed;
	width: 128px;
	height: 48px;
	top: 48px;
	right: 0;
	transform: translateY(0);
	transition: all 0.3s;
}
body.header-reduced #mobiletools {
	top: 6px;
}
body.header-retracted #mobiletools {
	transform: translateY(-100%);
}
#mobilemenubutton {
	position: relative;
	width: 48px;
	height: 48px;
	cursor: pointer;
	margin: 0 -10px 0 auto;
}
#mobilemenubutton span {
	position: absolute;
	right: 10px;
	left: 10px;
	height: 4px;
	display: inline-block;
	background-color: var(--text-primary-color);
	transition: all 0.3s;
}
#mobilemenubutton span.a1 {
	top: 12px;
}
#mobilemenubutton span.a2 {
	top: calc(50% - 2px);
}
#mobilemenubutton span.a3 {
	bottom: 12px;
}
body.main-active #mobilemenubutton span {
	background-color: #fff;
}
body.main-active #mobilemenubutton span.a1 {
	transform: rotate(45deg);
	top: 22px;
}
body.main-active #mobilemenubutton span.a2 {
	opacity: 0;
}
body.main-active #mobilemenubutton span.a3 {
	transform: rotate(-45deg);
	bottom: 22px;
}
#mobilemenubutton:hover span {
	background-color: var(--text-hover-color) !important;
}
/* /Mobile Menu */


/* Main Menu */
#mainmenu {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	transition: all 0.2s;
	transform: translateX(100%);
	opacity: 0;
	height: 100vh;
	overflow: hidden;
	z-index: 85;
	width: 320px;
	padding: 0 40px 40px 40px;
	background-color: var(--text-primary-color);
	color: #fff;
	overflow-y: auto;
}
body.main-active #mainmenu {
	transform: translateX(0);
	opacity: 1;
}
#mainlogo a {
	display: inline-block;
	width: 190px;
}
#mainlogo a svg {
	width: 100%;
	display: inline-block;
}
#mainlogo a svg path {
	fill: #fff;
}
#mainlogo a:hover svg path {
	fill: var(--text-hover-color);
}
.main-nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.main-nav ul li {
	display: block;
	margin-bottom: 10px;
}
.main-nav ul li a {
	display: inline-block;
	font-size: 18px;
	line-height: 26px;
	text-decoration: underline;
	font-weight: bold;
	color: #fff;
}
.main-nav ul li a:hover {
	color: var(--text-hover-color);
}
/* /Main Menu */


/* Parallax */
.c-parallax {
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-color: #888;
	position: relative;
}
.c-parallax-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
/* Paralax */


/* Footer */
.footer-bg {
	background-image: url('/wp-content/themes/weindorf/images/footer-bg.png');
	background-size: 178px 316px;
	background-repeat: no-repeat;
	background-position: right 50px top 0;
	min-height: 316px;
	padding-right: 228px;
}
.footer-intro {}
.footer-social {}
.footer-times {}
.footer-nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.footer-nav ul li {
	display: block;
	margin-bottom: 10px;
}
.footer-nav ul li a {
	display: inline-block;
	font-size: 18px;
	line-height: 26px;
	text-decoration: underline;
	font-weight: bold;
}
@media only screen and (max-width: 1024px) {
	.footer-mobile-reorder .c-col:nth-child(1) { order: 3; }
	.footer-mobile-reorder .c-col:nth-child(2) { order: 1; }
	.footer-mobile-reorder .c-col:nth-child(3) { order: 2; }
}
@media only screen and (max-width: 768px) {
	.footer-bg {
		background-size: 178px 316px;
		background-position: right 0 top 0;
		padding-right: 178px;
	}
}	
/* /Footer */


/* Grid */
.c-grid {
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: auto;
	grid-column-gap: 50px;
	grid-row-gap: 50px;
}
.c-grid-nogutter {
	grid-column-gap: 0 !important;
	grid-row-gap: 0 !important;
}
.c-grid-1-11 {
	grid-template-columns: 1fr 11fr;
}
.c-grid-1-4-1-6 {
	grid-template-columns: 1fr 4fr 1fr 6fr;
}
.c-grid-1-5-6 {
	grid-template-columns: 1fr 5fr 6fr;
}
.c-grid-3-1-8 {
	grid-template-columns: 3fr 1fr 8fr;
}
.c-grid-8-1-3 {
	grid-template-columns: 8fr 1fr 3fr;
}
.c-grid-3-3-3-3 {
	grid-template-columns: repeat(4, 1fr);
}
.c-grid-4-4-4 {
	grid-template-columns: repeat(3, 1fr);
}
.c-grid-4-1-7 {
	grid-template-columns: 4fr 1fr 7fr;
}
.c-grid-7-1-4 {
	grid-template-columns: 7fr 1fr 4fr;
}
.c-grid-6-6 {
	grid-template-columns: repeat(2, 1fr);
}
.c-grid-6-3-3 {
	grid-template-columns: 2fr 1fr 1fr;
}
.c-grid-3-3-6 {
	grid-template-columns: 1fr 1fr 2fr;
}
.c-grid-3-6-3 {
	grid-template-columns: 1fr 2fr 1fr;
}
.c-grid-5-7 {
	grid-template-columns: 5fr 7fr;
}
.c-grid-7-5 {
	grid-template-columns: 7fr 5fr;
}
.c-grid-4-8 {
	grid-template-columns: 1fr 2fr;
}
.c-grid-8-4 {
	grid-template-columns: 2fr 1fr;
}
.c-grid-3-9 {
	grid-template-columns: 1fr 3fr;
}
.c-grid-9-3 {
	grid-template-columns: 3fr 1fr;
}
.c-col-center {
	place-self: center;
	width: 100%;
}
.c-col-end {
	place-self: end;
	width: 100%;
}
/* /Grid */


/* Columns */
.c-row {
	display: block;
	margin: 0 -40px -40px 0;
}
.c-row::after {
	content: "";
	display: table;
	clear: both;
}
.c-clear {
	display: block;
	clear: both;
	width: 100%;
	border: 1px solid transparent;
	height: 1px;
}
.c-col-1, .c-col-2, .c-col-3, .c-col-4, .c-col-5, .c-col-6,
.c-col-7, .c-col-8, .c-col-9, .c-col-10, .c-col-11, .c-col-12 {
	float: left;
	padding: 0 40px 40px 0;
	margin: 0;
}
.c-col-1 { width: 8.33%; }
.c-col-2 { width: 16.66%; }
.c-col-3 { width: 25%; }
.c-col-4 { width: 33.33%; }
.c-col-5 { width: 41.66%; }
.c-col-6 { width: 50%; }
.c-col-7 { width: 58.33%; }
.c-col-8 { width: 66.66%; }
.c-col-9 { width: 75%; }
.c-col-10 { width: 83.33%; }
.c-col-11 { width: 91.66%; }
.c-col-12 { width: 100%; }
/* /Columns */


/* Button */
.urban-button {
	display: inline-block;
	height: 42px;
	line-height: 36px;
	padding: 0 48px;
	background-color: transparent;
	border: 2px solid var(--text-primary-color);
	color: var(--text-primary-color);
	font-weight: 700;
	font-size: 16px;
	white-space: nowrap;
	text-decoration: none;
	transition: all 0.3s;
	cursor: pointer;
}
.urban-button:hover {
	background-color: var(--text-primary-color);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}
/* /Button */


/* Formatting */
.mobileonly {
	display: none;
}
.desktoponly {
	display: block;
}
.wideonly {
	width: 100%;
}
/* /Formatting */


/* Pagination */
.navigation.pagination .screen-reader-text {
	display: none;
}
.navigation.pagination .nav-links .page-numbers {
	display: inline-block;
	text-decoration: none;
	padding: 0 20px;
	line-height: 28px;
	height: 32px;
	background-color: transparent;
	color: #333;
	border: 2px solid var(--text-color);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: bold;
	font-size: 12px;
	margin-right: 10px;
	margin-bottom: 10px;
	cursor: pointer;
}
.navigation.pagination .nav-links .page-numbers.current {
	background-color: var(--text-color);
	color: #fff;
}
.navigation.pagination .nav-links .page-numbers:hover {
	border: 2px solid var(--theme-primary-color) !important;
	color: var(--theme-primary-color) !important;
}
.navigation.pagination .nav-links .page-numbers.current:hover {
	border: 2px solid var(--theme-primary-color) !important;
	background-color: var(--theme-primary-color) !important;
	color: #fff !important;
}
/* /Pagination */


/* Animations */
.customAnim.animFadeUp {
	opacity: 0;
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
}
.customAnim.animFadeUp.come-in {
	opacity: 1;
	animation: afu-come-in 0.4s ease forwards;
	-webkit-transform: -webkit-translateY(200px);
	transform: translateY(200px);
}
@keyframes afu-come-in {
	to {
		-webkit-transform: -webkit-translateY(0);
		transform: translateY(0);
	}
}
/* /Animations */


/* FAQ */
.faq-item {
	border-bottom: 2px solid #000;
}
.faq-item-inner {
	padding: 36px 18px 36px 0;
}
.faq-item-title {
	position: relative;
	padding-right: 48px;
	cursor: pointer;
	transition: color 0.2s;
}
.faq-item-arrow {
	position: absolute;
	top: 0;
	right: 4px;
	width: 18px;
	height: 18px;
	border-right: 3px solid #000;
	border-bottom: 3px solid #000;
	transform: rotate(45deg);
	transition: all 0.2s;
	pointer-events: none;	
}
.faq-item-title:hover h4 {
	color: var(--text-hover-color);
}
.faq-item-title:hover .faq-item-arrow {
	border-color: var(--text-hover-color);
}
.faq-item-content {
	height: 0;
	overflow: hidden;
}
.faq-item.active .faq-item-content {
	height: auto;
}
.faq-item.active .faq-item-arrow {
	top: 8px;
	transform: rotate(225deg);
	
}
/* /FAQ */


/* Hosts */
.host-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 25px;
	grid-row-gap: 50px;
}
.host-box {
	position: relative;
	padding-bottom: 32px;
}
.host-box a {
	display: block;
	color: var(--text-color);
	text-decoration: none;
}
.host-box-image-wrapper {
	background-color: #fff;
	padding: 20px;
	margin-bottom: 25px;
}
.host-box-image {
	padding-bottom: 50%;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}
.host-box-link {
	position: absolute;
	bottom: 0;
	left: 0;
	display: inline-block;
	color: var(--text-color);
	border-bottom: 2px solid var(--text-color);
	font-weight: bold;
	font-size: 18px;
	line-height: 25px;
}
.host-box-link:hover {
	color: var(--text-hover-color);
	border-bottom: 2px solid var(--text-hover-color);
}
.hosts-slider {
	margin: 0 -12px;
	padding-top: 80px;
	padding-bottom: 40px;
}
.hosts-slider .slick-slide {
	margin: 0 12px;
}

.hosts-slider .slick-dots {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	font-size: 0;
	line-height: 0;
	margin: 0;
}
.hosts-slider .slick-dots li {
	display: inline-block;
	height: 4px;
	padding: 0 5px;
	margin: 0;
}
.hosts-slider .slick-dots li button {
	display: inline-block;
	height: 8px;
	background-color: #888;
	width: 8px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s;
	font-size: 0;
	color: transparent;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
.hosts-slider .slick-dots li.slick-active button {
	width: 24px;
	background-color: #000;
}
.hosts-slider .slick-dots li:hover button {
	background-color: var(--text-hover-color);
}

.hosts-slider .slick-arrow {
	position: absolute;
	top: 0;
	display: inline-block;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	color: transparent;
	overflow: hidden;
	background-color: var(--text-primary-color);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	cursor: pointer;
	z-index: 2;
	border: none;
}
.hosts-slider .slick-arrow.slick-next {
	right: 12px;
	background-image: url('/wp-content/themes/weindorf/images/arrow-wd-right.png');
}
.hosts-slider .slick-arrow.slick-prev {
	right: 102px;
	background-image: url('/wp-content/themes/weindorf/images/arrow-wd-left.png');
}
.hosts-slider .slick-arrow:hover {
	background-color: var(--text-hover-color);
}
.hosts-slider .slick-arrow.slick-next::before {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 24px;
	height: 24px;
	border-top: 3px solid var(--background-color);
	border-right: 3px solid var(--background-color);
	transform: rotate(45deg);
}
.hosts-slider .slick-arrow.slick-prev:before {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 24px;
	height: 24px;
	border-top: 3px solid var(--background-color);
	border-left: 3px solid var(--background-color);
	transform: rotate(-45deg);
}
/* Hosts */


/* Ticker */
.c-ticker {
	background-color: #243549;
}
.c-ticker-wrapper {
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
}
.c-ticker-bar {
	display: flex;
	width: max-content;
	will-change: transform;
	animation: marquee 60s linear infinite;
}
.c-ticker-bar-reverse {
	display: flex;
	width: max-content;
	will-change: transform;
	animation: marquee-reverse 60s linear infinite;
	margin-top: 8px;
}
.c-ticker-content {
	display: inline-flex;
	align-items: center;
	gap: 1.25rem; /* spacing between items */
	padding-inline: 1.25rem;
	font-size: 96px;
	line-height: 104px;
	font-weight: 700;
	color: #efa18f;
	background-image: url('/wp-content/themes/weindorf/images/sant.png');
	background-size: contain;
	background-position: right center;
	background-repeat: no-repeat;
	padding-right: 104px;
}
@keyframes marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
@keyframes marquee-reverse {
	from { transform: translateX(-50%); }
	to   { transform: translateX(0); }
}
/*
.c-ticker:hover .c-ticker-bar,
.c-ticker:hover .c-ticker-bar-reverse {
	animation-play-state: paused;
}
*/
@media (prefers-reduced-motion: reduce) {
	.c-ticker-bar { animation: none; }
}
/* /Ticker */


/* Layouts */
.c-layout-1 {
	overflow: hidden;
}
.c-layout-1-image-1 {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 100%;
}
.c-layout-1-image-2 {
	position: relative;
	z-index: 2;
	display: inline-block;
	height: 400px;
}
@media only screen and (max-width: 768px) {
	.c-layout-1-image-1 {
		position: static;
		width: 100%;
		display: block;
	}
	.c-layout-1-image-2 {
		width: 100%;
		display: block;
		height: auto;
	}
}

.c-layout-2 {
	display: block;
	position: relative;
	padding-bottom: 125%;
	overflow: hidden;
}
.c-layout-2-image-1 {
	position: absolute;
	top: 0;
	right: 40%;
	bottom: 25%;
	left: 0;
	background-color: #888;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 4;
}
.c-layout-2-image-2 {
	position: absolute;
	top: 60%;
	right: 10%;
	bottom: 0;
	left: 20%;
	background-color: #848;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 6;
}
.c-layout-2-image-3 {
	position: absolute;
	top: 20%;
	right: 0;
	bottom: 50%;
	left: 80%;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: right center;
	z-index: 8;
}
.c-layout-3 {
	display: block;
	position: relative;
	padding-bottom: 75%;
	overflow: hidden;
}
.c-layout-3-image-1 {
	position: absolute;
	top: 5%;
	right: 60%;
	bottom: 5%;
	left: 0;
	background-color: #888;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 4;
}
.c-layout-3-image-2 {
	position: absolute;
	top: 60%;
	right: 10%;
	bottom: 0;
	left: 42%;
	background-color: #848;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 8;
}
.c-layout-3-image-3 {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 25%;
	left: 65%;
	background-color: #888;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 6;
}
/* /Layouts */


.boldlink {
	position: relative;
	color: var(--text-color);
	display: inline-block;
	font-weight: bold;
	border-bottom: 2px solid var(--text-color);
	cursor: pointer;
}
.boldlink-phone {
	margin-left: 40px;
}
.boldlink-phone::before {
	content: '';
	position: absolute;
	top: 7px;
	left: -40px;
	display: block;
	width: 18px;
	height: 18px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left center;
	background-image: url('/wp-content/themes/weindorf/images/icon-phone.svg');
}
.boldlink-email {
	margin-left: 40px;
}
.boldlink-email::before {
	content: '';
	position: absolute;
	top: 7px;
	left: -40px;
	display: block;
	width: 18px;
	height: 18px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left center;
	background-image: url('/wp-content/themes/weindorf/images/icon-email.svg');
}
.boldlink-web {
	margin-left: 40px;
}
.boldlink-web::before {
	content: '';
	position: absolute;
	top: 7px;
	left: -40px;
	display: block;
	width: 18px;
	height: 18px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left center;
	background-image: url('/wp-content/themes/weindorf/images/icon-globe.svg');
}
.boldlink-mail {
	margin-left: 40px;
}
.boldlink-web {
	margin-left: 40px;
}
.boldlink:hover {
	color: var(--text-hover-color);
	font-weight: bold;
	border-bottom: 2px solid var(--text-hover-color);
}

.relative {
	position: relative;
}
.absolute {
	position: absolute;
}

.p0 {
	padding: 0 !important;
}
.m0 {
	margin: 0 !important;
}
.pt10 {
	padding-top: 10px !important;
}
.pt20 {
	padding-top: 20px !important;
}
.pt30 {
	padding-top: 30px !important;
}
.pr10 {
	padding-right: 10px !important;
}
.pr20 {
	padding-right: 20px !important;
}
.pr30 {
	padding-right: 30px !important;
}
.pl0 {
	padding-left: 0 !important;
}
.pl10 {
	padding-left: 10px !important;
}
.pl20 {
	padding-left: 20px !important;
}
.pl30 {
	padding-left: 30px !important;
}
.pb10 {
	padding-bottom: 10px !important;
}
.pb20 {
	padding-bottom: 20px !important;
}
.pb30 {
	padding-bottom: 30px !important;
}
.py10 {
	padding-top: 10px;
	padding-bottom: 10px;
}
.py20 {
	padding-top: 20px;
	padding-bottom: 20px;
}
.py30 {
	padding-top: 30px;
	padding-bottom: 30px;
}
.mt0 {
	margin-top: 0 !important;
}
.mb0 {
	margin-bottom: 0;
}
.mt10 {
	margin-top: 10px;
}
.mt20 {
	margin-top: 20px;
}
.mr10 {
	margin-right: 10px;
}
.mr20 {
	margin-right: 20px;
}
.mr30 {
	margin-right: 30px;
}
.mr40 {
	margin-right: 40px;
}
.mr50 {
	margin-right: 50px;
}
.mb10 {
	margin-bottom: 10px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb40 {
	margin-bottom: 40px;
}
.mb50 {
	margin-bottom: 50px;
}
.ml10 {
	margin-left: 10px;
}
.ml20 {
	margin-left: 20px;
}
.ml30 {
	margin-left: 30px;
}
.ml40 {
	margin-left: 40px;
}
.ml50 {
	margin-left: 50px;
}
.w100 {
	width: 100% !important;
}


/* Responsive */
@media only screen and (max-width: 1280px) {
	
	/* Header Mobile */
	#headercontent {
		grid-template-columns: 200px 1fr 48px;
		height: 45px;
	}
	#headermenu .header-nav {
		display: none;
	}
	#headersocial .social-nav {
		display: none;
	}
	#headerlogo {
		height: 50px;
	}
	#headerlogo a {
		width: 200px;
	}
	#mobiletools {
		display: inline-block;
	}
	#mainmenu {
		display: inline-block;
	}
	.c-spacer-header {
		height: 144px;
	}
	/* /Header Mobile */

	.host-grid {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: auto;
		grid-column-gap: 25px;
		grid-row-gap: 50px;
	}

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

	/* Formatting */
	.textlarge {
		font-size: 48px;
		line-height: 56px;
	}
	/* /Formatting */

	/* Content */
	.c-content-inner {
		padding: 0 36px;
	}
	/* /Content */

	/* Columns */
	.c-col-1, .c-col-2, .c-col-3 {
		width: 50%;
	}
	.c-col-4, .c-col-5, .c-col-6, .c-col-7, .c-col-8, .c-col-9, .c-col-10, .c-col-11, .c-col-12 {
		width: 100%;
	}
	/* /Columns */

	/* Grid */
	.c-grid-6-6 {
		grid-template-columns: 100%;
		grid-column-gap: 0;
	}
	.c-grid-6-3-3 {
		grid-template-columns: 100%;
		grid-column-gap: 0;
	}
	.c-grid-4-4-4 {
		grid-template-columns: 100%;
		grid-column-gap: 0;
	}
	.c-grid-3-3-3-3 {
		grid-template-columns: repeat(2, 1fr);
	}
	/* /Grid */

	.host-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: auto;
		grid-column-gap: 25px;
		grid-row-gap: 50px;
	}

	.c-countdown-glasses  {
		display: block;
	}
	.c-countdown-glass-1,
	.c-countdown-glass-2 {
		background-image: none;
	}

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

	body, button, input, select, textarea {
		font-size: 16px;
		line-height: 24px;
	}

	/* Formatting */
	.mobileonly {
		display: block;
	}
	.desktoponly {
		display: none;
	}

	.textlarge {
		font-size: 32px;
		line-height: 40px;
	}

	h1, .h1 {
		font-size: 26px;
		line-height: 34px;
	}
	h2 {
		font-size: 24px;
		line-height: 32px;
	}
	h3 {
		font-size: 22px;
		line-height: 30px;
	}
	h4 {
		font-size: 20px;
		line-height: 28px;
	}
	h5 {
		font-size: 18px;
		line-height: 26px;
	}
	/* /Formatting */

	/* Content */
	.c-content-inner {
		padding: 0 18px;
	}
	/* /Content */

	/* Columns */
	.c-row {
		clear: both;
		margin: 0 0 -18px 0;
	}
	.c-col-1, .c-col-2, .c-col-3, .c-col-4, .c-col-5, .c-col-6,
	.c-col-7, .c-col-8, .c-col-9, .c-col-10, .c-col-11, .c-col-12 {
		width: 100%;
		padding: 0 0 18px 0;
	}
	/* /Columns */

	/* Grid */
	.c-grid {
		clear: both;
		grid-row-gap: 30px;
		width: 100%;
	}
	.c-grid-1-11 {
		grid-template-columns: 100%;
		grid-column-gap: 0;
	}
	.c-grid-1-4-1-6 {
		grid-template-columns: 100%;
		grid-column-gap: 0;
	}
	.c-grid-1-5-6 {
		grid-template-columns: 100%;
		grid-column-gap: 0;
	}
	.c-grid-3-1-8,
	.c-grid-8-1-3 {
		grid-template-columns: 100%;
		grid-column-gap: 0;
	}
	.c-grid-3-3-3-3 {
		grid-template-columns: 100%;
		grid-column-gap: 0;
	}
	.c-grid-3-3-6,
	.c-grid-6-3-3,
	.c-grid-3-6-3 {
		grid-template-columns: 100%;
		grid-column-gap: 0;
	}
	.c-grid-4-1-7,
	.c-grid-7-1-4 {
		grid-template-columns: 100%;
		grid-column-gap: 0;
	}
	.c-grid-4-8,
	.c-grid-8-4 {
		grid-template-columns: 100%;
		grid-column-gap: 0;
	}
	.c-grid-5-7,
	.c-grid-7-5 {
		grid-template-columns: 100%;
		grid-column-gap: 0;
	}
	.c-grid-3-9,
	.c-grid-9-3 {
		grid-template-columns: 100%;
		grid-column-gap: 0;
	}
	/* /Grid */

	.host-grid {
		grid-template-columns: 100%;
		grid-template-rows: auto;
		grid-column-gap: 0;
		grid-row-gap: 50px;
	}

	/* Spacers */
	.c-spacer {
		clear: both;
		height: 12px;
	}
	.c-spacer-halfhalf,
	.c-spacer-small {
		clear: both;
		height: 5px;
	}
	.c-spacer-half {
		clear: both;
		height: 6px;
	}
	.c-spacer-double {
		clear: both;
		height: 24px;
	}
	.c-spacer-section {
		clear: both;
		height: 48px;
	}
	/* /Spacers */

	.c-ticker-content {
		font-size: 32px;
		line-height: 40px;
		padding-right: 48px;
	}

}
/* Responsive */
