/*
  +++ LOGO FARBEN +++
  BLAU:   #009fe3
  ROT:    #e3051b
*/
@import url("all.css");
@import url("animate.css");
@import url("lightbox.css");


/*
    MAIN SETTINGS
*/
html,body {
  height: 100%;
}
body { 
  font-size: 20px;
  font-family: 'Raleway', sans-serif;
  color: #555;
  background: #fff;
}


/*
    TYPOGRAPHY
*/
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  margin: 30px 0;
  color: #e3051b;
}
h1 {
  color: #009fe3;
}

p {
  margin: 15px 0;
  line-height: 1.8;
  text-align: justify;
  
  -moz-hyphens: auto; 
  -o-hyphens: auto; 
  -webkit-hyphens: auto; 
  -ms-hyphens: auto; 
  hyphens:auto; 
}

a {
  color: #009fe3;
  cursor: pointer;
  text-decoration: none;
}
a:hover {
  color: #e3051b;
  cursor: pointer;
  text-decoration: none;
}

small {
  display: block;
}


/*
    MAP
*/
#map {
  height: 400px;
  width: 100%;
}


/*
    ANIMATE
*/
.animated {
  animation-duration: 0.5s;
}


/*
    LIST
*/
ul.ul {
  list-style-image: url(../img/list.png);
  font-size: 18px;
  line-height: 1.8;
  padding-left: 20px; 
}


/*
    BUTTONS
*/
.btn {
  border-radius: 15px 0 15px 0;
  box-shadow: none !important;
  border: none;
  transition: all .25s;
  font-weight: 400;
}

.btn-primary {
  background: #009fe3;
  color: #fff;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #007eb4;
  color: #fff;
}


/*
    PORTRAIT
*/
.portrait {
  border-radius: 15px 0 15px 0;
  border: 5px solid #fff;
}


/*
    NAVIGATION
*/
.navbar {
  background: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  z-index: 1000;
  border-radius: 15px 0 15px 0;
}
.navbar .navbar-brand .logo  {
  width: 160px;
  transition: all .25s;
  margin-right: 15px;
}

.navbar-nav .nav-link {
  padding: 10px 15px !important;
  transition: all .25s;
  margin-left: 5px;
  font-weight: 400;
  font-size: 18px;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #e3051b;
  border-bottom-color: #e3051b;
}
.navbar-nav .nav-link i {
  margin-right: 5px;
  text-align: left;
}

.navbar .nav-image {
  width: auto;
}
.navbar .nav-image .portrait {
  width: 180px;
  display: inline-block;
  vertical-align: middle;

  transition: all .25s;
  
  position: absolute;
  right: 0;
  top: -30px;
}

.navbar.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 0 15px 0 rgba(0,0,0,0.5);
  border-radius: 0;
}
.navbar.fixed-top .navbar-brand .logo {
  width: 100px;
}

.navbar-toggler {
  border: none;
  color: #009fe3 !important;
  font-size: 32px;
}

.navbar > .container, .navbar > .container-fluid {
  position: relative;
}



/*
    SECTION
*/
section {
  padding: 60px 0;
  display: block;
  position: relative;
  
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

section.bg-red {
  background: #e3051b;
  color: #fff;
}
section.bg-red h1,
section.bg-red h2,
section.bg-red h3,
section.bg-red h4 {
  color: #fff;
}
section.bg-blue {
  background: #009fe3;
  color: #fff;
}
section.bg-blue h1,
section.bg-blue h2,
section.bg-blue h3,
section.bg-blue h4 {
  color: #fff;
}
section.bg-blue a {
  color: #fff;
  text-decoration: underline;
}
section.bg-blue a:hover {
  color: #ccc;
}


section#start {
  min-height: 100%;
  background-image: url(../img/startSection.jpg);
}
section#start .nextSection {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 42px;
  text-align: center;
  padding: 5px 20px 5px 20px;
  background: #009fe3;
  color: #fff;
  display: inline-block;
  transition: all .25s;
  box-shadow: 0 0 15px 0 rgba(0,0,0,0.5);
  z-index: 500;
  border-radius: 15px 0 15px 0;
}
section#start .nextSection:hover {
  padding: 10px 20px 0px 20px;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.25);
}

