@charset "utf-8";
.menu{
  display: flex;
  gap:30px 20px;
  max-width: 1024px;
  width: 90%;
  margin: 60px auto 0;
  flex-wrap: wrap;
}
.menu_card{
  max-width: 328px;
  width: 100%;
  background: #F4F6FB;
  border-radius: 10px;
  overflow: hidden;
}
.menu_plate{
  color: var(--txt-color);
  height: 75px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  font-size: var(--fs-24);
  font-weight: bold;
  &::after{
    content: '';
    display: block;
    background: url(../img/arrow.svg) no-repeat center;
    background-size: contain;
    min-width: 33px;
    width: 33px;
    height: 33px;
  }
}
@media screen and (max-width: 767px){
.menu{
  gap:30px 10px;
  justify-content: center;
}
.menu_card{
  width: 100%;
}
}