/* CSS Document */
@charset "utf-8";

/*
* KWA Karriere, www.kwa.de/karriere
* Copyright 2015-2017, Sven Hartmann, VISUAL MOVEMENT
* www.visual-movement.de
*/

/* Table of Content
==================================================
  #Basic Styles
  #Site Styles
  #Typography
  #Lists
  #Navigation
  #Links
  #Images
  #Buttons
  #Forms
  #Misc
  #Media Querries



/* #Basics Styles
================================================== */
*, *::before, *::after{
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  
  -webkit-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out;
}

body {
  background: #ddd;
  font-family: 'PT Serif', serif;
  font-weight: 400;
  font-size: 16px;
  color:#414141;
}

a {
  color: #D3914D;
  text-decoration: none;
  transition: all 0.2s ease 0s;
}

a:hover {
  color: #006c3d;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.spacer {
    padding-top: 160px;
}


/* #Site Styles
================================================== */

/* #Typography
================================================== */


.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5 {
    font-family: 'Open Sans Condensed',sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #006C3D;
  position: relative;
}

.h2 {
  font-size: 30px;
  
}

.h2-line-after, .h2-line-left-after, .h3-line-after, .h3-line-left-after, .h4-line-after, .h4-line-left-after, .h5-line-after, .h5-line-left-after, .h5-line-right-after {
    margin-bottom: 50px;
  text-align: center;
}

.h2-line-left-after::after {
  content: "";
    position: relative;
    width: 50px;
    height: 3px;
    display: block;
    background-color: #D3914D;
    bottom: -20px;
    left: 50%;
    margin-left: 0px;
  transform: translateX(-50%);
}

.h3-line-left-after::after {
  content: "";
    position: relative;
    width: 50px;
    height: 3px;
    display: block;
    background-color: #D3914D;
    bottom: -20px;
    left: 50%;
    margin-left: 0px;
  transform: translateX(-50%);
}

.h4-line-left-after::after {
  content: "";
    position: relative;
    width: 50px;
    height: 3px;
    display: block;
    background-color: #D3914D;
    bottom: -20px;
    left: 50%;
    margin-left: 0px;
  transform: translateX(-50%);
}

.h4-line-right-after::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    display: block;
    background-color: #D3914D;
    bottom: -20px;
    right: 50%;
    margin-right: 0px;
    transform: translateX(50%);
}

.h5-line-left-after::after {
    content: "";
    position: relative;
    width: 50px;
    height: 3px;
    display: block;
    background-color: #D3914D;
    bottom: -20px;
    left: 50%;
    margin-left: 0px;
    transform: translateX(-50%);
}

.h5-line-right-after::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    display: block;
    background-color: #D3914D;
    bottom: -20px;
    right: 50%;
    margin-right: 0px;
    transform: translateX(50%);
}

.h2-line-after::after, .h3-line-after::after, .h4-line-after::after, .h5-line-after::after {
    content: "";
    position: relative;
    width: 50px;
    height: 3px;
    display: block;
    background-color: #D3914D;
    bottom: -20px;
    left: 50%;
    margin-left: -25px;
}

.line-invis::after {
    background: transparent !important;
}

/* #Lists
================================================== */

ul {
    list-style: none;
}


/* #Navigation
================================================== */
/* --------------- */
/* Fullscreen Menu */
/* --------------- */
.ui {
  position: relative;
  z-index: 100;
}

.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  position: fixed;
  top: 0px;
  left: 0px;
  color: #fff;
}



.hamburger:hover {
    opacity: 0.7; 
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; 
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; 
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #FBFAEE;
    border-radius: 4px;
    position: absolute;

  transition: transform 0.15s ease, width 0.2s ease;
}

.isDark .hamburger-inner, .isDark .hamburger-inner::before, .isDark .hamburger-inner::after {
  background-color: #414141;
}

.is-active .hamburger-inner, .is-active .hamburger-inner::before, .is-active .hamburger-inner::after {
  background-color: #FBFAEE;
  width: 40px;
}

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; 
}

.hamburger-inner::before {
    top: -10px;
  width: 36px;
}

.hamburger-inner::after {
    bottom: -10px; 
  width: 30px;
}

.hamburger:hover .hamburger-inner::before {
  width: 40px;
  
}

.hamburger:hover .hamburger-inner::after {
  width: 40px;
}

.hamburger:hover .hamburger-inner {
  width: 36px;
}

.is-active.hamburger:hover .hamburger-inner {
  width: 40px;
}
  
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); 
 }
  
.hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease, width 0.2s ease; 
}
  
.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), width 0.2s ease; 
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); 
}
 
.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease; 
}

.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); 
}

.hamburger-label {
    color: #FBFAEE;
  vertical-align: middle;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
    padding-left: 12px;
    height: 40px;
    display: none;
  transition: opacity 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  opacity: 1;
}

.is-active .hamburger-label {
  opacity: 0;
}

.teilnehmenTop.is-active {
    opacity: 0;
}

.teilnehmenTop {
    display: none;
  position: fixed;
    right: 30px;
    top: 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 18px;
  vertical-align: middle;
  transition: all 0.2s ease 0s;
  transition: opacity 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  opacity: 1;
}

.teilnehmenTop-link {
  color: #FBFAEE;
  text-decoration: none;
}

.teilnehmenTop-link:hover {
  opacity: 0.7;
  color: #FBFAEE;
}

.isDark .hamburger-label {
  color: #414141;
  }

.isDark .teilnehmenTop-link {
  color: #414141;
  }

/* Overlay style */
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fbfaee;
}

/* Overlay closing cross */
.overlay .overlay-close {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 30px;
  top: 30px;
  overflow: hidden;
  border: none;
  background: url(../../Public/images/cross.png) no-repeat center center;
  text-indent: 200%;
  color: transparent;
  outline: none;
  z-index: 100;
  cursor: pointer;
}

/*.nav-left {
    position: relative;
    float: left;
    width: calc(100% - 450px);
    height: 100vh;
    background: rgba(0,108,61,0.9);
}*/

.nav-left {
    position: relative;
    display: block;
    float: none;
    clear: both;
    width: 100vw;
    height: auto;
  background: #006c3d;
}


.navItem {
    
  position: relative;
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
  height: calc(100% / 4);
    min-height: 54px;
    -webkit-transition: all .22s cubic-bezier(0.615, 0.19, 0.305, 0.91) 0s;
    -moz-transition: all .22s cubic-bezier(0.615, 0.19, 0.305, 0.91) 0s;
    -ms-transition: all .22s cubic-bezier(0.615, 0.19, 0.305, 0.91) 0s;
    -o-transition: all .22s cubic-bezier(0.615, 0.19, 0.305, 0.91) 0s;
    transition: all .22s cubic-bezier(0.615, 0.19, 0.305, 0.91) 0s;
}

