@font-face {
	font-family: "Lato";
	src: url(../fonts/Lato/Lato-Regular.ttf) format("truetype");
	font-style: normal;
	font-weight: 400;
}

@font-face {
	font-family: "Poiret One";
	src: url(../fonts/Poiret_One/PoiretOne-Regular.ttf) format("truetype");
	font-style: normal;
	font-weight: 400;
}

@font-face {
	font-family: "Shadows Into Light Two";
	src: url(../fonts/Shadows_Into_Light_Two/ShadowsIntoLightTwo-Regular.ttf)
		format("truetype");
	font-style: normal;
	font-weight: 400;
}

/* HTML Standard */

body,
html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	background: #f8f8eb;
}

h2 {
	text-transform: uppercase;
	text-align: center;
	margin: 100px auto 0 auto;
	font-size: 55px;
}
.h2_balken {
	margin: 2px auto 50px auto;
	height: 4px;
	width: 80px;
}
.h3_balken {
	margin: 0 auto 25px auto;
	height: 3px;
	width: 60px;
}

.button {
	text-transform: uppercase;
	padding: 10px 30px 10px 30px;
	display: inline-block;
	margin: 0 0 20px 0;
}

a {
	text-decoration: none;
}

/* zusammengefasste Klassen */

header,
footer,
header nav ul li ul li,
.drei_list ul li .tag_line .h3_balken,
.left,
.right,
#WW,
#Important .important,
.response,
.txt {
	background: #fff;
}

.fill,
.h2_balken,
.h3_balken {
	background-color: #575757;
}

p,
a,
header nav ul li a,
header nav ul li,
h2,
h3 {
	color: #575757;
}

.spruch article .motto {
	color: #404040;
}

footer,
footer a {
	color: #666;
}

#Kontaktformular label,
#Kontaktformular fieldset,
header .logo_txt p,
#Bowtech_content .important a,
#Bowtech_content .important p {
	color: #000;
}

header nav ul li a:hover {
	color: #111;
}

p,
header nav ul li,
.button,
footer,
#Kontaktformular label,
#Kontaktformular fieldset,
.btn_info,
.btn_price,
.alert_success,
.alert_warning,
.impTXT {
	font-family: "Lato", sant-serif;
	font-weight: 400;
	line-height: 25px;
	word-spacing: 3px;
}

header .logo_txt p,
footer p {
	font-family: "Shadows Into Light Two", cursive;
}

h2,
h3,
h4,
.spruch article .motto {
	font-family: "Poiret One", cursive;
}

header,
header nav ul li a,
header nav ul,
header #logo,
header .lang img,
header .logo_txt,
header .logo_txt p {
	transition: all 300ms;
}

.page {
	width: 100%;
}
.container {
	padding: 0;
}

/* HEADER */

header {
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 45px;
	border-bottom: 1px solid #e7e7e7;
}

header #logo {
	float: left;
	width: 70px;
	margin: 0 0 0 15px;
}
header #logo img {
	width: 100%;
	height: auto;
}
header .logo_txt {
	width: 125px;
	float: left;
	height: 25px;
	margin: 10px 0 0 0;
}
header .logo_txt p {
	margin-top: 5px;
	padding: 0;
	text-align: center;
	font-size: 18px;
}

header nav {
	float: right;
	height: 40px;
	margin: 0;
	padding: 0;
}
header nav ul {
	margin: 10px 8px 0 0;
	padding: 0;
}
header nav ul li {
	margin: 0 15px 0 0;
	padding: 0;
	list-style: none;
	float: left;
	position: relative;
}
header nav ul li a {
	text-transform: uppercase;
	font-size: 11px;
}

@media screen and (min-width: 901px) {
	header:hover {
		height: 70px;
	}

	header:hover > #logo {
		width: 105px;
		margin: 0 0 0 20px;
	}
	header:hover > .logo_txt {
		width: 175px;
		height: 65px;
		margin: 26px 20px 0 0;
		padding: 0 10px 0 10px;
	}
	header:hover > .logo_txt p {
		font-size: 25px;
	}

	header:hover > nav {
		height: 65px;
	}
	header:hover > nav ul {
		margin: 26px 20px 0 0;
		padding: 0 10px 0 10px;
	}
	header:hover > nav ul li a {
		font-size: 14px;
	}
}

/* ##### HEADER MOBILE ##### */

header .menu {
	position: absolute;
	top: 10px;
	right: 20px;
	cursor: pointer;
	width: 20px;
	height: 20px;
	padding: 10px;
}

