body {
  margin: 0;
}

h1 {
  font-size: 48px;
  color: #fff;
  font-family: "EB Garamond", serif;
  font-weight: 500;
  text-shadow: 1.5px 1.5px 12px #000;
}

h2 {
  font-size: 38px;
  color: #000;
  margin-bottom: 0;
  font-family: "EB Garamond", serif;
  line-height: 1.5em;
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 22px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  line-height: 2em;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 20px;
  }
}

p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 2em;
  color: #fff;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover {
  color: #EA1C2D;
}

.cta-button:hover {
  color: #fff !important;
}

header {
  background-color: #EDEAE9;
  position: sticky;
  top: 0;
  z-index: 10000;
  border-bottom: 1px solid #b5b5b5;
}

header a {
  color: #000;
}

.header-container {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  width: 16%;
}

.logo img {
  max-width: 160px;
}

ul {
  margin-block: 0 !important;
  margin-inline: 0;
  padding-inline-start: 0 !important;
}

.cta-button-box {
  width: 33%;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
}

.cta-button {
  padding: 10px 30px;
  background-color: #E71A21;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.cta-button-box .cta-button {
  padding: 8px 14px;
  background-color: #E71A21;
  font-size: 18px;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47%;
}

.navigation {
  font-family: "EB Garamond", serif;
  display: flex;
  list-style: none;
  gap: 22px;
  justify-content: center;
}

.navigation li {
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
}

.navigation .sub-menu li {
  padding: 0;
}

.navigation li a:hover {
  color: #EA1C2D;
}

.navigation li a.active {
  color: #EA1C2D;
}

.has-sub-menu {
  position: relative;
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #EDEAE9;
  border: 1px solid #626262;
  z-index: 999;
  list-style: none;
  width: max-content;
  min-width: 200px;
  font-size: 16px;
}

.sub-menu li a {
  display: block;
  max-width: 100%;
  padding: 12px;
  line-height: 1.7em;
}

.navigation .has-sub-menu a:hover {
  border-bottom: none;
  color: #EA1C2D;
}

.sub-menu li {
  border-bottom: 1px solid #626262;
}

.has-sub-menu i {
  font-size: 12px;
  color: #000;
}

.has-sub-menu:hover .sub-menu {
  display: block;
}

.hamburger-icon {
  display: none;
  border: none;
  background-color: transparent;
}

.hamburger-icon .fa-bars,
.hamburger-icon .fa-x {
  color: #000;
  font-size: 22px;
  cursor: pointer;
}

.hamburger-icon input[type="checkbox"] {
  appearance: none;
}

.dropdown-box {
  display: none;
}

.mobile-sub-menu {
  display: none;
}

.mobile-menu {
  display: none;
}

.text-header-mobile {
  display: none;
}

.cta-button-box p {
  font-family: "EB Garamond", serif;
  color: #000;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .menu {
    font-size: 16px;
    width: 10%;
    padding-left: 30px;
  }

  .desktop-menu {
    display: none;
  }

  .mobile-menu {
    width: 10% !important;
    display: flex;
    justify-content: flex-start;
    order: 1;
  }

  .logo {
    width: 35%;
    display: flex;
    justify-content: center;
    padding-left: 0;
    order: 3;
  }

  .logo a {
    max-width: 100%;
  }

  .logo img {
    position: relative;
    margin: 0;
  }

  .cta-button-box {
    order: 2;
  }

  .cta-button-header {
    font-size: 14px !important;
    padding: 6px 14px !important;
  }

  .navigation {
    font-family: "Roboto", sans-serif;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    transition: max-height ease-in-out 0.5s;
    position: absolute;
    background-color: #EA1C2D;
    top: 100%;
    align-items: flex-start;
    width: 100%;
    left: 0;
    gap: 0;
  }

  .navigation li {
    border-bottom: 1px solid #fff;
    width: 100%;
    padding-top: 2px;
    padding-bottom: 2px;
    font-size: 16px;
  }

  .navigation li a {
    width: 100%;
    display: block;
    padding: 7px 25px;
    color: #fff;
  }

  li:has(.active) {
    background-color: #eacac4;
  }

  .navigation li a:hover {
    border: unset;
    color: #fff;
  }

  .hamburger-icon {
    display: block;
  }

  .fa-x {
    display: none !important;
  }

  header:has(.hamburger-icon input[type="checkbox"]:checked) .navigation {
    margin-top: 1rem;
    display: flex;
    max-height: 600px;
    border-top: 1px solid #aaaaaa;
    border-bottom: 1px solid #aaaaaa;
  }

  header:has(.hamburger-icon input[type="checkbox"]:checked) .fa-bars {
    display: none;
  }

  header:has(.hamburger-icon input[type="checkbox"]:checked) .fa-x {
    display: inline-block !important;
  }

  .has-sub-menu .desktop-icon {
    display: none;
  }

  .dropdown-box {
    display: block;
    width: 10%;
    transition: all ease-in 1s;
  }

  #mobile-dropdown-button {
    appearance: none;
    background: transparent;
    border: none;
  }

  #mobile-dropdown-button i {
    font-size: 18px;
  }

  .mobile-sub-menu {
    display: none;
    background-color: #EDEAE9;
    border: none;
    width: 100%;
  }

  .mobile-sub-menu li a {
    color: #000;
  }

  .dropdown-box i {
    color: #000;
  }

  .header-top-bar {
    gap: 10%;
  }

  .header-container {
    justify-content: space-between;
  }

  .text-header-mobile {
    display: block;
    width: 60%;
    font-weight: 500;
  }

  .text-header-mobile p {
    font-size: 14px;
  }

  .has-sub-menu {
    display: flex;
    align-items: center;
  }

  .sub-menu {
    width: 100%;
  }

  .cta-button-header {
    display: none;
  }

  .has-sub-menu i {
    color: #fff;
  }
}

@media screen and (max-width: 600px) {
  .logo img {
    max-width: 90%;
  }

  .menu {
    padding-left: 10px;
  }

  .cta-button-box {
    width: 50%;
  }

  .cta-button-box p {
    text-align: start;
  }

  .logo {
    padding-right: 5px;
    padding-left: 5px;
  }
}

.red-background {
  background-color: #EA1C2D;
}

