@charset "UTF-8";
/* COLORS */
.white {
  color: white;
}

.lighttan {
  color: #d0c1ae;
}

.lightbrown {
  color: #634e35;
}

.tan {
  color: #e5e2df;
}

.bronze {
  color: #806f5b;
}

.leather {
  color: #804e28;
}

.cocoa {
  color: #221b12;
}

.cream {
  color: #b09382;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-size: 62.5%;
  font-family: georgia, serif;
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;
  background: #e5e2df;
}

h1, h2, h3, h4, p, blockquote, figure, ol, ul {
  margin: 0;
  padding: 0;
}

section, main, li {
  display: block;
}

h1, h2, h3, .h3, h4 {
  font-family: brandon-grotesque, sans-serif;
  font-size: inherit;
  font-weight: normal;
}

a, button {
  color: inherit;
}

a {
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

::-moz-focus-inner {
  padding: 0;
  border: 0;
}

:focus {
  outline: 0;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

video {
  width: 100%;
  height: auto;
}

.fixed {
  position: fixed;
  overflow: hidden;
}

.fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cover {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  max-width: none;
}

.line:before {
  content: "";
  position: absolute;
  top: -1vh;
  left: 0;
  width: 50px;
  height: 2px;
  background: #804e28;
}
.line:before.line-white {
  background: #ffffff;
}
.line:before.center {
  left: 50%;
  margin-left: -25px;
  top: -4rem;
  background: #e5e2df;
}

.btn {
  position: relative;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 500;
  color: #806f5b;
  border: 1px solid #806f5b;
  font-size: 1.2rem;
  letter-spacing: 0.5rem;
  padding: 15px 30px 15px 30px;
  text-align: center;
  align-self: center;
  transition: 0.2s;
  transform: none;
}
.btn:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  transition: 0.2s;
  z-index: 0;
  background: #e5e2df;
}
.btn:hover {
  border-color: transparent;
  transform: translateY(-3px);
}
.btn:hover:before {
  opacity: 1;
  height: 100%;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}
.btn.white-fill {
  border: 0;
  color: #221b12;
  background: #e5e2df;
  top: 9rem;
}
.btn.white-fill:hover {
  background: white;
  color: #221b12;
}
.btn.white-fill:hover:before {
  background: white;
}
.btn.large {
  font-size: 1.4rem;
}
.btn.light:before {
  background: transparent;
}
.btn.light:hover {
  border-color: transparent;
  transform: translateY(-3px);
  color: #e5e2df;
}
.btn.light:hover:before {
  opacity: 1;
  height: 100%;
  background: #806f5b;
}
.btn.white {
  border-color: white;
  color: white;
}
.btn.white:hover {
  background: white;
  color: black;
}
.btn.white:hover:before {
  background: white;
}
.btn.dark {
  background: #806f5b;
}
.btn.dark span {
  color: #e5e2df;
}
.btn.dark:before {
  background: #806f5b;
  color: #e5e2df;
  z-index: -1;
}
.btn.dark:hover {
  border-color: transparent;
  transform: translateY(-3px);
  color: white;
}
.btn.dark:hover:before {
  opacity: 1;
  height: 100%;
  background: rgb(83.2876712329, 72.2260273973, 59.2123287671);
}
.btn span {
  position: relative;
  z-index: 1;
}
.btn.pad {
  margin-top: 5vh;
}
.btn.pad-large {
  margin-top: 10vh;
}

.link {
  font-size: 0.9rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.1rem;
  margin-right: 1.15rem;
  transition: 0.3s;
}
@media (min-width: 321px) {
  .link {
    font-size: 1.1rem;
    margin-right: 1.25rem;
  }
}
@media (min-width: 641px) {
  .link {
    font-size: 1.3rem;
    margin-right: 1.5rem;
  }
}
.hide-overflow {
  overflow: hidden;
  display: block;
}

.appear {
  transition: 0.6s;
  display: block;
}
.appear.down {
  transform: translateY(-100%);
}
.appear.up {
  transform: translateY(100%);
}
.appear.in-view {
  transform: translateY(0%);
}

.color-change {
  transition-duration: 2s;
  color: #000000;
  opacity: 0;
}
.color-change.in-view {
  opacity: 1;
  color: #ffffff;
}

@media (min-width: 641px) {
  .delay-25 {
    transition-delay: 0.25s;
  }
}

@media (min-width: 641px) {
  .delay-50 {
    transition-delay: 0.5s;
  }
}

@media (min-width: 641px) {
  .delay-75 {
    transition-delay: 0.75s;
  }
}

@media (min-width: 641px) {
  .delay-100 {
    transition-delay: 1s;
  }
}

.fadeup {
  opacity: 0;
  transition-duration: 0.6s;
  transform: translate3d(0, 8%, 0);
}
.fadeup.in-view {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: none;
}

.slideup {
  opacity: 0;
  transition-duration: 1s;
  transform: translate3d(0, 8%, 0);
}
.slideup.in-view {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: none;
}

.slidedown {
  opacity: 0;
  transition-duration: 1s;
  transform: translate3d(0, -8%, 0);
}
.slidedown.in-view {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: none;
}

.slideleft {
  opacity: 0;
  transition-duration: 1s;
  transform: translate3d(-20px, 0, 0);
}
.slideleft.in-view {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  transform: none;
}

.fadein {
  opacity: 0;
  transition-duration: 1.5s;
}
.fadein.in-view {
  transition-timing-function: linear;
  opacity: 1;
  transform: none;
}

.notification-bar {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  padding-top: 10px;
  padding-bottom: 10px;
  background: #221b12;
  font-weight: 500;
}

.nav-open {
  overflow: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  color: white;
  font-family: brandon-grotesque, sans-serif;
  transform: translateY(-100%);
  transition: 0.3s;
}
nav.show-nav {
  transform: translateY(0%);
  background: #806f5b;
}
nav.nav-open {
  background: transparent;
}
nav.transparent {
  background: transparent;
}
nav .nav-contain {
  max-width: 96%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  border-bottom: 1px solid #806f5b;
  transition: height 0.6s;
  padding: 1.2rem 0 1.2rem 2.25vw;
}
@media (min-width: 641px) {
  nav .nav-contain {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 1.2rem 0 1.2rem 0;
    align-items: center;
  }
}
nav .nav-contain .link:first-child {
  max-width: 5rem;
}
@media (min-width: 641px) {
  nav .nav-contain .link:first-child {
    max-width: none;
  }
}
nav a.book {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.3rem;
  padding: 1.25vh 2vw;
  margin: 0.5vh 0.25vw 0.5vh 0;
  transition: 0.3s;
}
@media (min-width: 641px) {
  nav a.book {
    padding: 1.25vh 1.75vw;
  }
}
nav a.book.hidden {
  visibility: hidden;
  opacity: 0;
}
@media (min-width: 641px) {
  nav a.book:hover {
    background: #e5e2df;
    color: #806f5b;
  }
}

.links {
  position: fixed;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  font-size: 1.3rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  opacity: 0;
  transition: 0.6s;
  visibility: hidden;
  z-index: 2;
  background-color: black;
}
.nav-open .links {
  opacity: 1;
  visibility: visible;
}
.links .fill.black {
  background: rgba(0, 0, 0, 0.5);
}
.links .fill.image {
  background-size: cover;
  background-position: center center;
  filter: blur(10px);
}
.home .links .fill.image {
  background-image: url("/images/home/mast.jpg");
}
.bar .links .fill.image {
  background-image: url("/images/bar/mast.jpg");
}
.our-food .links .fill.image {
  background-image: url("/images/our-food/mast.jpg");
}
.menu .links .fill.image {
  background-image: url("/images/menu/mast.jpg");
}
.reserve-home .links .fill.image {
  background-image: url("/images/reserve/brazen-reserve-mast.jpg");
}
.events-home .links .fill.image {
  background-image: url("/images/events/events-mast.jpg");
}
.our-story .links .fill.image {
  background-image: url("/images/our-story/mast.jpg");
}
.offal-food-group .links .fill.image {
  background-image: url("/images/our-story/staff/brazen-staff.jpg");
}
.employment .links .fill.image {
  background-image: url("/images/employment/mast.jpg");
}
.links .links-contain {
  opacity: 0;
  transition: 1.2s;
  transform: translate(10px);
}
.nav-open .links .links-contain {
  opacity: 1;
  transform: none;
}
.links .links-contain:hover > a {
  opacity: 0.2;
  transition: 0.6s;
}
.links .links-contain:hover > a:hover {
  opacity: 1;
  transition: 0.6s;
}
.links a {
  position: relative;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 0.9;
  display: block;
  color: rgb(183.275862069, 175, 166.724137931);
  font-size: 3.5rem;
  text-align: right;
  right: 7.75vw;
  transition: 0.6s;
}
.links a.small {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

#nav-icon {
  position: relative;
  margin: 0 0.25vw 0 0;
  right: 2.25vw;
  width: 30px;
  height: 14px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  margin-left: auto;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #e5e2df;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.35s ease-in-out;
  border-radius: 4px;
}

#nav-icon span:nth-child(1) {
  top: 0px;
}

#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
  top: 5px;
}

#nav-icon span:nth-child(4) {
  top: 10px;
}

