html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

em, i {
  font-style: italic;
}

strong, b {
  font-weight: bold;
}

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

@font-face {
  font-family: 'Bookman BT Roman';
  src: url("../fonts/Bookman-Headline-OT.ttf") format("truetype");
}

@font-face {
  font-family: 'Bookman BT Roman';
  font-style: italic;
  src: url("../fonts/Bookman-Italic-Headline-OT.ttf") format("truetype");
}

.center {
  text-align: center;
}

.middle {
  position: absolute;
  max-height: 100%;
  max-width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.border-link {
  display: inline-block;
  padding: 0 12px;
  font-size: 22px;
  line-height: 38px;
  position: relative;
  font-weight: 500;
  letter-spacing: 2px;
  transition: 0.15s color;
  -webkit-transition: 0.15s color;
  -moz-transition: 0.15s color;
  -ms-transition: 0.15s color;
  -o-transition: 0.15s color;
}

.border-link:before, .border-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  -moz-border-radius: 2px;
  background: #d73532;
}

.border-link:after {
  top: auto;
  bottom: 0;
}

/**
 * Modified responsive grid system by Chris Bracco
 * http://cbracco.me/a-simple-responsive-css-grid-system/
 */
*, *:before, *:after {
  box-sizing: border-box;
  outline: 0;
}

html {
  font-size: 100%;
}

.container {
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
}

.wrapper {
  margin: 0 auto;
}

.row {
  margin: 0 -10px;
}

.container, .row, .wrapper, .clearfix, .slideshow-block .slick-list {
  *zoom: 1;
}

.container:before, .container:after, .row:before, .row:after, .wrapper:before, .wrapper:after, .clearfix:before, .slideshow-block .slick-list:before, .clearfix:after, .slideshow-block .slick-list:after {
  display: table;
  content: "";
}

.container:after, .row:after, .wrapper:after, .clearfix:after, .slideshow-block .slick-list:after {
  clear: both;
}

[class^="col-"], [class*=" col-"] {
  position: relative;
  min-height: 1px;
  padding: 0 12px;
}

.row.no-gutter {
  margin: 0;
}

.row.no-gutter [class^="col-"], .row.no-gutter [class*=" col-"] {
  padding: 0;
}

@media screen and (min-width: 600px) {
  [class^="col-"], [class*=" col-"] {
    padding-left: 10px;
    padding-right: 10px;
    float: left;
  }
  [class^="col-"].float-right, [class*=" col-"].float-right {
    float: right;
  }
  .col-1 {
    width: 8.333%;
  }
  .col-2 {
    width: 16.666%;
  }
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.3%;
  }
  .col-5 {
    width: 41.666%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 58.333%;
  }
  .col-8 {
    width: 66.666%;
  }
  .col-9 {
    width: 75%;
  }
  .col-10 {
    width: 83.333%;
  }
  .col-11 {
    width: 91.666%;
  }
  .col-12 {
    width: 100%;
  }
  .push-1 {
    margin-left: 8.333%;
  }
  .push-2 {
    margin-left: 16.666%;
  }
  .push-3 {
    margin-left: 25%;
  }
  .push-4 {
    margin-left: 33.333%;
  }
  .push-5 {
    margin-left: 41.666%;
  }
  .push-6 {
    margin-left: 50%;
  }
  .push-7 {
    margin-left: 58.333%;
  }
  .push-8 {
    margin-left: 66.666%;
  }
  .push-9 {
    margin-left: 75%;
  }
  .push-10 {
    margin-left: 83.333%;
  }
  .push-11 {
    margin-left: 91.666%;
  }
  .push-12 {
    margin-left: 100%;
  }
  .pull-1 {
    margin-left: -8.333%;
  }
  .pull-2 {
    margin-left: -16.666%;
  }
  .pull-3 {
    margin-left: -25%;
  }
  .pull-4 {
    margin-left: -33.333%;
  }
  .pull-5 {
    margin-left: -41.666%;
  }
  .pull-6 {
    margin-left: -50%;
  }
  .pull-7 {
    margin-left: -58.333%;
  }
  .pull-8 {
    margin-left: -66.666%;
  }
  .pull-9 {
    margin-left: -75%;
  }
  .pull-10 {
    margin-left: -83.333%;
  }
  .pull-11 {
    margin-left: -91.666%;
  }
  .pull-12 {
    margin-left: -100%;
  }
}

@media screen and (min-width: 600px) and (max-width: 1350px) {
  .sm-col-1 {
    width: 8.333%;
  }
  .sm-col-2 {
    width: 16.666%;
  }
  .sm-col-3 {
    width: 25%;
  }
  .sm-col-4 {
    width: 33.333%;
  }
  .sm-col-5 {
    width: 41.666%;
  }
  .sm-col-6 {
    width: 50%;
  }
  .sm-col-7 {
    width: 58.333%;
  }
  .sm-col-8 {
    width: 66.666%;
  }
  .sm-col-9 {
    width: 75%;
  }
  .sm-col-10 {
    width: 83.333%;
  }
  .sm-col-11 {
    width: 91.666%;
  }
  .sm-col-12 {
    width: 100%;
  }
  .sm-push-0 {
    margin-left: 0;
  }
  .sm-push-1 {
    margin-left: 8.333%;
  }
  .sm-push-2 {
    margin-left: 16.666%;
  }
  .sm-push-3 {
    margin-left: 25%;
  }
  .sm-push-4 {
    margin-left: 33.333%;
  }
  .sm-push-5 {
    margin-left: 41.666%;
  }
  .sm-push-6 {
    margin-left: 50%;
  }
  .sm-push-7 {
    margin-left: 58.333%;
  }
  .sm-push-8 {
    margin-left: 66.666%;
  }
  .sm-push-9 {
    margin-left: 75%;
  }
  .sm-push-10 {
    margin-left: 83.333%;
  }
  .sm-push-11 {
    margin-left: 91.666%;
  }
  .sm-push-12 {
    margin-left: 100%;
  }
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  .tablet-col-1 {
    width: 8.333%;
  }
  .tablet-col-2 {
    width: 16.666%;
  }
  .tablet-col-3 {
    width: 25%;
  }
  .tablet-col-4 {
    width: 33.333%;
  }
  .tablet-col-5 {
    width: 41.666%;
  }
  .tablet-col-6 {
    width: 50%;
  }
  .tablet-col-7 {
    width: 58.333%;
  }
  .tablet-col-8 {
    width: 66.666%;
  }
  .tablet-col-9 {
    width: 75%;
  }
  .tablet-col-10 {
    width: 83.333%;
  }
  .tablet-col-11 {
    width: 91.666%;
  }
  .tablet-col-12 {
    width: 100%;
  }
  .tablet-push-0 {
    margin-left: 0;
  }
  .tablet-push-1 {
    margin-left: 8.333%;
  }
  .tablet-push-2 {
    margin-left: 16.666%;
  }
  .tablet-push-3 {
    margin-left: 25%;
  }
  .tablet-push-4 {
    margin-left: 33.333%;
  }
  .tablet-push-5 {
    margin-left: 41.666%;
  }
  .tablet-push-6 {
    margin-left: 50%;
  }
  .tablet-push-7 {
    margin-left: 58.333%;
  }
  .tablet-push-8 {
    margin-left: 66.666%;
  }
  .tablet-push-9 {
    margin-left: 75%;
  }
  .tablet-push-10 {
    margin-left: 83.333%;
  }
  .tablet-push-11 {
    margin-left: 91.666%;
  }
  .tablet-push-12 {
    margin-left: 100%;
  }
}

@media screen and (min-width: 600px) and (max-width: 768px) {
  .sm-tablet-col-1 {
    width: 8.333%;
  }
  .sm-tablet-col-2 {
    width: 16.666%;
  }
  .sm-tablet-col-3 {
    width: 25%;
  }
  .sm-tablet-col-4 {
    width: 33.333%;
  }
  .sm-tablet-col-5 {
    width: 41.666%;
  }
  .sm-tablet-col-6 {
    width: 50%;
  }
  .sm-tablet-col-7 {
    width: 58.333%;
  }
  .sm-tablet-col-8 {
    width: 66.666%;
  }
  .sm-tablet-col-9 {
    width: 75%;
  }
  .sm-tablet-col-10 {
    width: 83.333%;
  }
  .sm-tablet-col-11 {
    width: 91.666%;
  }
  .sm-tablet-col-12 {
    width: 100%;
  }
  .sm-tablet-push-0 {
    margin-left: 0;
  }
  .sm-tablet-push-1 {
    margin-left: 8.333%;
  }
  .sm-tablet-push-2 {
    margin-left: 16.666%;
  }
  .sm-tablet-push-3 {
    margin-left: 25%;
  }
  .sm-tablet-push-4 {
    margin-left: 33.333%;
  }
  .sm-tablet-push-5 {
    margin-left: 41.666%;
  }
  .sm-tablet-push-6 {
    margin-left: 50%;
  }
  .sm-tablet-push-7 {
    margin-left: 58.333%;
  }
  .sm-tablet-push-8 {
    margin-left: 66.666%;
  }
  .sm-tablet-push-9 {
    margin-left: 75%;
  }
  .sm-tablet-push-10 {
    margin-left: 83.333%;
  }
  .sm-tablet-push-11 {
    margin-left: 91.666%;
  }
  .sm-tablet-push-12 {
    margin-left: 100%;
  }
}

@media screen and (max-width: 600px) {
  .mobile-col-1 {
    width: 8.333%;
  }
  .mobile-col-2 {
    width: 16.666%;
  }
  .mobile-col-3 {
    width: 25%;
  }
  .mobile-col-4 {
    width: 33.333%;
  }
  .mobile-col-5 {
    width: 41.666%;
  }
  .mobile-col-6 {
    width: 50%;
  }
  .mobile-col-7 {
    width: 58.333%;
  }
  .mobile-col-8 {
    width: 66.666%;
  }
  .mobile-col-9 {
    width: 75%;
  }
  .mobile-col-10 {
    width: 83.333%;
  }
  .mobile-col-11 {
    width: 91.666%;
  }
  .mobile-col-12 {
    width: 100%;
  }
  .mobile-push-0 {
    margin-left: 0;
  }
  .mobile-push-1 {
    margin-left: 8.333%;
  }
  .mobile-push-2 {
    margin-left: 16.666%;
  }
  .mobile-push-3 {
    margin-left: 25%;
  }
  .mobile-push-4 {
    margin-left: 33.333%;
  }
  .mobile-push-5 {
    margin-left: 41.666%;
  }
  .mobile-push-6 {
    margin-left: 50%;
  }
  .mobile-push-7 {
    margin-left: 58.333%;
  }
  .mobile-push-8 {
    margin-left: 66.666%;
  }
  .mobile-push-9 {
    margin-left: 75%;
  }
  .mobile-push-10 {
    margin-left: 83.333%;
  }
  .mobile-push-11 {
    margin-left: 91.666%;
  }
  .mobile-push-12 {
    margin-left: 100%;
  }
}

.wrapper {
  max-width: 1224px;
  padding: 0 12px;
}

.wrapper--extened-width {
  max-width: 1820px;
}

@media screen and (max-width: 1024px) {
  .wrapper {
    padding: 0;
  }
  .row {
    margin: 0;
  }
  .tablet-2-col {
    width: 50%;
    float: left;
  }
}

body, html {
  font-family: "Bookman BT Roman", serif;
}

html {
  height: 100%;
}

body {
  padding-top: 80px;
  height: 100%;
  min-height: 100%;
  font-size: 21px;
  color: #252525;
  overflow-y: scroll !important;
}

.compensate-for-scrollbar {
  margin-right: 0 !important;
}

img {
  display: block;
}

h1 {
  font-size: 96px;
  line-height: 1.2;
  font-family: "corner-store-jf", serif;
}

h2 {
  font-size: 84px;
  line-height: 1.2;
  font-family: "corner-store-jf", serif;
}

h3,
h4,
h5,
h6 {
  font-family: "league-gothic", sans-serif;
  text-transform: uppercase;
  display: block;
}

h3 {
  font-size: 45px;
  letter-spacing: 4.9px;
  line-height: 1.2;
}

h4 {
  font-size: 38px;
  letter-spacing: 5.5px;
  line-height: 1.2;
}

h5 {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 3.3px;
}

p {
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #252525;
  transition: 0.15s color;
  -webkit-transition: 0.15s color;
  -moz-transition: 0.15s color;
  -ms-transition: 0.15s color;
  -o-transition: 0.15s color;
}

a:hover {
  color: #d73532;
}

textarea,
input[type="text"],
input[type="button"],
input[type="submit"],
input[type="email"] {
  -webkit-appearance: none;
  border-radius: 0;
}

.italic {
  font-style: italic;
}

.tel,
.tel:hover {
  cursor: text;
  color: inherit;
}

hr {
  border: none;
  border-top: 3px solid #d73532;
  width: 50%;
  margin: 0 auto;
  position: relative;
}

hr.vertical {
  border: none;
  width: 0;
  z-index: 4000;
}

hr.vertical:before, hr.vertical:after {
  content: '';
  display: block;
  width: 3px;
  height: 130px;
  background: #d73532;
  position: absolute;
  left: 0;
  bottom: 0;
  margin-bottom: -65px;
  margin-left: -2px;
}

hr.vertical:after {
  content: '';
  display: block;
  width: 11px;
  height: 11px;
  background: #d73532;
  margin-left: -6px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.coming-soon.hero,
.coming-soon {
  height: 100%;
  text-align: center;
  padding-top: 60px;
  margin-bottom: 0;
}

.hero {
  clip-path: polygon(0% 0%, 100% 0%, 100% 82%, 50% 100%, 0% 82%);
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 82%, 50% 100%, 0% 82%);
  background-color: #252525;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 534px;
  color: white;
  position: relative;
  z-index: 4000;
  margin-bottom: -118px;
}

.hero--with-video {
  overflow: hidden;
}

.hero__video {
  width: 100%;
  max-height: none;
  margin-top: 5%;
}

.hero__image {
  padding-bottom: 60px;
}

.slideshow-block {
  position: relative;
  *zoom: 1;
}

.slideshow-block:before, .slideshow-block:after {
  display: table;
  content: "";
}

.slideshow-block:after {
  clear: both;
}

.slideshow-block .slick-list {
  overflow: hidden;
}

.slideshow-block .slick-arrow {
  cursor: pointer;
  display: inline-block !important;
  z-index: 1;
  position: absolute;
  width: 60px;
  height: 60px;
  background-size: 120px;
  background-repeat: no-repeat;
  background-position: top left;
}

.slideshow-block .slick-arrow:before {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  opacity: 0;
  transition: 0.15s all;
  -webkit-transition: 0.15s all;
  -moz-transition: 0.15s all;
  -ms-transition: 0.15s all;
  -o-transition: 0.15s all;
  background-size: 120px;
  background-position-x: -60px;
}

.slideshow-block .slick-arrow:hover:before {
  opacity: 1;
}

.slideshow-block .slick-arrow.slick-prev {
  background-image: url("../img/carousel-sprite/1x/carousel-sprite-left.png");
}

.slideshow-block .slick-arrow.slick-prev:before {
  background-image: url("../img/carousel-sprite/1x/carousel-sprite-left.png");
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
  .slideshow-block .slick-arrow.slick-prev {
    background-image: url("../img/carousel-sprite/2x/carousel-sprite-left@2x.png");
  }
  .slideshow-block .slick-arrow.slick-prev:before {
    background-image: url("../img/carousel-sprite/2x/carousel-sprite-left@2x.png");
  }
}

.slideshow-block .slick-arrow.slick-next {
  background-image: url("../img/carousel-sprite/1x/carousel-sprite-right.png");
}

.slideshow-block .slick-arrow.slick-next:before {
  background-image: url("../img/carousel-sprite/1x/carousel-sprite-right.png");
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
  .slideshow-block .slick-arrow.slick-next {
    background-image: url("../img/carousel-sprite/2x/carousel-sprite-right@2x.png");
  }
  .slideshow-block .slick-arrow.slick-next:before {
    background-image: url("../img/carousel-sprite/2x/carousel-sprite-right@2x.png");
  }
}

.slideshow-block .slide {
  display: block;
  float: left;
  position: relative;
  overflow: hidden;
}

.slide-index {
  text-align: center;
  font-family: "league-gothic", sans-serif;
  font-size: 18px;
  margin-top: 12px;
  margin-bottom: 96px;
}

.slide-index__current {
  padding-right: 20px;
}

.slide-index__total {
  padding-left: 20px;
}

.tablet-only,
.small-tablet-only,
.mobile-only {
  display: none;
}

@media screen and (min-width: 1025px) {
  .hero--with-video {
    background: transparent !important;
  }
}

@media screen and (max-width: 1024px) {
  h3 {
    font-size: 50px;
    letter-spacing: 5.5px;
  }
  .tablet-only {
    display: block;
  }
  .hero {
    height: 390px;
    overflow: visible;
  }
  .hero__video {
    display: none;
  }
  hr.vertical:before, hr.vertical:after {
    height: 185px;
    margin-bottom: -90px;
  }
  hr.vertical:after {
    height: 11px;
  }
}

@media screen and (max-width: 768px) {
  .small-tablet-only {
    display: block;
  }
  .small-tablet-hidden {
    display: none;
  }
  .hero {
    height: 500px;
  }
}

@media screen and (max-width: 600px) {
  .tel {
    color: #d73532;
  }
  h3 {
    font-size: 50px;
    font-size: 8.33333vw;
  }
  .mobile-hidden {
    display: none;
  }
  .mobile-only {
    display: block;
  }
  .hero {
    height: 0;
    padding-top: 77%;
  }
  hr.vertical:before, hr.vertical:after {
    height: 64px;
    margin-bottom: -35px;
  }
  hr.vertical:after {
    height: 11px;
  }
}

.open-table-widget {
  display: none;
  text-align: center;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10000;
}

.open-table-widget iframe {
  width: 240px;
  height: 305px;
}

.open-table-widget:after {
  content: '\00d7';
  top: 5px;
  right: -25px;
  font-size: 30px;
  position: absolute;
  color: #FFF;
  font-weight: 700;
  cursor: pointer;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.8);
}

.grecaptcha-badge {
  display: none;
}

.popup-gallery {
  margin: 4rem 0 0;
  text-align: left;
  font-size: 0;
}

.popup-gallery .wrapper {
  max-width: 1234px;
}

.popup-gallery .gallery-item {
  display: inline-block;
  border: 5px solid #FFF;
  position: relative;
  height: 0;
  padding-bottom: 25%;
  float: none;
  overflow: hidden;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: border-color 0.2s ease-out, -webkit-filter 0.2s ease-out;
  -webkit-transition: border-color 0.2s ease-out, -webkit-filter 0.2s ease-out;
  transition: filter 0.2s ease-out, border-color 0.2s ease-out;
  transition: filter 0.2s ease-out, border-color 0.2s ease-out, -webkit-filter 0.2s ease-out;
}

.popup-gallery .gallery-item:hover {
  -webkit-filter: none;
  filter: none;
  border-color: #d73532;
}

@media (max-width: 600px) {
  .popup-gallery .gallery-item {
    width: 50%;
    padding-bottom: 50%;
  }
}

.popup-gallery .gallery-item img {
  position: absolute;
  height: 100%;
  width: auto;
  max-width: unset;
  min-width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.fancybox-caption__body, .fancybox-infobar {
  color: #FFF !important;
  font-size: 1.25rem;
  text-shadow: 0px 0px 5px #000;
  font-weight: 600;
}

.fancybox-navigation .fancybox-button div {
  background: #d0011b !important;
}

.fancybox-button[disabled] {
  opacity: 0.25 !important;
}

a.borderedBox:hover {
  color: #815202;
}

.borderedBox {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 800px;
  text-align: center;
  color: #FFF;
  display: block;
  margin: 0 auto 35px;
  padding: 50px 50px 58px;
}

.borderedBox.wider {
  max-width: 1024px;
}

.borderedBox .edges {
  border-left: 3px solid;
  border-right: 3px solid;
  border-top: 3px solid;
}

@media (max-width: 600px) {
  .borderedBox {
    width: 90%;
    padding: 50px 25px 58px;
  }
}

.borderedBox.white {
  color: #FFF;
}

.borderedBox.white .edges {
  border-color: #FFF;
}

.borderedBox.white .edges:before, .borderedBox.white .edges:after {
  background: #FFF;
}

.borderedBox.black {
  color: #000;
}

.borderedBox.black .edges {
  border-color: #000;
}

.borderedBox.black .edges:before, .borderedBox.black .edges:after {
  background: #000;
}

.borderedBox.black .label {
  background: #FFF;
}

.borderedBox.key:after {
  content: '';
  display: block;
  position: absolute;
  width: 125px;
  height: 100px;
  background: url(../img/login-key-gold.svg) center no-repeat;
  background-size: contain;
  bottom: -45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.borderedBox .edges {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  bottom: 0;
  left: 0;
}

.borderedBox .edges:before, .borderedBox .edges:after {
  content: '';
  position: absolute;
  width: calc(50% - 90px);
  height: 3px;
  bottom: 0;
}

.borderedBox .edges:before {
  left: 0;
}

.borderedBox .edges:after {
  right: 0;
}

.borderedBox .inner {
  position: relative;
  z-index: 2;
}

.borderedBox.textTop .label {
  top: -0.5em;
}

.borderedBox.textTop .edges {
  border-top: 0;
  border-bottom: 3px solid;
}

.borderedBox.textTop .edges:before, .borderedBox.textTop .edges:after {
  bottom: unset;
  top: 0;
}

.borderedBox.textBottom .edges:before, .borderedBox.textBottom .edges:after {
  width: 30%;
}

.borderedBox.textBottom .label {
  bottom: -0.5em;
}

.borderedBox .label {
  font-family: "corner-store-jf", serif;
  font-size: 35px;
  padding: 0 15px;
  white-space: nowrap;
  position: absolute;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.borderedBox h2 {
  position: relative;
  z-index: 3;
  font-size: 45px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: "league-gothic", sans-serif;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .borderedBox h2 {
    font-size: 30px;
  }
}

.borderedBox h2 span {
  letter-spacing: 0;
  font-family: "corner-store-jf", serif;
  text-transform: initial;
  display: block;
  font-size: 48px;
  margin: 5px 0;
}

.borderedBox p {
  font-size: 16px;
}

.borderedBox p:not(:last-child) {
  margin-bottom: 1em;
}

@-webkit-keyframes logo-hover {
  0% {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
  }
  50% {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
  }
  100% {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
  }
}

@keyframes logo-hover {
  0% {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
  }
  50% {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
  }
  100% {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
  }
}

.navigation {
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  height: 82px;
  border-bottom: 2px solid #979797;
}

.navigation__logo {
  width: 134px;
  height: 51px;
  background: transparent url("../img/pj-logo.svg") left center no-repeat;
  background-size: 268px auto;
  transition: 0s background-position 0.075s;
  -webkit-transition: 0s background-position 0.075s;
  -moz-transition: 0s background-position 0.075s;
  -ms-transition: 0s background-position 0.075s;
  -o-transition: 0s background-position 0.075s;
}

.navigation__logo-link {
  display: block;
  float: left;
  width: 134px;
  padding: 15px 0;
}

.navigation__logo-link:hover .navigation__logo {
  animation: .15s logo-hover linear;
  -webkit-animation: .15s logo-hover linear;
  background-position: right center;
}

.navigation__menu {
  float: right;
  padding: 15px 0;
}

.navigation__menu .menu-item {
  float: left;
  margin: 0 5px;
  position: relative;
}

.navigation__menu .menu-item:last-of-type {
  margin-right: 0;
}

.navigation__menu .menu-item.active:before, .navigation__menu .menu-item.active:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  -moz-border-radius: 2px;
  background: #d73532;
}

.navigation__menu .menu-item.active:after {
  top: auto;
  bottom: 0;
}

.navigation__menu .menu-item__link {
  font-family: "league-gothic", sans-serif;
  text-transform: uppercase;
  display: block;
  cursor: pointer;
  font-size: 19px;
  line-height: 50px;
  letter-spacing: 0.7px;
  padding: 0 18px;
}

.navigation__menu .menu-item .sub-menu {
  display: none;
}

@media (min-width: 1024px) {
  .navigation__menu .menu-item .sub-menu {
    display: block;
    overflow: hidden;
    position: absolute;
    box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.05);
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #FFF;
    width: 162px;
    padding: 0;
    max-height: 0;
    transition: max-height 0.3s ease-out;
  }
  .navigation__menu .menu-item .sub-menu .active a {
    color: #d73532;
  }
  .navigation__menu .menu-item .sub-menu li {
    width: 100%;
    text-align: left;
    margin: 0.5rem 0;
  }
  .navigation__menu .menu-item .sub-menu li:first-of-type {
    margin-top: calc(15px + 0.5rem);
  }
  .navigation__menu .menu-item .sub-menu li:last-of-type {
    margin-bottom: calc(15px + 0.5rem);
  }
  .navigation__menu .menu-item .sub-menu li:before, .navigation__menu .menu-item .sub-menu li:after {
    display: none;
  }
  .navigation__menu .menu-item .sub-menu li a {
    font-size: 21px;
    line-height: 1em;
    letter-spacing: 0;
    color: #000;
  }
  .navigation__menu .menu-item .sub-menu li a:hover {
    letter-spacing: 0;
  }
  .navigation__menu .menu-item .sub-menu li a:before, .navigation__menu .menu-item .sub-menu li a:after {
    display: none;
  }
  .navigation__menu .menu-item .sub-menu li a span {
    text-align: left;
    position: relative;
    text-transform: initial;
    -webkit-transform: none;
    transform: none;
    top: 0;
    left: 0;
  }
  .navigation__menu .menu-item.dropdown:hover .sub-menu {
    max-height: 250px;
  }
}

.navigation__menu .menu-item.dropdown > .menu-item__link {
  padding-right: 24px;
  position: relative;
}

.navigation__menu .menu-item.dropdown > .menu-item__link .menu-item__text-wrap {
  position: relative;
}

.navigation__menu .menu-item.dropdown > .menu-item__link .menu-item__text-wrap:before, .navigation__menu .menu-item.dropdown > .menu-item__link .menu-item__text-wrap:after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  height: 12px;
  width: 2px;
  margin-top: -7px;
  margin-right: -1px;
  background: #d73532;
  transition: 0.15s all 0s cubic-bezier(0.16, 1.225, 0.595, 1.235);
  -webkit-transition: 0.15s all 0s cubic-bezier(0.16, 1.225, 0.595, 1.235);
  -moz-transition: 0.15s all 0s cubic-bezier(0.16, 1.225, 0.595, 1.235);
  -ms-transition: 0.15s all 0s cubic-bezier(0.16, 1.225, 0.595, 1.235);
  -o-transition: 0.15s all 0s cubic-bezier(0.16, 1.225, 0.595, 1.235);
}

.navigation__menu .menu-item.dropdown > .menu-item__link .menu-item__text-wrap:after {
  background: transparent;
  height: 0;
  width: 0;
  margin-top: 0;
  margin-right: -4px;
  border: 4px solid transparent;
  border-top: 6px solid #d73532;
}

.navigation__menu .menu-item.dropdown > .menu-item__link:hover .menu-item__text-wrap:before {
  transform: translate(0, -2px);
  -webkit-transform: translate(0, -2px);
  -moz-transform: translate(0, -2px);
  -ms-transform: translate(0, -2px);
  -o-transform: translate(0, -2px);
}

.navigation__menu .menu-item.dropdown > .menu-item__link:hover .menu-item__text-wrap:after {
  transform: translate(0, 2px);
  -webkit-transform: translate(0, 2px);
  -moz-transform: translate(0, 2px);
  -ms-transform: translate(0, 2px);
  -o-transform: translate(0, 2px);
}

