@charset "UTF-8";
/*---
COLOURS::
RED - #7a161a
GOLD - #c5a46b
IVORY - #f4ede5
NOIR - #1d1b1b
----*/
.a .b {
  color: #887;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 18px;
}

body {
  margin: 0;
  font-family: "gotham";
  font-size: 1em;
  line-height: 1.556em;
  background: #f4ede5;
  color: #1d1b1b;
}
@media screen and (max-width: 980px) {
  body {
    font-size: 0.9em;
  }
}

a {
  text-decoration: none;
}

body,
html {
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  line-height: 1em;
}

.site-wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
}

.content {
  width: 100%;
  overflow-x: hidden;
}

.page-content {
  padding-top: 2em;
}

.page-content a {
  color: #7a161a;
}

.page-content .more {
  color: #7a161a;
  border: 2px solid #7a161a;
  padding: 0.5em;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 auto 2em;
  display: table;
}
.page-content .more:hover {
  background: #7a161a !important;
  color: #F4EDE5 !important;
  border: 2px solid #7a161a;
}

/*--- MENU ---*/
#header {
  position: sticky;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 1em;
  padding-top: 0.65em;
  padding-bottom: 0.65em;
  /*background: #7a161a;*/
  background: #1d1d1b;
  margin-bottom: -1px;
}

/*
.pslug_home #header {
    background: #1d1b1b;
}

.pslug_home .menu-desk .links-menu-desk ul.nav-drop {
    background: #1d1b1b !important;
}
    */
.header-inner {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

.menu-logo {
  max-width: 110px;
}
@media screen and (max-width: 1024px) {
  .menu-logo {
    max-width: 80px;
  }
}
.menu-logo img {
  display: block;
  margin-bottom: 0;
  padding-bottom: 0;
}

@media screen and (min-width: 1024.1px) {
  .menu-mobile,
  .menu-mob-trig,
  #menu-icon {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .menu-desk {
    display: none !important;
  }
}
.links-menu-mobile,
.links-menu-desk {
  text-transform: uppercase;
  font-family: "gotham";
  font-weight: 300;
  font-size: 1em;
}

.menu-desk {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.menu-desk input,
.menu-desk .sub-menu-arrow {
  display: none;
}
.menu-desk .links-menu-desk {
  padding-top: 0px;
}
.menu-desk .links-menu-desk a {
  color: #F4EDE5;
  border-bottom: 1px solid transparent;
}
.menu-desk .links-menu-desk a:hover {
  color: #C5A46B;
  border-bottom: 1px solid #C5A46B;
}
.menu-desk .links-menu-desk label span {
  color: #F4EDE5 !important;
  border-bottom: 1px solid transparent;
}
.menu-desk .links-menu-desk label span:hover {
  color: #C5A46B !important;
  border-bottom: 1px solid #C5A46B;
}
.menu-desk .links-menu-desk ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-desk .links-menu-desk ul.nav-drop {
  left: 0;
  opacity: 0;
  position: absolute;
  overflow: hidden;
  white-space: nowrap;
  top: 100%;
  padding-top: 0.2em;
  background: #1d1d1b;
  padding-left: 0.5em;
  padding-right: 0.5em;
  margin-left: -0.5em;
  padding-bottom: 0.25em;
  text-align: left;
}
.menu-desk .links-menu-desk ul.nav-drop > li {
  display: block;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
}
.menu-desk .links-menu-desk ul.nav-drop:not(.menu-level-1):not(.menu-level-0) {
  left: 100%;
  top: 0;
}
.menu-desk .links-menu-desk ul li {
  display: inline-block;
  position: relative;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.menu-desk .links-menu-desk ul li:hover {
  transition: background-color 0.6s linear;
}
.menu-desk .links-menu-desk ul li:hover > ul.nav-drop {
  transition: opacity 0.6s linear;
  opacity: 1 !important;
  overflow: visible;
}
.menu-desk .links-menu-desk ul li:not(:hover) {
  transition: background-color 0.6s linear;
  /* transition-delay: -0.3s; */
}
.menu-desk .links-menu-desk ul li:not(:hover) > ul.nav-drop {
  transition: opacity 0.6s linear;
  /* transition-delay: -0.3s; */
  pointer-events: none;
}

.menu-mobile {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: url(../../assets/img/resp-menu.webp) no-repeat #1d1d1b;
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  translate: 0% -100%;
  opacity: 0;
}
.menu-mobile .mm-wrap {
  width: 90%;
}
.menu-mobile .links-menu-mobile label {
  position: relative;
}
.menu-mobile .links-menu-mobile label span.sub-menu-arrow {
  position: absolute;
  right: 0em;
  text-align: right;
}
.menu-mobile .links-menu-mobile .hidden-checkbox {
  display: none;
}
.menu-mobile .links-menu-mobile ul {
  list-style: none;
  padding: 0;
}
.menu-mobile .links-menu-mobile ul li {
  margin: 1.5em 0;
}
.menu-mobile .links-menu-mobile ul li a,
.menu-mobile .links-menu-mobile ul li label {
  text-align: center;
  display: block;
  text-transform: uppercase;
  font-family: "gotham";
  font-weight: 700;
  color: #F4EDE5;
  text-align: left;
  font-size: 1.6em;
}
.menu-mobile .links-menu-mobile ul.nav-drop {
  display: grid;
  font-size: 0.8em;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease-out;
  transition: grid-template-rows 0.5s ease-out, -ms-grid-rows 0.5s ease-out;
  padding-left: 2em;
}
.menu-mobile .links-menu-mobile ul.nav-drop > div {
  overflow: hidden;
}
.menu-mobile .links-menu-mobile .submenu-trig:not(:checked) + label > span.sub-menu-arrow:after {
  font-family: "Font Awesome 6 Pro";
  font-size: 0.6em;
  content: "\f061";
}
.menu-mobile .links-menu-mobile .submenu-trig:checked + label > span.sub-menu-arrow:after {
  font-family: "Font Awesome 6 Pro";
  font-size: 0.6em;
  content: "\f062";
}
.menu-mobile .links-menu-mobile .submenu-trig:checked + label + ul {
  grid-template-rows: 1fr;
}

#menu-mob-trig {
  display: none;
}

#menu-icon {
  position: relative;
  z-index: 1010;
  margin-top: 18px;
}
#menu-icon .hamburger-menu {
  width: 28px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
