/* === FARBEN === */

/*
Gold:         #957710
Hell Grau:    #e4ddd7
Dunkel Grau:  #3D3F45
Rot:          #d50e0c    alt:#ff0000
Schwarz:      #000
*/

/* === GLOBAL === */

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: helvetica, tahoma, verdana, sans-serif;
  background-color: #000;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (max-width: 1366px) {

  section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

}

@media (max-width: 1024px) {

  section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

}

@media (max-width: 768px) {

  section {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }

}

:focus {
  outline: none;
  -webkit-box-shadow: 0 0 2px 2px #F0F0F0, 0 0 10px #F0F0F0;
          box-shadow: 0 0 2px 2px #F0F0F0, 0 0 10px #F0F0F0;
}

/* === GENERELLES === */

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.wichtiger-text {
  font-weight: bold;
}

.screenreader {
  display: none;
}

.intro-container {
  text-align: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.intro-container > h1 {
  font-size: 1.6rem;
  text-transform: uppercase;
}

.intro-container > p {
  font-size: 1.2rem;
}

@media (max-width: 1366px) {

  .intro-container {
    width: 90%;
  }

  .intro-container > p {
    margin-bottom: .5rem;
  }

}

@media (max-width: 1024px) {

  .intro-container {
    width: 100%;
  }

  .intro-container > p {
    margin-bottom: 0;
  }

}

@media (max-width: 1024px) {

  .intro-container {
    margin-bottom: 1rem;
  }

}


/* === NAVIGATIONSLEISTE === */

#header-nav {
  width: 100%;
  height: 90px;
  position: relative;
  font-weight: bold;
  font-size: 1.1rem;
  border-bottom: 3px solid #d50e0c!important;
}

#header-nav a > img {
  height: 85px;
  width: auto;
  /* margin: .55rem; */
  float: left;
}

#header-nav ul {
  margin: 0;
  padding: 0;
  float: right;
  height: 100%;
}

#header-nav ul > li {
  display: inline-block;
  height: 100%;
  padding: 0 1.8rem 0 1.8rem;
}

#header-nav ul > li > a {
  margin-top: 2rem;
  display: inline-block;
}

#header-nav ul > li > a:link {
  color: #d50e0c;
  text-decoration: none;
}

#header-nav ul > li > a:visited {
  color: #d50e0c;
  text-decoration: none;
}

#header-nav ul > li > a:active {
  color: #d50e0c;
  text-decoration: none;
}

#header-nav ul > li > a:hover {
  color: #957710;
  text-decoration: none;
}

#header-nav .col-6 {
  padding-top: 0;
  padding-bottom: 0;
}

#header-nav .container,
#header-nav .row,
#header-nav .col-6 {
  height: 100%;
}

.logo-link {
  display: inline-block;
}

/* === BUTTONS === */

.btn-typ-1 {
  background-color: #d50e0c;
  border: 2px solid #d50e0c;
  color: #e4ddd7;
  padding: .4rem .6rem;
  -webkit-transition: border .5s ease-in-out;
  transition: border .5s ease-in-out;
}

.btn-typ-1:hover {
  border: 2px solid #e4ddd7;
  font-weight: normal;
}

.btn-typ-2 {
  background-color: #e4ddd7;
  border: 2px solid #e4ddd7;
  color: #000;
  padding: .4rem .6rem;
  -webkit-transition: color .5s ease-in-out, border .5s ease-in-out;
  transition: color .5s ease-in-out, border .5s ease-in-out;
}

.btn-typ-2:hover {
  color: #A62C21;
  border: 2px solid #A62C21;
  font-weight: normal;
}

.btn-typ-3 {
  background-color: #3D3F45;
  border: 2px solid #3D3F45;
  font-size: 1rem;
  color: #e4ddd7;
  padding: .4rem .6rem;
  -webkit-transition: border .5s ease-in-out;
  transition: border .5s ease-in-out;
}

.btn-typ-3:hover {
  border: 2px solid #A62C21;
  font-weight: normal;
}



/* === NAVIGATIONSLEISTE (MOBIL) === */