.sub-menu .menu-item {
  display: block;
  float: left;
  width: 33%;
  margin: 0;
  border: 1px solid white;
  background: transparent center 43% no-repeat;
  background-size: auto 60%;
}

.sub-menu .menu-item:nth-child(-n+3) {
  border-top: none;
}

.sub-menu .menu-item:nth-child(n-3) {
  border-bottom: none;
}

.sub-menu .menu-item:nth-child(3n) {
  border-right: none;
}

.sub-menu .menu-item:nth-child(3n+1) {
  border-left: none;
}

.sub-menu .menu-item__link {
  color: white;
  text-align: center;
  font-size: 65px;
  letter-spacing: 3px;
  position: relative;
  font-family: "league-gothic", sans-serif;
  text-transform: uppercase;
  display: block;
  transition: 0.2s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
  -webkit-transition: 0.2s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
  -moz-transition: 0.2s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
  -ms-transition: 0.2s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
  -o-transition: 0.2s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
}

.sub-menu .menu-item__link:before {
  content: '';
  display: table-row;
  float: left;
  padding-bottom: 66.66667%;
}

.sub-menu .menu-item__link:after {
  content: '';
  display: table;
  clear: both;
}

.sub-menu .menu-item__link:hover {
  color: #d73532 !important;
  letter-spacing: 5px;
}

.sub-menu .menu-item__text-wrap {
  position: absolute;
  max-height: 100%;
  max-width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: auto;
}

.sub-menu .menu-item:nth-child(1) {
  background-image: url("../img/locations/icon-thirdave.svg");
}

.sub-menu .menu-item:nth-child(2) {
  background-image: url("../img/locations/icon-lincolnsquare.svg");
}

.sub-menu .menu-item:nth-child(3) {
  background-image: url("../img/locations/icon-onthehudson.svg");
}

.sub-menu .menu-item:nth-child(4) {
  background-image: url("../img/locations/icon-washington.svg");
}

.sub-menu .menu-item:nth-child(5) {
  background-image: url("../img/locations/icon-philadelphia.svg");
}

.overlay-menu {
  position: fixed;
  z-index: 7000;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  opacity: 0;
  padding: 94px 0 24px;
  background: #3a3a3a;
  overflow: auto;
  transition: 0s left 0.3s, 0.3s opacity;
  -webkit-transition: 0s left 0.3s, 0.3s opacity;
  -moz-transition: 0s left 0.3s, 0.3s opacity;
  -ms-transition: 0s left 0.3s, 0.3s opacity;
  -o-transition: 0s left 0.3s, 0.3s opacity;
}

.overlay-menu.toggled {
  left: 0;
  opacity: 1;
  transition: 0s left, 0.3s opacity;
  -webkit-transition: 0s left, 0.3s opacity;
  -moz-transition: 0s left, 0.3s opacity;
  -ms-transition: 0s left, 0.3s opacity;
  -o-transition: 0s left, 0.3s opacity;
}

.overlay-menu__close {
  cursor: pointer;
  position: absolute;
  top: 36px;
  right: 40px;
  width: 36px;
  height: 36px;
  border: 1px solid white;
  transition: 0.15s all;
  -webkit-transition: 0.15s all;
  -moz-transition: 0.15s all;
  -ms-transition: 0.15s all;
  -o-transition: 0.15s all;
}