#menu-icon .hamburger-menu .line {
  width: 100%;
  height: 2px;
  background-color: #F4EDE5;
  /* You can adjust the color */
}
#menu-icon .close-menu {
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
}
#menu-icon .close-menu .line {
  width: 100%;
  height: 3px;
  z-index: 999999;
  background-color: #F4EDE5;
  /* You can adjust the color */
  transform-origin: center;
  position: absolute;
  top: 50%;
  translate: 0% -50%;
}
#menu-icon .close-menu .line:first-child {
  transform: rotate(45deg);
}
#menu-icon .close-menu .line:last-child {
  transform: rotate(-45deg);
}

#menu-mob-trig:not(:checked) + #menu-icon .close-menu {
  display: none;
}
#menu-mob-trig:checked + #menu-icon .hamburger-menu {
  display: none;
}
#menu-mob-trig:checked + #menu-icon + .menu-mobile {
  translate: 0% 0%;
  opacity: 1;
}

/*--- FOOTER ---*/
#footer-container {
  background: #1D1D1B;
  background: linear-gradient(0deg, rgb(29, 29, 27) 5%, rgb(122, 22, 26) 70%);
}

#footer-social {
  padding-top: 4em;
  padding-bottom: 0em;
  text-align: center;
  z-index: 2;
  position: relative;
}
#footer-social h2 {
  font-size: 1.25em;
}

.social-grid {
  width: 80%;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-gap: 1em;
  padding: 0;
  align-content: center;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .social-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 2em;
  }
}
.social-grid input.email {
  font-size: 0.9em;
  border: 1px solid #F4EDE5;
  padding: 0.5em;
  height: 35px;
  background: none;
  color: #f4ede5;
  font-weight: 300;
  margin-bottom: 0.25em;
}
.social-grid input.submit {
  background: #F4EDE5;
  border: 1px solid #F4EDE5;
  color: #7a161a;
  text-transform: uppercase;
  font-weight: 700;
  height: 35px;
}
.social-grid input.submit:hover {
  background: #C5A46B;
  color: #7a161a;
  border: 1px solid #C5A46B;
}
.social-grid ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #F4EDE5;
}
.social-grid ::-moz-placeholder { /* Firefox 19+ */
  color: #F4EDE5;
}
.social-grid :-ms-input-placeholder { /* IE 10+ */
  color: #F4EDE5;
}
.social-grid :-moz-placeholder { /* Firefox 18- */
  color: #F4EDE5;
}
.social-grid h2,
.social-grid a {
  color: #F4EDE5;
}
.social-grid a:hover {
  color: #C5A46B;
}
.social-grid i {
  margin-right: 0.5em;
  margin-left: 0;
  margin-bottom: 0.25em;
  margin-top: 0.25em;
  font-size: 1.5em;
}
@media screen and (max-width: 1000px) {
  .social-grid {
    width: 90%;
    grid-gap: 1em;
  }
  .social-grid i {
    font-size: 1.25em;
  }
}

.social-grid-heading {
  text-align: right;
  padding-top: 1em;
  padding-bottom: 1em;
  border-right: 1px solid #F4EDE5;
  padding-right: 1em;
}
@media screen and (max-width: 800px) {
  .social-grid-heading {
    border-right: 0;
    padding-right: 0;
    padding-bottom: 0.25em;
  }
}
.social-grid-heading h2 {
  float: right;
  text-align: right;
}
@media screen and (max-width: 800px) {
  .social-grid-heading h2 {
    float: none;
    text-align: center;
  }
}

.social-grid-links {
  text-align: left;
}
@media screen and (max-width: 800px) {
  .social-grid-links {
    text-align: center;
    margin: 0 auto;
    padding-bottom: 1em;
  }
}

#footer {
  color: #F4EDE5;
  text-align: center;
  padding: 5em;
  position: relative;
  font-size: 0.8em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 300;
}
#footer a {
  color: #F4EDE5;
  border-bottom: 1px solid transparent;
}
#footer a:hover {
  color: #C5A46B;
  border-bottom: 1px solid #C5A46B;
}
#footer i {
  font-size: 1.25em;
  margin-left: 0.5em;
  margin-right: 0.5em;
  margin-bottom: 0.25em;
}
#footer .footer-logo {
  padding-top: 0.5em;
  border-right: 0;
  padding-right: 0;
  text-align: center;
  margin-bottom: 2em;
}
#footer .footer-logo img {
  float: none;
  margin: 0 auto !important;
  display: block;
  max-width: 120px !important;
}
#footer .footer-credits {
  text-align: center;
}

#footer::before {
  content: "";
  position: absolute;
  inset: 1em;
  pointer-events: none;
  z-index: 10;
  background: linear-gradient(#f4ede5, #f4ede5) top left, linear-gradient(#f4ede5, #f4ede5) top right, linear-gradient(#f4ede5, #f4ede5) bottom right, linear-gradient(#f4ede5, #f4ede5) bottom left;
  background-repeat: no-repeat;
  background-size: 0% 1px, 1px 0%, 0% 1px, 1px 0%;
  animation: drawBorder 0.6s ease forwards 0.2s;
  /* 👇 flipped emphasis: fade upward instead of downward */
  -webkit-mask-image: linear-gradient(to top, black 50%, transparent 90%);
  mask-image: linear-gradient(to top, black 50%, transparent 90%);
}

