.banner {
  width: calc(100% - 30px);
  margin: 80px auto 40px auto;
}
.banner .dish {
  width: 100%;
  width: 100%;
  background-color: #ffffff;
  border-radius: 20px;
  border: 3px solid #f2f6f9;
}
.banner .dish .top {
  margin: 40px auto 30px auto;
  background-color: #e1eae9;
  width: 90%;
  padding: 3px 5px;
  border-radius: 7px;
  text-align: center;
}
.banner .dish .top p {
  color: #008498;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: bold;
}
.banner .dish .title {
  margin: 0 auto 30px auto;
  width: 90%;
  text-align: center;
}
.banner .dish .title p {
  text-wrap: balance;
  font-size: 1.5rem;
  font-weight: bold;
  line-height:normal;
}
.banner .dish .subtitle {
  width: 90%;
  margin: 0 auto 20px auto;
  text-align: center;
  font-size: 1rem;
}
.banner .dish .subtitle p {
  color: #636060;
  font-weight: 700;
}
.image {
  height: 300px;
  overflow: hidden;
  position: relative;
}
.banner .image .backgroundImg {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.comment {
  width: 95%;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 10px;
}
.comment img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.comment .text {
  font-size: 0.8rem;
}
.comment .text .opnion {
  padding: 0 8px;
  margin-bottom: 15px;
  text-align: justify;
  color: #636060;
}
.comment .name {
  text-align: end;
  color: #4b90f7;
}
@media (min-width: 586px) {
  .banner .dish .top {
    margin: 40px 20px 20px 0;
    display: inline-block;
    width: unset;
  }
  .banner .dish .title {
    margin: 0 22px 30px 0;
    width: 50%;
    text-align: right;
  }
  .banner .dish .subtitle {
    width: 80%;
    margin: 0 22px 20px 0;
    text-align: right;
  }
}
@media (min-width: 768px) {
  .image {
    height: 100%;
  }
}
@media (min-width: 992px) {
  .banner .dish .top {
    font-size: 1rem;
  }
  .banner .dish .title {
    width: 50%;
  }
  .banner .dish .title p {
    font-size: 2.5rem;
  }
  .banner .dish .subtitle {
    font-size: 1.123rem;
  }
  .comment {
    position: absolute;
    bottom: 10px;
    left: 10px;
    transform: translateX(0);
  }
  .comment .text {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .banner {
    width: calc(100% - 8rem);
  }
}
@media (min-width: 1400px) {
  .banner .dish .title p {
    font-size: 3.5rem;
  }
}