.overlay-menu__close:before, .overlay-menu__close:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 2px;
  height: 28px;
  margin-left: -1px;
  margin-top: -14px;
  background: white;
  transition: 0.15s all;
  -webkit-transition: 0.15s all;
  -moz-transition: 0.15s all;
  -ms-transition: 0.15s all;
  -o-transition: 0.15s all;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.overlay-menu__close:after {
  transition: 0.3s all, 0.15s background;
  -webkit-transition: 0.3s all, 0.15s background;
  -moz-transition: 0.3s all, 0.15s background;
  -ms-transition: 0.3s all, 0.15s background;
  -o-transition: 0.3s all, 0.15s background;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

.overlay-menu__close:hover {
  border-color: #d73532 !important;
}

.overlay-menu__close:hover:before, .overlay-menu__close:hover:after {
  background: #d73532 !important;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
}

.overlay-menu__close:hover:after {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.overlay-menu.light {
  background: white;
}

.overlay-menu.light .overlay-menu__close {
  border: 1px solid #252525;
}

.overlay-menu.light .overlay-menu__close:before, .overlay-menu.light .overlay-menu__close:after {
  background: #252525;
}

.overlay-menu.light .sub-menu .menu-item {
  border-color: #252525;
}

.overlay-menu.light .sub-menu .menu-item__link {
  color: #252525;
}

.overlay-menu.light .sub-menu .menu-item:nth-child(1) {
  background-image: url("../img/locations/icon-thirdave-black.svg");
}

.overlay-menu.light .sub-menu .menu-item:nth-child(2) {
  background-image: url("../img/locations/icon-lincolnsquare-black.svg");
}

.overlay-menu.light .sub-menu .menu-item:nth-child(3) {
  background-image: url("../img/locations/icon-onthehudson-black.svg");
}

.overlay-menu.light .sub-menu .menu-item:nth-child(4) {
  background-image: url("../img/locations/icon-washington-black.svg");
}

.overlay-menu.light .sub-menu .menu-item:nth-child(5) {
  background-image: url("../img/locations/icon-philadelphia-black.svg");
}

@media (min-width: 600px) {
  .logged-in.admin-bar .navigation {
    top: 30px;
  }
}

@media (max-width: 600px) {
  .logged-in.admin-bar {
    margin-top: -46px;
  }
}

.wrapper--navigation {
  padding: 0 36px;
}

.hamburger-menu-toggle {
  height: 48px;
  width: 48px;
  position: fixed;
  right: 60px;
  top: 16px;
  z-index: 9000;
  transition: 0.5s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
  -webkit-transition: 0.5s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
  -moz-transition: 0.5s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
  -ms-transition: 0.5s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
  -o-transition: 0.5s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
}

.hamburger-menu-toggle:before, .hamburger-menu-toggle:after {
  content: '';
  display: block;
  width: 22px;
  height: 20px;
  border-top: 2px solid #252525;
  border-bottom: 2px solid #252525;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -11px;
  transition: 0.5s all cubic-bezier(0.16, 1.225, 0.595, 1.235), 0.45s border-color;
  -webkit-transition: 0.5s all cubic-bezier(0.16, 1.225, 0.595, 1.235), 0.45s border-color;
  -moz-transition: 0.5s all cubic-bezier(0.16, 1.225, 0.595, 1.235), 0.45s border-color;
  -ms-transition: 0.5s all cubic-bezier(0.16, 1.225, 0.595, 1.235), 0.45s border-color;
  -o-transition: 0.5s all cubic-bezier(0.16, 1.225, 0.595, 1.235), 0.45s border-color;
}

.hamburger-menu-toggle:after {
  height: 0;
  border-bottom: 0;
  margin-top: -1px;
}

.hamburger-menu-toggle.toggled {
  right: 50%;
  margin-right: -24px;
}

.hamburger-menu-toggle.toggled:before, .hamburger-menu-toggle.toggled:after {
  border-color: white;
  border-bottom: none;
  height: 0;
  margin-top: -1px;
}

.hamburger-menu-toggle.toggled:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  height: 0;
}

.hamburger-menu-toggle.toggled:after {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
}

@media screen and (max-width: 1350px) {
  .navigation__menu .menu-item__link {
    font-size: 17px;
    padding: 0 15px;
  }
}

@media screen and (max-width: 1065px) {
  .navigation__menu .menu-item__link {
    padding: 0 15px;
  }
}

@media screen and (min-width: 1350px) {
  .wrapper--navigation {
    padding: 0 8.2%;
    max-width: none;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1350px) {
  .sub-menu .menu-item__link {
    font-size: 50px;
  }
  .sub-menu .menu-item:nth-child(6) .menu-item__link {
    background-size: 240px 60%;
  }
}

@media screen and (max-width: 1024px) {
  .wrapper--navigation {
    padding: 0 60px;
  }
  .navigation__menu {
    position: fixed;
    z-index: 8000;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    padding-top: 80px;
    background: #3a3a3a;
    overflow: auto;
    transition: 0.45s all;
    -webkit-transition: 0.45s all;
    -moz-transition: 0.45s all;
    -ms-transition: 0.45s all;
    -o-transition: 0.45s all;
  }
  .navigation__menu.toggled {
    right: 0;
  }
  .navigation__menu .menu-item.active:before, .navigation__menu .menu-item.active:after {
    display: none;
  }
  .navigation__menu > .menu-item {
    margin: 0;
    float: none;
    display: block;
    padding: 0 42px;
  }
  .navigation__menu > .menu-item .menu-item__link {
    color: white;
    text-align: center;
    border-top: 1px solid white;
    line-height: 84px;
    font-size: 30px;
  }
  .navigation__menu > .menu-item:last-of-type .menu-item__link {
    border-bottom: 1px solid white;
  }
  .navigation__menu > .menu-item.dropdown > .menu-item__link .menu-item__text-wrap:before {
    right: -18px;
    height: 20px;
    margin-top: -12px;
  }
  .navigation__menu > .menu-item.dropdown > .menu-item__link .menu-item__text-wrap:after {
    right: -18px;
    border: 5px solid transparent;
    border-top: 8px solid #d73532;
    margin-right: -5px;
    margin-top: 2px;
  }
  .navigation__menu > .menu-item .sub-menu {
    display: block;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    border-top: 0px solid white;
    transition: 0.2s all;
    -webkit-transition: 0.2s all;
    -moz-transition: 0.2s all;
    -ms-transition: 0.2s all;
    -o-transition: 0.2s all;
  }
  .navigation__menu > .menu-item .sub-menu .menu-item,
  .navigation__menu > .menu-item .sub-menu .menu-item__link {
    border: none;
    max-height: 126px;
    font-size: 28px;
  }
  .navigation__menu > .menu-item .sub-menu .menu-item {
    background-size: auto 75%;
    background-position: center 35%;
  }
  .navigation__menu > .menu-item.toggled .menu-item__link {
    color: #d73532;
  }
  .navigation__menu > .menu-item.toggled .sub-menu {
    padding: 12px 0;
    max-height: 279px;
    border-top: 1px solid white;
  }
  .navigation__menu > .menu-item.toggled .sub-menu .menu-item__link {
    color: white;
  }
  .overlay-menu {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .navigation__menu > .menu-item .sub-menu .menu-item,
  .navigation__menu > .menu-item .sub-menu .menu-item__link {
    font-size: 26px;
  }
}

@media screen and (max-width: 1024px) {
  .wrapper--navigation {
    padding: 0 20px;
  }
  .hamburger-menu-toggle {
    right: 16px;
    transition: 0.4s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
    -webkit-transition: 0.4s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
    -moz-transition: 0.4s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
    -ms-transition: 0.4s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
    -o-transition: 0.4s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
  }
  .hamburger-menu-toggle:before, .hamburger-menu-toggle:after {
    transition: 0.4s all cubic-bezier(0.16, 1.225, 0.595, 1.235), 0.35s border-color;
    -webkit-transition: 0.4s all cubic-bezier(0.16, 1.225, 0.595, 1.235), 0.35s border-color;
    -moz-transition: 0.4s all cubic-bezier(0.16, 1.225, 0.595, 1.235), 0.35s border-color;
    -ms-transition: 0.4s all cubic-bezier(0.16, 1.225, 0.595, 1.235), 0.35s border-color;
    -o-transition: 0.4s all cubic-bezier(0.16, 1.225, 0.595, 1.235), 0.35s border-color;
  }
  .navigation__menu {
    transition: 0.35s all;
    -webkit-transition: 0.35s all;
    -moz-transition: 0.35s all;
    -ms-transition: 0.35s all;
    -o-transition: 0.35s all;
  }
  .navigation__menu > .menu-item {
    padding: 0 30px;
  }
  .navigation__menu > .menu-item .menu-item__link {
    font-size: 24px;
    line-height: 50px;
  }
  .navigation__menu > .menu-item.dropdown > .menu-item__link .menu-item__text-wrap:before {
    right: -12px;
    margin-top: -10px;
    height: 14px;
  }
  .navigation__menu > .menu-item.dropdown > .menu-item__link .menu-item__text-wrap:after {
    right: -12px;
    margin-top: 0;
  }
  .navigation__menu > .menu-item .sub-menu .menu-item {
    width: 100%;
    background: none !important;
  }
  .navigation__menu > .menu-item .sub-menu .menu-item__link {
    line-height: 48px;
  }
  .navigation__menu > .menu-item .sub-menu .menu-item__link:before, .navigation__menu > .menu-item .sub-menu .menu-item__link:after {
    display: none;
  }
  .navigation__menu > .menu-item .sub-menu .menu-item__text-wrap {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
  }
  .navigation__menu > .menu-item.dropdown.toggled .sub-menu {
    padding: 12px 0;
    max-height: 314px;
  }
}

.footer-blocks {
  background-color: #252525;
  overflow: hidden;
}

.footer-block {
  position: relative;
  max-height: 600px;
}

.footer-block:before {
  content: '';
  display: table-row;
  float: left;
  padding-bottom: 100%;
}

.footer-block:after {
  content: '';
  display: table;
  clear: both;
}

.footer-block.hovering .footer-block__background {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
}

.footer-block__background {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.2s all;
  -webkit-transition: 0.2s all;
  -moz-transition: 0.2s all;
  -ms-transition: 0.2s all;
  -o-transition: 0.2s all;
}

.footer-block__middle {
  display: block;
}

.footer-block__middle:hover .footer-block__title {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.footer-block__middle:hover .footer-block__link {
  color: #d73532;
}

.footer-block__link {
  color: white;
  margin-top: 30px;
}

.footer-block__title {
  transition: 0.2s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
  -webkit-transition: 0.2s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
  -moz-transition: 0.2s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
  -ms-transition: 0.2s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
  -o-transition: 0.2s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
  margin: 0 auto;
}

.footer {
  background: #252525;
  color: white;
  text-align: center;
  padding: 21px 0;
  line-height: 36px;
  letter-spacing: 2px;
  position: relative;
  font-family: "league-gothic", sans-serif;
  text-transform: uppercase;
  display: block;
}

.footer .row .col-4 {
  width: 100%;
  margin: 0;
}

.footer__social {
  display: block;
  width: 100%;
  margin-top: 1rem;
  text-align: middle;
}

.footer__social-link {
  display: inline-block;
  margin: 0 12px;
  width: 36px;
  height: 36px;
  background-size: 72px auto;
  background-repeat: no-repeat;
  background-position: left center;
}

.footer__social-link:hover {
  background-position: right center;
}

.footer__social-link.facebook {
  background-image: url("../img/icon-facebook.svg");
}

.footer__social-link.twitter {
  background-image: url("../img/icon-twitter.svg");
}

.footer__social-link.instagram {
  background-image: url("../img/icon-instagram.svg");
}

@media screen and (max-width: 1024px) {
  .footer-block {
    height: 580px;
  }
  .footer-block a {
    width: 100%;
  }
  .footer-block__title {
    padding: 0 36px;
    display: inline-block;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    font-size: 15px;
  }
  .footer .col-4 {
    width: 100%;
    margin: 0 auto;
  }
  .footer__social {
    float: none;
    margin: 10px auto 0;
    height: 50px;
    display: inline-block;
  }
  .footer-block {
    height: 450px;
  }
  .footer-block__link {
    font-size: 17px;
    line-height: 30px;
  }
}

@media screen and (max-width: 600px) {
  .footer-block {
    width: 100%;
  }
  .footer-block__link {
    font-size: 19px;
    line-height: 36px;
  }
  .footer-block:before {
    padding-bottom: 0;
  }
}

.contact-hero {
  background: url("../img/contactus-bg-img.svg") center top no-repeat;
  background-size: contain;
  margin: 82px auto 22px;
  width: 312px;
  height: 222px;
  position: relative;
}

.contact-hero__logo {
  background: url("../img/contact-us-type.svg") center top no-repeat;
  background-size: contain;
  height: 78px;
  width: 100%;
  position: absolute;
  top: 109px;
  left: 0;
  right: 0;
}

.wrapper--contact {
  max-width: 1236px;
}

.contact-location {
  text-align: center;
  height: 375px;
  padding: 55px 0 0 0;
  position: relative;
}

.contact-location__image {
  margin: 0 auto 2px auto;
  height: 60px;
}

.contact-location__email-header {
  margin-top: 12px;
  margin-bottom: 15px;
}

.contact-location__email {
  margin-top: 25px;
}

.contact-location h4 {
  font-size: 37px;
  letter-spacing: 2.8px;
  line-height: 1.2;
}

.contact-location__link {
  transition: 0.2s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
  -webkit-transition: 0.2s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
  -moz-transition: 0.2s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
  -ms-transition: 0.2s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
  -o-transition: 0.2s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
}

.contact-location__link:hover {
  letter-spacing: 6px;
}

.contact-location__border-right {
  background: #252525;
  width: 2px;
  position: absolute;
  height: 330px;
  right: -1px;
  top: 20px;
}

.contact-location__border-bottom {
  background: #252525;
  height: 2px;
  position: absolute;
  width: 89%;
  left: 5%;
  bottom: 1px;
  right: 5%;
}

.contact-location:nth-child(3n) .contact-location__border-right {
  display: none;
}

.contact-location:nth-last-child(-n+3) .contact-location__border-bottom {
  display: none;
}

.location-address {
  margin: 7px 0 0 0;
}

.location-address__address, .location-address__phone {
  display: block;
  font-size: 15px;
  line-height: 1.8;
}

.location-address__phone {
  margin-bottom: 10px;
}

.location-address__phone + .location-address__direction {
  display: inline-block;
  padding: 0 12px;
  font-size: 22px;
  line-height: 38px;
  position: relative;
  font-weight: 500;
  letter-spacing: 2px;
  transition: 0.15s color;
  -webkit-transition: 0.15s color;
  -moz-transition: 0.15s color;
  -ms-transition: 0.15s color;
  -o-transition: 0.15s color;
}

.location-address__phone + .location-address__direction:before, .location-address__phone + .location-address__direction:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  -moz-border-radius: 2px;
  background: #d73532;
}

.location-address__phone + .location-address__direction:after {
  top: auto;
  bottom: 0;
}

.location-address__phone + .location-address__direction img {
  display: none;
}

.location-address__direction, .location-address__website {
  margin: 15px 0 0 0;
}

.location-address__direction {
  display: block;
  font-size: 14px;
  letter-spacing: 1px;
}

.location-address__direction:hover .location-address__direction-img:first-of-type {
  opacity: 1;
}

.location-address__direction:hover .location-address__direction-img:last-of-type {
  opacity: 0;
}

.location-address__direction-img {
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
  position: relative;
  right: -5px;
}

.location-address__direction-img:first-of-type {
  opacity: 0;
  margin-right: -10px;
}

.location-info__rsrv {
  padding: 0 18px;
  margin-bottom: 6px;
}

.footer-image {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  margin: 90px auto 0;
  position: relative;
}

.footer-image:before {
  content: '';
  display: table-row;
  float: left;
  padding-bottom: 38.46154%;
}

.footer-image:after {
  content: '';
  display: table;
  clear: both;
}

@media screen and (max-width: 1024px) {
  .washington .location-info__right-col__rsrv {
    padding: 0 18px;
    margin-bottom: 6px;
    font-size: 22px;
    line-height: 38px;
  }
  .tablet-2-col:nth-child(3n) .contact-location__border-right {
    display: block;
  }
  .tablet-2-col:nth-last-child(-n+3) .contact-location__border-bottom {
    display: block;
  }
  .tablet-2-col:nth-child(2n) .contact-location__border-right {
    display: none;
  }
  .tablet-2-col:nth-last-child(-n+2) .contact-location__border-bottom {
    display: none;
  }
  .footer-image {
    position: relative;
  }
  .footer-image:before {
    content: '';
    display: table-row;
    float: left;
    padding-bottom: 62.5%;
  }
  .footer-image:after {
    content: '';
    display: table;
    clear: both;
  }
}

@media screen and (max-width: 600px) {
  .washington .location-info__right-col__rsrv {
    width: initial;
  }
  .contact-location,
  .tablet-2-col {
    /* only 1 entry should be shown at this small width */
    width: 100%;
  }
  .contact-location:nth-last-child(-n+3) .contact-location__border-bottom,
  .tablet-2-col:nth-last-child(-n+3) .contact-location__border-bottom {
    display: block;
  }
  .contact-location:nth-last-child(-n+2) .contact-location__border-bottom,
  .tablet-2-col:nth-last-child(-n+2) .contact-location__border-bottom {
    display: block;
  }
  .contact-location:nth-child(n) .contact-location__border-right,
  .tablet-2-col:nth-child(n) .contact-location__border-right {
    display: none;
  }
  .contact-location:nth-last-child(-n+1) .contact-location__border-bottom,
  .tablet-2-col:nth-last-child(-n+1) .contact-location__border-bottom {
    display: none;
  }
}

.hero__image--homepage {
  width: 311px;
  height: 210px;
  padding-bottom: inherit;
  top: 248px;
}

.home-intro {
  position: relative;
  background: white url("../img/homepage/hp-pattern.jpg") center;
}

.hero-vertical {
  z-index: 4000;
  position: relative;
  top: 117px;
}

.home-intro__image {
  background: #252525 center no-repeat;
  background-size: cover;
  height: 40vh;
  min-height: 400px;
}

@media (max-width: 600px) {
  .home-intro__image {
    min-height: 300px;
  }
}

.home-intro__header-image {
  max-width: 235px;
  position: absolute;
  z-index: 4000;
  left: 50%;
  top: 50%;
  margin-top: 65px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.home-intro__hr {
  max-width: 283px;
  margin: 30px auto;
}

.home-intro ~ .location-info {
  margin-top: 0;
  padding-bottom: 4rem;
}

.home-intro ~ .location-info--for-menu .wrapper {
  padding-bottom: 0;
}

.home-section-2 {
  background: #252525 center no-repeat;
  background-size: cover;
  padding: 84px 0;
  height: 594px;
}

.home-section-2__image {
  max-width: 527px;
  width: 90%;
  margin: 0 auto;
}

.home-section-3 {
  background: #FFF;
  color: #000;
  padding: 4rem 0 0;
}

.home-section-3__icon {
  margin: 0 auto;
  width: 114px;
}

.home-section-3__hr {
  margin: 30px auto;
  width: 378px;
}

.home-section-3__text {
  color: #000;
}

.home-locations {
  padding: 100px 0 50px;
}

.home-locations h4 {
  margin-top: 15px;
  font-size: 38px;
  padding: 0 10px;
}

.wrapper--home-location, .sidecar-locations {
  margin-top: 10px;
}

.wrapper--home-location .row, .sidecar-locations .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-location--home {
  height: 225px;
  padding: 77px 0 0 0;
  background-size: auto 120px;
  background-repeat: no-repeat;
  background-position: center 38px;
}

.contact-location--home h4 {
  font-size: 46px;
  margin-top: inherit;
  padding: 0;
}

.contact-location--home.inactive {
  opacity: 0.5;
}

.contact-location--home.col-3 h4 {
  font-size: 40px;
}

.contact-location--home.col-3 h4 a:hover {
  letter-spacing: 5px;
}

.contact-location--home.col-3:last-of-type .contact-location__border-right {
  display: none;
}

.contact-location--home__border-right {
  height: 172px;
  top: 24px;
}

.contact-location--home.location-item-1 {
  background-image: url("../img/locations/icon-thirdave-black.svg");
}

.contact-location--home.location-item-2 {
  background-image: url("../img/locations/icon-lincolnsquare-black.svg");
}

.contact-location--home.location-item-3 {
  background-image: url("../img/locations/icon-onthehudson-black.svg");
}

.contact-location--home.location-item-4 {
  background-image: url("../img/locations/icon-washington-black.svg");
}

.contact-location--home.location-item-5 {
  background-image: url("../img/locations/icon-philadelphia-black.svg");
}

.contact-location--home.location-item-6 {
  padding-top: 60px;
}

.contact-location--home.location-item-6 .contact-location__link {
  background: url("../img/locations/icon-pjc-logo.svg") no-repeat center center;
  width: 100%;
  height: 80px;
  display: block;
}

.contact-location--home.location-item-6 .contact-location__link:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.pop-up-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: 0.6s opacity;
  -webkit-transition: 0.6s opacity;
  -moz-transition: 0.6s opacity;
  -ms-transition: 0.6s opacity;
  -o-transition: 0.6s opacity;
  z-index: 4001;
  opacity: 0;
}

.pop-up-container.visible {
  opacity: 1;
}

.pop-up-container.image-active .pop-up {
  padding: 0;
  padding-bottom: 50px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.pop-up-container.image-active .pop-up__close {
  display: none;
}

.pop-up {
  text-align: center;
  max-width: 470px;
  width: 100%;
  position: fixed;
  background-color: #fff;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  z-index: 4002;
  top: 240px;
  border: 17px solid #3a3a3a;
  padding-top: 63px;
  padding: 63px 15px 50px;
}

.pop-up__contents-container .pop-up__close {
  display: none;
}

.pop-up__contents-container.image {
  background-size: cover;
  height: 290px;
  position: relative;
}

.pop-up__contents-container.image h1, .pop-up__contents-container.image h3 {
  color: #fff;
}

.pop-up__contents-container.image .pop-up__close {
  display: block;
  border-color: #fff;
  z-index: 2;
}

.pop-up__contents-container.image .pop-up__close:before, .pop-up__contents-container.image .pop-up__close:after {
  background-color: #fff;
}

.pop-up__contents-container.image:after {
  content: '';
  position: absolute;
  z-index: 1;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.pop-up__contents-container.image .pop-up__header-group {
  position: absolute;
  z-index: 2;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.pop-up__close {
  border-color: #000;
  top: 20px;
  right: 20px;
}

.pop-up__close:before, .pop-up__close:after {
  background-color: #000;
  width: 3px;
}

.pop-up__header {
  font-size: 44px;
  line-height: 1;
  margin-bottom: 9px;
}

.pop-up__subheader {
  font-family: "Bookman BT Roman", serif;
  font-size: 18px;
  text-transform: initial;
  font-weight: 500;
  letter-spacing: 2px;
}

.pop-up__description {
  font-family: "Bookman BT Roman", serif;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 1.7px;
  padding: 0 50px;
  margin-top: 25px;
}

.pop-up__details {
  margin: 35px 0;
}

.pop-up__details-header {
  font-family: "league-gothic", sans-serif;
  text-transform: uppercase;
  font-size: 25px;
  letter-spacing: 1.7px;
  margin-bottom: 8px;
  display: inline-block;
  border-top: 2px solid #d73532;
  padding-top: 34px;
}

.pop-up__details-subheader {
  font-family: "Bookman BT Roman", serif;
  font-size: 12px;
  line-height: 1.88;
  letter-spacing: 1.4px;
  padding: 0 20px;
}

.pop-up__button {
  margin-top: 23px;
  font-family: "league-gothic", sans-serif;
  text-transform: uppercase;
  font-size: 30px;
  margin-top: 2px;
  line-height: 56px;
}

@media screen and (max-height: 920px) {
  .pop-up-container {
    z-index: 5001;
  }
  .pop-up {
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  }
}

.home .hero {
  height: 50vh;
  min-height: 300px;
  margin-bottom: -135px;
}

.home .hero__image--homepage {
  width: 40vh;
  min-width: 240px;
  height: auto;
}

.home .hero-vertical {
  top: 135px;
}

@media screen and (max-width: 1024px) {
  .home-intro__image {
    height: 375px;
    min-height: 375px;
  }
  .home-intro__header-image {
    margin-top: 65px;
    width: 200px;
    max-width: 200px;
  }
  .home-intro__text {
    font-size: 22px;
    line-height: 1.62;
    letter-spacing: 2.5px;
  }
  .home-intro__hr {
    width: 298px;
  }
  .home-section-2 {
    padding: 130px 0;
    height: 275px;
    max-height: 275px;
  }
  .home-section-2__image {
    width: 450px;
  }
  .home-section-2 + hr.vertical:before, .home-section-2 + hr.vertical:after {
    margin-bottom: -120px;
  }
  .home-section-3 br {
    display: none;
  }
  .home-section-3__icon {
    width: 104px;
  }
  .home-section-3__hr {
    width: 500px;
  }
  .home-locations {
    padding: 60px 0 25px;
  }
  .home-locations h4 {
    font-size: 30px;
  }
  .contact-location--home {
    width: 33.333%;
    float: left;
  }
  .contact-location--home h4 {
    font-size: 46px;
    margin-top: inherit;
  }
}

@media screen and (max-width: 768px) {
  .home-intro__image {
    height: 275px;
    min-height: 275px;
  }
  .home-intro .col-6 {
    width: 100%;
  }
  .home-intro__content-col {
    height: 750px;
    margin-top: -60px;
  }
  .home-intro__header-image {
    margin-top: 0px;
    width: 200px;
    max-width: 200px;
  }
  .home-intro__text {
    font-size: 25px;
    line-height: 1.4;
    letter-spacing: 2.8px;
    max-width: 600px;
  }
  .home-intro__hr {
    width: 368px;
  }
  .home-section-2__image {
    width: 635px;
    max-height: inherit;
  }
  .home-section-3__icon {
    width: 150px;
  }
  .home-section-3__hr {
    width: 430px;
  }
  .home-section-3__text {
    padding: 0 50px;
  }
  .wrapper--home-location {
    margin-top: 40px;
  }
  .home-locations {
    padding: 60px 0 35px;
  }
  .home-locations h4 {
    font-size: 50px;
  }
  .contact-location--home {
    width: 50%;
    height: 233px;
    padding: 80px 0 0 0;
    background-position: center 36px;
    background-size: 100px 133px;
  }
  .contact-location--home h4 {
    font-size: 52px;
  }
  .contact-location--home .contact-location__border-bottom {
    width: 84%;
    left: 8%;
  }
  .contact-location--home .contact-location__border-right {
    height: 186px;
    top: 21px;
  }
}

@media screen and (min-width: 601px) and (max-width: 768px) {
  .contact-location:nth-child(3n) .contact-location__border-right {
    display: block;
  }
  .contact-location:nth-last-child(-n+3) .contact-location__border-bottom {
    display: block;
  }
  .contact-location:nth-child(2n) .contact-location__border-right {
    display: none;
  }
  .contact-location:nth-last-child(-n+2) .contact-location__border-bottom {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .hero__image--homepage {
    width: 185px;
    margin: 0 auto;
    top: 45%;
  }
  .home-intro__image {
    height: 30vh;
  }
  .home-intro__content-col {
    height: 0;
    position: relative;
    padding-top: 144% !important;
  }
  .home-intro__text, .home-intro__hr {
    position: absolute;
    top: 5%;
    left: 0;
    right: 0;
    width: 90%;
  }
  .home-intro__header-image {
    max-width: 80%;
  }
  .home-intro__text {
    top: 71%;
    font-size: 25px;
    font-size: 4.16667vw;
  }
  .home-intro__hr {
    top: 63%;
  }
  .home-section-2 {
    height: 0;
    padding: 140% 0 0;
    position: relative;
  }
  .home-section-2 .wrapper {
    position: absolute;
    top: 26%;
    left: 0;
    right: 0;
  }
  .home-section-2__image {
    width: 95%;
    max-height: inherit;
  }
  .home-section-2 + hr.vertical:before, .home-section-2 + hr.vertical:after {
    margin-bottom: -35px;
  }
  .home-section-3 {
    position: relative;
  }
  .home-section-3__icon {
    width: 23%;
  }
  .home-section-3__hr {
    width: 80%;
  }
  .home-section-3__text {
    margin: 0 auto;
    width: 90%;
    padding: 0;
  }
  .home-locations h2 {
    font-size: 72px;
    font-size: 12vw;
  }
  .home-locations h4 {
    font-size: 50px;
    font-size: 8.33333vw;
  }
  .contact-location--home {
    position: relative;
    height: auto;
    padding: 0;
    width: 100%;
    background-position: center;
  }
  .contact-location--home:before {
    content: '';
    display: table-row;
    float: left;
    padding-bottom: 50%;
  }
  .contact-location--home:after {
    content: '';
    display: table;
    clear: both;
  }
  .contact-location--home h4 {
    position: absolute;
    max-height: 100%;
    max-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 100%;
    font-size: 42px;
  }
  .contact-location__link {
    font-size: 42px;
    position: relative;
    top: 6px;
  }
  .pop-up-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.6s opacity;
    -webkit-transition: 0.6s opacity;
    -moz-transition: 0.6s opacity;
    -ms-transition: 0.6s opacity;
    -o-transition: 0.6s opacity;
    z-index: 4001;
    opacity: 0;
  }
  .pop-up-container.visible {
    opacity: 1;
  }
  .pop-up-container.image-active .pop-up {
    padding-bottom: 0;
  }
  .pop-up-container.image-active .pop-up__button {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    width: 252px;
    bottom: 115px;
    color: #fff;
    z-index: 2;
  }
  .pop-up-container.image-active .pop-up__description,
  .pop-up-container.image-active .pop-up__details {
    display: none;
  }
  .pop-up {
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  }
  .pop-up__contents-container.image {
    height: 365px;
  }
  .pop-up__contents-container.image .pop-up__header-group {
    margin-top: -50px;
  }
  .pop-up__close {
    border-color: #000;
    top: 20px;
    right: 20px;
  }
  .pop-up__close:before, .pop-up__close:after {
    background-color: #000;
    width: 3px;
  }
  .pop-up__header {
    font-size: 40px;
    line-height: 1;
    margin-top: 20px;
    margin-bottom: 9px;
  }
  .pop-up__subheader {
    font-family: "Bookman BT Roman", serif;
    font-size: 18px;
    text-transform: initial;
    font-weight: 500;
    letter-spacing: 2px;
  }
  .pop-up__description {
    display: none;
  }
  .pop-up__details {
    display: none;
  }
  .pop-up__button {
    margin-top: 27px;
    font-size: 28px;
  }
}

.menu-item__description {
  max-width: 400px;
}

.location-info--for-menu .wrapper {
  padding-top: 0;
  margin-bottom: 0px;
}

@media (max-width: 600px) {
  .location-info--for-menu .wrapper {
    padding-top: 2rem;
  }
}

.location-info__title-section {
  position: relative;
  background: white;
  z-index: 3000;
  width: 100%;
  text-align: center;
  padding: 36px 0;
}

.location-info__title-section.noPadding {
  padding: 0;
}

.location-info__image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 187px;
  position: relative;
  top: -5px;
}

.location-info__name {
  position: absolute;
  max-height: 100%;
  max-width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  font-size: 60px;
  letter-spacing: 6px;
  width: 100%;
  display: inline-block;
}

.single-madwell-menu .hero:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.foodCallout {
  margin: 4rem auto 0;
  position: relative;
}

.foodCallout .wrapper {
  font-size: 0;
}

.foodCallout .foodImage, .foodCallout .foodText {
  vertical-align: middle;
  display: inline-block;
  float: none;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .foodCallout .foodImage, .foodCallout .foodText {
    display: block;
    width: 90%;
    text-align: center;
  }
}

.foodCallout .foodImage {
  padding-bottom: 40%;
  background-size: cover;
}

@media (max-width: 768px) {
  .foodCallout .foodImage {
    margin: 0 auto 1rem;
    padding-bottom: 50%;
  }
}

.foodCallout .foodText {
  padding: 1rem 2rem;
}

@media (max-width: 768px) {
  .foodCallout .foodText {
    margin: 0 auto;
    padding: 1rem 0;
  }
}

.foodCallout a.border-link {
  margin-top: 2rem;
}

.foodCallout h3 {
  font-size: 2.25rem;
  letter-spacing: 0;
  color: #d0011b;
  margin-bottom: 1rem;
}

.foodCallout p {
  font-size: 1rem;
}

.menu__header {
  margin-bottom: 36px;
  padding-bottom: 58px;
  font-size: 104px;
  text-align: center;
  background: transparent url("../img/menu-bg-img.svg") center bottom no-repeat;
  background-size: 204px 33px;
}

.menu-section__description, .menu-section__items--no-subsection {
  display: none;
}

.menu-section .menu-section-border {
  border-top: 2px solid #252525;
  border-bottom: 2px solid #252525;
  margin-top: -2px;
}

.menu-section__title {
  letter-spacing: 0;
  padding: 0;
  font-size: 26px;
  line-height: 66px;
  cursor: pointer;
  transition: 0.15s color;
  -webkit-transition: 0.15s color;
  -moz-transition: 0.15s color;
  -ms-transition: 0.15s color;
  -o-transition: 0.15s color;
  position: relative;
}

.menu-section__title.toggled:before {
  opacity: 0;
}

.menu-section__title.toggled:after {
  opacity: 1;
}

.menu-section__title:hover {
  color: #d73532;
}

.menu-section__title:before, .menu-section__title:after {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  top: 17px;
  right: 0;
  background-size: 72px;
  background-position-x: -36px;
  background-repeat: no-repeat;
  transition: 0.15s all;
  -webkit-transition: 0.15s all;
  -moz-transition: 0.15s all;
  -ms-transition: 0.15s all;
  -o-transition: 0.15s all;
}

.menu-section__title:before {
  opacity: 1;
  background-image: url(../img/accordian/1x/accordian-expanded.png);
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
  .menu-section__title:before {
    background-image: url(../img/accordian/2x/accordian-expanded@2x.png);
  }
}

.menu-section__title:after {
  background-position-x: 0;
  opacity: 0;
  background-image: url(../img/accordian/1x/accordian-minimize.png);
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
  .menu-section__title:after {
    background-image: url(../img/accordian/2x/accordian-minimize@2x.png);
  }
}

.menu-subsections {
  display: none;
  overflow: hidden;
  position: relative;
}

.menu-subsections__nav {
  width: 350px;
  padding-top: 148px;
  padding-bottom: 148px;
  padding-bottom: 148px;
  text-align: center;
  position: absolute;
  z-index: 3000;
  left: 0;
  top: 0;
}

.menu-subsections__nav-item {
  font-family: "league-gothic", sans-serif;
  text-transform: uppercase;
  display: block;
  transition: 0.15s color;
  -webkit-transition: 0.15s color;
  -moz-transition: 0.15s color;
  -ms-transition: 0.15s color;
  -o-transition: 0.15s color;
  font-size: 20px;
  line-height: 2.14;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
}

.menu-subsections__nav-item.toggled, .menu-subsections__nav-item:hover {
  color: #d73532;
}

.menu-subsections__nav-item.toggled:before, .menu-subsections__nav-item.toggled:after {
  content: '';
  display: block;
  width: 60px;
  height: 24px;
  background: transparent url("../img/accordian-nav-menu-left.svg") center left no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -12px;
}

.menu-subsections__nav-item.toggled:after {
  background: transparent url("../img/accordian-nav-menu-right.svg") center right no-repeat;
  background-size: contain;
  left: auto;
  right: -1px;
}

.menu-subsection {
  overflow: hidden;
  position: relative;
  padding: 95px 0 95px 350px;
  display: none;
  border-bottom: 2px solid #252525;
  min-height: 674px;
}

.menu-subsection.toggled {
  display: block;
}

.menu-subsection:before {
  content: '';
  display: block;
  background: #252525;
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 350px;
}

.menu-subsection__toggle {
  display: none;
}

.menu-subsection__title, .menu-subsection__description, .menu-subsection__items,
.menu-subsection .menu-item {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.menu-subsection__title ul li, .menu-subsection__description ul li, .menu-subsection__items ul li,
.menu-subsection .menu-item ul li {
  font-family: "league-gothic",sans-serif;
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 25px;
}

.menu-subsection__title ul ul, .menu-subsection__description ul ul, .menu-subsection__items ul ul,
.menu-subsection .menu-item ul ul {
  margin-bottom: 0;
  margin-top: 5px;
}

.menu-subsection__title ul ul li, .menu-subsection__description ul ul li, .menu-subsection__items ul ul li,
.menu-subsection .menu-item ul ul li {
  font-family: "Bookman BT Roman", serif;
  font-size: 14px;
  margin-top: 5px;
  max-width: 400px;
  text-transform: initial;
  line-height: 1.5em;
  letter-spacing: 0;
  margin: 0;
}

.menu-subsection__title ul ul li:empty, .menu-subsection__description ul ul li:empty, .menu-subsection__items ul ul li:empty,
.menu-subsection .menu-item ul ul li:empty {
  height: 1em;
}

.menu-subsection__title {
  margin-bottom: 19px;
  letter-spacing: 0;
}

.menu-subsection__description {
  margin: -18px auto 28px;
  font-size: 12px;
  font-style: italic;
}

.menu-item {
  position: relative;
  margin-bottom: 25px;
}

.menu-item__name {
  font-size: 25px;
  letter-spacing: 1px;
  line-height: 1;
}

.menu-item__description {
  font-family: "Bookman BT Roman", serif;
  font-size: 14px;
  margin-top: 5px;
  max-width: 400px;
}

.menu-item__description p {
  margin-bottom: 12px;
}

.menu-item__description p:last-of-type {
  margin: 0;
}

.menu-item__price {
  width: 20%;
  position: absolute;
  font-size: 16px;
  top: 0;
  right: 0;
}

@media screen and (max-width: 1024px) {
  .menu-section__title {
    padding-left: 87px;
  }
  .menu-section__title:before, .menu-section__title:after {
    right: 86px;
  }
  .menu-item__description {
    max-width: 325px;
  }
  .menu-item__price {
    width: initial;
  }
  .menu-subsections__nav {
    width: 334px;
  }
  .menu-subsection {
    padding-top: 85px;
  }
  .menu-subsection:before {
    left: 334px;
  }
  .menu-subsection__title, .menu-subsection__items, .menu-subsection__description,
  .menu-subsection .menu-item {
    width: 85%;
  }
}

@media screen and (max-width: 768px) {
  .location-info__title-section {
    text-align: center;
  }
  .location-info__name {
    display: inline-block;
    width: 100%;
  }
  .menu-subsections__nav {
    width: 100%;
    position: relative;
  }
  .menu-subsections__nav-item.toggled {
    color: #252525;
  }
  .menu-subsections__nav-item.toggled:before, .menu-subsections__nav-item.toggled:after {
    display: none;
  }
  .menu-subsection {
    padding: 56px 40px 95px 40px;
    min-height: initial;
  }
  .menu-subsection.toggled {
    display: none;
  }
  .menu-subsection.toggled:before {
    display: none;
  }
  .menu-subsection__toggle {
    display: block;
    width: 75%;
    text-align: right;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    font-family: "league-gothic", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    top: 56px;
    cursor: pointer;
  }
  .menu-subsection__toggle:before {
    content: '';
    width: 0;
    height: 0;
    display: inline-block;
    border-style: solid;
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 6px;
    border-width: 3px 5.2px 3px 0;
    border-color: transparent #d73532 transparent transparent;
  }
  .menu-subsection__title, .menu-subsection__description, .menu-subsection__items,
  .menu-subsection .menu-item {
    width: 75%;
  }
  .menu-section:last-child .menu-subsections__nav {
    border-bottom: 2px solid #252525;
  }
}

@media screen and (max-width: 600px) {
  .location-info__name {
    font-size: 42px;
  }
  .menu-section__title {
    padding-left: 28px;
  }
  .menu-section__title:before, .menu-section__title:after {
    right: 28px;
  }
  .menu-subsections__nav {
    padding: 58px 0;
  }
  .menu-subsections__nav-item {
    font-size: 25px;
    line-height: 1.8;
    letter-spacing: 3px;
  }
  .menu-subsection__toggle {
    font-size: 18px;
    width: 100%;
  }
  .menu-subsection__title, .menu-subsection__items, .menu-subsection__description {
    width: 100%;
  }
  .menu-subsection .menu-item {
    width: 100%;
    margin-bottom: 26px;
  }
  .menu-subsection .menu-item__name {
    font-size: 24px;
  }
  .menu-subsection .menu-item__description {
    max-width: 270px;
  }
  .menu-subsection .menu-item__price {
    display: none;
  }
}

.page-template-page-brazil .hero .middle,
.hero-location .middle {
  text-align: center;
}

.page-template-page-brazil .hero .hero__image,
.hero-location .hero__image {
  height: 199px;
  width: auto;
  padding-bottom: 0;
  top: initial;
  left: initial;
  max-height: initial;
  max-width: initial;
  position: initial;
  display: inline-block;
  transform: initial;
}

.page-template-page-brazil .hero__location,
.hero-location__location {
  font-family: "league-gothic", sans-serif;
  font-size: 78px;
  text-transform: uppercase;
  letter-spacing: 8px;
  margin-top: -135px;
}

.page-template-page-brazil .hero__tagline,
.hero-location__tagline {
  font-family: "Bookman BT Roman", serif;
  font-size: 23px;
  line-height: 1.8;
  display: inline-block;
  margin-top: 75px;
}

.wrapper--location-info {
  max-width: 957px;
  padding: 56px 78px 65.5px;
  position: relative;
}

.location-info {
  margin-top: 173px;
}

.location-info__left-col {
  text-align: right;
  display: inline-block;
  width: 50%;
  padding-right: 46px;
  min-height: 166px;
}

.location-info__left-col__address {
  margin-bottom: 17px;
  font-size: 22.5px;
  line-height: 1.3;
  max-width: 385px;
  margin-left: auto;
}

.location-info__left-col__directions {
  display: block;
  max-width: 215px;
  margin-left: auto;
  text-align: center;
  letter-spacing: 2.5px;
  margin-bottom: 18.5px;
}

.location-info__left-col__openhours {
  font-size: 16px;
  line-height: 1.5;
}

.location-info__right-col {
  text-align: left;
  float: right;
  display: inline-block;
  width: 50%;
  vertical-align: top;
  padding-left: 46px;
}

.location-info__right-col__horn {
  font-size: 22.5px;
  line-height: 1.3;
  margin-bottom: 7px;
}

.location-info__right-col__phone {
  font-size: 18px;
  margin-bottom: 28px;
  display: block;
}

.location-info__right-col__phone + .location-info__right-col__link-container {
  max-width: initial;
}

.location-info__right-col__phone + .location-info__right-col__link-container .location-info__right-col__download {
  display: inline-block;
  padding: 0 12px;
  font-size: 22px;
  line-height: 38px;
  position: relative;
  font-weight: 500;
  letter-spacing: 2px;
  transition: 0.15s color;
  -webkit-transition: 0.15s color;
  -moz-transition: 0.15s color;
  -ms-transition: 0.15s color;
  -o-transition: 0.15s color;
  font-size: 14px;
  text-align: initial;
  width: 160px;
  margin-right: 15px;
}

.location-info__right-col__phone + .location-info__right-col__link-container .location-info__right-col__download:before, .location-info__right-col__phone + .location-info__right-col__link-container .location-info__right-col__download:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  -moz-border-radius: 2px;
  background: #d73532;
}

.location-info__right-col__phone + .location-info__right-col__link-container .location-info__right-col__download:after {
  top: auto;
  bottom: 0;
}

.location-info__right-col__phone + .location-info__right-col__link-container .location-info__right-col__download:last-of-type {
  margin-right: 0;
}

.location-info__right-col__phone + .location-info__right-col__link-container .location-info__right-col__download img {
  float: right;
  padding: 6.5px 0;
  position: absolute;
  right: 12px;
  top: 4px;
}

.location-info__right-col__phone + .location-info__right-col__link-container .location-info__right-col__download img:first-of-type {
  opacity: initial;
  margin-right: initial;
}

.location-info__right-col__rsrv {
  padding: 0 38px;
  margin-bottom: 18.5px;
}

.location-info__right-col__link-container {
  max-width: 318px;
}

.location-info__right-col__seamless {
  display: block;
  margin-right: auto;
  line-height: 1.6;
  letter-spacing: 2.5px;
  font-size: 16px;
  margin-bottom: 10px;
}

.location-info__right-col__seamless:hover img:first-of-type {
  opacity: 1;
}

.location-info__right-col__seamless:hover img:last-of-type {
  opacity: 0;
}

.location-info__right-col__seamless-img {
  display: inline-block;
  vertical-align: middle;
  padding: 5px;
  width: 25px;
}

.location-info__right-col__seamless-img:first-of-type {
  opacity: 0;
  margin-right: -25px;
}

.location-info__right-col__download {
  font-size: 14px;
  letter-spacing: 1px;
  width: 50%;
  line-height: 30px;
  display: inline-block;
  position: relative;
}

.location-info__right-col__download:hover img:first-of-type {
  opacity: 1;
}

.location-info__right-col__download:hover img:last-of-type {
  opacity: 0;
}

.location-info__right-col__download img {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  right: -8px;
  width: 15px;
  transition: 0.15s opacity;
  -webkit-transition: 0.15s opacity;
  -moz-transition: 0.15s opacity;
  -ms-transition: 0.15s opacity;
  -o-transition: 0.15s opacity;
}

.location-info__right-col__download img:first-of-type {
  opacity: 0;
  margin-right: -15px;
}

.location-info__right-col__download:last-of-type {
  margin-right: 0;
}

.location-info__coming-soon {
  display: block;
  padding-top: 1em;
}

.location-info__vertical.vertical {
  height: calc( 100% - 60px);
  position: absolute;
  z-index: 1000;
  left: 50%;
  top: 60px;
}

.location-info__vertical.vertical:before {
  height: 100%;
  margin-bottom: 0;
}

.location-info__vertical.vertical:after {
  position: absolute;
  bottom: -3px;
  margin-bottom: 0;
}

.location-info.coming-soon {
  height: auto;
  padding: 0;
}

.newsletter-form {
  width: 97%;
  max-width: 531px;
  margin: 100px auto 130px;
  text-align: center;
}

.newsletter-form__header {
  margin-bottom: 24px;
  font-size: 22.5px;
}

.newsletter-form__field {
  margin-bottom: 20px;
  width: 100%;
}

.newsletter-form__field.half {
  width: 47%;
  float: left;
}

.newsletter-form__field.half:nth-of-type(odd) {
  margin-right: 6%;
}

.newsletter-form label {
  font-size: 18.7px;
  line-height: 1.6;
  display: block;
  margin-bottom: 7px;
  text-align: left;
}

.newsletter-form input:not([type='submit']) {
  display: block;
  -webkit-appearance: none;
  border: 2px solid #d73532;
  padding: 3px;
  height: 30px;
  width: 100%;
  font-size: 16px;
}

.newsletter-form__submit {
  margin-top: 51px;
}

.newsletter-form__submit input {
  background: transparent;
  border: 0;
  font-family: inherit;
}

.slideshow-block.location-slides {
  margin-top: 66px;
}

.slideshow-block .slick-arrow {
  bottom: -48px;
}

.slideshow-block .slick-arrow.slick-prev {
  left: 210px;
}

.slideshow-block .slick-arrow.slick-next {
  right: 210px;
}

.slideshow-block .slide {
  max-height: 735px;
}

.slideshow-block .slide img {
  display: none;
  width: 100%;
}

.slideshow-block .slide.slick-slide img {
  display: block;
}

.wrapper--location-form-container {
  max-width: 850px;
  border-right: 3px solid #252525;
  border-left: 3px solid #252525;
  margin: 125px auto 70px;
  position: relative;
}

.wrapper--location-form-container:before, .wrapper--location-form-container:after {
  content: '';
  width: calc(100% + 6px);
  height: 3px;
  background: #252525;
  position: absolute;
  left: -3px;
}

.wrapper--location-form-container:before {
  top: -29px;
}

.wrapper--location-form-container:after {
  bottom: -29px;
}

.wrapper--location-form-container__inner {
  max-width: 730px;
  border-top: 3px solid #252525;
  border-bottom: 3px solid #252525;
  padding-top: 36px;
  padding-bottom: 30px;
}

.postid-82 .location-form {
  display: none;
}

.postid-82 .location-info__coming-soon p {
  margin-bottom: 24px;
}

.postid-82 .location-info__coming-soon p:last-of-type {
  margin-bottom: 0;
  font-style: normal;
}

.location-form textarea,
.location-form input[type="text"],
.location-form input[type="email"],
.location-form select[name="location"] {
  border: 0px solid transparent;
  font-family: "Bookman BT Roman", serif;
  border: 2px solid #d73532;
  padding: 3px;
  padding-left: 0;
  padding-right: 0;
  margin-top: 7px;
  margin-bottom: 29px;
  font-size: 16px;
  font-weight: 500;
  cursor: text;
  width: 100%;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
}

.location-form .label {
  display: inherit;
  text-align: left;
  font-size: 15.5px;
}

.location-form .g-recaptcha {
  display: inline-block;
  margin: 29px 0;
}

.location-form select[name="location"], .location-form select {
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  background: #fff;
  position: relative;
  cursor: pointer;
  background-image: url("../img/dropdown_arrow.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  -moz-appearance: none;
  padding: 4.5px;
  font-size: 14px;
  text-indent: 10px;
}

.location-form ::-webkit-input-placeholder {
  color: #252525;
}

.location-form :-moz-placeholder {
  /* Firefox 18- */
  color: #252525;
}

.location-form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #252525;
}

.location-form :-ms-input-placeholder {
  color: #252525;
}

.location-form input[type="submit"] {
  border: 0px solid transparent;
  font-family: "Bookman BT Roman", serif;
  font-size: 20px;
  line-height: 16px;
  letter-spacing: 3px;
  background-color: transparent;
  display: block;
  border-top: 2px solid #d73532;
  border-bottom: 2px solid #d73532;
  cursor: pointer;
  padding: 9px 12px;
  margin: 32px auto 0;
  max-width: 110px;
  margin-top: 0;
}

.location-form input[type="submit"]:focus {
  border-top: 2px solid #252525;
  border-bottom: 2px solid #252525;
}

.location-form input[type="submit"]:hover {
  color: #d73532;
}

.location-form input[type="text"].wpcf7-not-valid {
  border: 2px solid #252525;
}

.location-form input[type="email"].wpcf7-not-valid {
  border: 2px solid #252525;
}

.location-form textarea {
  border: 2px solid #d73532;
  padding: 12px;
  max-height: 100px;
  float: none;
}

.location-form textarea.wpcf7-not-valid {
  border: 2px solid #252525;
}

.location-form .wpcf7-not-valid-tip {
  color: #fff;
  background: #252525;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 2px 11px;
  display: inline-block;
  position: absolute;
  bottom: 0;
  margin-left: -98px;
}

.location-form .wpcf7-not-valid-tip:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 19.1px 11px 0;
  border-color: transparent #252525 transparent transparent;
  top: 0;
  left: -19px;
}

.location-form textarea[name="message"] + span.wpcf7-not-valid-tip {
  bottom: initial;
  top: -40px;
  right: 14px;
}

.location-form #success {
  display: none;
  padding: 127px 28px;
  line-height: 1.5;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 22px;
  margin-right: -40px;
  margin-left: -40px;
  border: 2px solid #252525;
  margin-top: 48px;
}

.location-form .wpcf7-form {
  opacity: 1;
  visibility: visible;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
}

.location-form .wpcf7-form.sent p {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.location-form .wpcf7-mail-sent-ok {
  padding: 127px 28px;
  line-height: 1.5;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 22px;
  border: 2px solid #252525;
}

.location-form div.wpcf7-validation-errors {
  border: none;
  color: #fff;
  background: #252525;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 16px 0px;
  margin-top: 15px;
  margin-right: -40px;
  margin-left: -40px;
}

.location-form__sidecar {
  text-align: center;
  padding: 15px 10px;
  min-height: 593px;
}

.location-form__sidecar h1 {
  font-size: 53px;
  line-height: 1;
  margin-bottom: 20px;
}

.location-form__description {
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.5;
  padding: 0 40px;
  margin-bottom: 25px;
}

.location-form__content {
  padding: 0 92px;
  text-align: center;
}

.location-form__content h1 {
  font-size: 53px;
  line-height: 1;
  margin-bottom: 20px;
}

.location-form div.wpcf7-response-output {
  margin: 48px -40px 0;
}

.location-form__sidecar {
  padding: 0 98px;
}

.location-form__sidecar textarea[name="message"] + span.wpcf7-not-valid-tip {
  top: -16px;
}

.location-form__sidecar select[name="location"] + span.wpcf7-not-valid-tip {
  margin-left: -125px;
}

.location-form .single-form__description {
  margin-bottom: 20px;
}

.location-form textarea[name="message"] {
  margin-bottom: 19px;
}

.location-form #tripleseat_embed_form .row_contact_header {
  display: none !important;
}

.location-form #tripleseat_embed_form input, .location-form #tripleseat_embed_form textarea {
  border: 2px solid #d73532;
  margin-top: 7px;
  padding: 3px;
  margin-bottom: 29px;
}

.location-form #tripleseat_embed_form h2 {
  font-size: 53px;
  line-height: 1;
  margin-bottom: 53px;
  font-family: "league-gothic", sans-serif;
  text-transform: uppercase;
  margin-bottom: 25px;
  min-width: 542px;
}

.location-form #tripleseat_embed_form label {
  font-size: 15.5px;
  text-align: left;
}

