body {
  margin: 0;
}

@font-face {
  font-family: "RedondaTest";
  src: url(/assets/fonts/RedondaTest-Regular.otf) format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "BigCaslonFB";
  src: url(/assets/fonts/BigCaslonFB-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "BigCaslonFB";
  src: url(/assets/fonts/BigCaslonFB-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "BigCaslonFB";
  src: url(/assets/fonts/BigCaslonFB-Black.ttf) format("truetype");
  font-weight: 800;
  font-style: normal;
}

h1 {
  font-size: 42px;
  color: #fff;
  font-family: "BigCaslonFB", sans-serif;
  font-weight: 400;
}

h2 {
  font-size: 24px;
  font-weight: 800;
  color: #000;
  margin-bottom: 0;
  font-family: "BigCaslonFB", sans-serif;
  line-height: 1.5em;
  text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 18px;
  }
}

h3 {
  font-size: 22px;
  font-family: "RedondaTest", sans-serif;
  line-height: 2em;
}

p {
  font-family: "RedondaTest", sans-serif;
  font-size: 16px;
  line-height: 2em;
  color: #000;
}

a {
  text-decoration: none;
  color: #fff;
}

a:hover {
  color: #8fc43e;
}

.cta-button:hover {
  color: #fff !important;
}

header {
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top-bar {
  background-color: #8fc43e;
  height: 35px;
  width: 100%;
}

.header-top-bar a:hover {
  color: #fff;
}

.header-top-bar p {
  line-height: 1em;
  font-weight: 500;
}

header a {
  color: #000;
}

header .header-top-bar a {
  margin-left: 40px !important;
}

.header-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: flex-end;
  height: 60px;
}

.logo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
}

.logo img {
  max-height: 95px;
}

ul {
  margin-block: 0 !important;
  margin-inline: 0;
  padding-inline-start: 0 !important;
}

.cta-button-box {
  width: 18%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cta-button {
  padding: 8px 20px;
  background-color: #8fc43e;
  color: #000;
  font-family: "RedondaTest", sans-serif;
  font-size: 18px;
  border-radius: 10px;
}

.cta-button-box .cta-button {
  padding: 5px 10px;
  font-size: 18px;
}

.menu {
  display: flex;
  align-items: center;
}

.navigation {
  font-family: "RedondaTest", sans-serif;
  display: flex;
  list-style: none;
  gap: 12px;
  justify-content: center;
}

.navigation li {
  padding-top: 15px;
  padding-bottom: 15px;
}

.navigation .sub-menu li {
  padding: 0;
}

.navigation li a:hover {
  color: #fff
}

.navigation li a.active {
  color: #fff
}

.has-sub-menu {
  position: relative;
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #000;
  border: 1px solid #626262;
  z-index: 999;
  list-style: none;
  width: max-content;
  min-width: 200px;
  font-size: 14px;
}

.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: #f48d79;
}

.sub-menu li {
  border-bottom: 1px solid #626262;
}

.has-sub-menu i {
  font-size: 12px;
  color: #fff;
}

.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: #fff;
  font-size: 36px;
  cursor: pointer;
}

.hamburger-icon input[type="checkbox"] {
  appearance: none;
}

.dropdown-box {
  display: none;
}

.mobile-sub-menu {
  display: none;
}

.text-header-mobile {
  display: none;
}

@media screen and (max-width: 1024px) {
  .header-top-bar {
    height: 15px;
  }

  .cta-button-box {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .navigation {
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    transition: max-height ease-in-out 0.5s;
    position: absolute;
    background-color: #8fc43e;
    top: 100%;
    align-items: flex-start;
    width: 100%;
    left: 0;
    gap: 0;
  }

  .navigation li {
    border-bottom: 1px solid #d0d0d0;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .navigation li a {
    width: 100%;
    display: block;
    padding: 10px 25px;
    color: #000;
  }

  li:has(.active) {
    background-color: #000;
  }

  .navigation li a:hover {
    border: unset;
  }

  .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: #f7edd4;
    border: none;
    width: 100%;
  }

  .mobile-sub-menu li {
    padding: unset;
  }

  .dropdown-box i {
    color: #000;
  }

  .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%;
  }
}

@media screen and (max-width: 600px) {
  .hamburger-icon {
    display: flex;
    align-items: center;
  }

  .cta-button-box {
    width: 100%;
  }

  #text-setting {
    width: 100%;
    margin-top: 10px;
    margin-right: 10px;
  }

  #text-setting p {
    font-size: 11px;
    margin-block: 0;
    line-height: 1.4em;
  }

}

.gray-background {
  background-color: #edeae9;
}

.top-banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 85vh;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.title-box {
  width: 30%;
}

