/*---------------------API Pv Anlage-------------------*/
.videocontainer {
  position: relative;
}

.PVcontainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.PVcontainer .item {
  flex: 0 0 32%;
  /* verhindert zu kleine Items */
}

.PVcontainer img {
  width: 100px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.PVcontainer .item.trees {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.PVcontainer .item.CO2 {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 550px) {
  .PVcontainer {
    row-gap: 1rem;
  }

  .PVcontainer .item {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
  }
}