.location-form #tripleseat_embed_form label span.required {
  color: #000;
}

.location-form #tripleseat_embed_form table td {
  padding: initial;
  width: 50%;
}

.location-form #tripleseat_embed_form table td:first-of-type {
  padding-right: 54px;
}

.location-form #tripleseat_embed_form .row_email_address td:first-of-type {
  padding-right: 0;
}

.location-form #tripleseat_embed_form #lead_phone_number {
  width: 100%;
}

.location-form #tripleseat_embed_form .row_contact_preference td {
  position: relative;
  width: 100%;
  height: 29px;
}

.location-form #tripleseat_embed_form #contact_preference_label {
  left: 0;
  position: relative;
  top: 50%;
  max-height: 100%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  position: absolute;
}

.location-form #tripleseat_embed_form #lead_contact_preference {
  position: absolute;
  right: 0;
  font-family: "Bookman BT Roman",serif;
  font-size: 16px;
  width: 45%;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  border: 2px solid #d73532;
  cursor: pointer;
  background-image: url("../img/dropdown_arrow.svg");
  background-repeat: no-repeat;
  background-position: right 5px center;
  -moz-appearance: none;
  padding: 3px;
  text-indent: 6px;
}

.location-form #tripleseat_embed_form .row_company td:first-of-type {
  padding-right: 0;
}

.location-form #tripleseat_embed_form .row_company td:first-of-type label {
  margin-top: 27px;
}

.location-form #tripleseat_embed_form .row_details_header h2 {
  font-size: 40px;
  margin-top: 12px;
  margin-bottom: 25px;
}

.location-form #tripleseat_embed_form .row_event_description td:first-of-type {
  padding-right: 0;
}

.location-form #tripleseat_embed_form .row_location .location_list div {
  padding-bottom: 33px;
}

.location-form #tripleseat_embed_form .row_location .location_list div.clear {
  padding-bottom: 0;
}

.location-form #tripleseat_embed_form .row_location .location_list input {
  margin-bottom: initial;
  margin-top: initial;
  padding: initial;
}

.location-form #tripleseat_embed_form .row_location .location_list label {
  padding-left: 5px;
}

.location-form #tripleseat_embed_form #location_label {
  margin-bottom: 16px;
}

.location-form #tripleseat_embed_form #location_label .required {
  color: #d73532;
}

.location-form #tripleseat_embed_form .hasDatepicker, .location-form #tripleseat_embed_form .timeselect_input {
  text-indent: 25px;
}

.location-form #tripleseat_embed_form .row_details_header td:first-of-type {
  padding-right: 0;
}

.location-form #tripleseat_embed_form .row_event_date td:first-of-type {
  padding-right: 0;
}

.location-form #tripleseat_embed_form .row_event_date td:first-of-type label {
  margin-top: 12px;
}

.location-form #tripleseat_embed_form .row_event_date input.hasDatepicker {
  background-image: url(../img/date.svg);
  background-size: 18px 18px;
}

.location-form #tripleseat_embed_form .row_start_time input.timeselect_input {
  background-image: url(../img/time.svg);
  background-size: 18px 18px;
}

.location-form #tripleseat_embed_form .row_guest_count td:first-of-type {
  padding-right: 0;
}

.location-form #tripleseat_embed_form #lead_guest_count {
  width: 100%;
}

.location-form #tripleseat_embed_form .row_additional_information td:first-of-type {
  padding-right: 0;
}

.location-form #tripleseat_embed_form #lead_additional_information {
  min-height: 130px;
}

.location-form #tripleseat_embed_form .row_submit {
  display: table-cell;
  vertical-align: middle;
}

.location-form #tripleseat_embed_form .row_submit a {
  display: none;
}

.location-form #tripleseat_embed_form #lead_submit {
  font-size: 20px;
  border: 0;
  border-top: 2px solid #d73532;
  border-bottom: 2px solid #d73532;
  padding: 9px 3px;
}

.location-form #tripleseat_embed_form #lead_form_submit input {
  margin-bottom: 15px;
}

.location-form .wpcf7-not-valid-tip {
  bottom: -29px;
}

.location-form .wpcf7-form-control-wrap.message .wpcf7-not-valid-tip {
  top: 6px;
  right: 0;
}

.location-form div.wpcf7-response-output {
  margin: 20px -40px 0;
}

@media screen and (max-width: 1350px) {
  .page-template-page-brazil .hero .hero__image,
  .hero-location .hero__image {
    height: 177px;
  }
  .page-template-page-brazil .hero__location,
  .hero-location__location {
    font-size: 70px;
    margin-top: -123px;
  }
  .slideshow-block .slide {
    max-height: 661px;
  }
  .location-info__left-col {
    min-height: 0;
  }
  .location-form__sidecar h1 {
    font-size: 49px;
  }
  .location-form__description {
    padding: 0 37px;
  }
  .location-form div.wpcf7-response-output {
    margin: 26px 17px 0;
    padding: 16px 20px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 1024px) {
  .page-template-page-brazil .hero .hero__image,
  .hero-location .hero__image {
    height: 159px;
  }
  .page-template-page-brazil .hero__location,
  .hero-location__location {
    font-size: 63px;
    letter-spacing: 6px;
    margin-top: -110px;
  }
  .page-template-page-brazil .hero__tagline,
  .hero-location__tagline {
    font-size: 18px;
    margin-top: 60px;
  }
  .wrapper--location-info {
    max-width: 682px;
    padding: 37px 0 45px;
  }
  .wrapper--location-info:before, .wrapper--location-info:after {
    width: 304px;
  }
  .location-info__vertical.vertical {
    top: 37px;
    height: calc( 100% - 37px);
  }
  .location-info__right-col {
    padding-left: 35px;
  }
  .location-info__left-col {
    padding-right: 35px;
  }
  .location-info__left-col__address, .location-info__right-col__horn {
    font-size: 18px;
    line-height: 1.4;
    max-width: 300px;
  }
  .location-info__right-col__phone {
    font-size: 15px;
    margin-bottom: 23px;
  }
  .location-info__right-col__phone + .location-info__right-col__link-container {
    max-width: initial;
  }
  .location-info__right-col__phone + .location-info__right-col__link-container .location-info__right-col__download {
    display: inline-block;
    padding: 0 12px;
    font-size: 22px;
    line-height: 38px;
    position: relative;
    font-weight: 500;
    letter-spacing: 2px;
    transition: 0.15s color;
    -webkit-transition: 0.15s color;
    -moz-transition: 0.15s color;
    -ms-transition: 0.15s color;
    -o-transition: 0.15s color;
    font-size: 14px;
    text-align: initial;
    line-height: 29px;
    width: 140px;
    margin-right: 15px;
  }
  .location-info__right-col__phone + .location-info__right-col__link-container .location-info__right-col__download:before, .location-info__right-col__phone + .location-info__right-col__link-container .location-info__right-col__download:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 2px;
    width: 100%;
    border-radius: 2px;
    -moz-border-radius: 2px;
    background: #d73532;
  }
  .location-info__right-col__phone + .location-info__right-col__link-container .location-info__right-col__download:after {
    top: auto;
    bottom: 0;
  }
  .location-info__right-col__phone + .location-info__right-col__link-container .location-info__right-col__download:last-of-type {
    margin-right: 0;
  }
  .location-info__right-col__phone + .location-info__right-col__link-container .location-info__right-col__download img {
    float: right;
    padding: 6.5px 0;
    position: absolute;
    right: 12px;
    top: 1px;
  }
  .location-info__right-col__rsrv {
    font-size: 14px;
    line-height: 29px;
    margin-bottom: 15.5px;
  }
  .location-info__right-col__link-container {
    max-width: 243px;
  }
  .location-info__right-col__seamless {
    font-size: 12px;
    max-width: 250px;
  }
  .location-info__right-col__download {
    font-size: 12px;
  }
  .location-info__left-col__directions {
    font-size: 14px;
    line-height: 29px;
  }
  .location-info__left-col__directions {
    max-width: 156px;
    padding: 0;
  }
  .location-info__left-col__openhours {
    font-size: 12px;
  }
  .slideshow-block .slick-arrow.slick-prev {
    left: 87px;
  }
  .slideshow-block .slick-arrow.slick-next {
    right: 87px;
  }
  .wrapper--location-form-container {
    margin: 100px auto;
    max-width: 612px;
  }
  .wrapper--location-form-container__inner {
    max-width: 525px;
  }
  .location-form__private, .location-form__sidecar {
    width: 100%;
    float: none;
  }
  .location-form__private {
    border-right: none;
    padding-right: 0;
    position: relative;
  }
  .location-form__private:after {
    content: '';
    display: inline-block;
    height: 1px;
    width: 325px;
    bottom: 0;
    background: #252525;
  }
  .location-form__sidecar {
    padding: 0px 63px;
  }
  .location-form__sidecar .wpcf7-form-control-wrap.location:before {
    bottom: 49px;
  }
  .location-form__sidecar .wpcf7-form-control-wrap.location:after {
    bottom: 47px;
  }
  .location-form__content {
    padding: 0px 63px;
  }
  .location-form__description {
    padding: 0 5px;
  }
  .location-form div.wpcf7-response-output {
    margin: 15px 0;
    padding: 127px 28px;
  }
  .location-form div.wpcf7-validation-errors {
    padding: 16px 60px;
    margin-top: 26px 0;
    margin-bottom: initial;
  }
  .location-form input[type="submit"]:focus {
    border-top: 2px solid #252525;
    border-bottom: 2px solid #252525;
  }
  .location-form #tripleseat_embed_form h2 {
    font-size: 39px;
    margin-bottom: 25px;
    min-width: initial;
  }
  .location-form #tripleseat_embed_form table td {
    width: 100%;
    display: table;
  }
  .location-form #tripleseat_embed_form #lead_contact_preference {
    left: 0;
    top: 29px;
    width: 100%;
  }
  .location-form #tripleseat_embed_form .row_details_header h2 {
    font-size: 30px;
  }
  .location-form #tripleseat_embed_form .row_contact_preference td {
    height: 16px;
  }
  .location-form #tripleseat_embed_form .row_company td:first-of-type label {
    margin-top: 65px;
  }
  .location-form #tripleseat_embed_form #lead_contact_preference {
    top: 23px;
  }
  .location-form #tripleseat_embed_form .location_list {
    margin-right: -5px;
  }
  .location-form #tripleseat_embed_form .row_submit {
    display: block;
  }
  .location-form #tripleseat_embed_form #lead_form_submit {
    display: inline-block;
    text-align: center;
    padding-right: 0;
    width: initial;
    margin-top: 34px;
  }
  .location-form #tripleseat_embed_form #lead_submit {
    margin-left: 0;
    margin-top: 0;
  }
  .location-form #tripleseat_embed_form #lead_additional_information {
    margin-bottom: 0;
  }
  .location-form select[name="location"] {
    margin-bottom: 0;
  }
  .location-form #tripleseat_embed_form #lead_submit {
    padding: 9px 12px;
  }
  #wpcf7-f4-p72-o1 {
    margin-bottom: 6px;
  }
}

@media screen and (max-width: 768px) {
  .page-template-page-brazil .hero .hero__image,
  .hero-location .hero__image {
    height: 199px;
  }
  .page-template-page-brazil .hero__location,
  .hero-location__location {
    font-size: 78px;
    margin-top: -135px;
    margin-right: -40px;
    margin-left: -40px;
  }
  .page-template-page-brazil .hero__tagline,
  .hero-location__tagline {
    font-size: 20px;
    margin-right: -65px;
    margin-left: -65px;
    margin-top: 80px;
  }
  .wrapper--location-info {
    max-width: 600px;
  }
  .wrapper--location-info:before, .wrapper--location-info:after {
    width: 263px;
    width: 263px;
  }
  .location-info__left-col {
    padding-right: 25px;
  }
  .location-info__right-col {
    padding-left: 25px;
  }
  .location-info__right-col__phone + .location-info__right-col__link-container .location-info__right-col__download {
    display: inline-block;
    padding: 0 12px;
    font-size: 22px;
    line-height: 38px;
    position: relative;
    font-weight: 500;
    letter-spacing: 2px;
    transition: 0.15s color;
    -webkit-transition: 0.15s color;
    -moz-transition: 0.15s color;
    -ms-transition: 0.15s color;
    -o-transition: 0.15s color;
    font-size: 14px;
    text-align: initial;
    line-height: 29px;
    padding: 0 3px;
    width: 125px;
  }
  .location-info__right-col__phone + .location-info__right-col__link-container .location-info__right-col__download:before, .location-info__right-col__phone + .location-info__right-col__link-container .location-info__right-col__download:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 2px;
    width: 100%;
    border-radius: 2px;
    -moz-border-radius: 2px;
    background: #d73532;
  }
  .location-info__right-col__phone + .location-info__right-col__link-container .location-info__right-col__download:after {
    top: auto;
    bottom: 0;
  }
  .location-info__right-col__phone + .location-info__right-col__link-container .location-info__right-col__download img {
    position: absolute;
    right: 3px;
  }
  .location-info__right-col__seamless {
    letter-spacing: 1.5px;
    padding: 0;
  }
  .menu__header {
    font-size: 68px;
    background-size: 132px 22px;
    padding-bottom: 38px;
    margin-bottom: 19px;
  }
  .slide-index {
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 41px;
  }
  .slideshow-block .slick-arrow.slick-prev {
    left: 65px;
  }
  .slideshow-block .slick-arrow.slick-next {
    right: 65px;
  }
  .wrapper--location-form-container {
    max-width: 513px;
  }
  .wrapper--location-form-container__inner {
    max-width: 440px;
  }
  .location-form__sidecar {
    min-height: initial;
    padding: 0 20px;
  }
  .location-form__sidecar h1 {
    font-size: 41px;
    line-height: 1;
    margin-bottom: 17px;
  }
  .location-form__content {
    padding: 0px 20px;
  }
  .location-form__description {
    font-size: 11px;
    padding: 0 90px;
    line-height: 1.5;
  }
  .location-form textarea,
  .location-form input[type="text"],
  .location-form input[type="email"],
  .location-form input[type="submit"],
  .location-form select[name="location"] {
    font-size: 15px;
  }
  .location-form input[type="submit"] {
    border-top: 2px solid #d73532;
    border-bottom: 2px solid #d73532;
    line-height: 8px;
    max-width: 110px;
  }
  .location-form div.wpcf7-response-output {
    margin: 28px 0px;
  }
  .location-form div.wpcf7-validation-errors {
    padding: 16px 40px;
  }
  .location-form textarea[name="message"] + span.wpcf7-not-valid-tip {
    bottom: initial;
    top: 100px;
    right: 74px;
  }
  .location-form #tripleseat_embed_form #lead_submit {
    font-size: 15px;
  }
}

@media screen and (max-width: 600px) {
  .page-template-page-brazil .hero .hero__image,
  .hero-location .hero__image {
    height: 105px;
  }
  .page-template-page-brazil .hero__location,
  .hero-location__location {
    font-size: 40px;
    letter-spacing: 4px;
    margin-top: -74px;
  }
  .page-template-page-brazil .hero__tagline,
  .hero-location__tagline {
    font-size: 12px;
    line-height: 1.8;
    padding: 0 20px;
    margin-right: initial;
    margin-left: initial;
    margin-top: 45px;
  }
  .wrapper--location-info {
    border: none;
  }
  .wrapper--location-info:before {
    display: none;
  }
  .wrapper--location-info:after {
    display: none;
  }
  .location-info {
    margin-top: 116px;
  }
  .location-info__vertical.vertical {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    bottom: -25px;
  }
  .location-info__vertical.vertical:before {
    height: 78px;
  }
  .location-info__vertical.vertical:after {
    bottom: 0;
  }
  .location-info__left-col, .location-info__right-col {
    width: 100%;
    padding: 0 20px;
    display: block;
    float: none;
  }
  .location-info__left-col {
    text-align: left;
  }
  .location-info__left-col__address, .location-info__left-col__horn {
    margin-left: initial;
    max-width: 200px;
    line-height: 2;
  }
  .location-info__left-col__address {
    margin-bottom: 16px;
  }
  .location-info__left-col__directions {
    margin-left: initial;
    max-width: initial;
    font-size: 18px;
    line-height: 38px;
  }
  .location-info__left-col__openhours {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .location-info__left-col__openhours span {
    display: block;
    margin-top: 7px;
  }
  .location-info__right-col__horn {
    font-size: 15px;
    margin-top: 20px;
  }
  .location-info__right-col:before {
    content: '';
    height: 2px;
    width: 100%;
    background: #252525;
    display: inline-block;
  }
  .location-info__right-col__rsrv {
    font-size: 18px;
    line-height: 38px;
    width: 100%;
    text-align: center;
    padding: initial;
  }
  .location-info__right-col__link-container {
    max-width: initial;
  }
  .location-info__right-col__seamless {
    max-width: initial;
    line-height: 38px;
    font-size: 18px;
    line-height: 38px;
  }
  .location-info__right-col__download {
    font-size: 14px;
  }
  .location-info__right-col__phone {
    margin-bottom: 31px;
  }
  .location-info__right-col__phone + .location-info__right-col__link-container .location-info__right-col__download {
    padding: 0 12px;
    width: 48%;
    margin-right: 4%;
  }
  .location-info__right-col__phone + .location-info__right-col__link-container .location-info__right-col__download img {
    right: 12px;
  }
  .location-info.coming-soon .location-info__right-col:before {
    display: none;
  }
  .location-info.coming-soon .location-info__left-col__address {
    max-width: none;
  }
  .location-info.coming-soon .location-info__coming-soon {
    padding-top: 0.5em;
  }
  .newsletter-form {
    margin: 0 auto 29px;
    padding: 0 20px;
  }
  .newsletter-form__header {
    font-size: 18px;
    line-height: 1.5;
    padding: 0 0 30px;
    font-weight: bold;
    width: 200px;
    margin: auto;
  }
  .newsletter-form__field.half, .newsletter-form__field.full {
    width: 100%;
    margin-right: 0;
  }
  .newsletter-form label {
    font-size: 15.5px;
    line-height: 1em;
  }
  .newsletter-form__submit {
    margin-top: 5px;
    line-height: 30px;
  }
  .newsletter-form__submit input {
    font-size: 15px;
  }
  .slideshow-block {
    margin-top: 35px;
  }
  .slideshow-block .slick-arrow {
    bottom: -35px;
  }
  .slideshow-block .slick-arrow {
    width: 43px;
    height: 43px;
    background-size: 86px;
  }
  .slideshow-block .slick-arrow:before {
    width: 43px;
    height: 43px;
    background-size: 86px;
    background-position: -43px 0;
  }
  .slide-index {
    font-size: 14px;
  }
  .slide-index__current {
    padding-right: 10px;
  }
  .slide-index__total {
    padding-left: 10px;
  }
  .slideshow-block .slick-arrow.slick-prev {
    left: 28px;
  }
  .slideshow-block .slick-arrow.slick-next {
    right: 28px;
  }
  .menu__header {
    font-size: 52px;
    background-size: 100px 17px;
    padding-bottom: 28px;
  }
  .wrapper--location-form-container {
    border: none;
    margin: 0px auto;
    max-width: initial;
    width: 100%;
  }
  .wrapper--location-form-container:before, .wrapper--location-form-container:after {
    display: none;
  }
  .wrapper--location-form-container__inner {
    border: none;
    max-width: 440px;
  }
  .location-form__private h1, .location-form__sidecar h1 {
    font-size: 35px;
    line-height: 1.2;
  }
  .location-form:last-of-type .wrapper--location-form-container__inner {
    padding-top: 0;
  }
  .location-form .wpcf7-form {
    padding: 0;
  }
  .location-form__private:after {
    width: 100%;
    height: 2px;
  }
  .location-form__content h1 {
    font-size: 35px;
  }
  .location-form__description {
    padding: 0 10px;
  }
  .location-form textarea,
  .location-form input[type="text"],
  .location-form input[type="email"],
  .location-form input[type="submit"] {
    max-width: none;
    width: 100%;
  }
  .location-form input[type="submit"] {
    width: 94px;
  }
  .location-form textarea[name="message"] {
    margin-bottom: 19px;
  }
  .location-form textarea[name="message"] + span.wpcf7-not-valid-tip {
    top: 99px;
    right: 16px;
  }
  .location-form div.wpcf7-response-output {
    padding: 119px 20px;
    margin: 28px 0px;
  }
  .location-form div.wpcf7-validation-errors {
    padding: 16px 10px;
    margin: 28px -10px;
  }
  .location-form .g-recaptcha {
    transform: scale(0.93);
    -webkit-transform: scale(0.93);
    -moz-transform: scale(0.93);
    -ms-transform: scale(0.93);
    -o-transform: scale(0.93);
    transform-origin: 0 0;
  }
  .location-form .wpcf7-form-control-wrap.message .wpcf7-not-valid-tip {
    top: 6px;
  }
  .location-form #tripleseat_embed_form h2 {
    font-size: 35px;
  }
  .location-form #tripleseat_embed_form .row_location .location_list label {
    font-size: 12px;
  }
  .location-form #tripleseat_embed_form table td {
    display: block;
    padding-right: 0 !important;
  }
  .location-form #tripleseat_embed_form #lead_contact_preference {
    width: 100%;
  }
  .location-form #tripleseat_embed_form .row_details_header h2 {
    font-size: 27px;
  }
  .location-form #tripleseat_embed_form .row_location td {
    padding-right: 0 !important;
  }
  .location-form #tripleseat_embed_form .row_location .location_list {
    margin-right: 0;
    margin-left: 0;
  }
  .location-form #tripleseat_embed_form .row_location .location_list label {
    font-size: 11px;
    padding-left: 0;
  }
}

@media (min-width: 600px) {
  .contact-location.col-3 .contact-location__border-bottom {
    display: none;
  }
  .contact-location.col-3:not(:last-of-type) .contact-location__border-right {
    display: block;
  }
  .contact-location.col-3:nth-child(4n) .contact-location__border-right {
    display: none;
  }
}

@media (max-width: 1350px) and (min-width: 600px) {
  .contact-location.col-3 {
    width: 50%;
  }
  .contact-location.col-3:not(:nth-last-child(-n+2)) .contact-location__border-bottom {
    display: block;
  }
  .contact-location.col-3:nth-child(2n) .contact-location__border-right {
    display: none;
  }
}

.page-template-page-private-affairs .vertical-first {
  margin-bottom: 50px;
}

.page-template-page-private-affairs .vertical:before, .page-template-page-private-affairs .vertical:after {
  margin-bottom: 10px;
}

div[id*="recaptcha"] {
  display: inline-block;
  vertical-align: middle;
  margin-top: 34px;
  margin-right: 30px;
}

.page-template-page-private-affairs .popup-gallery {
  margin: 0 0 6rem;
}

.page-template-page-private-affairs .single-form .wrapper--single-form-container__inner {
  padding-bottom: 0;
}

@media (max-width: 600px) {
  .page-template-page-private-affairs .wrapper--home-location {
    margin-top: 0;
  }
}

.private-intro {
  padding: 10rem 0 0;
}

.private-intro__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  border: 3px solid #252525;
  border-bottom: none;
}

.private-intro__inner:before, .private-intro__inner:after {
  content: '';
  width: 250px;
  height: 3px;
  background: #252525;
  position: absolute;
  bottom: 0;
  left: -1px;
}

.private-intro__inner:after {
  left: auto;
  right: -1px;
}

.private-intro__title {
  padding-top: 30px;
  margin-bottom: 14px;
  text-align: center;
}

.private-intro__description {
  text-align: center;
  padding: 0 20px 39px;
  margin: 0 auto;
  margin-bottom: 25px;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1.7;
}

.private-intro__bottom-text {
  font-family: "corner-store-jf", serif;
  font-size: 35px;
  position: absolute;
  bottom: -0.5em;
  width: 100%;
  text-align: center;
}

.slideshow-block.private-slides {
  margin-top: -80px;
}

.private-location-intro, .private-location-details {
  text-align: center;
}

.private-location-intro .wrapper, .private-location-details .wrapper {
  max-width: 1100px;
}

.private-location-intro h1, .private-location-details h1 {
  font-size: 60px;
  margin-bottom: 1rem;
}

.private-location-intro p, .private-location-details p {
  font-size: 16px;
}

.private-location-intro {
  padding: 12rem 0 0;
  text-align: center;
}

.private-location-intro .wrapper {
  width: 90%;
}

.private-location-intro .vertical-first {
  padding-top: 50px;
}

hr.private-affair-loc-divider {
  margin: 40px auto;
  width: 600px;
  max-width: 90%;
  border-color: #000;
  border-width: 2px;
}

.private-location-details .wrapper {
  width: 90%;
}

.private-location-details h2 {
  font-size: 25px;
  margin-bottom: 1rem;
}

.event-type-list {
  width: 90%;
  max-width: 800px;
  margin: 1rem auto 0;
  font-size: 16px;
}

.event-type-list .event-item-setup {
  float: left;
}

.event-type-list .event-item-limit {
  float: right;
}

.event-type-list .event-type-item {
  position: relative;
  width: 100%;
  margin-bottom: 0.5rem;
  float: left;
}

.event-type-list .event-type-item div {
  background: #FFF;
  position: relative;
  z-index: 2;
}

@media (max-width: 600px) {
  .event-type-list .event-type-item div {
    display: block;
    float: none;
    background: transparent;
  }
}

.event-type-list .event-type-item:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 2px;
  left: 0;
  width: 100%;
  border-bottom: 2px dotted #000;
}

@media (max-width: 600px) {
  .event-type-list .event-type-item:after {
    display: none;
  }
}