.navItem-link {
  font-family: 'Open Sans Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
  color: #fbfaee;
  position: relative;
}

.navItem-link::before {
    content: "";
    position: absolute;
    top: 26px;
    width: 0;
    right: 0px;
    bottom: 0px;
    left: 0px;
    height: 8px;
    z-index: -1;
    background: #D3914D;
    transition: all 0.3s cubic-bezier(0.615, 0.19, 0.305, 0.91) 0s;
}

.navItem-link:hover:before, .navItem-link.is-active:before {
    width: 50%;
}



.navItem-link:hover, .navItem-link.is-active {
    padding-left: 15px;
  color: #fbfaee;
}


.nav-right {
    position: relative;
    display: block;
    float: none;
    width: 100vw;
    height: auto;
  background: rgba(251,250,238,0.9);
}



.nav-container-right {
    position: relative;
    display: block;
    top: 0;
    left: 75px;
    padding: 40px 0;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
}

.navSide:first-child {
    float: none;
}

.navSide {
    margin-bottom: 30px;
  float: left;
}

.navSide:last-child {
    margin-top: 0px;
    margin-bottom: 0px;
  margin-left: 60px;
}

.navSide-title {
    font-family: 'Open Sans Condensed',sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 5px;
    line-height: 16px;
}

.overlayNavigation .navSide img {
    width: 80px;
    max-width: 100%;
    height: auto;
}

.overlayNavigation .nav-link {
    position: relative;
    width: auto;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
  padding: 0;
}

.navSide-link {
    color: #D3914D;
    text-decoration: none;
    transition: all 0.2s ease 0s;
    text-transform: uppercase;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    display: block;
  margin-bottom: 15px;
}

.navSide-linkText {
    margin-bottom: 0;
}



/* Menu style */


.overlay nav {
    text-align: center;
    position: relative;
    top: 0;
    width: auto;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
    width: auto;
    left: 75px;
    text-align: left;
    padding: 25px 0;
    margin: 0 auto;
}

.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  height: 100%;
  position: relative;
}

.overlay ul li {
  display: block;
  height: 20%;
  height: calc(100% / 5);
  min-height: 54px;
}

.overlay ul li a {
    font-size: 48px;
    font-weight: 300;
    display: block;
    color: #fff;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    font-family: 'Open Sans Condensed', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
  padding-left: 0;
}

.overlay ul li a:hover,
.overlay ul li a:focus {
  color: #f0f0f0;
}

/* Effects */


.wrapper {
  background: #FBFAEE;
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  overflow: hidden;
}

.wrapper.overlay-open {
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}

.overlay-contentscale {
  visibility: hidden;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.5s, visibility 0s 0.5s;
  transition: transform 0.5s, visibility 0s 0.5s;
}

.overlay-contentscale.open {
  visibility: visible;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}


.ui-section {

    -webkit-transform: translateY(-50%);
    position: fixed;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    display: none;
  z-index: 30;
  pointer-events: auto;
}

.gbp-ui {
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 16px;
    font-weight: 700;
  /*left: -100px;*/
  left: 0px;
  color: #414141;
    display: none;
  transition: color 0.01s ease 0s;
}

.gbp-ui.isWhite {
  color:#fbfaee;
}

.gbp-ui--category-text.is-active {
  opacity: 0;
}

.gbp-ui--category-text {
  
    position: absolute;
    bottom: 0;
    left: 100%;
    height: 20px;
    margin-left: -25px;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    overflow: hidden;
  transition: all 0.2s ease 0s;
  transition: opacity 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  opacity: 1;
  text-transform: uppercase;

}

#gbp-ui--category-text-content {
  transform: translate(0%, 0%);
    list-style: none !important;
    padding: 0px;
   will-change: transform;
    -webkit-transition: -webkit-transform .6s cubic-bezier(.68,-.55,.265,1.55);
    transition: -webkit-transform .6s cubic-bezier(.68,-.55,.265,1.55);
    transition: transform .6s cubic-bezier(.68,-.55,.265,1.55);
    transition: transform .6s cubic-bezier(.68,-.55,.265,1.55),-webkit-transform .6s cubic-bezier(.68,-.55,.265,1.55);
  opacity: 0;

}

#gbp-ui--category-text-content li {

    white-space: nowrap;
    line-height: 20px;

}

.gbp-ui--category-number {

    left: 50%;
    font-weight: 700;
    position: absolute;
    margin-top: 15px;
    font-size: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  opacity: 1;
}

.gbp-ui--category-decadic-wrapper {

    display: inline-block;
    height: 24px;
    overflow: hidden;
    vertical-align: top;

}

.gbp-ui--category-decadic {
  padding: 0;
  margin: 0;
    list-style: none;
    will-change: transform;
    -webkit-transition: -webkit-transform .6s cubic-bezier(.68,-.55,.265,1.55);
    transition: -webkit-transform .6s cubic-bezier(.68,-.55,.265,1.55);
    transition: transform .6s cubic-bezier(.68,-.55,.265,1.55);
    transition: transform .6s cubic-bezier(.68,-.55,.265,1.55),-webkit-transform .6s cubic-bezier(.68,-.55,.265,1.55);
}

.gbp-ui--category-decadic li {

    height: 24px;
    font-size: 18px;

}

.gbp-ui--category-number-wrapper {

    display: inline-block;
    height: 24px;
    overflow: hidden;
    vertical-align: top;

}

.gbp-ui--category-number-ul {
  padding: 0;
    margin: 0;
    list-style: none;
    will-change: transform;
    -webkit-transition: -webkit-transform .6s cubic-bezier(.68,-.55,.265,1.55);
    transition: -webkit-transform .6s cubic-bezier(.68,-.55,.265,1.55);
    transition: transform .6s cubic-bezier(.68,-.55,.265,1.55);
    transition: transform .6s cubic-bezier(.68,-.55,.265,1.55),-webkit-transform .6s cubic-bezier(.68,-.55,.265,1.55);

}

.gbp-ui--category-number-ul li {
  padding: 0;
    margin: 0;
  height: 24px;
    font-size: 18px;

}

#gbp-ui--category-text-content.active1 {
  transform: matrix(1, 0, 0, 1, 0, 0) !important;
}

#gbp-ui--category-text-content.active2 {
  transform: matrix(1, 0, 0, 1, 0, -20) !important;
}

#gbp-ui--category-text-content.active3 {
  transform: matrix(1, 0, 0, 1, 0, -40) !important;
}

#gbp-ui--category-text-content.active4 {
  transform: matrix(1, 0, 0, 1, 0, -60) !important;
}

#gbp-ui--category-text-content.active5 {
  transform: matrix(1, 0, 0, 1, 0, -80) !important;
}