.content-parts-full-width {
  width: 100%;
}

.content-parts {
  max-width: 1200px !important;
  margin: 50px auto;
  text-align: center;
  padding: 0 5%;
}

.content-parts p {
  width: 75% !important;
  margin: 10px auto;
}

.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%;
  align-items: center;
}

.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: 40vh;
  }
}

@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 {
    font-size: 18px;
  }

  .content-parts {
    padding: 0 5%;
    margin: 35px auto;
  }

  .content-parts p {
    width: 95% !important;
  }
}

.mobile-version {
  color: #f48d79;
  font-weight: 600;
  margin-block: 0.5em;
}

.left-margin .w-60 {
  margin-left: 60px;
}

.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;
}

.cta-container {
  margin-top: 30px;
}

.between-button {
  display: flex;
  gap: 50px;
}

.mobile-version {
  display: none;
}

.content-images figure {
  margin-inline: 0;
  margin-block-start: 0;
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
  .tablet-version {
    flex-direction: column;
  }

  .tablet-version .w-40 {
    width: 100%;
    flex-direction: row;
    gap: 20px;
  }

  .tablet-version .w-60 {
    width: 100%;
  }

  .left-margin .w-60 {
    margin-left: 0;
  }

  .mobile-version {
    display: block;
  }

  .tablet-only {
    display: none !important;
  }
}

@media screen and (max-width: 600px) {
  .left-margin .w-60 {
    margin-left: 0;
  }

  .mobile-version {
    display: block;
  }
}

#employment-pic figure {
  margin-block: 0;
  margin-inline: 0;
}

#employment-pic-mobile {
  background-image: url("/assets/images/best-chef-saltwater.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 60vh;
}

#catering-banner {
  background-image: url("/assets/images/catering-banner.webp");
  background-position: 0 100% !important;
}

.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;
  }
}

#second-section-border {
  margin-top: -10px;
}

.form-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact-form {
  flex-direction: column;
  margin: 0 auto;
}

#contact-form h1 {
  margin-block-start: 0;
}

.grg-forms input,
.grg-forms textarea {
  width: 100%;
  padding: 12px 0 8px 0;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #fff;
  font-family: "RedondaTest", sans-serif;
  letter-spacing: 0.5px;
  font-size: 16px;
  background-color: #00000000;
  border-radius: 0;
}

.grg-forms input:focus,
.grg-forms textarea:focus {
  outline: none;
}

.grg-forms .submit-button {
  width: 20%;
  cursor: pointer;
  font-weight: 400;
  padding: 10px;
  margin-top: 5px;
  border: none;
}

.mobile-only #work-time {
  justify-content: center;
  text-align: left;
}

::placeholder {
  color: #ffffffa5;
}

input,
textarea {
  color: #ffffffa5;
}

.mobile-only {
  display: none !important;
}

#restaurant-title {
  margin-top: 50px;
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only .mobile-align {
    text-align: center;
  }

  .grg-forms {
    width: 98%;
    margin-top: 10px;
  }

  .grg-forms .submit-button {
    width: 50%;
  }

  .form-box h2 {
    margin: 15px 0;
    text-align: center;
  }

  #less-width-text {
    width: 70%;
    margin: 40px auto 0 auto;
  }

  #less-width-title {
    width: 75% !important;
    margin: 40px auto 0 auto;
  }

  #restaurant-title {
    width: 75% !important;
    margin: 40px auto 0 auto;
  }
}

.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: "BigCaslonFB", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.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);
}

.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-bottom-left-title-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.desktop-bottom-left-title-box h1 {
  margin-left: 45px;
  margin-block: 15px;
}

.desktop-bottom-left-title-box .cta-button {
  margin-left: 45px;
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .desktop-bottom-left-title-box h1 {
    margin-left: 20px;
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 600px) {
  .desktop-bottom-left-title-box .cta-button {
    margin-left: 20px;
    margin-bottom: 20px;
  }
}

#top-button .cta-button {
  padding: 12px 30px;
}

@media screen and (max-width: 600px) {
  #top-button .cta-button {
    padding: 10px 24px;
  }
}

.video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.white-border {
  display: flex;
  border: 10px solid #fff;
}

.w-60-pic figure {
  margin-block: 0;
  margin-inline: 0;
}

.w-60-pic img {
  width: 100%;
}

@media screen and (max-width: 600px) {
  .w-40-text .social-media-section {
    align-items: center;
  }

  .w-40-text h3 {
    text-align: center;
  }
}

.w-40-text h3 {
  font-family: "EB Garamond", serif;
  font-size: 26px;
}

@media screen and (max-width: 600px) {
  .mobile-reverse-columns {
    flex-direction: column-reverse !important;
  }
}

