:root {
  --phthalo-green: #13322b;
  --gold-foil: #c1a01f;
  --ghost: #f5f5f3;
  --vivid-burgundy: #a6192e;
  --white: white;
  --light-grey: #d9d9d9;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: var(--phthalo-green);
  font-family: Archivo Narrow, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
}

h1 {
  color: var(--gold-foil);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5em;
  font-weight: 400;
  line-height: 1.2;
}

h2 {
  letter-spacing: -.1125px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.75em;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  letter-spacing: .0625em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1.5;
}

p {
  margin-bottom: 0;
}

.section {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 170px;
  padding-left: 9.5vw;
  padding-right: 9.5vw;
  display: flex;
  overflow: hidden;
}

.section.double-pd {
  padding-bottom: 170px;
}

.section.double-pd.no-side-pd {
  padding-left: 0;
  padding-right: 0;
}

.section.double-pd.no-side-pd.align-left {
  justify-content: flex-start;
  align-items: flex-start;
}

.section.double-pd.ghost {
  background-color: var(--ghost);
}

.section.no-pd {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.section.no-pd.half-cream {
  background-image: linear-gradient(#f5f5f300 50%, #f5f5f3);
}

.section.menu-section {
  background-image: linear-gradient(#0003, #0003), url('../images/kiskadee-menu-bg.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, auto 100%;
  padding-bottom: 170px;
}

.section.no-hidden-ovf, .section.overflow {
  overflow: visible;
}

.container {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1920px;
  display: flex;
}

.container.skinny {
  max-width: 950px;
}

._5-col-grid {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
}

.box {
  aspect-ratio: 1;
  width: 100%;
}

.box.green {
  background-color: var(--phthalo-green);
}

.box.gold {
  background-color: var(--gold-foil);
}

.box.red {
  background-color: var(--vivid-burgundy);
}

.box.off-white {
  background-color: var(--ghost);
}

.box.white {
  background-color: var(--white);
}

.h2-xl {
  opacity: 0;
  color: var(--gold-foil);
  font-size: 5em;
  transform: scale(0);
}

.dark-gray-body {
  background-color: #e4e4e4;
  font-size: 24px;
}

.h1-white {
  color: var(--white);
}

.gap-40 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.heading {
  font-size: 2.5em;
}

.preloader {
  z-index: 9999;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  min-width: 100%;
  height: 100vh;
  padding: 0 0;
  display: flex;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.h2-xs {
  font-size: 3em;
}

.h2-xs.white {
  opacity: 0;
  color: var(--white);
  letter-spacing: 1.8px;
  display: flex;
  transform: scale(0);
}

.group-gap-0 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 170px;
  display: flex;
}

.group-gap-0.btm {
  margin-top: 0;
  margin-bottom: 170px;
}

.hero-section {
  width: 100%;
  height: calc(100vh - 100px);
  position: relative;
}

.hero-video {
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero-tint {
  z-index: 2;
  background-image: linear-gradient(#0003, #0003), linear-gradient(#13322b00, #13322b);
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 100px 9.5vw;
  display: flex;
  position: absolute;
  inset: 0%;
}

.group-gap-20 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.hero-sub-text {
  color: var(--white);
  letter-spacing: .42px;
  font-size: .875em;
  line-height: 1.5;
}

.button {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: 1px solid var(--white);
  color: var(--white);
  text-transform: uppercase;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  padding: 10px 10px 10px 20px;
  font-family: DM Sans, sans-serif;
  font-size: .5em;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.button:hover {
  border-color: var(--gold-foil);
  background-color: var(--gold-foil);
  color: var(--white);
}

.button.secondary {
  border-color: var(--phthalo-green);
  color: var(--phthalo-green);
}

.button.secondary:hover {
  border-color: var(--gold-foil);
  color: var(--white);
}

._2-col-grid {
  grid-column-gap: 120px;
  grid-row-gap: 120px;
  grid-template-rows: auto;
  width: 100%;
}

._2-col-grid.no-gap {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

._2-col-grid.more-gap-phh {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
}

.grid-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.grid-wrapper.cream {
  background-color: var(--ghost);
  padding: 60px 9.5vw 60px 90px;
}

.grid-wrapper.square {
  aspect-ratio: 1;
}

.grid-wrapper.gap-10 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.grid-wrapper.top-align {
  justify-content: flex-start;
  align-items: flex-start;
}

.grid-wrapper.end-to-end.gap-100 {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: space-between;
}

.grid-wrapper.centered-phone.right-align {
  justify-content: center;
  align-items: flex-end;
}

.paragraph-xl {
  font-size: 1.67em;
}

.max-width-481 {
  max-width: 481px;
}

.paragraph-xl-gold {
  color: var(--gold-foil);
}

.half-grid-image {
  object-fit: cover;
  width: 100%;
}

.half-grid-image.full-height {
  z-index: 0;
  height: 100%;
  position: relative;
}

.half-grid-image.right-tilt {
  max-width: 70%;
  transform: rotate(6.87deg);
}

.half-grid-image.left-tilt {
  max-width: 70%;
  transform: rotate(-6.87deg);
}

.sticker-wrapper {
  z-index: 1;
  position: absolute;
  left: -13%;
}

.sticker {
  width: 138.02px;
  height: 119.86px;
}

.track {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 80px;
  margin-bottom: 80px;
  display: flex;
  overflow: hidden;
}

.slide-1 {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  justify-content: center;
  align-items: center;
  width: 4327.13px;
  min-width: 4327.13px;
  display: flex;
  overflow: visible;
}

.ticker-tag {
  width: 289.641px;
}

.cup-wrapper {
  width: 100%;
  height: 100%;
}

.cup {
  width: 120px;
  height: 77.11px;
}

.cup.smaller {
  height: 63.26px;
}

.full-image-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.half-container {
  grid-column-gap: 200px;
  grid-row-gap: 200px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 960px;
  display: flex;
}

.paragraph {
  letter-spacing: -.02em;
  font-family: DM Sans, sans-serif;
  font-size: 1em;
  line-height: 1.5;
}

.paragraph-xxl {
  color: var(--vivid-burgundy);
  letter-spacing: -.01em;
  font-size: 2em;
  line-height: 1.2;
}

.centered-text-align {
  text-align: center;
  width: 100%;
}

.flex-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 0px;
  flex-flow: wrap;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.text-wrap-image {
  z-index: 2;
  height: 62px;
  margin-left: 4px;
  margin-right: 4px;
  position: relative;
}

.text-wrap-image:hover {
  z-index: 3;
}

.square-image {
  aspect-ratio: 1;
  width: 60%;
}

.square-image._1 {
  z-index: 1;
  position: absolute;
  bottom: 65%;
  right: 0;
}

.square-image._2 {
  z-index: 2;
  position: absolute;
  top: 30%;
  right: 0;
}

.square-image._3 {
  z-index: 3;
  position: absolute;
}

.paragraph-xl-underline {
  cursor: pointer;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: underline;
  display: flex;
}

.paragraph-xl-underline:hover {
  color: var(--gold-foil);
}

.hover-reveal-image {
  z-index: 1;
  opacity: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.h2-dm-sans {
  letter-spacing: -.05em;
  font-family: DM Sans, sans-serif;
  font-size: 3.75em;
}

.h2-dm-sans.gold {
  color: var(--gold-foil);
}

.right-align-flex {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.left-align-flex {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.gayaneese-badge-wrapper {
  width: 137.95px;
  height: 108.77px;
}

.menu-section {
  width: 100%;
}

.full-image {
  object-fit: cover;
  width: 100%;
}

.full-image._60 {
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 60px #0000004d;
}

.full-image.ratio {
  aspect-ratio: 1;
}

.h3-xl {
  font-size: 1.67em;
  font-weight: 400;
  line-height: 1.4;
}

.max-width-250 {
  max-width: 250px;
}

.faq-wrapper {
  border-bottom: 1px solid #d9d9d9;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.faq-header {
  cursor: pointer;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  display: flex;
}

.faq-header-text {
  font-family: DM Sans, sans-serif;
  font-size: 1em;
}

.faq-icon {
  width: 36px;
  height: 36px;
  position: relative;
}

.plus-icon {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.minus-icon {
  opacity: 0;
  width: 100%;
  height: 100%;
}

.faq-body {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  overflow: hidden;
}

.faq-body-text {
  color: #5a706b;
  margin-top: 8px;
  margin-bottom: 8px;
  font-family: DM Sans, sans-serif;
  font-size: .67em;
  font-weight: 500;
}

.phone-number {
  color: var(--phthalo-green);
  letter-spacing: .16em;
  font-size: 1.125em;
  text-decoration: none;
}

.gap-0 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.nav-menu-wrapper-three {
  width: 100%;
}

.nav-menu-three {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.logo {
  width: 122px;
  height: 70px;
}

.nav-menu-block {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.navbar-brand-three {
  z-index: 5;
  width: 122px;
  height: 70px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  left: 0;
  right: 0;
}

.navbar-logo-center-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.navbar-logo-center-container.shadow-three {
  background-color: var(--ghost);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  padding: 15px 9.5vw;
  display: flex;
  position: sticky;
  top: 0;
}

.navbar-wrapper-three {
  justify-content: center;
  align-items: center;
  height: 70px;
  display: flex;
  position: relative;
}

.container-2 {
  width: 100%;
  max-width: 1920px;
  height: 70px;
  margin-left: auto;
  margin-right: auto;
}

.nav-link {
  color: var(--phthalo-green);
  letter-spacing: .25px;
  text-transform: uppercase;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: all .6s;
}

.nav-link:hover {
  color: #bb8f5a;
}

.nav-link:focus-visible, .nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-link.w--current {
  color: var(--gold-foil);
}

.nav-link.last {
  margin-right: 0;
  padding-right: 0;
}

.nav-link.first {
  margin-left: 0;
  padding-left: 0;
}

.nav-link.first.w--current {
  color: var(--phthalo-green);
}

.footer-dark {
  background-color: var(--phthalo-green);
  color: var(--white);
  border-bottom: 1px solid #e4ebf3;
  padding: 40px 9.5vw 15px;
  position: relative;
}

.container-3 {
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.footer-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-block {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.title-small {
  color: var(--light-grey);
  letter-spacing: 1px;
  text-transform: none;
  margin-bottom: 12px;
  font-family: DM Sans, sans-serif;
  font-size: .5em;
  font-weight: 500;
  line-height: 1;
}

.footer-link {
  color: var(--white);
  cursor: pointer;
  margin-top: 0;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: .75em;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--gold-foil);
}

.footer-link.no-hover {
  cursor: not-allowed;
}

.footer-link.no-hover:hover {
  color: var(--white);
}

.footer-social-block {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
  margin-left: -12px;
  display: flex;
}

.footer-social-link {
  cursor: pointer;
  margin-left: 0;
}

.footer-divider {
  background-color: #5a706b;
  width: 100%;
  height: 1px;
  margin-top: 70px;
  margin-bottom: 15px;
}

.footer-copyright-center {
  text-align: left;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.lightbox-link {
  width: 100%;
  max-width: 65%;
  margin-left: auto;
  margin-right: auto;
}

.image-2 {
  width: 100%;
}

.code-embed {
  display: none;
}

.preloader-wrapper {
  background-color: var(--phthalo-green);
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  height: 100vh;
  padding-left: 9.5vw;
  padding-right: 9.5vw;
  display: flex;
}

@media screen and (max-width: 991px) {
  body {
    font-size: 21px;
  }

  .section {
    padding-top: 100px;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .section.double-pd, .section.menu-section {
    padding-bottom: 100px;
  }

  .preloader {
    padding: 0 0;
  }

  .group-gap-0 {
    margin-top: 100px;
  }

  .group-gap-0.btm {
    margin-top: 0;
    margin-bottom: 100px;
  }

  .hero-section {
    height: calc(100vh - 87.375px);
  }

  .hero-tint {
    padding-bottom: 60px;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  ._2-col-grid {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .grid-wrapper.cream {
    padding-left: 40px;
    padding-right: 5vw;
  }

  .max-width-481 {
    width: 100%;
    max-width: none;
  }

  .track {
    margin-top: 60px;
    margin-bottom: 60px;
  }

  .half-container {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .h2-dm-sans {
    font-size: 3em;
  }

  .gayaneese-badge-wrapper {
    width: 120px;
    height: 80.0781px;
  }

  .nav-menu-wrapper-three {
    background-color: #fff;
    height: 100vh;
    position: absolute;
    top: 87px;
  }

  .nav-menu-three {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    box-shadow: none;
    background-color: #0000;
    border-radius: 0;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    padding: 60px 5vw;
    display: flex;
  }

  .logo {
    width: 100px;
    height: 57.375px;
  }

  .nav-menu-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
  }

  .menu-button {
    background-color: var(--ghost);
    color: var(--phthalo-green);
    padding: 12px;
  }

  .menu-button.w--open {
    color: var(--gold-foil);
    background-color: #0000;
  }

  .navbar-brand-three {
    width: 100px;
    height: 57.375px;
    margin-left: 0;
    margin-right: 0;
    position: relative;
  }

  .navbar-brand-three.w--current {
    margin-left: 0;
    margin-right: 0;
  }

  .navbar-logo-center-container.shadow-three {
    height: 87.375px;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .navbar-wrapper-three {
    justify-content: space-between;
    width: 100%;
    height: 57.375px;
  }

  .container-2 {
    max-width: none;
    height: 57.375px;
  }

  .nav-link {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 24px;
  }

  .container-3 {
    max-width: 728px;
  }

  .footer-content {
    grid-column-gap: 60px;
  }

  .preloader-wrapper {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 1.2;
  }

  h1 {
    font-size: 2.8em;
  }

  h3 {
    line-height: 1.2;
  }

  .section {
    padding-top: 60px;
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .section.double-pd {
    padding-bottom: 60px;
  }

  .section.double-pd.no-side-pd.align-left {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .section.menu-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .preloader {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-tint {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .hero-sub-text {
    font-size: 1.2em;
  }

  .button {
    font-size: .8em;
  }

  ._2-col-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  ._2-col-grid.more-gap-phh {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .grid-wrapper.cream {
    padding-left: 4.5vw;
    padding-right: 4.5vw;
  }

  .grid-wrapper.centered-phone {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .sticker-wrapper {
    inset: -40px -20px auto auto;
  }

  .track {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .slide-1 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    width: 2792px;
    min-width: 2792px;
  }

  .ticker-tag {
    width: 194px;
  }

  .cup {
    width: 80px;
    height: 57.3906px;
  }

  .cup.smaller {
    height: 70.3906px;
  }

  .half-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .paragraph {
    font-size: 1.3em;
  }

  .flex-wrap {
    grid-column-gap: 6px;
  }

  .text-wrap-image {
    height: 40px;
  }

  .h2-dm-sans {
    font-size: 1.8em;
  }

  .right-align-flex {
    text-align: right;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 100%;
    margin-left: auto;
  }

  .left-align-flex {
    justify-content: space-between;
    max-width: 100%;
  }

  .gayaneese-badge-wrapper {
    justify-content: flex-start;
    align-items: center;
    width: 48px;
    height: 42.0938px;
    display: flex;
  }

  .h3-xl {
    line-height: 1.2;
  }

  .faq-header-text {
    font-size: 1.2em;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
  }

  .faq-body-text {
    font-size: 1em;
    line-height: 1.4;
  }

  .nav-menu-wrapper-three {
    background-color: #fff;
    top: 87px;
  }

  .nav-menu-three {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-menu-block {
    flex-direction: column;
  }

  .navbar-brand-three {
    margin-right: auto;
    padding-left: 0;
  }

  .navbar-logo-center-container.shadow-three {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .navbar-wrapper-three {
    min-width: 100%;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .footer-dark {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .footer-block {
    align-items: center;
  }

  .title-small {
    font-size: .75em;
  }

  .footer-link {
    font-size: 1.2em;
  }

  .footer-social-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin-top: 20px;
    margin-left: -20px;
  }

  .footer-divider {
    margin-top: 60px;
  }

  .footer-copyright-center {
    text-align: center;
    font-size: 12px;
  }

  .preloader-wrapper {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}

@media screen and (max-width: 479px) {
  .h2-xl {
    font-size: 3.5em;
  }

  .h2-xs.white {
    font-size: 2em;
  }

  .group-gap-0 {
    margin-top: 60px;
  }

  .group-gap-0.btm {
    margin-bottom: 140px;
  }

  .hero-section {
    height: 70vh;
  }

  .grid-wrapper.centered-phone.right-align {
    justify-content: center;
    align-items: center;
  }

  .nav-menu-wrapper-three {
    position: absolute;
  }

  .nav-menu-three {
    flex-direction: column;
  }

  .container-2, .container-3 {
    max-width: none;
  }

  .lightbox-link {
    max-width: 100%;
  }
}

#w-node-d8c8eaaa-862f-7582-2900-2973ac0fd95c-e8ff7308 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-e27933fe-182b-2d76-e2aa-85b53396e035-e8ff7308, #w-node-e27933fe-182b-2d76-e2aa-85b53396e03e-e8ff7308, #w-node-e27933fe-182b-2d76-e2aa-85b53396e049-e8ff7308 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-_9b877c0f-8054-dd8a-1dc4-4fdfbad48c3d-e8ff7308 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_717f5717-619e-3365-df4a-cda7513c04ae-e8ff7308 {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-d8c8eaaa-862f-7582-2900-2973ac0fd95c-e8ff7308 {
    grid-area: 1 / 1 / 2 / 2;
  }
}


