@charset "UTF-8";
/* CSS Document */

@import url(http://fonts.googleapis.com/css?family=Merriweather);
@import url(http://fonts.googleapis.com/css?family=Oswald);

/* =============================================
 *
 *   FIXED RESPONSIVE NAV
 *
 *   (c) 2014 @adtileHQ
 *   http://www.adtile.me
 *   http://twitter.com/adtilehq
 *
 *   Free to use under the MIT License.
 *
 * ============================================= */

body, div,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre, dl, dt, dd, ol, ul, li, hr,
fieldset, form, label, legend, th, td,
article, aside, figure, footer, header, hgroup, menu, nav, section,
summary, hgroup {
  margin: 0;
  padding: 0;
  border: 0;
}

a:active,
a:hover {
  outline: 0;
}

@-webkit-viewport { width: device-width; }
@-moz-viewport { width: device-width; }
@-ms-viewport { width: device-width; }
@-o-viewport { width: device-width; }
@viewport { width: device-width; }


/* ------------------------------------------
  RESPONSIVE NAV STYLES
--------------------------------------------- */

.nav-collapse ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
  list-style: none;
}

.nav-collapse li {
  width: 100%;
  display: block;
}

.js .nav-collapse {
  clip: rect(0 0 0 0);
  max-height: 0;
  position: absolute;
  display: block;
  overflow: hidden;
  zoom: 1;
}

.nav-collapse.opened {
  max-height: 9999px;
}

.disable-pointer-events {
  pointer-events: none !important;
}

.nav-toggle {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

@media screen and (min-width: 800px) {
  .js .nav-collapse {
    position: relative;
  }
  .js .nav-collapse.closed {
    max-height: none;
  }
  .nav-toggle {
    display: none;
  }
}


/* ------------------------------------------
  DEMO STYLES
--------------------------------------------- */

body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  color: #ffffff;
  background: #fff;
  font: normal 100%/1.4 sans-serif;
  height:100%;
overflow: scroll;
-webkit-overflow-scrolling: touch;
}

/* ------------------------------------------
  FIXED HEADER
--------------------------------------------- */

header {
  background: rgba(0, 0, 0, 0.50);
  position: fixed;
  z-index: 3;
  width: 100%;
  height: 55px;
  left: 0;
  top: 0;
}

.logo {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  text-decoration: none;
  font-weight: bold;
  line-height: 55px;
  padding: 0 20px;
  color: #fff;
  float: left;
}


/* ------------------------------------------
  MASK
--------------------------------------------- */

.mask {
  -webkit-transition: opacity 300ms;
  -moz-transition: opacity 300ms;
  transition: opacity 300ms;
  background: rgba(0,0,0, .5);
  visibility: hidden;
  position: fixed;
  opacity: 0;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
}

.android .mask {
  -webkit-transition: none;
  transition: none;
}

.js-nav-active .mask {
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width: 800px) {
  .mask {
    display: none !important;
    opacity: 0 !important;
  }
}


/* ------------------------------------------
  NAVIGATION STYLES
--------------------------------------------- */

.fixed {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  height: 60px;
}

.nav-collapse,
.nav-collapse * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.nav-collapse,
.nav-collapse ul {
  list-style: none;
  width: 100%;
  float: left;
}

@media screen and (min-width: 800px) {
  .nav-collapse {
    float: right;
    width: auto;
  }
}

.nav-collapse li {
  float: left;
  width: 100%;
}

@media screen and (min-width: 800px) {
  .nav-collapse li {
    width: auto;
  }
}

.nav-collapse a {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  border-top: 1px solid #000000;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.50);
  padding: 0.7em 1em;
  color: #fff;
  width: 100%;
  float: left;
}

.nav-collapse a:active,
.nav-collapse .active a {
  background: #000000;
}

@media screen and (min-width: 800px) {
  .nav-collapse a {
    border-left: 1px solid #000000;
    padding: 1.02em 1.8em;
    text-align: center;
    border-top: 0;
    float: left;
    margin: 0;
  }
    
    .nav-collapse img {
    margin-top:-7px;
        margin-bottom: -10px;
  }
}

.nav-collapse ul ul a {
  background: rgba(0, 0, 0, 0.50);
  padding-left: 2em;
}

@media screen and (min-width: 800px) {
  .nav-collapse ul ul a {
    display: none;
  }
}


/* ------------------------------------------
  BOUNCE ARROW
--------------------------------------------- */

@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.arrow {
  position: fixed;
  bottom: 20px;
  left: 50%;
  margin-left: -20px;
  width: 40px;
  height: 40px;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNTEycHgiIGhlaWdodD0iNTEycHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA1MTIgNTEyIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0yOTMuNzUxLDQ1NS44NjhjLTIwLjE4MSwyMC4xNzktNTMuMTY1LDE5LjkxMy03My42NzMtMC41OTVsMCwwYy0yMC41MDgtMjAuNTA4LTIwLjc3My01My40OTMtMC41OTQtNzMuNjcyICBsMTg5Ljk5OS0xOTBjMjAuMTc4LTIwLjE3OCw1My4xNjQtMTkuOTEzLDczLjY3MiwwLjU5NWwwLDBjMjAuNTA4LDIwLjUwOSwyMC43NzIsNTMuNDkyLDAuNTk1LDczLjY3MUwyOTMuNzUxLDQ1NS44Njh6Ii8+DQo8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMjIwLjI0OSw0NTUuODY4YzIwLjE4LDIwLjE3OSw1My4xNjQsMTkuOTEzLDczLjY3Mi0wLjU5NWwwLDBjMjAuNTA5LTIwLjUwOCwyMC43NzQtNTMuNDkzLDAuNTk2LTczLjY3MiAgbC0xOTAtMTkwYy0yMC4xNzgtMjAuMTc4LTUzLjE2NC0xOS45MTMtNzMuNjcxLDAuNTk1bDAsMGMtMjAuNTA4LDIwLjUwOS0yMC43NzIsNTMuNDkyLTAuNTk1LDczLjY3MUwyMjAuMjQ5LDQ1NS44Njh6Ii8+DQo8L3N2Zz4=);
  background-size: contain;
}

