@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap');
body, html {
  height: 100%;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/*---Navbar Start---*/
.navbar {
  width: 100%;
  height: 70px;
  background-color: white;
  margin: 0px auto;
  display: flex;
  justify-content: space-between;
  align-items: center; 
  position: fixed;
  z-index: 9999;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.logo {
  margin-left: 15%;
}
.menu a {
  font-size: 16px;  
  border: none;
  outline: none;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  color: black;
  float: left;
  overflow: hidden;
  text-decoration: none;
  border-radius: 100px;
  margin: 5px;
}
.menu a:hover {
  transform: scale(1.05);
}
.phone {
  font-size: 26px;
  line-height: 70px;
  float: right;
  color: white;
  background-color: #006AB3;
  padding: 0px 10px 0 10px;
  margin-right: 15%;
}
#phone {
  background-color: white;
  color:  black;
  padding: 10px;
}
label {
  margin: 0 40px 0 0;
  font-size: 26px;
  line-height: 70px;
  display: none;
  width: 26px;
  float: right;
}
#toggle {
  display: none;
}
/*---Navbar End---*/

/*---Gallery Start---*/
.gallery-image {
  background-image: url("/img/düsseldorf.jpg");
  min-height: 75%; 
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(0px);
  -webkit-filter: blur(0px);
}
.gallery-text {
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
  color: white;
  font-weight: bold;
  border: 3px solid #f1f1f1;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 80%;
  padding: 20px;
  text-align: center;
  font-size: 30px;
}
/*---Gallery End---*/

/*---Angebot Start---*/
.gallery-image-angebot {
  background-image: url("/img/daikin-ftxm-raum.jpg");
  min-height: 75%; 
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(0px);
  -webkit-filter: blur(0px);
}
/*---Angebot End---*/

.text-block {
  position: absolute;
  width: 100%;
  height: 200px;
  background-color: black;
  color: white;
}

/*---Zeilen Start---*/
.zeile {
  margin: 10px 15%;
}
.zeile img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.zeile-überschrift h2 {
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.zeile-überschrift h3 {
  font-size: 17px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.text-block {
  position: absolute;
  width: 100%;
  height: 200px;
  background-color: black;
  color: white;
}
.zeile-image-text {
  display: flex;
}
.zeile-image {
  width: 300px;
  border-radius: 5px;
  position: relative;
}
.zeile-text {
  margin-left: 15%;
}
.button a {
  font-size: 16px;
  border: none;
  outline: none;
  padding: 8px;
  background-color: #4d9703;
  font-family: inherit;
  color: white;
  float: left;
  overflow: hidden;
  text-decoration: none;
  border-radius: 50px;
}
.step1{
  margin: center;
}
.step2 {
  display: none;
}
#toggle1:checked + .step2 {
  display: flex;
}
.zeile hr {
  margin-top: 30px;
  margin-bottom: 10px;
}
/*---Zeilen End---*/

/*---Impressum Start---*/
.impressum-datenschutz {
  width: 50%;
  background-color: #EDF1FC;
  padding: 10px 20px;
  margin: 0 auto;
}
.impressum-datenschutz a{
 color: black;
}
/*---Impressum End---*/

/*---Footer Start---*/
.footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 0 10% 0 0;
  background-color: #006AB3;
  width: 90%;
}
.footer-row .footer-col h4 {
  color: white;
  font-size: 20px;
  font-weight: 600;
}
.footer-col p , a {
  margin: 10px 0;
  color: white;
}
/*---Footer End---*/














/*---Tablet Start---*/
@media only screen and (max-width: 1300px) {
/*---Navbar Start---*/
  label {
    display: block;
    cursor: pointer;
    margin: -10px 20px 0;
    font-size: 30px;
    line-height: 30px;
    width: 30px;
    float: right;
}
.logo{
    margin-left: 3px;
    margin-top: 3px;
}
.logo img{
    height: 70px; /*header höhe*/
}
.navbar{
    height: 70px; /*header höhe*/
}
.menu {
    display:none;
    background-color: #006AB3;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    position: absolute;
    top: 70px; /*header höhe*/
    right: 0px;
    width: 100%;
    text-align: center;  
}
.menu a{
    width: 100%;/*damit jeder seine Zeile hat*/
    padding: 20px;/*höhe der Buttons*/
    color: white;
}
.menu a:hover{
    color: red;
}
.phone {
  display:none;
}
#toggle:checked + .menu{
    display: flex;
}
/*---Navbar End---*/

/*---Gallery Start---*/
.gallery-image {
  background-image: url("/img/düsseldorf-16.9.jpg");
  background-attachment: scroll;
}
.gallery-text {
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
  color: white;
  font-weight: bold;
  border: 3px solid #f1f1f1;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 80%;
  padding: 20px;
  text-align: center;
  font-size: 20px;
}
/*---Gallery End---*/

/*---Zeilen Start---*/
.zeile {
  margin: 10px 5px;
}
.zeile img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.zeile-überschrift h2 {
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.zeile-überschrift h3 {
  font-size: 17px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.zeile-image-text {
  display: flex;
}
.zeile-image {
  width: 300px;
  border-radius: 5px;
}
.zeile-text {
  margin-left: 15%;
}
.zeile hr {
  margin-top: 30px;
  margin-bottom: 10px;
}
/*---Zeilen End---*/

/*---Footer Start---*/
.footer-col p , a {
  margin: 5px 0;
}
/*---Footer End---*/

/*---Impressum Start---*/
.impressum-datenschutz {
  width: 75%;
}
/*---Impressum End---*/
/*---Tablet End---*/
}






















/*---Mobil Start---*/
@media only screen and (max-width: 700px) {

.logo img{
  height: 50px; /*header höhe*/
}
.navbar{
  height: 50px; /*header höhe*/
}
.menu {
  top: 50px; /*header höhe*/
}
/*---Gallery Start---*/
.gallery-image {
  top: 70px;
  background-image: url("/img/düsseldorf-4.3.jpg");
  background-attachment: scroll;
}
.gallery-text {
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
  color: white;
  font-weight: bold;
  border: 3px solid #f1f1f1;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 80%;
  padding: 20px;
  text-align: center;
  font-size: 15px;
}
/*---Gallery End---*/

/*---Zeilen Start---*/
.zeile {
  margin: 10px 5px;
  text-align: center;
}
.zeile img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.zeile-überschrift h2 {
  font-size: 30px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.zeile-überschrift h3 {
  font-size: 17px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.zeile-image-text {
  display: block;
}
.zeile-image {
  width: 300px;
  border-radius: 5px;
  margin: 0 auto;
}
.zeile-text {
  margin-left: 1px;
}
.zeile hr {
  margin-top: 30px;
  margin-bottom: 10px;
}
/*---Zeilen End---*/


/*---Footer Start---*/
.footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 0 10% 0 0;
  background-color: #006AB3;
  width: 90%;
}

.footer-row .footer-col h4 {
  color: white;
  font-size: 20px;
  font-weight: 600;
}

.footer-col p {
  margin: 10px 0;
  color: white;
}

.footer-col a {
  margin: 10px 0;
  color: white;
}
/*---Footer End---*/

/*---Impressum Start---*/
.impressum {
  width: 75%;
}

.impressum a{
 color: black;
}
/*---Impressum End---*/

/*---Datenschutz Start---*/
.datenschutz {
  width: 75%;
}

.datenschutz a{
 color: black;
}
/*---Datenschutz End---*/
/*---Mobil End---*/
}