.wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 3% 0 5% 0;
  }
  
  .item {
    width: 32%;
    height: max-content 150px;
    text-align: left;
    align-items: left;
    justify-content: left;
  }
  
  .item:not(:nth-child(3n+3)) {
    margin-right: 2%;
  }
  
  .item:nth-child(n+4) {
    margin-top: 10px;
  }

  .advertisement:not(:nth-child(2n+2)) {
    margin-right: 2%;
  }

  .advertisement:nth-child(n+3) {
    margin-top: 10px;
  }

  .advertisement img{
    width: 600px;
    text-align: left;
    align-items: left;
    justify-content: left;
  }

@media screen and (max-width: 800px){
  .item {
    width: 48%;
    height: max-content 150px;
    text-align: left;
    align-items: left;
    justify-content: left;
  }
  
  .item:not(:nth-child(2n+2)) {
    margin-right: 2%;
  }
  
  .item:nth-child(n+3) {
    margin-top: 10px;
  }

  .advertisement img{
    width: 100%;
    text-align: left;
    align-items: left;
    justify-content: left;
  }
}