.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}


/* ------------------------------------------
  EIGENES CSS
--------------------------------------------- */

body, html {
    height: 100%;
}

body {
	font-family:Oswald;
}

* {
    margin: 0px;
    padding: 0px;
}

img {
	border:none;
}

#wrapper {
    position: relative;
    width: 100%;
    height: 100%;
	top:0px;
}

#content {
    position: relative;
    display: block;
}

#inhalt {
    position: relative;
	width:100%;
    max-width: 1200px;
	text-align:center;
    display:block;
    margin:0 auto;
}

* {
    margin:0;
    padding:0;
}

#icon {
	color:#FFFFFF;
	vertical-align:middle;
}

.crossfade > figure {
	position:absolute;
	top:0px;
	-webkit-background-size:cover;
  	-moz-background-size:cover;
  	-o-background-size: cover;
    background-attachment: fixed;
	backface-visibility: hidden;
	background-size: cover;
	background-position: center center;
	animation: imageAnimation 36s linear infinite 0s;
	color: transparent;
	left: 0px;
	opacity: 0;
	height:auto; /* fallback for older browsers */
    height:100vh;
	width: 100%;
	z-index: 0;
	max-height: 100%;
	overflow: hidden;
}

.crossfade > figure:nth-child(1) { background-image:url('../fotos/cafe-colombo-cappuccino.jpg'); }
.crossfade > figure:nth-child(2) {
  animation-delay: 6s;
  background-image: url('../fotos/cafe-colombo-weltkarten.jpg');
}
 
.crossfade > figure:nth-child(3) {
  animation-delay: 12s;
  background-image: url('../fotos/cafe-colombo-vitrine.jpg');
}
 
.crossfade > figure:nth-child(4) {
  animation-delay: 18s;
  background-image: url('../fotos/cafe-colombo-terrasse.jpg');
}
 
.crossfade > figure:nth-child(5) {
  animation-delay: 24s;
  background-image: url('../fotos/cafe-colombo-siebtraeger.jpg');
}

.crossfade > figure:nth-child(6) {
  animation-delay: 30s;
  background-image: url('../fotos/cafe-colombo-tartelette.jpg');
}

@keyframes 
imageAnimation {  0% {
 animation-timing-function: ease-in;
 opacity: 0;
}
 8% {
 animation-timing-function: ease-out;
 opacity: 1;
}
 17% {
 opacity: 1
}
 25% {
 opacity: 0
}
 100% {
 opacity: 0
}
}

.hintergrund {
  background: none;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;  
  position: relative;
  width: 100%;
}

section {
  display: none;
  padding: 20px 0 0;
}

#logo {
    text-align:center;
    margin: 0 auto;
    position:relative;
	top:35%;
}

#logo img {
    max-width: 100%;
    height: auto;
	width: auto;
	opacity:0.75;
}

#pfeil {
    text-align:center;
    position:absolute;
    left:50%;
	top:90%;
	margin-left:-22px;
	opacity:0.5;
}