#mobile-nav-button {
  color: #d50e0c;
  float: right;
  font-size: 2rem;
  border: 2px solid #d50e0c;
  width: 37px;
  height: 37px;
  position: relative;
  margin-top: 1rem;
  margin-bottom: .5rem;
}

#mobile-nav-button > span {
  position: absolute;
  top: -4px;
  left: 4px;
}

#mobile-nav-content > ul > li {
  display: block;
  background-color: #e4ddd7;
  height: 60px;
  padding: 0 1.2rem;
  text-align: center;
}

#mobile-nav-dropdown {
  position: relative;
  display: inline-block;
  float: right;
}

#mobile-nav-content {
  position: absolute;
  right: 0;
  top: 50px;
  display: none;
}

#mobile-nav-dropdown:hover > #mobile-nav-content {
  display: block;
}

#mobile-nav {
  display: none;
}

@media (max-width: 1383px){
  #header-nav ul > li {
    padding: 0 0.8rem 0 0.8rem;
  }
}

@media (max-width: 1242px){
  #header-nav a > img {
    height: 55px;
    margin: .75rem;
  }
}


@media (max-width: 1000px) {

  #desktop-nav {
    display: none;
  }

  #mobile-nav {
    display: block;
  }

}

/* === HEADER-BANNER === */

#header-banner {
  width: 100%;
  height: 0;
  padding-top: 23.43%; /*20.83%;*/
  background: url("../img/hintergrund_c.jpg") no-repeat;
  background-size: contain;
  border-bottom: 3px solid #d50e0c!important;
}

#header-banner-klein-c {
  width: 100%;
  height: 0;
  padding-top: 15.625%;
  background: url("../img/hintergrund_c2.jpg") no-repeat;
  background-size: contain;
  border-bottom: 3px solid #d50e0c!important;
}

#header-banner-klein-d {
  width: 100%;
  height: 0;
  padding-top: 15.625%;
  background: url("../img/hintergrund_d.jpg") no-repeat;
  background-size: contain;
  border-bottom: 3px solid #d50e0c!important;
}

#header-banner-klein-e {
  width: 100%;
  height: 0;
  padding-top: 15.625%;
  background: url("../img/hintergrund_e.jpg") no-repeat;
  background-size: contain;
  border-bottom: 3px solid #d50e0c!important;
}
#header-banner-klein-f {
  width: 100%;
  height: 0;
  padding-top: 15.625%;
  background: url("../img/hintergrund_f.jpg") no-repeat;
  background-size: contain;
  border-bottom: 3px solid #d50e0c!important;
}
/* === FOOTER === */

#footer {
  background-color: #000;
  height: 2.8rem;
  color: #e4ddd7;
  border-top: 3px solid #957710!important;
}

#footer a {
  text-decoration: none;
  color: #d50e0c;
}
#footer-nav {
  display: inline-block;
  float: right;
}

#footer-nav a {
  text-decoration: none;
}

#footer-nav a:link {
  color: #d50e0c;
}

#footer-nav a:visited {
  color: #d50e0c;
}

#footer-nav a:active {
  color: #d50e0c;
}

#footer-nav a:hover {
  color: #957710;
}

@media (max-width: 565px) {

  #footer span {
    display: none;
  }

}

/* === KontaktInfo-BEREICH === */
#kontaktinfo-bereich{
  width: 100%;
  background-color: transparent;
  padding-bottom: 0;
  padding-top: 0;
}

#ki-text{
  color: #e4ddd7;
}

#ki-text a {
  text-decoration: none;
  color: #e4ddd7;
}

.kontaktinfo-container {
  text-align: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0rem;
}

.kontaktinfo-container > p {
  font-size: 1.2rem;
}
/* === INTRO-BEREICH === */

#service-bereich {
  background-color: #000;
  color: #e4ddd7;
}

.service-box {
  text-align: center;
  width: 100%;
}

.service-box h1 {
  font-size: 1.4rem;
}
.service-button {
  margin-bottom: 5rem;
}
#service-bereich .row:nth-of-type(2) > .col-2:first-of-type > .service-box {
  margin-right: 0;
  margin-left: auto;
}

#service-bereich .row:nth-of-type(2) > .col-2:nth-of-type(2) > .service-box {
  margin-left: auto;
  margin-right: auto;
}

