.menu{
  position:relative;
  width:min(88%, 1650px);
  margin:-25px auto 80px;
  padding:25px 22px 80px;
  min-height:185px;

  display:grid;
  grid-template-columns:repeat(4, 200px);
  gap:24px 46px;
  justify-content:center;
  align-items:start;

  background:rgba(50,95,255,.72);
  border:1px solid rgba(255,215,0,.65);
  border-radius:14px;
  box-shadow:0 0 30px rgba(0,0,0,.35);
}

.menu-card{
  width:200px;
  height:110px;
  display:block;
}

.menu-card img{
  width:200px;
  height:110px;
  object-fit:cover;
  display:block;
  border-radius:10px;
}

.feedback-card{
  position:absolute;
  top:-95px;
  left:40px;
}

.feedback-card img{
  width:200px;
  height:auto;
  display:block;
}

@media (max-width:900px){
  .menu{
    grid-template-columns:repeat(2, 160px);
    gap:22px;
  }

  .menu-card{
    width:160px;
    height:88px;
  }

  .menu-card img{
    width:160px;
    height:88px;
  }
}

@media (max-width:480px){
  .menu{
    width:92%;
    grid-template-columns:repeat(2, 120px);
    gap:22px 20px;
    padding:18px 15px 40px;
  }

  .menu-card{
    width:120px;
    height:68px;
  }

  .menu-card img{
    width:120px;
    height:68px;
  }

  .feedback-card{
    position:static;
    grid-column:1 / 3;
    margin:25px auto 0;
  }

  .feedback-card img{
    width:150px;
  }
}









@media (min-width:481px) and (max-width:900px) and (orientation:landscape){

  .menu{
    width:95%;
    grid-template-columns:repeat(4, 160px);
    gap:18px;
    padding:20px;
  }

  .feedback-card{
    position:static;
    grid-column:1 / -1;
    margin:15px auto 0;
  }

  .feedback-card img{
    width:140px;
  }
}


























@media (max-width:700px) and (orientation:landscape){

  .menu{
    width:92%;
    grid-template-columns:repeat(2, 120px);
    gap:22px 20px;
    padding:18px 15px 40px;
  }

  .menu-card{
    width:120px;
    height:68px;
  }

  .menu-card img{
    width:120px;
    height:68px;
  }

  .feedback-card{
    position:static;
    grid-column:1 / 3;
    margin:25px auto 0;
  }

  .feedback-card img{
    width:150px;
  }
}