@charset "UTF-8";
/*
 * Globals
 */
@media (min-width: 48em) {
  html {
    font-size: 18px;
  }
}

body {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #555;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: normal;
  color: #333;
}

/*
 * Override Bootstrap's default container.
 */
.container {
  max-width: 60rem;
}

/*
 * Masthead for nav
 */
.blog-masthead {
  margin-bottom: 3rem;
  background: #f1f1f1;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
}

/* Nav links */
.nav-link {
  position: relative;
  padding: 1rem;
  font-weight: 500;
  color: #cdddeb;
}

.nav-link:hover,
.nav-link:focus {
  color: #fff;
  background-color: transparent;
}

/* Active state gets a caret at the bottom */
.nav-link.active {
  color: #fff;
}

.nav-link.active:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -.3rem;
  vertical-align: middle;
  content: "";
  border-right: .3rem solid transparent;
  border-bottom: .3rem solid;
  border-left: .3rem solid transparent;
}

/*
 * Blog name and description
 */
.blog-header {
  padding-bottom: 1.25rem;
  margin-bottom: 0px;
}

.blog-title {
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: normal;
}

.blog-description {
  font-size: 1.1rem;
  color: #999;
}

@media (min-width: 40em) {
  .blog-title {
    font-size: 3.5rem;
  }
}

/*
 * Main column and sidebar layout
 */
/* Sidebar modules for boxing content */
.sidebar-module {
  padding: 1rem;
  /*margin: 0 -1rem 1rem;*/
}

.sidebar-module-inset {
  padding: 1rem;
  background-color: #f5f5f5;
  border-radius: .25rem;
}

.sidebar-module-inset p:last-child,
.sidebar-module-inset ul:last-child,
.sidebar-module-inset ol:last-child {
  margin-bottom: 0;
}

/* Pagination */
.blog-pagination {
  margin-bottom: 4rem;
}

/*
 * Blog posts
 */
.blog-post {
  margin-bottom: 4rem;
}

.blog-post-title {
  margin-bottom: .25rem;
  font-size: 2.5rem;
}

.blog-post-meta {
  margin-bottom: 1.25rem;
  color: #999;
}

/*
 * Footer
 */
.blog-footer {
  padding: 2.5rem 0;
  color: #999;
  text-align: center;
  background-color: #f9f9f9;
  border-top: .05rem solid #e5e5e5;
}

.blog-footer p:last-child {
  margin-bottom: 0;
}

.container {
  max-width: 970px;
}

body {
  font-family: 'Unit', serif;
  font-size: 15px;
}

.blog-post-title {
  margin-bottom: .25rem;
  font-size: 2.5rem;
  font-size: 18px;
  font-family: 'Open Sans', sans-serif;
  color: #000;
}

.blog-post {
  margin-bottom: 40px;
  font-size: 15px;
  color: #000;
}

.socials {
  width: 100%;
}

.socials li {
  list-style: none;
  display: inline-block;
}

.nav-link {
  position: relative;
  padding: 1rem;
  font-weight: 500;
  color: #333;
  font-size: 15px;
  padding: 15px;
}

.nav-link:hover {
  font-weight: 500;
  color: #000;
}

.nav-link {
  float: left;
  line-height: 37px;
}