#join-team-banner {
  background-image: url(/assets/images/join-the-galveston-restaurant-group-team.webp);
  background-position: 0 65%;
  background-size: cover;
  background-repeat: no-repeat;
}

#contact-us-banner {
  background-image: url(/assets/images/contact-us-banner.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 38% !important;
}

@media screen and (min-width: 1024px) {
  #contact-us-banner {
    background-position: 0 78%;
  }
}

@media screen and (max-width: 600px) {
  #contact-us-banner {
    background-position: unset !important;
  }
}

.cta-top .cta-button {
  display: inline-block;
  margin-top: 25px;
}

footer {
  background-color: #000;
  width: 100%;
}

.footer-column {
  width: 25%;
}

.footer-column-1 {
  width: 20% !important;
}

#footer-column-3 {
  width: 35% !important;
}

.footer-column figure {
  margin-inline: 0;
  margin-block: 0;
  margin-top: -45px;
}

.footer-column img {
  width: 85%;
}

.footer-column .cta-button {
  display: inline-block;
  margin-top: 20px;
}

.footer-column .social-media-section {
  align-items: start;
}

.restaurant-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px auto 10px auto;
  flex-wrap: wrap;
}

.restaurant-logos img {
  max-width: 100%;
}

.restaurant-logos a {
  max-width: 11%;
  margin: 0 10px;
  display: flex;
  justify-content: center;
}

.footer-container {
  padding: 25px 5%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #000;
}

.footer-container h3 {
  margin-block: 0;
  color: #fff;
  font-family: "BigCaslonFB", sans-serif;
  font-size: 34px;
}

.footer-container p {
  margin-block: 0;
}

.footer-rows {
  display: flex;
}

.footer-column {
  width: 25%;
}

.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-column p {
    width: 90%;
  }

  #social-column {
    margin-top: -40px;
  }

  .footer-column img {
    width: 80%;
  }
}

@media screen and (max-width: 1024px) {
  .footer-column {
    width: 50% !important;
  }

  .footer-column p {
    text-align: left;
  }

  .footer-column figure {
    margin-top: 0;
    text-align: center;
  }

  .footer-rows {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "a b"
      "c d";
  }

  .footer-column:nth-child(1) {
    grid-area: a;
  }

  .footer-column:nth-child(2) {
    grid-area: c;
  }

  .footer-column:nth-child(3) {
    grid-area: d;
  }

  .footer-column:nth-child(4) {
    grid-area: b;
  }
}

@media screen and (max-width: 600px) {
  .footer-column .social-media-section {
    align-items: center !important;
  }

  .footer-container h3 {
    font-size: 24px;
  }

  .footer-column {
    width: 100% !important;
  }

  #footer-column-3 {
    width: 100% !important;
    margin-top: -20px;
  }

  .restaurant-logos a {
    max-width: 55%;
    margin: 10px 2.5%;
  }

  .restaurant-logos img {
    max-width: 80%;
  }

  .footer-container {
    flex-direction: column;
  }

  .social-media-section {
    justify-content: center;
  }

  .restaurant-logos {
    margin-top: 15px;
  }
}

.review-box h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 26px;
  margin-block: 0;
  padding-top: 30px;
}

.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: #f48d79;
}

.single-blog p {
  width: 100%;
}

.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: #f48d79;
}

.blog-h2 {
  font-size: 24px;
  font-weight: 500;
  color: #f48d79;
}

.blog-h1 {
  text-shadow: unset;
  font-size: 38px;
  color: #f48d79;
  margin-block-end: 10px;
  margin-block-start: 0;
}

.blog h1 {
  color: #f48d79;
  text-align: center;
}

#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: #f48d79;
  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;
}

.blog-archive-buttons:hover {
  background-color: #ea7059;
  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);
}

.blog-social-media p {
  max-width: 90%;
  text-align: center;
  margin: 25px 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;
}

@media screen and (min-width: 1024px) {
  .blog-social-media img {
    max-width: 40%;
    object-fit: cover;
  }

  .blog-social-media {
    padding-bottom: 0;
  }
}

.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;
}

@media screen and (min-width: 1024px) {
  #catering-banner {
    background-position: 0 70%;
  }
}

@media screen and (max-width: 600px) {
  .grg-forms input,
  .grg-forms textarea {
    margin: 5px 0;
    font-size: 14px;
  }
}

.two-columns .w-60 h2 {
  margin-block-start: 0;
}

.fa-solid {
  color: #888;
}

.two-columns.dinner-menu-columns.dinner-menu-flex-column {
  width: 50%;
}

.without-figure figure {
  margin-inline: 0;
}

.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;
}

.customer-info {
  text-transform: uppercase;
  text-align: center !important;
  color: #F48D79;
}