#gbp-ui--category-text-content.active6 {
  transform: matrix(1, 0, 0, 1, 0, -100) !important;
}

#gbp-ui--category-text-content.active7 {
  transform: matrix(1, 0, 0, 1, 0, -120) !important;
}

#gbp-ui--category-text-content.active8 {
  transform: matrix(1, 0, 0, 1, 0, -140) !important;
}

#gbp-ui--category-text-content.active9 {
  transform: matrix(1, 0, 0, 1, 0, -160) !important;
}

#gbp-ui--category-text-content.active10 {
  transform: matrix(1, 0, 0, 1, 0, -180) !important;
}

#gbp-ui--category-text-content.active11 {
  transform: matrix(1, 0, 0, 1, 0, -200) !important;
}

#gbp-ui--category-text-content.active12 {
  transform: matrix(1, 0, 0, 1, 0, -220) !important;
}






.main {
    margin-top: -10px;
  background-color: #FBFAEE;
    position: relative;
    z-index: 10;
  
}

section {
  position: relative;
  padding-top: 130px;
}

#sectionMain {
    padding-top: 0;
}

.sectionMainSub .container section:first-child {
    padding-top: 50px;
}

section .subline {
    text-transform: uppercase;
    font-style: italic;
  font-size: 14px;
    line-height: 1.25;
}




.sectionHeader {
    width: 100%;
    height: 100vh;
    position: relative;
  overflow: hidden;
  padding-top: 0;
}

.sectionSubHeader {
    width: 100%;
    height: 60vh;
    position: relative;
  overflow: hidden;
  padding-top: 0;
}

.sectionHeader-text {
    text-align: center;
    position: relative;
    z-index: 3;
    width: 95%;
    margin: auto;
    color: #fbfaee;
    top: 20%;
  /*top: 12%;*/
    transform: translateY(0%);
}

.sectionHeader-title {
    color: #fbfaee;
  opacity: 0;
    transform: translateY(40%);
    -webkit-transition: all 1500ms;
    transition: all 1500ms;
    font-size: 42px;
    text-transform: uppercase;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
  /*opacity: 1;
    transform: translateY(0%);*/
}

.sectionHeader-title.header-in { 
  opacity: 1;
    transform: translateY(0%);
}

.sectionHeader-subtitle {
    color: #fbfaee;
  margin-bottom: 0;
    font-style: italic;
    font-size: 18px;
  line-height: 1.25;
  -webkit-transition: all 1500ms;
    transition: all 1500ms;
  opacity: 0;
  transform: translateY(40%);
}

.sectionHeader-subtitle.header-in { 
  opacity: 1;
    transform: translateY(0%);
}

.sectionHeader-bg {
    background-position: center center;
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
  background-attachment: fixed;
    top: 0%;
    right: 0%;
    bottom: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    -webkit-transition: all 170ms ease-out 10ms;
    -moz-transition: all 170ms ease-out 10ms;
    -o-transition: all 170ms ease-out 10ms;
    transition: all 170ms ease-out 10ms;
  z-index: 1;
}

.sectionHeader-dgbpLogo {
    margin-bottom: 20px;
  -webkit-transition: all 1500ms;
    transition: all 1500ms;
  opacity: 0;
  transform: translateY(40%)
}

.sectionHeader-dgbpLogo.header-in {
  opacity: 1;
  transform: translateY(0%)
}

.sectionHeader-dgbp {
    width: 130px;
    height: 130px;
  z-index: 20;
    border-radius: 50%;
    border: 3px solid #e78d40;
    box-shadow: 3px 6px 12px rgba(0,0,0,0.25);
  opacity: 0.9;
  margin: 0 auto;
  background: #fff;
}

.sectionHeader-dgbp img {
    width: 120px;
    height: 120px;
    margin: auto;
}


.sectionHeader svg, .sectionSubHeader svg {
    bottom: -10px;
    display: block;
    position: absolute;
    z-index: 9;
}

.headerLogo-dgbp {
    position: absolute;
    z-index: 20;
    border-radius: 50%;
    border: 3px solid #e78d40;
    box-shadow: 3px 6px 12px rgba(0,0,0,0.25);
  opacity: 0;
  -webkit-transition: all 1500ms;
    transition: all 1500ms;
}

.headerLogo-dgbp {
    background: #FFE url(../../Public/images/deutscher_gartenbuch_preis_logo_300.png) no-repeat scroll 50% 50% / 80px 80px;
    bottom: 120px;
    right: unset;
    height: 90px;
    width: 90px;
    transform: translate(0%, 0%);
    left: 20px;
}


.headerLogo-egba {
    position: absolute;
    z-index: 20;
    border-radius: 50%;
    border: 3px solid #e78d40;
    box-shadow: 3px 6px 12px rgba(0,0,0,0.25);
  opacity: 0;
  -webkit-transition: all 1500ms;
    transition: all 1500ms;
}

.headerLogo-egba {
    background: #fff url(../../Public/images/european_gardenbook_award_logo_300.png) no-repeat scroll 50% 50% / 80px 80px;
    bottom: 120px;
    right: 50%;
    height: 90px;
    width: 90px;
    transform: translate(50%, 0%);
}

.headerLogo-egpa {
    position: absolute;
    z-index: 20;
    border-radius: 50%;
    border: 3px solid #e78d40;
    box-shadow: 3px 6px 12px rgba(0,0,0,0.25);
  opacity: 0;
  -webkit-transition: all 1500ms;
    transition: all 1500ms;
}

.headerLogo-egpa {
    background: #fff url(../../Public/images/european_gardenphoto_award_logo_300.png) no-repeat scroll 50% 50% / 80px 80px;
    bottom: 120px;
    right: 20px;
    height: 90px;
    width: 90px;
    transform: translate(0%, 0%);
}

.headerLogo-egba.header-in, .headerLogo-egpa.header-in, .headerLogo-dgbp.header-in {
  opacity: 0.9;
/*  transform: translateY(0%);*/
}

/*.sectionSubHeader .scrollDown {
    color: #414141;
    bottom: 50px;
}*/

.scrollDown {
    position: absolute;
    /*bottom: 130px;*/
  bottom: 65px;
    z-index: 20;
    text-align: center;
    width: 100%;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
  /*color: #FBFAEE;*/
  color:#414141;
}

.scrollDown-text {
    display: inline-block;
  -webkit-animation: scroll 2.5s cubic-bezier(.455,.03,.515,.955) infinite;
    animation: scroll 2.5s cubic-bezier(.455,.03,.515,.955) infinite;
}


