@charset "UTF-8";
/**
 * Typography - Fonts
 * La Loca Restaurant Theme
 *
 * Headings: Recoleta (local font)
 * Body: Raleway (Google Fonts)
 */
@font-face {
  font-family: "Recoleta";
  src: url("../fonts/Recoleta-Light.woff2") format("woff2"), url("../fonts/Recoleta-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Recoleta";
  src: url("../fonts/Recoleta-Regular.woff2") format("woff2"), url("../fonts/Recoleta-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Recoleta";
  src: url("../fonts/Recoleta-Bold.woff2") format("woff2"), url("../fonts/Recoleta-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Recoleta", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1rem;
}

h1, .h1 {
  font-size: 3.5rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: 2.5rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: 2rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: 1.5rem;
  font-weight: 400;
}

h5, .h5 {
  font-size: 1.25rem;
  font-weight: 400;
}

h6, .h6 {
  font-size: 1rem;
  font-weight: 700;
}

p {
  font-family: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.8;
}

.small-text {
  font-size: 0.875rem;
}

a {
  font-family: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.font-heading {
  font-family: "Recoleta", Georgia, serif;
}

.font-body {
  font-family: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
}

.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

/**
 * General Variables
 * Colors & Breakpoints
 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #F5F5F5;
  background-color: #134846;
  font-size: 16px;
}
body.page {
  margin: 0;
}

.site {
  padding-top: 100px;
}
@media (min-width: 1660px) {
  .site {
    padding-top: 120px;
  }
}

.btn-primary, .btn-secondary {
  padding: 12px 15px;
  font-size: 1rem;
  border: 2px solid #C99A58;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Recoleta", Georgia, serif;
}
@media (min-width: 1660px) {
  .btn-primary, .btn-secondary {
    font-size: 1.25rem;
    padding: 17px 33px;
  }
}

.btn-primary {
  color: #ffffff;
}
.btn-primary:hover {
  color: #134846;
  background: #C99A58;
}

.btn-secondary {
  color: #134846;
}
.btn-secondary:hover {
  background: #C99A58;
  color: #134846;
}

.error-404-section {
  padding: 100px 5%;
  text-align: center;
  background-color: #0B2423;
}
.error-404-section .error-404-section__wrap {
  max-width: 640px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.error-404-section .error-404-section__wrap h1 {
  font-size: 2.5rem;
  color: #C99A58;
  margin: 0;
}
.error-404-section .error-404-section__wrap p {
  font-size: 1.125rem;
  color: #F5F5F5;
}
.error-404-section .error-404-section__wrap .btn-primary {
  margin-top: 1rem;
}

header {
  background-color: #134846;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  justify-content: space-between;
  z-index: 1000;
}
header.scrolled .logo svg {
  height: 50px;
}
header .header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-top: 2px solid #C99A58;
  border-bottom: 2px solid #C99A58;
}
header .header-wrap--item.logo {
  padding: 20px;
  width: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 2px solid #C99A58;
}
header .header-wrap--item.logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .header-wrap--item.logo a svg {
  transition: height 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  width: 84px;
}
@media (min-width: 1280px) {
  header .header-wrap--item.logo a svg {
    width: 130px;
  }
}
@media (min-width: 1660px) {
  header .header-wrap--item.logo {
    padding: 30px;
  }
}
header .header-wrap--item.ig {
  border-right: 2px solid #C99A58;
  width: 100%;
}
@media (min-width: 1280px) {
  header .header-wrap--item.ig {
    border: none;
    width: auto;
  }
}
header .header-wrap--item.ig a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding: 30px;
}
header .header-wrap--item.ig a:hover {
  background-color: #C99A58;
}
header .header-wrap--item.ig a:hover svg path {
  fill: #134846;
}
header .header-wrap--item.ig a svg {
  width: 32px;
}
@media (min-width: 1280px) {
  header .header-wrap--item.ig a svg {
    width: 43px;
  }
}
header .header-wrap--item.ig a svg path {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
header .header-wrap--item.burger-menu {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1280px) {
  header .header-wrap--item.burger-menu {
    display: none;
    padding: 0;
  }
}
header .header-wrap--item.nav {
  width: 100%;
  display: none;
}
@media (min-width: 1280px) {
  header .header-wrap--item.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
header .header-wrap--item.nav .menu-main-menu-container {
  width: 100%;
  height: 100%;
}
header .header-wrap--item.nav .menu-main-menu-container .menu {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  height: 100%;
  list-style: none;
}
header .header-wrap--item.nav .menu-main-menu-container .menu li {
  width: 100%;
  height: 100%;
}
header .header-wrap--item.nav .menu-main-menu-container .menu li a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #C99A58;
  font-family: "Recoleta", Georgia, serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  border-right: 2px solid #C99A58;
}
@media (min-width: 1660px) {
  header .header-wrap--item.nav .menu-main-menu-container .menu li a {
    font-size: 1.25rem;
  }
}
header .header-wrap--item.nav .menu-main-menu-container .menu li a:hover {
  background-color: #C99A58;
  color: #134846;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav {
  position: fixed;
  width: 100%;
  height: calc(100vh - 83px);
  top: 83px;
  left: 0;
  background: #134846;
  z-index: 1000;
  transform: translateY(-120%);
  transition: all 0.2s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile-nav.active {
  transform: translateY(0);
}
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav ul li {
  text-align: center;
}
.mobile-nav ul li a {
  text-transform: uppercase;
  font-size: 2rem;
  color: #C99A58;
  padding: 1rem;
  text-decoration: none;
  text-align: center;
  font-family: "Recoleta", Georgia, serif;
  font-weight: bold;
}
.mobile-nav ul li a:focus, .mobile-nav ul li a:visited {
  color: #C99A58;
}

.burger {
  width: 41px;
  height: 21px;
  padding: 0;
  border: none;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

/* jednotlivé čiarky */
.burger span {
  display: block;
  width: 41px;
  height: 4px;
  background-color: #C99A58;
}

/**
 * Footer Styles
 */
footer {
  background-color: #0B2423;
  border-top: 2px solid #C99A58;
}
footer .footer-bottom {
  background-color: #C99A58;
  color: #ffffff;
  text-align: center;
  padding: 20px 5%;
}
footer .footer-bottom p {
  margin-bottom: 0;
  font-size: 1rem;
  font-family: "Recoleta", Georgia, serif;
  text-transform: uppercase;
}
@media (min-width: 1660px) {
  footer .footer-bottom p {
    font-size: 1.25rem;
  }
}
@media (min-width: 1024px) {
  footer .footer-bottom {
    padding: 30px 5%;
  }
}
@media (min-width: 1660px) {
  footer .footer-bottom {
    padding: 40px 5%;
  }
}
footer .footer-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  footer .footer-content {
    flex-direction: row;
  }
}
footer .footer-content .footer-section {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 40px 8%;
}
@media (min-width: 1024px) {
  footer .footer-content .footer-section {
    justify-content: center;
    padding: 95px 5%;
  }
}
@media (min-width: 1660px) {
  footer .footer-content .footer-section {
    padding: 105px 5%;
  }
}
@media (min-width: 1024px) {
  footer .footer-content .footer-section {
    width: 50%;
  }
}
footer .footer-content .footer-section:first-child {
  border-bottom: 2px solid #C99A58;
}
@media (min-width: 1024px) {
  footer .footer-content .footer-section:first-child {
    border-bottom: none;
    border-right: 2px solid #C99A58;
  }
}
footer .footer-content .footer-section .caption {
  font-size: 1.125rem;
  font-family: "Recoleta", Georgia, serif;
}
@media (min-width: 1660px) {
  footer .footer-content .footer-section .caption {
    font-size: 1.5rem;
  }
}
footer .footer-content .footer-section .caption a {
  color: #C99A58;
  text-decoration: underline;
}
footer .footer-content .footer-section .caption p {
  font-size: 1.125rem;
  font-family: "Recoleta", Georgia, serif;
}
@media (min-width: 1660px) {
  footer .footer-content .footer-section .caption p {
    font-size: 1.5rem;
  }
}
footer .footer-content .footer-section .caption p a {
  color: #C99A58;
  text-decoration: underline;
}
footer .footer-content .footer-section .footer-hours--list__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
footer .footer-content .footer-section .footer-hours--list__item:last-child .day {
  border-bottom: none;
}
footer .footer-content .footer-section .footer-hours--list__item:last-child .time {
  border-bottom: none;
}
footer .footer-content .footer-section .footer-hours--list__item .day {
  padding: 8px 15px 8px 0;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
footer .footer-content .footer-section .footer-hours--list__item .time {
  padding: 8px 15px;
  border-bottom: 1px solid #ffffff;
}
footer .footer-content .footer-section .footer-title {
  color: #C99A58;
  font-size: 1.5rem;
  font-weight: bold;
}
@media (min-width: 1024px) {
  footer .footer-content .footer-section .footer-title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1660px) {
  footer .footer-content .footer-section .footer-title {
    font-size: 2.875rem;
  }
}

/**
 * La Loca Home Template Styles
 * Fullscreen sections without containers
 */
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
section {
  overflow: hidden;
}
section.instagram-section {
  background: #0B2423;
  padding: 35px 8%;
}
@media (min-width: 1024px) {
  section.instagram-section {
    padding: 100px 5%;
  }
}
section.instagram-section .insta-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  margin-top: 35px;
}
@media (min-width: 1024px) {
  section.instagram-section .insta-link {
    margin-top: 60px;
  }
}
@media (min-width: 1660px) {
  section.instagram-section .insta-link {
    margin-top: 85px;
  }
}
section.instagram-section h2 {
  text-align: left;
  color: #C99A58;
  margin-bottom: 35px;
}
@media (min-width: 1024px) {
  section.instagram-section h2 {
    text-align: center;
    margin-bottom: 60px;
  }
}
@media (min-width: 1660px) {
  section.instagram-section h2 {
    margin-bottom: 85px;
  }
}
section.instagram-section #sb_instagram .sb_instagram_header {
  display: none;
}
section.instagram-section #sb_instagram #sbi_load {
  display: none;
}
section.instagram-section #sb_instagram #sbi_images {
  padding: 0;
}
section.instagram-section #sb_instagram #sbi_images .sbi_item {
  padding: 20px;
  border: 2px solid #C99A58;
}
@media (min-width: 1024px) {
  section.instagram-section #sb_instagram #sbi_images .sbi_item {
    padding: 40px;
  }
}
@media (min-width: 1660px) {
  section.instagram-section #sb_instagram #sbi_images .sbi_item {
    padding: 60px;
  }
}
@media (min-width: 1024px) {
  section.content-section {
    height: 100vh;
  }
}
section.content-section .section-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
@media (min-width: 1024px) {
  section.content-section .section-wrapper {
    flex-direction: row;
  }
}
section.content-section .section-wrapper.reverse .section-content {
  order: 2;
}
section.content-section .section-wrapper.reverse .section-image {
  order: 1;
}
@media (min-width: 1024px) {
  section.content-section .section-wrapper.reverse .section-content {
    order: 1;
  }
  section.content-section .section-wrapper.reverse .section-image {
    order: 2;
  }
}
section.content-section .section-wrapper.reverse .swiper-nav-btn {
  transform: translate(50%, 50%) rotate(180deg);
}
@media (min-width: 1024px) {
  section.content-section .section-wrapper.reverse .swiper-nav-btn {
    left: 0;
    right: unset;
    transform: translate(-50%, 50%) rotate(180deg);
  }
}
section.content-section .section-wrapper .swiper-nav-btn {
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translate(50%, 50%);
  z-index: 100;
  padding: 0;
  background: transparent;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}