*/

@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;
  }
}
*/

@media screen and (max-width: 600px) {
  .footer-column img {
    width: 75%;
  }

  .footer-column .social-media-section {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}

.back-white-pattern {
  background-image: url(/assets/images/grg-background-pattern.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.black-pattern {
  background-image: url(/assets/images/grg-background-pattern-black.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.join-team-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.join-team-page h2 {
  margin-top: 60px;
}

#head-margin {
  margin-top: 10px;
}

.join-team-page a {
  margin-bottom: 60px;
  align-self: center;
}

.decorative-line {
  display: inline-block;
  align-self: center;
  border-bottom: 1.7px solid #000;
  padding-bottom: 10px;
  width: auto !important;
}

.white-decorative-line {
  display: inline-block;
  align-self: center;
  border-bottom: 1.7px solid #fff;
  padding-bottom: 10px;
  width: auto;
}

.black-decorative-line {
  display: inline-block;
  align-self: center;
  border-bottom: 1.7px solid #000;
  padding-bottom: 10px;
  width: auto;
}


.align-left a {
  color: #000;
}

.align-left a:hover {
  color: #8fc43e;
}

@media screen and (max-width: 1024px) {
  #tablet-columns {
    flex-direction: column;
  }

  #tablet-columns .col-1,
  #tablet-columns .col-2 {
    width: 100%;
  }

  #back-pattern h2 {
    margin-top: 15px;
  }

  #contact-decorative-line {
    font-size: 20px;
  }
}

@media screen and (max-width: 600px) {
  #contact-decorative-line {
    display: inline-block;
    border-bottom: 1.5px solid #000;
    padding-bottom: 10px;
    width: 80%;
    font-size: 20px;
  }

  #contact-page .two-columns {
    margin: 50px auto 25px auto !important;
    width: 100% !important;
  }

  #contact-page .two-button {
    margin: 0 auto;
  }

  #right-border {
    width: 100% !important;
  }

  #contact-page .w-60 {
    width: 100%;
    margin-left: unset;
  }

  #contact-page .w-60 {
    margin-top: 20px;
  }

  #contact-page .w-60 p {
    margin-block: 0;
  }
}

#contact-page {
  display: flex;
  text-align: left;
}

#contact-page .two-columns .col-1 {
  align-items: flex-start;
  gap: 24px;
}

#contact-page .two-columns .col-2 {
  inline-size: 90%;
  overflow-wrap: break-word;
}

#contact-page .cta-button {
  width: 120px;
  text-align: center;
}

#contact-page a {
  color: #000;
}

#contact-page a:hover {
  color: #8fc43e;
}

@media screen and (max-width: 600px) {
  .join-team-page h2 {
    margin-top: 40px;
  }

  .join-team-page a {
    margin-bottom: 40px;
  }
}

.black-back {
  background-color: #000;
}

.back-black-pattern {
  background-image: url(/assets/images/grg-background-pattern-white.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#right-border {
  border-right: 3px solid #000;
}

#contact-page .two-columns {
  width: 1200px;
  margin: 60px auto;
}

.align-left {
  text-align: left;
}

.align-left .w-40 {
  align-items: flex-start;
}

.align-left .w-60 {
  align-items: flex-start;
  margin-left: 80px;
}

.align-left h2 {
  margin-block-start: 0;
}

.align-left p {
  margin-block-start: 0;
}

.align-left .cta-button {
  margin-top: 25px;
  width: 120px;
  text-align: center;
}

.two-button .cta-button {
  margin-top: 25px;
  width: 190px;
  text-align: center;
}

#contact-form .content-parts {
  text-align: left;
}

.two-button {
  display: flex;
  gap: 20px;
  justify-content: center;
}

@media screen and (max-width: 600px) {
  #contact-form .content-parts {
    text-align: center;
  }

  #right-border {
    border-right: none;
  }

  .grg-forms {
    margin: 0 auto;
  }

  .two-button {
    gap: 10px;
  }
}

.white-text h2,
.white-text p {
  color: #fff !important;
}

.black-text p,
.black-text h2, .black-text h1 {
  color: #000 !important;
}

.pages-pic {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#our-catering-services {
  background-image: url(/assets/images/our-catering-services.webp);
}

#right-team {
  background-image: url(/assets/images/start-with-the-right-team.webp);
}

#make-it-easy {
  background-image: url(/assets/images/lets-make-it-easy.webp);
}

#seafood-pic {
  background-image: url(/assets/images/make-it-easy.webp);
}

#holiday-catering {
  background-image: url(/assets/images/holiday-catering.webp);
}

#mariosseawall {
  background-image: url(/assets/images/marios-seawall-italian-restaurant.webp);
}