/* === FORCE SOCIAL GRID TO KEEP 2 COL LAYOUT === */
#subscribe.social-grid {
  width: 80%;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-gap: 0.5em;
  align-items: center;
}

@media screen and (max-width: 800px) {
  #subscribe.social-grid {
    grid-template-columns: 1fr;
    grid-gap: 0.5em;
  }
}
/* === OVERRIDE KIT FORM LAYOUT (THIS FIXES STACKING) === */
#subscribe .formkit-form .formkit-fields {
  display: flex !important;
  flex-wrap: nowrap !important;
  margin-top: -1em;
  padding-left: 0.5em;
  max-width: 100%;
  gap: 0.5em;
  align-items: center;
}
@media screen and (max-width: 800px) {
  #subscribe .formkit-form .formkit-fields {
    padding-left: 0em;
    display: block !important;
  }
  #subscribe .formkit-form .formkit-fields input {
    text-align: center !important;
    width: 90% !important;
    margin-bottom: 0.5em !important;
  }
}

/* stop Kit forcing full width stacking */
#subscribe .formkit-field {
  margin: 0 !important;
}

#subscribe .formkit-submit {
  margin: 0 !important;
}

/* === INPUT STYLING (MATCH YOUR OLD DESIGN) === */
#subscribe .formkit-input {
  font-size: 0.9em !important;
  border: 1px solid #F4EDE5 !important;
  padding: 0.5em 0.75em !important;
  height: 35px !important;
  background: transparent !important;
  color: #F4EDE5 !important;
  font-weight: 300 !important;
  border-radius: 0 !important;
  margin-bottom: 0.25em;
}

/* placeholder colours */
#subscribe .formkit-input::placeholder {
  color: #F4EDE5 !important;
  opacity: 1;
}

/* === BUTTON STYLING === */
#subscribe .formkit-submit {
  background: #F4EDE5 !important;
  border: 1px solid #F4EDE5 !important;
  color: #7a161a !important;
  text-transform: uppercase;
  font-weight: 700 !important;
  height: 35px !important;
  padding: 0 12px !important;
  margin-top: -3px !important;
  border-radius: 0 !important;
}

/* hover state */
#subscribe .formkit-submit:hover {
  background: #C5A46B !important;
  border-color: #C5A46B !important;
  color: #7a161a !important;
}

/* remove weird kit spacing below form */
#subscribe .formkit-powered-by-convertkit-container {
  display: none !important;
}

/**
*
* General overrides for woocommerce. Don't edit this section unless needed.
*
**/
.woocommerce .page-content {
  width: 90%;
  max-width: 1920px;
  margin: 1em auto 3em;
  display: block;
}

.shop-archive_page .page-content {
  padding-bottom: 50px;
  max-width: 11d1b1bpx;
}
.shop-archive_page .sap-wrapper {
  display: grid;
  grid-template-columns: 1fr 0;
}
.shop-archive_page .sap-wrapper .sap-content ul.products {
  /* grid-template-columns: repeat(4,1fr); */
  grid-template-columns: repeat(3, 1fr);
  /* @media screen and (max-width:1200px){
      grid-template-columns: repeat(3,1fr);
  } */
}
.shop-archive_page .sap-wrapper .sap-content ul.products:before {
  display: none;
}
@media screen and (min-width: 801px) {
  .shop-archive_page .sap-wrapper .sap-content ul.products {
    display: grid;
    grid-gap: 1rem;
  }
}
@media screen and (max-width: 980px) {
  .shop-archive_page .sap-wrapper .sap-content ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}
.shop-archive_page .sap-wrapper .sap-content ul.products > li.product {
  width: 100% !important;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .shop-archive_page .sap-wrapper .sap-content ul.products > li.product {
    margin-bottom: 1rem;
  }
}
.shop-archive_page .sap-wrapper .sap-content ul.products > li.product > a {
  display: block;
}
@media screen and (min-width: 800px) {
  .single-product_page .sp-gallery-summary-wrap {
    display: grid;
    grid-template-columns: 45% 55%;
    grid-gap: 2em;
  }
  .single-product_page .sp-gallery-summary-wrap > div {
    width: 100% !important;
  }
}
@media screen and (max-width: 799px) {
  .single-product_page .sp-gallery-summary-wrap .summary {
    text-align: center;
  }
}
.single-product_page .sp-gallery-summary-wrap .summary form.cart.variations_form {
  display: inline-block;
}
.single-product_page .sp-gallery-summary-wrap .summary form.cart.variations_form .woocommerce-variation-add-to-cart {
  display: inline-flex;
}
.single-product_page .sp-gallery-summary-wrap .summary form.cart.variations_form .variations td {
  padding-left: 1em;
}
.single-product_page .sp-gallery-summary-wrap .summary form.cart.variations_form .variations td a.reset_variations {
  position: absolute;
}
.single-product_page .sp-gallery-summary-wrap .summary form.cart:not(.variations_form) {
  display: inline-flex;
}
.single-product_page .sp-gallery-summary-wrap .summary form.cart .quantity .qty {
  height: 100%;
}
.single-product_page .related.products {
  text-align: center;
}