@media (min-width: 1024px) {
  section.content-section .section-wrapper .swiper-nav-btn {
    bottom: 50%;
    right: 0;
    transform: translate(50%, 50%);
  }
}
section.content-section .section-wrapper .swiper-nav-btn svg {
  width: 63px;
  height: 63px;
}
@media (min-width: 1024px) {
  section.content-section .section-wrapper .swiper-nav-btn svg {
    width: 65px;
    height: 65px;
  }
}
@media (min-width: 1660px) {
  section.content-section .section-wrapper .swiper-nav-btn svg {
    width: 83px;
    height: 83px;
  }
}
section.content-section .section-wrapper .swiper-nav-btn svg circle {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
section.content-section .section-wrapper .swiper-nav-btn svg path {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
section.content-section .section-wrapper .swiper-nav-btn svg:hover circle {
  fill: #C99A58;
}
section.content-section .section-wrapper .swiper-nav-btn svg:hover path {
  stroke: #ffffff;
}
section.content-section .section-wrapper .section-image {
  width: 100%;
  height: 50vh;
  position: relative;
}
@media (min-width: 1024px) {
  section.content-section .section-wrapper .section-image {
    width: 50%;
    height: 100%;
  }
}
section.content-section .section-wrapper .section-image .swiper {
  width: 100%;
  height: 100%;
}
section.content-section .section-wrapper .section-image .swiper .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
section.content-section .section-wrapper .section-image .swiper .swiper-nav-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}
section.content-section .section-wrapper .section-image .swiper .swiper-nav-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
}
section.content-section .section-wrapper .section-image .swiper .swiper-nav-btn.swiper-nav-right svg {
  transform: rotate(180deg);
}
section.content-section .section-wrapper .section-image .swiper .swiper-nav-btn svg {
  display: block;
  width: 60px;
  height: 60px;
}
@media (min-width: 1024px) {
  section.content-section .section-wrapper .section-image .swiper .swiper-nav-btn svg {
    width: 87px;
    height: 87px;
  }
}
section.content-section .section-wrapper .section-content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 9;
}
@media (min-width: 1024px) {
  section.content-section .section-wrapper .section-content {
    width: 50%;
    height: 100%;
  }
}
section.content-section .section-wrapper .section-content--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  align-items: center;
}
section.content-section .section-wrapper .section-content .caption {
  padding: 30px 8%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (min-width: 1024px) {
  section.content-section .section-wrapper .section-content .caption {
    padding: 0;
    max-width: 460px;
    gap: 30px;
  }
}
@media (min-width: 1660px) {
  section.content-section .section-wrapper .section-content .caption {
    max-width: 608px;
  }
}
section.content-section .section-wrapper .section-content .caption .section-subtitle {
  font-size: 1.5rem;
  color: #C99A58;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  section.content-section .section-wrapper .section-content .caption .section-subtitle {
    font-size: 2.25rem;
  }
}
@media (min-width: 1660px) {
  section.content-section .section-wrapper .section-content .caption .section-subtitle {
    font-size: 2.875rem;
  }
}
section.content-section .section-wrapper .section-content .section-text {
  font-size: 1.125rem;
  margin-bottom: 0;
}
@media (min-width: 1660px) {
  section.content-section .section-wrapper .section-content .section-text {
    font-size: 1.5rem;
  }
}
section.content-section .section-wrapper .section-content .section-text p {
  font-size: 1.125rem;
  margin-bottom: 0;
}
@media (min-width: 1660px) {
  section.content-section .section-wrapper .section-content .section-text p {
    font-size: 1.5rem;
  }
}
section.content-section .section-wrapper .section-content .section-title {
  width: 100%;
  margin-top: 50px;
}
@media (min-width: 1024px) {
  section.content-section .section-wrapper .section-content .section-title {
    margin-bottom: 30px;
  }
}
section.banner-notification {
  background-color: #C99A58;
  color: #ffffff;
  padding: 15px 0;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section.banner-notification .banner-text {
  margin: 0;
  font-family: "Recoleta", Georgia, serif;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  font-size: 1.25rem;
  white-space: nowrap;
  display: inline-block;
  animation: marquee 20s linear infinite;
  padding-right: 50px;
}
@media (min-width: 1024px) {
  section.banner-notification .banner-text {
    font-size: 2.8rem;
    animation: marquee 25s linear infinite;
  }
}
section.hero-section {
  position: relative;
}
@media (min-width: 1024px) {
  section.hero-section {
    height: 80vh;
  }
}
section.hero-section .loca-vector {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  transform: translate(-50%, -50%);
  max-width: 160px;
}
@media (min-width: 1024px) {
  section.hero-section .loca-vector {
    max-width: 210px;
  }
}
@media (min-width: 1660px) {
  section.hero-section .loca-vector {
    max-width: 330px;
  }
}
section.hero-section .hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 99;
}
@media (min-width: 1024px) {
  section.hero-section .hero-content {
    flex-direction: row;
  }
}
section.hero-section .hero-content .hero-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 50vh;
  order: 1;
}
@media (min-width: 1024px) {
  section.hero-section .hero-content .hero-image {
    width: 50%;
    height: 100%;
    order: 2;
  }
}
section.hero-section .hero-content .hero-text {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  padding: 120px 15% 50px;
  height: 50vh;
  order: 2;
}
@media (min-width: 1024px) {
  section.hero-section .hero-content .hero-text {
    height: 100%;
    order: 1;
    padding: 5%;
  }
}
section.hero-section .hero-content .hero-text .caption {
  width: 100%;
  max-width: 430px;
}
section.hero-section .hero-content .hero-text .caption .hero-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  color: #C99A58;
  font-size: 2.25rem;
  gap: 10px;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  section.hero-section .hero-content .hero-text .caption .hero-title {
    font-size: 3.125rem;
  }
}
@media (min-width: 1440px) {
  section.hero-section .hero-content .hero-text .caption .hero-title {
    font-size: 3.75rem;
  }
}
section.hero-section .hero-content .hero-text .caption .hero-title span {
  line-height: 1;
}
section.hero-section .hero-content .hero-text .caption .hero-subtitle {
  color: #134846;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  section.hero-section .hero-content .hero-text .caption .hero-subtitle {
    font-size: 2.125rem;
  }
}
@media (min-width: 1440px) {
  section.hero-section .hero-content .hero-text .caption .hero-subtitle {
    font-size: 2.5rem;
  }
}
section.hero-section .hero-content .hero-text .caption .hero-subtitle p {
  color: #134846;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  section.hero-section .hero-content .hero-text .caption .hero-subtitle p {
    font-size: 2.125rem;
  }
}
@media (min-width: 1440px) {
  section.hero-section .hero-content .hero-text .caption .hero-subtitle p {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  section.hero-section .hero-content .hero-text {
    width: 50%;
  }
}
section.catering-section .section-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 1024px) {
  section.catering-section .section-wrapper {
    flex-direction: row;
  }
}
section.catering-section .section-wrapper .section-content {
  width: 100%;
  background-color: #ffffff;
}
@media (min-width: 1024px) {
  section.catering-section .section-wrapper .section-content {
    width: 50%;
  }
}
section.catering-section .section-wrapper .section-content h2 {
  color: #C99A58;
}
section.catering-section .section-wrapper .section-content .section-text {
  color: #134846;
  font-size: 1.125rem;
  margin-bottom: 0;
}
@media (min-width: 1660px) {
  section.catering-section .section-wrapper .section-content .section-text {
    font-size: 1.5rem;
  }
}
section.catering-section .section-wrapper .section-content .section-text p {
  font-size: 1.125rem;
  margin-bottom: 0;
}
@media (min-width: 1660px) {
  section.catering-section .section-wrapper .section-content .section-text p {
    font-size: 1.5rem;
  }
}
section.catering-section .section-wrapper .section-content .section-text a {
  color: #C99A58;
  font-weight: bold;
}
section.catering-section .section-wrapper .section-image {
  width: 100%;
  height: 50vh;
  position: relative;
}
@media (min-width: 1024px) {
  section.catering-section .section-wrapper .section-image {
    width: 50%;
    height: 100%;
  }
}
section.catering-section .section-wrapper .section-image .swiper {
  width: 100%;
  height: 100%;
}
section.catering-section .section-wrapper .section-image .swiper .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
section.catering-section .section-wrapper .section-image .swiper .swiper-button-prev,
section.catering-section .section-wrapper .section-image .swiper .swiper-button-next {
  color: #C99A58;
}
section.catering-section .section-wrapper .section-image .swiper .swiper-button-prev:after,
section.catering-section .section-wrapper .section-image .swiper .swiper-button-next:after {
  font-size: 30px;
  font-weight: bold;
}
section.catering-section .section-wrapper .section-image .swiper .swiper-button-prev:hover,
section.catering-section .section-wrapper .section-image .swiper .swiper-button-next:hover {
  color: #ffffff;
}
section.catering-section .section-wrapper .section-image .swiper .swiper-pagination {
  bottom: 20px;
}
section.catering-section .section-wrapper .section-image .swiper .swiper-pagination .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.5;
  width: 12px;
  height: 12px;
}
section.catering-section .section-wrapper .section-image .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #C99A58;
  opacity: 1;
}