.private-event-feature-box {
  margin-top: 2rem;
  width: 90%;
  padding-top: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.private-event-feature-box ul {
  padding: 0 0 3rem;
  list-style-type: none;
  text-align: center;
}

.private-event-feature-box li {
  font-size: 24px;
  letter-spacing: 1px;
  line-height: 100%;
  margin-bottom: 0.5rem;
  font-family: "league-gothic", sans-serif;
}

.private-event-feature-box br {
  height: 1rem;
}

.private-event-feature-box .private-intro__bottom-text {
  left: 0;
}

.private-location-buttons {
  text-align: center;
  margin: 4rem auto 0;
}

.private-location-buttons a {
  display: inline-block;
  padding: 1rem 1.5rem;
  background: #000;
  color: #FFF;
  font-size: 24px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: "league-gothic", sans-serif;
  transition: background 0.1s ease-out;
  margin: 5px 20px;
  width: 220px;
}

.private-location-buttons a:hover {
  background: #d73532;
}

@media (max-width: 600px) {
  .private-location-buttons a {
    margin: 5px;
  }
}

.dining-room {
  float: left;
  margin: 0 auto 2rem;
}

.single-form textarea,
.single-form input[type="text"],
.single-form input[type="email"],
.single-form select[name="location"] {
  border: 0px solid transparent;
  font-family: "Bookman BT Roman", serif;
  border: 2px solid #d73532;
  padding: 3px;
  padding-left: 0;
  padding-right: 0;
  margin-top: 7px;
  margin-bottom: 29px;
  font-size: 16px;
  font-weight: 500;
  cursor: text;
  width: 100%;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
}

.single-form .label {
  display: inherit;
  text-align: left;
  font-size: 15.5px;
}

.single-form .g-recaptcha {
  display: inline-block;
  margin: 29px 0;
}

.single-form select[name="location"], .single-form select {
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  background: #fff;
  position: relative;
  cursor: pointer;
  background-image: url("../img/dropdown_arrow.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  -moz-appearance: none;
  padding: 4.5px;
  font-size: 14px;
  text-indent: 10px;
}

.single-form ::-webkit-input-placeholder {
  color: #252525;
}

.single-form :-moz-placeholder {
  /* Firefox 18- */
  color: #252525;
}

.single-form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #252525;
}

.single-form :-ms-input-placeholder {
  color: #252525;
}

.single-form input[type="submit"] {
  border: 0px solid transparent;
  font-family: "Bookman BT Roman", serif;
  font-size: 20px;
  line-height: 16px;
  letter-spacing: 3px;
  background-color: transparent;
  display: block;
  border-top: 2px solid #d73532;
  border-bottom: 2px solid #d73532;
  cursor: pointer;
  padding: 9px 12px;
  margin: 32px auto 0;
  max-width: 110px;
  margin-top: 0;
}

.single-form input[type="submit"]:focus {
  border-top: 2px solid #252525;
  border-bottom: 2px solid #252525;
}

.single-form input[type="submit"]:hover {
  color: #d73532;
}

.single-form input[type="text"].wpcf7-not-valid {
  border: 2px solid #252525;
}

.single-form input[type="email"].wpcf7-not-valid {
  border: 2px solid #252525;
}

.single-form textarea {
  border: 2px solid #d73532;
  padding: 12px;
  max-height: 100px;
  float: none;
}

.single-form textarea.wpcf7-not-valid {
  border: 2px solid #252525;
}

.single-form .wpcf7-not-valid-tip {
  color: #fff;
  background: #252525;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 2px 11px;
  display: inline-block;
  position: absolute;
  bottom: 0;
  margin-left: -98px;
}

.single-form .wpcf7-not-valid-tip:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 19.1px 11px 0;
  border-color: transparent #252525 transparent transparent;
  top: 0;
  left: -19px;
}

.single-form textarea[name="message"] + span.wpcf7-not-valid-tip {
  bottom: initial;
  top: -40px;
  right: 14px;
}

.single-form #success {
  display: none;
  padding: 127px 28px;
  line-height: 1.5;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 22px;
  margin-right: -40px;
  margin-left: -40px;
  border: 2px solid #252525;
  margin-top: 48px;
}

.single-form .wpcf7-form {
  opacity: 1;
  visibility: visible;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
}

.single-form .wpcf7-form.sent p {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.single-form .wpcf7-mail-sent-ok {
  padding: 127px 28px;
  line-height: 1.5;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 22px;
  border: 2px solid #252525;
}

.single-form div.wpcf7-validation-errors {
  border: none;
  color: #fff;
  background: #252525;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 16px 0px;
  margin-top: 15px;
  margin-right: -40px;
  margin-left: -40px;
}

.single-form:last-of-type .wrapper--single-form-container {
  margin-top: 128px;
  margin-bottom: 70px;
}

.single-form .wrapper--single-form-container {
  margin: 95px auto 57px;
  position: relative;
}

.single-form .wrapper--single-form-container__inner {
  padding-top: 36px;
  padding-bottom: 30px;
  padding-right: initial;
  padding-left: initial;
}

.single-form .wrapper--single-form-container .single-form__description a {
  color: #d73532;
}

.single-form .wrapper--single-form-container .single-form__description a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .single-form .wrapper--single-form-container .single-form__description br:not(:first-of-type) {
    display: none;
  }
}

.single-form__content {
  text-align: center;
  padding: 0 160px;
}

.single-form__content h1 {
  font-size: 53px;
  line-height: 1;
  margin-bottom: 20px;
}

.single-form__description {
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.5;
  padding: 0 40px;
  margin-bottom: 25px;
}

.single-form input[type="submit"] {
  width: 110px;
  display: inline-block;
  vertical-align: middle;
  margin-top: 34px;
}

.single-form textarea[name="message"] + span.wpcf7-not-valid-tip {
  bottom: initial;
  top: -40px;
  right: 14px;
}

.single-form div.wpcf7-response-output {
  margin: 48px 0px 37px;
}

.single-form div.wpcf7-validation-errors {
  margin-bottom: 0;
  margin-top: 15px;
}

.single-form #tripleseat_embed_form .row_contact_header {
  display: none !important;
}

.single-form #tripleseat_embed_form input, .single-form #tripleseat_embed_form textarea {
  border: 2px solid #d73532;
  margin-top: 7px;
  padding: 3px;
  margin-bottom: 29px;
}

.single-form #tripleseat_embed_form h2 {
  font-size: 53px;
  line-height: 1;
  margin-bottom: 53px;
  font-family: "league-gothic", sans-serif;
  text-transform: uppercase;
  margin-bottom: 25px;
  min-width: 542px;
}

.single-form #tripleseat_embed_form label {
  font-size: 15.5px;
  text-align: left;
}

.single-form #tripleseat_embed_form label span.required {
  color: #000;
}

.single-form #tripleseat_embed_form table td {
  padding: initial;
  width: 50%;
}

.single-form #tripleseat_embed_form table td:first-of-type {
  padding-right: 54px;
}

.single-form #tripleseat_embed_form .row_email_address td:first-of-type {
  padding-right: 0;
}

.single-form #tripleseat_embed_form #lead_phone_number {
  width: 100%;
}

.single-form #tripleseat_embed_form .row_contact_preference td {
  position: relative;
  width: 100%;
  height: 29px;
}

.single-form #tripleseat_embed_form #contact_preference_label {
  left: 0;
  position: relative;
  top: 50%;
  max-height: 100%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  position: absolute;
}

.single-form #tripleseat_embed_form #lead_contact_preference {
  position: absolute;
  right: 0;
  font-family: "Bookman BT Roman",serif;
  font-size: 16px;
  width: 45%;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  border: 2px solid #d73532;
  cursor: pointer;
  background-image: url("../img/dropdown_arrow.svg");
  background-repeat: no-repeat;
  background-position: right 5px center;
  -moz-appearance: none;
  padding: 3px;
  text-indent: 6px;
}

.single-form #tripleseat_embed_form .row_company td:first-of-type {
  padding-right: 0;
}

.single-form #tripleseat_embed_form .row_company td:first-of-type label {
  margin-top: 27px;
}

.single-form #tripleseat_embed_form .row_details_header h2 {
  font-size: 40px;
  margin-top: 12px;
  margin-bottom: 25px;
}

.single-form #tripleseat_embed_form .row_event_description td:first-of-type {
  padding-right: 0;
}

.single-form #tripleseat_embed_form .row_location .location_list div {
  padding-bottom: 33px;
}

.single-form #tripleseat_embed_form .row_location .location_list div.clear {
  padding-bottom: 0;
}

.single-form #tripleseat_embed_form .row_location .location_list input {
  margin-bottom: initial;
  margin-top: initial;
  padding: initial;
}

.single-form #tripleseat_embed_form .row_location .location_list label {
  padding-left: 5px;
}

.single-form #tripleseat_embed_form #location_label {
  margin-bottom: 16px;
}

.single-form #tripleseat_embed_form #location_label .required {
  color: #d73532;
}

.single-form #tripleseat_embed_form .hasDatepicker, .single-form #tripleseat_embed_form .timeselect_input {
  text-indent: 25px;
}

.single-form #tripleseat_embed_form .row_details_header td:first-of-type {
  padding-right: 0;
}

.single-form #tripleseat_embed_form .row_event_date td:first-of-type {
  padding-right: 0;
}

.single-form #tripleseat_embed_form .row_event_date td:first-of-type label {
  margin-top: 12px;
}

.single-form #tripleseat_embed_form .row_event_date input.hasDatepicker {
  background-image: url(../img/date.svg);
  background-size: 18px 18px;
}

.single-form #tripleseat_embed_form .row_start_time input.timeselect_input {
  background-image: url(../img/time.svg);
  background-size: 18px 18px;
}

.single-form #tripleseat_embed_form .row_guest_count td:first-of-type {
  padding-right: 0;
}

.single-form #tripleseat_embed_form #lead_guest_count {
  width: 100%;
}

.single-form #tripleseat_embed_form .row_additional_information td:first-of-type {
  padding-right: 0;
}

.single-form #tripleseat_embed_form #lead_additional_information {
  min-height: 130px;
}

.single-form #tripleseat_embed_form .row_submit {
  display: table-cell;
  vertical-align: middle;
}

.single-form #tripleseat_embed_form .row_submit a {
  display: none;
}

.single-form #tripleseat_embed_form #lead_submit {
  font-size: 20px;
  border: 0;
  border-top: 2px solid #d73532;
  border-bottom: 2px solid #d73532;
  padding: 9px 3px;
}

.single-form #tripleseat_embed_form #lead_form_submit input {
  margin-bottom: 15px;
}

.location-panel {
  max-width: 854px;
  padding: 0 12px;
}

.location-panel-container {
  margin-top: 50px;
}

.location-panel__item {
  min-height: 275px;
  display: block;
  float: left;
  width: 50%;
  margin: 0;
  border: 1px solid #252525;
  background: transparent center 43% no-repeat;
  background-size: auto 60%;
}

.location-panel__item:nth-child(1) {
  background-image: url("../img/locations/icon-thirdave-black.svg");
  border-top: none;
  border-left: none;
}

.location-panel__item:nth-child(2) {
  background-image: url("../img/locations/icon-lincolnsquare-black.svg");
  border-right: none;
  border-top: none;
  border-left: none;
}

.location-panel__item:nth-child(3) {
  background-image: url("../img/locations/icon-onthehudson-black.svg");
  border-top: none;
  border-bottom: none;
  border-left: none;
}

.location-panel__item:nth-child(4) {
  background-image: url("../img/locations/icon-washington-black.svg");
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-left: none;
}

.location-panel__link {
  text-align: center;
  font-size: 65px;
  letter-spacing: 3px;
  position: relative;
  font-family: "league-gothic", sans-serif;
  text-transform: uppercase;
  display: block;
  transition: 0.2s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
  -webkit-transition: 0.2s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
  -moz-transition: 0.2s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
  -ms-transition: 0.2s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
  -o-transition: 0.2s all cubic-bezier(0.16, 1.225, 0.595, 1.235);
}

.location-panel__link:before {
  content: '';
  display: table-row;
  float: left;
  padding-bottom: 66.66667%;
}

.location-panel__link:after {
  content: '';
  display: table;
  clear: both;
}

.location-panel__link:hover {
  color: #d73532 !important;
  letter-spacing: 5px;
}

.location-panel__text-wrap {
  position: absolute;
  max-height: 100%;
  max-width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: auto;
}

.faq-download {
  margin-bottom: 80px;
}

.faq-download__link {
  position: relative;
  padding: 0 12px;
  width: 260px;
  position: relative;
  left: 50%;
  max-width: 100%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
}

.faq-download__link:hover img:last-of-type {
  opacity: 0;
}

.faq-download__link img {
  float: right;
  padding: 9.5px 0;
  position: absolute;
  right: 20px;
  top: 0;
  transition: 0.15s opacity;
  -webkit-transition: 0.15s opacity;
  -moz-transition: 0.15s opacity;
  -ms-transition: 0.15s opacity;
  -o-transition: 0.15s opacity;
}

@media screen and (max-width: 1024px) {
  .page-template-page-private-affairs .vertical-first {
    margin-bottom: 30px;
  }
  .page-template-page-private-affairs hr.vertical:before {
    height: 110px;
  }
  div[id*="recaptcha"] {
    display: block;
    margin-right: 0;
    margin-top: 34px;
    position: relative;
    left: 50%;
    max-width: 100%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    width: 304px;
  }
  .hero__image--private-affairs {
    max-width: 292px;
  }
  .private-intro__inner {
    max-width: 600px;
  }
  .private-intro__inner:before, .private-intro__inner:after {
    width: 200px;
  }
  .private-intro__title {
    padding-top: 26px;
    margin-bottom: 8px;
    font-size: 35px;
    letter-spacing: 3px;
  }
  .private-intro__description {
    font-size: 15px;
    line-height: 1.6;
    padding: 0 22px 29px;
    letter-spacing: 1.7px;
  }
  .private-intro__bottom-text {
    font-size: 30px;
  }
  .single-form .wrapper--single-form-container {
    max-width: 720px;
  }
  .single-form__content {
    padding: 0px 63px;
  }
  .single-form__content h1 {
    font-size: 39px;
    line-height: 1;
    padding: 0 160px;
  }
  .single-form__description {
    padding: 0 65px;
  }
  .single-form .wpcf7-not-valid-tip {
    bottom: 10px;
  }
  .single-form div.wpcf7-validation-errors {
    margin-right: -40px;
    margin-left: -40px;
  }
  .single-form textarea[name="message"] + span.wpcf7-not-valid-tip {
    top: 101px;
    right: 14px;
  }
  .single-form #tripleseat_embed_form h2 {
    font-size: 39px;
    margin-bottom: 25px;
    min-width: initial;
  }
  .single-form #tripleseat_embed_form table td {
    width: 100%;
    display: table;
  }
  .single-form #tripleseat_embed_form #lead_contact_preference {
    left: 0;
    top: 29px;
    width: 100%;
  }
  .single-form #tripleseat_embed_form .row_details_header h2 {
    font-size: 30px;
  }
  .single-form #tripleseat_embed_form .row_contact_preference td {
    height: 16px;
  }
  .single-form #tripleseat_embed_form .row_company td:first-of-type label {
    margin-top: 65px;
  }
  .single-form #tripleseat_embed_form #lead_contact_preference {
    top: 23px;
  }
  .single-form #tripleseat_embed_form .location_list {
    margin-right: -5px;
  }
  .single-form #tripleseat_embed_form .row_submit {
    display: block;
  }
  .single-form #tripleseat_embed_form #lead_form_submit {
    display: inline-block;
    text-align: center;
    padding-right: 0;
    width: initial;
    margin-top: 34px;
  }
  .single-form #tripleseat_embed_form #lead_submit {
    margin-left: 0;
    margin-top: 0;
  }
  .single-form #tripleseat_embed_form #lead_additional_information {
    margin-bottom: 0;
  }
  .location-panel__item {
    min-height: initial;
  }
  .location-panel__link {
    font-size: 50px;
  }
}

@media screen and (max-width: 768px) {
  .private-intro__innner {
    max-width: 575px;
  }
  .private-intro__description {
    font-size: 14px;
    padding: 0 36px 29px;
  }
  .slide-index {
    margin-bottom: 11px;
  }
  .single-form__content {
    padding: 0 20px;
  }
  .single-form__content h1 {
    margin-bottom: 12px;
  }
  .single-form input[type="submit"] {
    font-size: 15px;
    border-top: 2px solid #d73532;
    border-bottom: 2px solid #d73532;
    width: 94px;
    line-height: 8px;
  }
  .single-form input[type="submit"]:focus {
    border-top: 2px solid #252525;
    border-bottom: 2px solid #252525;
  }
  .single-form div.wpcf7-response-output {
    margin: 48px 0px 35px;
  }
  .single-form div.wpcf7-validation-errors {
    margin: 15px 0 0;
    padding: 16px 55px;
    line-height: 1.5;
  }
  .single-form #tripleseat_embed_form #lead_submit {
    font-size: 15px;
  }
}

@media screen and (max-width: 600px) {
  .page-template-page-private-affairs .hero {
    height: initial;
  }
  div[id*="recaptcha"] div:first-child {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  .hero__image--private-affairs {
    max-width: 208px;
    padding-bottom: 0;
  }
  .private-intro {
    padding-right: 15px;
    padding-left: 15px;
  }
  .private-intro__inner:before, .private-intro__inner:after {
    width: 120px;
  }
}

@media screen and (max-width: 600px) and (max-width: 500px) {
  .private-intro__inner:before, .private-intro__inner:after {
    width: 100px;
  }
}

@media screen and (max-width: 600px) and (max-width: 400px) {
  .private-intro__inner:before, .private-intro__inner:after {
    width: 60px;
  }
}

@media screen and (max-width: 600px) {
  .private-intro__title {
    font-size: 30px;
    letter-spacing: 2.6px;
    margin-bottom: 10px;
  }
  .private-intro__description {
    font-size: 12px;
    line-height: 2;
    letter-spacing: 1.4px;
    padding: 0 15px 37px;
  }
  .single-form:last-of-type .wrapper--single-form-container {
    margin-top: 25px;
    margin-bottom: 0;
  }
  .single-form .wrapper--single-form-container {
    border: none;
    margin: 0 auto;
  }
  .single-form .wrapper--single-form-container:before, .single-form .wrapper--single-form-container:after {
    display: none;
  }
  .single-form .wrapper--single-form-container__inner {
    border: none;
  }
  .single-form__content {
    padding: 0 15px;
  }
  .single-form__content h1 {
    font-size: 35px;
    margin-bottom: 20px;
    padding: initial;
    max-width: 290px;
    margin: 0 auto;
  }
  .single-form__description {
    font-size: 11px;
    line-height: 1.7;
    letter-spacing: 1.5px;
    padding: 20px 23px;
    margin-bottom: 0;
  }
  .single-form #tripleseat_embed_form h2 {
    font-size: 35px;
  }
  .single-form #tripleseat_embed_form .row_location .location_list label {
    font-size: 12px;
  }
  .single-form #tripleseat_embed_form table td {
    display: block;
    padding-right: 0 !important;
  }
  .single-form #tripleseat_embed_form #lead_contact_preference {
    width: 100%;
  }
  .single-form #tripleseat_embed_form .row_details_header h2 {
    font-size: 27px;
  }
  .single-form #tripleseat_embed_form .row_location td {
    padding-right: 0 !important;
  }
  .single-form #tripleseat_embed_form .row_location .location_list {
    margin-right: 0;
    margin-left: 0;
  }
  .single-form #tripleseat_embed_form .row_location .location_list label {
    font-size: 11px;
    padding-left: 0;
  }
  .location-panel-container {
    margin-top: 10px;
  }
  .location-panel__item {
    float: none;
    width: 100%;
    border: 2px solid #252525;
    border-right: none;
    border-left: none;
    border-top: none;
    background-size: auto 55%;
  }
  .location-panel__item:nth-child(4) {
    border-top: 2px solid #252525;
  }
  .location-panel__link {
    font-size: 38px;
  }
  .faq-download {
    display: none;
  }
}

.our-roots-intro {
  background-image: url("../img/our-roots/texture-paper.jpg");
  padding-top: 273px;
  padding-bottom: 214px;
}

.our-roots-intro__inner {
  border: 3px solid #252525;
  border-bottom: none;
  width: 715px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 30px;
}

.our-roots-intro__inner:before, .our-roots-intro__inner:after {
  content: '';
  width: 160px;
  height: 3px;
  background: #252525;
  position: absolute;
  bottom: 0;
  left: -1px;
}

.our-roots-intro__inner:after {
  left: auto;
  right: -1px;
}

.our-roots-intro h3 {
  text-align: center;
  padding-top: 30px;
  margin-bottom: 14px;
}

.our-roots-intro p {
  text-align: center;
  padding: 0 32px;
  margin: 0 auto;
  margin-bottom: 25px;
  font-size: 18px;
  letter-spacing: 2px;
}

.our-roots-intro__bottom-text {
  font-family: "corner-store-jf", serif;
  font-size: 35px;
  position: absolute;
  bottom: -0.5em;
  width: 100%;
  text-align: center;
}

.our-roots-liberty-section__icon, .our-roots-liberty-section h5 {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.our-roots-liberty-section__icon {
  background-image: url("../img/our-roots/statue-of-liberty.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 149px;
  height: 134px;
  margin-top: 92px;
}

.our-roots-liberty-section__hr {
  width: 285px;
  margin-top: 22px;
  border-width: 2px;
}

.our-roots-liberty-section h5 {
  width: 360px;
  margin-top: 20px;
  text-align: center;
}

.our-roots-liberty-section__image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 469px;
}

.our-roots-contrasted-text-section {
  background-color: #252525;
  padding-top: 199px;
  padding-bottom: 192px;
}

.our-roots-contrasted-text-section__hr {
  width: 518px;
}

.our-roots-contrasted-text-section h3 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  text-align: center;
  margin-top: 32px;
}

.our-roots-buddy-holly-section {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding-top: 136px;
  padding-bottom: 199px;
}

.our-roots-buddy-holly-section__inner {
  position: relative;
  left: 55%;
  width: 45%;
  max-width: 645px;
  text-align: center;
}

