@import url("vertical.css");
@import url("font-awesome.css");

/* neuton-300 - latin */
@font-face {
  font-family: 'Neuton';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/neuton-v12-latin-300.eot'); /* IE9 Compat Modes */
  src: local('Neuton Light'), local('Neuton-Light'),
       url('../fonts/neuton-v12-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/neuton-v12-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/neuton-v12-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../fonts/neuton-v12-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/neuton-v12-latin-300.svg#Neuton') format('svg'); /* Legacy iOS */
}

/* neuton-regular - latin */
@font-face {
  font-family: 'Neuton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/neuton-v12-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Neuton Regular'), local('Neuton-Regular'),
       url('../fonts/neuton-v12-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/neuton-v12-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/neuton-v12-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/neuton-v12-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/neuton-v12-latin-regular.svg#Neuton') format('svg'); /* Legacy iOS */
}

/* source-sans-pro-200 - latin */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url('../fonts/source-sans-pro-v13-latin-200.eot'); /* IE9 Compat Modes */
  src: local('Source Sans Pro ExtraLight'), local('SourceSansPro-ExtraLight'),
       url('../fonts/source-sans-pro-v13-latin-200.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/source-sans-pro-v13-latin-200.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/source-sans-pro-v13-latin-200.woff') format('woff'), /* Modern Browsers */
       url('../fonts/source-sans-pro-v13-latin-200.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/source-sans-pro-v13-latin-200.svg#SourceSansPro') format('svg'); /* Legacy iOS */
}

/* source-sans-pro-regular - latin */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/source-sans-pro-v13-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'),
       url('../fonts/source-sans-pro-v13-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/source-sans-pro-v13-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/source-sans-pro-v13-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/source-sans-pro-v13-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/source-sans-pro-v13-latin-regular.svg#SourceSansPro') format('svg'); /* Legacy iOS */
}

body
{
    width: 100%;
    height: 100%;
    color: #46505a;
    text-align: center;
    font: 2rem/1.7 "Source Sans Pro", Helvetica, Arial, sans-serif;
}

html
{
    width: 100%;
    height: 100%;
}

h1, h2, h3, h4, h5, h6
{
	font-family: 'Neuton', serif;
	color: #266bb0;
}

h1 { 
  font-size: 45px;
  padding-bottom: 25px;
}

h1::after {  
    background-color: #266bb0;  
    content: "";  
    display: block;  
    height: 1px;  
    margin: 0.4em auto 0 auto;  
    position: relative;  
    width: 60%;  
}

h2, h4 { font-size: 40px;}

h2::after {  
    background-color: #266bb0;  
    content: "";  
    display: block;  
    height: 1px;  
    margin: 0.4em auto 0 auto;  
    position: relative;  
    width: 30%;  
}

h3, .h3
{
	font-size: 28px;
}

@media (max-width: 767px) {
  body { font: 18px/1.4 "Source Sans Pro",Helvetica,Arial,sans-serif; } 
  h1 { font-size: 26px;}
  h2 { font-size: 24px;}
  h3 { font-size: 22px;}
}

@media(min-width: 768px) and (max-width: 1200px) {
  body { font: 2rem/3rem "Source Sans Pro",Helvetica,Arial,sans-serif; } 
}


/* --------- marquee --------- */ 
.marquee {
    /*width: 450px;*/
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    animation: marquee 50s linear infinite;
}

.marquee:hover {
    animation-play-state: paused
}

/* Make it move */
@keyframes marquee {
    0%   { text-indent: 27.5em }
    100% { text-indent: -105em }
}

ul, ol { padding-left: 20px; text-align: left;}

a, a:hover, a:active, a:focus
{
	color: #266bb0;
}

.btn { font-size: 16px;}

/* --------- Navi --------- */ 

.navbar-inverse {
    background-color: rgba(70, 80, 90, 0.9);
    border-color: transparent;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
}

.navbar-inverse .navbar-nav > li > a {
    color:#fff;
}

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: #fff;
  background-color:#266bb0;
}

.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus {
  color: #fff;
  background-color:#266bb0;
}

.navbar-nav > li > a { padding: 19px 10px;}

.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
  max-height: 430px;
}