#saltwater {
  background-image: url(/assets/images/saltwatergrill.webp);
}

#skybar {
  background-image: url(/assets/images/skybar.webp);
}

#taquilos {
  background-image: url(/assets/images/taquilos.webp);
}

#gumbodiner {
  background-image: url(/assets/images/gumbo-diner.webp);
}

#papas-pizza {
  background-image: url(/assets/images/papas-pizza.webp);
}

#littledaddys {
  background-image: url(/assets/images/little-daddys.webp);
}

.columns-height {
  height: 600px;
}

.back-title {
  color: #000;
}

.center-title {
  text-align: center;
}

.center-title p {
  width: 60%;
  margin: 0 auto 40px auto;
}

@media screen and (max-width: 1024px) {
  #our-catering-services,
  #right-team,
  #make-it-easy,
  #seafood-pic,
  #holiday-catering,
  #mariosseawall,
  #saltwater,
  #skybar,
  #taquilos,
  #gumbodiner,
  #papas-pizza,
  #littledaddys {
    height: 40vh;
    margin-bottom: 20px;
  }

  .columns-height {
    height: unset;
  }

  .tablet-reverse-columns {
    flex-direction: column-reverse !important;
  }

  .different-margin {
    margin: 20px auto;
  }

  .center-title {
    margin-bottom: 40px;
  }

  #join-team {
    margin: 10px;
  }

  .center-title p {
    width: 80%;
  }
}

#join-team {
  max-width: 550px;
  text-align: center;
  float: right;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-right: 20px;
}

@media screen and (max-width: 1024px) {
  #join-team-section .col-1 {
    order: 2;
    width: 100%;
  }

  #join-team-banner {
    height: 35vh;
  }

  #join-team-section .two-columns {
    flex-direction: column;
  }

  #join-team-section .col-2 {
    width: 100%;
  }

  #join-team {
    margin: 0 auto;
    float: unset;
    padding: 50px 30px;
  }
}

@media screen and (max-width: 600px) {
  #our-catering-services,
  #right-team,
  #make-it-easy,
  #seafood-pic,
  #holiday-catering {
    height: 47vh;
  }

  #mariosseawall,
  #saltwater,
  #skybar,
  #taquilos,
  #gumbodiner,
  #papas-pizza,
  #littledaddys {
    height: 38vh;
  }
}

/*carousel*/
.carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin: auto;
}

.carousel-slides {
  display: flex;
  height: 78vh;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  flex-shrink: 0;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  margin: 0 3px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: white;
}

.slide-content {
  position: absolute;
  color: white;
  z-index: 1000;
  padding: 20px;
  text-align: right;
  max-width: 80%;
}

.slide-content h2 {
  font-size: 38px;
  margin-block: 0;
}

.slide-content p {
  font-size: 26px;
  font-style: italic;
  font-family: "BigCaslonFB", sans-serif;
  margin-block: 0;
}

.second-slide-content p {
  color: #fff;
  width: 100% !important;
  font-family: "RedondaTest", sans-serif;
  font-style: unset;
  font-size: 30px;
  text-shadow: 1.5px 1.5px 12px #000000;
}

.content-top-right {
  top: 1%;
  right: 1%;
}

.content-top-left {
  top: 1%;
  left: 1%;
  text-align: left;
}

.content-bottom-right {
  bottom: 1%;
  right: 1%;
}

.content-bottom-left {
  bottom: 1%;
  left: 1%;
  text-align: left;
}

.content-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

#home-second-carousel .content-top-right {
  top: 0;
  right: 2%;
}

@media (max-width: 1024px) {
  .carousel-container {
    height: 50vh;
  }

  .carousel-container img {
    object-fit: cover;
  }

  .carousel-btn {
    padding: 8px 12px;
    font-size: 20px;
  }

  .carousel-slide img {
    height: 50vh !important;
  }

  .two-columns .w-60 {
    width: 50%;
  }

  .two-columns .w-40 {
    width: 50%;
  }

  .content-bottom-left {
    bottom: 42%;
    left: 0;
  }

  .content-bottom-right {
    bottom: 42%;
    right: 0;
  }
}

@media (max-width: 600px) {
  .content-bottom-left {
    bottom: 58%;
    left: 0;
  }

  .content-bottom-right {
    bottom: 59%;
    right: 0;
  }

  .carousel-container {
    height: 35vh;
  }

  .carousel-dots {
    bottom: 10px;
  }

  .dot {
    width: 6px;
    height: 6px;
  }

  .prev-btn {
    left: 5px;
  }

  .next-btn {
    right: 5px;
  }

  .carousel-slide img {
    height: unset !important;
  }

  .slide-content h2 {
    font-size: 24px;
  }

  .slide-content p {
    font-size: 17px;
  }

  .slide-content {
    max-width: 100%;
  }
}