.gray-background {
  background-color: #EDEAE9;
}

.black-button {
  background-color: #000;
}

.top-banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}


.title-box {
  width: 30%;
}

.content-parts-full-width {
  width: 100%;
}

.content-parts {
  max-width: 1200px;
  margin: 50px auto;
  text-align: left;
  padding: 0 5%;
}

.content-parts ul li {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 2em;
  color: #000;
  margin-left: 30px;
}

.two-columns {
  display: flex;
}

.two-columns .col-1, .two-columns .col-2 {
  width: 50%;
}

.two-columns .w-60 {
  width: 60%;
}

.two-columns .w-40 {
  width: 40%;
}

.two-columns .w-70 {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.two-columns .w-30 {
  width: 30%;
}

@media screen and (max-width: 1024px) {
  .top-banner {
    height: 50vh;
  }
}

@media screen and (max-width: 600px) {
  .two-columns {
    flex-direction: column;
    justify-content: center;
  }

  .two-columns .col-1, .two-columns .col-2 {
    width: 100%;
  }

  .cta-button {
    padding: 10px 18px;
    font-size: 18px;
  }

  .content-parts {
    padding: 0 5%;
    margin: 35px auto;
  }
}

.w-60 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.two-columns .w-40 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.two-columns .w-60 p {
  width: 93%;
}

.two-columns .w-40 img {
  width: 100%;
}

.cta-container {
  margin-top: 30px;
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
  .two-columns .w-60 p {
    width: 100%;
  }
}

#employment-pic figure {
  margin-block: 0;
  margin-inline: 0;
}

#catering-banner {
  background-image: url("/assets/images/catering-slider.webp");
}

.desktop-top-right-title-box h1 {
  margin-right: 80px;
}

#catering-page .cta-container {
  margin: 40px 0 0 15px;
}

#catering-page h2 {
  color: #fff;
}

.desktop-top-right-title-box {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 1024px) {
  .desktop-top-right-title-box h1 {
    margin-right: 20px;
    margin-top: 18px;
  }
}

@media screen and (max-width: 600px) {
  .content-parts ul li {
    margin-left: 15px;
  }

  #catering-page .cta-container {
    margin: 40px 0;
  }

  #catering-page h2 {
    font-size: 22px;
  }
}

#contact-banner {
  background-image: url("/assets/images/contact-us-slider.webp");
}

.form-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact-form h2 {
  margin-block: 0;
  margin-bottom: 20px;
}

.forms {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.forms input, .forms textarea {
  width: 100%;
  padding: 12px 0 12px 26px;
  margin: 10px 0;
  border: none;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.5px;
  font-size: 16px;
  font-weight: 500;
}

.forms textarea {
  min-height: 100px;
}

.forms input:focus, .forms textarea:focus {
  outline: none;
}

.forms .submit-button {
  width: 50%;
  cursor: pointer;
  font-weight: 400;
  padding: 10px;
  margin-top: 5px;
  border: none;
}

#work-time {
  display: flex;
  gap: 35px;
}

.mobile-only #work-time {
  justify-content: center;
  text-align: left;
}

.lower-width {
  width: 80%;
}

::placeholder {
  color: #000;
}

input, textarea {
  color: #000;
}

.mobile-only {
  display: none !important;
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
  #contact-pic {
    height: 300px;
    margin: auto;
  }
}

@media screen and (max-width: 600px) {

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  .forms {
    width: 90%;
    margin-top: 10px;
  }

  .forms .submit-button {
    width: 100%;
  }

  .form-box h2 {
    margin: 15px 0;
    text-align: center;
  }

  #contact-pic {
    margin-top: 40px;
    height: 243px;
  }
}

#email-list-banner {
  background-image: url("/assets/images/email-list-slider.webp");
  background-position: top;
}

.social-media-section {
  display: flex;
  flex-direction: column;
}

.social-media-column {
  display: flex;
  gap: 10px;
}

.social-media-section i {
  font-size: 25px;
  color: #fff;
}

.social-media-section p {
  font-family: "Alegreya", serif;
  font-size: 20px;
  font-weight: 600;
}

.social-media-section .social-box {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  padding: 6px;
  border-radius: 4px;
  width: 26px;
  height: 26px;
  border: 1px solid #fff;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

#email-form {
  text-align: center;
}

#email-form p {
  font-size: 20px;
  width: 55%;
}

@media screen and (max-width: 1024px) {
  #email-form p {
    width: 75%;
  }
}

@media screen and (max-width: 600px) {
  #email-list-banner {
    background-position: right;
  }

  #email-form h2 {
    font-size: 24px;
  }

  #email-form p {
    width: 98%;
  }
}

#reservations-banner {
  background-image: url("/assets/images/reservations-slider.webp");
  justify-content: center;
  align-items: center;
}


.desktop-center-title-box p {
  font-size: 30px;
  margin-block-start: 0;
}

.desktop-center-title-box .cta-button {
  background-color: #034C5C;
}

@media screen and (max-width: 600px) {

  .desktop-center-title-box h1 {
    margin-block-end: 0;
  }

  .desktop-center-title-box p {
    font-size: 24px;
  }

  .desktop-center-title-box {
    width: 95%;
  }
}

#happy-hour-banner {
  background-image: url("/assets/images/happy-hour-banner.webp");
}

@media screen and (min-width: 1024px) {
  #happy-hour-banner {
    height: 94vh;
    background-position: 0 60%;
  }
}


@media screen and (max-width: 1024px) {
  #happy-hour-banner {
    background-position: 90% 70%;
  }
}

@media screen and (max-width: 600px) {
  #happy-hour-banner {
    background-position: center;
  }
}

@media screen and (max-width: 600px) {
  #happy-hour-banner h1 {
    width: 100%;
    line-height: 1.5em;
    text-align: center;
    margin-block-end: 0 !important;
  }
}

#happy-hour-days {
  justify-content: flex-start;
  align-items: flex-end;
  flex-direction: column;
}

#happy-hour-days h1 {
  margin-block-end: 0.5em;
  margin-right: 0;
  text-align: center;
}

#happy-hour-days p {
  font-size: 34px;
  font-weight: 500;
  text-shadow: 1.5px 1.5px 12px #000;
  text-align: center;
  margin-inline: 0;
  margin-block: 0;
  line-height: 1.5em;
}