@keyframes scroll {
 0% {
  -webkit-transform:scaleY(1) translateY(0);
  transform:scaleY(1) translateY(0)
 }
 50% {
  -webkit-transform:scaleY(.85) translateY(20%);
  transform:scaleY(1) translateY(20%)
 }
 to {
  -webkit-transform:scaleY(1) translateY(0);
  transform:scaleY(1) translateY(0)
 }
}




.sectionAbout {
  padding-top: 60px;
}

.sectionFacts {
  margin-top: 120px;
  Background: #006C3D;
  padding-bottom: 5px;
  padding-top: 60px;
}

.sectionFacts-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,82,47,0.85);
  box-shadow: inset 0px 0px 15px 7px rgba(0,0,0,0.25);
}

.sectionFacts-item {
  margin-bottom: 60px;
}

.sectionFacts-number {
  font-weight: 700;
  font-size: 72px;
  color: #FBFAEE;
   line-height: 1;
}

.sectionFacts-title {
  font-family: 'Open Sans Condensed', sans-serif;
  color: #D3914D;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 30px;
}

.sectionFacts-date {
  font-size: 36px;
  display: block;
  padding-bottom: 10px;
}

.sectionFacts-year {
    font-size: 28px;
    display: block;
    letter-spacing: 10px;
    margin-left: 9px;
}

.sectionCategory {
  
}

.sectionCategory-background {
    margin: 20px 0 20px;;
    background-color: #fdfcf5;
    -webkit-box-shadow: 10px 10px 57px 0 rgba(0,0,0,.26);
    box-shadow: 10px 10px 57px 0 rgba(0,0,0,.26);
    position: relative;
    padding: 40px 15px 0 15px;
}

.sectionCategory-link {
    display: block;
}

.sectionCategory-link:hover {
    opacity: 0.7;
}

.sectionCategory-subline {
    color: #414141;
  text-transform: uppercase;
    font-size: 13px;
    font-style: italic;
}

.sectionCategory-title {
    font-family: 'Open Sans Condensed', sans-serif;
    text-transform: uppercase;
    color: #006c3d;
    font-weight: 700;
    font-size: 16px;
  line-height: 1.25;
}

.sectionCategory-item {
    margin-top: 10px;
    margin-bottom: 35px;
}

.sectionCategory-eyecatcher {
    position: absolute;
    width: 110px;
    right: -45px;
    top: -32px;
    background-image: url(../../Public/images/gartenbuchpreis-blatt.png);
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    display: block;
    height: 100px;
}


.sectionTextBild .subline, .sectionSubTextBild .subline, .sectionSubTextBildFull .text-left .subline {
  padding-left: 0px;
  text-align: center;
}

.sectionSubTextBildFull ul {
    padding-left: 120px;
    list-style: disc;
    list-style-position: outside;
}

.sectionEgpa-teilnehmen {
    padding-left: 0;
}

.sectionTextBild p, .sectionSubTextBild {
  padding-left: 0px;
}

.sectionImage {
  margin-bottom: 60px;
}

.sectionImage-shadow {
    box-shadow: 5px 5px 50px 0 rgba(0,0,0,.35);
}



.sectionTeilnehmen-button {
  position: relative;
    display: block;
    margin: 0 auto;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: all .22s cubic-bezier(0.615, 0.19, 0.305, 0.91) 0s;
    -moz-transition: all .22s cubic-bezier(0.615, 0.19, 0.305, 0.91) 0s;
    -ms-transition: all .22s cubic-bezier(0.615, 0.19, 0.305, 0.91) 0s;
    -o-transition: all .22s cubic-bezier(0.615, 0.19, 0.305, 0.91) 0s;
    transition: all .22s cubic-bezier(0.615, 0.19, 0.305, 0.91) 0s;
}

.sectionTeilnehmen-link {
font-family: 'Open Sans Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
  color: #414141;
  position: relative;
}

.sectionTeilnehmen-link::before {
    content: "";
    position: absolute;
    top: 19px;
    width: 0;
    right: 0px;
    bottom: 0px;
    left: 0px;
    height: 5px;
    z-index: -1;
    background: #D3914D;
    transition: all 0.3s cubic-bezier(0.615, 0.19, 0.305, 0.91) 0s;
}

.sectionTeilnehmen-link:hover:before {
    width: 50%;
}

.sectionTeilnehmen-link:hover {
    padding-left: 15px;
  color: #414141;
}

.sectionWinner {
    padding-top: 80px;
    padding-bottom: 80px;
    z-index: -3;
    margin-top: 160px;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

.sectionWinner .subline {
  color: #fbfaee;
}

.sectionWinner .h2 {
  color: #fbfaee;
}

.sectionWinner-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,82,47,0.75);
    z-index: -2;
    box-shadow: inset 0px 0px 15px 7px rgba(0,0,0,0.25);
}

.sectionWinner-button {
    
  position: relative;
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: all .22s cubic-bezier(0.615, 0.19, 0.305, 0.91) 0s;
    -moz-transition: all .22s cubic-bezier(0.615, 0.19, 0.305, 0.91) 0s;
    -ms-transition: all .22s cubic-bezier(0.615, 0.19, 0.305, 0.91) 0s;
    -o-transition: all .22s cubic-bezier(0.615, 0.19, 0.305, 0.91) 0s;
    transition: all .22s cubic-bezier(0.615, 0.19, 0.305, 0.91) 0s;
}

.sectionWinner-link {
font-family: 'Open Sans Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
  color: #fbfaee;
  position: relative;
}

.sectionWinner-link::before {
    content: "";
    position: absolute;
    top: 19px;
    width: 0;
    right: 0px;
    bottom: 0px;
    left: 0px;
    height: 5px;
    z-index: -1;
    background: #D3914D;
    transition: all 0.3s cubic-bezier(0.615, 0.19, 0.305, 0.91) 0s;
}

.sectionWinner-link:hover:before {
    width: 50%;
}

.sectionWinner-link:hover {
    padding-left: 15px;
  color: #fbfaee;
}

.bookSlider-item{

  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: auto;
}

.bookSlider-overlay{
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  width: 100%;
  height: 100%;
  webkit-transition: all 0.4s ease-in-out;
          transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center

}

.bookSlider-fulllink {
    display: block;
    width: 100%;
    height: 100%;
}

.bookSlider-info{
  width: 100%;
  vertical-align: middle;
  position: relative;
  top: 20px;
  opacity: 0;
  color: #fbfaee;
    padding: 30px 20px;
}