#about-us-banner {
  background-image: url(/assets/images/about-us-banner.webp);
  background-position: 0 20%;
}

.pic-style figure {
  margin-inline: 0;
  margin: 35px auto 25px auto;
}

.pic-style img {
  width: 100%;
}

#pizza-oumo {
  background-image: url(/assets/images/story-of-the-pizza-uomo.webp);
  margin: 20px 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  border-radius: 5px;
  transition: background-color 0.3s;
}

@media screen and (max-width: 600px) {
  #our-catering-services,
  #right-team,
  #make-it-easy,
  #seafood-pic,
  #holiday-catering {
    height: 47vh;
  }

  #mariosseawall,
  #saltwater,
  #skybar,
  #taquilos,
  #gumbodiner,
  #papas-pizza,
  #littledaddys {
    height: 38vh;
  }

  .carousel-btn {
    padding: 2px 10px;
  }
}

.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

#about-carousel-container img {
  height: unset !important;
}

#about-carousel-container .carousel-slides {
  height: unset !important;
}

@media (max-width: 1024px) {
  #about-carousel-container img {
    height: 25vh !important;
  }

  #about-carousel-container {
    height: 25vh;
  }
}

@media (max-width: 600px) {
  #about-carousel-container {
    max-width: 100%;
    height: 30vh;
  }

  #about-carousel-container img {
    height: 30vh !important;
  }
}

.two-columns .w-55 {
  width: 55%;
  text-align: left;
}

.two-columns .w-45 {
  width: 45%;
}

@media (max-width: 600px) {
  .two-columns .w-55 {
    width: 100%;
    text-align: center;
  }

  .two-columns .w-45 {
    width: 100%;
  }
}

#home-form .grg-forms {
  width: 80%;
}

#home-form .grg-forms .submit-button {
  width: 36%;
}

#home-form input {
  background-color: #000;
  border-bottom: unset;
  padding: 15px 20px;
  border-radius: 10px;
}

#grg-services {
  background-image: url(/assets/images/grg-services.webp);
}

#custom-catering {
  background-image: url(/assets/images/custom-catering.webp);
}

#planning-event {
  background-image: url(/assets/images/planning-event.webp);
}

#home-page-form {
  background-image: url(/assets/images/home-page-form.webp);
}

.different-text {
  font-family: "BigCaslonFB", sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto 40px auto;
}

.w-55 .decorative-line {
  align-self: self-start;
}

.w-55 p {
  width: 60% !important;
  margin: 10px 0 0 0;
}

@media (max-width: 1024px) {
  #grg-services,
  #custom-catering,
  #planning-event {
    height: 40vh;
  }

  #home-page-form {
    height: 50vh;
  }

  .w-55 .decorative-line {
    align-self: center;
  }

  .w-55 p {
    width: 95% !important;
    margin: 10px auto;
  }
}

@media (max-width: 600px) {
  .different-text {
    font-size: 18px;
    width: 90%;
  }

  #home-form input {
    padding: 15px 0 15px 15px;
  }


  #home-form .grg-forms .submit-button {
    width: 46%;
  }

  #grg-services,
  #custom-catering,
  #planning-event {
    height: 30vh;
  }

  #custom-catering-padding {
    padding: 10px;
  }

  .different-text {
    margin-bottom: 0;
  }

  .mobile-only {
    display: block !important;
  }
}

#faq-banner {
  background-image: url("/assets/images/faq-page-benner.webp");
}

#quote-banner {
  background-image: url("/assets/images/quote-page-banner-desktop.webp");
}

@media screen and (max-width: 600px) {
  #quote-banner {
    background-image: url("/assets/images/quote-page-banner-mobile.webp");
  }
}

.form-wrapper {
  width: 100%;
  margin-top: 35px;
}

.form-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-section label {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  font-family: "RedondaTest", sans-serif;
  text-align: left;
  align-self: flex-start;
}

.form-section input[type="text"],
.form-section input[type="tel"],
.form-section input[type="number"] {
  width: 100%;
  padding: 10px 0;
  margin-bottom: 25px;
  border: 2px solid #000;
  background: transparent;
  outline: none;
  font-size: 1em;
  padding-left: 10px;
}

.optional {
  font-weight: normal;
  font-size: 0.8em;
  color: #666;
  margin-left: 5px;
}

.cuisine-section {
  margin-top: 40px;
  text-align: center;
}

.cuisine-title {
  font-size: 20px;
  margin-bottom: 30px;
}

.optional-large {
  font-size: 20px;
  color: #000;
  margin-left: 10px;
}

