/**
 *
 * Primary Color 
 *
 * Set one color for all global variables. Global variables are
 * placed in /assets/less/variables.less
 */
/**
 *
 * Imports
 *
 * Imports all base styles, variables and mixins.
 * All files are placed in /assets/less/
 */
/**
 * Imports
 */
/**
 * Custom Responsive Classes
 */
.hide-mobile {
  display: block;
}
@media (max-width: 576px) {
  .hide-mobile {
    display: none;
  }
}
.show-mobile {
  display: none;
}
@media (max-width: 576px) {
  .show-mobile {
    display: block;
  }
}
.hide-tablet {
  display: block;
}
@media (max-width: 768px) {
  .hide-tablet {
    display: none;
  }
}
.show-tablet {
  display: none;
}
@media (max-width: 768px) {
  .show-tablet {
    display: block;
  }
}
.hide-desktop {
  display: block;
}
@media (max-width: 992px) {
  .hide-desktop {
    display: none;
  }
}
.show-desktop {
  display: none;
}
@media (max-width: 992px) {
  .show-desktop {
    display: block;
  }
}
.hide-large {
  display: block;
}
@media (max-width: 1200px) {
  .hide-large {
    display: none;
  }
}
.show-large {
  display: none;
}
@media (max-width: 1200px) {
  .show-large {
    display: block;
  }
}
/**
 * Mixins
 */
/**
 * Variables and options
 */
/**
 * Responsive Utilities
 */
/**
 * Import DEMO
 */
.primary-color {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #1abc9c;
}
.background-color {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #ffffff;
}
.dark-color {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #2a2a2a;
}
.light-color {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #777777;
}
.border-color {
  color: #000000;
  padding: 10px;
  display: block;
  background-color: #f2f3f3;
}
.success-color {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #70c270;
}
.warning-color {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #c27070;
}
.danger-color {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #c27070;
}
.info-color {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #7070c2;
}
.white {
  color: #000000;
  padding: 10px;
  display: block;
  background-color: #ffffff;
}
.black {
  color: #ffffff;
  padding: 10px;
  display: block;
  background-color: #000000;
}
.shadow {
  color: #000000;
  padding: 10px;
  display: block;
  background-color: #ebebeb;
}
/** 
 * Base
 */
html,
body {
  font-size: 16px;
  height: 100%;
}
h1 {
  font-size: 140%;
  font-weight: 300;
  margin-top: 0px;
}
h2 {
  font-size: 120%;
  font-weight: 300;
  margin-top: 0px;
}
article {
  margin-bottom: 20px;
}
article:last-of-type {
  margin-bottom: 0px;
}
.container {
  max-width: 1200px;
}
/**
 * Helpers 
 */
img.alignleft {
  margin: 0 10px 10px 0;
  float: left;
}
img.alignright {
  margin: 0 0 10px 10px;
  float: right;
}
img.aligncenter {
  display: block;
  margin: 0 auto;
  text-align: center;
  margin: 0 0 0 10px;
}
.screen-reader-text {
  display: none;
}
/** 
 * Navigation: Fixes
 */
.mobile-fix {
  margin: 4.5px 0 !important;
}
.navbar .navbar-nav {
  list-style: none;
}
.navbar .navbar-nav > li {
  list-style: none;
}
.navbar .navbar-nav > li > a {
  padding: 20px;
}
.navbar .navbar-brand {
  max-width: 175px;
}
.navbar .navbar-brand.text {
  padding: 00px;
}
@media all and (max-width: 768px) {
  .navbar .navbar-brand.text {
    padding: 00px;
    margin: 4.5px 0 !important;
  }
}
@media all and (max-width: 768px) {
  .navbar .navbar-brand {
    max-width: 200px;
  }
}
/**
 * Navigation: Submenu
 */
.navbar-custom {
  margin-bottom: 20px;
}
.navbar-custom .navbar-nav li {
  position: relative;
  list-style: none;
}
.navbar-custom .navbar-nav li.menu-item {
  display: inline-block;
}
.navbar-custom .navbar-nav li .sub-menu {
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  min-width: 160px;
  background-color: #f8f8f8;
  border-color: #e7e7e7;
  border-width: 1px;
  border-style: solid;
}
.navbar-custom .navbar-nav li .sub-menu a {
  display: block;
  padding: 12px 16px;
  text-decoration: none !important;
}
.navbar-custom .navbar-nav li:hover .sub-menu {
  display: block;
}
/** 
 * Navigation: Mobile 
 */
#mobile-button {
  cursor: pointer;
}
#mobile-shadow {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
  z-index: 90;
}
#mobile-menu {
  position: fixed;
  right: -270px;
  top: 0;
  width: 260px;
  height: 100%;
  overflow-x: hidden;
  background: #fff;
  list-style: none;
  z-index: 999999999;
}
#mobile-menu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#mobile-menu > ul > li > a {
  position: relative;
  text-decoration: none;
  color: #333;
  display: block;
  padding: 15px 30px;
  border-bottom: 1px solid #f4f4f4;
}
#mobile-menu > ul > li > a:hover {
  background: #f4f4f4;
  color: #333;
}
#mobile-menu > ul > li > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
}
#mobile-menu > ul > li > ul > li > a {
  text-decoration: none;
  color: #333;
  display: block;
  padding: 15px 30px;
}
#mobile-menu .menu-item-has-children > a:after {
  position: absolute;
  right: 30px;
  content: "\2b";
  font-family: 'entypo';
}
#mobile-menu .sub-menu {
  display: none;
}
/** 
 * Sidebar 
 */
