@charset "UTF-8"; 

/********************************* GLOBAL SETTINGS ******************************/
:root {
	--transparency: 0.8;
	--hover-color: #666666;
	--menu-mobile-separator-color: #666666;
}
html {
	
}
body {
	border: 0;
	font-family: 'LatoWebLight', sans-serif;
	/*font-family: 'Roboto', sans-serif;*/
	font-style: normal;
	font-weight:300;
	color:#000;
	height:100%;
    font-size:16px;
	background-color:#fff; 
}
* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing:border-box; /* box-sizing for older browsers */
	-moz-box-sizing:border-box; /* box-sizing for older browsers */
	box-sizing:border-box; /* calculating size of children inside of marigin and padding */
	transition:all 0.2s ease-in-out; /* smooth transition when styling is changing */
	line-height: 1.5em;
}
a {
	text-decoration: none;
	color: black;
}
a:hover {
	color: var(--hover-color);
}
a:focus {
	outline: 0;
}
h1, h2, h3, h4, h5, h6 {
	/* font-family: 'Abril Fatface', cursive;*/
	font-family: 'LatoWebLight', sans-serif; 
	color: #000;
	font-weight: normal; 
}
strong {
	font-family: 'LatoWeb', sans-serif; 
	font-style: normal;
	font-weight:400;	
}

/********************************* WHOLE PAGE ******************************/
.whole-page {
	height: 100vh;
}
.centered-page {
	height: 100%;
	margin: 0 auto;
	max-width: 1200px;
	min-width: 320px;
	display: flex;
	flex-flow: column;
	/*background-image: url(images/background_desktop.jpg);*/
	background-size: cover;
	background-position: center;
	/*
	border-width: 0 1px;
	border-color: #000;
	border-style: solid;
	*/
}
.centered-page-auto-height {
    height: auto;
}

@media only screen and (max-width: 1200px) {
	.centered-page {
		border: 0;
	}
}	


/****************** HEADER ***********************/

.header-transparency {
	background: rgba(255, 255, 255, var(--transparency));
}
.header {
	display: flex;
	flex-flow: row;
	/*justify-content: space-between;*/
	align-items: center;
	border-bottom: solid 1px #000;
}
#header-logo {
	margin: 3px;
}
#header-logo a {
	display: flex;
}
.header-text {
	font-size: 13px;
	line-height: 1.4em;
}
.header-text strong {
	font-weight: 700;
}
@media only screen and (max-width: 370px) {
	.header-text {
		display: none;
	}
}	

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

#menu { margin-left: auto; margin-right: 15px; }

#menu { position: relative; display: flex; align-items: center; }

#menu input { display: none; } /* hide all checkboxes */
#menu label.has-submenu { cursor: pointer; } /* pointer over submenu label */
#menu ul { list-style: none; margin: 0; padding: 0; } /* no bullet points */
#menu-list { /* LAPTOP MENU ALIGNMENT */ 
  display: flex;
} 
#menu a { text-decoration:none; } /* no uderscore in links */
#menu a, #menu label { /* FONT COLOR */
  color: #000;
}
#menu a, #menu label, #menu label ~ .arrow:after { transition: all 0.2s ease-in-out; } /* hover transitions */
#menu ul ul a { display: block; } /* submenu items as whole submenu width */
#menu a:hover, #menu label:hover, #menu label:hover ~ .arrow::after { /* HOVER FONT COLOR */
  color: #666;
}
#menu > ul > li { display: inline-block; float: none; position: relative; } /* position of laptop menu items, relative is to position arrow on moblie */
#menu > ul > li {   /* LOOK OF LAPTOP MENU ITEMS */
  padding: 7px 7px;
  margin: 10px 0px 10px 20px;
  text-transform: uppercase;
  font-weight: 600;
  /*font-size: 20px;*/
}
#menu > ul > li.active { /* border around active element */
  /* border: 1px solid #000; */
} 
#menu ul ul { display: none; position: absolute; } /* hide submenu */
#menu ul ul li { display: block; float: none; } /* position of submenu */
#menu ul ul { /* LOOK OF SUBMENU BLOCK */
  border: 1px solid #000;
  padding: 10px 0 0 0;
  margin: 7px 0 0 0;
  background-color: #fff;
}
#menu ul ul li { /* LOOK OF SUBMENU ITEMS */
  padding: 0 8px 10px 10px;
	margin: 0;
  font-size: 13px;
}
/* arrow for items with submenus */
.arrow::after { 
	display: inline-block; 
	content: '\203A'; 
	color: #000; 
	transition: transform 0.15s ease-in-out; 
}
#menu input[type='checkbox']:checked ~ .arrow:after { 
	-webkit-transform: rotate(90deg); 
	-ms-transform: rotate(90deg); 
	transform: rotate(90deg); 
}
#menu input[type='checkbox']:checked + ul { display: block; } /* show submenu */
.hamburger { display: none; } /* hide hamburger */
/*
#menu .lang {
	display: flex;
	align-items: center;
	flex-direction: row;
}
*/
#menu .lang span {
	height: 15px;
}
#menu #liLang {
	/*display: flex;*/
}

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