#nav-icon.open span:nth-child(1) {
  top: 5px;
  width: 0%;
  left: 50%;
}

#nav-icon.open span:nth-child(2) {
  transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
  top: 5px;
  width: 0%;
  left: 50%;
}

.reserve-home textarea {
  font-family: brandon-grotesque, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 1.4rem;
}
.reserve-home textarea::-moz-placeholder {
  text-transform: uppercase;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 500;
  letter-spacing: 0.3em;
  font-size: 1.4rem;
}
.reserve-home textarea::placeholder {
  text-transform: uppercase;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 500;
  letter-spacing: 0.3em;
  font-size: 1.4rem;
}

.contact section {
  padding: 90px 0;
  position: relative;
}
.contact button {
  color: #e5e2df;
  text-transform: uppercase;
  font-weight: 500;
}
.contact button:hover {
  color: #e5e2df;
}
.contact button:before {
  z-index: -1;
}
.contact .container {
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 641px) {
  .contact .container {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
  }
}
.contact ul {
  list-style-type: none;
}
.contact .header {
  position: relative;
}
.contact .copy {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .contact .copy {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
.contact .freeform-input {
  padding: 0 1.25em;
  font-size: 16px;
  font-size: 1.6rem;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  border: none;
  border-bottom: 1px solid #b6b6b6;
  line-height: 3.75em;
  height: 3.75em;
  transition: 0.2s ease-in-out;
}
.contact .freeform-input:focus {
  box-shadow: 0 10px 24px 2px rgba(0, 0, 0, 0.1);
}
.contact .freeform-input#form-input-product {
  height: 60px;
}
.contact .freeform-input#form-input-message {
  padding: 1em 1.25em;
  line-height: 1.5em;
}
.contact .freeform-label {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500 !important;
  color: #806f5b;
  margin-bottom: 10px;
}
.contact .freeform-row {
  margin-top: 5px;
  display: block;
  margin: 0;
}
@media (min-width: 641px) {
  .contact .freeform-row {
    display: flex;
  }
}
.contact .freeform-row .freeform-column {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin: 0;
}
.contact .freeform-row .freeform-column .freeform-input[type=input], .contact .freeform-row .freeform-column .freeform-input[type=select] {
  flex-basis: 100%;
}
.contact .freeform-row .freeform-column .freeform-label {
  padding-right: 0.75em;
}
.contact .freeform-row .freeform-column .freeform-label.freeform-required:after {
  content: "";
}
.contact .freeform-row .freeform-column.textarea .freeform-input {
  height: 175px;
  line-height: 1.5em;
  padding: 1.25em;
}
.contact .freeform-row .freeform-column.radio_group .freeform-label {
  width: 100%;
  text-align: left;
}
.contact .freeform-row .freeform-column.radio_group label:not(.freeform-label) {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500 !important;
  color: #806f5b;
  margin-bottom: 10px;
  margin-right: 20px;
}
.contact .freeform-row .freeform-column.radio_group label:not(.freeform-label) input {
  margin-right: 12px;
  box-shadow: none;
}
.contact .freeform-form-has-errors {
  margin-bottom: 20px;
  font-size: 12px;
  font-size: 1.2rem;
  color: red;
  display: none;
}
.contact .freeform-row .freeform-column .freeform-errors {
  margin-top: 10px;
}

footer {
  background: #e5e2df;
  padding: 8vh 10vw 10vh 10vw;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (min-width: 915px) {
  footer {
    flex-direction: row;
  }
}
footer p, footer a, footer address {
  position: relative;
  font-size: 1.3rem;
  line-height: 1.8rem;
  margin-bottom: 10px;
  color: #806f5b;
  display: block;
}
footer h4 {
  font-size: 1.8rem;
  margin-bottom: 1vh;
  color: #634e35;
}
footer address {
  margin-top: 1vh;
}
footer .link {
  font-size: 1.6rem;
  font-family: brandon-grotesque, sans-serif;
  margin-top: 2vh;
  font-weight: 500;
}
footer .logo {
  width: 100%;
}
@media (min-width: 915px) {
  footer .logo {
    width: initial;
    margin-right: auto;
  }
}
footer .logo svg path {
  fill: #634e35;
}
footer .info {
  display: flex;
  flex-wrap: wrap;
}
footer .info .contact {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  margin-top: 5vh;
}
@media (min-width: 600px) {
  footer .info .contact {
    width: 50%;
  }
}
@media (min-width: 915px) {
  footer .info .contact {
    width: initial;
    margin-right: 5vw;
    margin-top: 4vh;
  }
}
footer .info .contact .logo-contain {
  display: flex;
  align-items: center;
}
footer .info .contact .logo-contain .james-beard-award {
  height: 12rem;
  width: 12rem;
  margin-left: 2rem;
}
footer .info .contact .logo-contain .james-beard-award path {
  stroke: #634e35;
}
footer .info .contact .logo-contain .james-beard-award path.text {
  fill: #634e35;
}
footer .info .contact .logo-contain .james-beard-award circle {
  stroke: #634e35;
}
footer .info .contact .logo-contain .james-beard-award polygon {
  fill: #634e35;
  stroke: #634e35;
}
footer .info .contact .logo-contain .james-beard-award ellipse {
  stroke: #634e35;
}
footer .info .hours {
  min-width: 230px;
  width: 100%;
  margin-top: 5vh;
}
@media (min-width: 600px) {
  footer .info .hours {
    width: 50%;
  }
}
@media (min-width: 915px) {
  footer .info .hours {
    width: initial;
    margin-top: 4vh;
  }
}
footer .info .hours p {
  display: flex;
}
footer .info .hours p span {
  width: 55%;
  text-align: left;
}
footer .info .hours p span:last-child {
  width: 45%;
}
footer .info .social {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 5vh;
  margin-bottom: 20px;
  max-width: 15rem;
}
footer .info .social a {
  display: inline-block;
  margin-top: 10px;
}
footer .info .social svg path {
  fill: #806f5b;
}

#instafeed {
  display: flex;
  flex-wrap: wrap;
}
#instafeed a {
  width: 20%;
}
#instafeed img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: none;
  width: 100%;
  height: 100%;
}

