@charset "utf-8";
.beforereservation{
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  position: relative;
}
.beforereservation::after{
  content: "";
  position: absolute;
  width: 80px;
  height: 5px;
  background-color: #3498db;
  margin-right: auto;
  margin-left: auto;
  bottom: -20px;
  right: 0;
  left: 0;
}
.description{
  width: 70%;
  background-color: #fff;
  padding: 2rem;
  margin: 5% auto;
}
.description h2 {
    color: #2c3e50;
    border-left: 5px solid #3498db;
    padding-left: 10px;
    margin-top: 30px;
}
.description ul {
  list-style-type: disc;
  padding-left: 20px;
}
.description ul li{
  font-size: 16px;
  font-feature-settings: "palt";
}
.description .important {
  color: #e74c3c;
  font-weight: bold;
}
.description .contact {
  font-weight: bold;
}
@media screen and (max-width:768px) {
.description{
  width: 94%;
  background-color: #fff;
  padding: 2rem;
  margin-right: auto;
  margin-left: auto;
}
}