/****************************** Readme ********************************
Project: 

Color H1: #e1c646;

Media Queries
/* Small only 
@media screen and (max-width: 39.9375em) {}

/* Medium and up 
@media screen and (min-width: 40em) {}

/* Medium only
@media screen and (min-width: 40em) and (max-width: 63.9375em) {}

/* Large and up 
@media screen and (min-width: 64em) {}

/* Large only
@media screen and (min-width: 64em) and (max-width: 74.9375em) {}
/****************************** Font *********************************/

:root {
  --primary-color: #574a3d;
  --secondary-color: #f0823a;
  --copy: #373737;
  --hover: red;
  --shadow-color: rgba(0,0,0,0.25);
  --highlight-color: rgba(255,255,255,0.15);;
  --shadow-color-light: #fff;
  --primary-reveal: #fff;
  --secondary-reveal: #dedede;
}

@font-face {
    font-family: 'Bebas Neue Book';
    src: url('../fonts/BebasNeue-Book.woff2') format('woff2'),
        url('../fonts/BebasNeue-Book.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/BebasNeue-Light.woff2') format('woff2'),
        url('../fonts/BebasNeue-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


/****************************** Basic *********************************/
body {
	background-color: #f0eae0;
	font-family: "Quicksand", sans-serif;
  	font-weight: 400;
  	font-style: normal;
	font-size: 1rem;
	color: var(--copy);
	background: url(../images/site-bg.jpg) center top no-repeat;
	background-size: 100% auto;
}

.grid-container {
	max-width: 90rem;
}

p {
	
}

strong {
	text-transform: uppercase;
	font-family: "Quicksand", sans-serif;
	font-weight: 900;
}

a {
	color: #555;
}

a.active {
	color: #333;
}

a:hover,
a:focus {
	color: #333;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Bebas Neue", sans-serif;
	text-transform: uppercase;
	color: var(--primary-color);
}

h1 {
	position: relative;
	font-size: 55px;
	color: var(--primary-color);
	text-transform: uppercase;
	margin-bottom: 0;
	font-smooth: always;
	animation: neon 3s infinite;
}


.button {
	background-color: #000;
	-webkit-transition: all 1.5s ease;
	-moz-transition: all 1.5s ease;
	-o-transition: all 1.5s ease;
	transition: all 1.5s ease;
	color: #fff;
	font-family: "Bebas Neue", sans-serif;
	text-transform: uppercase;
	font-size: 1.85rem;
	padding: 0.65em 1em;

}

.button:hover {
	background-color: #ccc;
	box-shadow: 0px 0px 13.95px 1.05px rgba(254,91,167,.4);
}

.custom-lightboxes{
    display: none;
}

/****************************** Off-Canvas Nav *********************************/
img.logo {
	max-height: 64px;
}

#off-canvas-top img.logo {
	margin-bottom: 1rem;
}

.position-top {
	overflow: visible;
	height: auto;
	transition: all 0.5s ease-out;
}

.submenu {
	background: #ddd;
	border: 0 none;
}

#off-canvas-top > .menu {
	padding-top: 1.5rem;
}

.off-canvas {
	background: #fff;
	transition: all 0.75s ease-out;
}

.off-canvas-toggle {
	width: 100%;
}
.off-canvas-toggle button {
	width: 100%;
	padding: 0.75rem 0.75rem 0.6rem;
	text-align: left;
	background: #ccc;
	cursor: pointer;
}

.close-button {
	right: 1rem;
    top: 1rem;
    font-size: 1em;
    line-height: 1;
    z-index: 9;
}

.mail-button {
	position: absolute;
	left: 1rem;
    top: 1rem;
    font-size: 1em;
    line-height: 1;
    z-index: 9;
}

.off-canvas.is-transition-overlap {
	opacity: 0;
	transition: all 0.75s ease-out;
}

.off-canvas.is-open {
	opacity: 1;
	transition: all 0.75s ease-out;
}

/****************************** Custom Styles *********************************/
#top {
    position: absolute;
    top: 0;
    left: 0;
}

.branding {
	background-color: rgba(255, 255, 255, .5);
	padding: 3rem;
	max-height: 170px;
	backdrop-filter:  blur(8px);
	position: relative;
}

.branding .spt {
	position: absolute;
	height: 32px;
	padding: 3px 5px;
	text-align: center;
	color: #fff;
	background: var(--secondary-color);
	top: 0;
	right: 0;
}

.branding .spt a {
	color: #fff;
}

.branding img {
	width: 300px;
	max-width: 100%;
}

.branding h3 {
	margin-bottom: 0;
	line-height: 1;
}

.welcome {
	height: calc(100% - 170px);
}


section.hero .hero-img {
	height: 1015px;
	max-height: 90vh;
	background: url('../images/header-image.jpg') center center;
	background-size: cover;
}

