body {
  font-family: Poppins, sans-serif;
  color: #636668;
  font-size: 18px;
  line-height: 26px;
}

h1 {
  margin-top: 0px;
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
  color: #212122;
  font-size: 60px;
  line-height: 75px;
  font-weight: 700;
}

h2 {
  margin-top: 0px;
  margin-bottom: 20px;
  color: #212122;
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #212122;
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
}

p {
  margin-top: 10px;
  margin-bottom: 20px;
}

a {
  color: #8ec34c;
  text-decoration: none;
}

.hero-section {
  height: 94vh;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(34%, #fff), to(#f4f4f4));
  background-image: linear-gradient(180deg, #fff 34%, #f4f4f4);
}

.container {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.nav-wrapper {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section.light-gray-bg {
  background-color: #f4f4f4;
}

.paragraph-medium {
  font-size: 16px;
  line-height: 22px;
}

.button {
  height: 55px;
  padding: 14px 30px;
  border-radius: 100px;
  background-color: #c40c1f;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;
}

.button:hover {
  background-color: rgba(142, 195, 76, 0.85);
}

.button.medium {
  height: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 15px;
  line-height: 20px;
}

.button.white {
  background-color: #fff;
  color: #8ec34c;
}

.hyperlink {
  text-decoration: underline;
}

.flex-hero {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.hero-copy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 644px;
  padding-right: 20px;
  padding-left: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.hero-rating {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 90px;
  padding: 24px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: #fff;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 5px 0 14px -8px rgba(0, 0, 0, 0.12);
}

.hero-rating.hide {
  display: none;
}

.rating-number {
  margin-right: 12px;
  color: #212122;
  font-size: 36px;
  line-height: 36px;
  font-weight: 700;
}

.star-icon {
  margin-right: 2px;
  margin-left: 2px;
}

.star-icon.small {
  width: 20px;
}

.hero-image {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 43%;
  height: 94vh;
  background-image: url('../images/Pizza-FB-Cover-Pic.png');
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  height: 89vh;
  padding-top: 60px;
  padding-bottom: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.hero-subhealine {
  margin-bottom: 30px;
}

.center-aligned {
  text-align: center;
}

.dishes-wrapper {
  display: -ms-grid;
  display: grid;
  margin-top: 50px;
  grid-auto-columns: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.dish-item {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 22px 0 rgba(0, 0, 0, 0.06);
}

.dish-image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.dish-pic-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  max-height: 300px;
  max-width: 392px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  -o-object-fit: fill;
  object-fit: fill;
}

.disch-title-wrapper {
  padding: 30px;
}

.dish-title {
  margin-top: 0px;
  margin-bottom: 0px;
}

.cta-centered {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 40px;
}

.copy-wrapper {
  width: 46%;
}

.image-container {
  overflow: hidden;
  width: 48%;
  border-radius: 20px;
}

.testimonial-author {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-weight: 700;
}

.verified-client-badge {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 15px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.testimonials-slider {
  overflow: hidden;
  height: auto;
  max-width: 100%;
  margin: 50px auto;
  background-color: transparent;
}

.testimonial-slide {
  width: 100%;
  max-width: 600px;
  margin-right: 15px;
  margin-left: 15px;
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 14px 54px -33px rgba(0, 0, 0, 0.2);
}

.testimonials-mask {
  overflow: visible;
  max-width: none;
  margin-bottom: 90px;
  padding-bottom: 0px;
  background-color: transparent;
}

.stars-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.slider-dots {
  overflow: visible;
  margin-top: 0px;
}

.display-none {
  display: none;
}

.verified-client-text {
  margin-left: 5px;
  color: #1cc286;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.star-icon-2 {
  margin-right: 5px;
}

.testimonial-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  min-height: 190px;
  margin-top: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.author {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #212122;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
}

.written-testimonial-text {
  margin-bottom: 10px;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}

.written-testimonial-text.showlesscontent {
  margin-bottom: 20px;
  color: #636668;
}

.banner {
  margin-top: 120px;
  border-radius: 20px;
  background-color: #8ec34c;
}

.flex-banner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.banner-copy {
  width: 50%;
  padding: 60px 20px 60px 80px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.banner-headline {
  color: #fff;
  font-size: 40px;
  line-height: 50px;
  font-weight: 400;
}

.banner-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background-image: url('../images/Pizza-FB-Cover-Pic.png');
  background-position: 50% 50%;
  background-size: cover;
}

.banner-triangle {
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

.footer {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #212122;
}

.footer-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.copyright-text {
  margin-top: 20px;
  color: hsla(0, 0%, 100%, 0.6);
  font-size: 12px;
  line-height: 16px;
}

.footer-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  grid-column-gap: 10px;
}

.utility-page-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 260px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.utility-page-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

@media screen and (min-width: 1440px) {
  .testimonial-slide {
    padding: 30px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 50px;
    line-height: 65px;
  }

  h2 {
    font-size: 40px;
    line-height: 50px;
  }

  .hero-section {
    height: auto;
  }

  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section.light-gray-bg {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-copy {
    height: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }

  .hero-image {
    position: static;
    width: 100%;
    height: 70vh;
    max-height: 500px;
    background-position: 50% 50%;
    background-size: cover;
  }

  .hero-wrapper {
    width: 100%;
    height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .disch-title-wrapper {
    padding: 20px;
  }

  .testimonial-slide {
    padding: 25px;
  }

  .testimonial-container {
    height: auto;
    min-height: 190px;
  }

  .banner-copy {
    padding-top: 20px;
    padding-bottom: 30px;
    padding-left: 40px;
  }

  .footer {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 42px;
    line-height: 52px;
  }

  .hero-section {
    background-image: none;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.light-gray-bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-image {
    background-position: 50% 50%;
  }

  .hero-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .dishes-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

  .dish-title {
    font-size: 20px;
    line-height: 28px;
  }

  .flex-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .copy-wrapper {
    width: 100%;
    margin-bottom: 20px;
  }

  .image-container {
    width: 100%;
  }

  .testimonial-slide {
    margin-right: 8px;
    margin-left: 8px;
  }

  .testimonials-mask {
    max-width: 88%;
  }

  .testimonial-container {
    height: auto;
    min-height: 200px;
  }

  .author {
    font-size: 15px;
    line-height: 19px;
  }

  .written-testimonial-text {
    font-size: 15px;
    line-height: 22px;
  }

  .flex-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .banner-copy {
    width: 100%;
    padding-left: 20px;
    text-align: center;
  }

  .banner-image {
    width: 100%;
    height: 300px;
    max-height: 300px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 20px;
    background-position: 50% 50%;
  }

  .banner-triangle-img {
    display: none;
  }

  .footer {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .logo {
    max-width: 160px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    line-height: 48px;
  }

  h2 {
    margin-top: 0px;
    font-size: 36px;
    line-height: 44px;
  }

  .nav-wrapper {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .button.medium {
    height: 36px;
    padding-right: 18px;
    padding-left: 18px;
    font-size: 14px;
    line-height: 18px;
  }

  .dishes-wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .testimonials-slider {
    margin-top: 30px;
  }

  .testimonial-slide {
    margin-right: 5px;
    margin-left: 5px;
    padding: 20px;
  }

  .testimonials-mask {
    max-width: 90%;
    padding-right: 10px;
  }

  .testimonial-container {
    height: auto;
    min-height: 220px;
  }

  .written-testimonial-text {
    font-size: 14px;
    line-height: 20px;
  }

  .banner-copy {
    padding-top: 30px;
  }

  .banner-headline {
    font-size: 36px;
    line-height: 44px;
  }

  .footer-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer-right-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .logo {
    max-width: 120px;
  }
}

#w-node-_0253dd4d-82f9-59d9-3761-a73295a0ccba-88b66307 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_177de941-2cbb-2cb7-dcee-0c42e89fbcaa-88b66307 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.woff2') format('woff2'), url('../fonts/Poppins-Bold.eot') format('embedded-opentype'), url('../fonts/Poppins-Bold.woff') format('woff'), url('../fonts/Poppins-Bold.ttf') format('truetype'), url('../fonts/Poppins-Bold.svg') format('svg');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.woff2') format('woff2'), url('../fonts/Poppins-Regular.eot') format('embedded-opentype'), url('../fonts/Poppins-Regular.woff') format('woff'), url('../fonts/Poppins-Regular.ttf') format('truetype'), url('../fonts/Poppins-Regular.svg') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}