.checkbox-group {
  display: flex;
  max-width: 65%;
  margin: 40px auto;
  text-align: left;
}

.three-column {
  flex-basis: 33.3%;
}

.checkbox-label {
  font-family: "RedondaTest", sans-serif;
  display: block;
  margin-bottom: 15px;
  font-size: 16px;
  cursor: pointer;
  color: #555;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.1);
  vertical-align: middle;
}

.submit-section {
  text-align: center;
}

@media (max-width: 600px) {
  .submit-section {
    text-align: left;
  }
}

.faq-submit-button {
  cursor: pointer;
  padding: 6px 40px;
  border: none;
  background-color: #000;
  color: #fff;
  border-radius: 10px;
  font-family: "RedondaTest", sans-serif;
  font-size: 18px;
  margin-bottom: 50px;
}

@media (max-width: 600px) {
  .cuisine-section {
    margin-top: 0;
    text-align: left;
  }

  .checkbox-group {
    max-width: 100%;
    margin: 20px auto;
  }

  .checkbox-label {
    font-size: 14px;
  }

  .checkbox-label input[type="checkbox"] {
    margin-right: 4px;
  }
}

.faq-box {
  border: 1px solid #000;
  margin-bottom: 15px;
}

.faq-box p {
  color: #000000b2;
  margin: 4px auto;
}

.faq-section p {
  width: 100% !important;
}

#faq-title {
  margin-bottom: 65px;
}

.faq-answer {
  margin-bottom: 50px !important;
}

@media (max-width: 600px) {
  .faq-box {
    padding: 0 12px;
  }

  .faq-box p {
    text-align: left;
  }

  .faq-answer {
    text-align: left;
    margin-bottom: 20px !important;
  }

  #faq-title {
    margin-bottom: 40px;
  }
}

@media (max-width: 600px) {
  #about-columns {
    flex-direction: row;
  }

  #about-columns p {
    width: 100%;
    line-height: 1.5em;
    font-size: 14px;
  }

  #about-columns a {
    margin-bottom: 20px;
    margin-top: 8px;
  }

  #about-uomo {
    padding: 0 1%;
  }
}

.black-title {
  color: #000;
  margin-block-end: 20px;
  margin-block-start: 60px;
}

.top-banner iframe {
  min-width: 100%;
  min-height: 100%;
}

#uomo-pizza p {
  width: 100% !important;
  margin-bottom: 50px;
}

#long-button {
  width: 180px;
}

#second-home-container .two-columns {
  gap: 10px;
}

#home-banner-carousel h2,
.home-banner-carousel p {
  text-shadow: 1.5px 1.5px 12px #ffffffb1;
}

.catering-form input {
  color: #000;
}

.header-left-right-boxes {
  display: flex;
}

.header-top-bottom-boxes {
  display: flex;
  flex-direction: column;
}

.header-top-bar-text-area {
  max-width: 1200px;
  display: flex;
  height: 35px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.menu-and-cta {
  display: flex;
  padding-top: 5px;
}

@media (max-width: 1024px) {
  .header-container {
    display: flex;
    flex-wrap: wrap;
    height: 80px;
    justify-content: flex-end;
  }
}

@media (min-width: 600px) and (max-width: 1024px) {
  .not-tablet {
    display: none;
  }

  .tablet-also {
    display: block !important;
  }

  #text-setting {
    display: flex;
    gap: 30px;
    margin-right: 20px;
  }

  #text-setting p {
    font-size: 14px;
    margin-block-start: 10px;
    line-height: 1.4em;
  }
}

@media (min-width: 1025px) {
  .three-column {
    flex-basis: 22%;
    margin: 0 auto;
  }
}

.links-on-white-back {
  color: #000;
}

.white-shadow {
  text-shadow: 1.5px 1.5px 12px #ffffffb1;
}

.success-page {
  margin-top: 100px;
  margin-bottom: 120px;
}

.success-page h1, .page-error h1, .page-error a {
  color: #000;
}

.success-message li {
  list-style: none;
}

.header-black-section {
  background-color: #000;
  padding-top: 10px;
}

.boxed-header {
  max-width: 1200px;
  margin: 0 auto;
}

#header-three-columns, .header-two-columns {
  display: flex;
  align-items: center;
}

.logo-box {
  flex-basis: 40%;
}

.readers-choice-box, .galveston-best-box {
  flex-basis: 30%;
}


.logo-box img, .readers-choice-box img, .galveston-best-box img {
  max-height: 90px;
  display: block;
}

.logo-box img {
  margin: 0 auto;
}

.readers-choice-box img {
  float: left;
}

.galveston-best-box img {
  float: right;
}


.header-text-box {
  flex-basis: 65%;
}