section.hero .hero-img-datenschutz {
	height: auto;
	background: url('../images/header-image.jpg') center center;
	background-size: cover;
}

li.lang-item {
	list-style: none;
	margin: 0;
	padding: 0;
}

.welcome-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: normal;
  align-content: normal;
  height: 100%;
}

.welcome-message {
  display: block;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  align-self: center;
  order: 0;
  padding: .75rem 1.5rem .5rem;
  background: rgba(255, 255, 255, .25);
  backdrop-filter: blur(8px);
  font-family: 'Bebas Neue Book';
}


section.contact-hero .grid-container {
	position: relative;
}

section.contact-hero .quick-contact {
	position: absolute;
	height: 60px;
	top: -60px;
	background: rgba(240, 130, 58, .65);
	backdrop-filter: blur(8px);
	color: #fff;
	font-size: 1.875rem;
	font-family: 'Bebas Neue Book';
	width: calc(100% - 1.875rem);
	padding: 0.5rem 1rem;
}

section.contact-hero .quick-contact a {
	color: #fff;
}

section.main-content .content-grid {
	background-color: #efe9e0;
	padding: 8rem 0;
}

section.main-content .content-grid img {
	max-width: 90%;
}

.welcome-message h1 {
	text-align: center;
}

section.main-content h1 {
	line-height: 1.2;
	margin-bottom: 2rem;
}

section.secondary-content {
	padding: 5rem 0 8rem;
}

img.linie {
	margin: 1rem 0 2rem;
}

section.call-to-action {
	padding: 5rem 0;
	background-color: var(--secondary-color);
	color: #fff;
}

section.call-to-action h2 {
	color: #fff;
	margin-bottom: 2rem;
}

section.call-to-action img.form {
	max-width: 90%;
}

.maps {
	padding-top: 2rem;
}

section.call-to-action .grid-container {
	position: relative;
}

img.blume {
	position: absolute;
	top: -200px;
	max-width: 250px;
}

.submit-block {
	margin-top: 37px;
}

textarea#nachricht {
	height: 90px;
}

button, input.wpcf7-submit {
	display: block;
	text-align: center;
	font-family: 'Bebas Neue';
	font-size: 1.875rem;
	color: var(--primary-color);
	width: 100%;
	background: #fff;
	padding: 1rem;
	border: 0 none;
}

[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'], textarea {
	border: 0 none;
	border-bottom: 2px solid var(--primary-color);
	background: none;
	-webkit-box-shadow: none;
    box-shadow: none;
    resize: none;
}

.wpcf7-list-item {
	margin: 0;
	color: var(--primary-color);
	font-family: 'Bebas Neue';
}

.wpcf7-not-valid-tip {
	color: #fff;
}

.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
	border-color: var(--primary-color);
}

textarea.wpcf7-textarea {
	height: 90px;
}

h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small {
	color: inherit;
	line-height: 1;
}

section.call-to-action .imprint {
	padding-top: 3rem;
}

section.call-to-action .imprint a {
	color: #fff;
	font-weight: 900;
}

section.call-to-action .imprint h3 {
	line-height: 1;
}

footer.main {
	background: var(--primary-color);
	padding: 2rem;
	color: #fff;
	font-size: 1rem;
}

footer.main a {
	color: #fff;
}

/****************************** Responsive Styles *********************************/
/* Small only */
@media screen and (max-width: 39.9375em) {
	.branding, .branding  p, .branding  h3 {
		text-align: center;
		margin-bottom: 0;
	}
	.branding img {
		margin-bottom: 2rem;
	}
	.branding {
		padding: 1.5rem;
	}
	section.main-content .content-grid img {
		max-width: 100%;
		margin-bottom: 2rem;
	}
	section.contact-hero .quick-contact {
		width: calc(100% - 1.25rem);
	}
	.welcome-message h1 {
		font-size: 2rem;
	}
	section.main-content .content-grid {
		padding: 2rem 2rem;
		text-align: center;
	}
	img.blume {
		position: absolute;
		top: -160px;
		max-width: 180px;
	}
	section.call-to-action img.form {
		max-width: 100%;
		width: 100%;
	}
	.small-center {
		text-align: center;
	}
	img.logo-footer {
		margin-bottom: 1rem;
	}
	.branding {
		font-size: .75rem;
	}
	section.secondary-content .entry-content {
		margin-bottom: 1.5rem;
	}
	.branding .spt a {
		font-size: 1rem;
	}
	.branding .spt {
		top: unset;
		bottom: 0;
	}
}

/* Medium and up */
@media screen and (min-width: 40em) {
}

/* Medium only */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {}

/* Large and up */
@media screen and (min-width: 64em) {}

/* Large only */
@media screen and (min-width: 64em) and (max-width: 74.9375em) {}