@import url("https://use.typekit.net/xhp3oce.css");
body {
  margin: 0px;
  padding: 0;
  background-color: #F7F2DE;
  width: 100%;
  overflow-x: hidden;
}

header {
  background-color: #FFED35;
}
header .logo {
  width: 25%;
  position: absolute;
  left: calc(15% - 90px);
  z-index: 10;
}
header .menu {
  position: relative;
  margin: 0;
  padding: 0;
  text-align: center;
}
header .menu .nav-button {
  background-color: #E11F26;
  border: none;
  border-radius: 50px;
  padding: 7px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 2px 2px;
  cursor: pointer;
}
header .menu .nav-button a {
  color: white;
}
header .menu li {
  display: inline-block;
  font-family: "cubano", sans-serif;
  font-style: normal;
  font-weight: 400;
  padding: 20px;
  font-size: 21px;
  line-height: 25px;
}
header .menu li .toggle {
  background-image: url("../images/down-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-left: 8px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
header .menu li .toggle.active {
  background-image: url("../images/black-up-arrow.svg");
}
header .menu li .sub-menu {
  display: none;
  float: left;
  position: absolute;
  z-index: 9999;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  padding-left: 20px;
  background-color: #FFED35;
  text-align: left;
  width: 250px;
  margin-left: -20px;
  margin-top: 20px;
}
header .menu li .sub-menu li {
  display: block;
  padding: 10px 0;
}
header .menu li .sub-menu li a {
  font-size: 18px;
}
header .menu li.current-menu-item a, header .menu li.current-menu-item a span {
  text-decoration: underline;
}
header .menu li a {
  position: relative;
  color: #013059;
  text-decoration: none;
}
header .menu li a:hover {
  color: #000;
}
header .menu li a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
header .menu li a:hover::before {
  transform: scaleX(1);
}
header .hero {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 600px;
  position: relative;
}
header .hero .hero-text {
  position: absolute;
  bottom: 0;
  padding-left: 7rem;
  padding-bottom: 6rem;
}
header .hero .hero-text h1 {
  font-size: 5rem;
  font-family: cubano, sans-serif;
  color: #fff;
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
  margin: 0;
}
header .hero .hero-text .txt-overlay {
  color: white;
  font-family: cubano, sans-serif;
  font-size: 3rem;
  max-width: 60%;
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
  font-style: italic;
  margin: 0;
}

.section {
  margin: 0 auto;
  width: 100%;
}

#section1, #section2, #section3, #section4 {
  top: 50px;
}

#section2 {
  display: flex;
  flex-direction: row;
  position: relative;
  justify-content: center;
}
#section2 .yellowbg {
  background-color: #FFED35;
  background-clip: border-box;
  border-bottom: none;
  border-radius: 50px;
  width: 482px;
  height: 255px;
  margin: 20px;
  position: relative;
  left: 6px;
}
#section2 .yellowbg .menu-box {
  border: 2px solid #013059;
  width: 482px;
  position: relative;
  top: -16px;
  left: -19px;
  border-radius: 40px;
  overflow: hidden;
  min-height: 250px;
  margin: 10px;
  z-index: 1;
}
#section2 .yellowbg .menu-box .circle, #section2 .yellowbg .menu-box .circle-online {
  background-color: #013059;
  clip-path: circle(40%);
  padding-top: 100%;
  position: absolute;
  top: -30%;
  left: 120px;
  width: 140%;
  min-height: 0px;
  z-index: -1;
}
#section2 .yellowbg .menu-box .circle.circle-online, #section2 .yellowbg .menu-box .circle-online.circle-online {
  background-color: #E11F26;
}
#section2 .yellowbg .menu-box .menu-img {
  position: absolute;
  top: 70px;
  left: 30%;
}
#section2 .yellowbg .menu-box .display-img {
  position: absolute;
  top: 50%;
  left: 70%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: auto;
  max-width: 150px;
  width: 100%;
}
#section2 .yellowbg .menu-box .box-title h2 {
  display: inline-block;
  font-family: cubano, sans-serif;
  color: #013059;
  font-size: 52px;
  line-height: 56px;
  padding-left: 20px;
  text-align: left;
  max-width: 50%;
  margin-top: 20px;
}
#section2 .yellowbg .menu-box .box-title h3 {
  font-family: cubano, sans-serif;
  font-size: 28px;
  line-height: 27px;
  color: #013059;
  position: absolute;
  bottom: 2%;
  padding-left: 20px;
  max-width: 44%;
}