.s6 {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.s6:before, .s6:after {
  content: "";
  position: absolute;
  z-index: -1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  top: 10px;
  bottom: 10px;
  left: 0;
  right: 0;
  border-radius: 100px / 10px;
}

.s6:after {
  right: 10px;
  left: auto;
  -webkit-transform: skew(8deg) rotate(3deg);
  transform: skew(8deg) rotate(3deg);
}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
/* -------------------------------- 

 Header

-------------------------------- */
.cd-morph-dropdown {
  position: relative;
  height: 60px;
  background-color: #FFFFFF;
}

.cd-morph-dropdown::before {
  /* never visible - used in JS to check mq */
  content: 'mobile';
  display: none;
}

.cd-morph-dropdown .nav-trigger {
  /* menu icon - visible on small screens only */
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
  width: 60px;
  /* replace text with icon */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
}

.cd-morph-dropdown .nav-trigger span, .cd-morph-dropdown .nav-trigger span::after, .cd-morph-dropdown .nav-trigger span::before {
  /* these are the 3 lines of the menu icon */
  position: absolute;
  background-color: #1A1A1A;
  height: 3px;
  width: 26px;
}

.cd-morph-dropdown .nav-trigger span {
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: background-color .3s;
  transition: background-color .3s;
}

.cd-morph-dropdown .nav-trigger span::after, .cd-morph-dropdown .nav-trigger span::before {
  content: '';
  left: 0;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.cd-morph-dropdown .nav-trigger span::before {
  -webkit-transform: translateY(-9px);
  transform: translateY(-9px);
}

.cd-morph-dropdown .nav-trigger span::after {
  -webkit-transform: translateY(9px);
  transform: translateY(9px);
}

.cd-morph-dropdown.nav-open .nav-trigger span {
  background-color: transparent;
}

.cd-morph-dropdown.nav-open .nav-trigger span::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.cd-morph-dropdown.nav-open .nav-trigger span::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.cd-morph-dropdown .main-nav {
  display: none;
}

.cd-morph-dropdown .morph-dropdown-wrapper {
  display: none;
  position: absolute;
  top: 60px;
  z-index: 99999999;
  left: 0;
  width: 100%;
  padding: 1.2em 5%;
  box-shadow: inset 0 1px 0 #e6e6e6;
  background-color: #FFFFFF;
}

.cd-morph-dropdown.nav-open .morph-dropdown-wrapper {
  display: block;
}

.cd-morph-dropdown .dropdown-list > ul > li {
  margin-bottom: 3.3em;
}

.cd-morph-dropdown .label {
  display: block;
  font-size: 2.2rem;
  color: #1A1A1A;
  margin-bottom: .8em;
}

.cd-morph-dropdown .content li::after {
  clear: both;
  content: "";
  display: block;
}

.cd-morph-dropdown .gallery .content li {
  margin-bottom: 1.4em;
}

.cd-morph-dropdown .gallery .content a {
  display: block;
}

.cd-morph-dropdown .gallery .content a span, .cd-morph-dropdown .gallery .content a em {
  display: block;
  line-height: 1.2;
}

.cd-morph-dropdown .gallery .content a em {
  font-size: 1.8rem;
  padding: .4em 0 .2em;
  color: #1A1A1A;
}

.cd-morph-dropdown .gallery .content a span {
  font-size: 1.4rem;
  color: #a6a6a6;
}

.cd-morph-dropdown .gallery .content a:hover::before {
  background-color: #1A1A1A;
}

.cd-morph-dropdown .gallery li:nth-of-type(1) a::before {
  background: #f4e58a url(../img/cd-gallery-icons.svg) no-repeat 0 0;
}

.cd-morph-dropdown .gallery li:nth-of-type(2) a::before {
  background: #F4AF6D url(../img/cd-gallery-icons.svg) no-repeat -54px 0;
}

.cd-morph-dropdown .gallery li:nth-of-type(3) a::before {
  background: #DB6356 url(../img/cd-gallery-icons.svg) no-repeat -108px 0;
}

.cd-morph-dropdown .gallery li:nth-of-type(4) a::before {
  background: #8D4645 url(../img/cd-gallery-icons.svg) no-repeat -162px 0;
}

.cd-morph-dropdown .links .content > ul > li {
  margin-top: 1em;
}

.cd-morph-dropdown .links-list a,
.cd-morph-dropdown .btn {
  display: block;
  margin-left: 14px;
  font-size: 2.2rem;
  line-height: 1.6;
}

.cd-morph-dropdown .links-list a:hover,
.cd-morph-dropdown .btn:hover {
  color: #1A1A1A;
}

.cd-morph-dropdown .content h2 {
  color: #a6a6a6;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.3rem;
  margin: 20px 0 10px 14px;
}

@media only screen and (min-width: 1000px) {
  .cd-morph-dropdown {
    position: absolute;
    height: 80px;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0;
    text-align: center;
    background-color: transparent;
  }
  .cd-morph-dropdown::before {
    content: 'desktop';
  }
  .cd-morph-dropdown .nav-trigger {
    display: none;
  }
  .cd-morph-dropdown .main-nav {
    display: inline-block;
  }
  .cd-morph-dropdown .main-nav > ul > li {
    display: inline-block;
    float: left;
  }
  .cd-morph-dropdown .main-nav > ul > li > a {
    display: block;
    padding: 0 1.8em;
    height: 70px;
    line-height: 70px;
    color: #333;
    font-size: 1.8rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
  }
  .cd-morph-dropdown.is-dropdown-visible .main-nav > ul > li > a {
    /* main navigation hover effect - on hover, reduce opacity of elements not hovered over */
    opacity: .6;
  }
  .cd-morph-dropdown.is-dropdown-visible .main-nav > ul > li.active > a {
    opacity: 1;
  }
  .cd-morph-dropdown .morph-dropdown-wrapper {
    /* dropdown wrapper - used to create the slide up/slide down effect when dropdown is revealed/hidden */
    display: block;
    top: 58px;
    /* overwrite mobile style */
    width: auto;
    padding: 0;
    box-shadow: none;
    background-color: transparent;
    /* Force Hardware acceleration */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }
  .cd-morph-dropdown.is-dropdown-visible .morph-dropdown-wrapper {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .cd-morph-dropdown .dropdown-list {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform, width, height;
    -webkit-transition: visibility .3s;
    transition: visibility .3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  }
  .no-csstransitions .cd-morph-dropdown .dropdown-list {
    display: none;
  }
  .cd-morph-dropdown .dropdown-list::before {
    /* dropdown top triangle */
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 0;
    width: 0;
    border: 8px solid transparent;
    border-bottom-color: #FFFFFF;
    opacity: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
  }
  .cd-morph-dropdown .dropdown-list > ul {
    position: relative;
    z-index: 999999999999999999999;
    height: 100%;
    width: 100%;
    overflow: hidden;
  }
  .cd-morph-dropdown.is-dropdown-visible .dropdown-list {
    visibility: visible;
    -webkit-transition: width .3s, height .3s, -webkit-transform .3s;
    transition: width .3s, height .3s, -webkit-transform .3s;
    transition: transform .3s, width .3s, height .3s;
    transition: transform .3s, width .3s, height .3s, -webkit-transform .3s;
  }
  .cd-morph-dropdown.is-dropdown-visible .dropdown-list::before {
    opacity: 1;
  }
  .cd-morph-dropdown .dropdown {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    -webkit-transition: opacity .3s, visibility .3s;
    transition: opacity .3s, visibility .3s;
  }
  .cd-morph-dropdown .dropdown.active {
    opacity: 1;
    visibility: visible;
  }
  .cd-morph-dropdown .dropdown.move-left .content {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
  .cd-morph-dropdown .dropdown.move-right .content {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
  }
  .cd-morph-dropdown .label {
    /* hide the label on bigger devices */
    display: none;
  }
  .cd-morph-dropdown .content {
    padding: 2.2em 1.8em;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    text-align: left;
    z-index: 999999;
  }
  .cd-morph-dropdown .content > ul::after {
    clear: both;
    content: "";
    display: block;
  }
  .cd-morph-dropdown .content > ul > li {
    width: 48%;
    float: left;
    margin-right: 4%;
    margin-top: 0;
  }
  .cd-morph-dropdown .content > ul > li:nth-of-type(2n) {
    margin-right: 0;
  }
  .cd-morph-dropdown .gallery .content {
    /* you need to set a width for the .content elements because they have a position absolute */
    width: 510px;
    padding-bottom: .8em;
  }
  .cd-morph-dropdown .gallery .content li {
    margin-bottom: 1.8em;
  }
  .cd-morph-dropdown .links .content > ul > li {
    margin-top: 0;
  }
  .cd-morph-dropdown .links .content,
  .cd-morph-dropdown .button .content {
    width: 390px;
  }
  .cd-morph-dropdown .links-list a {
    font-size: 1.6rem;
    margin-left: 0;
  }
  .cd-morph-dropdown .btn {
    display: block;
    width: 100%;
    height: 60px;
    margin: 1.5em 0 0;
    font-size: 1.8rem;
    text-align: center;
    color: #333;
    line-height: 60px;
    background: #DB6356;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .cd-morph-dropdown .btn:hover {
    background: #1A1A1A;
    color: #333;
  }
  .cd-morph-dropdown .content h2 {
    font-size: 1.8rem;
    text-transform: none;
    font-weight: normal;
    color: #1A1A1A;
    margin: 0 0 .6em;
  }
  .cd-morph-dropdown .bg-layer {
    /* morph dropdown background */
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 1px;
    background: #FFFFFF;
    opacity: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .cd-morph-dropdown.is-dropdown-visible .bg-layer {
    opacity: 1;
    -webkit-transition: opacity .3s, -webkit-transform .3s;
    transition: opacity .3s, -webkit-transform .3s;
    transition: transform .3s, opacity .3s;
    transition: transform .3s, opacity .3s, -webkit-transform .3s;
  }
}

html {
  overflow-y: scroll;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'ffmark';
  font-weight: bold;
}

h1 {
  font-size: 34px;
}

a:active, a:selected {
  color: #333;
}

a:hover {
  text-decoration: none;
}

.row-eq-height {
  display: -webkit-box;
  display: flex;
}

.blog-post-title {
  line-height: 24px;
  margin-bottom: 8px;
}

a {
  color: #928e3e;
}

.blog-header {
  border-bottom: 0px;
}

.blog-post-title, nav {
  font-family: 'MarkPro';
  font-family: 'Muli', sans-serif;
  font-family: 'ffmark';
}

body {
  font-family: 'Unit', serif;
  font-family: 'ffmark';
  font-size: 15px;
}

body {
  font-size: 15px;
}

.blog-post {
  font-size: 14px;
}

.blog-post-title {
  font-family: 'ffmark';
  font-weight: normal;
}

.blog-footer {
  background-color: #27292b;
  border-top: 0px;
}

.blog-footer a {
  color: #FFF;
}

@media only screen and (min-width: 1000px) {
  .cd-morph-dropdown .main-nav {
    display: inline-block;
    width: 100%;
  }
}

@font-face {
  font-family: 'MarkPro';
  src: url("/MarkPro.otf") format("opentype");
}

/* first for IE 4Ã¢â‚¬â€œ8 */
@font-face {
  font-family: "Unit";
  src: url("/UnitWeb-Light.eot");
}

/* then for WOFF-capable browsers */
@font-face {
  font-family: "Unit";
  src: url("/UnitWeb-Light.woff") format("woff");
}

@font-face {
  font-family: "Sabon";
  src: url("/SabonLTStd-Roman.otf");
  font-weight: normal;
}

@font-face {
  font-family: "Sabon";
  src: url("/SabonLTStd-Italic.otf");
  font-style: italic;
}

@font-face {
  font-family: 'ffmark';
  font-weight: 200;
  font-style: normal;
  src: url("/fonts/Mark-Extralight.woff2") format("woff2"), url("/fonts/Mark-Extralight.woff") format("woff"), url("/fonts/Mark-Extralight.ttf") format("ttf");
}

@font-face {
  font-family: 'ffmark';
  font-weight: 400;
  font-style: normal;
  src: url("/fonts/Mark-Regular.woff2") format("woff2"), url("/fonts/Mark-Regular.woff") format("woff"), url("/fonts/Mark-Regular.ttf") format("ttf");
}

@font-face {
  font-family: 'ffmark';
  font-weight: 800;
  font-style: normal;
  src: url("/fonts/Mark-Heavy.woff2") format("woff2"), url("/fonts/Mark-Heavy.woff") format("woff"), url("/fonts/Mark-Heavy.ttf") format("ttf");
}

.content li {
  list-style: none;
}

.cd-morph-dropdown .links-list a {
  margin-left: 0px;
  font-size: 16px;
  line-height: 20px;
  padding-bottom: 5px;
  padding-top: 5px;
}

a:focus, a:active {
  color: #000 !important;
}

.blogtitle {
  font-size: 34px;
  line-height: 42px;
}

.form-control {
  font-size: 14px;
  margin-right: 10px;
}

.form-group label {
  margin-right: 10px;
}

.btn-primary {
  color: #fff;
  background-color: #333;
  border-color: #333;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: #000;
  border-color: #000;
}

h6 {
  font-size: 15px;
  margin-bottom: 20px;
}

blockquote {
  margin-left: 10px;
  font-style: italic;
  margin-bottom: 0px;
  margin-top: 20px;
}

.sticky.is-sticky {
  position: fixed;
  top: 0px;
}

.nav-link {
  padding-bottom: 10px;
}

@media (max-width: 991px) {
  .hidemobile {
    display: none !important;
  }
  .minzeit {
    min-height: 400px !important;
  }
  .minaut {
    min-height: 180px !important;
  }
}

@media (min-width: 992px) {
  .hidedesktop {
    display: none !important;
  }
  .padtop {
    padding-top: 30px !important;
  }
  .minzeit {
    min-height: 320px;
  }
  .minauot {
    min-height: 280px;
  }
}

@media (min-width: 992px) {
  .postleft {
    margin-left: -20% !important;
  }
}

.cd-morph-dropdown .content > ul > li {
  width: 100%;
}

.nav-link.active {
  color: #000 !important;
}

.cd-morph-dropdown .dropdown-list {
  top: 10px;
}

.cd-morph-dropdown .dropdown-list::before {
  display: none;
}

.pagination li {
  display: inline-block;
  list-style: none;
}

h4 {
  font-family: 'Sabon';
  font-weight: normal;
}

/* -------------------------------- 

 INDEX

-------------------------------- */
.brand {
  font-family: 'Sabon';
  font-style: italic;
  line-height: 24px;
  font-weight: normal;
  font-size: 20px;
  margin-top: 0px;
  margin-bottom: 10px;
  color: #333;
}

blockquote {
  margin-bottom: 20px;
}

h1, h2, h3, h4, h5 {
  font-weight: normal;
}

h5 {
  font-family: 'Sabon';
  font-weight: normal;
}

.h5, h5 {
  font-size: 22px;
}

.alignleft {
  margin-right: 10px;
  margin-bottom: 10px;
}

/*# sourceMappingURL=frontend.css.map */



a {
  color: #000;
}

a:hover {
  color: #000 ;
}

html, body, .cd-main-content {
    background: #e6e6e6 !important;
}


    .cd-morph-dropdown {
    position: relative;
  }

  .blog-masthead {
      margin-bottom: 0px;
      position: fixed;
      z-index: 9999;
  }

  .cd-morph-dropdown {
    height: 68px;
    }


    .padtop{
      background: #FFF;
    }



    .brand {

        font-size: 23px;
    }
    .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar {
    border-radius: 0;
}
@media (min-width: 970px) {
  .topnav {
    position: fixed;  
    width:970px;
    z-index: 99999;

  }
  .navpad{
    padding-top: 60px;
  }
  .premiumfeld {
    margin-left: 140px !important;
  }
}


.dropdown:hover > .dropdown-menu {
    display: block !important;    
}

.dropdown-menu {
    border: 0px;
    border-radius: 0px;
}

.stuck {
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
}
.navbar-nav .nav-item+.nav-item {
    margin-left: 0px;
}

.navbar-light .navbar-nav .nav-link {
    color: #333;
}


* {
 text-decoration: none !important;
}

p img {
  max-width: 100%;
}


@font-face {
  font-family: 'franziska';
  src: url("/fonts/FranziskaWebPro.eot") format("eot"), url("/fonts/FranziskaWebPro.woff") format("woff");
}

::selection {
  background: #CCC;
}

.cd-main-content {
    background: #41464d !important;
}

.cd-main-content {
    background: #41464d !important;
}

.und {
  font-weight: bold;
}