.gdco {
  background-color: #e5e2df;
  padding: 5px;
  text-align: center;
}
@media (min-width: 641px) {
  .gdco {
    padding: 20px;
  }
}
.gdco a {
  color: #806f5b;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 500;
  font-size: 0.8em;
  letter-spacing: 0.2em;
}
.gdco a:hover {
  text-decoration: underline;
}
@media (min-width: 641px) {
  .gdco a {
    font-size: 1em;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

h1, .h1 {
  position: relative;
  font-family: brandon-grotesque, sans-serif;
  font-size: 1.9rem;
  color: white;
  letter-spacing: 1rem;
  font-weight: 500;
}
h1 span, .h1 span {
  font-size: 2.2rem;
}
.home h1, .home .h1 {
  top: 1.5rem;
  line-height: 1.2;
}
h1.reserve-event-headline, .h1.reserve-event-headline {
  text-align: center;
  text-transform: uppercase;
  font-size: 4rem;
  line-height: 1;
}
.events-detail h1 span, .events-detail .h1 span {
  font-family: palatino;
  font-style: italic;
  font-size: 4em;
}
.reserve-home h1, .reserve-home .h1 {
  margin-bottom: 20vh;
}
@media (min-width: 641px) {
  .reserve-home h1, .reserve-home .h1 {
    margin-bottom: calc(6rem + 2vh);
  }
}
.safety h1, .safety .h1 {
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: #221b12;
  text-transform: uppercase;
  margin-top: 4rem;
  margin-bottom: 4rem;
  letter-spacing: 0.3rem;
  padding-top: 3rem;
}
.safety h1:before, .safety .h1:before {
  left: 50%;
  margin-left: -25px;
  top: 0;
}
.safety h1 span, .safety .h1 span {
  display: block;
  text-transform: uppercase;
  margin-top: 2.5rem;
  letter-spacing: 0.6rem;
}
@media (min-width: 641px) {
  .safety h1 span, .safety .h1 span {
    margin-top: 0.5rem;
  }
}
.no-header h1, .no-header .h1 {
  font-size: 14vw;
  line-height: 0.9;
  font-weight: 400;
  text-align: center;
  color: #d0c1ae;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 15rem 0 8rem 0;
  padding: 0 5%;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 641px) {
  .no-header h1, .no-header .h1 {
    font-size: 8rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
.no-header h1 span, .no-header .h1 span {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 1rem;
  color: #e5e2df;
}
@media (min-width: 641px) {
  .no-header h1 span, .no-header .h1 span {
    font-size: 2.2rem;
  }
}
h1.culinary, .h1.culinary {
  font-size: 4vw;
  letter-spacing: 0.5rem;
}
@media (min-width: 641px) {
  h1.culinary, .h1.culinary {
    font-size: 1.9rem;
    letter-spacing: 1rem;
  }
}

.copy-block h2 {
  font-size: 3.5vw;
  line-height: 6.5vw;
  letter-spacing: 0.3rem;
  font-weight: 500;
  text-transform: uppercase;
}
@media (min-width: 580px) {
  .copy-block h2 {
    font-size: 1.8rem;
    line-height: 4rem;
    letter-spacing: 0.45rem;
  }
}
@media (min-width: 580px) {
  .copy-block h2 span {
    display: block;
  }
}
.copy-offset h2 {
  font-size: 2rem;
  line-height: 3rem;
  letter-spacing: 0.25rem;
  margin-top: 2vh;
  text-align: left;
}
.menu h2 {
  position: relative;
  font-size: 3rem;
  line-height: 3rem;
  letter-spacing: 0.25rem;
  margin-bottom: 8vh;
  color: #804e28;
  text-transform: uppercase;
}
.welcome-back h2 {
  max-width: 460px;
  line-height: 1.4;
}
#pickup h2 {
  margin-bottom: 4vh;
}
.our-story h2 {
  font-size: 2rem;
  line-height: 3rem;
  letter-spacing: 0.25rem;
  margin-top: 2vh;
  text-align: center;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 800px) {
  .our-story h2 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}
.offal-food-group h2 {
  font-size: 2rem;
  line-height: 3rem;
  letter-spacing: 0.25rem;
  margin-top: 2vh;
  text-align: center;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 800px) {
  .offal-food-group h2 {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
  }
}
.events-detail h2 {
  position: relative;
  font-size: 3rem;
  line-height: 3rem;
  letter-spacing: 0.25rem;
  color: #634e35;
  text-transform: uppercase;
  padding-bottom: 2vh;
}
.events-detail h2.center {
  text-align: center;
}
.safety h2 {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  color: #221b12;
  text-transform: uppercase;
  margin-top: 4rem;
  margin-bottom: 2rem;
  letter-spacing: 0.6rem;
}
.safety h2 span {
  display: block;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
.reserve-home .copy h2 {
  position: relative;
  font-size: 2.6rem;
  font-weight: normal;
  margin-top: 4rem;
}
.reserve-home .copy h2.pad-bottom {
  margin-bottom: 4rem;
}

.bottom-cards h3, .bottom-cards .h3 {
  font-size: 2rem;
  line-height: 6rem;
  letter-spacing: 0.45rem;
  font-weight: 500;
  text-align: center;
  color: #e5e2df;
  text-transform: uppercase;
}
@media (min-width: 641px) {
  .bottom-cards h3, .bottom-cards .h3 {
    font-size: 2.4rem;
    line-height: 4rem;
  }
}
.welcome-back h3, .welcome-back .h3 {
  font-size: 2rem;
  line-height: 6rem;
  letter-spacing: 0.45rem;
  font-weight: 500;
  text-align: center;
  color: #e5e2df;
  margin-bottom: 3rem;
}
@media (min-width: 641px) {
  .welcome-back h3, .welcome-back .h3 {
    font-size: 2.4rem;
    line-height: 4rem;
  }
}
.menu h3, .menu .h3 {
  position: relative;
  font-size: 2.5rem;
  line-height: 3rem;
  letter-spacing: 0.25rem;
  margin-bottom: 3vh;
  padding-top: 1vh;
  color: #806f5b;
  text-transform: uppercase;
}
.menu h3:before, .menu .h3:before {
  margin-left: -25px;
  left: 50%;
}
.our-team h3, .our-team .h3 {
  font-size: 1.8rem;
  line-height: 2rem;
  letter-spacing: 0.25rem;
  color: #806f5b;
  text-transform: uppercase;
  margin-top: 3.5vh;
}
@media (min-width: 640px) {
  .our-team h3, .our-team .h3 {
    margin-top: 0;
  }
}
.our-team h3 span, .our-team .h3 span {
  font-family: georgia, serif;
  font-size: 1.8rem;
  text-transform: lowercase;
  letter-spacing: 0;
  display: block;
  margin-top: 0.5rem;
}
.our-team h3 span.pipe, .our-team .h3 span.pipe {
  display: none;
  margin-top: 0;
}
@media (min-width: 640px) {
  .our-team h3 span.pipe, .our-team .h3 span.pipe {
    display: inline;
  }
}
.new-team h3, .new-team .h3 {
  font-size: 1.8rem;
  line-height: 2rem;
  letter-spacing: 0.25rem;
  color: #806f5b;
  text-transform: uppercase;
}
@media (min-width: 640px) {
  .new-team h3, .new-team .h3 {
    margin-top: 0;
  }
}
.new-team h3 span, .new-team .h3 span {
  font-family: georgia, serif;
  font-size: 1.8rem;
  text-transform: lowercase;
  letter-spacing: 0;
  display: block;
  margin-top: 0.5rem;
}
.new-team h3 span.pipe, .new-team .h3 span.pipe {
  display: none;
  margin-top: 0;
}
@media (min-width: 640px) {
  .new-team h3 span.pipe, .new-team .h3 span.pipe {
    display: inline;
  }
}
.events-home h3, .events-home .h3 {
  position: relative;
  font-size: 2.5rem;
  line-height: 3rem;
  letter-spacing: 0.25rem;
  color: #634e35;
  text-transform: uppercase;
  padding-bottom: 1.5vw;
}
.events-detail h3, .events-detail .h3 {
  position: relative;
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: 0.25rem;
  color: #634e35;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 4vh;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.menu h4, .our-story h4 {
  font-size: 1.8rem;
  line-height: 2rem;
  letter-spacing: 0.25rem;
  margin-top: 2vh;
  margin-bottom: 1vh;
  color: #806f5b;
  text-transform: uppercase;
}
#pickup h4 {
  margin-top: 0;
  margin-bottom: 8px;
  text-align: center;
}
@media (min-width: 641px) {
  #pickup h4 {
    text-align: left;
  }
}

.copy-block p {
  font-size: 1.7rem;
  line-height: 3.3rem;
}
@media (min-width: 641px) {
  .copy-block p {
    font-size: 2.2rem;
    line-height: 4.2rem;
  }
}

#banner {
  display: block;
  width: 100%;
  text-align: center;
  background: #806f5b;
  padding: 10px;
  font-size: 1.4em;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 500;
  color: #e5e2df;
  text-transform: uppercase;
  transition: 0.3s;
}
#banner:hover {
  background: rgb(98.1917808219, 85.1506849315, 69.8082191781);
  color: rgb(206.1379310345, 200.5, 194.8620689655);
}
#banner span {
  font-size: 0.9em;
}

.text--center {
  text-align: center;
}

.text--left {
  text-align: left;
}

.gift-cards-contain {
  background: rgba(0, 0, 0, 0.9);
  color: #e5e2df;
  font-size: 3rem;
  font-family: brandon-grotesque, sans-serif;
}
@media (min-width: 768px) {
  .gift-cards-contain {
    background: linear-gradient(0deg, rgb(0, 0, 0) 11.97%, rgba(0, 0, 0, 0.6) 54.11%, rgba(0, 0, 0, 0) 99.77%);
  }
}
@media (min-width: 1350px) {
  .gift-cards-contain {
    font-size: 3.5rem;
  }
}
.gift-cards-contain .gift-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 100vh;
  max-width: 96%;
  margin-left: auto;
  margin-right: auto;
  top: 30px;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .gift-cards-contain .gift-cards {
    flex-direction: row;
    padding: 0 0 60px 0;
  }
}
@media (min-width: 1024px) {
  .gift-cards-contain .gift-cards {
    position: relative;
    padding-bottom: 0;
  }
}
.gift-cards-contain p {
  margin: 0 20px 20px 20px;
  text-align: center;
  line-height: 1;
}
@media (min-width: 768px) {
  .gift-cards-contain p {
    margin: 0 20px;
  }
}
@media (min-width: 1350px) {
  .gift-cards-contain p {
    margin: 0 40px 0 30px;
  }
}
.gift-cards-contain a {
  margin-top: 0;
}
.gift-cards-contain img {
  display: none;
}
@media (min-width: 1024px) {
  .gift-cards-contain img {
    display: block;
  }
}