.bookSlider-image{
  -webkit-transition: all 0.4s ease-in-out;
          transition: all 0.4s ease-in-out;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

.bookSlider-item:hover .bookSlider-overlay{
 background: rgba(211,145,77,0.95);
}

.bookSlider-item:hover .bookSlider-info{
  opacity: 1;
  top: 0;
}


.bookSlider-item:hover .bookSlider-image{
  -webkit-transform: scale3d(1.05, 1.05, 1);
          transform: scale3d(1.05, 1.05, 1);
}


.bookSlider-year {
  font-size: 13px;
  font-style: italic;
}

.bookSlider-category {
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.bookSlider-name {
  font-size: 18px;
  color: #006c3d;
  font-weight: 400;
}

.bookSlider-title {
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.25;
}

.bookSlider-link {
  font-size: 14px;
  font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
  text-transform: uppercase;
  margin-top: 40px;
  cursor: pointer;
}

.bookSlider-link:hover {
    opacity: 0.7;
}

.bookSlider-link .lnr {
    display: inline-block;
    fill: currentColor;
    width: 32px;
    height: 32px;
        vertical-align: -10px;
    text-align: center;
    margin-right: 10px;
}

.bookSlider .lnr-cart {
    color: #fbfaee;
    font-size: 20px;
}


.bookSlider .owl-dots {
    opacity: 0.75;
    position: relative;
    width: 100%;
    z-index: 10;
    margin-top: 20px;
    margin-bottom: 30px;
}

.bookSlider .owl-dots span {
    background: rgba(219,219,219,0.5) none repeat scroll 0 0;
    border-radius: 0;
    display: block;
    height: 5px;
    margin: 6px 0;
    transition: opacity 200ms ease 0s;
    width: 25px;
}

.bookSlider .owl-dots .owl-dot.active span, .bookSlider .owl-dots .owl-dot:hover span {
    background: #d3914d none repeat scroll 0 0;
}

.bookSlider .owl-dots .owl-dot {
    display: inline-block;
}

.bookSlider .owl-prev, .bookSlider .owl-next {
    display: inline-block;
    text-align: center;
    position: absolute;
  top: 0;
  bottom: 47px;
    transition: all 0.2s ease 0s;
    width: 100px;
  
}

.bookSlider .owl-prev:hover, .bookSlider .owl-next:hover {
    opacity: 0.7;
}

.owl-nav .lnr {
    display: block;
    fill: currentColor;
    width: 64px;
    height: 64px;
    vertical-align: -0.05em;
    text-align: center;
}

.owl-nav .lnr-chevron-left, .owl-nav .lnr-chevron-right {
    color: #d3914d;
    font-size: 20px;
    width: 100%;
    margin-bottom: 0px;
    transition: all 0.2s ease 0s;
    top: 50%;
    transform: translateY(-50%);
  position: absolute;
}


.bookSlider .owl-prev {left: -100px;}
.bookSlider .owl-next {right: -100px;}

.sectionSponsoren-logos div, .sectionMedienpartner-logos div {
  margin-bottom: 40px;
}

.sectionSponsoren-image, .sectionMedienpartner-image {
    margin: auto;
  max-width: 100%;
}

.sectionMedienpartner-image {
  margin: auto;
  max-width: 100%;
}

.sectionSponsoren-link, .sectionMedienpartner-link {
    margin: auto;
}


.sectionContact {
  font-size: 16px;
}

.sectionContact-veranstalter, .sectionContact-nav {
    padding-top: 60px;
}

.sectionContact-menu {
  padding-left: 0;
}

.sectionContact-menu-item {
    padding-top: 10px;
    padding-bottom: 10px;
}

.sectionContact-menu-item:first-child {
    padding-top: 0px;
}

.sectionContact-menu-link {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 18px;
  text-transform: uppercase;
    font-weight: 700;
    color: #414141;
    text-decoration: none;
    transition: all 0.2s ease 0s;
  display: block;
}

.sectionContact-menu-link:hover {
  color: #414141;
  opacity: 0.7;
}

footer {
    background: #006c3d none repeat scroll 0 0;
    height: auto;
    width: 100%;
    font-size: 14px;
    color: #fbfaee;
    line-height: 73px;
  margin-top: 60px;
}

.footerMenu {
    width: 100%;
    display: block;
    text-align: right;
    margin: 0;
  padding-left: 0;
}

.footerMenu-item {
    display: inline-block;
    padding-left: 20px;
}

.footerMenu-link {
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 14px;
  color: #fbfaee;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.2s ease 0s;
  opacity: 1
}

.footerMenu-link:hover {
  opacity: 0.7;
  color: #fbfaee;
}


.sectionBuchcover-titel{
  font-size: 24px;
}

.sectionBuchcover-image {
    width: 100%;
    height: auto;
}


.sectionBuchcover-platzierung {
    font-size: 16px;
    line-height: 1.25;
}


.sectionBuchcover-buch{
    background: #fdfcf5;
    box-shadow: 6px 6px 20px 0 rgba(0,0,0,.15);
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 40px;
}
.sectionBuchcover-cover {
    padding: 0;
}

.sectionBuchcover-details {
    padding: 30px;
}

.sectionBuchcover-autor {
    font-style: italic;
    text-transform: uppercase;
    font-size: 16px;
}

.sectionBuchcover-buch.selected {
    border-right: 4px solid #d3914d;
}

.sectionBuchcover-buch {
    border-right: none;
  border-bottom: 4px solid #fdfcf5;
  transition: all 0.3s ease 0s;
}

.sectionBuchcover-buch.is-active {
    border-right: none;
  border-bottom: 4px solid #d3914d;
}

.sectionBuchcover-platzierung {
    margin-bottom: 20px;
}

.sectionBuchcover-button {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
    -webkit-transition: all .22s cubic-bezier(0.615, 0.19, 0.305, 0.91) 0s;
    -moz-transition: all .22s cubic-bezier(0.615, 0.19, 0.305, 0.91) 0s;
    -ms-transition: all .22s cubic-bezier(0.615, 0.19, 0.305, 0.91) 0s;
    -o-transition: all .22s cubic-bezier(0.615, 0.19, 0.305, 0.91) 0s;
    transition: all .22s cubic-bezier(0.615, 0.19, 0.305, 0.91) 0s;
}

.sectionBuchcover-link {
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #414141;
    position: relative;
    z-index: 0;
}

.sectionBuchcover-link:hover {
    padding-left: 15px;
    color: #414141;
}

.sectionBuchcover-link::before {
    content: "";
    position: absolute;
    top: 16px;
    width: 0;
    right: 0px;
    bottom: 0px;
    left: 0px;
    height: 5px;
    z-index: -1;
    background: #D3914D;
    transition: all 0.3s cubic-bezier(0.615, 0.19, 0.305, 0.91) 0s;
}

.sectionBuchcover-link:hover:before {
    width: 50%;
}

 
 #buchcoverabstimmung label, #buchcoverabstimmung h2, #kontaktformular label, #kontaktformular h2 {
    display: none;
}

#buchcoverabstimmung select, #kontaktformular select {
    background: #fffcf2;
    border: 1px solid #e1e1dc;
    /* color: #79af96; */
    font-family: "Lato",sans-serif;
    font-weight: 400;
    margin-bottom: 2%;
    padding: 18px;
    width: 100%;
    height: 60px;
    border-radius: 0;
}