#sidebar .widget {
  margin-bottom: 20px;
}
#sidebar .widget:last-of-type {
  margin-bottom: 0px;
}
/**
 * Footer
 */
#page-footer {
  position: relative;
  height: 50px;
  bottom: 0;
}
#page-footer nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
#page-footer nav ul li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
#page-footer nav ul li a {
  padding: 20px;
  display: block;
}
@media all and (max-width: 576px) {
  #page-footer nav ul li {
    display: block;
    *display: block;
  }
}
/**
 * Sections
 */
.devhats-area {
  width: 100%;
  height: 150px;
  margin-bottom: 25px;
  position: relative;
}
.devhats-area-inner {
  display: table;
  margin: 0 auto;
  height: 100%;
  width: 100%;
  border: 4px dashed #ddd;
}
[class*="devhats-section-"] {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  font-size: 120%;
  color: #ddd;
  font-weight: 700;
  text-transform: uppercase;
}
[class*="devhats-section-"] .span {
  display: inline-block;
}
/********************************************************
 *														*
 * 						START							*
 *														*
 *******************************************************/
body {
  overflow-x: hidden;
  font-family: 'Quattrocento', serif;
  color: #777777;
  background-color: #ffffff;
  font-size: 18px;
  margin: 0px 15px;
}
body img {
  -webkit-animation: saturation 20s infinite;
  /* Safari 4.0 - 8.0 */
  animation: saturation 20s infinite;
  -webkit-filter: saturate(0.25);
  filter: saturate(0.25);
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #908378;
}
a:hover {
  color: #756a60;
}
h1,
h2,
h3,
h4,
h5 {
  color: #2a2a2a;
  font-weight: 300;
  font-size: 30px;
}
.sep {
  position: relative;
  padding-bottom: 40px;
}
.sep:before {
  content: '';
  position: absolute;
  height: 2px;
  width: 50px;
  background-color: #908378;
  left: 0px;
  top: 45px;
}
.sitelogo {
  width: 80px;
  max-width: 80px;
}
.navbar-custom {
  background-color: #ffffff;
  border-color: #f2f3f3;
  padding: 70px 0px;
}
.navbar-custom a {
  color: #2a2a2a;
  font-size: 13px;
}
.navbar-custom .menu-item a:hover {
  text-decoration: none;
}
#ueber-mich {
  align-items: center;
  margin: 100px auto;
}
#teehaus .heading {
  margin: 100px 0px;
  text-align: center;
  background-image: url(/wp-content/themes/raymondbayerlein/assets/img/circle.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 150px;
}
#teehaus .heading h2 {
  padding-top: 100px;
}
#teehaus .heading p {
  max-width: 300px;
  margin: 20px auto;
}
#teehaus #teehaus-bild .fullw-img {
  position: relative;
}
#teehaus #teehaus-bild .fullw-img img {
  width: 100%;
}
#teehaus #teehaus-bild .fullw-img .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 58%, #ffffff 98%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 58%, #ffffff 98%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 58%, #ffffff 98%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
  /* IE6-9 */
}
@media all and (max-width: 768px) {
  #teehaus #teehaus-bild .fullw-img .overlay {
    display: none;
  }
}
.cards {
  width: 100%;
  /*margin-top: -150px;*/
  text-align: center;
}
.cards .row {
  align-items: center;
}
@media all and (max-width: 768px) {
  .cards {
    margin-top: 150px;
  }
}
.cards .show-card {
  margin-bottom: 30px;
}
.cards .show-card h2 {
  font-size: 28px;
}
.cards .text-card {
  padding: 50px 0px 30px 0px;
}
.cards .text-card p {
  max-width: 85%;
  margin: 0 auto;
}
.page article {
  margin: 100px 0px;
}
#page-footer {
  margin: 190px 0 0;
}
#page-footer #footer-menu {
  border-width: 1px 0 0;
  border-style: solid;
  border-color: #f2f3f3;
}
#page-footer #footer-menu a {
  font-size: 13px;
}
.project-slider {
  margin-top: -150px;
}
.project-slider .owl-nav .owl-prev,
.project-slider .owl-nav .owl-next {
  background: transparent;
}
.project-slider .owl-nav .owl-prev:hover,
.project-slider .owl-nav .owl-next:hover {
  background: transparent;
}
.project-slider .owl-nav .owl-prev img,
.project-slider .owl-nav .owl-next img {
  width: 40px;
  opacity: .5;
}
@keyframes saturation {
  0% {
    -webkit-filter: saturate(0.25);
    filter: saturate(0.25);
  }
  50% {
    -webkit-filter: saturate(1);
    filter: saturate(1);
  }
  100% {
    -webkit-filter: saturate(0.25);
    filter: saturate(0.25);
  }
}