.desktop-bottom-left-title-box {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.desktop-bottom-left-title-box h1 {
  margin-left: 80px;
}

#happy-menu-time {
  font-family: "Alegreya", serif;
  font-size: 30px;
  text-align: center;
  line-height: 1.5em;
}

@media screen and (max-width: 1024px) {
  .desktop-bottom-left-title-box h1 {
    margin-left: 20px;
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 600px) {
  #happy-menu-time {
    width: 80%;
    margin: auto auto;
    font-size: 24px;
  }

}

#home-page-banner {
  background-image: url("/assets/images/home-top-banner.webp");
}

@media screen and (min-width: 1024px) {
  height: 90vh;
}

#home-page-banner h1 {
  font-family: "EB Garamond", serif;
  font-style: italic;
  font-size: 58px;
}

@media screen and (min-width: 1024px) {
  #home-page-banner {
    background-position: 0 75%;
  }
}

@media screen and (max-width: 600px) {
  #home-page-banner {
    background-position: 20% 0;
  }
}

.desktop-top-left-title-box {
  width: 80%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-left: 80px;
}

@media screen and (max-width: 1024px) {
  #home-page-banner h1 {
    font-size: 38px;
  }

  .desktop-top-left-title-box {
    margin-left: 10px;
  }
}

#top-button .cta-button {
  padding: 12px 30px;
}

@media screen and (max-width: 600px) {
  #top-button .cta-button {
    padding: 10px 24px;
  }
}

#below-slider-banner {
  background-image: url("/assets/images/marios-seawall-restaurant-the-best.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom right;
  height: 60vw;
}

.below-slider {
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 5% 50px 5%;
  margin: 0 auto;
  position: relative;
}

.below-slider-c-70 {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -50px;
}

.below-slider-c-30 {
  width: 30%;
}

#below-slider-itemes {
  display: flex;
  gap: 20px;
}

#below-slider-itemes .desktop-only {
  display: flex;
  gap: 35px;
}

#below-slider-itemes li {
  font-family: "EB Garamond", serif;
  font-size: 24px;
  font-weight: 600;
}

.below-slider h2 {
  color: #000;
  margin-block-start: 0;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 600;
}

.below-slider p {
  color: #000;
  font-family: "EB Garamond", serif;
  font-style: italic;
  font-size: 40px;
  font-weight: 600;
  margin-block: 0;
}

.below-slider span {
  font-style: normal;
}

.below-slider li {
  color: #000;
  font-family: "EB Garamond", serif;
  font-style: italic;
  margin-left: 20px;
  font-weight: 500;
  font-size: 20px;
  text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
  #below-slider-banner {
    height: 52vh;
  }

  .below-slider-c-70 {
    margin-top: -50px;
  }

  .below-slider h2 {
    font-size: 28px;
  }

  #below-slider-itemes li {
    font-size: 22px;
  }
}

@media screen and (max-width: 600px) {
  #below-slider-banner {
    height: 60vh;
  }

  #below-slider-itemes img {
    width: 80%;
  }

  #below-slider-itemes figure {
    margin-block: 0;
    margin-inline: 0;
    width: 50%;
  }

  .below-slider-c-70 {
    width: 100%;
  }

  .below-slider-c-70 p {
    font-size: 17px;
  }

  .below-slider h2 {
    font-size: 28px;
    width: 90%;
  }

  .below-slider li {
    margin-left: 0 !important;
  }

  #below-slider-itemes li {
    line-height: 1.4em;
    font-size: 16px;
    margin-left: -10px !important;
  }
}

.green-background {
  background-color: #283F38;
}

#galveston-pic figure {
  margin-block: 0;
  margin-inline: 0;
}


#galveston-pic figure {
  text-align: center;
}

#galveston-pic img {
  max-width: 90%;
}

#menus-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#menus-section div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 400px;
  width: 300px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 15px;
}

#lunch-menu-pic {
  background-image: url(/assets/images/lunch-menu-pic.webp);
}

#pizza-menu-pic {
  background-image: url(/assets/images/pizza-menu-pic.webp);
}

#dinner-menu-pic {
  background-image: url(/assets/images/dinner-menu-pic.webp);
}

#sunday-brunch-pic {
  background-image: url(/assets/images/sunday-brunch-pic.webp);
}

#happy-hour-pic {
  background-image: url(/assets/images/happy-hour-menu-pic.webp);
}

#menus-section .cta-button {
  width: 155px;
  padding: 10px 12px;
  text-align: center;
}

@media (max-width: 1024px) and (min-width: 600px) {
  #menus-section {
    flex-wrap: wrap;
    justify-content: center;
  }

  #menus-section div {
    width: 32%;
    margin-bottom: 20px;
  }

  #menus-section div:nth-child(n+4) {
    width: 49%;
  }
}

@media screen and (max-width: 600px) {
  #menus-section {
    flex-wrap: wrap;
    justify-content: center;
  }

  #menus-section div {
    width: 48%;
    margin-bottom: 5px;
    height: 28vh;
  }

  #menus-section div:last-child:nth-child(odd) {
    width: 100%;
  }

  #menus-section .cta-button {
    width: unset;
    max-width: 200px;
    padding: 8px 10px;
  }

  #happy-hour-pic {
    background-image: url(/assets/images/happy-hour-menu-pic-mobile.webp);
    background-position: 0 80% !important;
  }
}

.video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.white-text {
  color: #fff !important;
}

.white-border {
  border: 10px solid #fff;
}

.w-30 figure {
  margin-block: 0;
  margin-inline: 0;
}

.w-30 img {
  width: 100%;
}

#text-section {
  max-width: 840px;
  margin-right: 6%;
}

#text-section p {
  width: 80%;
  margin-bottom: 45px;
  margin-top: 20px;
}

#text-section h2 {
  margin-block: 0;
}

#margin-top {
  margin-top: -10px;
}

.black-text p, .black-text h3 {
  color: #000 !important;
}

#celebrate-in-style {
  background-image: url(/assets/images/celebrate-in-style.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 95vh;
  display: flex;
  justify-content: center;
}

#celebrate-in-style .content-parts {
  padding-top: 55px;
  width: 100%;
  max-width: none;
}

