@import url('fonts.css');
@import url('all.min.css');
@import url('animate.css');


/* MAIN */
body {
  background: #e5e5e5;
  color: #666;
  font-family: 'Source Sans Pro', sans-serif;
}


/* TYPOGRAPHY */
h1 {
  color: #ec6707;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 20px;
}
h2 {
  color: #006192;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 20px;
}
h3 {
  color: #006192;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 20px;
}
h4 {
  color: #006192;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 20px;
}
h5 {
  color: #006192;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 20px;
}
h6 {
  color: #006192;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 20px;
}

hr {
  margin: 30px 0;
}

.h-line {
  display: block;
  width: 120px;
  height: 1px;
  background: #ec6707;
  margin: -15px 0 15px 0;
}
.h-line.blue {
  background: #006192;
}
.h-line.white {
  background: #fff;
}
.h-line.grey {
  background: #666;
}

p {
  line-height: 1.8;
  font-size: 20px;
  font-weight: 300;
  text-align: justify;
}

p, h1, h2, h3, ul.ul {
  -moz-hyphens: auto; 
  -o-hyphens: auto; 
  -webkit-hyphens: auto; 
  -ms-hyphens: auto; 
  hyphens: auto; 
}

a {
  color: #006192;
  cursor: pointer;
  font-weight: 600;
}
a:hover,
a:focus {
  color: #ec6707;
  font-weight: 600;
  text-decoration: none;
}

strong, b {
  font-weight: bold;
  color: #ec6707;
}


/* LIST */
ul.ul {
  font-size: 20px;
  color: #006192;
  font-style: italic;
  padding-left: 20px;
}
ul.ul li {
  list-style: square;
  line-height: 2;
  padding-left: 5px;
  font-weight: lighter;
}
ul.ul li small {
  display: block;
}

ul.ul.no-points {
  padding: 0;
}
ul.ul.no-points li {
  list-style: none;
}


/* IMAGES */
.img-fluid {
  max-width: 100%;
}


/* BACKGROUNDS */
.bg-grey {
  padding: 15px;
  background: #e5e5e5;
}


/* BUTTONS */
.btn {
  border-radius: 0;
  border: none;
  text-shadow: none;
  transition: all 0.25s;
  box-shadow: none !important;
  text-shadow: none;
  font-weight: 600;
}
.btn-full {
  width: 100%;
}

.btn-primary,
.btn-colored {
  background: #006192;
  color: #fff;
}
.btn-primary:hover,
.btn-colored:hover {
  background: #014060;
  color: #fff;
}


/* HEADER */
header {
  background: #fff url("../img/logo_transparent.png");
  background-position: center bottom -25px;
  background-repeat: no-repeat;
  background-size: 500px 185px;
  border-bottom: 5px solid #ec6707;
}

header .daten-line {
  background: #006192;
  color: #fff;
  padding: 5px 0;
  text-transform: uppercase;
  font-weight: 600;
}
header .daten-line a {
  color: #fff;
}
header .daten-line a:hover,
header .daten-line a:focus {
  color: #eee;
  text-decoration: underline;
}

header img.logo {
  width: 320px;
  padding: 50px 0 80px 0;
}


.img-header img.img-fluid {
  max-width: 100%;
}


/* NAVIGATION */
.navbar {
  margin-top: -30px;
  padding: 0;
}
.navbar-light {
  background: #ec6707;
}