header .hamburger,
.hamburger::before,
.hamburger::after {
	content: "";
	display: none;
	background: #999;
	height: 3px;
	width: 20px;
	border-radius: 3px;
	transition: all ease-in-out 500ms;
}
.hamburger::before {
	transform: translateY(-6px);
}
.hamburger::after {
	transform: translateY(3px);
}

.nav-open {
	height: auto;
}
.open .hamburger {
	transform: rotate(45deg);
}
.open .hamburger::before {
	opacity: 0;
}
.open .hamburger::after {
	transform: translateY(-3px) rotate(-90deg);
}

@media screen and (max-width: 900px) {
	header .hamburger,
	.hamburger::before,
	.hamburger::after {
		display: block;
	}
	header nav {
		position: absolute;
		top: 100%;
		right: 0%;
		overflow: hidden;
		height: 0px;
	}
	header nav ul {
		margin: 0;
		padding: 0;
		background: #fff;
	}
	header nav ul li {
		display: block;
		float: right;
		width: 100%;
		margin: 0;
		padding: 0;
		float: none;
		border-bottom: 1px solid #e7e7e7;
	}
	header nav ul li:last-child {
		border-bottom: none;
	}
	header nav ul li a {
		display: block;
		padding: 10px 20px 10px 13px;
		text-align: center;
	}
}

/* STARTSEITE */

.box {
	margin-top: 15px;
	margin-bottom: 15px;
}
.txt {
	height: 100%;
	padding: 75px 20px 57px 20px;
	text-align: center;
	font-size: 17px;
	line-height: 30px;
	border: 1px solid #e2e2d6;
}
.pic {
	height: 300px;
}
.spruch {
	text-align: center;
	padding-bottom: 140px;
	position: relative;
}
.spruch article {
	margin: 25px 0 0;
	background: url(../images/lf/field.jpg);
	background-size: cover;
	background-position: 0% 35%;
}
.spruch article .motto {
	display: inline-block; /* notwendig, um p-tag mit width oder margin anzusprchen */
	margin: 20px auto;
	width: 40%;
	font-size: 45px;
	line-height: 50px;
	text-transform: uppercase;
}

#Health .pic {
	background: url(../images/lf/flower.jpg);
	background-size: cover;
	background-position: 0% 5%;
	background-clip: content-box;
}
#Massage .pic {
	background: url(../images/lf/essential-oils.jpg);
	background-size: cover;
	background-position: 35% 0%;
	background-clip: content-box;
}
#Hippo .pic {
	background: url(../images/lf/meditation.jpg);
	background-size: cover;
	background-position: 0% 40%;
	background-clip: content-box;
}

/* WOHLFUELPROGRAMME */

.ww {
	margin: 20px 0;
}
.ww h3 {
	font-weight: bold;
}
#Important {
	position: relative;
	float: left;
}
#Important .important {
	margin: 20px 0 20px 0;
	border: 1px solid #e2e2d6;
}
#Important .important p {
	margin: 15px 0 15px 15px;
	line-height: 20px;
}

.btn-ww {
	background-color: #b3dcc4;
}

#Important .last {
	position: relative;
	margin: 20px 0 140px 0;
}

.important-wrapper {
	position: fixed;
	bottom: 50px;
	left: 50px;
	z-index: 99;
}

.important-wrapper p {
	cursor: pointer;
	font-size: 50px;
	-webkit-animation: glow 1s ease-in-out infinite alternate;
	-moz-animation: glow 1s ease-in-out infinite alternate;
	animation: glow 1s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
	from {
		text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 20px red, 0 0 20px red,
			0 0 20px red, 0 0 20px red, 0 0 20px red, 0 0 20px red, 0 0 20px red;
	}
	to {
		text-shadow: none;
	}
}

#container .title {
	color: red;
	padding: 25px 0 30px 0;
	width: 560px;
	font-size: 42px;
	-webkit-animation: glow 1s ease-in-out infinite alternate;
	-moz-animation: glow 1s ease-in-out infinite alternate;
	animation: glow 1s ease-in-out infinite alternate;
}

/* BOWTECH */

#Bowtech_content {
	background: url(../images/strand_hell.jpg);
	margin-top: 20px;
	padding: 25px 50px 25px 50px;
	background-size: cover;
	background-position: center center;
}