#buchcoverabstimmung input[type="text"], #buchcoverabstimmung textarea, #buchcoverabstimmung input[type="email"], #kontaktformular input[type="text"], #kontaktformular textarea, #kontaktformular input[type="email"] {
    background: #fffcf2;
    border-color: #e1e1dc;
    border-image: none;
    border-radius: 0;
    border-style: solid;
    border-width: 1px;
    color: #414141;
    display: block;
    float: left;
    font-family: "Lato",sans-serif;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 15px;
    outline: medium none;
    padding: 18px;
    transition: all 0.2s ease-in-out 0s;
    width: 100%;
}

form#buchcoverabstimmung, form#kontaktformular {
    max-width: 83.333%;
    margin: 30px auto 0;
    padding-left: 15px;
    padding-right: 15px;
    width: 540px;
}

#buchcoverabstimmung .actions, #kontaktformular .actions {
    clear: both;
    display: block;
    padding-top: 20px;
}

#buchcoverabstimmung button.btn.btn-primary, #kontaktformular button.btn.btn-primary {
    color: #414141;
    background: #fbfaee;
    border: 1px dashed #414141;
    border-radius: 0;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Open Sans Condensed', sans-serif;
  transition: all 0.2s ease 0s;
}

#buchcoverabstimmung button.btn.btn-primary:hover, #kontaktformular button.btn.btn-primary:hover {
  color: #d3914d;
  border: 1px dashed #d3914d;
}

#buchcoverabstimmung .form-control:focus, #kontaktformular .form-control:focus {
    color: #414141;
    background-color: #fbfaee;
    border-color: #d3914d;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(211,145,77,.25);
}

#buchcoverabstimmung p, #kontaktformular p {
    font-size: 16px;
    text-align: right;
    margin-bottom: 0;
}





.winnerBook-postbook, .winnerBlog-postbook {
    width: 100%;
    float: left;
    position: relative;
    display: block;
  margin: 0 auto;
  /*margin: 0 0 -70px;*/
}


.winnerBook-featureimg {
    margin: 0;
    width: 100%;
    float: left;
    overflow: hidden;
    position: relative;
    padding: 25px 60px 25px 20px;
}

.winnerBlog-featureimg {
    margin: 0;
    width: 100%;
    float: left;
    overflow: hidden;
    position: relative;
    padding: 25px 30px 25px 30px;
}

.winnerBook-bookimg{
  width: 100%;
  float: left;
  position: relative;
  outline: 1px solid transparent;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: perspective(1000px) rotateY(-12deg) rotateZ(0deg);
  -moz-transform: perspective(1000px) rotateY(-12deg) rotateZ(0deg);
  -ms-transform: perspective(1000px) rotateY(-12deg) rotateZ(0deg);
  -o-transform: perspective(1000px) rotateY(-12deg) rotateZ(0deg);
  transform: perspective(1000px) rotateY(-12deg) rotateZ(0deg);
}



.winnerBook-postbook:before{
  left: 30px;
  bottom: 20px;
  content: '';
  width: 85%;
  height: 15px;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  
  -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    /* FF doesn't support blur filter, but SVG */
    filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius = '15');
    filter: blur(15px);
  

  
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: perspective(1000px) rotateY(9deg) rotateZ(3deg);
  -moz-transform: perspective(1000px) rotateY(9deg) rotateZ(3deg);
  -ms-transform: perspective(1000px) rotateY(9deg) rotateZ(3deg);
  -o-transform: perspective(1000px) rotateY(9deg) rotateZ(3deg);
  transform: perspective(1000px) rotateY(9deg) rotateZ(3deg);
}

.winnerBlog-postbook:before{
  left: 30px;
  bottom: 20px;
  content: '';
  width: 85%;
  height: 15px;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    /* FF doesn't support blur filter, but SVG */
    filter: progid: DXImageTransform.Microsoft.Blur(PixelRadius = '15');
    filter: blur(15px);
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: perspective(1000px) rotateY(0deg) rotateZ(0deg);
  -moz-transform: perspective(1000px) rotateY(0deg) rotateZ(0deg);
  -ms-transform: perspective(1000px) rotateY(0deg) rotateZ(0deg);
  -o-transform: perspective(1000px) rotateY(0deg) rotateZ(0deg);
   transform: perspective(1000px) rotateY(0deg) rotateZ(0deg);
}
.winnerBook-frontcover {
  z-index: 2;
  width: 100%;
  float: left;
  overflow:hidden;
  position: relative;
  border-radius: 0 8px 8px 0;
}
.winnerBook-frontcover:before{
  top:0;
  left:0;
  width: 0;
  height: 0;
  content:'';
  position:absolute;
  border-top: 480px solid rgba(255, 255, 255, 0.10);
  border-right: 350px solid transparent !important;
}
.winnerBook-backcover {
  top: 2%;
  left: 25px;
  z-index: 1;
  width: 100%;
  height: 96%;
  overflow: hidden;
  background: #000;
  position: absolute;
  border-radius: 0 8px 8px 0;
}
.winnerBook-backcover img {
  opacity: 0.60;
  display: block;
}
.winnerBook-backcover:after {
  top: -1.5%;
    right: 8px;
    z-index: 2;
    width: 25px;
    height: 103%;
  content: '';
  position: absolute;
  background: url('../../Public/images/bookpattern.png') no-repeat;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -ms-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}
.winnerBook-bookimg img {
  width: 100%;
  height: auto;
  display: block;
}

.winnerBook {
    /*margin-top: 100px;*/
}

.winnerBook-category {
    font-size: 16px;
    text-transform: uppercase;
    position: relative;
}



.winnerBook-title {
  color: #006c3d;
  font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 28px;
  line-height: 1.25;
  position: relative;
  margin-bottom: 50px;
}

.winnerBook-title::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    display: block;
    background-color: #D3914D;
    bottom: -20px;
  margin-right: 0px;
    right: 50%;
    transform: translateX(50%);
}

.winnerBook-autor{
    color: rgba(0,0,0,.4);
  font-size: 14px;
}

.winnerBook-autorName {
    color: #414141;
    display: block;
    font-size: 16px;
}

.winnerBook-link:hover {
    opacity: 0.7;
    color: #414141;
}

.winnerBook-link {
    display: inline-block;
    color: #414141;
}

.winnerBook-kaufen {
    font-size: 14px;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 40px;
}

.winnerBook-kaufen .lnr {
    display: inline-block;
    fill: currentColor;
    width: 32px;
    height: 32px;
    vertical-align: -10px;
    text-align: center;
    margin-right: 10px;
}