.menu-item a:hover {
    text-decoration: underline;
}

#kategorie {
    position: relative;
	background-color:#FFFFFF;
    width: 100%;
    height: auto;
}

.abstand {
	margin-top:50px;
}
  
.headline {
	font-family:Oswald;
    font-size:30pt;
    text-align:center;
	line-height:40pt;
	border-bottom:2px solid #000000;
	color:#000000;
	padding-top:30px;
    margin-top:50px;
	display:inline-block;
    letter-spacing: 1px;
    font-weight: normal;
}

.tagline {
    position:relative;
	font-family:Merriweather;
	font-style:italic;
    font-size:15pt;
	line-height:80pt;
    text-align:center;
	color:#000000;
}

.textfeld {
	margin-bottom:50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    float:left;
    clear: both;
}

.text {
    font-family:Merriweather;
    font-size:10pt;
	line-height:20pt;
    padding-left: 15px;
    padding-right: 15px;
	color:#000000;
    max-width: 770px;
    text-align: center;
}

.impressum {
	font-family:Merriweather;
    font-size:10pt;
	line-height:20pt;
    padding-left: 15px;
    padding-right: 15px;	
    color:#000000;
    max-width: 770px;
    text-align: center;
}

.impressum a {
    color:#000000;
}

.impressum a:hover {
    color:rgba(0, 0, 0, 1);
	text-decoration:none;
}

#footer {
    position:relative;
    width: 100%;
	font-family:Oswald;
    background-color:#000000;
    font-size:10pt;
	line-height:20pt;
    text-align:center;
	color:#FFFFFF;
    height: 30px;
    padding-top:3px;
    float:left;
    font-weight:lighter;
    letter-spacing: 0.5px;
}

#footer a {
	text-decoration:none;
	color:#FFFFFF;
}

#footer a:hover {
	text-decoration: underline;
}

span {
    display:inline-block;
    margin: 0 5px;
}

span img {
    vertical-align: middle;
}
    
.beschreibung {
	font-family:Merriweather;
    font-size:10pt;
	line-height:20pt;
    text-align:center;
	color:#000000;
    margin: 0 20px 50px 20px;
    float:left;
}

.boxen {
    position: relative;
    font-size:12.5pt;
	line-height:20pt;
    text-align:center;
	color:#000000;
	height: auto;
    width: 100%;
    float: left;
	clear: both;
}

span.umgedreht {
    unicode-bidi: bidi-override; 
    direction: rtl;
}

.boxen a {
    color: #000;
    text-decoration: none;
}

.bilder {
	text-align:center;
    width: 100%; 
    line-height: 0;
    display: inline-block;
    margin-top: 50px;
    display: inline;
    float: left;
    clear: both;
}

.einzelbild {
	text-align:center;
    width: auto;
    line-height: 0;
    display: inline;
    float: left;
    clear: both;
    margin-bottom: 2px;
}

.bild {
	padding:0;
	margin:0 auto;
	line-height:none;
}

.bild img {
  /* Just in case there are inline attributes */
    width: 100% !important;   
    height: auto !important;
	line-height:none;
}

.kacheln {
	display: -ms-flex;
	display: -webkit-flex;
	display: flex;
    width:100%;
    height: auto;
    margin: 0 auto;
    line-height: none;
    padding: none;
	margin-bottom:0;
}

.kacheln > div {
	width: 50%;
}

.kacheln > div:first-child {
    margin-right: 2px;
}

.photos img {
    width:100%;
    height: auto;
    margin: 0 auto;
    line-height: none;
    float: left;
    margin-bottom: 2px;
}

.mitarbeiter img {
    width: 100%;
    height: auto;
    margin: 0 auto;
    line-height: none;
    float: left;
    padding-bottom: 30px;
}

.ueberschrift {
    width:100%;
    font-family:Oswald;
    letter-spacing: 0.5px;
    margin: 0 0 25px 0;
    font-size: 15pt;
}

.job {
    width:100%;
    float: left;
    font-family:Oswald;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    font-size: 15pt;
    text-align: center;
}

hr {
    border: none;
    border-top: 2px solid #000;
    width: 300px;
    margin:0 auto;
	clear:both;
}

.infos {
	display: -ms-flex;
	display: -webkit-flex;
	display: flex;
    width:100%;
    height: auto;
    margin: 0 auto;
    line-height: none;
    padding: none;
}

.infos > div {
	width: 33.3333%;
}

.infos > div:first-child {
    margin-right: 2px;
}

.infos > div:last-child {
    margin-left: 2px;
}