section#start .centered {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 400;
} 
section#start .centered .start-logo {
  width: 400px;
}

.colored-container {
  position: absolute;
  top: 55px;
  right: 55px;
  bottom: 55px;
  left: 55px;
  z-index: 1;
  background: rgba(255,255,255,0.1);
}


/*
    FOOTER
*/
footer {
  padding: 45px 0;
  background: #009fe3;
  color: #fff;
}
footer a {
  color: #fff;
}
footer a:hover,
footer a:focus {
  color: #ccc;
}

footer .top {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 42px;
  text-align: center;
  padding: 5px 20px 5px 20px;
  background: #009fe3;
  color: #fff;
  display: inline-block;
  transition: all .25s;
  z-index: 500;
  margin-top: -85px;
  border-radius: 15px 0 15px 0;
}
footer .top:hover {
  color: #fff;
  padding: 0px 20px 10px 20px;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.25);
}


/*
    PARALLAX
*/
.parallax {
  padding: 120px 0;
  height: 300px;
  
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax.parallax-img01 {
  background-image: url(../img/startSection2.jpg);
}


/*
    MODAL
*/
.modal-content {
  border-radius: 15px 0 15px 0;
}
.modal-header {
  border-radius: 15px 0 0 0;
  padding: 30px;
  
}
.modal-footer {
  border-radius: 0 0 15px 0;
  padding: 30px;
}
.modal-body {
  border-radius: 0;
  padding: 30px;
}
.modal-header .modal-title {
  margin: 0;
}

.close {
  color: #009fe3 !important;
  font-size: 32px;
  padding: 15px !important;
  outline: none !important;
}


/*
    FORM
*/
.form-control {
  border-color: transparent;
  box-shadow: none !important;
  background: #009fe3;
  color: #fff;
  height: 45px;
  transition: all .25s;
  border-width: 2px;
  border-radius: 15px 0 15px 0;
}
.form-control::-webkit-input-placeholder {
  color: #ffff;
}
.form-control:-moz-placeholder {
  color: #ffff;
}
.form-control::-moz-placeholder {
  color: #ffff;
}
.form-control:-ms-input-placeholder {
  color: #ffff;
}
.form-control::-webkit-input-placeholder, 
.form-control::-webkit-input-placeholder {
  color: #ffff;
}
.form-control:-moz-placeholder, 
.form-control:-moz-placeholder {
  color: #ffff;
}
.form-control:focus {
  background: #e3051b;
  color: #fff;
  border-color: transparent;
}


.form-group.has-error label { 
  color: #e3051b; 
}
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select { 
  border-color: #e3051b; 
}

.help-block {
  color: #555;
}
.has-error .help-block {
  color: #e3051b;
}


#danke {
  display: none;
}


/*
    MAP
*/
#map {
  width: 100%;
  height: 400px;
}





@media (max-width: 1199.98px) {
  /*
      NAVIGATION
  */
  .navbar .navbar-brand .logo  {
    width: 140px;
  }
  
  /*
      PARALLAX
  */
  .parallax {
    padding: 120px 0;
    height: 240px;

    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .parallax.parallax-img01 {
    background-image: url(../img/startSection2_s.jpg);
  }
}
@media (max-width: 991.98px) {
  /*
      NAVIGATION
  */
  .navbar {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
  }
  .navbar .navbar-brand .logo  {
    width: 100px;
  }
  .navbar-nav .nav-link {
    margin-left: 0;
    border-top: none;
    border-bottom: none;
    border-left: 2px solid transparent;
  }
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: #e3051b;
    border-left-color: #e3051b;
  }
  
  
  /*
      SECTION
  */
  section {
    padding: 15px 0;
  }
  section#start {
    background-image: url(../img/startSection_s.jpg);
  }
}
@media (max-width: 767.98px) {}
@media (max-width: 575.98px) {}