.winnerBook-kaufen .lnr-cart {
    color: #414141;
    font-size: 20px;
}

.winnerBook-cover {
    padding-bottom: 20px;
    padding-top: 20px;
}

.winnerBook-descContent {
    font-size: 16px;
}

.winnerBook-jury {
    font-weight: 700;
    font-family: 'Open Sans Condensed', sans-serif;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.winnerBook-slider .owl-stage-outer {
    margin-top: 50px;
}

.winnerBook-slider .owl-prev, .winnerBook-slider .owl-next {
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 0;
    bottom: 47px;
    transition: all 0.2s ease 0s;
    width: 100px;
}

.winnerBook-slider .owl-dots {
    opacity: 0.75;
    position: absolute;
    width: 100%;
    z-index: 10;
    margin-top: 20px;
    margin-bottom: 30px;
    text-align: center;
    top: -80px;
}

.winnerBook-slider .owl-dot {
    padding: 10px 20px;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
}

.winnerBook-slider .owl-dot.active {
    color: #d3914d;
}

.winnerBook-slider .owl-dots .owl-dot {
    display: inline-block;
}

.winnerBook-slider .owl-dots span {
    background: rgba(219,219,219,0.5) none repeat scroll 0 0;
    border-radius: 0;
    display: block;
    height: 5px;
    margin: 6px 0;
    transition: opacity 200ms ease 0s;
    width: 25px;
}

.winnerBook-slider .owl-dots .owl-dot.active span, .winnerBook-slider .owl-dots .owl-dot:hover span {
    background: #d3914d none repeat scroll 0 0;
}

.winnerBook-slider .owl-next {
    right: -100px;
}
.winnerBook-slider .owl-prev {
    left: -100px;
}






.madeby {
    background: #fffcf2 none repeat scroll 0 0;
    border: 1px solid #e8e8e1;
    color: #444;
    /* margin-bottom: 40px; */
    padding: 30px 25px;
    text-align: center;
    width: 100%;
    max-width: 760px;
    margin: 60px auto 0;
}

.madeby h5 {
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #414141;
}

.madeby .agentur {
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 700;
}

.madeby p {
    margin-bottom: 0;
}

.itgblue {
    color: #00c0ff !important;
}







@media screen and (max-height: 30.5em) {
  .overlay nav {
    height: 70%;
    font-size: 34px;
  }
  .overlay ul li {
    min-height: 34px;
  }
}



/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
    
  body {
    font-size: 18px;
  }
  
  
  .hamburger-label { 
    display: inline-block;
  }
  
  .teilnehmenTop {
    display: block;
  }
  
  section .subline {
    font-size: 18px;
    line-height: 1.5;
  }

  .overlay {
    background: none;
  }

  .overlay nav {
    text-align: center;
    position: absolute;
    top: 50%;
    width: auto;
     -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: auto;
    left: 10vw;
    text-align: left;
    padding: 0;
    margin: 0;
  }

  .overlayNavigation .navSide img {
    width: 100px;
  }

  .nav-left {
    position: relative;
    float: left;
    width: calc(100% - 320px);
    height: 100vh;
    background: rgba(0,108,61,0.9);
  }

  .nav-right {
    position: relative;
    float: right;
    width: 320px;
    height: 100vh;
    overflow: hidden;
    background: rgba(251,250,238,0.9);
  }

  .nav-container-right {
    position: absolute;
    padding: 0;
    top: 50%;
    left: 50%;
    width: auto;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }


  .navItem-link {
    font-size: 36px;
  }

  .navItem-link::before {
    top: 34px;
    height: 8px;
  }

  .navSide-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .navSide-link {
    font-size: 21px;
    display: inline-block;
    margin-bottom: 0px;
  }

  .navSide {
    margin-bottom: 50px;
    float: none;
  }

  .navSide:last-child {
    margin-top: 200px;
    margin-bottom: 0px;
    margin-left: 0;
  }




  .hamburger {
    top: 15px;
    left: 15px;
  }
  
  .h2 {
    font-size: 44px;
  }
  
  .gbp-ui {
    display: none;
  }
  
  
  
  .headerLogo-dgbp {
    background: #fff url(../../Public/images/deutscher_gartenbuch_preis_logo_300.png) no-repeat scroll 50% 50% / 110px 110px;
    bottom: 130px;
    right: 310px;
    left: unset;
    height: 120px;
    width: 120px;
    
  }
  
  .headerLogo-egba {
    background: #fff url(../../Public/images/european_gardenbook_award_logo_300.png) no-repeat scroll 50% 50% / 110px 110px;
    bottom: 130px;
    height: 120px;
    width: 120px;
    right: 180px;
    transform: translate(0%, 0%);
  }
  
  .headerLogo-egpa {
    background: #fff url(../../Public/images/european_gardenphoto_award_logo_300.png) no-repeat scroll 50% 50% / 110px 110px;
    bottom: 130px;
    height: 120px;
    width: 120px;
    right: 50px;
  }
  
  .scrollDown {
    bottom: 130px;
  color: #FBFAEE;
}
  
  
  section {
    padding-top: 160px;
  }
  
  .sectionHeader-text {
    top:45%;
    transform: translateY(-68%);
    width: 65%;
  }
  
  
  .sectionHeader-title {
    /*opacity: 0;
    transform: translateY(40%);*/
    font-size: 48px;
    transform: translateY(40%);
  }
  
  .sectionHeader-subtitle {
    font-size: 21px;
    line-height: 1.5;
  }
  
  .sectionHeader-dgbp {
    width: 180px;
    height: 180px;
  }

  .sectionHeader-dgbp img {
    width: 170px;
    height: 170px;
  }
  

  .sectionAbout {
    padding-top: 150px;
  }
  
  .sectionFacts {
    margin-top: 150px;
    padding-bottom: 25px;
    padding-top: 80px;
  }
  
  .sectionFacts-title {
    font-size: 18px;
  }

  .sectionFacts-item {
    margin-bottom: 60px;
  }
  
  
  .sectionFacts-number {
    font-weight: 700;
    font-size: 92px;
    color: #FBFAEE;
     line-height: 1;
  }
  
  .sectionFacts-date {
    font-size: 48px;
    display: block;
    padding-bottom: 15px;
  }

  .sectionFacts-year {
    font-size: 30px;
    display: block;
    letter-spacing: 10px;
    margin-left: 12px;
  }
  
  .sectionCategory-background {
    margin: 20px 0 20px;;
    background-color: #fdfcf5;
    -webkit-box-shadow: 10px 10px 57px 0 rgba(0,0,0,.26);
    box-shadow: 10px 10px 57px 0 rgba(0,0,0,.26);
    position: relative;
    padding: 60px 60px 0 60px;
  }
  
  .sectionCategory-subline {
    text-transform: uppercase;
    font-size: 14px;
    font-style: italic;
  }

  .sectionCategory-title {
    font-family: 'Open Sans Condensed', sans-serif;
    text-transform: uppercase;
    color: #006c3d;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
  }
  
  .sectionCategory-item {
    margin-top: 20px;
    margin-bottom: 60px;
    padding-left: 25px;
    padding-right: 25px;
  }
  
  .sectionCategory-eyecatcher {
    position: absolute;
    width: 236px;
    right: -140px;
    top: -70px;
    background-image: url(../../Public/images/gartenbuchpreis-blatt.png);
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    display: block;
  height: 200px;
}


  .bookSlider-category {
    margin-bottom: 40px;
  }

  .bookSlider-title {
    line-height: 1.25;
  }

  .bookSlider-link {
    margin-top: 50px;
  }

  
  .sectionBuchcover-buch {
    border-bottom: none;
    border-right: 4px solid #fdfcf5;
    transition: all 0.3s ease 0s;
  }
  
  .sectionBuchcover-buch.is-active {
    border-bottom: none;
    border-right: 4px solid #d3914d;
  }
  
  .sectionBuchcover-image {
    max-width: 100%;
    height: auto;
}

  .sectionBuchcover-platzierung {
    font-size: 16px;
    line-height: 1.25;
  }

  form#buchcoverabstimmung, form#kontaktformular {
    width: 600px;
  }
  
  .winnerBook-title::after {
    right: 0;
    transform: none;
  }
  
  .winnerBook-slider .owl-dots {
    top: -60px;
  }


}







