/* ==========================================================================
   YXL — Young x Living
   Custom stylesheet built from DESIGN-TOKENS.md (values measured from the
   original site). Breakpoints: 479 / 767 / 991 / base 992–1279 / 1280+ / 1920+
   ========================================================================== */

:root {
  --black: #000;
  --white: #fff;
  --paragraph: rgba(255, 255, 255, 0.9);
  --main-red: #e9204f;
  --main-orange: #ff8a00;
  --main-green: #00ffa8;
  --grey: #0e0e0e;
  --borders: rgba(255, 255, 255, 0.2);
  --light-grey: #262626;
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--black);
  color: #333;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

img {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
  border: 0;
}

h1 {
  color: var(--white);
  margin: 0 0 10px;
  font-family: Montserrat, sans-serif;
  font-size: 60px;
  font-weight: 800;
  line-height: 72px;
}

h2 {
  color: var(--white);
  text-align: left;
  margin: 0 0 10px;
  font-family: Montserrat, sans-serif;
  font-size: 45px;
  font-weight: 800;
  line-height: 54px;
}

h3 {
  color: var(--white);
  margin: 0 0 10px;
  font-family: Montserrat, sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 40px;
}

h4 {
  color: var(--white);
  margin: 0 0 10px;
  font-family: Montserrat, sans-serif;
  font-size: 27px;
  font-weight: 800;
  line-height: 32px;
}

h5 {
  color: var(--white);
  margin: 0 0 10px;
  font-family: Montserrat, sans-serif;
  font-size: 23px;
  font-weight: 800;
  line-height: 30px;
}

h6 {
  color: var(--white);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
}

p {
  color: var(--paragraph);
  margin: 0 0 10px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  line-height: 26px;
}

a {
  color: var(--paragraph);
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  line-height: 26px;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--main-red);
}

/* ---------- Layout primitives ---------- */
.container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.section.dark-gray {
  background-color: var(--grey);
}