.navbar-brand
{ 
  padding: 0px;
  width: 100%;
  height: 100%
}

@media(max-width:767px) {
  .navbar-brand
  { 
    padding: 5px;
    width: 80%;
  }
    .nav > li { text-align: center;}
}

@media(min-width: 768px) and (max-width: 1200px) {
  .logo {  right:0;}
  .logo img{  display: none;}
   .logo { 
    width:68px;
    height:68px;
    background:url(../images/nur-logo_herrmanns-von-der-heide.png);
   }
}

@media(min-width:768px) {
  .navbar {
    padding: 20px 0;
    -webkit-transition: background .5s ease-in-out,padding .5s ease-in-out;
    -moz-transition: background .5s ease-in-out,padding .5s ease-in-out;
    transition: background .5s ease-in-out,padding .5s ease-in-out;
  }
  .top-nav-collapse {
    padding: 0;
  }
  header.large li{
    padding-top: 10px;
  }

  header.large img{
    /* width: 100%; */
    max-height: 78px;
  }

  header.small img{ 
    /* width: 100%; */
    height: 54px;
    padding-top: 4px;
  }
}

/* Logo - schrumpfen */

header, img, li{
  transition: all 1s;
  -moz-transition: all 1s; /* Firefox 4 */
  -webkit-transition: all 1s; /* Safari and Chrome */
  -o-transition: all 1s; /* Opera */
}



/* --------- Header --------- */

.site-wrapper {
  background-size: cover;
  color:#b2bbce;
  text-align: center;
  display: table;
  width: 100%;
  height: 100%; /* For at least Firefox */
  min-height: 100%;
  background-image: url(../images/header.jpg);
  background-position: center;
}

.site-wrapper-inner {
  display: table-cell;
  vertical-align: middle;
}

.cover-container {
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 10px 0px rgba(128,128,128,1);
  -moz-box-shadow: 0px 2px 10px 0px rgba(128,128,128,1);
  box-shadow: 0px 2px 10px 0px rgba(128,128,128,1);
}

/*.inner {  padding: 30px;}*/
.inner img { margin: 0 auto; padding: 30px 40px 40px 40px;}

/*.cover {  padding: 0 20px;}*/

@media (min-width: 768px) {
  .cover-container { width: 100%;}
}

@media (min-width: 992px) {
  .cover-container { width: 500px;}
}

/* --------- Sections --------- */

section { margin-top: 120px;}

.lead { 
  /*background-color: #266bb0;
  color:#fff;
  padding: 20px 5px; 
  text-align: center;*/
}

/* Team */

.team .row { margin: 0px;}

.team ul { text-align: center;}
.name {  font: 18px/1.2 "Source Sans Pro", Helvetica, Arial, sans-serif;}

.filtr-item {
    padding: 1rem;
}

.item-desc {  
    bottom: 1rem;
    position: absolute;
    z-index: 1;
    left: 1rem;
    right: 1rem;
    background-color: rgba(70, 80, 90, 0.9);
    color: white;
    text-align: center;
    padding: 10px 10px 14px 10px;
}

/* Filter controls */
.simplefilter li {
    color: white;
    cursor: pointer;
    display: inline-block;
    padding: 1rem 2rem;
}

/* Filter controls */
.simplefilter li {
    color: white;
    cursor: pointer;
    display: inline-block;
    padding: 1rem 2rem;
}
.simplefilter li {
    background-color: rgba(70, 80, 90, 0.9);
    margin-bottom: 4px;
}
.simplefilter li.active {
    background-color: #266bb0;
}

/* Partner */

.border { 
  border: 1px solid; 
  border-color: rgba(225, 225, 225, 0.9);
  margin-bottom: 15px;
}

.partner-info {
    background-color: rgba(70, 80, 90, 0.9);
    color: white;
    text-align: center;
    padding: 10px 10px 14px 10px;
}

/* Kontakt */

.kontakt { text-align: center;} 


@media (max-width: 767px) { 
  section { margin-top: 40px;}
  .simplefilter li { padding: 6px;}
}


/* --------- Trenner --------- */

.trenner
{ 
  background-image: url(../images/trenner.jpg);
  background-size: cover;
  color:#fff;
  padding: 120px 0;
  text-align: center;
}

