@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;1,100;1,200;1,300;1,400;1,500&display=swap');

:root{
  --color:0061ff;
}

*{
  font-family: 'Poppins', sans-serif;
  margin:0; padding:0;
  box-sizing: border-box;
  text-transform: capitalize;
  transition: all .2s linear;
  text-decoration: none;
}

html{
  font-size: 62.5%;
}

body{
  overflow-x: hidden;
}

.heading{
  margin:2rem;
  padding-top: 6rem;
  display: inline-block;
  font-size: 3.5rem;
  color:#0061ff;
  position: relative;
  letter-spacing: .2rem;
  text-transform: none;
}

.heading::before, .heading::after{
  content: '';
  position: absolute;
  height: 2.5rem;
  width: 2.5rem;
  border-top:.4rem solid #0061ff;
  border-left:.4rem solid #0061ff;
}

.heading::before{
  top:5.8rem; left: -2rem;
}

.heading::after{
  bottom:-.5rem; right: -2rem;
  transform: rotate(180deg);
}

.btn{
  outline: none;
  border: none;
  border-radius: 5rem;
  background: #0061ff;
  color: #fff;
  cursor: pointer;
  height:3.5rem;
  width: 15rem;
  font-size: 1.7rem;
  box-shadow: 0 .2rem .5rem rgba(0,0,0,.3);
}

.btn:hover{
  letter-spacing: .1rem;
  opacity: .8;
}

.header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding:1rem 2rem;
  position: fixed;
  top:0; left: 0;
  z-index: 100;
}

.header .logo{
  font-size: 2.5rem;
  color: #fff;
}

.header .logo img{
  height: 2rem;
  padding:0 .5rem;
}