@media screen and (max-width: 600px) {
  #celebrate-in-style .content-parts {
    padding-top: 0;
  }
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  #celebrate-in-style .content-parts {
    margin-top: -8px;
  }
}

#oldest-restaurant {
  display: flex;
  align-items: center;
}

#oldest-restaurant img {
  width: 90%;
}

@media screen and (max-width: 600px) {
  #oldest-restaurant img {
    width: 100%;
  }
}

#oldest-restaurant figure {
  text-align: center;
  margin-inline: 0;
  margin-block: 0;
}

#oldest-restaurant .cta-button {
  display: inline-block;
  margin-top: 15px;
}

#oldest-restaurant h2 {
  margin-block-start: 0;
}

#celebrate-content-box p {
  color: #000;
  font-family: "EB Garamond", serif;
  font-size: 28px;
  font-weight: 500;
  margin-block-start: 0;
  text-shadow: 1.5px 1.5px 4px #00000040;
  line-height: 1.2em;
}

#celebrate-content-box h2 {
  font-style: italic;
}


#celebrate-in-style h2 {
  margin-block-start: 0;
  line-height: 1.3em;
}

#newsletter-section div {
  text-align: center;
}

#newsletter-section p {
  width: 50%;
  margin: 0 auto;
  margin-top: 20px;
}

#newsletter-section .cta-button {
  display: inline-block;
  margin-top: 30px;
}

#gift-card-pic {
  margin: 0 auto;
}

#gift-card-pic .w-40 {
  padding-top: 50px;
  padding-bottom: 50px;
}

#gift-card-pic img {
  width: 100%;
}

#gift-card-pic figure {
  margin-block: 40px;
  margin-inline-start: 0;
}

#gift-card-pic h2 {
  margin-block-start: 0;
}

@media screen and (max-width: 1024px) {
  #gift-card-pic figure {
    margin-block: 40px;
  }

  #newsletter-section p {
    width: 85%;
  }

  #celebrate-in-style {
    height: 45vh;
  }

  #celebrate-content-box {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  #gift-card-pic figure {
    margin-inline: 0;
  }

  #gift-card-pic .w-40 {
    padding-top: unset;
    padding-bottom: 50px;
  }

  #gift-card-pic h2, #gift-card-pic p {
    text-align: center;
    line-height: 1.4em;
  }

  .italic-text {
    margin: 10px auto !important;
  }

  .w-40-text .social-media-section {
    align-items: center;
  }

  .w-40-text h3 {
    text-align: center;
  }

  #newsletter-section p {
    width: unset;
  }

  #celebrate-content-box {
    width: 100%;
    padding-top: unset;
    margin-top: -15px;
  }

  #celebrate-content-box p {
    font-size: 20px;
    line-height: 1.3em;
  }

  #oldest-restaurant {
    text-align: center;
  }

  #oldest-restaurant h2 {
    width: 75%;
    margin: 0 auto;
    margin-top: 20px;
  }
}

.w-40-text h3 {
  font-family: "EB Garamond", serif;
  font-size: 26px;
}

.italic-text {
  font-style: italic;
  font-family: "EB Garamond", serif;
  font-size: 24px;
  margin-block: 5px;
  font-weight: 600;
  width: 80%;
}

.two-pic {
  display: flex;
  gap: 10px;
}

.two-pic img {
  width: 100%;
}

.two-pic figure {
  margin-block: 0;
  margin-inline: 0;
}

.content-container-in-full-width {
  display: flex;
  justify-content: flex-end;
  padding-top: 40px;
  padding-bottom: 80px;
}

.content-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 585px;
  gap: 10px;
  margin-right: 2%;
  margin-left: 2%;
}

.content-box p {
  width: 98%;
}

.content-box h2 {
  margin-block-start: 0;
}

#out-of-width h2 {
  width: 110%;
}

#out-of-width {
  justify-content: center;
}

.white-title {
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .desktop-top-left-title-box h1 {
    margin-left: 20px;
    margin-top: 18px;
  }

  .content-container-in-full-width {
    justify-content: center;
  }

  .content-box {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .content-box p {
    width: 95%;
  }

  #steak-pic {
    top: 30%;
    right: 25%;
  }

  #steak-pic figure {
    text-align: right;
  }

  #home-pic {
    height: 40vh;
  }
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  .below-slider p {
    font-size: 22px;
  }

  .below-slider {
    align-items: start;
    height: 25vw;
  }

  #steak-pic img {
    max-width: 55%;
  }

  #steak-pic {
    right: 28%;
    top: 2%;
  }
}

@media screen and (max-width: 600px) {
  .content-box figure {
    margin-inline: 0;
  }

  #wednesday {
    height: 280px;
  }

  #only-text {
    text-align: center;
  }

  #white-alegreya {
    width: 100%;
    font-size: 22px;
    margin-block-end: 0;
    line-height: 1.5em;
    padding-top: 10px;
  }

  #pink-alegreya {
    font-size: 20px;
    margin-block-start: 0;
  }

  #happy-hour-serve-day {
    height: 40vh;
  }

  #happy-hour-serve-day .content-parts {
    text-align: center;

  }

  .below-slider {
    align-items: start;
    height: 30vh;
  }

  .below-slider p {
    margin-block-end: 0;
  }

  #steak-pic {
    top: 44%;
    right: 5px;
  }

  #steak-pic img {
    max-width: 62%;
  }

  .below-slider-c-70 h2 {
    margin-block-start: 0;
    text-align: center;
  }

  #out-of-width h2 {
    width: 80%;
    margin-top: 20px;
  }
}

#dinner-menu-banner {
  background-image: url("/assets/images/dinner-menu-banner.webp");
}

#meatballs {
  background-image: url(/assets/images/nonnas-meatballs.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 85vh;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 1024px) {
  #meatballs {
    background-position: 0 70%;
  }
}

.gray-text-box {
  background-color: #EDEAE9;
  padding: 30px 10px;
  text-align: center !important;
  width: 70%;
}

.gray-text-box img {
  width: 8vw;
  margin: 0 auto;
  display: block;
}

.gray-text-box p {
  width: 80%;
  margin: 0 auto;
}

.gray-text-box h3 {
  margin-block-start: 0;
}

#make-your-pasta {
  display: flex;
  gap: 20px;
}