.service-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}

.service-icon:hover {
  -webkit-transform: rotateZ(360deg);
          transform: rotateZ(360deg);
}

#handshake-icon {
  background: #3D3F45 url("./../img/services-icons-gac.png") left 0 top 0;
}
#handshake-icon-white {
  background: #3D3F45 url("./../img/services-icons-white.png") left 0 top 0;
}

#lupe-icon {
  background: #3D3F45 url("./../img/services-icons-gac.png") left -120px top 0;
}
#lupe-icon-white {
  background: #3D3F45 url("./../img/services-icons-white.png") left -120px top 0;
}

#werkzeug-icon {
  background: #3D3F45 url("./../img/services-icons-gac.png") left -240px top 0;
}
#werkzeug-icon-white {
  background: #3D3F45 url("./../img/services-icons-white.png") left -240px top 0;
}

#feuerloescher-icon {
  background: #3D3F45 url("./../img/services-icons-gac.png") left -360px top 0;
}
#feuerloescher-icon-white {
  background: #3D3F45 url("./../img/services-icons-white.png") left -360px top 0;
}

#zahnraeder-icon {
  background: #3D3F45 url("./../img/services-icons-gac.png") left -480px top 0;
}
#zahnraeder-icon-white {
  background: #3D3F45 url("./../img/services-icons-white.png") left -480px top 0;
}

@media (max-width: 768px) {

  #service-bereich > .container > .row:nth-of-type(2) > .col-2 > .service-box {
    margin-right: auto;
    margin-left: auto;
  }

}

@media (max-width: 480px) {

  .service-box {
    width: 100%;
  }

}



/* === LEISTUNGEN-SEITE === */

.leistung {
  padding-top: 2rem;
  padding-bottom: 4rem;
  color: #e4ddd7;
}

.leistung:nth-of-type(even) {
  background-color: #e4ddd7;
  color: #000;
}

.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-container > .intro-container {
  width: 100%;
}

.leistungs-box {
  background-color: #3D3F45;
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  color: #e4ddd7;
  padding: 2rem 2rem;
  text-align: left;
  min-height: 520px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: start;
}

.leistungs-box:hover {
  /* -ms-flex-preferred-size: 27.5%;
      flex-basis: 27.5%; */
  /* min-height: 450px; */
  -webkit-box-shadow: 0 0 20px 0 #d50e0c;
          box-shadow: 0 0 20px 0 #d50e0c;
  font-size: 1.05rem;
}
/* .leistungs-box-empfohlen {
  -ms-flex-preferred-size: 27.5%;
      flex-basis: 27.5%;
  min-height: 450px;
  -webkit-box-shadow: 0 0 20px 0 #3D3F45;
          box-shadow: 0 0 20px 0 #3D3F45;
  font-size: 1.05rem;
} */

.leistungs-box h1 {
  margin-bottom: 0;
}

.leistungs-box ul {
  padding: 0;
}

.leistungs-box ul > li {
  list-style-position: inside;
  margin-bottom: .5rem;
}

.leistung-auswählen-btn {
  width: 50%;
  height: 2.5rem;
  font-size: 1rem;
  margin-top: .5rem;
  min-width: 170px;
}

@media (max-width: 1782px) {

  .leistungs-box {
    -ms-flex-preferred-size: 27.5%;
        flex-basis: 27.5%;
  }

  .leistungs-box-empfohlen {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
  }

}

@media (max-width: 1622px) {

  .leistungs-box {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
  }

  .leistungs-box-empfohlen {
    -ms-flex-preferred-size: 32.5%;
        flex-basis: 32.5%;
  }

}

@media (max-width: 1488px) {

  .leistungs-box {
    padding: 1rem 2rem;
  }

  .flex-container {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .leistungs-box-empfohlen {
    min-height: initial;
  }

}

@media (max-width: 1366px) {

  .flex-container {
    width: 90%;
  }

}

@media (max-width: 1088px) {

  .flex-container {
    width: 80%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }

  .leistungs-box {
    padding: 2rem 4rem;
    margin-bottom: 2rem;
    min-height: initial;
  }

}

@media (max-width: 1024px) {

  .flex-container {
    width: 100%;
    padding-right: 4rem;
    padding-left: 4rem;
  }

}

@media (max-width: 768px) {

  .flex-container {
    width: 90%;
  }

}

@media (max-width: 409px) {

  .leistungs-box {
    padding: 1rem 2rem;
  }

}

@media (max-width: 338px) {

  .leistungs-box {
    padding: .5rem 1rem 2rem 1rem;
  }

}

/* === KONTAKT-SEITE === */

#kontakt-bereich {
  padding-top: 1rem;
  color: #e4ddd7;
}