#section1, #section3 {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  align-items: center;
  max-width: 1002px;
  left: 6px;
}
#section1 .yellowbg, #section3 .yellowbg {
  background-color: #FFED35;
  background-clip: border-box;
  border-bottom: none;
  border-radius: 50px;
  width: 100%;
  height: 285px;
  position: relative;
  margin: 20px;
}
#section1 .yellowbg .box, #section3 .yellowbg .box {
  border: 2px solid #013059;
  width: 100%;
  position: relative;
  top: -15px;
  left: -20px;
  min-height: 280px;
  border-radius: 50px;
  overflow: hidden;
  margin: 10px;
}
#section1 .yellowbg .box img, #section3 .yellowbg .box img {
  position: relative;
  left: 40%;
}
#section1 .yellowbg .box .box-title, #section3 .yellowbg .box .box-title {
  display: inline-block;
  position: absolute;
  font-family: cubano, sans-serif;
  color: #013059;
  padding-left: 60px;
  top: -30px;
}
#section1 .yellowbg .box .box-title .specials-heading, #section3 .yellowbg .box .box-title .specials-heading {
  position: static;
  height: 30px;
}
#section1 .yellowbg .box .box-title h2, #section3 .yellowbg .box .box-title h2 {
  position: absolute;
  font-size: 56px;
  line-height: 62px;
  max-width: 20px;
  color: #013059;
  overflow-wrap: normal;
}
#section1 .yellowbg .box .box-title h3, #section3 .yellowbg .box .box-title h3 {
  text-align: left;
  position: relative;
  bottom: -80px;
  font-size: 27px;
  line-height: 33px;
  font-family: "paralucent", sans-serif;
}
#section1 .yellowbg .box .box-title .subtext, #section3 .yellowbg .box .box-title .subtext {
  max-width: 40%;
}
#section1 .yellowbg .box .cater-button, #section3 .yellowbg .box .cater-button {
  font-family: cubano, sans-serif;
  color: white;
  background-color: #E11F26;
  border: none;
  border-radius: 50px;
  padding: 7px 20px;
  text-decoration: none;
  margin: 2px 2px;
  position: absolute;
  top: 75%;
  left: 50px;
  cursor: pointer;
}

#section4 {
  display: flex;
  flex-direction: row;
  position: relative;
  justify-content: center;
  margin-top: 20px;
}
#section4 .hours {
  padding-top: 5px;
}
#section4 .shape {
  box-sizing: border-box;
  display: inline-block;
  background-color: #FFED35;
  background-clip: border-box;
  border-bottom: none;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  width: 482px;
  height: 100px;
  left: 10px;
}
#section4 .shape .model-box {
  display: block;
  background: none;
  width: 482px;
  border: 2px solid #013059;
  border-radius: 50px;
  top: -6px;
  left: -9px;
}
#section4 .shape .model-box .time {
  position: relative;
  top: -20px;
  font-size: 31px;
  font-family: "cubano", sans-serif;
  color: #013059;
  text-align: center;
}
#section4 .shape .model-box hr {
  border-top: 2px solid #013059;
  margin: 9px -2px 0;
  position: relative;
  top: -15px;
}
#section4 .shape .model-box table {
  width: auto;
  display: inline-block;
  left: 40px;
  position: relative;
  top: -30px;
}
#section4 .shape .model-box table th, #section4 .shape .model-box table tr {
  color: #013059;
  font-family: "cubano", sans-serif;
  font-size: 24px;
  line-height: 38px;
}
#section4 .shape .model-box table th:nth-child(2), #section4 .shape .model-box table tr:nth-child(2) {
  padding-left: 60px;
}
#section4 .map img {
  display: block;
  max-width: 470px;
}
#section4 .map #map {
  width: 470px;
  height: 437px;
}
#section4 .map p {
  font-size: 24px;
  line-height: 29px;
  color: #013059;
  font-family: "paralucent medium", sans-serif;
  max-width: 65%;
}