.description-wrapper-centred {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 45px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.page-icon-wrapper {
  margin-bottom: 25px;
}

.centered {
  text-align: center;
}

.heading-6-red {
  color: var(--main-red);
  padding-top: 15px;
  padding-bottom: 5px;
}

.single-red-line-top {
  background-color: var(--main-red);
  width: 2px;
  height: 102px;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

/* ---------- Buttons ---------- */
.primary-button {
  border: 2px solid var(--main-red);
  color: var(--white);
  white-space: nowrap;
  background-color: transparent;
  padding: 13.5px 34px;
  font-size: 16px;
  font-weight: 800;
  line-height: 28px;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.primary-button:hover {
  background-color: var(--main-red);
  color: var(--white);
}

.primary-button.banner-button {
  z-index: 4;
  margin-right: 25px;
  padding-left: 55px;
  padding-right: 55px;
}

.light-button {
  border: 2px solid var(--white);
  background-color: var(--white);
  color: var(--black);
  white-space: nowrap;
  padding: 13.5px 34px;
  font-size: 16px;
  font-weight: 800;
  line-height: 28px;
  display: inline-block;
  cursor: pointer;
  transition: color 0.3s, background-color 0.3s;
}

.light-button:hover {
  color: var(--white);
  background-color: transparent;
}

.light-button.banner-button {
  padding-left: 55px;
  padding-right: 55px;
}

.inline-button {
  border-bottom: 2px solid var(--main-red);
  background-color: transparent;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 800;
  display: inline-block;
  cursor: pointer;
  transition: border-color 0.3s;
}

.inline-button:hover {
  border-bottom-color: var(--white);
  color: var(--white);
}

.sold-out-button {
  white-space: nowrap;
  color: var(--paragraph);
  background-color: transparent;
  border: none;
  padding: 14.5px 49px;
  font-size: 16px;
  font-weight: 800;
  line-height: 28px;
  display: inline-block;
  cursor: default;
  transition: opacity 0.3s;
}

.sold-out-button:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Navbar ---------- */
.navbar-main {
  z-index: 3;
  background-color: var(--grey);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 0 20px 1px rgba(255, 255, 255, 0.05);
}

.navbar-wrapper {
  z-index: 10;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1720px;
  height: 100px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.brand-logo {
  flex: none;
  padding-left: 0;
}

.nav-menu-container {
  align-items: center;
  display: flex;
}

.navigation-link-wrapper {
  display: block;
}

.link-header {
  flex-direction: column;
  padding-left: 15px;
  padding-right: 15px;
  transition: opacity 0.5s;
  display: inline-block;
}

.menu-link {
  color: var(--white);
  white-space: nowrap;
  padding: 10px 0;
  font-family: Montserrat, sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 20px;
  display: inline-block;
}

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

.button-border {
  background-color: var(--main-red);
  width: 0%;
  height: 2px;
  transition: width 0.3s;
}

.link-header:hover .button-border {
  width: 100%;
}

.social-icon-wrapper {
  justify-content: space-between;
  display: flex;
}

.social-link-footer {
  justify-content: center;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  color: var(--white);
  font-size: 18px;
  transition: color 0.3s;
  display: flex;
}

.social-link-footer:hover {
  color: var(--main-red);
}

/* burger + mobile chrome (hidden on desktop) */
.menu-button {
  display: none;
  background: none;
  border: none;
  padding: 18px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--paragraph);
  margin: 5px 0;
}

.nav-menu-top-tablet,
.nav-overlay,
.social-icon-wrapper-menu {
  display: none;
}

/* ---------- Hero ---------- */
.home-banner-section {
  background-image: url("assets/hero-bg.jpg");
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: flex-end;
  height: 100vh;
  padding-bottom: 80px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.hero {
  text-align: center;
  letter-spacing: -4px;
  font-size: 85px;
  font-weight: 900;
  line-height: 0.89em;
}

.hero.home {
  margin-left: auto;
  margin-right: auto;
}

.line-banner {
  background-color: var(--main-red);
  width: 2px;
  height: 100px;
}

.line-banner.top {
  display: none;
}

.banner-buttons-wrapper {
  justify-content: center;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

/* ---------- Upcoming Events ---------- */
.shows-container {
  width: 100%;
}

.show-wrapper {
  margin-top: 30px;
  margin-bottom: 30px;
}

.show-item {
  align-items: center;
  margin-top: 15px;
  display: flex;
}

.show-date {
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.08);
  justify-content: center;
  align-items: center;
  min-width: 160px;
  max-width: 285px;
  min-height: 60px;
  margin-right: 25px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.h5-show-date {
  text-align: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  display: flex;
}

.show-place-wrapper {
  background-color: rgba(255, 255, 255, 0.03);
  justify-content: space-between;
  align-self: center;
  width: 65%;
  margin-right: 25px;
  display: flex;
}

.show-place {
  align-self: stretch;
  width: 50%;
  min-width: 160px;
}

.heading-h6-white {
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  margin-bottom: 0;
  padding: 5px 34px;
  display: flex;
}

.show-button {
  width: 17%;
  min-width: 160px;
  max-width: 230px;
  position: relative;
}

.load-more-button-block {
  text-align: center;
}

.load-more-button-wrapper {
  margin-top: 14px;
  display: inline-block;
}

/* ---------- Newsletter ---------- */
.video-block-section {
  height: 300vh;
  position: relative;
}

.email-container {
  justify-content: space-around;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 75px;
  padding-bottom: 75px;
  display: flex;
}

.horizontal-wrapper {
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.form-block {
  width: 100%;
  margin-bottom: 0;
  display: inline-block;
}

.form {
  align-items: center;
  display: flex;
}

.text-field {
  width: 100%;
  min-height: 60px;
  margin-bottom: 0;
  margin-right: 16px;
  padding: 8px 70px 8px 20px;
  color: #333;
  background-color: #fff;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.428571429;
}

.subscribe-button {
  border: 2px solid var(--main-red);
  color: var(--white);
  white-space: nowrap;
  background-color: transparent;
  padding: 13.5px 34px;
  font-size: 16px;
  font-weight: 800;
  line-height: 28px;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.3s;
}

.subscribe-button:hover {
  background-color: var(--main-red);
  color: var(--white);
}

.success-message {
  background-color: var(--black);
  text-align: center;
  padding: 20px 10px;
}

.error-message {
  background-color: var(--black);
  padding: 10px;
  margin-top: 10px;
}

.text-block {
  color: var(--paragraph);
}

[hidden] {
  display: none !important;
}

/* ---------- Videos ---------- */
.video-tabs-container {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-left: 15px;
  padding-right: 15px;
  position: sticky;
  top: 120px;
  overflow: hidden;
}

.tabs-wrapper {
  height: 65vh;
  display: flex;
}

.tabs {
  flex-direction: row;
  width: 100%;
  display: flex;
}

.tabs-content {
  flex: 1;
}

.tab-pane {
  display: none;
  height: 100%;
}

.tab-pane.active {
  display: block;
  height: 65vh;
}

.video {
  height: 100%;
  position: relative;
}

.video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.tabs-menu {
  flex-direction: column;
  width: 20%;
  margin-left: 15px;
  display: flex;
}

.tab-link {
  background-color: var(--black);
  padding: 0;
  text-align: left;
}

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

.barlow-condensed {
  margin-bottom: 8px;
  font-family: "Barlow Condensed", sans-serif;
}

.timer-wrapper {
  margin-bottom: 30px;
}

.scroll-background {
  background-color: var(--light-grey);
  width: 2px;
  margin-left: 15px;
  flex: none;
}

.scroll-bar {
  background-color: var(--main-red);
  width: 2px;
  height: 0%;
}

.tabs-content-mobile {
  display: none;
}

/* ---------- About ---------- */
.columns-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  place-items: center start;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
}

.description-wrapper-right-alignment {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.paragraph-right-alignment {
  text-align: center;
  width: 70%;
  margin-top: 17px;
}

h2.paragraph-right-alignment {
  width: auto;
  margin-top: 0;
}

.blockqoute-white {
  background-color: var(--white);
  width: 42px;
  height: 2px;
  margin-top: 25px;
  margin-bottom: 18px;
}

.qotation {
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  margin-bottom: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
}

.grid-image {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Statement ---------- */
.want-your-event-section {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.empty-block {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  display: none;
}

.description-wrapper-left-alignment {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

/* ---------- Gallery ---------- */
.gallery-grid {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  padding: 15px 15px 10px;
  display: grid;
}

.gallery-grid-more {
  grid-template-rows: auto;
  grid-auto-rows: auto;
  padding-bottom: 10px;
  padding-top: 0;
}

.overflow-hidden-item {
  position: relative;
  overflow: hidden;
}

.gallery-grid .span-2 {
  grid-column: span 2;
}

.gallery-grid-lightbox {
  width: 100%;
  height: 100%;
  display: block;
}

.gallery-grid-lightbox-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-news-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.hover-block {
  color: transparent;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  display: flex;
  transition: color 0.3s, background-color 0.3s;
  position: absolute;
  inset: 0%;
}

.hover-block:hover {
  color: var(--white);
  background-color: rgba(14, 14, 14, 0.6);
}

/* ---------- Services ---------- */
.services-tabs {
  width: 100%;
}

.services-tabs-menu {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  justify-content: center;
  display: flex;
}

.services-tab-link {
  background-color: transparent;
  padding: 0 12px;
  display: inline-block;
}

.services-tab-text {
  color: var(--white);
  padding-top: 17.5px;
  padding-bottom: 17.5px;
  font-size: 16px;
  font-weight: 800;
  transition: color 0.3s;
}

.services-tab-link.active .services-tab-text {
  color: var(--main-red);
}

.services-tab-link .button-border {
  width: 0%;
}

.services-tab-link.active .button-border {
  width: 100%;
}

.collection-list {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.collection-item {
  background-color: rgba(255, 255, 255, 0.03);
  padding: 30px 35px 25px;
}

.collection-item.filtered-out {
  display: none;
}

.flexbox-horizontal {
  justify-content: space-between;
  display: flex;
}

.services-item-name {
  display: inline-block;
}

.blockqoute-red {
  background-color: var(--main-red);
  width: 42px;
  height: 2px;
  margin-bottom: 18px;
}

.pricing {
  color: var(--main-red);
  font-size: 23px;
}

.pricing-wrapper {
  justify-content: flex-start;
}

/* ---------- Latest News ---------- */
.collection-list-3 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 1fr;
  grid-auto-columns: 1fr;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
}

.news-item {
  height: 30vw;
}

.clear-link-block {
  position: absolute;
  inset: 0%;
  z-index: 5;
}

.news-info-wrapper {
  z-index: 5;
  padding: 27px;
  position: absolute;
  inset: auto 0% 0%;
}

.date-info {
  margin-bottom: 0;
  padding-right: 5px;
  font-family: "Barlow Condensed", sans-serif;
  display: inline-block;
}

.news-heading {
  transition: color 0.3s;
}

.news-heading:hover {
  color: var(--main-red);
}

/* ---------- Who we are / CTA ---------- */
.column-info-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.padding-border {
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.contact-us-wrapper {
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.contact-us-button-wrapper {
  margin-top: 25px;
  padding: 10px;
}

/* ---------- Footer ---------- */
.footer-section {
  padding: 130px 15px 60px;
}

.footer-container {
  flex-direction: column;
  align-items: center;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

.footer-info-wrapper {
  margin-top: 60px;
}

.footer-icon-wrapper {
  justify-content: space-between;
  margin-top: 40px;
  display: flex;
}

.footer-paragraph {
  text-align: center;
  text-transform: capitalize;
  width: 385px;
  margin-top: 40px;
  line-height: 24px;
  color: var(--paragraph);
  font-family: Montserrat, sans-serif;
  font-size: 15px;
}

.footer-link-red {
  color: var(--main-red);
  transition: opacity 0.3s;
}

.footer-link-red:hover {
  opacity: 0.8;
  color: var(--main-red);
}

/* ---------- Lightbox ---------- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  display: flex;
}

.lightbox-overlay[hidden] {
  display: none !important;
}

.lightbox-content {
  max-width: 84vw;
  max-height: 86vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-content img {
  max-width: 84vw;
  max-height: 86vh;
  object-fit: contain;
}

.lightbox-content iframe {
  width: 84vw;
  max-width: 940px;
  aspect-ratio: 940 / 528;
  border: 0;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-arrow {
  background: none;
  border: none;
  color: var(--white);
  font-size: 60px;
  line-height: 1;
  padding: 0 25px;
  cursor: pointer;
  transition: color 0.3s;
  user-select: none;
}

.lightbox-arrow:hover {
  color: var(--main-red);
}

/* ==========================================================================
   ≥1280px
   ========================================================================== */
@media screen and (min-width: 1280px) {
  h2 {
    text-align: left;
  }

  .hero {
    font-size: 101px;
  }

  .social-icon-wrapper {
    justify-content: flex-end;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .link-header {
    margin-left: 20px;
    margin-right: 20px;
    padding: 23px 5px;
  }

  .line-banner {
    margin: 100px auto 45px;
  }

  .heading-h6-white {
    justify-content: flex-start;
  }

  .show-date {
    justify-content: flex-start;
    min-width: 245px;
    padding-left: 35px;
    padding-right: 35px;
  }

  .h5-show-date {
    font-size: 23px;
  }

  .section {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .tabs-wrapper {
    height: 75vh;
    overflow: hidden;
  }

  .tab-pane.active {
    height: 75vh;
  }

  .video {
    height: 75vh;
  }

  .columns-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .paragraph-right-alignment {
    text-align: right;
    width: 100%;
  }

  .description-wrapper-right-alignment {
    text-align: right;
    align-items: flex-end;
    margin-right: 110px;
  }

  .description-wrapper-left-alignment {
    align-items: flex-start;
    margin-bottom: 10px;
    margin-left: 110px;
    margin-right: 60px;
  }

  .empty-block {
    justify-content: center;
    height: 100%;
    display: flex;
  }

  .heading-2 {
    text-align: left;
    max-width: 600px;
  }

  .gallery-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 55px 80px 20px;
  }

  .gallery-grid-more {
    grid-template-rows: 1fr;
    padding-top: 0;
    padding-bottom: 10px;
  }

  .single-red-line-top {
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
  }

  .news-info-wrapper {
    padding-bottom: 40px;
  }

  .contact-us-wrapper {
    margin-top: 100px;
  }

  .qotation {
    justify-content: flex-start;
  }

  .want-your-event-section {
    background-image: url("assets/guitar-bg.jpg");
    background-position: 50%;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 130px;
    padding-bottom: 130px;
  }
}

/* ==========================================================================
   ≥1440px
   ========================================================================== */
@media screen and (min-width: 1440px) {
  .hero.home {
    padding-top: 50px;
  }

  .hero {
    letter-spacing: -4.04px;
    font-size: 90px;
  }

  .line-banner {
    margin-top: 0;
    display: none;
  }
}

/* ==========================================================================
   ≥1920px
   ========================================================================== */
@media screen and (min-width: 1920px) {
  .hero.home {
    padding-top: 0;
  }

  .line-banner.top {
    display: block;
  }
}

/* ==========================================================================
   ≤991px (tablet)
   ========================================================================== */
@media screen and (max-width: 991px) {
  h1 {
    font-size: 45px;
    line-height: 54px;
  }

  h2 {
    font-size: 40px;
    line-height: 48px;
  }

  h5 {
    line-height: 1.3em;
  }

  .hero {
    letter-spacing: -4.04px;
    font-size: 90px;
  }

  .navbar-main {
    height: 92px;
  }

  .navbar-wrapper {
    z-index: 1;
    height: 92px;
  }

  /* burger + slide-in menu */
  .menu-button {
    display: block;
    padding-right: 0;
  }

  .social-icon-wrapper {
    display: none;
  }

  .nav-menu-container {
    z-index: 5;
    background-color: var(--grey);
    flex-direction: column;
    align-items: stretch;
    width: 320px;
    height: 100vh;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
  }

  .nav-menu-container.open {
    transform: translateX(0);
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 4;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  .nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu-top-tablet {
    justify-content: flex-end;
    align-items: center;
    height: 83px;
    flex: none;
    padding-left: 20px;
    padding-right: 12px;
    display: flex;
  }

  .nav-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 5px 10px 10px;
  }

  .navigation-link-wrapper {
    border-bottom: 1px solid var(--light-grey);
    text-align: left;
    width: 100%;
    padding: 0;
  }

  .link-header {
    width: 100%;
    padding-left: 20px;
  }

  .menu-link {
    color: rgba(255, 255, 255, 0.7);
    padding-top: 20px;
    padding-bottom: 20px;
  }

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

  .button-border {
    display: none;
  }

  .social-icon-wrapper-menu {
    justify-content: center;
    padding-top: 50px;
    padding-bottom: 20px;
    display: flex;
  }

  /* sections */
  .home-banner-section {
    justify-content: center;
    align-items: flex-end;
  }

  .line-banner {
    display: none;
  }

  .description-wrapper-centred {
    padding-bottom: 20px;
  }

  .heading-h6-white {
    text-align: center;
    white-space: normal;
    justify-content: center;
    align-items: center;
    line-height: 1em;
  }

  .show-date {
    min-width: 145px;
    min-height: 88px;
    padding: 10px 15px;
  }

  .show-button {
    align-self: center;
    width: 30%;
  }

  .show-place-wrapper {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .show-place {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .h5-show-date {
    text-align: center;
    white-space: normal;
  }

  .email-container {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }

  .horizontal-wrapper {
    justify-content: center;
    width: 100%;
  }

  .form {
    margin-top: 15px;
  }

  /* videos: stacked list replaces tabs */
  .video-block-section {
    height: auto;
    margin-bottom: 65px;
  }

  .video-tabs-container {
    position: static;
  }

  .tabs-wrapper {
    flex-direction: column;
    height: auto;
    overflow: visible;
  }

  .tabs,
  .scroll-background {
    display: none;
  }

  .tabs-content-mobile {
    flex-direction: column;
    display: flex;
  }

  .video-embed {
    aspect-ratio: 940 / 528;
    width: 100%;
    margin-bottom: 20px;
  }

  .video-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }

  .columns-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .grid-image {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .gallery-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .gallery-grid .span-2 {
    grid-column: span 1;
  }

  .qotation {
    text-align: center;
    white-space: normal;
    justify-content: center;
    align-items: center;
    line-height: 1em;
  }

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

/* ==========================================================================
   ≤767px (mobile landscape)
   ========================================================================== */
@media screen and (max-width: 767px) {
  h1 {
    font-size: 35px;
    line-height: 42px;
  }

  h2 {
    font-size: 30px;
    line-height: 36px;
  }

  h3 {
    font-size: 28px;
    line-height: 33px;
  }

  h4 {
    font-size: 25px;
    line-height: 30px;
  }

  .hero {
    font-size: 60px;
  }

  .home-banner-section {
    height: 100vw;
  }

  .banner-buttons-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .primary-button {
    margin-top: 20px;
  }

  .primary-button.banner-button {
    margin-right: 0;
  }

  .light-button.banner-button {
    margin-top: 15px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .show-item {
    flex-direction: column;
  }

  .show-date {
    width: 100%;
    max-width: none;
    min-height: auto;
    margin-right: 0;
  }

  .show-button {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.03);
    width: 100%;
    max-width: none;
    padding-bottom: 30px;
  }

  .show-place-wrapper {
    flex-direction: column;
    width: 100%;
    margin-right: 0;
  }

  .show-place {
    width: 100%;
  }

  .h5-show-date {
    flex: 1;
    justify-content: center;
  }

  .video-block-section {
    margin-bottom: 30px;
  }

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

  .paragraph-right-alignment {
    width: 100%;
  }

  .grid-image {
    padding-left: 0;
    padding-right: 0;
  }

  .gallery-grid {
    padding-top: 0;
  }

  .collection-list {
    grid-template-columns: 1fr;
  }

  .collection-item {
    padding-left: 20px;
    padding-right: 20px;
  }

  .flexbox-horizontal {
    flex-direction: column;
  }

  .flexbox-horizontal.pricing-wrapper {
    flex-direction: row;
  }

  .collection-list-3 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .news-item {
    height: 90vw;
  }

  .news-info-wrapper {
    padding-bottom: 27px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .padding-border {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  ._33 {
    text-align: center;
    margin-bottom: 30px;
  }

  .column-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-us-wrapper,
  .contact-us-button-wrapper {
    margin-top: 10px;
  }

  .want-your-event-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

/* ==========================================================================
   ≤479px (mobile portrait)
   ========================================================================== */
@media screen and (max-width: 479px) {
  .header-logo {
    width: 90px;
  }

  .home-banner-section {
    height: 100vh;
  }

  .heading-h6-white {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-menu-container {
    width: 280px;
  }

  .text-field {
    margin-right: 0;
  }

  .form {
    flex-direction: column;
  }

  .heading {
    text-align: center;
  }

  .subscribe-button-wrapper {
    width: 100%;
    margin-top: 15px;
  }

  .subscribe-button {
    width: 100%;
  }

  .heading-6-red {
    text-align: center;
  }

  .services-tab-link {
    padding-left: 12px;
    padding-right: 12px;
    display: inline-block;
  }

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

  .footer-paragraph {
    width: 300px;
  }
}