@media only screen and (max-width:1000px) {
  #menu { position: absolute; top: 8px; right: 8px; }
  #menu-list { display: none; } /* hide menu */
  .hamburger { display: block; cursor: pointer; } /* haburger look */
  .hamburger { /* hamburger position */
    float: right;
    width: 52px;
	height: 47px;
  }
  #menu-toggle:checked ~ #menu-list { /* mobile menu position */
    position: absolute;
    top: 45px;
    right: 0px;
    min-width: 250px;
    display: block;
    z-index: 1;
  }
  #menu > ul > li { display: block; float: none; margin: 10px 15px; } /* menu items in column */
  #menu .arrow { position: absolute; top: 10px; right: 10px; } /* arrow position */
  #menu ul ul { border: none; margin: 0; padding: 0; } /* no border around submenu */
  #menu ul ul { display: none; position: relative; } /* hide subemenus and join them in flow */
  #menu ul a, #menu-list label { display: block; } /* menu items as whole menu width */
  #menu ul, #menu li { /* menu background */
    background-color: #000;
  }
  #menu-list a, #menu-list label, .arrow::after { /* font color */
    color: #fff;
  }
  #menu > ul > li, #menu > ul > li.active { /* LOOK OF MENU ITEMS */
    padding: 10px 15px;
    margin: 0;
    border-top: 1px solid #222;
    font-weight: 300;
  	font-size: 16px;
  }
  #menu > ul > li:first-child, #menu > ul > li.active:first-child { /* LOOK OF MENU ITEMS */
    border: none;
  }
  #menu ul ul li { /* LOOK OF SUBMENU ITEMS */
    padding: 10px 8px 10px 10px;
    margin: 0;
    font-size: 13px;
    border-top: 1px solid #222; 
  }
  #menu ul ul li:first-child { margin-top: 10px; }
  #menu ul ul li:last-child { padding-bottom: 0; }

  #earth { stroke: white; }
  
  #header-title
  {
      margin-right: 40px;
  }
}

/****************** BREADCRUMBS ***********************/

#breadcrumb {
    list-style: none; 
    margin: 0; 
    padding: 10px;
    display: flex;
    flex-direction: row;
    font-size: 15px;
}
#breadcrumb li + li:before{
    content:  '/';
    margin:   0 2px;
}

/****************** CONTENT GENERAL ***********************/

.content {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	padding: 30px 30px;
}

.content p {
    line-height:26px;
	margin:0 0 23px 0;
	text-align:left;
}
.content h1, h2, h3, h4, h5 {
	font-weight:600;	
	letter-spacing:0.5px;
	margin:0 0 23px 0;	
}
.content > p > img {
    max-width: 100%;
}
.content p.justifyfull {
    text-align: justify;
}

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

.content-welcome {
    flex: 1;
    display: flex;
    flex-direction: column;
	justify-content: center;
	text-align: center;
}
.content-header {
	/*font-family: 'Abril Fatface', cursive;*/
	font-family: 'LatoWeb', sans-serif; 
	font-size: 30px;
	font-weight: 700;
	line-height: 1.6em;
}
.content-hr {
	color: #000;
	border: 0;
	background-color: #000;
	height: 1px;
	width: 230px;
	margin: 15px auto;

}
#content-welcome-text p {
    font-size: 18px;
	line-height: 2em;
	text-align: center;
}
/*
.content-text {
	font-size: 18px;
	line-height: 2em;
}*/

@media only screen and (max-width: 767px) {
	.content-header {
		font-size: 24px;
	}
	#content-welcome-text p {
		font-size: 16px;
	}
}

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

.content-about {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
}

.content-about-photo {
    flex: 1;
    position: relative;
}

.content-about-photo:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.content-about-photo img {
    position: absolute;
    width: 70%;
    height: 70%;
    object-fit: cover;
    border-radius: 50%;
    top: 15%;
    left: 15%;
    z-index: -1;
}

.content-about-text {
    flex: 1;
    padding: 30px;
    text-align: left;
}