footer {
  background-color: #013059;
  color: white;
  text-align: center;
  margin-top: 100px;
  position: absolute;
  width: 100%;
}
footer a {
  color: white;
}
footer .column {
  float: left;
  padding-top: 30px;
  height: auto;
}
footer .column .address {
  text-align: left;
  font-family: "paralucent", sans-serif;
  font-size: 20px;
  line-height: 28px;
  max-width: 80%;
}
footer .left {
  width: 30%;
}
footer .left img {
  float: right;
  padding: 10px;
  padding-top: 8%;
}
footer .middle {
  width: 30%;
}
footer .middle ul {
  list-style-type: none;
  text-align: left;
  float: left;
  font-family: "paralucent", sans-serif;
  font-size: 24px;
  line-height: 40px;
}
footer .middle ul a {
  text-decoration: none;
  color: white;
}
footer .middle ul a:hover {
  color: #FFED35;
}
footer .middle .right {
  width: 50%;
}
footer .row:after {
  content: "";
  display: table;
  clear: both;
}
footer .credit {
  text-align: center;
  font-family: "sofia-pro", sans-serif;
  font-size: 14px;
  line-height: 23px;
}
footer hr {
  border-top: 0.1px solid #FFED35;
  position: relative;
  top: 0;
}
footer img {
  padding-bottom: 30px;
}

h5 {
  text-align: center;
  font-family: gothic-open-shaded, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
  line-height: 74px;
  color: #E11F26;
  margin: 30px 0;
}

.menu-section {
  max-width: 900px;
  margin: 0 auto;
  justify-content: center;
  clear: both;
  padding-top: 30px;
}

.row {
  float: left;
  clear: both;
  width: 100%;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.menu-list {
  float: left;
  width: 43%;
  padding: 10px;
  font-family: "paralucent medium", sans-serif;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
}
.menu-list .price-lable {
  font-size: 18px;
}
.menu-list:nth-child(2) {
  padding-left: 60px;
}

.full-width {
  width: 100%;
}

table {
  width: 100%;
  line-height: 33px;
}
table td:nth-child(2) {
  padding-right: 20px;
}
table th {
  font-size: 19px;
  font-family: paralucent bold, sans-serif;
  text-align: left;
}
table th span {
  font-size: 16px;
  line-height: 23px;
  font-family: "paralucent medium", sans-serif;
}
table td {
  text-align: right;
  font-size: 19px;
  font-family: "paralucent medium", sans-serif;
}

.about {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}
.about .about-img {
  float: left;
  padding: 10px;
}
.about .about-text {
  display: inline;
}
.about .about-text p {
  font-size: 18px;
  font-family: "paralucent", sans-serif;
  color: #013059;
  line-height: 33px;
}

.entry-content {
  max-width: 750px;
  margin: 0 auto;
}
.entry-content p {
  font-family: "paralucent", sans-serif;
  font-size: 16px;
  line-height: 30px;
  color: #013059;
  text-align: center;
}
.entry-content .gform_wrapper {
  margin-left: 10%;
  margin-right: 10%;
}
.entry-content .gform_wrapper label {
  color: #013059;
  font-family: "paralucent", sans-serif;
}
.entry-content .gform_footer input[type=submit] {
  color: white;
  background: #E11F26;
  border-radius: 20px;
  font-family: "cubano", sans-serif;
  width: 6.5em !important;
  height: 2.25em;
}

.catering-section {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  justify-content: center;
  clear: both;
}
.catering-section .full-width {
  width: 100%;
}

.catering-list {
  float: left;
  width: 43%;
  padding: 10px;
  font-family: "paralucent medium", sans-serif;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
}
.catering-list .price-lable {
  font-size: 18px;
}
.catering-list:nth-child(2) {
  padding-left: 60px;
}

.catering-info {
  font-family: "paralucent medium", sans-serif;
  font-size: 20px;
  line-height: 22px;
  color: #013059;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding-top: 30px;
}

.aligncenter {
  max-width: 750px;
  display: block;
  text-align: center;
  margin: 0 auto;
  width: 95%;
  height: 95%;
}

.page-content-width .text-center {
  font-family: "cubano", sans-serif;
  margin-bottom: 0;
}
.page-content-width p {
  font-size: 18px;
  font-family: "paralucent", sans-serif;
  color: #013059;
  line-height: 30px;
}

#section1 .yellowbg .box a {
  color: #013059;
}
#section1 .yellowbg .box .box-title {
  width: 400px;
  font-family: "paralucent", sans-serif;
  font-size: 20px;
}
#section1 .yellowbg .box img {
  left: 50%;
  top: 50px;
}