@media (min-width: 992px) {
    
  .h2-line-left-after::after, .h3-line-left-after::after, .h4-line-left-after::after  {
    content: "";
    position: relative;
    width: 50px;
    height: 3px;
    display: block;
    background-color: #D3914D;
    bottom: -20px;
    left: 100px;
    margin-left: 0px;
    transform: none;
  }
  
  
  .h2-line-left-after, .h3-line-left-after, .h4-line-left-after, .h5-line-left-after{
    margin-bottom: 50px;
    text-align: left;
  }
  
  .h5-line-left-after::after {
    left: 0;
    transform: none;
  }
  
  .h5-line-right-after::after {
    right: 0;
    transform: none;
  }
  
  .h5-line-right-after {
    text-align: right;
  }
  
  .sectionTextBild p, .sectionSubTextBild p, .sectionSubTextBildFull .text-left p {
    padding-left: 100px;
  }
  
  .sectionTextBild .subline, .sectionSubTextBild .subline, .sectionSubTextBildFull .text-left .subline {
  padding-left: 100px;
    text-align: left;
  }
  
  .sectionContact-veranstalter, .sectionContact-nav {
    padding-top: 0px;
  }
  
  .sectionEgpa-teilnehmen {
    padding-left: 100px;
  }
  
  .overlay nav {
    text-align: center;
    position: absolute;
    top: 50%;
    width: auto;
     -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: auto;
    left: 12vw;
    text-align: left;
    padding: 0;
    margin: 0;
  }
  
  .nav-left {
    position: relative;
    float: left;
    width: calc(100% - 450px);
    height: 100vh;
    background: rgba(0,108,61,0.9);
  }

  .nav-right {
    position: relative;
    float: right;
    width: 450px;
    height: 100vh;
    overflow: hidden;
    background: rgba(251,250,238,0.9);
  }
  
  .navItem-link {
    font-size: 40px;
  }

  .navItem-link::before {
    top: 38px;
    height: 8px;
  }
  
  header svg {
    bottom: -20px;
    display: block;
    position: absolute;
    z-index: 15;
  }
  
  .scrollDown {
    bottom: 120px;
  }
  
  .sectionHeader-text {
    top: 45%;
    transform: translateY(-60%);
    width: 50%;
  }
  
  .sectionHeader-title {
    /*opacity: 0;*/
    transform: translateY(40%);
    font-size: 64px;
  }
  
  .headerLogo-dgbp {
    background: #fff url(../../Public/images/deutscher_gartenbuch_preis_logo_300.png) no-repeat scroll 50% 50% / 115px 115px;
    bottom: 100px;
    height: 125px;
    width: 125px;
    right: 310px;
  }
  
  
  .headerLogo-egba {
    background: #fff url(../../Public/images/european_gardenbook_award_logo_300.png) no-repeat scroll 50% 50% / 115px 115px;
    bottom: 100px;
    height: 125px;
    width: 125px;
    right: 170px;
  }
  
  .headerLogo-egpa {
    background: #fff url(../../Public/images/european_gardenphoto_award_logo_300.png) no-repeat scroll 50% 50% / 115px 115px;
    bottom: 100px;
    height: 125px;
    width: 125px;
    right: 30px;
  }
  
  .sectionFacts-title {
    font-size: 20px;
  }
    
  .sectionMedienpartner-image {
    margin: auto;
    max-width: 180px;
  }
  
  form#buchcoverabstimmung, form#kontaktformular {
    width: 640px;
  }

  
}




@media (min-width: 1200px) { 

  .scrollDown {
    bottom: 100px;
  }
  
  
  .navItem-link {
    font-size: 48px;
  }

  .navItem-link::before {
    top: 46px;
    height: 8px;
  }
  
  .sectionHeader-title {
    font-size: 72px;
  }
  
  
  .headerLogo-dgbp {
    background: #fff url(../../Public/images/deutscher_gartenbuch_preis_logo_300.png) no-repeat scroll 50% 50% / 140px 140px;
    bottom: 90px;
    height: 150px;
    width: 150px;
    right: 380px;

  }

  .headerLogo-egba {
    background: #fff url(../../Public/images/european_gardenbook_award_logo_300.png) no-repeat scroll 50% 50% / 140px 140px;
    bottom: 90px;
    height: 150px;
    width: 150px;
    right: 215px;

  }

  .headerLogo-egpa {
    background: #fff url(../../Public/images/european_gardenphoto_award_logo_300.png) no-repeat scroll 50% 50% / 140px 140px;
    bottom: 90px;
    height: 150px;
    width: 150px;
    right: 50px;
  }
  
  .sectionBuchcover-titel{
    font-size: 28px;
  }
  
  form#buchcoverabstimmung, form#kontaktformular {
    width: 760px;
  }
  
  
}





@media (min-width: 1600px) { 
  
  
  *::after, *::before {
    box-sizing: border-box;
  }
  *::after, *::before {
    box-sizing: border-box;
  }

  
  .scrollDown {
    bottom: 90px;
  }
  
  .sectionHeader-text {
    transform: translateY(-60%);
  }
  
  .sectionHeader-title {
    font-size: 92px;
  }
  

}