.product_title {
  border-left: 0;
  border-bottom: 0;
  font-size: 2em;
  text-align: left;
  display: block;
  margin-left: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.btm-hr {
  border-top: 2px solid #1d1b1b;
  border-bottom: 0;
  margin-top: 3em;
  margin-bottom: 3em;
}

.back_to_merch_link {
  padding: 0.5em;
  padding-left: 1em;
  padding-right: 1em;
  border: 2px solid #1d1b1b;
  margin: 0 auto;
  display: table;
  text-transform: uppercase;
  text-decoration: none;
  color: #1d1b1b;
}
.back_to_merch_link:hover {
  background: #1d1b1b;
  color: #fff;
}

/*--- SIDE CART ---*/
.xoo-wsc-container {
  text-transform: uppercase;
}

.xoo-wsc-opac {
  background: #1d1b1b;
}

.xoo-wsc-cart-active .xoo-wsc-opac {
  opacity: 0.8;
}

/*---PHOTOS---*/
.pswp__bg {
  background: #1d1d1b !important;
  opacity: 0.99 !important;
}

.dgwt-jg-gallery.dgwt-jg-effect-layla .jg-entry-visible.dgwt-jg-item {
  background: #7a161a !important;
}

.pswp {
  opacity: 1 !important;
}

.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background: #1d1d1b !important;
}

.pswp .pswp__scroll-wrap .pswp__ui .pswp__button--arrow--left:before,
.pswp .pswp__scroll-wrap .pswp__ui .pswp__button--arrow--right:before {
  background-color: none !important;
}

.photoalbum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 1.5em;
  grid-row-gap: 1em;
}
@media screen and (max-width: 1400px) {
  .photoalbum-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  .photoalbum-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 40px;
  }
}
.photoalbum-grid .gallery img {
  width: 100%;
  height: auto;
  vertical-align: top;
  text-align: center;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.2);
}
.photoalbum-grid .gallery h4 {
  text-transform: uppercase;
  margin-top: 0;
  padding-top: 0.5em;
  text-align: center;
}

/*--- MUSIC ---*/
.pslug_music .more {
  padding-top: 0.5em;
  background: url(../../assets/img/button-bg.webp);
  background-size: cover;
}
.pslug_music .more:hover {
  background: url(../../assets/img/black-button-hover.webp) #1d1b1b;
  color: #fff;
}

.music-more {
  border: 2px solid #fff;
  color: #fff;
  padding: 10px;
  padding-top: 5px;
  text-transform: uppercase;
  font-size: 0.6em;
  margin-right: 0.25em;
}

.music-more:hover {
  position: relative;
  z-index: 5;
  background: #fff;
  border: 2px solid #fff;
  color: #7a161a;
}

.music-more i {
  margin-right: 5px;
}

.disco-grid {
  display: grid;
  width: 90%;
  max-width: 1920px;
  margin: 20px auto;
  grid-template-columns: repeat(3, 1fr);
  font-family: "gotham";
}

.grid-item {
  overflow: hidden;
  padding: 10px;
}

.grid-item .grid-content {
  position: relative;
}

.grid-item img {
  display: block;
  padding-bottom: 0;
  width: 100%;
  height: auto;
}

.title-overlay {
  position: absolute;
  left: 0;
  top: 0;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.5em;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 100%;
  justify-content: space-between;
  align-items: center;
  z-index: 3 !important;
  align-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s;
  padding: 5%;
  background-color: rgba(190, 10, 14, 0.9);
  color: #fff;
}

.grid-item div:hover .title-overlay {
  opacity: 1;
}

@media screen and (max-width: 980px) {
  .grid-item div:hover .title-overlay {
    display: none;
    opacity: 0;
  }
  .grid-item {
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 1400px) {
  .disco-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 800px) {
  .disco-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .disco-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-spacing: 10px;
  }
}
.mob-info {
  display: block;
  text-align: left;
  font-weight: 400;
  color: #1d1b1b;
  text-transform: uppercase;
  padding-top: 20px;
  padding-bottom: 40px;
}

.vid-title {
  font-size: 1.25em;
  text-transform: uppercase;
  font-weight: 400;
}

.mob-info a {
  border: 2px solid #7a161a;
  color: #7a161a;
  display: inline-block;
  padding: 0.25em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  font-size: 0.8em;
  margin-top: 1em !important;
}

.mob-info a:hover {
  background: #7a161a;
  color: #fff;
  border: 2px solid #7a161a;
}

/*--- SHOWS ---*/
.pslug_shows .page-content {
  padding-top: 5em;
  padding-bottom: 5em;
}

.bit-widget .bit-no-dates-container {
  padding-top: 2em !important;
  padding-bottom: 1em !important;
  border-top: 0 !important;
}

.bit-widget .bit-top-track-button {
  text-align: center !important;
}

.shows-content {
  width: 90% !important;
  max-width: 1200px !important;
  margin: 0 auto;
  display: block;
}

.bit-widget {
  color: #1d1b1b !important;
  font-size: 2em;
}

.bit-upcoming-events-show-all-button,
.bit-widget .bit-upcoming-events-show-all-button {
  display: none !important;
}

.bit-widget .bit-nav-bar-container {
  padding: 0;
}

.bit-widget .bit-top-track-button {
  padding-top: 0 !important;
  color: #1d1b1b !important;
  padding-bottom: 10px !important;
}

.bit-lineUp-with,
.bit-widget .bit-event .bit-lineUp-container .bit-lineUp {
  font-family: "gotham";
  color: #1d1b1b;
  font-size: 1em !important;
  line-height: 1em;
  position: relative;
  top: 2em !important;
}

.bit-lineUp-with {
  padding-right: 1em !important;
}

.bit-widget-container {
  margin-top: 0 !important;
  width: 100%;
}

.bit-track-button {
  display: none !important;
}

.bit-events {
  color: #1d1b1b !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.bit-event {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.bit-top-track-button {
  color: #1d1b1b;
  margin: 0 auto;
  display: block;
  text-transform: uppercase;
  font-family: "gotham";
  padding-bottom: 30px !important;
  text-align: center;
  font-size: 18px !important;
}

.bit-top-track-button a {
  color: #1d1b1b !important;
}

a.bit-top-track-button {
  padding-left: 10px !important;
  padding-right: 10px !important;
  margin-bottom: 10px !important;
}