#make-your-pasta h3 {
  margin-block-end: 0;
}

#make-your-pasta p {
  margin-block-start: 0;
  font-size: 16px;
  font-weight: 300;
}

.col-20 {
  width: 20%;
}

.col-35 {
  width: 35%;
}

.col-25 {
  width: 25%;
}

#pasta-way{
  display: flex;
  align-items: center;
  justify-content: center;
}

#pasta-way p {
  font-family: "EB Garamond", serif;
  font-style: italic;
  text-align: center;
  font-weight: 800;
  font-size: 45px !important;
  color: #000;
  margin-block: 0;
  line-height: 1.3em;
}

@media screen and (max-width: 600px) {
  #make-your-pasta {
    flex-direction: column;
    gap: 0;
  }

  .col-20 {
    width: 100%;
  }

  .col-35 {
    width: 100%;
  }

  .col-25 {
    width: 100%;
  }

  #pasta-way p {
    font-size: 55px !important;
  }

  .gray-text-box-mobile {
    padding-bottom: 20px;
  }

  .gray-text-box-mobile img {
    width: 25% !important;
    margin: 0 auto;
    display: block;
  }

  .gray-text-box-mobile h3 {
    text-align: center;
    font-size: 22px;
    margin-bottom: -15px !important;
  }

  .gray-text-box-mobile p {
    width: 85% !important;
    text-align: center;
    margin: 15px auto !important;
  }
}

@media screen and (min-width: 1024px) {
  #dinner-menu-banner {
    background-position: 0 55%;
  }
}

.dinner-menu-section img {
  width: 90%;
}

.dinner-menu-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.dinner-menu-section h3 {
  color: #fff;
  margin-left: 45px;
  width: 70%;
  margin-block-end: 0;
}

.dinner-menu-section p {
  margin-left: 45px;
  width: 70%;
  margin-block-start: 0;
}

.dinner-menu-section h4 {
  color: #fff;
  margin-left: 45px;
  width: 70%;
  margin-block-end: 0;
  font-size: 16px;
  font-family: "Alegreya", serif;
  font-weight: 400;
  margin-block-start: 0.5em;
}

.dinner-menu-columns {
  align-items: center;
}


.dinner-menu-columns .w-40 h3, .dinner-menu-columns .w-40 p {
  width: 85%;
}

h2.left-align {
  text-align: left;
  margin-left: 45px;
  margin-block-start: 0;
  margin-block-end: 20px;
}

.dinner-menu-flex-column {
  flex-direction: column;
}

.dinner-menu-flex-column .col-1, .dinner-menu-flex-column .col-2 {
  width: 100% !important;
}

.dinner-menu-section-row {
  display: flex;
}


@media screen and (max-width: 1024px) and (min-width: 600px) {
  .dinner-menu-section img {
    width: 100%;
  }

  .dinner-menu-section h2 {
    margin-bottom: 20px;
  }

  .dinner-menu-section h3 {
    margin-left: 20px;
    width: 90%;
  }

  .dinner-menu-section p {
    margin-left: 20px;
    width: 90%;
  }

  .dinner-menu-section h4 {
    margin-left: 20px;
    width: 90%;
  }

  .dinner-menu-columns figure {
    margin-inline-start: 20px;
  }

  h2.left-align {
    margin-left: 20px;
  }
}

@media screen and (max-width: 600px) {
  .mobile-reverse-columns {
    flex-direction: column-reverse;
  }

  .dinner-menu-columns .w-40 h3, .dinner-menu-columns .w-40 p {
    width: 100%;
  }

  .dinner-menu-section h3 {
    margin-left: 0;
    width: 100%;
  }

  .dinner-menu-section img {
    width: 100%;
  }

  .dinner-menu-section figure {
    margin-block: 0;
    margin-inline: 0;
  }

  .dinner-menu-section h2 {
    text-align: left;
    margin-bottom: 0;
  }

  .dinner-menu-section p {
    margin-left: 0;
    width: 100%;
  }

  .dinner-menu-section h4 {
    margin-left: 0;
    width: 100%;
  }

  .text-below-title {
    text-align: left !important;
    margin-bottom: 0;
  }

  .dinner-menu-section-row {
    display: flex;
    flex-direction: column;
  }

  h2.left-align {
    margin-left: 0;
    margin-block: 10px;
  }

}

#our-story-banner {
  background-image: url(/assets/images/our-story-banner.webp);

}

#contact-us-banner {
  background-image: url(/assets/images/marios-seawall-restaurant-the-best.webp);
  background-position: bottom right;
}

@media screen and (min-width: 1024px) {
  #contact-us-banner {
    height: 94vh;
  }
}

#contact-us-pic {
  background-image: url(/assets/images/contact-marios.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 600px) {
  #contact-us-pic {
    height: 50vh;
  }
}

.cta-top .cta-button {
  display: inline-block;
  margin-top: 25px;
}

footer {
  background-color: #283F38;
  width: 100%;
}

.footer-top-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
}

.footer-column {
  min-width: 20%;
  margin-right: 2%;
}

@media screen and (min-width: 600px) {
  .footer-column p {
    max-width: 90%;
  }
}

.footer-column figure {
  margin-inline-start: 0;
  margin-inline-end: 50px;
}

.footer-column img {
  width: 85%;
}

.footer-column .cta-button {
  display: inline-block;
  margin-top: 20px;
  background-color: #EA1C2D;
}

.footer-column .social-media-section {
  align-items: start;
  margin-top: 40px;
}

.footer-top-pic {
  max-width: 450px;
  margin-top: 20px;
}

.restaurant-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
  flex-wrap: wrap;
}

.restaurant-logos img {
  max-width: 100%;
}

.restaurant-logos a {
  max-width: 10%;
  margin: 0 10px;
  display: flex;
  justify-content: center;
}

.footer-container {
  padding: 25px 5%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.footer-container h3 {
  font-size: 22px;
  margin-block-end: 0;
}

.footer-container p {
  margin-block: 0;
}

.social-media-section {
  display: flex;
  gap: 8px;
}

.social-media-culumn .social-box {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  padding: 6px;
  border-radius: 4px;
  width: 26px;
  height: 26px;
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  .footer-container {
    flex-wrap: wrap;
    padding-left: 5%;
    row-gap: 50px;
  }

  .footer-column {
    width: 50%;
    margin-right: 0;
  }

  #social-column {
    margin-top: -40px;
  }

  .footer-top-pic {
    max-width: 40%;
    margin-top: 20px;
  }

  .footer-column img {
    width: 80%;
  }
}

