/* STYLES FOR ABOVE THE FOLD */
.cs-button-solid {
  z-index: 1;
  position: relative;
  display: inline-block;
  background-color: var(--primary);
  width: auto;
  padding: 0 1.875rem;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 3.125em;
  font-weight: bold;
  color: #fff;
  transition: color 0.3s;
  transition-delay: 0.1s;
  text-align: center;
}
.cs-button-solid:hover {
  color: #fff;
}
.cs-button-solid:hover:before {
  width: 100%;
}
.cs-button-solid:before {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  opacity: 1;
  display: block;
  background-color: #000;
  height: 100%;
  width: 0;
  transition: width 0.3s;
}

/*-- -------------------------- -->
<---          Button 12         -->
<--- -------------------------- -*/
.cs-button-12 {
  font-size: 1rem;
  /* 46px - 56px */
  line-height: clamp(2.875rem, 8vw, 3.5rem);
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background-color: var(--primary);
  padding: 0 0 0 1.5rem;
  /* prevents padding from affecting height and width */
  box-sizing: border-box;
  display: inline-flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
  transition: background-color 0.3s;
}
.cs-button-12.inverted {
  color: var(--primary);
  background-color: #fff;
}
.cs-button-12.inverted:hover {
  color: #fff;
}
.cs-button-12 .cs-button-icon {
  filter: grayscale(1) brightness(0%);
}
.cs-button-12:hover {
  background-color: #1a1a1a;
}
.cs-button-12:hover .cs-button-wrapper:before {
  height: 100%;
}
.cs-button-12:hover .cs-button-icon {
  /* turns it white */
  filter: grayscale(1) brightness(1000%);
}
.cs-button-12 .cs-button-wrapper {
  width: 3.5rem;
  background-color: #E8E8E8;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: transform 0.3s, background-color 0.3s;
}
.cs-button-12 .cs-button-wrapper:before {
  /* button background color */
  content: "";
  width: 100%;
  height: 0%;
  background: var(--primary);
  opacity: 1;
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: height 0.3s;
}
.cs-button-12 .cs-button-icon {
  width: 1.75rem;
  height: auto;
  display: block;
}

@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/playfair-display-v37-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* playfair-display-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/playfair-display-v37-latin-900.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/lato-v24-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* lato-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/lato-v24-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-929 {
    padding: var(--sectionPadding);
    padding-bottom: 0;
    position: relative;
    min-height: 80vh;
  }
  #hero-929 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
  }
  #hero-929 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #hero-929 .cs-title {
    /* 39px - 61px */
    font-size: clamp(2rem, 6.4vw, 3.8125rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 68.5rem;
    /* 8px - 16px */
    margin: 0 0 clamp(0.5rem, 2vw, 1rem) 0;
    color: var(--bodyTextColorWhite);
    position: relative;
  }
  #hero-929 .cs-flex {
    width: 100%;
    /* removed at small desktop */
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
  }
  #hero-929 .cs-content-group {
    width: 100%;
    /* changes to 352px at small desktop */
    max-width: 43.75rem;
  }
  #hero-929 .cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0 auto 1.75rem auto;
    color: #f7f7f7;
  }
  #hero-929 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 2rem;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #hero-929 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #hero-929 .cs-button-solid:hover:before {
    width: 100%;
  }
  #hero-929 .cs-hours-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    row-gap: 1.25rem;
    column-gap: 1.5rem;
  }
  #hero-929 .cs-header {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    font-family: "Playfair Display", Arial, sans-serif;
    line-height: 1.2em;
    font-weight: bold;
    text-align: center;
    width: 100%;
    color: var(--bodyTextColorWhite);
    display: block;
  }
  #hero-929 .cs-hours {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  #hero-929 .cs-day {
    font-size: 1rem;
    line-height: 1.2em;
    font-weight: bold;
    color: var(--primary);
    display: block;
  }
  #hero-929 .cs-time {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
    color: #f7f7f7;
    display: block;
  }
  #hero-929 .cs-picture-group {
    position: relative;
  }
  #hero-929 .cs-tagline {
    /* 52px - 62px */
    font-size: clamp(3.25rem, 7vw, 3.875rem);
    font-family: "Mr Dafoe", cursive;
    line-height: 0.9em;
    max-width: 5ch;
    margin: 0 auto -2.125rem;
    color: var(--primary);
    display: block;
    transform: rotate(-14.36deg) translateX(-6.25rem);
  }
  #hero-929 .cs-picture {
    width: 100%;
    height: auto;
    max-height: 37.375rem;
    display: flex;
    align-items: flex-end;
  }
  #hero-929 .cs-picture img {
    width: 100%;
  }
  #hero-929 .cs-background {
    display: none;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #hero-929 .cs-background:before {
    /* background color overlay */
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #1a1a1a;
    opacity: 0.96;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #hero-929 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
  }
}
/* Strictly Mobile Only - 768px */
@media only screen and (max-width: 48rem) {
  #hero-929 .cs-picture img {
    height: auto;
    max-height: 75vh;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #hero-929 .cs-background {
    display: block;
  }
  #hero-929 .cs-header {
    text-align: left;
    width: auto;
    /* removed at small desktop */
    max-width: 8ch;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #hero-929 .cs-content {
    min-height: 65vh;
  }
  #hero-929 .cs-flex {
    margin: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    position: absolute;
    /* 80px - 100px */
    bottom: clamp(5rem, 8vw, 6.25rem);
  }
  #hero-929 .cs-content-group {
    text-align: left;
    width: 24vw;
    max-width: 22rem;
  }
  #hero-929 .cs-hours-group {
    flex-direction: column;
    align-items: flex-start;
  }
  #hero-929 .cs-header {
    max-width: 100%;
  }
  #hero-929 .cs-picture-group {
    margin-top: -3.125rem;
  }
  #hero-929 .cs-tagline {
    margin: 0;
    position: absolute;
    /* changes at large desktop */
    left: 3.75rem;
    /* 90px - 130px */
    top: clamp(5.625rem, 10vw, 8.125rem);
  }
}
/* Large Desktop 1300px */
@media only screen and (min-width: 81.25rem) {
  #hero-929 .cs-hours-group {
    max-width: 20rem;
    flex-direction: row;
    justify-content: flex-start;
  }
  #hero-929 .cs-header {
    width: 100%;
  }
  #hero-929 .cs-tagline {
    left: 1.625rem;
    top: 8.125rem;
  }
}

/*# sourceMappingURL=critical.css.map */