.map-buttons {
  margin-top: 20px;
  text-align: center;
}
.map-buttons .map-button {
  font-family: "cubano", sans-serif;
  background-color: #E11F26;
  text-align: center;
  border: none;
  width: 150px;
  border-radius: 50px;
  padding: 7px 20px;
  text-decoration: none;
  margin: 10px 2px;
  cursor: pointer;
  color: white;
}

#gform_confirmation_message_1 {
  font-size: 18px;
  font-family: "cubano", sans-serif;
  color: #013059;
  text-align: center;
  margin: 50px 20px;
}

section.top-boxes .yellowbg .menu-box .box-title h2 {
  font-size: 43px !important;
}
section .specials h2 {
  display: block !important;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
section .specials p {
  font-size: 18px;
  color: #013059;
  margin: 20px 25px;
  font-family: "cubano", sans-serif;
}

@media screen and (max-width: 47.9375em) {
  header .logo {
    width: 30%;
    left: calc(20% - 70px);
  }
  header .hero {
    height: 250px;
  }
  header .hero .hero-text {
    padding: 20px;
  }
  header .hero .hero-text h1 {
    font-size: 2rem;
  }
  header .hero .hero-text .txt-overlay {
    font-size: 1rem;
    max-width: 50%;
  }
  header .top {
    position: relative;
    padding: 20px;
    /*
    * Spin
    */
  }
  header .top .hamburger {
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
  }
  header .top .hamburger:hover {
    opacity: 0.7;
  }
  header .top .hamburger.is-active:hover {
    opacity: 0.7;
  }
  header .top .hamburger.is-active .hamburger-inner,
header .top .hamburger.is-active .hamburger-inner::before,
header .top .hamburger.is-active .hamburger-inner::after {
    background-color: #000;
  }
  header .top .hamburger-box {
    width: 50px;
    display: inline-block;
    position: absolute;
    right: 0;
    padding: 0;
  }
  header .top .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
  }
  header .top .hamburger-inner, header .top .hamburger-inner::before, header .top .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
  }
  header .top .hamburger-inner::before, header .top .hamburger-inner::after {
    content: "";
    display: block;
  }
  header .top .hamburger-inner::before {
    top: -10px;
  }
  header .top .hamburger-inner::after {
    bottom: -10px;
  }
  header .top .hamburger--spin .hamburger-inner {
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  header .top .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  }
  header .top .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  header .top .hamburger--spin.is-active .hamburger-inner {
    transform: rotate(225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  header .top .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  }
  header .top .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  header .menu-main-menu-container {
    background: #FFED35;
    padding: 25px 0;
    display: none;
    position: absolute;
    width: 100%;
    z-index: 9;
  }
  header .menu-main-menu-container li {
    display: block;
    list-style-type: none;
    padding: 20px 0;
  }
  header .menu-main-menu-container li .sub-menu {
    background-color: #fff;
    width: 100%;
    padding: 0;
    margin: 20px 0 0 0;
    text-align: center;
    float: none;
    position: relative;
  }
  header .menu-main-menu-container li a, header .menu-main-menu-container li a span {
    text-decoration: none;
  }
  header .menu-main-menu-container li a:hover, header .menu-main-menu-container li a:active, header .menu-main-menu-container li a span:hover, header .menu-main-menu-container li a span:active {
    text-decoration: none;
  }

  #section1, #section2, #section3, #section4 {
    flex-direction: column;
    align-items: center;
  }
  #section1 .yellowbg, #section2 .yellowbg, #section3 .yellowbg, #section4 .yellowbg {
    max-width: 350px;
    margin: 20px auto;
    width: 100%;
  }
  #section1 .yellowbg .menu-box, #section2 .yellowbg .menu-box, #section3 .yellowbg .menu-box, #section4 .yellowbg .menu-box {
    width: 100%;
  }

  #section2 .yellowbg .menu-box .box-title h2 {
    font-size: 30px !important;
    line-height: 35px !important;
  }
  #section2 .yellowbg .menu-box .box-title h3 {
    font-size: 22px;
  }

  #section1, #section3 {
    left: 6px;
  }
  #section1 .yellowbg, #section3 .yellowbg {
    height: 255px;
  }
  #section1 .yellowbg .box, #section3 .yellowbg .box {
    min-height: 250px;
    top: -15px;
    left: -20px;
  }
  #section1 .yellowbg .box img, #section3 .yellowbg .box img {
    max-width: 60%;
    height: auto;
    position: relative;
    top: 80px;
  }
  #section1 .yellowbg .box .box-title, #section3 .yellowbg .box .box-title {
    display: inline-block;
    position: absolute;
    padding-left: 20px;
  }
  #section1 .yellowbg .box .box-title h3, #section3 .yellowbg .box .box-title h3 {
    font-size: 16px;
    line-height: normal;
    padding-top: 10px;
  }
  #section1 .yellowbg .box .cater-button, #section3 .yellowbg .box .cater-button {
    left: 5%;
    top: 70%;
  }

  #section4 .hours {
    width: 350px;
  }
  #section4 .hours .shape {
    width: 350px;
  }
  #section4 .hours .shape .model-box {
    position: relative;
    width: 350px;
  }
  #section4 .hours .shape .model-box table {
    left: 35px;
  }
  #section4 .hours .shape .model-box table th, #section4 .hours .shape .model-box table tr {
    font-size: 15px;
  }
  #section4 .map {
    margin-top: 10%;
  }
  #section4 .map #map {
    width: 350px;
    margin: 0 auto;
  }

  .menu-list {
    float: none;
    width: 100%;
    padding: 10px;
  }
  .menu-list:nth-child(2) {
    padding-left: 0;
    padding: 10px;
  }

  footer {
    overflow: hidden;
  }
  footer .column {
    padding-top: 0px;
  }
  footer .left {
    width: 100%;
  }
  footer .left img {
    float: none;
    padding: 10px;
    padding-top: 8%;
  }
  footer .middle {
    width: 25%;
  }
  footer .right {
    width: 60%;
    position: relative;
    left: 80px;
  }
  footer .right .address a[href^=tel] {
    color: white;
    text-decoration: none;
  }

  .catering-list {
    float: none;
    width: 100%;
    padding: 10px;
  }
  .catering-list:nth-child(2) {
    padding-left: 0;
    padding: 10px;
  }

  .menu_row {
    width: 90%;
  }

  #section1 .yellowbg .box .box-title {
    width: 190px;
    font-size: 16px;
  }
  #section1 .yellowbg .box .box-title .specials-heading {
    height: 20px;
  }

  .menu-img {
    left: 15% !important;
  }
}
@media screen and (min-width: 48em) {
  .section {
    max-width: 1025px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 48em) and (max-width: 64em) {
  header .hero .hero-text {
    padding-left: 6rem;
    padding-bottom: 5rem;
  }
  header .hero .hero-text h1 {
    line-height: 5rem;
  }
  header .hero .hero-text .txt-overlay {
    line-height: 3rem;
    max-width: 80%;
  }
  header .top {
    padding: 20px;
    /*
    * Spin
    */
  }
  header .top .hamburger {
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
  }
  header .top .hamburger:hover {
    opacity: 0.7;
  }
  header .top .hamburger.is-active:hover {
    opacity: 0.7;
  }
  header .top .hamburger.is-active .hamburger-inner,
header .top .hamburger.is-active .hamburger-inner::before,
header .top .hamburger.is-active .hamburger-inner::after {
    background-color: #000;
  }
  header .top .hamburger-box {
    width: 50px;
    display: inline-block;
    position: absolute;
    right: 0;
    padding: 0;
  }
  header .top .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
  }
  header .top .hamburger-inner, header .top .hamburger-inner::before, header .top .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
  }
  header .top .hamburger-inner::before, header .top .hamburger-inner::after {
    content: "";
    display: block;
  }
  header .top .hamburger-inner::before {
    top: -10px;
  }
  header .top .hamburger-inner::after {
    bottom: -10px;
  }
  header .top .hamburger--spin .hamburger-inner {
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  header .top .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  }
  header .top .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  header .top .hamburger--spin.is-active .hamburger-inner {
    transform: rotate(225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  header .top .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  }
  header .top .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  header .menu-main-menu-container {
    background: #FFED35;
    padding-top: 15px;
    margin-bottom: 15px;
    display: none;
  }
  header .menu-main-menu-container li {
    display: block;
    list-style-type: none;
    padding-left: 0;
    padding-right: 0;
  }
  header .menu-main-menu-container li .sub-menu {
    background-color: #fff;
    width: 100%;
    padding: 0;
    margin: 20px 0 0 0;
    text-align: center;
    float: none;
    position: relative;
  }
  header .menu-main-menu-container li a, header .menu-main-menu-container li a span {
    text-decoration: none;
  }
  header .menu-main-menu-container li a:hover, header .menu-main-menu-container li a:active, header .menu-main-menu-container li a span:hover, header .menu-main-menu-container li a span:active {
    text-decoration: none;
  }

  .section {
    max-width: 750px;
    margin: 0 auto;
  }

  #section1, #section2, #section3, #section4 {
    flex-direction: column;
    align-items: center;
    top: 50px;
  }

  #section1, #section3 {
    max-width: 20px;
  }
  #section1 .yellowbg, #section3 .yellowbg {
    width: 482px;
    height: 255px;
  }
  #section1 .yellowbg .box, #section3 .yellowbg .box {
    width: 482px;
    min-height: 250px;
  }
  #section1 .yellowbg .box img, #section3 .yellowbg .box img {
    max-width: 60%;
    height: auto;
    position: relative;
    top: 80px;
  }
  #section1 .yellowbg .box .box-title, #section3 .yellowbg .box .box-title {
    padding-left: 20px;
  }
  #section1 .yellowbg .box .box-title h3, #section3 .yellowbg .box .box-title h3 {
    font-size: 18px;
    line-height: normal;
    padding-top: 10px;
  }
  #section1 .yellowbg .box .cater-button, #section3 .yellowbg .box .cater-button {
    left: 5%;
    top: 70%;
  }

  #section4 .map {
    padding-top: 5%;
  }
  #section4 .map #map {
    width: 482px;
  }
  #section4 .hours .shape {
    width: 482px;
    height: 100px;
  }
  #section4 .hours .shape .model-box {
    position: relative;
    width: 482px;
    top: -8px;
    left: -8px;
  }
  #section4 .hours .shape .model-box table {
    left: 55px;
  }
  #section4 .hours .shape .model-box table th, #section4 .hours .shape .model-box table tr {
    font-size: 21px;
  }

  footer .left {
    width: 30%;
  }
  footer .middle {
    width: 30%;
  }
  footer .right {
    width: 30%;
  }

  #section1 .yellowbg .box .box-title {
    width: 250px;
    font-size: 17px;
  }
}
@media screen and (min-width: 64.0625em) and (max-width: 87.5em) {
  header nav {
    display: block !important;
  }
  header .top {
    width: 100%;
    height: 125px;
  }
  header .top .logo {
    display: block;
    position: static;
    margin: 0 auto;
    width: 300px;
    padding: 10px;
  }
  header .hamburger {
    display: none;
  }
  header .hero .hero-text h1 {
    font-size: 4rem;
  }
  header .hero .hero-text .txt-overlay {
    font-size: 2rem;
  }

  #section4 .hours {
    padding-right: 6%;
  }
  #section4 .hours .shape {
    position: relative;
  }
  #section4 .hours .shape .model-box {
    position: absolute;
  }
}
@media screen and (min-width: 78.125em) {
  #section1, #section2, #section3, #section4 {
    top: 20px;
  }

  #section4 .hours .shape {
    position: relative;
  }
  #section4 .hours .shape .model-box {
    position: absolute;
  }
}
@media screen and (min-width: 87.5em) {
  header nav {
    display: block !important;
  }
  header .logo {
    width: 20%;
    top: 1%;
    left: calc(10% - 90px);
  }
  header .hamburger {
    display: none;
  }
  header .hero {
    height: 650px;
  }

  .section {
    max-width: 1025px;
    margin: 0 auto;
  }

  #section4 .hours {
    padding-right: 6%;
  }
}