.our-roots-buddy-holly-section__top-title {
  width: 375px;
  background-repeat: no-repeat;
  background-size: 100%;
  height: 84px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.our-roots-buddy-holly-section__top-sub-title {
  font-size: 38px;
  letter-spacing: 4.1px;
  margin-top: 9px;
}

.our-roots-buddy-holly-section span {
  font-size: 18px;
  line-height: 1.5;
}

.our-roots-buddy-holly-section__top-text {
  margin-top: 8px;
  position: relative;
}

.our-roots-buddy-holly-section__top-text:before, .our-roots-buddy-holly-section__top-text:after {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-size: 100%;
}

.our-roots-buddy-holly-section__top-text:before {
  background-image: url("../img/our-roots/buddy-holly-bar-left.svg");
  width: 82px;
  height: 21px;
  top: 0;
  left: -95px;
}

.our-roots-buddy-holly-section__top-text:after {
  background-image: url("../img/our-roots/buddy-holly-bar-right.svg");
  width: 84px;
  height: 22px;
  top: 2px;
  right: -95px;
}

.our-roots-buddy-holly-section__bottom-title {
  font-size: 41px;
  letter-spacing: 4.5px;
  margin-top: 198px;
}

.our-roots-buddy-holly-section__hr {
  border-width: 2px;
  width: 267px;
  margin-top: 7px;
  margin-bottom: 6px;
}

.wrapper--our-roots-slider {
  background-image: url("../img/our-roots/texture-paper.jpg");
  padding-top: 60px;
  padding-bottom: 60px;
}

.wrapper--our-roots-slider .slide-index {
  position: relative;
  top: -0.5em;
  line-height: 1;
  margin: 0;
  width: 100%;
}

.wrapper--our-roots-slider .slide-index span {
  font-family: "league-gothic", sans-serif;
  font-size: 18px;
}

.wrapper--our-roots-slider .slide-index__current {
  padding-right: 15px;
}

.wrapper--our-roots-slider .slide-index__total {
  padding-left: 15px;
}

.our-roots-slider {
  background-image: url("../img/our-roots/slider-box.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 100%;
  max-width: 1197px;
  width: 90%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.our-roots-slider, .our-roots-slider .slick-list {
  position: relative;
}

.our-roots-slider:before, .our-roots-slider .slick-list:before {
  content: '';
  display: table-row;
  float: left;
  padding-bottom: 47.96003%;
}

.our-roots-slider:after, .our-roots-slider .slick-list:after {
  content: '';
  display: table;
  clear: both;
}

.our-roots-slider .slick-list, .our-roots-slider .slick-track {
  height: 100%;
}

.our-roots-slider .slick-track {
  position: absolute;
}

.our-roots-slider__quote, .our-roots-slider__source, .our-roots-slider img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.our-roots-slider__quote, .our-roots-slider__source {
  text-align: center;
}

.our-roots-slider__quote {
  font-family: "Bookman BT Roman", serif;
  font-size: 30px;
  letter-spacing: 2px;
  line-height: 1.2;
  text-align: center;
  max-width: 490px;
  height: 130px;
  width: 80%;
  display: table-cell;
  vertical-align: middle;
}

.our-roots-slider__quote-inner {
  width: 80%;
  display: inline-block;
}

.our-roots-slider__slide {
  position: relative;
  top: 50%;
  max-height: 100%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}

.our-roots-slider__slide:nth-child(odd) .our-roots-slider__quote {
  font-family: "league-gothic", sans-serif;
  letter-spacing: 6.1px;
  font-size: 54px;
  font-weight: normal;
  text-transform: uppercase;
}

.our-roots-slider__slide img {
  max-width: 300px;
  margin: 0 auto;
}

.our-roots-slider hr {
  border-width: 2px;
  width: 225px;
  margin-top: 26px;
  margin-bottom: 46px;
}

.our-roots-slider__source {
  font-size: 20px;
  line-height: 1.3em;
}

.our-roots-slider .slick-arrow {
  bottom: 50px;
}

.our-roots-slider .slick-arrow.slick-prev {
  left: 40px;
}

.our-roots-slider .slick-arrow.slick-next {
  right: 40px;
}

.our-roots-moments {
  *zoom: 1;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 870px;
  width: 95%;
  margin-bottom: 100px;
}

.our-roots-moments:before, .our-roots-moments:after {
  display: table;
  content: "";
}

.our-roots-moments:after {
  clear: both;
}

.our-roots-moments__title {
  display: block;
  margin-left: auto;
  margin-right: auto;
  background-image: url("../img/our-roots/moments-title.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 303px;
  height: 78px;
  margin-top: 87px;
  margin-bottom: 38px;
}

.our-roots-moments__title:after {
  content: '';
  background-image: url("../img/our-roots/moments-triangle.svg");
  background-repeat: no-repeat;
  display: block;
  width: 27px;
  height: 23px;
  position: relative;
  left: 50%;
  top: 98px;
  margin-left: -14px;
}

.our-roots-moments__date {
  display: inline-block;
  font-family: "league-gothic", sans-serif;
  letter-spacing: 4px;
  font-size: 23px;
  font-weight: bold;
  border: solid 2px #252525;
  line-height: 19px;
  padding-top: 11px;
  padding-left: 9px;
  padding-right: 6px;
  padding-bottom: 9px;
}

.our-roots-moments__date:empty {
  display: none;
}

.our-roots-moments h3 {
  font-size: 60px;
  line-height: 1;
  letter-spacing: 6px;
  color: #d73532;
  width: 100%;
  margin-top: 19px;
  margin-bottom: 12px;
}

.our-roots-moments img {
  max-width: 90%;
}

.our-roots-moments p {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 1.7px;
  width: 95%;
  margin-top: 11px;
  margin-bottom: 14px;
}

.our-roots-moments hr.vertical:before {
  background: #252525;
  width: 2px;
  margin-left: -1px;
  margin-bottom: 0;
  top: 0;
}

.our-roots-moments hr.vertical:after {
  display: none;
}

.our-roots-moments__item {
  width: 100%;
  clear: left;
  float: left;
  margin-top: 36px;
}

.our-roots-moments__item:first-child {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
}

.our-roots-moments__item:first-child, .our-roots-moments__item:first-child hr.vertical:before {
  height: 468px;
}

.our-roots-moments__item:first-child .our-roots-moments__item-inner, .our-roots-moments__item:first-child .our-roots-moments__item-inner-image-wrapper {
  position: relative;
  top: 50%;
  max-height: 100%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}

.our-roots-moments__item-inner, .our-roots-moments__item-inner-image-wrapper {
  width: 50%;
}

.our-roots-moments__item-inner hr {
  border-width: 1px;
  border-color: #252525;
  max-width: 400px;
  width: 95%;
}

.our-roots-moments__item:last-child {
  background-image: url("../img/our-roots/moments-sparkle-bottom.svg");
  background-repeat: no-repeat;
  background-position: bottom center;
  padding-bottom: 53px;
}

.our-roots-moments__item:last-child h3 {
  background-image: url("../img/our-roots/moments-sparkle-top.svg");
  background-repeat: no-repeat;
  background-position: top center;
  padding-top: 74px;
  margin-top: 50px;
}

.our-roots-moments__item_right, .our-roots-moments__item_left {
  position: relative;
  padding-top: 36px;
  padding-bottom: 36px;
}

.our-roots-moments__item_right hr.vertical, .our-roots-moments__item_left hr.vertical {
  top: 0;
  bottom: 0;
  position: absolute;
  left: 50%;
  width: 2px;
}

.our-roots-moments__item_right hr.vertical:before, .our-roots-moments__item_left hr.vertical:before {
  height: 100%;
}

.our-roots-moments__item_left .our-roots-moments__item-inner {
  float: left;
  padding-right: 35px;
}

.our-roots-moments__item_left .our-roots-moments__item-inner .our-roots-moments__date, .our-roots-moments__item_left .our-roots-moments__item-inner h3, .our-roots-moments__item_left .our-roots-moments__item-inner p, .our-roots-moments__item_left .our-roots-moments__item-inner hr {
  float: right;
  clear: right;
}

.our-roots-moments__item_left .our-roots-moments__item-inner h3, .our-roots-moments__item_left .our-roots-moments__item-inner p {
  text-align: right;
}

.our-roots-moments__item_left .our-roots-moments__item-inner h3 {
  margin-right: -7px;
}

.our-roots-moments__item_left .our-roots-moments__item-inner-image-wrapper {
  float: right;
}

.our-roots-moments__item_left .our-roots-moments__item-inner-image-wrapper img {
  float: left;
  margin-left: 35px;
}

.our-roots-moments__item_right .our-roots-moments__item-inner {
  float: right;
  padding-left: 35px;
}

.our-roots-moments__item_right .our-roots-moments__item-inner .our-roots-moments__date, .our-roots-moments__item_right .our-roots-moments__item-inner h3, .our-roots-moments__item_right .our-roots-moments__item-inner p, .our-roots-moments__item_right .our-roots-moments__item-inner hr {
  float: left;
  clear: left;
}

.our-roots-moments__item_right .our-roots-moments__item-inner h3, .our-roots-moments__item_right .our-roots-moments__item-inner p {
  text-align: left;
}

.our-roots-moments__item_right .our-roots-moments__item-inner-image-wrapper {
  float: left;
}

.our-roots-moments__item_right .our-roots-moments__item-inner-image-wrapper img {
  float: right;
  margin-right: 35px;
}

.our-roots-moments__item_right + .our-roots-moments__item_left, .our-roots-moments__item_left + .our-roots-moments__item_right, .our-roots-moments__item_left + .our-roots-moments__item_left, .our-roots-moments__item_right + .our-roots-moments__item_right {
  padding-top: 64px;
  margin-top: 0;
}

.our-roots-moments__item_center {
  text-align: center;
}

.our-roots-moments__item_center .our-roots-moments__item-inner, .our-roots-moments__item_center h3, .our-roots-moments__item_center p, .our-roots-moments__item_center img, .our-roots-moments__item_center hr {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.our-roots-moments__item_center:nth-child(2) .our-roots-moments__item-inner p, .our-roots-moments__item_center:nth-child(2) .our-roots-moments__item-inner hr, .our-roots-moments__item_center:nth-child(3) .our-roots-moments__item-inner p, .our-roots-moments__item_center:nth-child(3) .our-roots-moments__item-inner hr {
  width: 365px;
}

.our-roots-moments__item_center:nth-child(2) .our-roots-moments__item-inner h3, .our-roots-moments__item_center:nth-child(3) .our-roots-moments__item-inner h3 {
  width: 258px;
}

.our-roots-moments__item_center .our-roots-moments__item-inner {
  width: 100%;
}

.our-roots-moments__item_center .our-roots-moments__item-inner hr {
  max-width: none;
  width: 532px;
}

.our-roots-moments__item_center h3 {
  width: 100%;
}

.our-roots-moments__item_center p {
  width: 514px;
}

.our-roots-moments__item_center hr.vertical, .our-roots-moments__item_center hr.vertical:before {
  height: 110px;
}

.our-roots-moments__item_center hr.vertical__visible-under-another-centered-moment {
  display: none;
}

.our-roots-moments__item_center img {
  margin-top: 36px;
}

.our-roots-moments__item_center img + .our-roots-moments__item-inner {
  margin-top: 36px;
}

.our-roots-moments__item_center + .our-roots-moments__item_center hr.vertical__visible-under-another-centered-moment {
  display: block;
  margin-bottom: 36px;
}

.our-roots-moments__half-vertical, .our-roots-moments__half {
  float: left;
  clear: left;
  position: relative;
  left: 50%;
}

.our-roots-moments__half {
  background-image: url("../img/our-roots/moments-half.svg");
  width: 53px;
  height: 63px;
  margin-top: 26px;
  margin-left: -18px;
  margin-bottom: 28px;
}

.our-roots-moments hr.our-roots-moments__half-vertical {
  margin-left: -1px;
}

.our-roots-moments hr.our-roots-moments__half-vertical, .our-roots-moments hr.our-roots-moments__half-vertical:before {
  height: 84px;
}

.our-roots-moments hr.our-roots-moments__half-vertical_first {
  margin-top: 36px;
}

@media screen and (max-width: 1024px) {
  .page-template-page-our-roots hr.hero-vertical:before {
    height: 110px;
  }
  .our-roots-intro {
    padding-top: 245px;
    padding-bottom: 184px;
  }
  .our-roots-intro h3 {
    font-size: 45px;
    letter-spacing: 3.9px;
  }
  .our-roots-intro p {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 2px;
  }
  .our-roots-liberty-section__icon {
    width: 159px;
    height: 142px;
    margin-top: 88px;
  }
  .our-roots-liberty-section__hr {
    width: 300px;
    border-width: 3px;
    margin-top: 34px;
  }
  .our-roots-liberty-section h5 {
    margin-top: 25px;
    line-height: 1.3;
    width: 100%;
    padding: 0 5%;
  }
  .our-roots-liberty-section__image {
    height: 490px;
  }
  .our-roots-contrasted-text-section__hr {
    width: 630px;
  }
  .our-roots-buddy-holly-section {
    padding-top: 192px;
    padding-bottom: 286px;
  }
  .our-roots-buddy-holly-section__inner {
    width: 75%;
    left: 25%;
    max-width: none;
  }
  .our-roots-buddy-holly-section__top-title {
    width: 516px;
    height: 112px;
  }
  .our-roots-buddy-holly-section__top-sub-title {
    font-size: 50px;
    letter-spacing: 5.5px;
    margin-top: 20px;
  }
  .our-roots-buddy-holly-section__top-text:before, .our-roots-buddy-holly-section__top-text:after {
    height: 27px;
  }
  .our-roots-buddy-holly-section__top-text:before {
    width: 107px;
    left: -120px;
  }
  .our-roots-buddy-holly-section__top-text:after {
    width: 110px;
    right: -120px;
  }
  .our-roots-buddy-holly-section span {
    font-size: 24px;
    letter-spacing: 2.7px;
  }
  .our-roots-buddy-holly-section__bottom-title {
    font-size: 55px;
    letter-spacing: 6px;
    margin-top: 268px;
  }
  .our-roots-buddy-holly-section__hr {
    width: 356px;
    border-width: 3px;
    margin-top: 8px;
    margin-bottom: 9px;
  }
  .wrapper--our-roots-slider {
    *zoom: 1;
    padding-top: 81px;
    padding-bottom: 94px;
  }
  .wrapper--our-roots-slider:before, .wrapper--our-roots-slider:after {
    display: table;
    content: "";
  }
  .wrapper--our-roots-slider:after {
    clear: both;
  }
  .wrapper--our-roots-slider .slide-index {
    top: -0.7em;
    float: left;
  }
  .wrapper--our-roots-slider .slide-index span {
    font-size: 25px;
  }
  .our-roots-slider {
    *zoom: 1;
    background-image: url("../img/our-roots/slider-box-tablet.svg");
    width: 94%;
    float: left;
    margin-left: 3%;
    height: auto;
    background-size: 100%;
    padding-top: 0;
  }
  .our-roots-slider:before, .our-roots-slider:after {
    display: table;
    content: "";
  }
  .our-roots-slider:after {
    clear: both;
  }
  .our-roots-slider, .our-roots-slider .slick-list {
    position: relative;
  }
  .our-roots-slider:before, .our-roots-slider .slick-list:before {
    content: '';
    display: table-row;
    float: left;
    padding-bottom: 81.07822%;
  }
  .our-roots-slider:after, .our-roots-slider .slick-list:after {
    content: '';
    display: table;
    clear: both;
  }
  .our-roots-slider hr {
    width: 300px;
    border-width: 3px;
    margin-top: 32px;
    margin-bottom: 65px;
  }
  .our-roots-slider img {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
  }
  .our-roots-slider .our-roots-slider__slide {
    position: relative;
    top: 50%;
    max-height: 100%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    overflow: visible;
  }
  .our-roots-slider .our-roots-slider__slide:nth-child(odd) .our-roots-slider__quote {
    font-family: "Bookman BT Roman", serif;
    font-size: 30px;
    letter-spacing: 2px;
    line-height: 1.2;
    text-align: center;
    text-transform: none;
    font-size: 42px;
    letter-spacing: 3px;
  }
  .our-roots-slider .our-roots-slider__slide:nth-child(even) .our-roots-slider__quote {
    font-family: "league-gothic", sans-serif;
    letter-spacing: 6.1px;
    font-size: 54px;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 72px;
    letter-spacing: 8.1px;
  }
  .our-roots-slider .our-roots-slider__slide .our-roots-slider__quote {
    width: 100%;
    display: block;
    height: auto;
    left: 0;
  }
  .our-roots-slider .our-roots-slider__slide .our-roots-slider__quote-inner {
    max-width: 490px;
    display: inline-block;
  }
  .our-roots-slider .our-roots-slider__slide .our-roots-slider__source {
    font-size: 28px;
  }
  .our-roots-slider .slick-arrow {
    bottom: 8%;
  }
  .our-roots-slider .slick-arrow.slick-next {
    right: 6%;
  }
  .our-roots-slider .slick-arrow.slick-prev {
    left: 6%;
  }
}

@media screen and (max-width: 768px) {
  .our-roots-intro {
    padding-top: 270px;
    padding-bottom: 192px;
  }
  .our-roots-intro__inner {
    width: 95%;
  }
  .our-roots-intro__inner:before, .our-roots-intro__inner:after {
    width: 120px;
  }
  .our-roots-intro__inner p {
    width: 90%;
  }
}

@media screen and (max-width: 768px) and (max-width: 650px) {
  .our-roots-intro__bottom-text {
    font-size: 30px;
  }
}

@media screen and (max-width: 768px) {
  .our-roots-liberty-section__icon {
    width: 210px;
    height: 187px;
    margin-top: 149px;
  }
  .our-roots-liberty-section__hr {
    width: 368px;
  }
  .our-roots-liberty-section h5 {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: 5.5px;
    max-width: 490px;
    padding: 0;
    margin-top: 32px;
    margin-bottom: 160px;
  }
  .our-roots-liberty-section__image {
    height: 642px;
  }
  .our-roots-contrasted-text-section {
    padding-top: 266px;
  }
  .our-roots-contrasted-text-section h3 {
    font-size: 40px;
    letter-spacing: 4.4px;
  }
  .our-roots-contrasted-text-section__hr {
    max-width: 580px;
    width: 90%;
    border-width: 4px;
  }
  .our-roots-buddy-holly-section {
    padding-top: 216px;
    padding-bottom: 166px;
  }
  .our-roots-buddy-holly-section__inner {
    width: 100%;
    left: 0;
  }
  .our-roots-buddy-holly-section__bottom-title {
    margin-top: 328px;
  }
  .wrapper--our-roots-slider {
    *zoom: 1;
    padding-top: 81px;
    padding-bottom: 94px;
  }
  .wrapper--our-roots-slider:before, .wrapper--our-roots-slider:after {
    display: table;
    content: "";
  }
  .wrapper--our-roots-slider:after {
    clear: both;
  }
  .wrapper--our-roots-slider .slide-index {
    top: -4em;
  }
  .our-roots-slider {
    background-image: url("../img/our-roots/slider-box-small-tablet.svg");
  }
  .our-roots-slider, .our-roots-slider .slick-list {
    position: relative;
  }
  .our-roots-slider:before, .our-roots-slider .slick-list:before {
    content: '';
    display: table-row;
    float: left;
    padding-bottom: 107.26257%;
  }
  .our-roots-slider:after, .our-roots-slider .slick-list:after {
    content: '';
    display: table;
    clear: both;
  }
  .our-roots-slider .slick-arrow {
    bottom: 6%;
  }
  .our-roots-slider .slick-arrow.slick-next {
    right: 6%;
  }
  .our-roots-slider .slick-arrow.slick-prev {
    left: 6%;
  }
  .our-roots-moments__title {
    width: 282px;
    height: 70px;
  }
  .our-roots-moments__item:first-child {
    height: auto;
    margin-top: 87px;
  }
  .our-roots-moments__item:first-child .our-roots-moments__item-inner, .our-roots-moments__item:first-child .our-roots-moments__item-inner-image-wrapper {
    top: 0;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
  }
  .our-roots-moments__item:first-child hr.vertical, .our-roots-moments__item:first-child hr.vertical:before {
    height: 62px;
  }
  .our-roots-moments__item:first-child .vertical.small-tablet-hidden {
    display: block;
    position: absolute;
    top: -78px;
  }
  .our-roots-moments hr.vertical {
    clear: both;
  }
  .our-roots-moments hr.vertical, .our-roots-moments hr.vertical:before {
    height: 62px;
  }
  .our-roots-moments hr.vertical__visible-under-center-moment {
    display: none;
    margin-bottom: 36px;
  }
  .our-roots-moments__item_center p {
    width: 382px;
  }
  .our-roots-moments__item_right + .our-roots-moments__item_left, .our-roots-moments__item_left + .our-roots-moments__item_right, .our-roots-moments__item_left + .our-roots-moments__item_left, .our-roots-moments__item_right + .our-roots-moments__item_right {
    padding-top: 36px;
  }
  .our-roots-moments__item_center + .our-roots-moments__item_left .vertical__visible-under-center-moment, .our-roots-moments__item_center + .our-roots-moments__item_right .vertical__visible-under-center-moment {
    display: block;
  }
  .our-roots-moments__item_left, .our-roots-moments__item_right {
    padding-top: 0;
    padding-bottom: 0;
  }
  .our-roots-moments__item_left hr.vertical, .our-roots-moments__item_right hr.vertical {
    position: static;
    margin-left: auto;
    margin-right: auto;
  }
  .our-roots-moments__item_left hr.vertical:before, .our-roots-moments__item_right hr.vertical:before {
    position: relative;
  }
  .our-roots-moments__item_left .our-roots-moments__item-inner, .our-roots-moments__item_left .our-roots-moments__item-inner-image-wrapper, .our-roots-moments__item_right .our-roots-moments__item-inner, .our-roots-moments__item_right .our-roots-moments__item-inner-image-wrapper {
    width: 100%;
    padding: 0;
  }
  .our-roots-moments__item_left .our-roots-moments__item-inner, .our-roots-moments__item_right .our-roots-moments__item-inner {
    margin-bottom: 36px;
  }
  .our-roots-moments__item_left .our-roots-moments__item-inner-image-wrapper, .our-roots-moments__item_right .our-roots-moments__item-inner-image-wrapper {
    margin-bottom: 36px;
    text-align: center;
  }
  .our-roots-moments__item_left .our-roots-moments__item-inner-image-wrapper img, .our-roots-moments__item_right .our-roots-moments__item-inner-image-wrapper img {
    display: inline;
    margin: 0;
    float: none;
  }
  .our-roots-moments__item_left .our-roots-moments__item-inner .our-roots-moments__date, .our-roots-moments__item_left .our-roots-moments__item-inner h3, .our-roots-moments__item_left .our-roots-moments__item-inner p, .our-roots-moments__item_left .our-roots-moments__item-inner img, .our-roots-moments__item_left .our-roots-moments__item-inner hr, .our-roots-moments__item_right .our-roots-moments__item-inner .our-roots-moments__date, .our-roots-moments__item_right .our-roots-moments__item-inner h3, .our-roots-moments__item_right .our-roots-moments__item-inner p, .our-roots-moments__item_right .our-roots-moments__item-inner img, .our-roots-moments__item_right .our-roots-moments__item-inner hr {
    text-align: center;
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .our-roots-moments__item_left .our-roots-moments__item-inner .small-tablet-hidden, .our-roots-moments__item_right .our-roots-moments__item-inner .small-tablet-hidden {
    display: none;
  }
  .our-roots-moments__item_left .our-roots-moments__item-inner h3, .our-roots-moments__item_left .our-roots-moments__item-inner p, .our-roots-moments__item_left .our-roots-moments__item-inner hr, .our-roots-moments__item_right .our-roots-moments__item-inner h3, .our-roots-moments__item_right .our-roots-moments__item-inner p, .our-roots-moments__item_right .our-roots-moments__item-inner hr {
    width: 382px;
  }
  .our-roots-moments__item_left .our-roots-moments__item-inner .our-roots-moments__date, .our-roots-moments__item_right .our-roots-moments__item-inner .our-roots-moments__date {
    display: inline-block;
    position: relative;
    left: 50%;
    max-width: 100%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
  }
}

@media screen and (max-width: 600px) {
  .page-template-page-our-roots hr.hero-vertical {
    top: 115px;
  }
  .page-template-page-our-roots hr.hero-vertical:before {
    height: 64px;
  }
  .our-roots-intro {
    padding-top: 57%;
    padding-bottom: 27%;
  }
  .our-roots-intro__inner:before, .our-roots-intro__inner:after {
    width: 80px;
  }
}

@media screen and (max-width: 600px) and (max-width: 500px) {
  .our-roots-intro__inner:before, .our-roots-intro__inner:after {
    width: 60px;
  }
}

@media screen and (max-width: 600px) and (max-width: 450px) {
  .our-roots-intro__inner:before, .our-roots-intro__inner:after {
    width: 25px;
  }
}

@media screen and (max-width: 600px) {
  .our-roots-intro h3 {
    font-size: 30px;
    letter-spacing: 2.6px;
    margin-bottom: 0.3em;
    padding-top: 0.7em;
  }
  .our-roots-intro__inner p {
    font-size: 12px;
    line-height: 1.9;
    letter-spacing: 1.4px;
    margin-bottom: 1.8em;
    padding: 0;
  }
  .our-roots-intro__bottom-text {
    font-size: 30px;
    line-height: 1.2;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
  }
}

@media screen and (max-width: 600px) and (max-width: 450px) {
  .our-roots-intro__bottom-text {
    font-size: 25px;
  }
}

@media screen and (max-width: 600px) {
  .our-roots-liberty-section__icon {
    width: 34%;
    position: relative;
    height: auto;
    margin-top: 22%;
  }
  .our-roots-liberty-section__icon:before {
    content: '';
    display: table-row;
    float: left;
    padding-bottom: 89.93289%;
  }
  .our-roots-liberty-section__icon:after {
    content: '';
    display: table;
    clear: both;
  }
  .our-roots-liberty-section__hr {
    width: 71%;
    margin-top: 10%;
  }
  .our-roots-liberty-section h5 {
    width: 80%;
    font-size: 25px;
    line-height: 1.3;
    letter-spacing: 2.7px;
    margin-top: 7%;
    margin-bottom: 14%;
  }
  .our-roots-liberty-section__image {
    position: relative;
    height: auto;
  }
  .our-roots-liberty-section__image:before {
    content: '';
    display: table-row;
    float: left;
    padding-bottom: 79.0625%;
  }
  .our-roots-liberty-section__image:after {
    content: '';
    display: table;
    clear: both;
  }
  .our-roots-contrasted-text-section {
    padding-top: 25%;
    padding-bottom: 25%;
  }
  .our-roots-contrasted-text-section h3 {
    font-size: 30px;
    letter-spacing: 3.3px;
    width: 80%;
    max-width: 260px;
    margin-top: 10%;
  }
  .our-roots-contrasted-text-section br {
    content: '';
    display: block;
    height: 50px;
  }
  .our-roots-buddy-holly-section {
    padding-top: 60%;
    padding-bottom: 43%;
  }
  .our-roots-buddy-holly-section__top-title {
    width: 82%;
    position: relative;
    height: auto;
  }
  .our-roots-buddy-holly-section__top-title:before {
    content: '';
    display: table-row;
    float: left;
    padding-bottom: 21.86667%;
  }
  .our-roots-buddy-holly-section__top-title:after {
    content: '';
    display: table;
    clear: both;
  }
  .our-roots-buddy-holly-section__top-sub-title {
    font-size: 30px;
    letter-spacing: 6.1px;
    width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4%;
  }
  .our-roots-buddy-holly-section span {
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 3.7px;
  }
  .our-roots-buddy-holly-section__top-text {
    width: 52%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5%;
  }
  .our-roots-buddy-holly-section__top-text:before, .our-roots-buddy-holly-section__top-text:after {
    width: 40%;
  }
  .our-roots-buddy-holly-section__top-text:before {
    top: 57%;
    left: -32%;
  }
  .our-roots-buddy-holly-section__top-text:after {
    top: 59%;
    right: -26%;
  }
  .our-roots-buddy-holly-section__bottom-title {
    margin-top: 41%;
    font-size: 26px;
    letter-spacing: 6.1px;
  }
  .our-roots-buddy-holly-section__hr {
    width: 67%;
    border-width: 1px;
    margin-top: 3%;
    margin-bottom: 3%;
  }
  .wrapper--our-roots-slider {
    padding-top: 16%;
    padding-bottom: 16%;
  }
  .wrapper--our-roots-slider .slide-index {
    top: 1.6em;
  }
  .wrapper--our-roots-slider .slide-index span {
    font-size: 20px;
  }
  .our-roots-slider {
    width: 82%;
    border-bottom: 2px solid #000;
    margin-left: 9%;
    background-image: none;
  }
  .our-roots-slider, .our-roots-slider .slick-list {
    position: relative;
  }
  .our-roots-slider:before, .our-roots-slider .slick-list:before {
    content: '';
    display: table-row;
    float: left;
    padding-bottom: 84.79087%;
  }
  .our-roots-slider:after, .our-roots-slider .slick-list:after {
    content: '';
    display: table;
    clear: both;
  }
  .our-roots-slider .slick-arrow {
    bottom: -54px;
  }
  .our-roots-slider .slick-arrow, .our-roots-slider .slick-arrow:before {
    width: 40px;
    height: 40px;
    background-size: 80px;
  }
  .our-roots-slider .slick-arrow:before {
    background-position: -40px;
  }
  .our-roots-slider .slick-arrow.slick-next {
    right: 0;
  }
  .our-roots-slider .slick-arrow.slick-prev {
    left: 0;
  }
  .our-roots-slider .our-roots-slider__slide .our-roots-slider__quote {
    margin-bottom: 10%;
  }
  .our-roots-slider .our-roots-slider__slide:nth-child(even) .our-roots-slider__quote {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 3.3px;
  }
  .our-roots-slider .our-roots-slider__slide:nth-child(odd) .our-roots-slider__quote {
    font-size: 14px;
    letter-spacing: 1px;
  }
  .our-roots-slider hr.mobile-only {
    width: 53%;
    margin-top: 0;
    margin-bottom: 5%;
    top: -50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .our-roots-slider img {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    height: 7vw;
  }
  .our-roots-moments {
    width: 100%;
  }
  .our-roots-moments__item-inner h3, .our-roots-moments__item-inner p, .our-roots-moments__item-inner hr {
    width: 87%;
  }
  .our-roots-moments__item-inner hr {
    border-width: 2px;
    max-width: none;
  }
  .our-roots-moments__item_center .our-roots-moments__item-inner h3, .our-roots-moments__item_center .our-roots-moments__item-inner p, .our-roots-moments__item_center .our-roots-moments__item-inner hr, .our-roots-moments__item_center:nth-child(2) .our-roots-moments__item-inner h3, .our-roots-moments__item_center:nth-child(2) .our-roots-moments__item-inner p, .our-roots-moments__item_center:nth-child(2) .our-roots-moments__item-inner hr, .our-roots-moments__item_center:nth-child(3) .our-roots-moments__item-inner h3, .our-roots-moments__item_center:nth-child(3) .our-roots-moments__item-inner p, .our-roots-moments__item_center:nth-child(3) .our-roots-moments__item-inner hr {
    width: 87%;
  }
  .our-roots-moments__item_left .our-roots-moments__item-inner h3, .our-roots-moments__item_left .our-roots-moments__item-inner p, .our-roots-moments__item_left .our-roots-moments__item-inner hr, .our-roots-moments__item_right .our-roots-moments__item-inner h3, .our-roots-moments__item_right .our-roots-moments__item-inner p, .our-roots-moments__item_right .our-roots-moments__item-inner hr {
    width: 87%;
  }
  .our-roots-moments__title {
    width: 92%;
    position: relative;
    height: auto;
  }
  .our-roots-moments__title:before {
    content: '';
    display: table-row;
    float: left;
    padding-bottom: 25.41254%;
  }
  .our-roots-moments__title:after {
    content: '';
    display: table;
    clear: both;
  }
  .our-roots-moments__title:after {
    top: 20px;
  }
  .our-roots-moments__item:first-child hr.vertical.small-tablet-hidden {
    top: -110px;
  }
  .our-roots-moments__item:first-child hr.vertical.small-tablet-hidden, .our-roots-moments__item:first-child hr.vertical.small-tablet-hidden:before {
    height: 4em;
  }
  .our-roots-moments__date {
    font-size: 20px;
    padding-top: 2.2%;
    padding-left: 3%;
    padding-right: 2%;
    padding-bottom: 2%;
  }
  .our-roots-moments h3 {
    font-size: 40px;
    letter-spacing: 4px;
  }
  .our-roots-moments p {
    font-size: 12px;
    letter-spacing: 1.4px;
  }
}

.page-template-page-events .events {
  padding-top: 106px;
}

.events .event {
  margin-top: 80px;
  margin-bottom: 80px;
}

.events .event__image-col {
  padding: 0 0 0 10px;
}

.events .event__text-col {
  padding: 0 10px 0 36px;
}

.events .event:nth-child(even) .event__image-col {
  float: right;
  padding: 0 10px 0 0;
}

.events .event:nth-child(even) .event__text-col {
  float: left;
  padding: 0 36px 0 10px;
}

.events .event__image-wrap {
  position: relative;
  text-align: center;
}

.events .event__image-overlay {
  position: absolute;
  color: white;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3) url("../img/sidecar_events_date_box.svg") center no-repeat;
  background-size: 200px;
}

.events .event__day {
  position: relative;
  left: -6px;
  font-size: 52px;
  line-height: 1;
}

.events .event__month {
  font-size: 36px;
}

.events .event__title {
  line-height: 1;
  margin-bottom: 3px;
  letter-spacing: 2.5px;
}

.events .event__time, .events .event__location {
  font-size: 22px;
  margin-bottom: 11px;
}

.events .event__content {
  border-top: 2px solid #252525;
  border-bottom: 2px solid #252525;
  float: left;
  width: 100%;
}

.events .event__content p {
  font-size: 15px;
  line-height: 2;
  margin: 10px auto;
}

.events .event__menu {
  font-size: 23px;
  letter-spacing: 2.5px;
  border-top: 2px solid #d73532;
  border-bottom: 2px solid #d73532;
  background: url("../img/events-menu-download.svg") 95% center no-repeat;
  float: left;
  line-height: 34px;
  padding-left: 10px;
  padding-right: 44px;
  margin-top: 7px;
  margin-bottom: 32px;
}

.events .event__share-text, .events .event__facebook, .events .event__twitter {
  display: block;
  float: right;
}

.events .event__share-text {
  font-size: 23px;
  letter-spacing: 2.5px;
  margin-top: 16px;
}

.events .event__facebook {
  width: 9px;
  height: 22px;
  border-right: 2px solid #d73532;
  margin-left: 21px;
  margin-right: 11px;
  padding-right: 22px;
  margin-top: 17px;
}

.events .event__facebook:hover #icon-facebook polygon {
  fill: #d73532;
}

.events .event__twitter {
  width: 23px;
  height: 19px;
  margin-top: 18px;
}

.events .event__twitter:hover #icon-twitter polygon {
  fill: #d73532;
}

@media screen and (max-width: 1024px) {
  .events .event {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .events .event__image-col,
  .events .event:nth-child(even) .event__image-col {
    padding: 0;
  }
  .events .event__text-col,
  .events .event:nth-child(even) .event__text-col {
    padding: 0 30px;
  }
  .events .event__image-overlay {
    background-size: 150px;
  }
  .events .event__day {
    font-size: 40px;
    line-height: 0.8;
  }
  .events .event__month {
    font-size: 30px;
    line-height: 1;
  }
  .events .event__title {
    font-size: 30px;
  }
  .events .event__content p {
    font-size: 12px;
    line-height: 1.8;
  }
}

@media screen and (max-width: 768px) {
  .events .event__image-col,
  .events .event:nth-child(even) .event__image-col {
    padding-bottom: 24px;
  }
}

@media screen and (max-width: 600px) {
  .events .event {
    margin-top: 49px;
  }
  .events .event__image-col {
    padding: 0 30px;
  }
  .events .event:nth-child(even) .event__image-col {
    padding: 0 30px;
  }
  .events .event__image-overlay {
    background-size: 50%;
  }
  .events .event__title {
    font-size: 26px;
    margin-top: 20px;
    margin-bottom: 0;
  }
  .events .event__time, .events .event__location {
    font-size: 20px;
  }
  .events .event__content p {
    font-size: 11px;
    line-height: 2;
  }
  .events .event__menu {
    width: 100%;
    background-position: 84% center;
    text-align: center;
    margin-bottom: 25px;
  }
  .events .event__share-text {
    float: left;
  }
}

#sidecarSection {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 800px;
  display: table;
  background-size: 100%;
  background-repeat: repeat;
  position: relative;
  overflow: hidden;
}

#sidecarSection::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
}

#sidecarSection .middle {
  z-index: 3;
  padding-top: 50px;
  color: #FFF;
  width: 100%;
  position: relative;
}

.scLoginWrap {
  position: relative;
  z-index: 3;
  margin: 4rem auto;
}

#sidecarContent {
  position: relative;
  z-index: 3;
  padding: 50px 0 0;
  background-size: 100%;
  background-repeat: repeat;
  color: #FFF;
}

#sidecarContent::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
}

