@import url("../css/fontawesome/css/all.css");
body {
  padding: 0;
  margin: 0;
  font-family: "PT Sans", sans-serif;
}
body header {
  background-image: url(../img/header.jpg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  border-bottom: 16px solid #000;
  height: 270px;
  padding-top: 12px;
  background-color: #333;
  /* Menu Icon */
  /* Style label tag */
  /* Style span tag */
  /* Toggle menu icon */
}
body header .banner {
  background: rgba(4, 139, 184, 0.9);
  padding: 10px 25px;
  display: flex;
}
body header .banner nav {
  margin-left: auto;
}
body header .banner nav ul {
  list-style: none;
}
body header .banner nav ul li {
  display: inline;
  margin: 0 8px;
  line-height: 30px;
}
body header .banner nav a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
body header .hamb {
  cursor: pointer;
  float: right;
  padding: 40px 20px;
}
body header .hamb-line {
  background: #fff;
  display: block;
  height: 2px;
  position: relative;
  width: 24px;
}
body header .hamb-line::before,
body header .hamb-line::after {
  background: #fff;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}
body header .hamb-line::before {
  top: 5px;
}
body header .hamb-line::after {
  top: -5px;
}
body header .side-menu {
  display: none;
}
body header .side-menu:checked ~ nav {
  max-height: 100%;
  display: block;
}
body header .side-menu:checked ~ .hamb .hamb-line {
  background: transparent;
}
body header .side-menu:checked ~ .hamb .hamb-line::before {
  transform: rotate(-45deg);
  top: 0;
}
body header .side-menu:checked ~ .hamb .hamb-line::after {
  transform: rotate(45deg);
  top: 0;
}
@media (min-width: 768px) {
  body header nav {
    max-height: none;
    top: 0;
    position: relative;
    float: right;
    width: -moz-fit-content;
    width: fit-content;
  }
  body header .menu li {
    float: left;
  }
  body header .menu a:hover {
    background-color: transparent;
    color: var(--gray);
  }
  body header .hamb {
    display: none;
  }
  body header nav {
    display: block;
  }
}
@media (max-width: 768px) {
  body header nav {
    display: none;
  }
  body header body header .banner {
    display: block;
  }
  body header body header .banner nav ul li {
    display: block;
  }
}
body .content {
  max-width: 920px;
  margin: auto;
}
body .content .dine-out img {
  width: -webkit-fill-available;
  max-width: inherit;
}
body .content form .app-form .app-form-group {
  margin-bottom: 15px;
}
body .content form .app-form .app-form-group.message {
  margin-top: 40px;
}
body .content form .app-form .app-form-group.buttons {
  margin-bottom: 0;
  text-align: right;
}
body .content form .app-form .app-form-group input {
  font-weight: 700;
  letter-spacing: 1.4px;
}
body .content form .app-form .app-form-group input.app-form-control {
  width: 100%;
  padding: 10px 0;
  background: none;
  border: none;
  border-bottom: 1px solid #666;
  color: #000;
  font-size: 14px;
  text-transform: uppercase;
  outline: none;
  transition: border-color 0.2s;
}
body .content form .app-form .app-form-group textarea {
  font-weight: 700;
  letter-spacing: 1.4px;
}
body .content form .app-form .app-form-group textarea.app-form-control {
  display: block;
  width: 100%;
  box-sizing: border-box;
  border: 0;
  border-bottom: 1px solid;
  height: 130px;
}
body .content form .app-form .app-form-group .app-form-button {
  background: none;
  border: none;
  color: rgb(4, 139, 184);
  font-size: 14px;
  cursor: pointer;
  outline: none;
}
body .content .info-row {
  display: flex;
}
body .content .info-row .info-header {
  flex-basis: 10%;
  text-align: right;
  border-right: 2px solid rgb(4, 139, 184);
  padding: 10px;
  text-transform: uppercase;
  font-weight: 700;
}
body .content .info-row .info-content {
  flex-basis: 90%;
  padding: 10px 10px 40px;
}
body .content .events-calendar li .event-date {
  font-weight: 700;
}
body footer {
  background: rgb(4, 139, 184);
}
body footer .footer-logo {
  background: rgb(4, 139, 184);
  background-image: url("../img/top-footer.jpg");
  background-repeat: repeat-x;
  text-align: center;
}
body footer .footer-content {
  max-width: 920px;
  margin: auto;
}
body footer .footer-content .footer-content-row {
  display: flex;
}
body footer .footer-content .footer-content-row div:first-of-type {
  flex-basis: 60%;
}
body footer .footer-content .footer-content-row div:nth-child(2) {
  margin-left: auto;
}
body footer .footer-content .footer-content-row .links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}
body footer .footer-content .footer-content-row .links ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
}
body footer .footer-content .footer-content-row .copyright {
  padding-bottom: 65px;
  align-self: flex-end;
}
body footer .footer-content .social-block {
  padding-bottom: 65px;
}
body footer .footer-content .social-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body footer .footer-content .social-block ul li {
  display: inline-block;
  margin-top: 16px;
  margin-left: 16px;
}
body footer .footer-content .social-block ul li:first-of-type {
  margin-left: 0;
}
body footer .footer-content .social-block ul li a {
  display: inline-block;
  font-size: 1.5rem;
  color: rgb(4, 139, 184);
  border: none;
  background-color: #fff;
  line-height: 1em;
  min-height: 22px;
  min-width: 22px;
  text-align: center;
  margin: 0;
  padding: 8px;
  border-radius: 50%;
}