.infos {
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 50px 0px 50px 0px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.preise {
  min-height: 100vh;
  background-color: #bbbfc2;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.infos-container {
  max-width: 1000px;
  width: 90%;
  text-align: center;
  box-sizing: border-box;
}

.infos-title {
  margin-bottom: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.infos-title img {
  height: 50px;
  margin-right: 10px;
}

.infos-title h1 {
  font-size: 35px;
  font-family: Roboto-Bold;
}

.infos-title p {
  margin-top: 35px;
  font-size: 20px;
  font-family: Roboto-Light;
  text-align: left;
}

.infos-cards-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.infos-cards {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.infos-card {
  max-width: 250px;
}

.infos-card img {
  height: 100px;
  margin-bottom: 10px;
}

.infos-card h1 {
  font-size: 20px;
  font-family: Roboto-Bold;
  margin-bottom: 10px;
}

.infos-card p {
  font-size: 20px;
  font-family: Roboto-Light;
}


@media (max-width: 750px) {
  .infos-title img {
    height: 35px;
  }

  .infos-title h1 {
    font-size: 25px;
  }

  .infos-title p {
    margin-top: -15px;
    font-size: 17px;
  }

  .infos-card img {
    height: 75px;
  }
}

@media (max-width: 500px) {
  .infos {
    padding: 25px 0px 0px 0px;
    margin-bottom: -25px;
  }

  .preise {
    padding: 25px 0px 0px 0px;
    margin-bottom: -25px;
  }

  .infos-card {
    width: calc(50% - 20px); 
    margin-bottom: 50px;
  }
}

/* Mobile Ansicht */
@media screen and (max-width: 800px) {
  .infos-card h1 {
      font-size: 20px;
  }
  
  .infos-card p {
      font-size: 17px;
  }
}  