.sidecarLogin {
  box-sizing: border-box;
  background: #FFF;
  color: #000;
  width: 90%;
  max-width: 500px;
  padding: 55px;
  display: block;
  margin: 6rem auto;
}

@media (max-width: 600px) {
  .sidecarLogin {
    padding: 55px 20px;
  }
}

.sidecarLogin label {
  font-size: 18px;
  display: block;
  width: 100%;
  margin: 0 0 0.5rem;
}

.sidecarLogin input, .sidecarLogin select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Bookman BT Roman", serif;
}

.sidecarLogin input[type="text"], .sidecarLogin input[type="password"], .sidecarLogin select {
  display: block;
  background: #FFF;
  border-radius: 0;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d73532;
  padding: 0.5em;
  font-size: 18px;
  margin-bottom: 1rem;
}

.sidecarLogin input[type="submit"] {
  box-sizing: border-box;
  background: #d73532;
  border: 2px solid #d73532;
  color: #FFF;
  font-size: 18px;
  padding: 0.5em 1em;
  margin-top: 1rem;
  -webkit-transition: background 0.2s ease-out, color 0.2s ease-out;
  transition: background 0.2s ease-out, color 0.2s ease-out;
}

.sidecarLogin input[type="submit"]:hover {
  background: #FFF;
  color: #d73532;
}

.sidecar-questionnaire {
  width: 90%;
  max-width: 800px;
  margin: 100px auto;
}

.sidecar-questionnaire form {
  position: relative;
}

.sidecar-questionnaire .hiddenData {
  display: none;
}

.sidecar-questionnaire .slide {
  position: relative;
  display: table;
  width: 100%;
  position: absolute;
  opacity: 0;
  top: 0;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
  z-index: 1;
}

.sidecar-questionnaire .slide.current {
  z-index: 2;
  opacity: 1;
  position: relative;
}

.sidecar-questionnaire div.wpcf7 .ajax-loader {
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.sidecar-questionnaire span.sidecar-pager {
  font-family: "league-gothic", sans-serif;
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 0;
  font-size: 18px;
}

.sidecar-questionnaire p {
  font-size: 36px;
  line-height: 1.3;
  font-family: "corner-store-jf", serif;
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 600px) {
  .sidecar-questionnaire p {
    font-size: 25px;
  }
}

.sidecar-questionnaire textarea {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 11em;
  max-width: 390px;
  background: #FFF;
  border: 0;
  padding: 1em;
  font-size: 18px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 2px solid transparent;
  -webkit-transition: outline 0.1s ease-out;
  transition: outline 0.1s ease-out;
  outline-offset: -2px;
}

.sidecar-questionnaire textarea:active, .sidecar-questionnaire textarea:focus {
  outline: 2px solid #d73532;
}

.sidecar-questionnaire .wpcf7-form-control-wrap {
  float: left;
  width: 100%;
  margin-bottom: 1rem;
}

.sidecar-questionnaire span.wpcf7-not-valid-tip {
  font-size: 16px;
  font-family: "Bookman BT Roman", serif;
  margin: 0.25rem 0;
}

.sidecar-questionnaire .wpcf7-list-item {
  display: block;
  position: relative;
  width: 100%;
  max-width: 390px;
  margin: 0 auto 1rem;
}

.sidecar-questionnaire .wpcf7-list-item:last-of-type {
  margin-bottom: 0;
}

.sidecar-questionnaire .wpcf7-list-item input {
  display: none;
}

.sidecar-questionnaire .wpcf7-list-item span {
  text-transform: uppercase;
  font-family: "Bookman BT Roman", serif;
  width: 100%;
  background: #FFF;
  color: #d73532;
  font-size: 18px;
  display: block;
  padding: 0.5em 1em;
  cursor: pointer;
  -webkit-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
  outline-offset: -2px;
}

.sidecar-questionnaire .wpcf7-list-item span:hover {
  outline: 2px solid #d73532;
}

.sidecar-questionnaire .wpcf7-list-item input[type="radio"]:checked ~ span {
  background: #d73532;
  color: #FFF;
}

.sidecar-questionnaire .wpcf7-mail-sent-ok {
  display: none !important;
}

.sidecar-questionnaire div.wpcf7-response-output {
  font-size: 18px;
  text-align: center;
  width: 90%;
  max-width: 390px;
  margin: 2rem auto 0;
  padding: 1rem;
  box-sizing: border-box;
}

.sidecar-questionnaire input[type="submit"], .sidecar-questionnaire .button {
  text-transform: uppercase;
  font-family: "Bookman BT Roman", serif;
  cursor: pointer;
  font-size: 18px;
  padding: 0.5em 1em;
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  display: table;
  background: #d73532;
  color: #FFF;
  border: 0;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
}

.sidecar-questionnaire input[type="submit"]:hover, .sidecar-questionnaire .button:hover {
  background: #b32623;
}

.sidecarAbout {
  width: 90%;
  max-width: 985px;
  margin: 4rem auto 6rem;
  text-shadow: 0px 0px 20px #000;
}

.sidecarAbout h3 {
  letter-spacing: 0;
  font-size: 48px;
  text-transform: none;
  font-family: "corner-store-jf", serif;
  margin: 0 0 1rem;
}

.sidecarAbout p {
  font-size: 16px;
  margin: 0 0 1rem;
}

.sidecarMenu {
  margin-top: 6rem;
}

.sidecarMenu img {
  margin: 2rem auto;
}

.sidecarMenu .menu-subsections__nav-item.toggled {
  color: #FFF !important;
}

.sidecarMenu * {
  border-color: #FFF !important;
  color: #FFF;
}

.sidecarMenu .menu-subsection:before {
  background: #FFF !important;
}

.sidecarEvents {
  margin: 4rem 0;
}

.sidecarEvents .fc-unthemed td.fc-today {
  background: rgba(255, 255, 255, 0.1);
}

.sidecarEvents .fc-button-primary, .sidecarEvents .fc-button-primary:disabled {
  background: #d73532;
}

.sidecarEvents .fc-button-primary:active, .sidecarEvents .fc-button-primary:focus, .sidecarEvents .fc-button-primary:hover, .sidecarEvents .fc-button-primary:disabled:active, .sidecarEvents .fc-button-primary:disabled:focus, .sidecarEvents .fc-button-primary:disabled:hover {
  background: #b32623 !important;
}

.sidecarEvents .fc-button-primary:active, .sidecarEvents .fc-button-primary:focus, .sidecarEvents .fc-button-primary:disabled:active, .sidecarEvents .fc-button-primary:disabled:focus {
  outline: 0;
  box-shadow: none !important;
  border-color: transparent;
}

.sidecarEvents .fc-title {
  color: transparent;
}

.sidecarEvents .fc-title:before {
  color: #FFF;
  content: 'Busy';
  position: relative;
  display: inline-block;
}

.sidecarEvents .pgc-calendar-wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.sidecarEvents iframe {
  display: block;
  width: 90%;
  max-width: 985px;
  height: 671px;
  margin: 0 auto;
}

.sidecarHours, .sidecarContact {
  position: relative;
  text-align: center;
  font-size: 0;
  width: 90%;
}

.sidecarHours p, .sidecarContact p {
  line-height: 1em;
}

.sidecarHours .splitBlock, .sidecarContact .splitBlock {
  display: inline-block;
  vertical-align: top;
  width: 50%;
}

@media (max-width: 600px) {
  .sidecarHours .splitBlock, .sidecarContact .splitBlock {
    width: 100%;
    margin: 0 0 1rem;
  }
}

.sidecarHours h4, .sidecarContact h4 {
  font-size: 30px;
  font-family: "corner-store-jf", serif;
  margin: 0 0 0.25em;
  letter-spacing: 0;
  text-transform: initial;
}

.sidecarHours p, .sidecarContact p {
  font-family: "league-gothic", sans-serif;
  font-size: 30px;
  letter-spacing: -0.01em;
  margin: 0;
}

.sidecarHours {
  margin: 4rem auto 0;
  max-width: 400px;
}

.sidecarHours img {
  margin: 0 auto;
}

.sidecarHours .sidecarDays {
  margin: 0 auto 2rem;
}

.sidecarHours p span {
  font-family: "Bookman BT Roman", serif;
  display: block;
  font-size: 0.5em;
  font-weight: 100;
}

.sidecarContact {
  margin: 2rem auto 0;
  max-width: 400px;
}

.sidecarContact .splitBlock {
  vertical-align: top;
}

.sidecarContact p {
  display: inline-block;
  position: relative;
  padding-left: 20px;
}

.sidecarContact img {
  position: relative;
  display: block;
  margin: 0 auto 0.5rem;
}

.sidecar-login-form__toggle:hover {
  text-decoration: underline;
}

#sidecarPopup {
  display: none;
  position: fixed;
  color: #FFF;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 25;
  background-size: 100%;
  background-position: center top;
  background-repeat: repeat;
}

#sidecarPopup:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
}

#sidecarPopup .popupContent {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 90%;
  max-width: 800px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

#sidecarPopup .borderedBox {
  max-width: 100%;
  width: 100%;
  margin: 0;
}

#sidecarPopup .popupClose {
  cursor: pointer;
  position: absolute;
  top: -100px;
  line-height: 0.5em;
  z-index: 2;
  font-size: 55px;
  right: -55px;
  display: inline-block;
}

@media (max-width: 600px) {
  #sidecarPopup .popupClose {
    top: 15px;
    right: 5px;
  }
}

#memberSurvey, #memberContent {
  position: relative;
  z-index: 3;
}

#memberSurvey ~ #memberContent {
  display: none;
}

.sidecar-login-form {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  background: #fff;
  z-index: 5000;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 40px 30px;
  border: 17px solid #3a3a3a;
  min-width: 300px;
}

.sidecar-login-form__close {
  border-color: #252525;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}

.sidecar-login-form__close:before, .sidecar-login-form__close:after {
  background-color: #252525;
}

.page-template-page-sidecar footer {
  margin-top: 6rem;
}

@media (max-width: 600px) {
  .page-template-page-sidecar footer {
    margin-top: 2rem;
  }
}

.page-template-page-sidecar .popup-gallery {
  margin-top: 6rem;
}

@media (max-width: 600px) {
  .page-template-page-sidecar .popup-gallery {
    margin-top: 2rem;
  }
}

.page-template-page-sidecar .wrapper--location-form-container {
  margin-top: 4rem;
}

@media (max-width: 600px) {
  .page-template-page-sidecar .wrapper--location-form-container {
    margin-top: 0;
  }
  .page-template-page-sidecar .wrapper--location-form-container .single-form__description {
    margin: 0 auto 1rem;
    padding: 0;
  }
}

.locationInfo {
  display: none;
}

.sidecar-login-form__toggle {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 17px;
  width: 165px;
  text-align: right;
  line-height: 3;
  padding-right: 20px;
  display: inline-block;
  border-top: 3px solid #d73532;
  border-bottom: 3px solid #d73532;
  letter-spacing: 0.7px;
  cursor: pointer;
}

.sidecar-login-form__toggle:before {
  content: '';
  background-image: url("../img/login-key.svg");
  background-size: contain;
  background-position: center 16px;
  height: 100%;
  width: 36px;
  position: absolute;
  background-repeat: no-repeat;
  left: 12px;
}

#loginform {
  position: relative;
}

#loginform p {
  width: 100%;
}

#loginform p label {
  display: none;
}

#loginform p input {
  -webkit-appearance: none;
  border-line: none;
  background: transparent;
  border: none;
  color: #252525;
  font-family: "Bookman BT Roman", serif;
  font-size: 25px;
  line-height: 1.3;
  letter-spacing: 2.8px;
  border-bottom: 2px solid #d73532;
  width: 100%;
}

#loginform p input:-webkit-autofill {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #252525 !important;
}

#loginform p input:-webkit-autofill:hover, #loginform p input:-webkit-autofill:focus, #loginform p input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #252525 !important;
}

#loginform p input:focus {
  border-bottom: 2px solid #252525;
}

#loginform p input[type="submit"] {
  font-size: 20px;
  color: #252525;
  font-family: "Bookman BT Roman", serif;
  line-height: 1.6;
  letter-spacing: 2.8px;
  border-top: 2px solid #d73532;
  border-bottom: 2px solid #d73532;
  cursor: pointer;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
}

#loginform p input[type="submit"]:hover, #loginform p input[type="submit"]:focus {
  color: #d73532;
}

#loginform p input[type="checkbox"] {
  -webkit-appearance: checkbox;
  width: inherit;
}

#loginform p ::-webkit-input-placeholder, #loginform p :-moz-placeholder, #loginform p ::-moz-placeholder, #loginform p :-ms-input-placeholder {
  color: #252525;
}

#loginform p.login-username, #loginform p.login-password {
  margin-bottom: 18px;
  padding-bottom: 6px;
}

#loginform p.login-remember {
  display: inline-block;
  position: absolute;
  left: 140px;
  bottom: 10px;
  width: inherit;
}

#loginform p.login-remember label {
  font-size: 14px;
  display: block;
}

#loginform p.login-submit {
  margin-top: 38px;
  max-width: 120px;
}

.sidecar-scroll {
  font-family: "Bookman BT Roman", serif;
  text-transform: initial;
  font-size: 22px;
  letter-spacing: 0px;
  padding-top: 30px;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
  cursor: pointer;
}

.sidecar-scroll:hover {
  color: #d73532;
}

.sidecar-intro .vertical:before, .sidecar-intro .vertical:after {
  margin-bottom: 55px;
}

.sidecar-intro__inner {
  width: 900px;
  margin: 12rem auto 0;
  position: relative;
  border: 3px solid #000;
  border-bottom: none;
}

.sidecar-intro__inner:before {
  content: '';
  width: 270px;
  height: 3px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: -1px;
}

.sidecar-intro__inner:after {
  content: '';
  width: 270px;
  height: 3px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: -1px;
  left: auto;
  right: -1px;
}

.sidecar-intro__description {
  font-family: "league-gothic", sans-serif;
  text-transform: uppercase;
  text-align: center;
  padding: 47px 20px 42px;
  margin: 0 auto;
  margin-bottom: 25px;
  font-size: 45px;
  letter-spacing: 5px;
  line-height: 1.2;
}

@media (max-width: 600px) {
  .sidecar-intro__description br {
    display: none;
  }
}

.sidecar-intro__bottom-text {
  font-family: "corner-store-jf", serif;
  font-size: 35px;
  position: absolute;
  bottom: -0.5em;
  width: 100%;
  text-align: center;
  left: 0;
}

.sidecar-locations {
  margin: 7rem auto 0;
  z-index: 4000;
  position: relative;
  text-align: center;
}

.sidecar-locations h2 {
  font-size: 60px;
}

@media (max-width: 600px) {
  .sidecar-locations {
    margin: 2rem auto 0;
  }
  .sidecar-locations h2 {
    font-size: 35px;
  }
}

.sidecar-locations .row {
  margin: 0;
}

.sidecar-locations__hours-container {
  width: 400px;
  max-width: 100%;
  margin: 0 auto 150px;
  text-align: center;
}

.sidecar-locations__hours {
  font-size: 16px;
  line-height: 1.7;
  float: left;
  font-style: italic;
  width: 50%;
  margin-top: 10px;
}

.sidecar-locations__hours:first-of-type {
  border-right: 3px solid #d73532;
}

.sidecar-locations__menu {
  margin-bottom: 50px;
}

.sidecar-location {
  padding: 125px 0 38px;
  height: auto;
  margin-bottom: 40px;
  width: 35%;
}

.sidecar-location:first-child {
  margin-left: 15%;
}

.sidecar-location:first-child .sidecar-location__image {
  background-image: url(../img/locations/icon-sidecar-thirdave.svg);
}

.sidecar-location:first-child .location-address {
  text-align: right;
  margin-right: 110px;
}

.sidecar-location:last-child .sidecar-location__border-right {
  display: none;
}

.sidecar-location:last-child .sidecar-location__image {
  background-image: url(../img/locations/icon-sidecar-washington.svg);
}

.sidecar-location:last-child .location-address {
  text-align: left;
  margin-left: 110px;
}

.sidecar-location__phone, .sidecar-location__address {
  font-size: 23px;
  line-height: 1.3;
}

.sidecar-location__phone {
  margin-bottom: 24px;
}

.sidecar-location__image {
  height: 155px;
  margin-bottom: 35px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 280px auto;
}

.sidecar-location__border-right {
  background-color: #d73532;
  width: 3px;
  height: 100%;
  right: 0;
  top: 0;
}

.sidecar-location__border-right:after {
  content: '';
  position: absolute;
  transform: translateX(-50%) rotate(45deg);
  -webkit-transform: translateX(-50%) rotate(45deg);
  left: 50%;
  bottom: 0;
  width: 15px;
  height: 15px;
  background-color: #d73532;
}

.sidecar-reservations {
  width: 857px;
  max-width: 90%;
  padding: 36px 0 50px;
  border: 2px solid #252525;
  text-align: center;
  margin: 0 auto 50px;
}

.sidecar-reservations__link {
  width: 50%;
  float: left;
}

.sidecar-reservations p {
  margin-bottom: 30px;
}

.sidecar-reservations h5 {
  margin-bottom: 15px;
}

.sidecar-form {
  font-family: "Bookman BT Roman", serif;
  font-size: 16px;
}

.sidecar-form textarea {
  border: 0px solid transparent;
  font-family: "Bookman BT Roman", serif;
  border: 2px solid #d73532;
  padding: 3px;
  padding-left: 0;
  padding-right: 0;
  margin-top: 7px;
  margin-bottom: 29px;
  font-size: 16px;
  font-weight: 500;
  cursor: text;
  width: 100%;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
}

.sidecar-form input[type="text"], .sidecar-form input[type="email"] {
  border: 0px solid transparent;
  font-family: "Bookman BT Roman", serif;
  border: 2px solid #d73532;
  padding: 3px;
  padding-left: 0;
  padding-right: 0;
  margin-top: 7px;
  margin-bottom: 29px;
  font-size: 16px;
  font-weight: 500;
  cursor: text;
  width: 100%;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
}

.sidecar-form select[name="location"] {
  border: 0px solid transparent;
  font-family: "Bookman BT Roman", serif;
  border: 2px solid #d73532;
  padding: 3px;
  padding-left: 0;
  padding-right: 0;
  margin-top: 7px;
  margin-bottom: 29px;
  font-size: 16px;
  font-weight: 500;
  cursor: text;
  width: 100%;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
}

.sidecar-form .label {
  display: inherit;
  text-align: left;
  font-size: 15.5px;
}

.sidecar-form .g-recaptcha {
  display: inline-block;
  margin: 29px 0;
}

.sidecar-form select {
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  background: #fff;
  position: relative;
  cursor: pointer;
  background-image: url("../img/dropdown_arrow.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  -moz-appearance: none;
  padding: 4.5px;
  font-size: 14px;
  text-indent: 10px;
}

.sidecar-form select[name="location"] {
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  background: #fff;
  position: relative;
  cursor: pointer;
  background-image: url("../img/dropdown_arrow.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  -moz-appearance: none;
  padding: 4.5px;
  font-size: 14px;
  text-indent: 10px;
}

.sidecar-form ::-webkit-input-placeholder, .sidecar-form :-moz-placeholder, .sidecar-form ::-moz-placeholder, .sidecar-form :-ms-input-placeholder {
  color: #252525;
}

.sidecar-form input[type="submit"] {
  border: 0px solid transparent;
  font-family: "Bookman BT Roman", serif;
  font-size: 20px;
  line-height: 16px;
  letter-spacing: 3px;
  background-color: transparent;
  display: block;
  border-top: 2px solid #d73532;
  border-bottom: 2px solid #d73532;
  cursor: pointer;
  padding: 9px 12px;
  margin: 32px auto 0;
  max-width: 110px;
  margin-top: 0;
}

.sidecar-form input[type="submit"]:focus {
  border-top: 2px solid #252525;
  border-bottom: 2px solid #252525;
}

.sidecar-form input[type="submit"]:hover {
  color: #d73532;
}

.sidecar-form input[type="text"].wpcf7-not-valid, .sidecar-form input[type="email"].wpcf7-not-valid {
  border: 2px solid #252525;
}

.sidecar-form textarea {
  border: 2px solid #d73532;
  padding: 12px;
  max-height: 100px;
  float: none;
}

.sidecar-form textarea.wpcf7-not-valid {
  border: 2px solid #252525;
}

.sidecar-form .wpcf7-not-valid-tip {
  color: #fff;
  background: #252525;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 2px 11px;
  display: inline-block;
  position: absolute;
  bottom: 0;
  margin-left: -98px;
}

.sidecar-form .wpcf7-not-valid-tip:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 19.1px 11px 0;
  border-color: transparent #252525 transparent transparent;
  top: 0;
  left: -19px;
}

.sidecar-form textarea[name="message"] + span.wpcf7-not-valid-tip {
  bottom: initial;
  top: -40px;
  right: 14px;
}

.sidecar-form #success {
  display: none;
  padding: 127px 28px;
  line-height: 1.5;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 22px;
  margin-right: -40px;
  margin-left: -40px;
  border: 2px solid #252525;
  margin-top: 48px;
}

.sidecar-form .wpcf7-form {
  opacity: 1;
  visibility: visible;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -ms-transition: 0.3s all;
  -o-transition: 0.3s all;
}