.mast {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  z-index: -1;
  background: black;
}
.mast.small {
  position: relative;
  height: initial;
  background: #221b12;
}
.mast.small:before {
  background: none !important;
}
.our-food .mast, .menu .mast, .bar .mast, .our-story .mast, .events-home .mast, .welcome-back .mast, .reserve .mast, .reserve-home .mast {
  justify-content: flex-end;
}
.home .mast, .employment .mast {
  justify-content: center;
}
.events-detail .mast {
  justify-content: center;
  overflow: hidden;
  background: #221b12;
}
.mast .headline {
  font-family: brandon-grotesque, sans-serif;
  font-weight: 500;
  font-size: 13vw;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 2rem;
}
@media (min-width: 640px) {
  .mast .headline {
    font-size: 4rem;
  }
}
@media (min-width: 1024px) {
  .mast .headline {
    font-size: 6rem;
  }
}
.mast svg {
  position: absolute;
}
.mast svg.icon {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mast svg.icon path {
  fill: rgba(255, 255, 255, 0.4);
}
.events .mast svg.icon path, .reserve-home .mast svg.icon path {
  fill: rgb(255, 255, 255);
}
.mast svg.arrow-down {
  bottom: 2vh;
}
.mast svg.james-beard-award {
  right: 5%;
  bottom: 5%;
  height: 8rem;
  width: 8rem;
  transform: translate(0) !important;
}
@media (min-width: 641px) {
  .mast svg.james-beard-award {
    height: 12rem;
    width: 12rem;
  }
}
.our-food .mast p, .menu .mast p, .bar .mast p, .our-story .mast p, .events-home .mast p, .welcome-back .mast p, .reserve .mast p, .reserve-home .mast p {
  color: white;
  font-family: georgia, serif;
  font-size: 1.7rem;
  line-height: 2.6rem;
  font-style: italic;
  margin-top: 1.5vh;
  margin-bottom: 20vh;
}
@media (min-width: 641px) {
  .our-food .mast p, .menu .mast p, .bar .mast p, .our-story .mast p, .events-home .mast p, .welcome-back .mast p, .reserve .mast p, .reserve-home .mast p {
    font-size: 2.1rem;
    line-height: 3rem;
    margin-bottom: 15vh;
  }
}
.mast p span {
  display: inline;
}
@media (min-width: 401px) {
  .mast p span {
    display: block;
  }
}
.mast .copy {
  position: absolute;
  text-align: center;
  padding: 0 5vw;
}

.offset {
  margin-top: 100vh;
  background: white;
}

.copy-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10vh 0 10vh 0;
  color: #806f5b;
  text-align: center;
}
@media (min-width: 641px) {
  .copy-block {
    padding: 10vh 0 10vh 0;
  }
}
.copy-block.pad-large {
  padding: 20vh 0 15vh 0;
}
.copy-block.pad-small {
  padding: 5vh 0 0 0;
}
.copy-block.pad-b-0 {
  padding-bottom: 0;
}
.copy-block.pad-vertical-small {
  padding: 10vh 0;
}
@media (min-width: 1024px) {
  .copy-block.pad-vertical-small {
    padding: 0 0 10vh 0;
  }
}
.copy-block.dark {
  background: #221b12;
  color: #e5e2df;
}
.copy-block blockquote {
  padding-top: 2vh;
  font-size: 1.5rem;
  line-height: 2.8rem;
  letter-spacing: 0.03rem;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 826px) {
  .copy-block blockquote {
    max-width: 726px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10vh;
    font-size: 2rem;
    line-height: 4rem;
  }
}
.copy-block p.single {
  font-size: 1.5rem;
  line-height: 2.8rem;
  letter-spacing: 0.03rem;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 826px) {
  .copy-block p.single {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-size: 2rem;
    line-height: 4rem;
  }
}
.copy-block p.small {
  font-size: 2rem;
  line-height: 4rem;
}
.copy-block cite {
  color: #804e28;
  font-size: 1.6rem;
  letter-spacing: 0.15rem;
  font-style: italic;
  margin-top: 3vh;
  display: block;
}
.copy-block .copy {
  position: relative;
  display: flex;
  flex-direction: column;
}
.copy-block .copy.full {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 580px) {
  .copy-block .copy.full {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.copy-block .copy.copy-offset {
  max-width: 80%;
}
.copy-block .copy.copy-offset p {
  max-width: 210px;
  margin-top: 2vh;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 2.3rem;
  text-align: left;
  max-width: 300px;
}
.copy-block .copy.copy-offset.right {
  align-items: flex-start;
  margin-left: initial;
}
@media (min-width: 580px) {
  .copy-block .copy.copy-offset.right {
    margin-left: auto;
    right: 10vw;
  }
}
.copy-block .copy.copy-offset.left {
  align-items: flex-start;
  margin-right: initial;
}
@media (min-width: 580px) {
  .copy-block .copy.copy-offset.left {
    margin-right: auto;
    left: 10vw;
  }
}
.copy-block .list-contain {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .copy-block .list-contain {
    justify-content: flex-start;
    flex-direction: row;
  }
}
.copy-block .list {
  list-style-type: circle;
  text-align: left;
  margin-right: 5%;
  font-size: 1.6rem;
  margin-left: 1.25em;
}
@media (min-width: 1024px) {
  .copy-block .list {
    max-width: 40%;
  }
}
.copy-block .list li {
  display: list-item;
  margin-top: 1rem;
}

.images-contain {
  position: relative;
  display: flex;
}
.images-contain.inset {
  flex-direction: column;
  padding: 5vw 3vh 20vw 3vh;
  background: #e5e2df;
}
@media (min-width: 900px) {
  .images-contain.inset {
    padding: 100px 10vh;
  }
}
.images-contain p {
  position: relative;
  font-style: italic;
}
.images-contain p:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3vh;
  width: 50px;
  height: 2px;
  background: white;
}
.images-contain p.inset-caption {
  color: #804e28;
  font-size: 1.6rem;
  line-height: 2.6rem;
  letter-spacing: 0.15rem;
  padding-top: 5vh;
  left: 2vh;
  display: inline-block;
}
@media (min-width: 641px) {
  .images-contain p.inset-caption {
    position: absolute;
    bottom: 7.5vw;
    flex-basis: initial;
    padding-top: 0;
    left: 10vw;
    font-size: 1.3rem;
    line-height: 2.3rem;
  }
}
@media (min-width: 641px) {
  .images-contain p.inset-caption span {
    display: block;
  }
}
.images-contain p.inset-caption:after {
  background: #806f5b;
}
.images-contain p.full-caption {
  position: absolute;
  color: white;
  width: 123px;
  font-size: 1.3rem;
  line-height: 2.3rem;
}
.images-contain p.full-caption.right {
  top: 50%;
  right: 10vw;
}
.images-contain p.full-caption.left {
  top: 10vh;
  left: 12vw;
}
.images-contain .images {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 641px) {
  .images-contain .images {
    flex-direction: row;
  }
}
.images-contain .full {
  width: 100%;
}
.images-contain .half {
  width: 100%;
  height: 30vh;
}
@media (min-width: 641px) {
  .images-contain .half {
    width: 50%;
    height: initial;
  }
}
.images-contain .third {
  width: 100%;
  height: 40vh;
}
@media (min-width: 641px) {
  .images-contain .third {
    height: initial;
    width: 33.33334%;
  }
}
.images-contain .two-third {
  width: 100%;
  height: 30vh;
}
@media (min-width: 641px) {
  .images-contain .two-third {
    height: initial;
    width: 67.66667%;
  }
}
.images-contain .vhalf {
  position: relative;
  display: flex;
  height: 50%;
}
.images-contain .video {
  overflow: hidden;
  position: relative;
}
.images-contain .video img {
  opacity: 1;
  transition: 0.5s ease-in-out;
}
.images-contain .video img:hover {
  opacity: 0;
}
.bottom-cards {
  display: flex;
  flex-direction: column;
  background-color: #221b12;
}
@media (min-width: 640px) {
  .bottom-cards {
    flex-direction: row;
  }
}
.bottom-cards .card {
  width: 100%;
  color: #e5e2df;
  text-align: center;
  padding: 20vw 10vw;
  font-size: 1.4rem;
  line-height: 2.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 640px) {
  .bottom-cards .card {
    width: 50%;
    padding: 15vh 0 15vh 5vw;
  }
}
.bottom-cards .card:last-child {
  padding: 0vw 10vw 20vw 10vw;
}
@media (min-width: 640px) {
  .bottom-cards .card:last-child {
    padding: 15vh 5vw 15vh 0;
  }
}
.bottom-cards .card p {
  color: #806f5b;
  max-width: 305px;
}
.bottom-cards .card p a {
  color: #d0c1ae;
}

.menu p {
  font-size: 1.4rem;
  line-height: 2.3rem;
  color: rgb(165.8698630137, 149.2191780822, 129.6301369863);
}
.menu p.price {
  color: #804e28;
  font-weight: 500;
}
.menu p.place-order {
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #806f5b;
  font-weight: 500;
  max-width: 210px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .menu p.place-order {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.menu p.place-order strong {
  display: block;
}
@media (min-width: 641px) {
  .menu p.place-order strong {
    display: inline;
  }
}
.menu p.place-order a {
  display: inline-block;
  margin-top: 2rem;
}
.menu .menus-contain {
  position: relative;
}
.menu .menus-contain .disclaimer {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 7rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .menu .menus-contain .disclaimer {
    margin-top: 10rem;
    max-width: 65rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.menu .menu-contain {
  text-align: center;
  padding: 10vh 0 0 0;
  opacity: 0;
  transition: 0.8s;
  transform-origin: top center;
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  z-index: 0;
  visibility: hidden;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.menu .menu-contain.active {
  opacity: 1;
  transform: none;
  z-index: 1;
  visibility: visible;
}
@media (min-width: 650px) {
  .menu .menu-contain {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1280px) {
  .menu .menu-contain {
    max-width: 65%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1400px) {
  .menu .menu-contain {
    max-width: 55%;
    margin-left: auto;
    margin-right: auto;
  }
}
.menu .menu-set {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 15vh;
  flex-direction: column;
}
.menu .menu-set:last-child {
  margin-bottom: 0;
}
@media (min-width: 650px) {
  .menu .menu-set {
    flex-direction: row;
  }
}
.menu .menu-item {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5vh 5vw;
}
@media (min-width: 650px) {
  .menu .menu-item {
    width: 48%;
    margin-left: none;
    margin-right: none;
  }
}
.menu .to-top {
  display: flex;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  margin-top: 5vh;
  padding: 5vh 0;
  background: transparent;
  transition: 0.4s;
}
.menu .to-top:hover {
  background: #cec9c3;
}
.menu .to-top:hover svg {
  transform: translateY(-5px);
}
.menu .to-top svg {
  position: relative;
  cursor: pointer;
  transform: none;
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  transition: 0.4s;
  transform-origin: top center;
}
.menu .to-top svg:hover {
  transform: translateY(-5px);
}
.menu .to-top svg line, .menu .to-top svg polyline {
  stroke: #804e28;
}
.menu .to-top span {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 500;
  color: #806f5b;
}
.menu .filter-contain {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: flex-start;
  padding-top: 7vh;
  margin-bottom: 3vh;
  overflow: auto;
  -ms-overflow-style: none;
}
.menu .filter-contain::-webkit-scrollbar {
  display: none;
}
@media (min-width: 650px) {
  .menu .filter-contain {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
}
.menu .filter-contain .filter {
  font-size: 1.3rem;
  line-height: 1.6rem;
  letter-spacing: 0.25rem;
  color: #804e28;
  font-family: brandon-grotesque, sans-serif;
  padding: 15px 10px;
  cursor: pointer;
  border-top: 1px solid rgb(194.7068965517, 187.75, 180.7931034483);
  border-bottom: 1px solid rgb(194.7068965517, 187.75, 180.7931034483);
  transition: 0.3s;
  text-align: center;
}
@media (min-width: 650px) {
  .menu .filter-contain .filter {
    padding: 20px;
    font-size: 1.4rem;
    line-height: 1.6rem;
  }
}
.menu .filter-contain .filter:first-child {
  border-left: 1px solid rgb(194.7068965517, 187.75, 180.7931034483);
}
.menu .filter-contain .filter:last-child {
  border-right: 1px solid rgb(194.7068965517, 187.75, 180.7931034483);
}
.menu .filter-contain .filter.active {
  transition: 0.6s;
  background: rgb(206.1379310345, 200.5, 194.8620689655);
  font-weight: 500;
}
.menu#pickup .mast::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(34, 27, 18, 0.8) 15%, rgba(34, 27, 18, 0) 100%);
  z-index: 1;
}
.menu#pickup .mast .copy, .menu#pickup .mast .arrow-down {
  z-index: 2;
}
.menu#pickup .call {
  margin-top: 80px;
}
.menu#pickup .call span {
  display: block;
  font-size: 2rem;
}
.menu#pickup .menu-contain {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 6vh 24px 0;
}
.menu#pickup .menu-contain .description {
  font-size: 1.6rem;
  margin-bottom: 100px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.menu#pickup .menu-contain .menu-item {
  width: 100%;
  padding: 0.5vh 40px;
  margin-bottom: 4.5vh;
  text-align: center;
}
@media (min-width: 641px) {
  .menu#pickup .menu-contain .menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }
}
.menu#pickup .menu-contain .menu-item .price {
  width: 60px;
  margin: auto;
}
@media (min-width: 641px) {
  .menu#pickup .menu-contain .menu-item .price {
    text-align: center;
    margin: initial;
  }
}

.our-story .intro {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .our-story .intro {
    max-width: 990px;
    margin-left: auto;
    margin-right: auto;
  }
}
.our-story .second {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .our-story .second {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}
.our-story .second p {
  font-size: 1.8rem;
  line-height: 3rem;
}
.our-story .second p:first-of-type {
  margin-top: 2vh;
}
.our-story .about-kevin {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .our-story .about-kevin {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
.our-story .about-kevin p {
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin-top: 2vh;
}
.our-story .our-team {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
}
@media (min-width: 1024px) {
  .our-story .our-team {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}
.our-story .our-team p {
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin-top: 2vh;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.our-story .team {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2vh;
  margin-bottom: 15vh;
}
@media (min-width: 768px) {
  .our-story .team {
    flex-direction: row;
    align-items: flex-start;
  }
}
.our-story .team > div {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 641px) {
  .our-story .team > div {
    width: 70%;
  }
}
@media (min-width: 768px) {
  .our-story .team > div {
    width: 48%;
  }
}
.our-story .team > div img {
  display: flex;
  padding-top: 4rem;
}
@media (min-width: 641px) {
  .our-story .team > div img {
    padding-bottom: 2rem;
  }
}
.our-story .team .interested-in-working {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 8rem;
}
@media (min-width: 768px) {
  .our-story .team .interested-in-working {
    margin-top: 0;
  }
}
.our-story .team .interested-in-working .headline {
  font-family: brandon-grotesque, sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  padding: 0;
}
@media (min-width: 768px) {
  .our-story .team .interested-in-working .headline {
    padding: 0 3rem;
  }
}
.our-story .team .button a {
  flex-basis: 100%;
  display: inline-block;
}
.our-story .new-team p {
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin-top: 2vh;
  margin-bottom: 3vh;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.our-story .new-team .logo {
  margin-bottom: 4vh;
}
.our-story .new-team .team-contain {
  padding-bottom: 10vh;
  border-bottom: 1px solid #b09382;
}
.our-story .new-team .team-contain.no-border {
  border: 0;
}
.our-story .new-team .offal-team {
  margin-top: 2vh;
  margin-bottom: 4vh;
  width: 100%;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1440px) {
  .our-story .new-team .offal-team {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
.our-story .new-team .offal-team .logo svg {
  max-width: 25rem;
  margin-bottom: 2rem;
}
.our-story .new-team .offal-team .team-contain {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 30rem));
  justify-content: center;
  gap: 3rem;
}
.our-story .new-team .offal-team .team-contain img {
  margin-bottom: 2rem;
}
.our-story .new-team .brazen-team {
  width: 100%;
  margin-top: 2vh;
  margin-bottom: 7vh;
}
.our-story .new-team .brazen-team .logo {
  margin-bottom: 4vh;
}
.our-story .new-team .brazen-team .logo svg {
  max-width: 27rem;
}
@media (min-width: 641px) {
  .our-story .new-team .brazen-team .logo svg {
    max-width: 30rem;
  }
}
.our-story .new-team .brazen-team .team-contain {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 30rem));
  justify-content: center;
  gap: 3rem;
  width: 100%;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1440px) {
  .our-story .new-team .brazen-team .team-contain {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
.our-story .new-team .brazen-team .team-contain img {
  margin-bottom: 2rem;
}
.our-story .new-team .ottos-team {
  margin-top: 2vh;
  margin-bottom: 7vh;
  width: 100%;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1440px) {
  .our-story .new-team .ottos-team {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
.our-story .new-team .ottos-team .logo svg {
  max-width: 30rem;
  margin-bottom: 2rem;
}
.our-story .new-team .ottos-team .logo figcaption {
  font-family: brandon-grotesque, sans-serif;
  font-size: 1.8rem;
  color: #221b12;
  text-transform: uppercase;
}
.our-story .new-team .ottos-team .team-contain {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 30rem));
  justify-content: center;
  gap: 3rem;
}
.our-story .new-team .ottos-team .team-contain img {
  margin-bottom: 2rem;
}
.our-story .new-team .birds-team {
  margin-top: 2vh;
  margin-bottom: 7vh;
  width: 100%;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1440px) {
  .our-story .new-team .birds-team {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
.our-story .new-team .birds-team .logo svg {
  max-width: 16rem;
  margin-bottom: 2rem;
}
.our-story .new-team .birds-team .logo figcaption {
  font-family: brandon-grotesque, sans-serif;
  font-size: 1.8rem;
  max-width: 25rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1;
  color: #221b12;
  text-transform: uppercase;
}
.our-story .new-team .birds-team .team-contain {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 30rem));
  justify-content: center;
  gap: 3rem;
}
.our-story .new-team .birds-team .team-contain img {
  margin-bottom: 2rem;
}

.events-home {
  margin-top: 25vh;
}
.events-home .all-events {
  min-height: 100vh;
  background: white;
  padding-bottom: 6rem;
}
.events-home .headline {
  font-family: brandon-grotesque, sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.25rem;
  color: #806f5b;
  text-transform: uppercase;
  text-align: center;
  padding: 5vw 0 5vw 0;
}
.events-home .event {
  display: flex;
  position: relative;
  background: white;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.06), 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: 0.3s;
  margin-bottom: 2rem;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
}
@media (min-width: 768px) {
  .events-home .event {
    flex-direction: row-reverse;
    margin-bottom: 4rem;
  }
}
@media (min-width: 1024px) {
  .events-home .event {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}
.events-home .event.dim {
  opacity: 0.25;
}
.events-home .event:hover {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.06), 0 6px 26px rgba(0, 0, 0, 0.3);
  opacity: 1;
}
.events-home .event:hover img {
  transform: scale(1.1);
}
.events-home .event .image {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 40vh;
}
@media (min-width: 768px) {
  .events-home .event .image {
    width: 35%;
    height: auto;
  }
}
.events-home .event .image img {
  transition: 0.3s;
}
.events-home .event .copy {
  width: 100%;
  padding: 10vw 8vw;
}
@media (min-width: 768px) {
  .events-home .event .copy {
    width: 65%;
    padding: 50px;
  }
}
.events-home .event .copy .date {
  font-family: brandon-grotesque, sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #806f5b;
  display: inline-block;
  border-radius: 8px;
}
.events-home .event .copy p {
  font-family: georgia, serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #806f5b;
}

.events-detail .offset p {
  color: #806f5b;
  font-size: 1.6em;
  line-height: 1.8em;
  margin-bottom: 10px;
}
.events-detail .offset p span, .events-detail .offset p b {
  letter-spacing: 0.25em;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 500;
  color: #634e35;
}
.events-detail .mast .header {
  position: relative;
}
.events-detail .mast .header .dates {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.events-detail .mast .header .date {
  margin-top: 10px;
}
.events-detail .mast .header p {
  position: relative;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: white;
  text-transform: uppercase;
  font-family: brandon-grotesque, sans-serif;
  text-align: center;
}
.events-detail .mast .header p span {
  display: inline-block;
}
.events-detail .mast .header p a {
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}
.events-detail .mast .header p a:hover {
  border-color: white;
}
.events-detail .mast .brazen-and-logo {
  width: 300px;
  margin: 0 auto;
  height: auto;
}
@media (min-width: 450px) {
  .events-detail .mast .brazen-and-logo {
    width: 400px;
  }
}
.events-detail .mast .brazen-and-logo path {
  fill: #ffffff;
}
.events-detail .pad-top {
  padding-top: 10vh;
}
.events-detail .fill.black {
  background: rgba(34, 27, 18, 0.3);
}
.events-detail .purchase-tickets {
  padding-top: 5vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.events-detail .purchase-tickets p {
  letter-spacing: 0;
  font-size: 2.1em;
  margin-bottom: 30px;
}
.events-detail .purchase-tickets p span {
  letter-spacing: 0;
}
.events-detail .purchase-tickets a {
  margin-left: 20px;
}
.events-detail .center-line {
  width: 50px;
  height: 2px;
  background: #806f5b;
  margin: auto auto 5vh auto;
}
.events-detail .event-info {
  position: relative;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 8vh;
}
@media (min-width: 700px) {
  .events-detail .event-info {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
}
.events-detail .event-info .copy-contain {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}
@media (min-width: 700px) {
  .events-detail .event-info .copy-contain {
    flex-direction: row;
    align-items: flex-start;
  }
}
.events-detail .event-info .copy-contain figcaption {
  display: none;
}
@media (min-width: 700px) {
  .events-detail .event-info .copy-contain .copy {
    width: 62%;
  }
  .events-detail .event-info .copy-contain .copy.no-logo {
    width: 80%;
    margin: 20px auto 0 auto;
  }
}
.events-detail .event-info .copy-contain .copy-image {
  margin: 40px 0 20px 0;
}
@media (min-width: 700px) {
  .events-detail .event-info .copy-contain .copy-image {
    max-width: 80%;
  }
}
.events-detail .about-chef-contain .about-chef {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background: #e5e2df;
  margin-top: 10px;
}
@media (min-width: 700px) {
  .events-detail .about-chef-contain .about-chef {
    flex-direction: row;
  }
  .events-detail .about-chef-contain .about-chef.right {
    flex-direction: row-reverse;
  }
}
@media (min-width: 700px) {
  .events-detail .about-chef-contain .graphic {
    width: 36%;
  }
}
.events-detail .about-chef-contain .graphic img {
  display: block;
}
.events-detail .about-chef-contain .about-copy {
  padding: 10vh 10vw;
  align-self: center;
}
@media (min-width: 700px) {
  .events-detail .about-chef-contain .about-copy {
    width: 50%;
    margin-right: auto;
    padding: 10vh 0 10vh 6vw;
  }
}
.events-detail .hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("./../images/events/brazen-and-bayless/brazen-open-kitchen-event.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.events-detail .hero p {
  font-family: brandon-grotesque, sans-serif;
  font-size: 2.5em;
  line-height: 1.2em;
  letter-spacing: 0.25em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
  color: white;
  text-align: center;
  padding: 25vh 5vw;
}
.events-detail .reserve-hero {
  position: relative;
}
.events-detail .reserve-hero img {
  -o-object-position: top center;
     object-position: top center;
}
.events-detail .reserve-hero p {
  position: relative;
  font-family: brandon-grotesque, sans-serif;
  font-size: 3rem;
  line-height: 1.2em;
  letter-spacing: 0.25em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
  color: white;
  text-align: center;
  padding: 10rem 5vw;
  margin-bottom: 0;
}
@media (min-width: 641px) {
  .events-detail .reserve-hero p {
    padding: 50rem 5vw;
    font-size: 4rem;
  }
}
.events-detail .purchase-contain {
  padding: 10vh 5vw 15vh 5vw;
  text-align: center;
  background: #e5e2df;
}
.events-detail .purchase-contain .price {
  font-size: 2.4rem;
  margin-bottom: 3rem;
}
.events-detail .purchase-contain .purchase {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.events-detail .event-copy {
  padding: 10vh 10vw 15vh 10vw;
  text-align: center;
  background: #e5e2df;
}
@media (min-width: 641px) {
  .events-detail .event-copy {
    padding: 10vh 5vw 15vh 5vw;
  }
}
.events-detail .event-copy .price {
  font-size: 2.4rem;
  margin-bottom: 3rem;
}
.events-detail .event-copy .purchase {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.events-detail .event-copy .purchase .copy-contain {
  text-align: left;
}
.events-detail .event-copy .purchase .copy-contain p {
  color: #806f5b;
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 2rem;
}
.events-detail .event-copy .purchase .copy-contain ul {
  font-size: 1.8rem;
  line-height: 1.4;
  color: #806f5b;
  margin-bottom: 3rem;
  margin-left: 1em;
}
.events-detail .event-copy .purchase .copy-contain ul li {
  display: list-item;
}
.events-detail .event-copy .purchase .copy-contain strong, .events-detail .event-copy .purchase .copy-contain b {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0;
}
.events-detail .sponsors {
  text-align: center;
  padding: 10vh 5vw 12vh 5vw;
}
.events-detail .sponsors p {
  margin: 5vh auto 0 auto;
  font-size: 2em;
}
.events-detail .sponsors .logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .events-detail .sponsors .logos {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.events-detail .sponsors .logos .logo {
  margin: 7vh 0 0 0;
  width: 100%;
}
@media (min-width: 640px) {
  .events-detail .sponsors .logos .logo {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .events-detail .sponsors .logos .logo {
    width: auto;
    margin: 0 20px 0 20px;
  }
}
.events-detail .event-footer {
  padding: 0 0 8vh 0;
  text-align: center;
}
.events-detail .event-footer svg path {
  fill: #806f5b;
}

.employment .employment-copy {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  margin-bottom: 5rem;
}
@media (min-width: 1024px) {
  .employment .employment-copy {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
.employment .employment-copy p {
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin-top: 2vh;
}
.employment .employment-copy p.subhead {
  font-family: brandon-grotesque, sans-serif;
  text-transform: uppercase;
  font-size: 5.3vw;
  line-height: 1.2;
}
@media (min-width: 641px) {
  .employment .employment-copy p.subhead {
    font-size: 2.4rem;
  }
}
.employment .employment-form {
  background: #e5e2df;
}
.employment .employment-form p {
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin-top: 2vh;
}

.modal {
  background-color: #221b12;
  z-index: 10;
  display: block;
  align-items: center;
}
.modal.show {
  display: block;
}
.modal .contain {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  padding: 150px 30px 75px;
}
.modal .copy-block {
  padding: 25px 0 0 0;
  margin: 50px auto 40px auto;
  border-top: 1px solid;
}
.modal svg.icon path {
  fill: #d0c1ae;
}
.modal .logo {
  position: relative;
  text-align: center;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .logo svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 0;
  opacity: 0.4;
}
.modal .actions {
  display: flex;
  flex-direction: column;
}
.modal .actions > * {
  margin: 30px 12px 0;
}
@media (min-width: 641px) {
  .modal .actions {
    justify-content: space-between;
    flex-direction: row;
  }
}
.modal .h1 {
  color: white;
  position: relative;
  z-index: 1;
  font-size: 1.6rem;
}
@media (min-width: 641px) {
  .modal .h1 {
    font-size: 2.2rem;
  }
}
.modal p {
  font-size: 1.55rem;
  line-height: 1.75em;
  color: #d0c1ae;
  margin-bottom: 1.2em;
}
@media (min-width: 641px) {
  .modal p {
    font-size: 1.8rem;
  }
}

.dim {
  opacity: 0.5;
}

.center-copy {
  position: absolute;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5%;
}
.center-copy .title {
  font-family: brandon-grotesque, sans-serif;
  font-size: 2rem;
  color: #e5e2df;
  margin-bottom: 2rem;
}
.center-copy p {
  font-family: georgia, serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: white;
}

.safety {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #e5e2df;
}
.safety .top-logo {
  margin: 0 auto;
}
.safety nav {
  background: #806f5b !important;
}
.safety .safety-contain {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20rem;
  overflow: hidden;
}
@media (min-width: 800px) {
  .safety .safety-contain {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}
.safety .safety-contain p {
  font-size: 1.8rem;
  line-height: 1.4;
  color: #806f5b;
}
@media (min-width: 641px) {
  .safety .safety-contain p {
    font-size: 2rem;
  }
}
.safety .safety-contain img {
  position: relative;
  width: 200px;
  height: auto;
}
.safety .safety-contain img.distance {
  width: 300px;
}
.safety .safety-contain img.hygiene {
  left: 4.5rem;
}
.safety .safety-header {
  margin: 20rem auto 0 auto;
}
.safety .safety-header p {
  font-family: brandon-grotesque, sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  color: #806f5b;
  text-transform: uppercase;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.safety .number {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 7rem;
  width: 7rem;
  border-radius: 3.5rem;
  border: 2px solid #804e28;
  font-size: 3rem;
  font-family: brandon-grotesque, sans-serif;
  text-align: center;
  margin: 0 auto 4rem auto;
  color: #221b12;
}
.safety .safety-item {
  margin-top: 10rem;
  text-align: center;
}

body.submitting {
  cursor: wait;
}

body.submitting button {
  cursor: wait;
  pointer-events: none;
  opacity: 0.4;
}

.freeform-form-has-errors {
  color: white !important;
  padding: 1rem 0.5rem 0.5rem 0.5rem;
  border-top: 1px solid #960505;
  text-align: center;
  font-family: brandon-grotesque, sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.freeform-row .freeform-column .freeform-errors > li {
  color: #960505;
  font-family: brandon-grotesque, sans-serif;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.reserve-home .flipped {
  transform: scaleX(-1);
}
.reserve-home .flipped-y {
  transform: scaleY(-1);
}
.reserve-home .icon {
  height: 30%;
}
@media (min-width: 641px) {
  .reserve-home .icon {
    height: 50%;
  }
}
.reserve-home .reserve-copy {
  position: relative;
}
.reserve-home .reserve-copy.has-nav {
  padding-bottom: 0;
}
.reserve-home .reserve-copy .copy {
  position: relative;
  display: flex;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.reserve-home .reserve-copy .copy p {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
.reserve-home .reserve-copy .copy h2:before {
  left: calc(50% - 25px);
  top: -3vh;
}
.reserve-home .reserve-copy .copy.reverse {
  flex-direction: column-reverse;
}
.reserve-home .reserve-copy .copy.reverse p {
  margin-bottom: 4rem;
}
.reserve-home .reserve-experience-copy {
  position: relative;
  background: #000000;
}
.reserve-home .reserve-experience-copy .copy-offset {
  position: relative;
}
.reserve-home .reserve-experience-copy .copy-offset p {
  font-style: normal;
  font-size: 1.6rem;
}
.reserve-home .reserve-experience-copy .copy-offset p.pricing {
  font-family: brandon-grotesque, sans-serif;
  font-weight: 500;
  font-size: 1.9rem;
  font-style: normal;
  letter-spacing: 0.1rem;
  color: white;
  margin-top: 3rem;
}
.reserve-home .reserve-experience-copy .copy-offset .btn {
  align-self: flex-start;
  margin-top: 3rem;
}
.reserve-home .reserve-nav {
  position: relative;
  margin-top: 2rem;
  margin-bottom: 6rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .reserve-home .reserve-nav {
    flex-direction: row;
    border-right: 1px solid white;
    margin-top: 6rem;
  }
}
.reserve-home .reserve-nav a {
  position: relative;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.3rem;
  color: white;
  border-top: 1px solid rgba(176, 147, 130, 0.5);
  padding: 2rem 3rem;
  display: block;
}
@media (min-width: 1024px) {
  .reserve-home .reserve-nav a {
    border-top: 0;
    border-left: 1px solid white;
    padding: 0 8rem;
  }
}
.reserve-home .reserve-nav a:first-child {
  border-top: 0;
}
.reserve-home .reserve-nav a:hover span:after {
  width: 100%;
}
.reserve-home .reserve-nav a span {
  position: relative;
  display: block;
}
.reserve-home .reserve-nav a span:after {
  position: absolute;
  content: "";
  bottom: -0.5rem;
  left: 50%;
  margin-left: -50%;
  background: #ffffff;
  width: 0%;
  height: 1px;
  transition: 0.7s ease-in-out;
}
.reserve-home .form-bg {
  -o-object-position: right bottom;
     object-position: right bottom;
}
.reserve-home .form-contain {
  position: relative;
  padding: 5rem 0;
  background: #000;
}
@media (min-width: 641px) {
  .reserve-home .form-contain {
    padding: 5rem 0 20rem 0;
  }
}
.reserve-home .form-contain img {
  opacity: 0.6;
}
.reserve-home .form-contain .single {
  margin-bottom: 3rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.reserve-home .form-contain .single.no-pad {
  margin-bottom: 0;
}
.reserve-home .form-contain .form {
  position: relative;
  border-radius: 1.5rem;
  padding: 7rem 10%;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  box-shadow: 0 4rem 4rem 2rem rgba(0, 0, 0, 0.4);
  border: 5px solid rgba(255, 255, 255, 0.15);
}
@media (min-width: 641px) {
  .reserve-home .form-contain .form {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    padding: 10rem;
    border-radius: 3rem;
  }
}
.reserve-home .form-contain .form img {
  opacity: 0.9;
}
.reserve-home .form-contain .form-title {
  position: relative;
  font-size: 1.6rem;
  font-family: brandon-grotesque, sans-serif;
  line-height: 1.4;
  color: white;
  letter-spacing: 0.3rem;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.reserve-home .form-contain .thank-you-message {
  position: relative;
  font-size: 2.2rem;
  font-family: brandon-grotesque, sans-serif;
  line-height: 1.6;
  color: white;
  text-align: center;
}
.reserve-home .form-contain form {
  position: relative;
  font-family: brandon-grotesque, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: white;
}
.reserve-home .form-contain form input {
  padding: 1.5rem 2rem;
  font-family: brandon-grotesque, sans-serif;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0.4rem;
  font-weight: 500;
}
.reserve-home .form-contain form textarea {
  padding: 1.5rem 2rem;
}
.reserve-home .form-contain form .freeform-label {
  display: none;
}
.reserve-home .form-contain form .freeform-label[for=form-input-interest_in] {
  display: block;
  padding: 0 2rem 1.5rem 0;
  font-family: brandon-grotesque, sans-serif;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0.4rem;
  font-weight: 500;
  color: white;
}
.reserve-home .form-contain form .btn {
  color: white;
  text-transform: uppercase;
  cursor: pointer;
}
.reserve-home .reserve-footer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.reserve-home .reserve-footer svg {
  margin-top: 10rem;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .reserve-home .reserve-footer svg {
    margin-top: 20rem;
  }
}
.reserve-home .reserve-footer .title-tag {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.reserve-home .reserve-footer .title-tag .title {
  position: relative;
  font-family: brandon-grotesque, sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  color: white;
  letter-spacing: 0.7rem;
  margin-bottom: 1rem;
}

.reserve {
  position: relative;
  background: #000000;
}
.reserve .reserve-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
  opacity: 0;
  transition: 2s;
  transform-origin: right center;
}
.reserve .title-tag {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.reserve .title-tag .title {
  position: relative;
  font-family: brandon-grotesque, sans-serif;
  font-size: 1.6rem;
  color: white;
  font-weight: 700;
  letter-spacing: 0.7rem;
  margin-bottom: 1rem;
}
.reserve .mast-reserve {
  position: relative;
  width: 100%;
  z-index: 1;
  background: transparent;
}
.reserve .mast-reserve .mast-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  overflow: hidden;
}
.reserve .mast-reserve .mast-content .logo {
  position: relative;
}
.reserve .mast-reserve .mast-content .logo .under {
  position: absolute;
  top: -0.1rem;
  left: -0.1rem;
  mix-blend-mode: multiply;
  opacity: 0;
}
.reserve .mast-reserve .mast-content .reserve-logo {
  position: relative;
  width: 220px;
  opacity: 0;
  margin-top: -10vh;
}
.reserve .mast-reserve .mast-content .copy {
  position: absolute;
  bottom: 3rem;
  opacity: 0;
}
.reserve .mast-reserve .mast-content .copy .arrow-down {
  margin-top: 3rem;
}
.reserve .mast-reserve .intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}
@media (min-width: 641px) {
  .reserve .mast-reserve .intro {
    height: 150vh;
  }
}
.reserve .mast-reserve .intro h2 {
  font-size: 6rem;
  line-height: 13rem;
  color: white;
}
.reserve .mast-reserve .intro p {
  font-family: brandon-grotesque, sans-serif;
  font-size: 1.6rem;
  line-height: 2.7rem;
  letter-spacing: 0.4rem;
  color: white;
  margin-top: 4rem;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 641px) {
  .reserve .mast-reserve .intro p {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}
.reserve .mast-reserve .intro p.small {
  font-size: 1.2rem;
}
.reserve .form-bg {
  -o-object-position: right bottom;
     object-position: right bottom;
}
.reserve .form-contain {
  position: relative;
  padding: 15vh 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4rem 10rem 10rem rgba(0, 0, 0, 0.4);
}
@media (min-width: 641px) {
  .reserve .form-contain {
    height: 140vh;
    padding: 0;
  }
}
.reserve .form-contain .form {
  position: relative;
  border-radius: 1.5rem;
  padding: 7rem 10%;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  box-shadow: 0 4rem 4rem 2rem rgba(0, 0, 0, 0.4);
}
@media (min-width: 641px) {
  .reserve .form-contain .form {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    padding: 10rem;
    border-radius: 3rem;
  }
}
.reserve .form-contain .form-title {
  position: relative;
  font-size: 1.6rem;
  font-family: brandon-grotesque, sans-serif;
  line-height: 1.4;
  color: white;
  letter-spacing: 0.3rem;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.reserve .form-contain .thank-you-message {
  position: relative;
  font-size: 2.2rem;
  font-family: brandon-grotesque, sans-serif;
  line-height: 1.6;
  color: white;
  text-align: center;
}
.reserve .form-contain form {
  position: relative;
  font-family: brandon-grotesque, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: white;
}
.reserve .form-contain form input {
  padding: 1.5rem 2rem;
  font-family: brandon-grotesque, sans-serif;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0.4rem;
  font-weight: 500;
}
.reserve .form-contain form textarea {
  padding: 1.5rem 2rem;
}
.reserve .form-contain form .freeform-label {
  display: none;
}
.reserve .form-contain form .freeform-label[for=form-input-interest_in] {
  display: block;
  padding: 0 2rem 1.5rem 0;
  font-family: brandon-grotesque, sans-serif;
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0.4rem;
  font-weight: 500;
  color: white;
}
.reserve .form-contain form .btn {
  color: white;
  text-transform: uppercase;
  cursor: pointer;
}
.reserve .reserve-footer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 120vh;
  text-align: center;
}
.reserve .reserve-footer .copy {
  margin-top: 8rem;
}

.go .reserve-bg {
  opacity: 0.8;
  transform: translateX(3rem) scale(1.1);
}
.go .reserve-logo {
  opacity: 0.8 !important;
  transition: 3s;
  transition-delay: 0.5s;
}
@media (min-width: 1024px) {
  .go .reserve-logo image {
    transition: 3s;
    transform: translate(-513.445px, -107.759px) scale(0.2896, 0.2896);
  }
}
.go .mast-content .copy {
  opacity: 1 !important;
  transition: 1s;
  transition-delay: 0.75s;
}

.position-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 5rem;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1200px) {
  .position-container {
    max-width: 85rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.position-container .position {
  width: 100%;
  display: flex;
  border-bottom: 1px solid rgb(217.5689655172, 213.25, 208.9310344828);
}
@media (min-width: 850px) {
  .position-container .position:first-child, .position-container .position:nth-child(3) {
    border-right: 1px solid rgb(217.5689655172, 213.25, 208.9310344828);
  }
}
.position-container .position:last-child {
  border-bottom: 0;
}
@media (min-width: 850px) {
  .position-container .position {
    width: 48%;
  }
}
@media (min-width: 850px) {
  .position-container .position.no-border {
    border-bottom: 0;
  }
}
.position-container .position .position-copy {
  max-width: 40rem;
  padding: 5rem 5%;
}
@media (min-width: 850px) {
  .position-container .position .position-copy {
    padding: 5rem 5rem 5rem 5rem;
  }
}
@media (min-width: 1024px) {
  .position-container .position .position-copy {
    padding: 5rem 3rem 3rem 5rem;
  }
}
.position-container .position .icon-with-desc {
  border-bottom: 1px solid rgb(217.5689655172, 213.25, 208.9310344828);
}
.position-container .position .icon-with-desc .icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 15rem;
  width: 15rem;
  margin-bottom: 1rem;
}
.position-container .position .icon-with-desc .icon svg {
  height: 100%;
  width: auto;
}
.position-container .position .icon-with-desc .description {
  font-family: brandon-grotesque, sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  line-height: 1.2;
  color: #221b12;
  max-width: 26rem;
  margin-bottom: 1.4rem;
  text-align: left;
}
.position-container .position ul.positions {
  display: block;
  width: 100%;
  max-width: 30rem;
  margin-top: 2rem;
  list-style-type: disc;
  text-align: left;
}
.position-container .position ul.positions lh {
  display: block;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  line-height: 1;
}
.position-container .position ul.positions li {
  position: relative;
  margin-bottom: 0.5rem;
  line-height: 1.6;
  font-size: 1.8rem;
  margin-left: 1em;
}
.position-container .position ul.positions li:before {
  position: absolute;
  top: 0;
  left: -1em;
  content: "•";
  height: 3px;
  width: 3px;
}
.position-container .position.brazen svg path {
  fill: #221b12;
}
.position-container .position.brazen-reserve-logo svg {
  height: 90%;
}
.position-container .position.brazen-reserve-logo svg path {
  fill: #221b12;
}
.position-container .position.birds .icon {
  position: relative;
  top: -1rem;
}
.position-container .position.ottos .position-copy {
  position: relative;
  top: 1.7rem;
}
.position-container .position.ottos svg {
  width: 20rem !important;
}

.popup-screen {
  display: none;
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.popup-screen.close {
  display: none;
}
.show-popup .popup-screen {
  display: block;
}

.popup {
  display: none;
  position: fixed;
  width: 90%;
  z-index: 11;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 20px rgb(0, 0, 0);
  background: #ffffff;
}
@media (min-width: 900px) {
  .popup {
    width: 60rem;
  }
}
.show-popup .popup {
  display: block;
}
.popup.close {
  display: none;
}
.popup .popup-contain {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 7rem 5% 5rem 5%;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 641px) {
  .popup .popup-contain {
    flex-direction: row;
    padding: 8rem 2.5%;
    text-align: center;
  }
}
.popup .popup-contain p {
  font-size: 1.8rem;
  line-height: 1.3;
}
@media (min-width: 641px) {
  .popup .popup-contain p {
    font-size: 2rem;
  }
}
.popup .popup-close {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  height: 3rem;
  width: 3rem;
  background: #ffffff;
  border: 1px solid #804e28;
  padding: 0;
  transition: 0.2s;
}
.popup .popup-close svg {
  position: relative;
  height: 1rem;
  width: 1rem;
  pointer-events: none;
}
.popup .popup-close svg path {
  fill: #806f5b;
}
.popup .popup-close:hover {
  background: #806f5b;
}
.popup .popup-close:hover svg path {
  fill: #ffffff;
}

.brazen-events {
  padding: 8rem 0 3rem 0;
}
.brazen-events .container {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 641px) {
  .brazen-events .container {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1800px) {
  .brazen-events .container {
    max-width: 160rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.brazen-events .container .copy {
  text-align: center;
  margin-bottom: 3.5rem;
}
@media (min-width: 641px) {
  .brazen-events .container .copy {
    margin-bottom: 7rem;
  }
}
.brazen-events .container .copy h2 {
  font-size: 2.9rem;
  font-weight: 500;
  color: #424242;
  letter-spacing: 0.1em;
  margin: 0 0 2rem 0;
  text-transform: uppercase;
}
.brazen-events .container .copy p {
  font-size: 2rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: #757575;
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
}
.brazen-events .container .events {
  display: flex;
  flex-wrap: wrap;
}
.brazen-events .container .events .event {
  width: 100%;
  padding: 5rem 2.5%;
  text-align: center;
  border-bottom: 2px solid rgba(160, 160, 160, 0.3);
}
.brazen-events .container .events .event:last-child {
  border: 0;
}
@media (min-width: 641px) {
  .brazen-events .container .events .event {
    width: 50%;
    border-right: 2px solid rgba(160, 160, 160, 0.3);
    border-bottom: 0;
    margin-bottom: 3rem;
  }
  .brazen-events .container .events .event:nth-child(2n+2) {
    border-right: 0;
  }
}
@media (min-width: 900px) {
  .brazen-events .container .events .event {
    width: 33.33%;
  }
  .brazen-events .container .events .event:nth-child(2n+2) {
    border-right: 2px solid rgba(160, 160, 160, 0.3);
  }
  .brazen-events .container .events .event:nth-child(3n+3) {
    border-right: 0;
  }
}
@media (min-width: 1180px) {
  .brazen-events .container .events .event {
    width: 25%;
  }
  .brazen-events .container .events .event:nth-child(3n+3) {
    border-right: 2px solid rgba(160, 160, 160, 0.3);
  }
  .brazen-events .container .events .event:nth-child(4n+4) {
    border-right: 0;
  }
}
.brazen-events .container .events .event time {
  display: block;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.brazen-events .container .events .event h3 {
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
@media (min-width: 1180px) {
  .brazen-events .container .events .event h3 {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.brazen-events .container .events .event .event-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.brazen-events .container .events .event .event-links a {
  text-transform: uppercase;
}
.brazen-events .container .events .event .event-links a.btn {
  color: #424242;
  font-size: 1.35rem;
  letter-spacing: 0.2em;
}
.brazen-events .container .events .event .event-links a.btn:hover {
  color: #ffffff;
}
.brazen-events .container .events .event .event-links a.link {
  font-family: brandon-grotesque, sans-serif;
  font-weight: 600;
  color: #424242;
  letter-spacing: 0.2em;
  margin-right: 0;
}
