/*
 *  ++ FARBEN ++
 *  Blau--------#00427a
 *  Rot/Orange--#a23600
*/

/* fonts */
@import url(https://use.fontawesome.com/releases/v5.6.3/css/all.css);
@import url('font.css');


/* css */
@import url(animate.css);
@import url(lightbox.css);


/* main style */
body {
  padding: 0;
  margin: 0;
  background: #111;
  background-attachment: fixed;
  background-position: center;
  background-size: auto;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
}


/* typography */
h1, h2, h3, h4, h5, h6 {
  color: #a23600;
  font-weight: bold;
  margin: 0 0 30px 0;
  text-transform: uppercase;
}

.special {
  font-weight: lighter;
}

p {
  line-height: 2;
  margin: 0 0 15px 0;
  text-align: justify;
}

a {
  color: #00427a;
  cursor: pointer;
}
a:hover,
a:focus {
  color: #0062b6;
  text-decoration: none;
}

small  {
  display: block;
}

hr {
  border: none;
  height: 2px;
  background: #222;
  margin: 30px 0;
}
hr.w75 {
  width: 75%;
}

ul.ul {
  margin: 0 0 15px 0;
}
ul.ul li {
  line-height: 2.5;
  list-style-type: square;
}

ul.styled {
  list-style-image: url(../img/ulCheck.png);
}


/* button */
.btn {
  border-radius: 0;
  border: none;
  box-shadow: none !important;
  transition: all 0.25s;
  margin-bottom: 15px;
}

.btn-full {
  width: 100%;
}

.btn-colored {
  background: #00427a;
  color: #fff;
}
.btn-colored:hover,
.btn-colored:focus {
  background: #003562;
  color: #fff;
}


/* header */
header .container {
  min-height: 400px;
}

header .header-txt {
  position: absolute;
  background: #111;
  font-size: 16pt;
  padding: 15px 25px 15px 50px; 
  left: 0;
  bottom: 45px;
  z-index: 10;
  text-align: center;
  color: #fff;
}
header .header-txt small {
  display: block;
  font-size: 65%;
  color: #666;
  text-align: right;
}
header .header-txt i.fa {
  position: absolute;
  font-size: 45pt;
  left: 15px;
  top: -15px;
  z-index: -1;
  color: #a23600;
}

.fader {
  min-height: 500px;
}
.img-fader {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
}


.header {
  height: 300px;
  background-image: url(../img/fader/slider001.jpg);
  background-attachment: scroll;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  
  filter: blur(15px);
}


/* nav */
.navbar.bg-light {
  background-color: rgba(33, 33, 33,0.75) !important;
  transition: all 0.5s ease-in-out;
}

.navbar {
  transition: all 0.5s ease-in-out; 
}

.navbar-light .navbar-nav .nav-link {
  color: #aaa;
  font-size: 12pt;
  padding: 15px 15px 5px 15px;
  font-weight: 500;
  text-transform: uppercase;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus, 
.navbar-light .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar .navbar-brand img {
  height: 80px;
  transition: all 0.5s ease-in-out;
}

.navbar.set {
  box-shadow: 0 10px 15px 0 rgba(0,0,0,0.75);
}
.navbar.bg-light.set {
  background-color: #111 !important; 
}
.navbar.set .navbar-brand img {
  height: 60px;
}

.navbar-light .navbar-toggler {
  border: none !important;
  color: #fff;
  font-size: 35px;
}


/* content */
.container-fluid {
  padding-left: 0;
  padding-right: 0;
}
.container-outBox {
  width: 100%;
  height: auto;
  position: relative;
  margin: 0 auto;
  background: #111;
}
.main {
  padding: 30px 15px;
}

section.colored {
  background: #00427a;
  color: #fff;
}
section.colored h1, section.colored h2, section.colored h3, section.colored h4, section.colored h5, section.colored h6 {
  color: #fff;
}

.schraege {
  position: relative;
  background: #111;
  width: 100%;
  height: 100px;
  transform: skewY(-1deg);
  -moz-transform: skewY(-1deg);
  -webkit-transform: skewY(-1deg);
  box-shadow: 0 -15px 0 0 rgba(33,33,33,0.75);
  margin-bottom: -60px;
}


/* footer */
footer {
  background: #111;
  color: #fff;
  padding: 60px 0;
  box-shadow: inset 0 45px 30px 0 rgba(0,0,0,0.5);
  position: relative;
  z-index: 200;
}

footer img {
  margin: 0 0 30px 0;
}

.copyright {
  margin-top: -15px;
  color: #888;
  line-height: 1.5;
  font-weight: bold;
  font-size: 16pt;
}

.top {
  padding: 15px 25px 0 25px;
  margin-top: 30px;
  background: #222;
  font-size: 25pt;
  color: #111;
  transition: all 0.5s ease-in-out;
}
.top:hover {
  background: #333;
  color: #111;
}


/* sonstiges */
.m-right {
  margin-right: 5px;
}
.m-left {
  margin-left: 5px;
}

.nav-link {
  color: #fff;
  padding: 0 15px 0 15px;
  line-height: 2;
}
.nav-link:hover {
  color: #888;
}


/* form */
.form-control {
  border-radius: 0;
  border: none;
  line-height: 2.5;
  background: #000;
  border-bottom: 1px solid #666;
  padding: 5px 15px;
  transition: all 0.25s;
}
.form-control:focus {
  box-shadow: none;
  background: #000;
  border-color: #fff;
  padding: 5px 15px 5px 20px;
}

.form-group {
  margin: 30px 0;
  display: block;
}

.mail_status {
  font-size: 18px;
  padding: 15px;
  background: #000;
}



/*
 *
 *  MEDIA QUERIES (RESPONSIVE DESIGN)
 *
*/
@media (max-width: 575.98px) { 
  /* header */
  header .header-txt {
    font-size: 14pt;
    left: 15px;
    right: 15px;
  }
}

@media (max-width: 767.98px) {
  
}

@media (max-width: 991.98px) { 
  /* nav */
  .navbar.bg-light {
    background-color: #111 !important;
  } 
  .navbar-collapse {
    max-height: 300px;
    overflow-y: auto;
  }
  
  /* header */
  header {
    background: url(../img/header.jpg);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
  }
  
  .header {
    height: 200px;
  }
}

@media (max-width: 1199.98px) {
  /* nav */
  .navbar .navbar-brand img {
    height: 60px;
  }
  .navbar-light .navbar-nav .nav-link {
    padding: 15px 15px 5px 15px;
  }
}