.bit-nav-bar {
  font-family: "gotham";
  text-transform: uppercase;
  padding-bottom: 30px;
  font-size: 20px;
}

.bit-nav-bar a,
.bit-nav-bar span {
  color: #1d1b1b !important;
}

.bit-nav-bar a:hover,
.bit-nav-bar span a:hover {
  color: #7a161a !important;
}

.bit-venue,
.bit-venue a {
  font-weight: 400 !important;
  font-family: "gotham";
  padding-right: 10px;
  color: #1d1b1b !important;
}

.bit-widget {
  padding-top: 0;
}

.bit-widget .bit-location,
.bit-widget .bit-venue {
  padding-top: 1.25em;
  font-size: 1.2em;
  font-family: "gotham";
}
@media screen and (max-width: 980px) {
  .bit-widget .bit-location,
  .bit-widget .bit-venue {
    font-size: 1em;
  }
}

.bit-widget .bit-location {
  color: #7a161a;
  font-weight: 400 !important;
  padding-top: 1em;
  padding-bottom: 0.5em !important;
}
@media screen and (max-width: 980px) {
  .bit-widget .bit-location {
    font-size: 0.9em;
  }
}

.bit-event {
  padding-top: 2em;
  padding-bottom: 2em;
  text-align: left !important;
}

.bit-details {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}

.bit-widget .bit-event {
  border-bottom: 1px solid #7a161a;
  border-top: 0 !important;
}

.bit-widget .bit-event:last-child {
  border-bottom: 0 !important;
}

