
/**
 * IMPORTS
 */
@import url('https://fonts.googleapis.com/css?family=Raleway|Satisfy|Material+Icons');

/**
 * NORMALIZE
 */
html, body { margin: 0; padding: 0; }
html {
	height: 100%;
}
* {
	box-sizing: border-box;
}
img {
      max-width:50%;
      height: auto;
      }

/**
 * BODY, HTML
 */
html {
	background:#f5faff;
}

/**
 * GRID
 */
.container {
	position: relative;
	display: block;
	max-width: 1280px;
	margin: auto;
}
.row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 80px;
}
.row .row {
	margin-bottom: 20px;
}
.col {
	flex-basis: 0;
	flex-grow: 1;
	flex-shrink: 1;
	padding: 0 20px;
	max-width: 100%;
}
.right {
	float: right;
}
.left {
	float: left;
}
.in-text.right {
	margin: 0 0 20px 20px;
}

/**
 * TYPOGRAPHY
 */
body {
	font-family: 'Raleway', sans-serif;
	color: #00007c;
	line-height: 1.6em;
	font-size: 20px;
}
h1, h2, h3, h4 {
	font-family: Trebuchet MS Regular,sans-serif;
  	font-variant: small-caps;
	font-weight: normal;
	color: #4977b6;
	line-height: 1.6em;
	margin-top: 0;
	letter-spacing: -0.5px;
}
h1 {font-size: 50px;}
h2 {font-size: 34px;}
h3 {font-size: 26px; margin-bottom: 10px;}
a {
  color: #4977b6;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #68c6dd;
}
p {
	text-align: justify;
	margin-top: 0;
}
.highlight {
	display: flex;
	padding: 40px;
	border: 2px solid #4977b6;
	background: rgba(255,255,255,0.4);
}
.highlight::before {
	content: 'priority_high';
	font-family: 'Material Icons';
	font-size: 80px;
	color: #aecff9;
	margin-right: 20px;
	font-feature-settings: "liga" 1;
}
.material-icons {
	font-size: 18px;
}
#content-wrapper ul {
	list-style-type: none;
	padding-left: 12px;
}
#content-wrapper ul li {
	display: flex;
	margin-bottom: 5px;
}
#content-wrapper ul li::before {
	content: 'keyboard_arrow_right';
	font-family: 'Material Icons';
	font-size: 24px;
	font-feature-settings: "liga" 1;
}
.table-wrapper {
	width: 100%;
	overflow-x: auto;
}
table {
	border: ;
	width: 100%;
	background: #fafafa;
	border-collapse: collapse;
	margin-bottom: 20px;
}
thead {
	border-bottom: ;
}
table.striped tbody tr:nth-child(even) {
	background: rgba(0,0,0,0.03);
}
tbody {
	border-bottom: ;
}
tbody:last-child {
	border-bottom: 0;
}
th, td {
	text-align: left;
	padding: 5px;
	vertical-align: top;
	min-width: 110px;
}
tr {
	transition: background 0.5s ease;
}
table.hover tbody tr:hover {
	background: rgba(174, 207, 249, 0.2);
}

/**
 * HEADER
 */
#header {
	position: fixed;
	top:0;
	width: 100%;
	padding: 20px 0;
	background: rgb(234, 244, 254);
	box-shadow: 0 0 3px rgba(0,0,0,0.2);
	z-index: 10;
	border-bottom: ;
}
#header .row {margin: 0;}
#martine img {
	float: left;
	margin-right: 40px;
}
#martine h1 {
	font-size: 40px;
	display: inline-block;
	color: #68C6DD;
}
#navigation {
	position: absolute;
	bottom: -8px;
	right: 20px;
	
	font-family: Trebuchet MS Regular,sans-serif;
  	font-variant: small-caps;
	font-size: 24px;
}
#navigation ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
#navigation li {
	display: inline-block;
	padding-left: 20px;
}
#navigation .sub {
	display: block;
	position: absolute;
	width: 180px;
    	padding: 20px;
	margin-left: -20px;
	margin-top: 12px;
	background: rgb(235, 235, 235);
	box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
	opacity: 0;
	transition: all 0.5s ease;
	visibility: hidden;
	z-index: -5;
	border: ;
}
#navigation li:hover .sub {
	opacity: 1;
	visibility: visible;
}
#navigation .sub li {
	display: block;
	padding-left: 0;
	line-height: 1.6em;
}

/**
 * SIDENAV
 */