.zweier {
	display: -ms-flex;
	display: -webkit-flex;
	display: flex;
    width:100%;
    height: auto;
    margin: 0 auto;
    line-height: none;
    padding: none;
}

.zweier > div {
	width: 50%;
}

.zweier > div:first-child {
    margin-right: 2px;
}

.dreier {
	display: -ms-flex;
	display: -webkit-flex;
	display: flex;
    width:100%;
    height: auto;
    margin: 0 auto;
    line-height: none;
    padding: none;
}

.dreier > div {
	width: 33.3333%;
}

.dreier > div:first-child {
    margin-right: 2px;
}

.dreier > div:last-child {
    margin-left: 2px;
}

.vierer {
	display: -ms-flex;
	display: -webkit-flex;
	display: flex;
    width:100%;
    height: auto;
    margin: 0 auto;
    line-height: none;
    padding: none;
}

.vierer > div {
	width: 25%;
    margin-right: 2px;
}

.vierer > div:last-child {
    margin-right: 0px;
}

.kontakt {
    width:33.33%;
    float: left;
    font-family:Merriweather;
    text-align: center;
    margin-bottom: 50px; 
}

.kontakt img {
    vertical-align: middle;
}

.adresse {
    width:33.33%;
    float: left;
    font-family:Merriweather;
    text-align: center;
    margin-bottom: 50px; 
}

.adresse img {
    vertical-align: middle;
}

.oeffnung {
    width:33.33%;
    float: left;
    font-family:Merriweather;
    text-align: center;
    margin-bottom: 50px; 
}

#map {
    height:600px;
    width:100%;
}

h1 {
    font-weight: bolder;
    text-align: center;
    text-indent: -9999px;
}

p {
  margin: 0 0 20px;
  line-height: 1.5;
}

#tabs {
  min-width: 320px;
  max-width: 1200px;
  padding: 0;
  margin: 0 auto;
  background: #fff;
}

input {
  display: none;
}

label {
  display: inline-block;
  font-size: 15pt;
  padding: 5px 20px;
  text-align: center;
  color: #000;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #fff;
  margin:0px 5px;
}

label:hover {
  color: rgba(231, 76, 60, 1);
  cursor: pointer;
}

input:checked + label {
  color: #000;
  border-bottom: 2px solid #000;
  background-color: transparent;
}

input:checked + label:hover {
  color:  rgba(231, 76, 60, 1);
  border-bottom: 2px solid #000;
  background-color: transparent;
}

#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3,
#tab4:checked ~ #content4 {
  display: block;
}

@media screen and (max-width: 599px) {
    
label {
    font-size: 12.5pt;
    padding: 5px 5px;
}
    
.kacheln {
	display: inline-block;
    width:100%;
    height: auto;
    margin: 0 auto;
    line-height: none;
    padding: none;
	margin-bottom:-4px;
}

.kacheln > div {
	width: 100%;
}

.kacheln > div:first-child {
    margin-right: 0px;
}
    
}

@media (max-width: 1200px) {
}

@media (max-width: 799px) {
	
.crossfade > figure {
    background-attachment: scroll;
}
	
.infos {
	display: inline-block;
    width:100%;
    height: auto;
    margin: 0 auto;
    line-height: none;
    padding: none;
}

.infos > div {
	width: 100%;
}
    
.infos > div:first-child {
    margin-right: 0px;
}

.infos > div:last-child {
    margin-left: 0px;
}
    
.zweier {
	display: inline-block;
    width:100%;
    height: auto;
    margin: 0 auto;
    line-height: none;
    padding: none;
}

.zweier > div {
	width: 100%;
}
    
.zweier > div:first-child {
    margin-right: 0px;
}

.zweier > div:last-child {
    margin-left: 0px;
}
    
.dreier {
	display: inline-block;
    width:100%;
    height: auto;
    margin: 0 auto;
    line-height: none;
    padding: none;
}

.dreier > div {
	width: 100%;
}
    
.dreier > div:first-child {
    margin-right: 0px;
}

.dreier > div:last-child {
    margin-left: 0px;
}
    
.vierer {
	display: inline-block;
    width:100%;
    height: auto;
    margin: 0 auto;
    line-height: none;
    padding: none;
}

.vierer > div {
	width: 50%;
}
    
.vierer > div:first-child {
    margin-right: 0px;
}

.vierer > div:last-child {
    margin-left: 0px;
}
    
.kontakt {
    width:100%;
    float: none;
}
    
img.kontakt {
    vertical-align: middle;
}

.adresse {
    width:100%;
    float: none;
}

.oeffnung {
    width:100%;
    float: none;
}
    
#footer {
    height: 55px;
}
    
}