@media screen and (max-width: 600px) {
  .restaurant-logos {
    display: flex;
    flex-direction: column;
  }

  .restaurant-logos img {
    margin: 15px 0;
    max-width: 150px;
  }

  .footer-container {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .footer-column p {
    text-align: center;
  }

  .social-media-section {
    justify-content: center;
  }

  .footer-column {
    width: 100%;
  }

  .footer-top-pic {
    max-width: 80%;
  }

  .footer-column figure {
    margin-inline-start: 40px;
    margin-inline-end: 40px;
  }

  .footer-column .social-media-section {
    align-items: center;
  }

  .footer-column img {
    margin-top: 30px;
  }
}

.review-box h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 26px;
  margin-block: 0;
  padding-top: 30px;
}

.carousel-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  padding: 0 5%;
}

.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  text-align: center;
  border-radius: 3px;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  height: unset !important;
}

.swiper-slide p {
  text-align: left;
  font-style: italic;
  margin: 10px 100px;
}

.customer-name {
  font-weight: 600;
  text-align: left;
}

.swiper-pagination {
  position: relative !important;
  margin-top: 10px;
  margin-bottom: 30px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px !important;
  font-weight: 600 !important;
}

@media screen and (max-width: 1024px) {
  .swiper-slide p {
    margin: 5px 50px;
  }

  .carousel-container {
    max-width: 75%;
  }
}

@media screen and (max-width: 600px) {
  .swiper-slide p {
    margin: 5px 25px;
  }

  .carousel-container {
    max-width: 90%;
  }
}

.blog {
  display: block;
  max-width: 1200px;
  margin: 50px auto;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5%;
  padding-left: 1%;
}

.blog-post {
  flex-direction: column;
  display: inline-flex;
  width: 32%;
  background-color: #fff;
  align-items: center;
  border: #69727d;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  justify-content: space-between;
}

@media screen and (max-width: 600px) {
  .blog-post {
    width: 90%;
  }

  .blog-grid {
    justify-content: center;
    gap: 30px;
  }
}

.blog-post img {
  max-width: 100% !important;
}

.blog-post h2 {
  color: #000;
  font-size: 22px;
  text-align: left;
}

.blog-archive-titles {
  align-self: flex-start;
  width: 100%;
}

.blog-post .excerpt {
  color: #333;
  font-size: 16px;
  content-visibility: auto;
  line-height: 1.5em;
}

.post-meta {
  border-top: 1px solid #d6d6d6;
  width: 100%;
  text-align: center;
}

.post-date {
  color: #444;
  font-size: 14px;
  line-height: 1em;
}

.single-blog {
  max-width: 1200px;
  margin: 50px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 5%;
}

.single-post-title-box {
  width: 50%;
}

.single-post-title-box h1 {
  font-size: 38px;
  color: #000;
  text-shadow: unset;
}

.single-blog p {
  width: 100%;
  color: #000;
}

.single-blog .featured-image {
  display: block;
  margin: 0 auto;
  border-radius: 5px;
  width: 50%;
}

@media screen and (max-width: 1024px) {
  .single-blog {
    flex-direction: column;
    margin-top: 0;
  }

  .single-post-title-box, .single-blog .featured-image {
    width: 100%;
    margin: 0 auto;
  }

  .single-post-title-box {
    text-align: center;
  }

  .single-post-title-box h1 {
    font-size: 32px;
  }
}

.single-blog #date {
  font-size: 14px;
  text-align: center;
  margin-block: 0;
}

.blog-pics {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: 0;

}

.blog-pics img {
  max-width: 90%;
  border-radius: 5px;
}

.blog-h3 {
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.blog-h2 {
  font-size: 24px;
  font-weight: 500;
  color: #000;
}

.blog-h1 {
  text-shadow: unset;
  font-size: 38px;
  color: #000;
  margin-block-end: 10px;
  margin-block-start: 0;
}

.blog h1 {
  color: #000;
  text-align: center;
  text-shadow: unset;
}

#lower-lineheight {
  line-height: 1.2em;
}


.full-width-text p {
  width: 98% !important;
}

.contact-info p {
  line-height: 1.5;
}

.blog-archive-buttons {
  background-color: #EA1C2D;
  font-family: "Alegreya Sans SC", sans-serif;
  font-size: 20px;
  padding: 5px 20px;
  margin: 10px auto;
  position: absolute;
  bottom: 6%;
  left: 0;
  right: 0;
  width: 35%;
  text-align: center;
  color: #fff;
}

.blog-archive-buttons:hover {
  background-color: #d3101f;
  color: #fff;
}

.blog-post-content-box {
  display: flex;
  flex-direction: column;
  padding: 12px;
  align-items: flex-start;
  min-height: 350px;
  position: relative;
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  .blog-post {
    width: 48%;
  }
}

#instagram-seciton {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}

#instagram-seciton .cta-button {
  margin-top: 20px;
  margin-bottom: 20px;
}

#instagram-seciton h2 {
  margin-bottom: 20px;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  #instagram-seciton h2 {
    margin-bottom: 30px;
  }
}

.blog-social-media {
  display: flex;
  background-color: #fff;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border: #69727d;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5)

}

@media screen and (min-width: 1024px) {
  .blog-social-media {
    padding-bottom: 0;
  }
}

.blog-social-media p {
  max-width: 90%;
  text-align: center;
  margin: 10px auto;
  color: #000;
}

.blog-social-media h2 {
  text-align: center;
  color: #000;
}

@media screen and (max-width: 1024px) {
  .blog-social-media {
    width: 90%;
    flex-direction: column;
  }
}

.blog-social-media .text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .blog-social-media img {
    max-width: 40%;
    object-fit: cover;
  }
}

.blog-social-media .social-media-section {
  flex-direction: row;
}

.page-error {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  align-items: center;
  margin: 50px auto;
  text-align: center;
  line-height: 2em;
  font-family: "Alegreya Sans", sans-serif;
  color: #fff;
}