#Bowtech_content .important {
	margin: 2% 0;
	border: 1px solid #e2e2d6;
	background: #fff;
	opacity: 0.8;
}
#Bowtech_content .important p {
	margin: 15px;
	line-height: 20px;
}
#Bowtech_content .important li p {
	margin: 0;
}
#Bowtech_content .important p a {
	color: red;
}
#Bowtech_content .important p a:hover {
	text-decoration: underline;
}

#Bowtech_content .last {
	position: relative;
	margin: 20px 0 140px 0;
}

/* ÜBER MICH */

#About {
	position: relative;
	padding-bottom: 125px;
}
.left_txt {
	margin-top: 50px;
}
.left_txt article {
	width: 100%;
	margin: 25px auto 25px auto;
	font-size: 15px;
}
.text {
	padding-top: 12%;
}
.left_txt article p {
	line-height: 20px;
}
.left_txt li p {
	margin: 0;
}
.left_txt article h3 {
	font-size: 20px;
	margin-bottom: 5px;
	font-weight: bold;
}
.left_txt .h3_balken {
	margin: 0 auto 10px 0;
}
#About .pic {
	background: url(../images/strand_hell.jpg);
	background-size: cover;
	background-position: center;
}

/* KONTAKTFORMULAR */

#Kontaktformular {
	width: 100%;
}
.kontaktformular {
	margin-top: 25px;
	padding: 25px 0 25px 0;
	background: url(../images/strand_hell2.jpg);
	background-size: cover;
	background-position: cover cover;
}
#Kontaktformular h2 {
}

#email,
#message {
	display: block;
	width: 300px;
	padding: 6px 10px;
	margin: 0 auto;
	border: 1px solid #e7e7e7;
}
textarea {
	height: auto;
	box-sizing: padding-box;
	overflow: hidden;
}
#vname,
#name {
	display: block;
	float: left;
	width: 140px;
	padding: 6px 10px;
	margin: 0;
	border: 1px solid #e7e7e7;
}
.name {
	margin-bottom: 20px;
}
#vn,
#nn {
	padding-left: 10px;
	padding-right: 10px;
}
#email {
	margin: 0 auto 20px auto;
}

#send_btn {
	display: block;
	margin: 20px auto 0 auto;
	padding: 7px 14px;
}

.alert_success,
.alert_warning {
	display: block;
	width: 300px;
	padding: 6px 10px;
	margin: 10px auto 0 auto;
	line-height: 20px;
	font-size: 14px;
	text-align: center;
	font-weight: 400;
	border: 1px solid transparent;
	border-radius: 0.25rem;
}
.alert_success {
	background-color: #d4edda;
}
.alert_warning {
	background-color: #f9b6b6;
}

@media screen and (max-width: 768px) {
	#Kontaktformular form {
		padding: 0 0 125px 0;
	}
}
@media screen and (min-width: 1990px) {
	#Kontaktformular form {
		padding: 0 0 125px 0;
	}
}

.response {
	display: none;
	width: 30%;
	position: absolute;
	top: 45%;
	left: 35%;
	border: 1px solid black;
	z-index: 9999;
}
.response p {
	margin: 20px;
	display: block;
	text-align: center;
	line-height: 25px;
}
.rb {
	margin: 0 10px 20px 10px;
}
#Back {
	margin-left: 30%;
}

#Grayout {
	width: 100%;
	max-height: 0%;
	position: fixed;
	top: 0px;
	left: 0px;
	background-color: black;
	opacity: 0.5;
	z-index: 999;
}

/* FOOTER */

footer {
	width: 100%;
	height: 120px;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 10px 0 10px 0;
	font-size: 10px;
	text-align: center;
	border: 1px solid #e7e7e7;
	border-bottom: none;
	line-height: 0px;
}
footer .logo {
	width: 100%;
	position: relative;
}
footer .logo img {
	width: 130px;
	height: auto;
}
footer p {
	margin-top: -10px;
	padding: 0;
	text-align: center;
	font-size: 18px;
}

.content {
	min-height: 100%;
	position: relative;
}

.impTXT {
	font-size: 17px;
}

@media screen and (max-height: 850px) and (min-width: 1000px) {
	.push {
		margin-bottom: 125px;
	}
}

@media screen and (max-width: 992px) {
	.container {
		padding-left: 15px;
		padding-right: 15px;
	}
	.spruch article .motto {
		font-size: 30px;
		line-height: 35px;
	}
	h2 {
		font-size: 40px;
	}
	.text {
		padding-top: 0;
	}
	#Bowtech_content {
		padding: 25px;
	}
	#message {
		height: 250px;
	}
}