#sidenav-toggle {
	position: absolute;
	left: 0;
	top: -5px;
	height: 50px;
	width: 75px;
	padding: 14px 20px 10px 20px;
	outline: none;
	display: none;
}
#sidenav-toggle .hamburger-box {
	width: 30px;
}
#sidenav-toggle .hamburger-inner,
#sidenav-toggle .hamburger-inner::before,
#sidenav-toggle .hamburger-inner::after {
	width: 30px;
	background-color: #4977b6;
	height: 3px;
}
#sidenav-overlay {
	position: fixed;
	top: 51px;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.7);
	z-index: 1000;
	display: none;
}
#sidenav {
	position: fixed;
	top: 51px;
	left: -400px;
	bottom: 0;
	width: 400px;
	max-width: 90%;
	border-right: 1px solid #4977b6;
	background: #fafafa;
	z-index: 1100;
	overflow-y: auto;
}
#sidenav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#sidenav li {
	margin: 0;
	padding: 0;
}
#sidenav a {
	display: block;
	padding: 10px 15px;
	border-bottom: 1px solid #4977b6;
}
#sidenav li > ul a {
	padding-left: 40px;
}

/**
 * CONTENT
 */
#content-wrapper {
	padding: 120px 0 20px 0;
}
#content-wrapper .box {
	padding: 40px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: ;
	box-shadow: ;
}
img.in-text {
	border: ;
}
#home {
	background-image: ; 
}
#wohnzimmer {
	background-image: ;
}
#yoga {
	background-image: ;
}
#stundenplan-yoga td:first-child {
	width: 150px;
}
#flying-teacher {
	background-image: ;
}
#therapie {
	background-image: ;
}
#massage {
	background-image: ;
}
#was-ist-yoga {
	background-image: ;
}
#einzel {
	background-image: ;
}
#gruppe {
	background-image: ;
}

/**
 * FOOTER
 */
#footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	padding: 0;
	background: rgb(234, 244, 254);
	box-shadow: 0 0 3px rgba(0,0,0,0.2);
	z-index: 10;
	border-top: ;
}
#footer .row {margin: 0;}
#footer .col {
	display: flex;
	justify-content: space-between;
}
#socialicons {
	display: flex;
	align-items: center;
}
#socialicons img {
	max-width:60%;
	height: auto;
	display: block;
}
#footer ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#footer li {
	display: inline-block;
	margin-left: 20px;
}
#footer a {
	font-family: Trebuchet MS Regular,sans-serif;
  	font-variant: small-caps;
	font-size: 20px;
	line-height: 45px;
}


/**
 * Gallery
 */
#gallery {
	top: 120px;
	display: flex;
	justify-content: space-between;
	flex-flow: row wrap;
}
#chateau {
	display: flex;
	justify-content: space-between;
	flex-flow: row wrap;
}


/**
 * Mobile
 */
@media screen and (max-width: 900px){
	#header {
		padding: 5px 0;
	}
	#navigation {
		display: none;
	}
	#martine {
		float: right;
	}
	#martine a {
		display: flex;
		align-items: center;
		justify-content: flex-end;
	}
	#martine h1 {
		display: inline-block;
		font-size: 22px;
		margin: 0;
		line-height: 40px;
	}
	#martine img {
		display: inline-block;
		height: 25px;
		float: none;
		margin-right: 10px;
	}
	#sidenav-toggle {
		display: block;
	}
	h1 {font-size: 40px;}
	h2 {font-size: 24px;}
	h3 {font-size: 20px; margin-bottom: 10px;}
	body {
		font-size: 18px;
	}
	.row {
		margin-bottom: 20px;
		display: block;
	}
	.col {
		width: 100%;
	}
	.col .col {
		padding: 0;
	}
	blockquote,
	.highlight {
		margin: 20px 0;
		display: block;
		text-align: center;
		padding: 20px;
	}
	.highlight {
		padding-top: 40px;
	}
	blockquote::before,
	.highlight::before {
		margin: auto;
		margin-bottom: 20px;
		text-align: center;
		display: block;
	}
	.highlight::before {
		margin-bottom: 40px;
	}
	#content-wrapper {
		padding-top: 80px;
		padding-bottom: 40px;
	}
	#content-wrapper .box {
		padding: 20px;
	}
	#content-wrapper ul {
		padding-left: 10px;
	}
	#content-wrapper img.in-text {
		float:none;
		max-width: 100%;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	#gallery {
		justify-content: center;
	}
	#chateau {
		justify-content: center;
	}
	#footer li {
		margin-left: 10px;
	}
	#footer a {
		font-size: 14px;
	}
}