#catering-banner {
  background-image: url(/assets/images/catering-banner.webp);
}

@media screen and (min-width: 1024px) {
  #catering-banner {
    background-position: 0 70%;
  }
}

.desktop-center-title-box {
  width: 100%;
  text-align: center;
  margin: auto;
}

@media screen and (max-width: 600px) {
  .desktop-center-title-box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    margin-right: 10px;
  }

}

.desktop-top-center-title-box {
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

#email-list-banner {
  background-image: url(/assets/images/email-list-banner.webp);
}

@media screen and (min-width: 600px) {
  #email-list-banner {
    background-position: 0 75%;
  }
}

@media screen and (max-width: 600px) {
  .desktop-top-center-title-box {
    margin: 0 auto;
  }

  .forms input, .forms textarea {
    margin: 5px 0;
    font-size: 14px;
  }
}

#employment-banner {
  background-image: url(/assets/images/employment-opportunities.webp);
  background-position: bottom;
}

#employment-pic img {
  width: 34vw;
  height: 700px;
  object-fit: cover;
}

.two-columns .w-60 h2 {
  margin-block-start: 0;
}

@media screen and (max-width: 1024px) {
  #employment-pic img {
    height: auto;
  }
  #employment-pic{
    justify-content: flex-start;
    margin-top: 60px;
  }
}

@media screen and (max-width: 600px) {
  #employment-pic img {
    margin-top: 50px;
    width: 100%;
  }
  #employment-pic{
    margin-top: unset;
  }
}

.content-container-full-width {
  display: flex;
  justify-content: space-around;
  padding-top: 50px;
  padding-bottom: 50px;
}

.content-container-full-width p {
  width: 100%;
}

.content-container-full-width .content-box {
  gap: 0;
}

@media screen and (max-width: 1024px) {
  .content-container-full-width .content-box {
    text-align: left;
    align-items: flex-start;
  }
}

@media screen and (max-width: 600px) {
  .content-container-full-width .content-box {
    width: 80%;
  }
}

.fa-solid {
  color: #888;
}

#contact-box {
  margin-top: 50px;
}

#contact-box p {
  width: 70%;
  margin: 0 auto;
}

@media screen and (max-width: 600px) {
  #contact-box p {
    width: 85%;
  }

  #contact-box {
    margin-top: 30px;
  }
}

#contact-form .submit-button {
  width: 100%;
}

#pizza-menu-banner {
  background-image: url(/assets/images/pizza-menu-banner.webp);
}

@media screen and (min-width: 1024px) {
  #pizza-menu-banner {
    background-position: 0 65%;
  }
}

.italic-title {
  font-style: italic;
}

.red-text {
  color: #E71A21;
}

.title-margin {
  margin-block: 0;
  margin-bottom: 0 !important;
}

.two-columns-padding {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media screen and (max-width: 600px) {
  .text-below-title {
    text-align: left;
    margin-block-end: 0;
  }
}

.happy-drinks h3 {
  font-size: 16px;
  margin-block: 0;
}

@media screen and (max-width: 1024px) {
  #happy-hour-days p {
    font-size: 32px;
  }
}

@media screen and (max-width: 600px) {
  #happy-hour-days p {
    font-size: 22px;
    line-height: 1.5em;
  }

  .happy-drinks h3 {
    text-align: center;
  }

  .happy-drinks h2 {
    width: 60%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 600px) {
  .mobile-title h2 {
    text-align: center;
  }
}

#happy-hour-drinks {
  background-image: url(/assets/images/happy-hour-drink-specials.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 40vh;
}

#lunch-special-banner {
  background-image: url(/assets/images/lunch-special.webp);
  align-items: flex-end;
}

@media screen and (min-width: 1024px) {
  #lunch-special-banner {
    background-position: 0 45%;
  }
}

#lunch-special-days {
  flex-direction: column;
  margin: 0 20px 20px 0;
}

#lunch-special-days h1 {
  margin-block-end: 0;
}

#lunch-special-days p {
  font-size: 34px;
  font-weight: 500;
  text-shadow: 1.5px 1.5px 12px #000;
  margin-inline: 0;
  margin-block: 0;
}

.two-columns.dinner-menu-columns.dinner-menu-flex-column {
  width: 50%;
}

.after-green {
  margin: 0 auto;
}

.without-figure figure {
  margin-inline: 0;
}

.text-below-title {
  width: 100% !important;
  text-align: center;
  margin-left: unset !important;
  margin-top: -25px !important;
}

.desktop-bottom-right-title-box {
  width: 45%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .desktop-bottom-right-title-box {
    width: 60%;
  }
}

@media screen and (max-width: 600px) {
  .desktop-bottom-right-title-box {
    width: 80%;
  }

  #lunch-special-days p {
    font-size: 22px;
    font-weight: 500;
  }

  #lunch-special-days {
    margin: 0 5px 5px 0;
  }

  .two-columns.dinner-menu-columns.dinner-menu-flex-column {
    width: 100%;
  }

  .text-below-title {
    margin-top: 10px !important;
  }

  p.left-align {
    text-align: left;
  }

  .text-below-title {
    margin-bottom: 20px;
  }

  .green-background p {
    text-align: center;
  }
}

#mama-mia-pizza {
  background-image: url(/assets/images/mama-mia-giant-slice.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 40vh;
}

#sunday-brunch-banner {
  background-image: url(/assets/images/sunday-brunch-banner.webp);
}

@media screen and (min-width: 1024px) {
  #sunday-brunch-banner {
    background-position: 0 90%;
  }
}

#sunday-bold {
  font-family: "EB Garamond", serif;
  font-weight: 600;
  font-size: 22px;
  text-align: center;
}

#sunday-text {
  width: 50%;
  text-align: center;
  margin: 0 auto;
}

#sunday-brunch-picture {
  background-image: url(/assets/images/sunday-brunch-picture.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

@media screen and (max-width: 1024px) {
  #sunday-brunch-picture {
    height: 50vh;
  }
}

#Eggselent p {
  width: 90%;
}

#Eggselent figure {
  margin-inline: 0;
}

@media screen and (max-width: 1024px) {
  #sunday-text {
    width: 75%;
  }
}