#kontakt-formular input,
#kontakt-formular textarea {
  width: 100%;
  border: 2px solid #e4ddd7;
  padding: .5rem;
  font-size: 1rem;
  font-family: 'Raleway', 'Lato', 'Helvetica Neue', 'Arial', sans-serif;
  color: #000;
  -webkit-transition: border .5s ease-in-out;
  transition: border .5s ease-in-out;
}

#kontakt-formular textarea {
  height: 100px;
}

#kontakt-formular input:hover,
#kontakt-formular textarea:hover {
  border: 2px solid #A62C21;
}

#absendenButton {
  width: 150px;
  height: 39px;
}

#kontakt-formular {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}

#email2 {
  visibility: hidden;
}

@media (max-width: 1366px) {

  #kontakt-formular {
    width: 90%;
  }

}

@media (max-width: 1024px) {

  #kontakt-formular {
    width: 100%;
  }

}

@media (max-width: 768px) {

  #kontakt-formular button {
    width: 100%;
  }

}

/* === ÜBER-UNS-BEREICH === */

#über-uns-bereich {
  background-color: #000;
  color: #e4ddd7;
  padding-bottom: 2rem;
}

#über-uns-container, #privat-container {
  position: relative;
  width: 85%;
  margin-right: auto;
  margin-left: auto;
}

#über-uns-container p {
  margin-top: 0;
}

#über-uns-container > img {
  position: absolute;
  top: 0;
  right: 0px;
  height: 100%;
}

#über-uns-container > p {
  width: 75%;
  font-size: 1.2rem;
}

#über-uns-container > ul {
  width: 75%;
  font-size: 1.2rem;
  line-height: 1.3;
}

.privates {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #e4ddd7;
  color: #000;
}

#privat-container > p {
  /* width: 75%; */
  font-size: 1.2rem;
}

@media (max-width: 1440px) {

  #über-uns-container > img {
    right: 20px;
  }

}

@media (max-width: 1280px) {

  #über-uns-container > img {
    right: 0;
  }

}

@media (max-width: 1140px) {

  #über-uns-container > p {
    width: 70%;
  }
  #über-uns-container > ul {
    width: 70%;
  }

}

@media (max-width: 1140px) {

  #über-uns-container > p {
    width: 100%;
  }
  #über-uns-container > ul {
    width: 100%;
  }

  #über-uns-container > img {
    display: none;
  }

}


/* === IMPRESSUM === */

#impressum {
  padding-top: 1rem;
  color: #e4ddd7;
}
#impressum h1 {
  padding-top: 1rem;
  font-size: 1.5em;
}

#impressum h2 {
  /* padding-top: 2rem; */
  font-size: 1.2em;
}


#impressum a {
  color: #e4ddd7;
  text-decoration: none;
  font-weight: bold;
}


/* === GRID-SYSTEM === */

.container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.row::after {
  content: "";
  clear: both;
  display: block;
}

[class*='col-'] {
  float: left;
  min-height: 1px;
  padding: .8rem;
}

.col-1 { width: 16.666%; }
.col-2 { width: 33.333%; }
.col-3 { width: 50%;     }
.col-4 { width: 66.666%; }
.col-6 { width: 100%;    }

@media (max-width: 1024px) {

  .col-1 { width: 33.333%; }

}

@media (max-width: 768px) {

  .col-1 { width: 50%;  }
  .col-2 { width: 100%; }
  .col-3 { width: 100%; }
  .col-4 { width: 100%; }

}

@media (max-width: 480px) {

  .col-1 { width: 100%; }
  .col-2 { width: 100%; }
  .col-3 { width: 100%; }
  .col-4 { width: 100%; }

}