.header-text-box p, .header-text-box a {
  color: #fff;
  display: inline-block;
  margin-right: 20px;
}

.header-text-box a:hover {
  color: #8fc43e;
}

.header-cta-box {
  flex-basis: 35%;
}

.header-cta-box .cta-button-header {
  float: right;
}

#header-green-section {
  background-color: #8fc43e;
}


@media screen and (max-width: 1024px) {
  .second-header-black-section {
    background-color: #000;
    padding-bottom: 5px;
  }

  .readers-choice-box, .galveston-best-box {
    flex-basis: 20%;
  }

  .logo-box {
    flex-basis: 45%;
  }

  .mobile-menu-box {
    flex-basis: 15%;
    display: flex;
    justify-content: flex-end;
  }

  .header-black-section {
    display: flex;
  }

  .header-text-box {
    flex-basis: 65%;
    padding-left: 10px;
  }

  .header-cta-box {
    flex-basis: 35%;
  }

  .header-text-box p, .header-text-box a {
    display: block;
    margin: 0;
    font-size: 12px;
  }

  .header-cta-box .cta-button-header {
    float: right;
    margin-right: 5px;
    padding: 8px 8px;
    font-size: 12px;
  }

  .logo-box img, .readers-choice-box img, .galveston-best-box img {
    max-height: 80px;
  }

  .desktop-menu {
    display: none;
  }
}

.desktop-menu {
  justify-content: center;
}

@media screen and (max-width: 1200px) {
  .desktop-menu, .header-text-box {
    margin-left: 10px;
  }

  .header-cta-box .cta-button-header, .galveston-best-box img {
    margin-right: 5px;
  }
}

.cream-background {
  background-color: #fff8f0;
}

.logo-row-footer {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 20px;
}

.green-background {
  background-color: #8fc43e;
}

.black-cta {
  background-color: #000;
  color: #fff;
  margin-bottom: 25px;
}

.black-cta:hover {
  color: #8fc43e !important;
}

.padding-added {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media screen and (max-width: 600px) {
  #email-list-section {
    padding: 0;
    margin-right: 5%;
    margin-left: 5%;
  }

  .two-button {
    padding: 0 3px;
  }

  .two-button .cta-button {
    font-size: 15px;
    width: 160px;
  }
}

.no-top-bottom-margin {
  margin: 0 auto;
}

.top-margin {
  margin-top: 50px;
}

.below-banner {
  padding: 20px 0 35px;
}

.below-banner h1 {
  margin-top: 0;
  margin-bottom: 20px;
}

#catering-quote-below-banner h1 {
  margin-top: 30px;
  text-align: center;
}

#faq-margin {
  margin-top: 30px;
}


#second-home-container .two-columns {
  gap: 10px;
}

#banner-text-carousel {
  height: auto;
  overflow: hidden;
  background-color: #8fc43e;
}

#banner-text-carousel .carousel-slides {
  height: auto;
}

#banner-text-carousel .carousel-slide {
  text-align: center;
}

#banner-text-carousel p {
  font-family: "BigCaslonFB", sans-serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 700;
  margin-block: 0;
  margin-bottom: 30px;
}

#banner-text-carousel h2 {
  font-size: 30px;
  width: 75%;
  margin: 30px auto 0 auto;
}

#banner-text-slides {
  align-items: center;
}

@media (max-width: 1024px) {
  #banner-text-carousel h2 {
    width: 65%;
    margin: 10px auto 0 auto;
  }

  #banner-text-carousel p {
    margin-bottom: 10px;
  }

  #home-form .grg-forms {
    width: 88%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #email-list-section .two-columns .col-1 {
    text-align: center;
  }
}

@media (max-width: 600px) {
  #banner-text-carousel h2 {
    font-size: 22px;
    width: 85%;
    margin: 15px auto 0 auto;
  }

  #banner-text-carousel p {
    font-size: 18px;
    width: 95%;
    margin: 15px auto;
  }
}

@media (min-width: 1024px) {
  #email-list-section .two-columns {
    padding: 30px;
  }

  #home-form {
    align-items: unset;
    margin-top: 15px;
  }
}

#about-us-black-section {
  padding-bottom: 35px;
  padding-top: 10px;
}

#our-history h2 {
  margin-bottom: 20px;
}

#our-restaurant-title-section h1 {
  font-size: 34px;
}

@media (max-width: 600px) {
  #our-restaurant-title-section h1 {
    font-size: 26px;
    width: 90%;
  }
}


#art-of-eating-buttons .cta-button {
  padding: 10px 2px;
}

#below-video {
  margin-top: -5px;
}

/*
div#home-second-carousel {
  width: 100% !important;
}
*/