.header .navbar ul{
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.header .navbar ul li{
  margin:0 1.5rem;
}

.header .navbar ul li a{
  font-size: 2rem;
  color:#fff;
  white-space: nowrap;
}

.header .navbar ul li a:hover{
  color:#ccc;
}

.header .fa-bars{
  color:#fff;
  cursor: pointer;
  font-size: 3rem;
  display: none;
}

.home{
  min-height: 100vh;
  width: 100vw;
  background:linear-gradient(blue, dodgerblue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  text-align: center;
  padding:0 1rem;
  position: relative;
  overflow: hidden !important;
}

.home .content{
  z-index: 1;
}

.home #particles-js{
  position: absolute;
  top:0; left:0;
  height: 100%;
  width: 100%;
}

.home::before{
  content: '';
  position: absolute;
  top:0; left:0;
  height: 100%;
  width: 100%;
}

.home .content .banner{
  color: #fff;
  font-size: 8rem;
  text-shadow: 0 .3rem .5rem rgba(0,0,0,.3);
}

.home .content .banner .logo1{
  margin-top: 5rem;
  width: 70rem;
}

.home .content .banner .logo2{
  display: none;
}

.home .content .slogan{
  color: #eee;
  font-size: 3rem;
  font-weight: 400;
  margin-top: -1rem;
  text-transform: none;
}

.home .content button{
  height: 4rem;
  width: 21rem;
  background: #fff;
  color: #444;
  cursor: pointer;
  border:none;
  outline: none;
  margin-top: 2rem;
  font-size: 2rem;
  font-weight: 400;
  box-shadow: 0 .3rem .5rem rgba(0,0,0,.3);
}

.home .content button:hover{
  letter-spacing: .1rem;
}

.about{
  min-height: 100vh;
  width: 100vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about .row{
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding:0 4rem;
}

.about .row .content{
  text-align: left;
  margin-left: 22rem;
}

.about .row .image img{
  width: 50vw;
}

.about .row .content h3{
  font-size: 3rem;
  color: #0061ff;
  text-transform: none;
}

.about .row .content h1{
  font-size: 1.5rem;
  color: #333;
  padding:1rem 0;
  text-transform: none;
  font-weight: bold;
}

.about .row .content p{
  font-size: 1.5rem;
  color: #333;
  padding:1rem 0;
  text-transform: none;
}

.about::before, .about::after{
  content: '';
  position: absolute;
  z-index: -1;
  opacity: .2;
  border-radius: 50%;
}

.about::before{
  height: 50rem;
  width: 50rem;
  background: #ccc;
  bottom: -10rem; left: -10rem;
}

.about::after{
  height: 60rem;
  width: 60rem;
  background: #0061ff;
  top: -10rem; right: -10rem;
}

.about .row .content .btn{
  margin-bottom: 5rem;
}

.service{
  display: grid;
  place-items: center;
  min-height: 100vh;
  width: 100vw;
  background:linear-gradient(blue, dodgerblue);
}

.service .heading{
  color: #fff;
}

.service .heading::before, .service .heading::after{
  border-color: #fff;
}

.service .row{
  width: 90%;
}

.service .row .box{
  background: #fff;
  max-width: 80rem;
  border-radius: .5rem;
  box-shadow: 0 0 .3rem #333;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding:4rem 2rem;
  margin:2rem;
  clear: both;
}

.service .row .box:nth-child(2){
  float: right;
}

.service .row .box:nth-child(4){
  float: right;
}

.service .row .box i{
  font-size: 7rem;
  margin-right: 4rem;
  color: #0061ff;
}

.service .row .box .fa-cog{
  font-size: 7rem;
  margin-right: 5.7rem;
  color: #0061ff;
}

.service .row .box .fa-certificate{
  font-size: 7rem;
  margin-right: 5.7rem;
  color: #0061ff;
}

.service .row .box .info{
  padding-left: 2.5rem;
  border-left: .4rem solid #0061ff;
}

.service .row .box .info h2{
  font-size: 3rem;
  color: #0061ff;
  text-transform: none;
}

.service .row .box .info p{
  font-size: 1.5rem;
  color: #333;
  text-transform: none;
}
.service .row .box .info a{
  color: #0061ff;
  text-decoration: underline;
}

.produkte{
  width: 100vw;
  text-align: center;
}

.produkte .row{
  margin:2rem 0;
  padding:0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.produkte .row .image .left{
  width:20vw;
  height: 30vh;
  object-fit: cover;
  margin-left: 25rem;
  border-radius: .5rem;
}

.produkte .row .image .right{
  width:20vw;
  height: 30vh;
  object-fit: cover;
  margin-right: 25rem;
  border-radius: .5rem;
}
.produkte .row .image .right2{
  width:20vw;
  height: 30vh;
  object-fit: cover;
  margin-right: 25rem;
  border-radius: .5rem;
}

.produkte .row .content{
  text-align: left;
  padding:0 3rem;
  margin-left: 22rem;
}

.produkte .row .content h3{
  font-size: 3rem;
  color: #0061ff;
  text-transform: none;
}

.produkte .row .content p{
  font-size: 1.5rem;
  color: #333;
  padding:1rem 0;
  text-transform: none;
}

.produkte .row .contentr{
  text-align: left;
  padding:0 3rem;
  margin-right: 22rem;
}

.produkte .row .contentr h3{
  font-size: 3rem;
  color: #0061ff;
  text-transform: none;
}

.produkte .row .contentr p{
  font-size: 1.5rem;
  color: #333;
  padding:1rem 0;
  text-transform: none;
}

.kunden{
  min-height: 100vh;
  width: 100vw;
  text-align: center;
  background-color: #222;
}

.kunden .heading{
  color: #fff;
}

.kunden .heading::before, .kunden .heading::after{
  border-color: #fff;
}

.kunden .row{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.kunden .row .card{
  height:35rem;
  width:35rem;
  background: #fff;
  text-align: center;
  margin:7rem 2rem;
  position: relative;
  overflow: hidden;
  -webkit-box-reflect: below .2rem linear-gradient(transparent 70%, #0004);
}

.kunden .row .card .image{
  margin:1rem 0;
  padding-top: 2rem;
}

.kunden .row .card .image img{
  width: 30rem;
  border-radius: 0%;
  border:.5rem solid #fff;
  box-shadow: 0 0 .5rem rgba(0,0,0,.3);
  object-fit: cover;
}

.kunden .row .card .info h3{
  font-size: 2rem;
  color: #333;
}

.kunden .row .card .info span{
  font-size: 1.8rem;
  color: #333;
  text-transform: none;
}

.kunden .row .card .info .icons a{
  margin-top: 2rem;
  padding:0 1rem;
  font-size: 2rem;
  color: #333;
}

.kunden .row .card .info .icons a:hover{
  color: #0061ff;
}

.kontakt{
  min-height: 100vh;
  width: 100vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.kontakt .row{
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding:0 4rem;
  margin-top: 15rem;
}

.kontakt .row .content{
  text-align: center;
}

.kontakt .row .image img{
  width: 50vw;
}

.kontakt .row .content h3{
  font-size: 5rem;
  color: #0061ff;
  letter-spacing: .4rem;
}

.kontakt .row .content p{
  font-size: 2.5rem;
  color: #333;
  padding:.5rem 0;
  text-transform: none;
  letter-spacing: .2rem;
}

.kontakt .row .content a{
  font-size: 2.5rem;
  color: #333;
  padding:.5rem 0;
  text-decoration: underline;
  text-transform: none;
  letter-spacing: .2rem;
}

.kontakt .row .content a:hover{
  color: #0061ff;
}

.kontakt::before, .kontakt::after{
  content: '';
  position: absolute;
  z-index: -1;
  opacity: .2;
  border-radius: 50%;
}

.kontakt::before{
  height: 50rem;
  width: 50rem;
  background: #ccc;
  bottom: -10rem; left: -10rem;
}

.kontakt::after{
  height: 60rem;
  width: 60rem;
  background: #0061ff;
  top: -10rem; right: -10rem;
}

.faq{
  min-height: 100vh;
  width: 100vw;
  text-align: center;
  padding:0 2rem;
}

.faq .row{
  display: flex;
  align-items: center;
  justify-content: center;
  padding:0 2rem;
}

.faq .row .image img{
  width: 35vw;
}

.faq .row .accordion-container{
  width: 30vw;
  text-align: left;
}

.faq .row .accordion-container .accordion .accordion-header{
  background-color: #0061ff;
  margin:1rem 0;
  box-shadow: .1rem .1rem .3rem rgba(0,0,0,.3);
  cursor: pointer;
}

.faq .row .accordion-container .accordion .accordion-header span{
  display: inline-block;
  text-align: center;
  height: 4rem;
  width: 5rem;
  line-height: 4rem;
  font-size: 2rem;
  background: #fff;
  color: #333;
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}

.faq .row .accordion-container .accordion .accordion-header h3{
  display: inline;
  color: #fff;
  font-weight: 400;
  padding-left: .5rem;
  font-size: 1.5rem;
  text-transform: none;
}

.faq .row .accordion-container .accordion .accordion-body{
  padding:1rem;
  color: #444;
  box-shadow: .1rem .1rem .3rem rgba(0,0,0,.3);
  font-size: 1.3rem;
  display: none;
}

.faq .row .accordion-container .accordion .accordion-body p{
  text-transform: none;
}

.faq .row .accordion-container .accordion .accordion-body a{
  color: #0061ff;
  text-decoration: underline;
}

.footer{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:1rem 2rem;
  margin-top: 1rem;
  background: #0061ff;
}

.footer h1{
  color: #fff;
  letter-spacing: .1rem;
  font-weight: 400;
}

.footer .links a{
  color: #fff;
  font-size: 1rem;
  padding:0 .5rem;
  text-decoration: none;
}

.footer .links a:hover{
  color: #ccc;
}


/*media queries  */

@media (max-width:1000px){
.header .fa-bars{
  display: block;
}

.header .navbar{
  position: fixed;
  top:-120%; left: 0;
  height: auto;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  border-top: .1rem solid rgba(0,0,0,.3);
}

.header .navbar ul{
  height: 100%;
  width: 100%;
  flex-flow: column;
}

.header .navbar ul li{
  margin:1rem 0;
}

.header .navbar ul li a{
  color:#444;
  font-size: 2.4rem;
}

.header .fa-times{
  transform: rotate(180deg);
}

.header .nav-toggle{
  top:5.8rem;
}

}

@media (max-width:768px){

  html{
    font-size: 50%;
  }
  .home .content .slogan{
    font-size: 2.7rem;
  }

  .about .row{
    flex-flow: column-reverse;
    padding:0 2rem;
  }
  .about .row .content{
    margin-left: 0;
  }

  .about .row .content p{
    font-size: 2rem;
  }

  .about .row .image img{
    width: 100vw;
  }

  .produkte .row{
    flex-flow: column-reverse;
  }

  .produkte .row:nth-child(even){
    flex-flow: column;
  }

  .produkte .row .image .left{
    height: 220px;
    width: 100vw !important;
    object-fit: cover;
    margin-left: 0;
    border-radius: 0;
  }
  .produkte .row .image .right{
    height: 220px;
    width: 100vw !important;
    object-fit: cover;
    margin-right: 0;
    border-radius: 0;
  }
  .produkte .row .image .right2{
    height: 220px;
    width: 100vw !important;
    object-fit: cover;
    margin-right: 0;
    object-position: 0 20%;
    border-radius: 0;
  }

  .produkte .row .content{
    padding:0;
    margin-left: 0;
  }
  .produkte .row .contentr{
    padding:0;
    margin-right: 0;
  }

  .kontakt .row .content h3{
    font-size: 4rem;
  }

  .kontakt .row .content p{
    font-size: 2rem;
  }

  .kontakt .row .content a{
    font-size: 2rem;
  }

  .faq{
    padding:0;
  }

  .faq .row{
    padding:0 1rem;
    flex-flow: column;
  }

  .faq .row .image img{
    width: 70vw;
  }

  .faq .row .accordion-container{
    width: 100%;
  }

  .faq .row .accordion-container .accordion .accordion-header span{
    height: 6rem;
    line-height: 6rem;
    font-size: 2.5rem;
  }

  .faq .row .accordion-container .accordion .accordion-header h3{
    font-size: 1.6rem;
  }

  .faq .row .accordion-container .accordion .accordion-body{
    font-size: 1.8rem;
  }
}

  @media (max-width:550px){
    .home{
    }
    .home .content .banner{
      font-size: 2.5rem;
      margin-top: -20rem;
    }
    .home .content .banner .logo1{
      display: none;
    }
    .home .content .banner .logo2{
      display: grid;
      max-width: 95%;
    }
    .home .content .slogan{
      font-size: 2.5rem;
    }
    .about .row .image img{
      display: none;
    }
    .service .row .box{
      flex-flow: column;
      padding:1.5rem;
    }
    .service .row .box .info{
      padding-left: 0;
      padding-top: 3rem;
      border: none;
      text-align: center;
    }
    .service .row .box i{
      font-size: 10rem;
      margin: 1rem;
    }
    .service .row .box .fa-cog{
      font-size: 10rem;
      margin: 1rem;
    }
    .service .row .box .fa-certificate{
      font-size: 10rem;
      margin: 1rem;
    }
    .service .row .box .info p{
      padding:1rem;
    }
    .footer{
      flex-flow: column;
    }
    .footer h1{
      text-align: center;
    }
    .footer .links{
      padding:2rem 0;
    }
  }