.bit-widget .bit-event:last-child {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.bit-past-events,
.bit-upcoming-events {
  font-family: "gotham" !important;
  text-transform: uppercase;
}

.bit-widget .bit-upcoming-events,
bit-past-events {
  border-bottom: 0 !important;
}

.bit-past-events a,
.bit-upcoming-events a {
  color: #7a161a;
}

.bit-date {
  font-size: 1.5em;
  color: #7a161a;
  display: block;
  font-weight: 700 !important;
  margin-right: 18px;
}
@media screen and (max-width: 980px) {
  .bit-date {
    font-size: 1.2em;
  }
}

.bit-button,
.bit-date {
  font-family: "gotham";
  text-transform: uppercase;
}

.bit-button {
  background: none !important;
  font-weight: 400 !important;
  padding: 0.15em !important;
  padding-top: 0.5em !important;
  margin-top: 2px;
  border-radius: 0 !important;
  margin-bottom: 2px;
  color: #7a161a !important;
  border-width: 1px !important;
  border: 2px solid #7a161a !important;
}

.bit-widget .bit-event .bit-offers-text,
.bit-widget .bit-event .bit-rsvp {
  font-size: 0.95em !important;
}
@media screen and (max-width: 980px) {
  .bit-widget .bit-event .bit-offers-text,
  .bit-widget .bit-event .bit-rsvp {
    font-size: 0.8em;
  }
}

.bit-button:hover {
  color: #fff !important;
  background: #7a161a !important;
  border: 2px solid #7a161a !important;
}

.bit-widget .bit-event .bit-event-buttons {
  margin-top: 0 !important;
}

.bit-widget .bit-event-list-title,
.bit-widget .bit-top-track-button {
  font-size: 1.5em;
}

.bit-event:hover {
  background: rgba(0, 0, 0, 0) !important;
}

.bit-widget .bit-no-dates-container .bit-no-dates-title {
  font-family: "gotham";
  font-size: 1.5em;
}

@media screen and (max-width: 1125px) {
  .bit-widget.bit-layout-ipad .bit-event .bit-button {
    width: 120px;
  }
  .bit-widget.bit-layout-ipad .bit-event {
    padding-right: 15px;
  }
}
.bit-widget.bit-layout-desktop .bit-details {
  display: flex !important;
}

.bit-widget.bit-layout-desktop .bit-location {
  margin-left: 0 !important;
  text-align: left !important;
  font-weight: bold;
}

.bit-past-events .bit-event .bit-date {
  width: 200px;
}

.bit-past-events-show-all-button {
  font-family: "gotham";
  max-width: 300px;
  margin: 10px auto !important;
  display: block !important;
  background: none;
  border: 2px solid #1d1b1b;
}

.bit-widget .bit-play-my-city-button {
  display: none !important;
}

.bit-widget.bit-layout-desktop .bit-details,
.bit-widget.bit-layout-desktop .bit-details > div {
  display: block !important;
}

.bit-nav-bar {
  display: none !important;
}

@media screen and (max-width: 1125px) {
  .bit-date {
    padding-bottom: 0 !important;
  }
}
.bit-upcoming-events-show-all-button {
  font-family: "gotham" !important;
  font-weight: 600 !important;
  max-width: 300px !important;
  display: block !important;
  margin: 5px auto !important;
  background: #fff;
  font-size: 1.5em !important;
}

.bit-upcoming-events-show-all-button:hover {
  background: #fff !important;
  color: #fff !important;
}

@media screen and (max-width: 800px) {
  .bit-widget {
    padding-top: 10px;
  }
  .bit-details {
    padding-top: 20px !important;
    padding-bottom: 10px !important;
  }
}
@media screen and (max-width: 600px) {
  .bit-event {
    font-size: 1em;
    padding-bottom: 1em;
  }
  .bit-date {
    padding-top: 20px !important;
  }
  .bit-widget .bit-event {
    padding-top: 10px !important;
  }
}
.bit-date {
  padding-top: 5px;
}

.bit-rsvp-container {
  opacity: 0 !important;
  display: none;
}

.bit-rsvp-container a {
  margin-left: auto;
  margin-bottom: 5px;
}

.bit-widget .bit-event .bit-button,
.bit-widget .bit-event .bit-offers-text,
.bit-widget .bit-event .bit-rsvp {
  text-transform: uppercase !important;
  line-height: 1.5em !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.bit-widget .bit-event .bit-rsvp {
  line-height: 1.25em !important;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

.bit-widget .bit-event .bit-offers-menu {
  font-size: 0.9em !important;
  display: block !important;
  top: 38px !important;
  background: #7a161a !important;
  color: #fff !important;
  margin-left: -1px !important;
}

.on-sale-date {
  display: none;
}

.bit-offers-menu .bit-offer {
  padding-top: 0.25em;
  padding-bottom: 0.25em;
}

.bit-widget.bit-layout-desktop .bit-offer:hover {
  background: rgba(255, 255, 255, 0.5) !important;
}

.bit-widget .bit-description {
  margin-top: 0.75em !important;
  font-size: 0.9em !important;
  font-weight: 700 !important;
  color: #1d1b1b !important;
  max-height: 40px !important;
  line-height: 1.5em !important;
  overflow: hidden;
  display: none;
}

/*--- PRESS ---*/
.pslug_press .page-content {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-top: 2em;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: top !important;
  align-content: top !important;
  text-align: center;
  margin: 0 auto;
  padding-top: 2em;
  max-width: 100%;
}

.press-item {
  background: #1d1b1b;
  display: block;
  margin-bottom: 0px;
  width: 100%;
  text-align: center;
  font-size: 0.9em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  min-height: 30em;
  line-height: 1.556em;
  font-weight: 700;
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  padding: 0;
}
.press-item:hover {
  -webkit-filter: grayscale(0) !important;
  filter: grayscale(0) !important;
}
.press-item a {
  color: #F4EDE5;
}
.press-item a:hover {
  color: #F4EDE5;
}
.press-item .press-overlay {
  background: rgba(29, 27, 27, 0.85);
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 2em;
  padding-top: 3em;
  padding-bottom: 4em;
}
.press-item .more {
  color: #F4EDE5;
  border: 1px solid #F4EDE5;
  padding: 0.5em;
  font-weight: 300;
}
.press-item .more:hover {
  background: #F4EDE5 !important;
  color: #7a161a !important;
  border: 1px solid #F4EDE5;
}
.press-item .press-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.32, 1, 0.36, 1);
}
.press-item:hover {
  cursor: pointer !important;
}
.press-item:hover .press-bg {
  transform: scale(1.08);
}
.press-item .press-overlay:hover {
  background: rgba(122, 22, 26, 0.7);
}

@media screen and (max-width: 1200px) {
  .press-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 800px) {
  .press-grid {
    margin: 0 auto;
    width: 100%;
    text-align: center;
    max-width: 100%;
  }
  .press-item {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .press-grid {
    margin: 0 auto;
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
    max-width: 100%;
  }
  .press-item {
    width: 100%;
    max-width: 100%;
  }
}
.press-overlay {
  position: absolute;
  inset: 0;
}

/* animated border */
.press-overlay::after {
  content: "";
  position: absolute;
  top: 1em;
  left: 1em;
  right: 1em;
  bottom: 1em;
  pointer-events: none;
  background: linear-gradient(#f4ede5, #f4ede5) top left, linear-gradient(#f4ede5, #f4ede5) top right, linear-gradient(#f4ede5, #f4ede5) bottom right, linear-gradient(#f4ede5, #f4ede5) bottom left;
  background-repeat: no-repeat;
  /* start with no visible lines */
  background-size: 0% 1px, 1px 0%, 0% 1px, 1px 0%;
  /* left */
  transition: background-size 0.4s ease;
}

.press-item:hover .press-overlay::after {
  background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
  /* left expands bottom → top */
}

.press-overlay::after {
  transition: background-size 0.4s ease 0.1s;
}

/*--- HOME ---*/
.pslug_home .logo-carousel {
  background: url(../../assets/img/logo-bg.webp) no-repeat #1d1d1b;
  background-position: center right;
  background-size: cover;
  margin-bottom: -3px !important;
  z-index: 2;
  position: relative;
}

.home-slider {
  margin-top: -2px;
  --embla-viewport-width:100%;
  --embla-slide-width:100%;
  --embla-slide-margin:0;
  --embla-slide-height:auto;
  background: #C5A46B;
  clip-path: polygon(0 0, 100% 0%, 100% 95%, 0% 100%);
  z-index: 5;
  position: relative;
  margin-bottom: -3.25em;
}

.home-slider::after {
  content: "";
  position: absolute;
  inset: 1em;
  pointer-events: none;
  z-index: 10;
  background: linear-gradient(#f4ede5, #f4ede5) top left, linear-gradient(#f4ede5, #f4ede5) top right, linear-gradient(#f4ede5, #f4ede5) bottom right, linear-gradient(#f4ede5, #f4ede5) bottom left;
  background-repeat: no-repeat;
  background-size: 0% 1px, 1px 0%, 0% 1px, 1px 0%;
  animation: drawBorder 0.6s ease forwards 0.2s;
  /* subtle integration with slide imagery */
  -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 95%);
  mask-image: linear-gradient(to bottom, black 85%, transparent 95%);
}

.home-shows {
  padding-top: 4em;
  padding-bottom: 4em;
  background: #F4EDE5;
}

.home-release {
  text-align: center;
  padding-bottom: 3em;
  padding-top: 5em;
  background: linear-gradient(180deg, rgb(197, 164, 107) 0%, rgb(244, 237, 229) 80%);
  background-position: fixed;
  background-size: cover;
}
.home-release .home-release-grid {
  display: grid;
  position: relative;
  padding: 3em;
  padding-right: 5em;
  background: #F4EDE5;
  background-position: fixed;
  background-size: cover;
  align-items: center;
  align-content: center;
  top: -10em !important;
  z-index: 5;
  grid-template-columns: 50% 50%;
  width: 90%;
  grid-gap: 2em;
  max-width: 1200px;
  margin: 0 auto -12em;
}
@media screen and (max-width: 1400px) {
  .home-release .home-release-grid {
    top: -6em !important;
    margin: 0 auto -8em;
  }
}
.home-release .home-release-artwork,
.home-release .home-release-info {
  height: 100%;
}
.home-release .home-release-artwork img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0;
  margin-top: 0;
}
.home-release .home-release-info {
  padding: 0;
  text-align: left;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.home-release .home-release-info h2,
.home-release .home-release-info h3 {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  color: #1d1b1b;
  text-align: left;
  margin-bottom: 0px;
  line-height: 1em;
}
.home-release .home-release-info h3 {
  font-size: 3em;
  margin-top: 0;
  padding-top: 0;
}
@media screen and (max-width: 1024px) {
  .home-release .home-release-info h3 {
    text-align: center;
    font-size: 2em;
  }
}
.home-release .home-release-info h2 {
  font-size: 4em;
  color: #7a161a;
  text-align: left;
  margin-bottom: 0.25em;
  margin-top: 0.25em;
}
@media screen and (max-width: 800px) {
  .home-release .home-release-info h2 {
    text-align: center;
    font-size: 3em;
  }
}
.home-release .release-spacer {
  border-top: 2px solid #1d1b1b;
  margin-top: 2em;
  margin-bottom: 2em;
}
.home-release .home-release-info a {
  margin-top: 0em;
  margin-bottom: 0.75em;
  font-size: 2em;
  text-transform: uppercase;
  color: #7a161a;
  font-family: "gotham";
  font-weight: 700;
  line-height: 1em;
  width: auto;
  display: table;
}
@media screen and (max-width: 800px) {
  .home-release .home-release-info a {
    font-size: 1.5em;
  }
}
.home-release .home-release-info a:hover {
  color: #C5A46B;
  /* background: url(../../assets/img/pink.png);
  background-position: left center;
  background-size: contain;
  background-repeat: no-repeat;*/
  display: table;
}
.home-release .home-release-info i {
  margin-right: 0.15em;
  width: 30px;
  font-size: 0.85em;
}
@media screen and (max-width: 800px) {
  .home-release .home-release-grid {
    display: block;
    padding-right: 3em;
    max-width: 800px;
    width: 85%;
    text-align: center;
  }
  .home-release .home-release-info,
  .home-release .home-release-artwork {
    text-align: center;
    padding: 2%;
  }
  .home-release .home-release-info h2 {
    text-align: center;
  }
  .home-release .home-release-info a {
    margin: 0.5em auto 0;
  }
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.logo-carousel {
  padding: 3em;
  padding-top: 3em;
  background: #c5a46b;
}
.logo-carousel .ticker {
  width: 100%;
  padding-top: 1em;
  overflow: hidden;
  position: relative;
}
.logo-carousel .ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 24s linear infinite;
}
.logo-carousel .ticker__item {
  flex: 0 0 auto;
  padding: 0.25em 1rem;
  margin-left: 1.5em;
  margin-right: 1.5em;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .logo-carousel .ticker__item {
    margin-left: 0.5em;
    margin-right: 0.5em;
  }
}
.logo-carousel .ticker__item img {
  display: block;
  height: 3.3333333333vw;
  max-height: 85px !important;
  max-width: 200px !important;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
  width: auto;
  filter: sepia(10%);
  object-fit: contain;
}
@media screen and (max-width: 1200px) {
  .logo-carousel .ticker__item img {
    height: 12vw;
  }
}

/*--- BIO ---*/
.pslug_home .bio-grid {
  background: linear-gradient(180deg, rgb(244, 237, 229) 0%, rgb(197, 164, 107) 100%);
  position: relative;
  z-index: 1;
}

.bio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #F4EDE5;
  grid-gap: 0em;
  align-content: center;
  align-items: center;
}
.bio-grid .bio-img {
  width: 100%;
  height: auto;
  clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
}
.bio-grid .bio-content {
  padding: 5em;
  font-weight: 300;
}
@media screen and (max-width: 1600px) {
  .bio-grid .bio-content {
    padding: 2em;
  }
}
@media screen and (max-width: 1200px) {
  .bio-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .bio-grid .bio-img {
    width: 100%;
    height: auto;
    clip-path: polygon(0 0, 100% 0%, 100% 89%, 0% 100%);
  }
}

/*--- PHOTOS ---*/
figcaption .dgwt-jg-caption__font--10 {
  font-size: 0em !important;
}

.dgwt-jg-caption__icon {
  display: none !important;
}

.pslug_photos .name {
  font-size: 1.5em;
}
.pslug_photos .photo-grid {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1600px) {
  .pslug_photos .photo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1000px) {
  .pslug_photos .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .pslug_photos .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*--- VIDEOS ---*/
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2em;
  margin-top: 2em;
  max-width: 90%;
  margin: 0 auto;
  padding-top: 2em;
  padding-bottom: 3em;
  text-align: center;
}
.videos-grid div {
  margin-bottom: 1em;
}
.videos-grid h4 {
  margin-top: -0.25em;
  padding-top: 0;
  font-size: 1.2em;
}
@media screen and (max-width: 1200px) {
  .videos-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*--- PAGE HEADERS ---*/
.page-header {
  position: relative;
  position: relative;
  height: 35vh;
  width: 100%;
  background-size: cover !important;
  background-position: center 45% !important;
  z-index: 0;
}
@media screen and (max-width: 980px) {
  .page-header {
    height: 25vh;
  }
}

.page-header-content {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: rgba(197, 164, 107, 0.9);
  backdrop-filter: grayscale(100%);
}
.page-header-content h1 {
  color: #f4ede5;
  font-size: 4em;
}

.page-header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.page-header-content,
.page-header-content::after {
  z-index: 55 !important;
}

.page-header-content::before {
  content: "";
  position: absolute;
  inset: 1em;
  pointer-events: none;
  z-index: 10;
  background: linear-gradient(#f4ede5, #f4ede5) top left, linear-gradient(#f4ede5, #f4ede5) top right, linear-gradient(#f4ede5, #f4ede5) bottom right, linear-gradient(#f4ede5, #f4ede5) bottom left;
  background-repeat: no-repeat;
  background-size: 0% 2px, 2px 0%, 0% 2px, 2px 0%;
  animation: drawBorder 0.6s ease forwards 0.2s;
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

@keyframes drawBorder {
  to {
    background-size: 100% 2px, 2px 100%, 100% 2px, 2px 100%;
  }
}
/*--- CONTACT ---*/
.pslug_contact .logo-carousel {
  display: none;
}

.contact-form {
  width: 80%;
  margin: 3em auto 1em;
  display: block;
}
.contact-form .wpcf7-not-valid-tip {
  font-size: 0.8em;
  margin-top: 0.25em;
}
.contact-form label {
  font-family: "gotham";
  font-size: 1em;
  font-weight: 700;
  text-transform: uppercase;
}
.contact-form .wpcf7-text, .contact-form .wpcf7-submit {
  height: 50px;
}
.contact-form .wpcf7-text, .contact-form .wpcf7-textarea {
  border: 2px solid #1d1b1b;
  padding: 0.5em;
  width: 100%;
  background: none;
  margin-top: 0.25em;
  color: #1d1b1b;
}
.contact-form .wpcf7-submit {
  background: #7a161a;
  color: #f4ede5;
  border: 0;
  text-transform: uppercase;
  font-family: "gotham";
  font-size: 1.2em;
  line-height: 1em;
  height: auto;
  margin: -1em auto 0;
  display: table;
  padding: 0.5em;
}
.contact-form .wpcf7-submit:hover {
  background: #c5a46b;
  color: #1d1d1b;
}
.contact-form .wpcf7 form.sent .wpcf7-response-output,
.contact-form .wpcf7 form.invalid .wpcf7-response-output {
  text-align: center !important;
  border: 0 !important;
  padding: 0em !important;
  font-family: "gotham";
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.25em;
}

/*--- BOOKING ---*/
.pslug_booking .logo-carousel {
  background: url(../../assets/img/logo-bg.webp) no-repeat #1d1d1b;
  background-position: center right;
  background-size: cover;
}

.booking-intro {
  text-align: center;
  padding-left: 3em;
  padding-right: 3em;
  padding-top: 2em;
  padding-bottom: 2em;
  font-size: 1.25em;
  font-weight: 700;
}
.booking-intro .more {
  color: #7a161a;
  border: 2px solid #7a161a;
  padding: 0.5em;
  font-weight: 400;
  text-transform: uppercase;
  margin: 2em auto 1em;
  display: table;
}
.booking-intro .more:hover {
  background: #7a161a !important;
  color: #F4EDE5 !important;
  border: 2px solid #7a161a;
}
.booking-intro ul {
  list-style: none;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 0;
}
.booking-intro li {
  display: block;
  margin-bottom: 0.5em;
}
.booking-intro li::before {
  content: "•";
  padding-right: 0.5em;
}

.booking-quotes {
  background: #7a161a;
  padding-top: 4em;
  padding-bottom: 5em;
  padding-left: 5em;
  padding-right: 5em;
}

.booking-quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 4em;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: #f4ede5;
}
.booking-quotes-grid strong {
  color: #c5a46b;
}
@media screen and (max-width: 1024px) {
  .booking-quotes-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 2em;
  }
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: center;
  align-items: center;
  grid-gap: 0em;
  width: 100%;
  margin: 0 auto;
  padding-top: 0em;
  padding-bottom: 0em;
}
.booking-grid .booking-info {
  background: #F4EDE5;
  color: #1d1b1b;
  padding: 5em;
  padding-top: 2em;
  padding-bottom: 2em;
}
@media screen and (max-width: 1200px) {
  .booking-grid .booking-info {
    padding: 2em;
    padding-left: 3em;
    padding-right: 3em;
    padding-bottom: 1em;
  }
}
.booking-grid .booking-info .arve {
  margin-top: 2em;
}
.booking-grid .booking-form {
  padding: 5em;
  background: #C5A46B;
  padding-top: 3em;
  padding-bottom: 2em;
}
@media screen and (max-width: 1200px) {
  .booking-grid .booking-form {
    padding: 2em;
    padding-left: 3em;
    padding-right: 3em;
  }
}
.booking-grid .contact-form {
  width: 90%;
  max-width: 800px;
  padding-top: 0.5em;
  margin-top: 0;
}
.booking-grid .contact-form .wpcf7-submit:hover {
  background: #f4ede5;
  color: #1d1b1b;
}
.booking-grid .contact-form .wpcf7 form.sent .wpcf7-response-output,
.booking-grid .contact-form .wpcf7 form.invalid .wpcf7-response-output {
  text-align: center !important;
  border: 0 !important;
  padding: 0em !important;
  font-family: "gotham";
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.25em;
}
@media screen and (max-width: 1200px) {
  .booking-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 2em;
  }
}

/*--- PHOTOS ---*/
.single-photoalbum .page-content {
  width: 100%;
  margin: 0em auto 3em;
  padding-top: 0;
  display: block;
}
.single-photoalbum hr {
  margin-top: 3em;
  margin-bottom: 3em;
  border-top: 2px solid #7a161a;
}

/*# sourceMappingURL=https://redofficial.co.uk/wp-content/themes/bb-theme-master/assets/css/cs.map */