.navbar-light .navbar-nav .nav-link {
  color: #fff;
  padding: 15px 20px;
  text-transform: uppercase;
  transition: all 0.5s;
  font-weight: 600;
  font-size: 14px;
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link.active {
  color: #ccc;
  background: #006192;
}



/* CONTENT */
main {
  padding: 45px;
  background: #fff;
}


/* FOOTER */
footer {
  background: #014060;
  padding: 45px;
}
footer p, footer a {
  color: #fff;
}
footer p.copyright {
  font-weight: 700;
  margin: 0;
  font-size: 24px;
  line-height: 1;
  padding-top: 15px;
}
footer p.infinitum a {
  font-size: 16px;
  margin: 0;
  line-height: 1;
  padding: 0;
} 
footer img {
  padding-top: 15px;
}
footer img.siegel {
  padding: 0;
  width: 100%;
  max-width: 80px;	  
}
footer h2, footer h3 {
  color: #ec6707;
}

footer .nav .nav-link {
  padding: 5px 15px 5px 0;
}
footer .nav .nav-link.active {
  color: #ec6707;
}
footer .nav .nav-link .fa {
  min-width: 15px;
  transition: all 0.25s;
}
footer .nav .nav-link:hover .fa, 
footer .nav .nav-link.active .fa {
  min-width: 20px;
}



/* FORM */
label {
  font-size: 18px;
  transition: all 0.25s;
  color: #006192;
  font-weight: bold;
}
.form-control {
  border-radius: 0;
  box-shadow: none;
  transition: all 0.25s;
}
.form-control:focus {
  box-shadow: none;
  border-color: #006192;
  color: #006192;
}

.form-group.has-error label { 
  color: #ff0000; 
}
.form-group.has-error input { 
  border: 1px solid #ff0000; 
}
.form-group.has-error textarea { 
  border: 1px solid #ff0000;
}
.has-error .form-control::-webkit-input-placeholder {
  color: #ff0000;
}
.has-error .form-control:-moz-placeholder {
  color: #ff0000;
}
.has-error .form-control::-moz-placeholder {
  color: #ff0000;
}
.has-error .form-control:-ms-input-placeholder {
  color: #ff0000;
}
.has-error .form-control::-webkit-input-placeholder, .has-error .form-control::-webkit-input-placeholder {
  color: #ff0000;
}
.has-error .form-control:-moz-placeholder, .has-error .form-control:-moz-placeholder {
  color: #ff0000;
}

.help-block {
  color: #666;
}
.has-error .help-block {
  color: #ff0000;
}

#danke {
  display: none;
}


/* BOX NAV */
.box-nav {
  margin-top: 30px;
  margin-bottom: 30px;
}
.box-nav .box-nav-item {
  transition: all 0.25s;
  margin-bottom: 15px;
}

.box-nav .box-nav-item img {
  width: 100%;
  display: block;
}

.box-nav .box-nav-item a span,
.box-nav .box-nav-item span {
  background: #e5e5e5;
  color: #006192;
  text-align: center;
  display: block;
  width: 100%;
  padding: 30px 15px;
  font-size: 22px;
}
.box-nav .box-nav-item:hover, 
.box-nav .box-nav-item:hover a {
  transform: scale(0.9);
  text-decoration: none;
}


/* ANFAHRT */
.map {
  border: 2px solid #ec6707 !important;
}


/* VERMIETUNG */
.vermietung-row {
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc;
}
.vermietung-row:last-child {
  border-bottom: none;
}

.vermietung-img {
  width: 100%;
  border-top-right-radius: 15px; 
  border-bottom-right-radius: 15px; 
}

.vermietung-row .beschreibung {
  min-height: 100px;
  font-size: 18px;
}


/* REFERENZEN */
.referenz-item {
  padding: 15px;
  background: #f5f5f5;
  margin-bottom: 15px;
  min-height: 157px;
}
.referenz-item h3 {
  color: #666;
  font-size: 20px;
}
.referenz-item p {
  font-size: 18px;
  text-align: left !important;
}

.referenz-item:nth-child(odd) {
  background: #e5e5e5;
}

.referenz-item:last-child {
  border-bottom: none;
}

/*
.referenz-item {
  padding: 15px;
  color: #fff;
  background: #006192;
  transition: all 0.25s;
  margin-bottom: 5px;
  min-height: 175px;
}
.referenz-item:nth-child(odd) {
  background: #ec6707;
}
*/


/* FUHRPARK */
.fuhrpark-item {
  margin-bottom: 15px;
}
.fuhrpark-item .fuhrpark-img {}
.fuhrpark-item span {
  font-weight: bold;
  margin: 0;
  padding: 15px;
  text-align: center;
  background: #e5e5e5;
  color: #006192;
  display: block;
}

/* ccm19 */
.ccm-settings-summoner {
  display: none !important;
}


/* +++++ MEDIA QUERIES +++++ */
@media (max-width: 575.98px) {
  /* FOOTER */
  footer img.siegel {
    width: 200px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  /* FOOTER */
  footer {
    padding: 45px 30px;
  }
  footer p.copyright {
    margin-top: 30px;
  }
  
  /* VERMIETUNG */
  .vermietung-img {
    border-top-right-radius: 0px;
    border-bottom-left-radius: 15px;
    margin-bottom: 15px;
  }
  
  /* CONTENT */
  main {
    padding: 30px;
  }
}

@media (max-width: 991.98px) {
  /* NAVIGATION */
  .navbar {
    padding: 5px 20px;
  }
  .navbar-light .navbar-brand {
    color: #fff !important; 
    font-weight: bold;
  }
  
  .navbar-light .navbar-toggler {
    border: none;
    color: #fff;
    padding: 5px 15px;
  }
  
  /* HEADER */
  .daten-line-txt-center {
    text-align: center !important;
  }
}

@media (max-width: 1199.98px) {}