.sidecar-form .wpcf7-form.sent p {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.sidecar-form .wpcf7-mail-sent-ok {
  padding: 127px 28px;
  line-height: 1.5;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 22px;
  border: 2px solid #252525;
}

.sidecar-form div.wpcf7-validation-errors {
  border: none;
  color: #fff;
  background: #252525;
  font-size: 14px;
  letter-spacing: 2px;
  padding: 16px 0px;
  margin-top: 15px;
  margin-right: -40px;
  margin-left: -40px;
}

.sidecar-form .wpcf7-captchac {
  display: inline;
}

.sidecar-form p {
  text-align: left;
}

.sidecar-form .wrapper--single-form-container {
  margin-top: 124px;
}

.sidecar-form select[name="location"] + .wpcf7-not-valid-tip {
  margin-left: -125px;
}

.logged-in-notice {
  position: absolute;
  top: -30px;
  right: 0;
  width: 100%;
  text-align: right;
  font-size: 15px;
}

.logged-in-notice a {
  letter-spacing: 2px;
}

.logged-in-notice a:hover {
  color: #d73532;
}

.single-sidecar-location.location-info {
  margin: 100px 0 0;
}

.single-sidecar-location .location-info__left-col, .single-sidecar-location .location-info__right-col, .single-sidecar-location .location-right-col {
  min-height: 242px;
  position: relative;
  margin-bottom: 67px;
}

.single-sidecar-location__border-right, .single-sidecar-location__border-left {
  background-color: #d73532;
  width: 3px;
  height: 100%;
  right: 0;
  top: 0;
  position: absolute;
}

.single-sidecar-location__border-right:before {
  content: '';
  position: absolute;
  transform: translateX(-50%) rotate(45deg);
  -webkit-transform: translateX(-50%) rotate(45deg);
  left: 50%;
  top: 2px;
  width: 15px;
  height: 15px;
  background-color: #d73532;
}

.single-sidecar-location__border-left {
  left: -3px;
  right: auto;
}

.single-sidecar-location__border-left:before {
  content: '';
  position: absolute;
  transform: translateX(-50%) rotate(45deg);
  -webkit-transform: translateX(-50%) rotate(45deg);
  left: 50%;
  top: 2px;
  width: 15px;
  height: 15px;
  background-color: #d73532;
}

.single-sidecar-location .wrapper--location-info {
  max-width: 1200px;
  padding: 0;
}

.single-sidecar-location .wrapper--location-info .events {
  margin-bottom: 30px;
}

.single-sidecar-location .location-info__title-section {
  padding-bottom: 70px;
}

.single-sidecar-location__image {
  display: block;
  width: 336px;
  margin: 0 auto 50px;
}

.single-sidecar-location__upcoming-events {
  margin: auto;
  max-width: 90%;
}

@media screen and (max-width: 1350px) {
  .single-sidecar-location .wrapper--location-info {
    max-width: 957px;
  }
}

@media screen and (max-width: 1024px) {
  .single-sidecar-location .wrapper--location-info {
    max-width: 682px;
    padding: 37px 0 0;
  }
  .sidecar-location {
    width: 50%;
  }
  .sidecar-location:first-child {
    margin-left: 0;
  }
  .sidecar-location:first-child .location-address {
    margin-right: 35px;
  }
  .sidecar-location:last-child .location-address {
    margin-left: 35px;
  }
  .sidecar-location__image {
    height: 120px;
    background-size: contain;
  }
  .sidecar-intro__inner {
    max-width: 674px;
    margin-top: 10rem;
    margin-bottom: 38px;
  }
  .sidecar-intro__inner:before, .sidecar-intro__inner:after {
    width: 200px;
  }
  .sidecar-intro__description {
    font-size: 35px;
    letter-spacing: 4.2px;
    padding: 36px 20px 31px;
  }
  .sidecar-intro__bottom-text {
    font-size: 30px;
    margin-left: 0;
  }
  .sidecar-form .wpcf7-form-control-wrap.location:before {
    bottom: 49px;
  }
  .sidecar-form .wpcf7-form-control-wrap.location:after {
    bottom: 47px;
  }
  .sidecar-form .wpcf7-not-valid-tip {
    bottom: 10px;
  }
  .sidecar-form textarea[name="message"] + span.wpcf7-not-valid-tip {
    top: 101px;
  }
  .sidecar-form select[name="location"] + .wpcf7-not-valid-tip {
    bottom: 43px;
  }
  .logged-in-notice {
    font-size: 12px;
    position: relative;
    margin-bottom: 12px;
    padding-right: 20px;
    padding-left: 60px;
  }
  .sidecar-location .location-info__title-section {
    padding: 0 20px 12px;
  }
}

@media screen and (max-width: 1024px) and (max-width: 768px) {
  .single-sidecar-location .wrapper--location-info {
    max-width: 580px;
    padding-top: 0;
    padding-bottom: 20px;
  }
  .page-template-page-sidecar .hero__image {
    max-width: 320px;
  }
  .page-template-page-sidecar .hero {
    height: 400px;
  }
  .page-template-page-sidecar .hero__image {
    padding-bottom: 40px;
  }
  .sidecar-intro__inner {
    max-width: 580px;
  }
  .sidecar-intro__inner:before, .sidecar-intro__inner:after {
    width: 27%;
  }
  .sidecar-intro__description {
    font-size: 32px;
    letter-spacing: 4px;
    padding: 36px 20px 37px;
  }
  .sidecar-form div.wpcf7-validation-errors {
    margin: 15px 0 0;
    padding: 16px 55px;
    line-height: 1.5;
  }
  .sidecar-form input[type="submit"] {
    font-size: 15px;
    width: 94px;
    line-height: 8px;
  }
  #loginform {
    margin-right: -30px;
    margin-left: -30px;
  }
  #loginform p input {
    font-size: 19px;
    letter-spacing: 2.1px;
  }
  #loginform p input[type="submit"] {
    font-size: 15px;
    letter-spacing: 1.7px;
  }
  #loginform p.login-username, #loginform p.login-password {
    margin-bottom: 0;
  }
  #loginform p.login-submit {
    max-width: 90px;
    margin-top: 18px;
  }
  #loginform p.login-remember {
    bottom: 6px;
    left: 110px;
  }
}

@media screen and (max-width: 1024px) and (max-width: 600px) {
  .page-template-page-sidecar .hero .middle {
    width: 100%;
  }
  .page-template-page-sidecar .hero__image {
    max-width: 257px;
    margin: 0 auto;
    padding-bottom: 15px;
  }
  .sidecar-locations__hours-container {
    margin-bottom: 50px;
  }
  .sidecar-locations__hours {
    float: none;
    margin: 0 auto;
    padding-bottom: 20px;
  }
  .sidecar-locations__hours:first-of-type {
    border-right: 0;
    margin: 30px auto 20px;
    border-bottom: 3px solid #d73532;
  }
  .sidecar-location {
    width: 100%;
    margin: 0;
    padding-bottom: 0;
  }
  .sidecar-location:first-child, .sidecar-location:last-child {
    margin: 0;
    padding-bottom: 0;
  }
  .sidecar-location:first-child .location-address {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }
  .sidecar-location:last-child {
    padding: 80px 0 50px;
  }
  .sidecar-location:last-child .location-address {
    text-align: center;
    margin-left: 0;
    margin-right: 0;
  }
  .sidecar-location__image {
    width: 90%;
    background-size: contain;
    margin: 0 auto 20px;
  }
  .single-sidecar-location__border-right {
    display: none;
  }
  .single-sidecar-location .location-info__left-col {
    min-height: 1px;
    margin-bottom: 0;
  }
  .single-sidecar-location .location-info__right-col:before {
    display: none;
  }
  .sidecar-reservations__link {
    width: 80%;
    float: none;
    margin: 20px auto;
  }
  .sidecar-reservations__link:last-of-type {
    margin-bottom: 0;
  }
  #loginform {
    margin-right: 0;
    margin-left: 0;
    padding-right: 15px;
    padding-left: 15px;
  }
  #loginform p input {
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 1.7px;
  }
  #loginform p.login-username, #loginform p.login-password {
    padding-bottom: 0;
  }
  #loginform p input[type="submit"] {
    font-size: 12px;
    letter-spacing: 1.4px;
  }
  #loginform p.login-submit {
    max-width: 72px;
  }
  #loginform p.login-remember {
    left: 92px;
    bottom: 4px;
  }
  #loginform p.login-remember label {
    font-size: 12px;
  }
  .sidecar-scroll {
    font-size: 18px;
  }
  .sidecar-intro {
    padding: 50px 15px 35px;
  }
  .sidecar-intro .vertical:before, .sidecar-intro .vertical:after {
    margin-bottom: 0;
  }
  .sidecar-intro__inner {
    max-width: 90%;
  }
  .sidecar-intro__inner:before, .sidecar-intro__inner:after {
    width: 125px;
  }
}

@media screen and (max-width: 1024px) and (max-width: 600px) and (max-width: 500px) {
  .sidecar-intro__inner:before, .sidecar-intro__inner:after {
    width: 80px;
  }
}

@media screen and (max-width: 1024px) and (max-width: 600px) and (max-width: 400px) {
  .sidecar-intro__inner:before, .sidecar-intro__inner:after {
    width: 50px;
  }
}

@media screen and (max-width: 1024px) and (max-width: 600px) and (max-width: 350px) {
  .sidecar-intro__inner:before, .sidecar-intro__inner:after {
    width: 25px;
  }
}

@media (max-width: 600px) {
  .sidecar-intro__inner {
    margin-top: 6rem;
  }
}

@media screen and (max-width: 1024px) and (max-width: 600px) {
  .sidecar-intro__description {
    font-size: 25px;
    letter-spacing: 3.2px;
    line-height: 1.32;
  }
  .sidecar-intro__bottom-text {
    font-size: 25px;
  }
  .slideshow-block.sidecar-slides {
    margin-top: 0;
  }
  .sidecar-form .wrapper--single-form-container {
    margin-top: 0;
  }
  .sidecar-form .single-form__content h1 {
    padding: 0 40px;
    line-height: 1.2;
  }
  .sidecar-form .single-form__description {
    padding: 0 100px;
  }
  .sidecar-login-form {
    padding: 40px 10px 30px;
  }
  .sidecar-login-form__toggle {
    right: 20px;
    line-height: 2;
  }
  .sidecar-login-form__toggle:before {
    background-position: center 7px;
  }
}

.page-template-page-brazil .navigation__menu .menu-item.active:before,
.page-template-page-brazil .navigation__menu .menu-item.active:after {
  display: none;
}

.wrapper--brazil-locations {
  margin: 160px auto 0;
}

.brazil-location.contact-location:nth-child(3n) .contact-location__border-right {
  display: block;
}

.brazil-location.contact-location:nth-last-child(-n+3) .contact-location__border-bottom {
  display: block;
}

.brazil-location.contact-location:nth-child(2n) .contact-location__border-right {
  display: none;
}

.brazil-location.contact-location:nth-last-child(-n+2) .contact-location__border-bottom {
  display: none;
}

@media screen and (max-width: 600px) {
  .brazil-location.contact-location:nth-last-child(-n+3) .contact-location__border-bottom {
    display: block;
  }
  .brazil-location.contact-location:nth-last-child(-n+2) .contact-location__border-bottom {
    display: block;
  }
  .brazil-location.contact-location:nth-child(n) .contact-location__border-right {
    display: none;
  }
  .brazil-location.contact-location:nth-last-child(-n+1) .contact-location__border-bottom {
    display: none;
  }
}

.error404 {
  height: 100%;
}

.error-message {
  position: relative;
  width: 100%;
  height: calc(100% - 78px);
  min-height: 600px;
}

.error-message .wrapper--single-form-container {
  margin-top: 0 !important;
  margin-bottom: 0;
  display: inline-block;
  width: 100%;
  position: absolute;
  max-width: 605px;
}

.error-message .wrapper--single-form-container:before, .error-message .wrapper--single-form-container:after {
  box-sizing: border-box;
}

@supports (overflow: -webkit-marquee) and (justify-content: inherit) {
  .error-message .wrapper--single-form-container:before, .error-message .wrapper--single-form-container:after {
    width: calc(100% + 30px);
  }
}

.error-message .wrapper--single-form-container:before {
  top: -20px;
}

.error-message .wrapper--single-form-container:after {
  bottom: -20px;
}

.error-message .wrapper--single-form-container__inner {
  max-width: 520px;
  padding-top: 70px;
  padding-bottom: 84px;
}

.error-message__content {
  padding: 0 35px;
}

.error-message__content img {
  margin: 0 auto;
}

.error-message__content h3 {
  margin: 54px 0 52px;
  font-size: 35px;
  line-height: 1;
  letter-spacing: 2.6px;
}

.error-message__content a {
  font-size: 22px;
  letter-spacing: 2.5px;
}

@media screen and (max-width: 1024px) {
  @supports (overflow: -webkit-marquee) and (justify-content: inherit) {
    .error-message .wrapper--single-form-container:before, .error-message .wrapper--single-form-container:after {
      width: calc(100% + 6px);
    }
  }
}

@media screen and (max-width: 768px) {
  .error-message {
    height: calc(100% - 151px);
  }
  .error-message .wrapper--single-form-container {
    max-width: 454px;
  }
  .error-message .wrapper--single-form-container__inner {
    padding-top: 54px;
    padding-bottom: 67px;
    max-width: 390px;
  }
  .error-message__content img {
    width: 195px;
  }
  .error-message__content h3 {
    font-size: 26.2px;
    line-height: 1;
    letter-spacing: 2px;
    padding: 0 10px;
    margin: 41px 0 33px;
  }
  .error-message__content a {
    font-size: 16.9px;
    letter-spacing: 1.9px;
  }
}

@media screen and (max-width: 600px) {
  .error-message .wrapper--single-form-container:before, .error-message .wrapper--single-form-container:after {
    display: none;
  }
  .error-message .wrapper--single-form-container__inner {
    border: none;
  }
  .error-message__content {
    padding: 0 15px;
  }
  .error-message__content img {
    width: 146px;
  }
  .error-message__content h3 {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 1.5px;
    padding: 0 42px;
    margin: 31px 0 26px;
  }
  .error-message__content a {
    font-size: 12.7px;
    letter-spacing: 1.4px;
  }
}

.posts {
  margin: 180px auto 24px;
}

.post {
  margin-bottom: 72px;
}

.post__image {
  margin-bottom: 21px;
}

.post__title {
  margin-bottom: 24px;
  line-height: 1;
  letter-spacing: 2px;
}

.post__excerpt {
  padding: 12px 0 18px;
  border-top: 2px solid #252525;
  border-bottom: 2px solid #252525;
}

.post__excerpt p {
  font-size: 15px;
}

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

.pagination {
  display: inline-block;
  max-width: 600px;
  margin: 0 auto 72px;
  font-size: 15px;
  font-weight: 600;
  line-height: 48px;
}

.pagination .page-numbers {
  display: block;
  float: left;
  width: 36px;
  height: 48px;
}

.pagination .page-numbers.current {
  color: #d73532;
}

.pagination .page-numbers.prev, .pagination .page-numbers.next {
  width: 42px;
  height: 48px;
  margin: 0 12px;
  position: relative;
  border-top: 2px solid #d73532;
  border-bottom: 2px solid #d73532;
}

.pagination .page-numbers.prev:before, .pagination .page-numbers.next:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 20px;
  margin-top: -10px;
  margin-left: -6px;
  background: transparent url("../img/paginate-arrowleft.svg") left center no-repeat;
  background-size: 24px auto;
}

.pagination .page-numbers.prev:hover:before, .pagination .page-numbers.next:hover:before {
  background-position: right center;
}

.pagination .page-numbers.next:before {
  background-image: url("../img/paginate-arrowright.svg");
}

@media screen and (max-width: 1024px) {
  .posts .wrapper {
    max-width: 720px;
  }
  .post__title {
    font-size: 26px;
  }
  .post__excerpt p {
    font-size: 12px;
    line-height: 2;
  }
}

@media screen and (max-width: 600px) {
  .post {
    padding: 0 24px;
  }
  .pagination {
    font-size: 12px;
    font-weight: 600;
    line-height: 30px;
  }
  .pagination .page-numbers {
    display: block;
    float: left;
    width: 24px;
    height: 30px;
  }
  .pagination .page-numbers.prev, .pagination .page-numbers.next {
    width: 30px;
    height: 30px;
    margin: 0 6px;
  }
  .pagination .page-numbers.prev:before, .pagination .page-numbers.prev:after, .pagination .page-numbers.next:before, .pagination .page-numbers.next:after {
    width: 9px;
    background-size: 18px auto;
  }
}

.single-post .vertical:before, .single-post .vertical:after, .single-event .vertical:before, .single-event .vertical:after {
  margin-bottom: 56px;
}

.single-hero {
  margin-bottom: 130px;
}

.single-hero .middle {
  width: 100%;
  text-align: center;
}

.single-hero__text {
  font-family: "league-gothic", sans-serif;
  text-transform: uppercase;
  font-size: 70px;
  line-height: 1.14;
  letter-spacing: 5.3px;
  text-align: center;
  display: inline-block;
  color: #fff;
  max-width: 1070px;
}

.single-contents {
  max-width: 744px;
}

.single-contents h1, .single-contents h2, .single-contents h3, .single-contents h4, .single-contents h5, .single-contents h6 {
  font-family: "league-gothic", sans-serif;
  text-transform: initial;
  margin: 10px 0;
}

.single-contents h1 {
  font-size: 50px;
  line-height: 0.9;
  letter-spacing: 4.3px;
}

.single-contents h2 {
  font-size: 45px;
  line-height: 1;
  letter-spacing: 3.9px;
}

.single-contents h3 {
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: 3.4px;
}

.single-contents h4 {
  font-size: 35px;
  line-height: 1.3;
  letter-spacing: 3px;
}

.single-contents h5 {
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 2.6px;
}

.single-contents h6 {
  font-size: 25px;
  line-height: 1.8;
  letter-spacing: 2.1px;
}

.single-contents .event__title, .single-contents .event__location {
  margin: 0;
  text-transform: uppercase;
}

.single-contents .event__title {
  line-height: 1.2;
}

.single-contents .event__location {
  font-size: 22px;
  letter-spacing: 0.4px;
  line-height: 1;
  margin-bottom: 8px;
}

.single-contents .event__menu, .single-contents .event__share-text {
  font-size: 20px;
  font-style: italic;
}

.single-contents .event__menu, .single-contents .event__share-text, .single-contents .event__facebook, .single-contents .event__twitter {
  display: block;
  float: left;
}

.single-contents .event__menu {
  color: #d0021b;
  margin-right: 60px;
}

.single-contents .event__menu:hover {
  color: #252525;
}

.single-contents .event__facebook {
  width: 9px;
  height: 22px;
  border-right: 2px solid #d73532;
  margin-left: 20px;
  margin-right: 11px;
  padding-right: 22px;
}

.single-contents .event__facebook:hover #icon-facebook polygon {
  fill: #d73532;
}

.single-contents .event__twitter {
  width: 23px;
  height: 19px;
  margin-top: 2px;
}

.single-contents .event__twitter:hover #icon-twitter polygon {
  fill: #d73532;
}

.single-contents ul {
  list-style: initial;
}

.single-contents ul, .single-contents ol {
  padding-left: 16px;
  font-family: "Bookman BT Roman", serif;
  font-size: 15px;
  line-height: 2;
  color: #252525;
  font-weight: 400;
  line-height: 2;
  margin: 33px auto;
}

.single-contents img.alignleft {
  float: left;
  margin: 3px 20px 5px 0px;
}

.single-contents img.alignright {
  float: right;
  margin: 3px 0px 5px 20px;
}

.single-contents img.aligncenter, .single-contents img.alignnone {
  width: calc(100% + 238px);
  max-width: none;
  margin-left: -119px;
  margin-right: -119px;
}

.single-contents p {
  margin: 52px auto;
  font-family: "Bookman BT Roman", serif;
  font-size: 15px;
  line-height: 2;
  color: #252525;
  font-weight: 400;
}

.single-contents p:first-of-type {
  margin-top: 0;
}

.single-contents p a {
  color: #d73532;
}

.single-contents blockquote {
  margin: 50px -90px;
}

.single-contents blockquote p {
  max-width: initial;
  font-family: "league-gothic", sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1.29;
  letter-spacing: 3px;
  text-align: center;
}

.single-event .single-contents {
  margin-bottom: 138px;
}

.single-event .single-contents p {
  margin-bottom: 19px;
}

.single-slides {
  margin-top: 60px;
}

@media screen and (max-width: 1024px) {
  .single-post .vertical:before, .single-post .vertical:after, .single-event .vertical:before, .single-event .vertical:after {
    margin-bottom: 40px;
  }
  .single-post .single-slides, .single-event .single-slides {
    margin-top: 20px;
  }
  .single-hero__text {
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: 3.9px;
    max-width: initial;
    padding: 0 70px;
  }
  .single-contents {
    max-width: 719px;
  }
  .single-contents blockquote {
    margin: 50px -50px;
  }
  .single-contents img.aligncenter, .single-contents img.alignnone {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .single-post .single-slides, .single-event .single-slides {
    margin-top: 7px;
  }
  .single-post .slide-index, .single-event .slide-index {
    margin-bottom: 96px;
  }
  .single-hero {
    margin-bottom: 75px;
  }
  .single-hero__text {
    font-size: 39px;
    line-height: 1.1;
    letter-spacing: 3px;
  }
  .single-contents {
    max-width: 528px;
    padding: 0 10px;
  }
  .single-contents blockquote {
    margin-right: -50px;
    margin-left: -50px;
  }
  .single-contents img.alignleft, .single-contents img.alignright {
    width: 240px;
  }
  .single-contents img.aligncenter, .single-contents img.alignnone {
    width: calc(100% + 24px);
    margin-right: -12px;
    margin-left: -12px;
  }
}

@media screen and (max-width: 600px) {
  .single-post .vertical:before, .single-post .vertical:after, .single-event .vertical:before, .single-event .vertical:after {
    margin-bottom: 43px;
  }
  .single-post .single-slides, .single-event .single-slides {
    margin-top: 15px;
  }
  .single-post .slide-index, .single-event .slide-index {
    margin-bottom: 70px;
  }
  .single-contents {
    padding: 0 27px;
    width: 100%;
    max-width: initial;
  }
  .single-contents h1, .single-contents h2, .single-contents h3, .single-contents h4, .single-contents h5, .single-contents h6 {
    padding: 0;
  }
  .single-contents p {
    padding: 0;
    margin: 30px auto;
    font-size: 11px;
  }
  .single-contents ul, .single-contents ol {
    margin: 30px auto;
  }
  .single-contents img.alignleft, .single-contents img.alignright {
    width: 180px;
    margin-top: 7px;
  }
  .single-contents img.alignleft {
    margin-right: 15px;
  }
  .single-contents img.alignright {
    margin-left: 15px;
  }
  .single-contents img.aligncenter, .single-contents img.alignnone {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .single-contents blockquote {
    margin: 43px 0;
  }
  .single-contents blockquote p {
    padding: 0 5px;
    font-size: 25px;
    line-height: 1.8;
    letter-spacing: 2.1px;
  }
  .single-contents .event__title {
    font-size: 26px;
    line-height: 1.1;
  }
  .single-contents .event__location {
    font-size: 20px;
    line-height: 1.3;
  }
  .single-contents .event__menu, .single-contents .event__share-text {
    font-size: 18px;
  }
  .single-contents .event__menu {
    width: 117px;
    margin: 0 auto;
    float: none;
  }
  .single-contents .event__share-text {
    line-height: 1.3;
  }
  .single-contents .event__share-wrapper {
    width: 190px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .single-contents .event__facebook {
    margin-right: 12px;
    padding-right: 26px;
  }
  .single-hero__text {
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: 3.2px;
    padding: 0 45px;
  }
  .single-event .single-contents {
    margin-bottom: 56px;
  }
}

.page-template-page-rawbar .hero {
  height: 50vh;
  min-height: 300px;
  margin-bottom: 3rem;
}

.ourPicks {
  padding: 5rem 0;
  text-align: center;
}

.ourPicks h2.redLine {
  position: relative;
  font-family: "league-gothic", sans-serif;
  font-size: 45px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: inline-block;
}

.ourPicks h2.redLine:after {
  content: '';
  position: absolute;
  background: #d73532;
  bottom: -4px;
  height: 4px;
  width: calc(100% + 10px);
  left: -5px;
}

.ourPicks .slideScaler {
  position: relative;
  width: calc(100% - 120px);
  max-width: 1200px;
  margin: 2rem auto 0;
}

@media (max-width: 600px) {
  .ourPicks .slideScaler {
    width: 100%;
  }
}

.ourPicks .slideNav {
  position: absolute;
  top: 20%;
  width: calc(100% + 80px);
  left: -40px;
}

@media (max-width: 600px) {
  .ourPicks .slideNav {
    display: none;
  }
}

.ourPicks .slideNav button {
  position: absolute;
  top: 0;
  border: 0;
  outline: 0;
  background: transparent url(../img/pick-arrow.png) center no-repeat;
  background-size: contain;
  width: 30px;
  height: 55px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: opacity 0.1s ease-out;
  transition: opacity 0.1s ease-out;
}

.ourPicks .slideNav button:not(.disabled) {
  cursor: pointer;
}

.ourPicks .slideNav button.disabled {
  opacity: 0.05;
}

.ourPicks .slideNav button:not(.disabled):hover {
  opacity: 0.5;
}

.ourPicks .slideNav .slideLeft {
  left: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.ourPicks .slideNav .slideRight {
  right: 0;
}

.ourPicks .slideWrap {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
}

.ourPicks .slideOverflow {
  width: 100%;
  position: relative;
  white-space: nowrap;
  -webkit-transition: margin-left 0.25s ease-out;
  transition: margin-left 0.25s ease-out;
}

@media (max-width: 600px) {
  .ourPicks .slideOverflow {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.ourPicks .pickItem {
  display: inline-block;
  width: 33.33%;
  font-size: 1rem;
  vertical-align: top;
}

@media (max-width: 1024px) {
  .ourPicks .pickItem {
    width: 50%;
  }
}

@media (max-width: 600px) {
  .ourPicks .pickItem {
    width: 80%;
  }
}

.ourPicks .pickItem .oysterThumb {
  width: 80%;
  max-width: 400px;
  padding-bottom: 60%;
  margin: 0 auto 2rem;
  white-space: normal;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.ourPicks .pickItem h3 {
  font-size: 30px;
  letter-spacing: 0;
  margin: 0 auto 5px;
}

.ourPicks .pickItem p {
  font-size: 16px;
  margin: 0 auto 0.5em;
}

.ourSources {
  font-size: 0;
  margin: 5rem auto;
  width: 90%;
  max-width: 1400px;
}

.ourSources .sourceImage, .ourSources .sourceText {
  display: inline-block;
  vertical-align: top;
  width: calc(50% - 2rem);
  margin: 0 1rem;
}

@media (max-width: 600px) {
  .ourSources .sourceImage, .ourSources .sourceText {
    width: 100%;
    margin: 0 auto;
  }
}

.ourSources .sourceImage {
  padding-bottom: 45%;
  background-size: cover;
  background-position: center;
}

@media (max-width: 600px) {
  .ourSources .sourceImage {
    padding-bottom: 60%;
    margin-bottom: 2rem;
  }
}

.ourSources .sourceText {
  font-size: 16px;
}

.ourSources .sourceText h2 {
  font-family: "league-gothic", sans-serif;
  font-size: 36px;
  color: #d73532;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.ourSources .sourceText p {
  margin: 0 0 1rem;
}

.ourSources .sourceTitle, .ourSources .sourceDescription {
  box-sizing: border-box;
  padding: 0 0.5rem;
}

.ourSources .sourceTitle {
  display: block;
  position: relative;
  color: #000;
  -webkit-transition: color 0.1s ease-out;
  transition: color 0.1s ease-out;
  cursor: pointer;
  padding: 1rem 30px 0 0.5em;
}

.ourSources .sourceTitle:hover {
  color: #d73532;
}

.ourSources .sourceTitle:hover:before, .ourSources .sourceTitle:hover:after {
  background: #d73532;
}

.ourSources .sourceTitle:before, .ourSources .sourceTitle:after {
  content: '';
  width: 20px;
  height: 2px;
  background: #1e201d;
  position: absolute;
  top: 65%;
  right: 0;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: color 0.1s ease-out, -webkit-transform 0.2s ease-out;
  transition: color 0.1s ease-out, -webkit-transform 0.2s ease-out;
  transition: color 0.1s ease-out, transform 0.2s ease-out;
  transition: color 0.1s ease-out, transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.ourSources .sourceTitle:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.ourSources .open .sourceTitle:before, .ourSources .open .sourceTitle:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.ourSources .sourceDescription {
  height: 0;
  overflow: hidden;
  display: block;
  width: 100%;
  border-bottom: 2px solid #979797;
  -webkit-transition: height 0.35s ease-out;
  transition: height 0.35s ease-out;
}

.ourSources .sourceDescription a {
  color: #d73532;
}

.ourSources .sourceDescription a:hover {
  text-decoration: underline;
}

.saveOysters {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.saveOysters .saveImage {
  background-size: cover;
  background-position: center;
  width: 100%;
  padding-bottom: 40%;
  margin-bottom: 2rem;
}

.saveOysters .saveText {
  width: 90%;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.saveOysters h2 {
  font-family: "league-gothic", sans-serif;
  font-size: 36px;
  color: #d73532;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.saveOysters p {
  font-size: 16px;
  margin: 0 auto 1rem;
}