@media screen and (orientation:portrait) {
	.content-about {
		flex-direction: column; 
		align-items: flex-start;
	}
	.content-about-photo {
		width: 70%; 
		left: 15%;
	}
	.content-about-text {
		width: auto; 
		padding-top: 0;
	}
}

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

.content-contact {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
}

.content-contact-photo {
    order: 1;
    flex: 1;
    position: relative;
}

.content-contact-photo:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.content-contact-photo img {
    position: absolute;
    width: 70%;
    height: 70%;
    object-fit: cover;
    border-radius: 50%;
    top: 15%;
    left: 15%;
    z-index: -1;
}

.content-contact-text {
    order: 0;
    flex: 1;
    padding: 30px;
}

.content-contact-text .content-contact-text-inner p {
    text-align: center;
}

@media screen and (orientation:portrait) {
	.content-contact {
		flex-direction: column; 
		/*align-items: flex-start;*/
		align-items: center;
	}
	.content-contact-photo {
	    order: 0;
		width: 70%; 
		/*left: 15%;*/
		left: 0;
	}
	.content-contact-text {
	    order: 1;
		width: auto; 
		padding-top: 0;
	}
}

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

#content-workshops {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}
.workshop-item {
    flex: 1;
    max-width: 400px;
    min-width: 300px;
    padding: 20px;
}
.workshop-item-img img {
    width: 100%;   
    height: auto;
    min-width: 260px;
}
.workshop-item-dates {
    font-weight: bold;
}
.workshop-item-title {
    font-weight: bold;
}
.workshop-item-desc {
    font-size: 13px;
}

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

.back-to-workshops {
	font-size: 13px;
	padding-bottom: 15px;
}
.content-workshop {
    display: flex;
    flex-direction: row;
}
.content-workshop-header {
    text-align: center;
}
.content-workshop-dates {
    text-decoration: underline;
    font-weight: bold;
    font-size: 22px;
    padding-bottom: 5px;
}
.content-workshop-title1 {
    font-weight: bold;
    font-size: 22px;
    padding-bottom: 5px;
}
.content-workshop-title2 {
    font-style: italic;
    padding-bottom: 5px;
}
.content-workshop-header img {
    max-width: 100%;
}
.content-workshop-img {
    padding: 15px 0;
}
.content-workshop-content {
    text-align: left;
}
.content-workshop-details {
    flex: 0 0 340px;
    padding-left: 40px;
}
.content-workshop-details, .content-workshop-details p {
    text-align: center;
}
.person-img {
    position: relative;
    width: 50%;
    left: 25%;
}
.person-img:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}
.person-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    border-radius: 50%;
    z-index: -1;
}
.person-name {
    padding-top: 10px;
}
@media only screen and (max-width: 767px) {
    .content-workshop {
        flex-direction: column;
        align-items: center;
    }
    .content-workshop-details {
        padding-left: 0;
    }
}

/****************** CONTENT CENTERED ***********************/

.content-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 1;
}
.content-centered p {
    text-align: center;
}

/****************** CONTENT DATENSCHUTZ ***********************/

.datenschutz-list {
	list-style-position: inside;
}

/****************** FOOTER ***********************/

.footer-transparency {
	background: rgba(255, 255, 255, var(--transparency));
}
.footer {
	display: flex;
	flex-flow: row;
	justify-content: space-between;
	align-items: flex-end;
	margin: 40px 15px 15px 15px;
	border-top: solid 1px #000;
}
.footer-text {
    font-size: 14px;
}

@media only screen and (max-width: 767px) {
	.copyright {
		display: none;
	}
	.footer {
		justify-content: center;
	}
	.footer-text {
        font-size: 13px;
    }
}

.footer-low {
    margin: 0px 0px 15px 0px;
    /*border-top: none;*/
}


/********************************* BACK TO TOP ******************************/

.c-back-to-top {
  background-color: #d7dadb;
  border-radius: 50%;
  border: 0;
  bottom: 36px;
  right: 16px;
  height: 40px;
  width: 40px;
  z-index: 101;
  box-shadow: 0 6px 6px -3px rgba(0, 0, 0, 0.2);
  display: inline-block;
  cursor: pointer;
  outline: none;
  position: fixed;
  
  transition: background-color 0.3s,opacity 0.3s 0s,visibility 0s 0.3s;
  visibility: hidden;
  opacity: 0;
}

button::-moz-focus-inner {
  border: 0;
}

.c-back-to-top svg {
    height: 40px;
    width: 40px;
}

.c-back-to-top.show {
  visibility: visible;
  opacity: 0.75;
  transition: background-color 0.3s,opacity 0.3s 0s,visibility 0s 0s;
}