.trenner p
{
	font-weight:bold;
}


.trenner a
{
	text-decoration:none;
}


.trenner h2, .trenner h3, .trenner h4, .trenner h5, .trenner h6 { 
  color:#fff;
  margin: 0 0 20px 0;
}

.trenner .row { margin: 0;}

.trenner img, .padding img { margin: 0 auto;}

section.trenner:last-child {
  margin-bottom: 0;
}

section.trenner h2::after {  
    margin-bottom: 40px;
    font-size: 20px;
    background-color: #FFF;  
    content: "";  
    display: block;  
    height: 1px;  
    margin: 0.4em auto 0 auto;  
    position: relative;  
    width: 30%;  
}

section.trenner p
{
  margin-bottom: 40px;
  /*font-weight: 300;*/
}

section.trenner p:last-child
{
  margin-bottom: 0;
}

section.trenner.content
{
  padding: 40px 0;
}

section.trenner.parallax
{
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

section.trenner.parallax-1 
{
  background-image: url(../images/trenner.jpg);
  background-size: cover;
}

@media (max-width: 767px) { 
  .trenner { padding: 40px 0;}

  section.trenner h2 {
    font-size: 36px;
  }
  section.trenner p {
    font-size: 18px;
  }
  section.trenner.parallax h1 {
    font-size: 26px;
  }
}
@media all and (min-width: 960px) {
  section.trenner.parallax h1 {
    font-size: 20px;
  }
}

/* --------- Kontakt --------- */

.formgen
{
    display: block;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    text-align: left;
}

.formsubmit
{
 float: right;
}

.formgen .formhinweis
{
  margin-bottom: 0.5em;
}
  
.formgen .formtext {
    border: 1px solid #5a6774;
    height: 30px;
    padding: 0;
    width: 100%;
    margin-bottom: 15px;
    clear: both;
    padding:5px;
    border-radius: 4px;
}

.formgen .formselect
{
    border: 1px solid #5a6774;
    height: 30px;
    padding: 0;
    width: 100%;
    margin-bottom: 15px;
    border-radius: 4px;
}

.forminfo
{
    color: #80000d;
    background-color: #f2dede;
    font-size: 1.2em;
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
}

.formgen textarea
{
    border: 1px solid #5a6774;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 4px;
}

.formgen label
{
  margin-right: 20px;
  margin-bottom: 0.5em;
	font: 20px/1.7 "Source Sans Pro", Helvetica, Arial, sans-serif;
}

.formgen label.formerror
{
  color: #900;
}

.formgen input[type="text"]:focus, .formgen input[type="text"]:hover, .formgen textarea:focus, .formgen textarea:hover, .formgen input[type="text"]:focus, .formgen input[type="text"]:hover, .formgen textarea:focus, .formgen textarea:hover {
    background-color: #FFF;
}

.formgen input[type="submit"]
{
	border: none;
  padding: 8px;
/*  text-transform: lowercase;*/
  color: #FFF;
  margin-bottom: 10px;
  background-color: #1d64b0;
  font-size:18px;
  border-radius: 4px;
}

/* --------- Scroll - Button --------- */

.scroll-up {
    bottom: 7px;
    display: none;
    position: fixed;
    right: 7px;
    z-index: 999;
}
.scroll-up a {
    background: #266bb0 none repeat scroll 0 0;
    border-radius: 2px;
    color: #fff;
    display: block;
    font-size: 34px;
    height: 38px;
    line-height: 28px;
    opacity: 0.6;
    text-align: center;
    width: 38px;
}
.scroll-up a:hover, .scroll-up a:active {
    color: #fff;
    opacity: 1;
}

.info {
    background-color: #fff;
    border-radius: 5px 0 0 5px;
    bottom: 6%;
    -webkit-box-shadow: -2px 0px 5px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: -2px 0px 5px 0px rgba(0,0,0,0.3);
    box-shadow: -2px 0px 5px 0px rgba(0,0,0,0.3);
    display: none;
    font-size: 18px;
    line-height: 1.5;
    padding: 20px;
    position: fixed;
    right: 0;
    width: 280px;
    z-index: 999;
}

.scroll-up a {
    background: #266bb0 none repeat scroll 0 0;
    border-radius: 2px;
    color: #fff;
    display: block;
    font-size: 34px;
    height: 38px;
    line-height: 28px;
    opacity: 1;
    text-align: center;
    width: 38px;
}

/* --------- Footer --------- */

footer a, footer a:hover { color: #fff;}

footer {
    color: #fff;
    margin-top: 120px;
    background-color: #46505a;
    text-align: left;
    font-size: 16px;
}

footer .row
{
	padding-top: 40px;
	padding-bottom: 30px;
	margin: 0;
}

.alert {
    padding: 5px 15px;
}

#map1, #map2
{
	width: 100%;
	height: 350px;
	border-style: none;
	margin: 0;
	overflow: hidden;
}

#formular
{
	width: 100%;
	height:955px;
	border-style: none;
	margin: 0;
	overflow: hidden;
}

@media (min-width: 767px) {
  #formular
  {
    width: 100%;
    height:890px;
    border-style: none;
		margin: 0;
		overflow: hidden;
  }
}

@media (min-width: 992px) {
  #formular
  {
    width: 100%;
    height:955px;
    border-style: none;
		margin: 0;
		overflow: hidden;
  }
}

@media (min-width: 1200px) {
  #formular
  {
    width: 100%;
    height:760px;
    border-style: none;
		margin: 0;
		overflow: hidden;
  }
}






/* Landscape*/
@media only screen and (min-device-width: 1366px) and (max-device-height: 1024px) and (-webkit-min-device-pixel-ratio: 2)  and (orientation: landscape)
{
    body { font: 2rem/4rem "Source Sans Pro",Helvetica,Arial,sans-serif; }
    #formular
    {
        height: 850px;
    }
}

/* Portrait*/
@media only screen and (min-device-width: 1024px) and (max-device-height: 1366px) and (-webkit-min-device-pixel-ratio: 2)  and (orientation: portrait)
    
{
    body { font: 3rem/6rem "Source Sans Pro",Helvetica,Arial,sans-serif; }
    .navbar-nav > li
    {
        padding-top: 5px;
    }
    .navbar-inverse
    {
         font-size: 2.5rem;
    }
    .simplefilter .btn, .btn
    {
        font-size: 2.5rem;
    }
    h1
    {
        font-size: 6rem;
    }
    h2
    {
        font-size: 5rem;
    }
    .name, .partner-info
    {
        font-size: 2.5rem;
    }
    .item-desc
    {
        bottom: 1rem;
        position: absolute;
        z-index: 1;
        left: 1rem;
        right: 1rem;
        background-color: rgba(70, 80, 90, 0.9);
        color: white;
        text-align: center;
        padding: 0px 10px 5px 10px;
    }
    .trenner p
    {
        font-weight: bold;
        padding: 0 6rem;
    }
    h3, .h3
    {
        font-size: 4rem;
    }
    
    .info
    {
        font-size: 3rem;
        width: 500px;
    }
    
    #formular
    {
        width: 100%;
        height: 1820px;
        border-style: none;
        margin: 0;
        overflow: hidden;
    }
    
    .formgen .formtext
    {
        border: 1px solid #5a6774;
        padding: 0;
        height: auto;
        width: 100%;
        margin-bottom: 15px;
        clear: both;
        padding: 5px;
        border-radius: 4px;
    }
    .formgen label
    {
        margin-right: 20px;
        margin-bottom: 0.5em;
        font-size: 2.5rem;
    }
}



// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) {
	.footer-kontakt
  {
    text-align: center;
		margin-top: 20px;
  }
}

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) {
	.footer-kontakt
  {
    text-align: center;
  }
}

// Large devices (desktops, 992px and up)
@media (min-width: 992px) {
	.footer-kontakt
  {
    text-align: left;
  }
}

// Extra large devices (large desktops, 1200px and up)
@media (min-width: 1200px) {
	.footer-kontakt
  {
    text-align: center;
  }
}




.klaro .cookie-notice .cm-btn.cm-btn-danger
{
    background-color: rgba(181, 29, 40, 1);
}

.klaro .cookie-modal a, .klaro .cookie-notice a {
    color: #FFF;
    text-decoration: underline;
}

.klaro .cookie-notice a {
    display: block;
}