.page-content{
    padding-top: 150px;
}
.clients h1{
    text-align: center;
    font-size: 5rem;
    font-weight: unset;
    font-family: "Pacifico";
  }
  .logogrid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    max-width: calc(100% - 60px);
    margin: 0 auto;
    gap: 30px;
    justify-items: space-between;
    margin-top: 50px;
    padding-bottom: 100px;
    
  }
  .logogrid img {
    width: 200px;
    max-width: 100%;
    filter: saturate(0) contrast(1.2);
    transition: all .3s;
    overflow: hidden;
    border-radius: 10px;
  }
  .logogrid img:hover {
    filter: saturate(1) contrast(1);
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 30%);
  }
  .referenzen {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 100px;
    justify-items: center;
    align-items: center;
}
.firstone{
  margin-top: 100px;
}
.referenzen.right div:nth-child(2){
  grid-row: 1;
}
.referenzen h3{
  text-transform: uppercase;
  margin-bottom: 20px;
}
.referenzen img {
  width: 100%;
  max-width: 300px;
  background: var(--main-light);
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px){
  .referenzen.right div:nth-child(2){
    grid-row: unset;
  }
  .referenzen{
    grid-template-columns: auto;
  }
  .logogrid{
    display: none;
  }
}