@media screen and (max-width: 600px) {
  #sunday-bold {
    width: 85%;
    margin: 0 auto;
    line-height: 1.4em;
  }

  #sunday-text {
    width: 85%;
    margin-top: 20px;
  }

  #sunday-brunch-picture {
    height: 35vh;
  }

  #Eggselent p {
    width: 100%;
  }

  #brunch-beach h2 {
    width: 80%;
    text-align: center;
    margin: 0 auto;
  }

  #brunch-beach p {
    width: 90%;
    text-align: center;
    margin: 20px auto 20px auto;
  }
}

#ultimate-club {
  background-image: url(/assets/images/ultimate-club.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 40vh;
}

#ultimate-text {
  text-align: center;
  padding-bottom: 30px !important;
  width: 90%;
  margin: 0 auto;
}

#experience-part {
  font-family: "EB Garamond", serif;
  font-weight: 600;
  font-size: 22px;
  width: 80%;
  margin-block-end: 15px;
}

.dinner-menu-section .cta-button {
  display: inline-block;
  margin-left: 45px;
  margin-top: 20px;
}

.gray-padding {
  padding: 20px 5% 50px 5%;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .dinner-menu-section .cta-button {
    margin-left: 20px;
    margin-top: 10px;
  }

  #experience-part {
    width: unset;
  }

  #meatballs {
    height: 50vh;
  }

  .gray-text-box {
    width: 100%;
    padding: 20px 10px;
  }
}

@media screen and (max-width: 600px) {
  .gray-padding {
    padding: 20px 5% 10px 5%;
  }

  .top-none {
    margin-block: 0 !important;
  }

  #meatballs {
    height: 40vh;
  }

  .dinner-menu-section .cta-button {
    margin-left: unset;
  }

  #experience-part {
    font-size: 26px;
    text-align: center;
    width: 86%;
    margin: 0 auto;
  }
}

#gulf-shrimp {
  background-image: url(/assets/images/proudly-serving-gulf-shrimp.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 40vh;
}

#below-banner {
  text-align: center;
  padding: 30px;
}

.review-box h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 26px;
}

.carousel-container-review {
  max-width: 800px !important;
}

.carousel-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  padding: 0 5%;
  overflow: visible;
  position: relative;
}

.swiper {
  width: 100%;
  height: auto;
  overflow: visible;
}

.swiper-wrapper {
  align-items: center;
}

.swiper-slide {
  text-align: center;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  height: auto;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, opacity 0.3s;
}

.swiper-slide figure {
  margin-inline: 15px;
}

.swiper-slide p {
  text-align: left;
  font-style: italic;
  margin: 10px 100px;
}

.customer-name {
  font-weight: 600;
  text-align: left;
}

.swiper-pagination {
  position: relative !important;
  margin-top: 10px;
  margin-bottom: 30px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #E71A21 !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: #E71A21 !important;
  width: 60px !important;
  height: 60px !important;
  top: 40% !important;
}

.swiper-button-next {
  right: -20px !important;
}

.swiper-button-prev {
  left: -20px !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px !important;
  font-weight: 600 !important;
}

#tony-pic {
  background-image: url(/assets/images/tony-and-nilde-smecca-founders.webp);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  height: auto;
}

@media screen and (max-width: 1024px) {
  .swiper-slide p {
    margin: 5px 50px;
  }

  .carousel-container {
    max-width: 90%;
  }

  .carousel-container-review {
    max-width: 75% !important;
  }
}

@media screen and (max-width: 600px) {
  .swiper-slide p {
    margin: 5px 25px;
  }

  .carousel-container {
    max-width: 90%;
  }

  .carousel-container-review {
    max-width: 90% !important;
  }
}

#box-w-70 {
  max-width: 755px;
  padding-top: 65px;
  padding-bottom: 70px;
}

#box-center {
  display: flex;
  justify-content: space-around;
}

#box-w-70 p {
  width: 90%;
}

#box-w-50 {
  padding-top: 60px;
  padding-bottom: 65px;
  max-width: 583px;
}

#box-w-50 h2 {
  margin-block: 0;
}

#box-w-50 ul {
  list-style-type: none;
}

#box-w-50 li {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 2em;
}

#box-w-50 .cta-button {
  display: inline-block;
  margin-top: 20px;
}

#box-w-50 h3 {
  margin-block-end: 10px;
}


#wednesday-dinner-pic {
  background-image: url(/assets/images/the-best-wednesday-dinner.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
}

@media screen and (max-width: 1024px) {
  #box-w-70 {
    align-items: flex-start;
    text-align: left;
  }

  #box-w-50 {
    align-items: flex-start;
    text-align: left;
  }
}

@media screen and (max-width: 600px) {
  #wednesday-dinner-pic {
    height: 40vh;
  }

  #tony-pic {
    height: 130vw;
    background-position: top;
  }

  #box-w-70 {
    padding-top: 30px;
    padding-bottom: 30px;
    align-items: center;
    text-align: center;
  }

  #box-w-50 {
    padding-top: 30px;
    padding-bottom: 30px;
    align-items: center;
    text-align: center;
  }
}

#flying-pizza {
  display: flex;
}

#flying-pizza figure {
  margin-inline: 0;
}

@media screen and (max-width: 600px) {
  .footer-column img {
    width: 75%;
  }

  #flying-pizza {
    flex-direction: column;
  }

  #flying-pizza img {
    width: 40%;
  }

  .footer-column .social-media-section {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}

.end-section {
  margin-bottom: 0;
}

.footer-column a {
  color: #fff;
}

.title-inside-box {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 30%;
  margin-right: 3%;
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  .title-inside-box {
    width: 45%;
  }
}

@media screen and (max-width: 600px) {
  .title-inside-box {
    width: 52%;
  }
}

#catering-banner h1{
  margin-top: 18px;
  margin-right: 20px;
}

@media screen and (max-width: 600px) {
  #email-list-banner h1 {
    width: 70%;
    margin: 0.83em auto;
  }
}

#blog-social-media-links i, #instagram-seciton .social-media-section i{
  color: #000;
}

#blog-social-media-links .social-box, #instagram-seciton .social-box{
  border: 1px solid #000;
}

#smaller-h2{
  font-size: 29px;
}

.success-page h1, .success-page p{
  color: #222;
}
