/* Import Css Files */
@import url("./fonts.css");
@import url("./common.css");

/* Global Root variables */
:root {
  --primary: #BB8459;
  --primary-light: #C2906A;
  --primary-extra-light: #DABCA6;

  --dark: #212121;
  --gray: #333333;


  --secondary: #C2906A;

  --black: #000000;
  --white: #ffffff;

  --offwhite: #F5F4F2;

  --black-light: #2E2E2E;
  --primary-text-color: #212121;
  --secondary-text-color: rgba(33, 33, 33, 0.80);
  --button-color: #BB8459;


  --light-gray: #585f66;

  --page-width: 1512px;
  --margin-page-width: max(0rem, calc((100vw - var(--page-width) + -1rem) / 2));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-family: 'Gotham';
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #212121;
  background-color: #DABCA6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Beaufort Pro';
  margin: 0;
  line-height: 1.2;
  font-weight: normal;
  margin-bottom: 2rem;
}

h1 {
  font-size: 36px;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: 24px;
  margin-bottom: 1rem;
}

h3 {
  font-size: 20px;
  margin-bottom: .75rem;
}

p {
  margin-top: 0;
}

p+p:last-child {
  margin-bottom: 0;
}

img,
video {
  max-width: 100%;
  display: block;
}


.text-white {
  color: var(--white);
}

.bg-primary {
  background: var(--primary);
}

.bg-secondary {
  background: var(--secondary);
}

.bg-gray {
  background: var(--gray);
}

.align-content-center {
  align-items: center;
}

.reverse-column {
  flex-direction: row-reverse;
}

.theme-grid-4 {
  display: grid;
  gap: 1.2em;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}



.padding-py-100 {
  padding: 100px 0;
}

.padding-pb-60 {
  padding-bottom: 60px;
}

.padding-pb-40 {
  padding-bottom: 60px;
}

.product {
  position: relative;
}

.product .add-to-cart-btn {
  width: 100%;
  display: block;
  text-align: center;
  color: var(--black-light);
  text-decoration: none;
  background: var(--secondary);
  border: none;
  position: absolute;
  bottom: 4px;
  left: 0;
  opacity: 0;
  transition: 0.3s;
}

.product:hover .add-to-cart-btn {
  opacity: 1;
}

.product img {
  width: 100%;
}

.category {
  margin: 0;
  color: var(--black-light);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: inline-block;
}

.title-product {
  color: var(--black-light);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

header #ww-menu-auth-link,
header #ww-menu-register-link {
  display: none;
}

/* **** Welcome Hero Slider **** */
.hero-section .th-slider .left-column .th-slider-content {
  margin-left: var(--margin-page-width);
}

.hero-section .th-slider .right-column .th-slider-content {
  margin-right: var(--margin-page-width);
}

.hero-section .th-slider .left-column .th-slider-content .btn-theme {
  text-shadow: 0 1px 1px rgb(0 0 0 / 20%);
}

.hero-section .th-slider-content-wrapper {
  padding: 0;
  position: relative;
  flex: 1;
}

.hero-section .th-slider-content-wrapper:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.60) 100%);
  position: absolute;
  inset: 0;
}

.hero-section .th-slider-content-wrapper .th-slider-content {
  position: absolute;
  bottom: 40px;
  padding: 0 12px;
  z-index: 4;
}

.hero-section .th-slider-content-wrapper video,
.hero-section .th-slider-content-wrapper img,
.hero-section .th-slider-content-wrapper iframe {
  width: 100%;
  object-fit: cover;
  height: 100vh;
}

.hero-section .th-slider-content-wrapper iframe {
  height: 100vh !important;
}

.hero-section .th-slider-content-wrapper .th-slider-content h1 {
  font-weight: 400;
  color: #F5F4F2;
  letter-spacing: -0.5px;
  text-shadow: 0 1px 1px rgb(0 0 0 / 20%);
}

.hero-section .th-slider-content-wrapper .th-slider-content p {
  font-weight: 300;
  color: #F5F4F2;
  text-shadow: 0 0.5px 0.5px rgb(0 0 0 / 10%);
}

.th-slider {
  height: 100%;
  background: var(--white);
}

section.hero-section {
  height: 100vh;
  position: relative;
}

.th-slider .th-slide {
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  margin: 0;
  width: 100%;
}

.reverse-column a.btn-theme {
  color: var(--white);
  border-color: var(--white);
}

.reverse-column a.btn-theme path {
  fill: var(--white);
}

.hero-banner-mobile {
  overflow: hidden;
}

.hero-banner-mobile .th-slider-content-wrapper .th-slider-content {
  padding: 0 12px;
}

.hero-banner-mobile .slick-track .theme-row {
  margin: 0 !important;
}

.th-slider-pagination {
  position: absolute;
  bottom: 40px;
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: var(--white);
  gap: 1rem;
  pointer-events: none;
}

.th-slider-pagination .th-page-count {
  font-family: 'Gotham';
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.th-slider-pagination svg.donut {
  width: 2rem;
  height: 2rem;
}

.circle-progress #c1 {
  stroke: var(--light-gray);
  stroke-width: 4;
  stroke-linecap: round;
  fill: transparent;
}

.circle-progress #c2 {
  stroke: var(--white);
  stroke-width: 4;
  stroke-linecap: round;
  fill: transparent;
}

.circle-progress #counterText {
  -webkit-animation: heartBeat 1s infinite;
  animation: heartBeat 1s infinite;
}

@-webkit-keyframes heartBeat {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  95% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes heartBeat {
  0% {
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  95% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.hero-section.vimeo-video-banner {
  overflow: hidden;
}

.hero-section.vimeo-video-banner iframe {
  border: 0;
  display: block;
  min-height: 120vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  zoom: 110%;
}

.hero-section.video-banner {
  overflow: hidden;
}

.hero-section.video-banner video {
  border: 0;
  display: block;
  min-height: 120vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  zoom: 110%;
}

/* ***************************** */



/* **** Button **** */
.btn-theme {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.05px;
  line-height: 1.25em;
  text-transform: uppercase;
  padding: 16px 20px;
  background: transparent;
  color: #212121;
  border: 1px solid #212121;
  cursor: pointer;
  text-decoration: none;
  max-width: fit-content;
  transition: all .3s linear;
  transition-property: all !important;
}

.btn-theme:hover,
.btn-theme:focus,
.btn-theme:active:focus {
  box-shadow: none;
  outline: 0;
  box-shadow: 0 0 0 4px rgb(0 0 0 / 30%);
}

.btn-theme .icon {
  width: 12px;
  height: 12px;
  margin-left: 12px;
  transition: all .3s linear;
}

.btn-theme.btn-light {
  color: #F5F4F2;
  border: 1px solid #F5F4F2;
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active:focus {
  box-shadow: 0 0 0 4px rgb(255 255 255 / 30%);
}

.btn-primary {
  border: 1px solid #BB8459;
  background: #BB8459;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  border: 1px solid #ac7851;
  background: #ac7851;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active:focus {
  box-shadow: 0 0 0 4px rgb(172 120 81 / 30%);
}

.btn-link {
  font-family: 'Gotham';
  color: #212121;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.05px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .3s linear;
}

.btn-link:hover {
  opacity: .8;
}

.btn-link .icon {
  margin-right: 8px;
  width: 14px;
  height: 14px;
}

/* **************** */
/* **** Slick Slider **** */
.slick-slider {
  margin: 0 !important;
  position: relative;
}

.slick-slider .carousel-item img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 8;
}

.slick-slider .slick-arrow {
  position: absolute;
  bottom: -20px;
  z-index: 1;
  font-family: 'Gotham';
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 1.05px;
  text-transform: uppercase;
  cursor: pointer;
}

.slick-slider .slick-arrow.fa-angle-left {
  right: 50px;
}

.slick-slider .slick-arrow.fa-angle-right {
  right: 0;
}

.slick-slider .slick-arrow.slick-disabled {
  opacity: .5;
}

.slick-slider .slick-dots {
  bottom: -25px;
  display: flex;
  width: auto;
}

.slick-slider .slick-dots li {
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: var(--dark);
  opacity: 1;
  vertical-align: middle;
}

.slick-slider .slick-dots li.slick-active {
  opacity: 1;
  background: var(--primary);
}

.slick-slider .slick-dots li button {
  padding: 0;
  width: auto;
  height: auto;
}

.slick-slider .slick-dots li button:before {
  content: none;
}

.side-image-carousel .jc--restaurant-block .full-width-image-carousel {
  margin-bottom: 50px !important;
}

.side-image-carousel .slick-arrow,
.jc--restaurant-block .full-width-image-carousel .slick-arrow {
  bottom: -30px;
}

.side-image-carousel .slick-dots li {
  background: var(--dark) !important;
}

.side-image-carousel .slick-dots li.slick-active {
  background: var(--primary) !important;
}

.side-image-carousel .slick-slide {
  padding: 0 4px;
}

.side-image-carousel .slick-arrow.fa-angle-left {
  margin-left: var(--margin-page-width);
  padding-left: 5px;
  bottom: -30px;
}

.side-image-carousel .slick-arrow.fa-angle-right {
  margin-right: var(--margin-page-width);
  padding-right: 5px;
  bottom: -30px;
}

.full-width-image-carousel .slick-arrow {
  color: var(--dark);
  bottom: -30px;
}

.full-width-image-carousel .slick-dots li {
  opacity: .75;
}

/* ********************** */
/* **** Page Builder **** */
/* -- Page Heading -- */
.builder_page_heading {
  padding-top: 6rem;
  padding-bottom: 3.5rem;
}

.builder_page_heading .btn-link {
  margin-bottom: 20px;
}

.builder_page_heading .page-title {
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.25px;
  margin-bottom: 32px;
  max-width: 760px;
}

.builder_page_heading .page-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(33, 33, 33, 0.80);
}

.sub-nav-tabs-wrapper {
  border-bottom: 2px solid #B9844D33;
  margin-bottom: 50px;
  position: sticky;
  top: 105px;
  z-index: 10;
  background: #dabca6;
}

.sub-nav-sticky {
  position: sticky;
  top: 105px;
  z-index: 10;
  background: #dabca6;
}

.sub-nav-tabs-wrapper .wrapper-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.sub-nav-tabs {
  padding: 0;
  margin: 0;
}

.sub-nav-tabs :is(li, .nav-tab-items) {
  display: inline-flex;
}

.sub-nav-tabs li:not(:last-child) {
  margin-right: 28px;
}

.sub-nav-tabs .nav-tab-items {
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 1.05px;
  text-transform: uppercase;
  padding: 20px 0;
  display: inline-flex;
  color: var(--primary-text-color);
  text-decoration: none;
  margin-bottom: -2px;
  border-bottom: 2px solid transparent;
  transition: all .3s linear;
}

.sub-nav-tabs .nav-tab-items:hover,
.sub-nav-tabs .nav-tab-items.active {
  border-color: #BB8459;
}

.back-to-top {
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 1.05px;
  text-transform: uppercase;
  padding: 20px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-text-color);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.back-to-top .icon {
  width: 14px;
  height: 14px;
  margin-left: 8px;
}

.rich-text-block {
  padding-top: 40px;
  padding-bottom: 40px;
}

.rich-text-block .btn-theme {
  margin-bottom: 1rem;
  display: flex;
}

.rich-text-block ul {
  padding-left: .85em;
}

.two-col-media-block :is(.blog-div, .image-carousel, .slick-list, .slick-track) {
  height: 100%;
}

.blog-div iframe,
.media-block iframe {
  width: 100%;
  height: auto;
  border: 0;
  aspect-ratio: 16 / 9;
  display: block;
}

.tow-col-text-media .blog-div {
  max-width: 100%;
}

.tow-col-text-media .slick-slider .carousel-item :is(img, video) {
  aspect-ratio: 16 /9;
  object-fit: cover;
}

.tow-col-text-media h4 {
  color: #212121;
  font-size: 24px;
  font-weight: 400;
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.tow-col-text-media p:empty {
  display: none;
}

.tow-col-text-media p {
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.tow-col-text-media .btn-theme {
  margin-top: 1.5rem;
}

/* ********************** */
/* **** Large CTA Block **** */
.jc--large-cta-block .cta-col {
  padding: 36px 52px;
  text-align: center;
}

.jc--large-cta-block img {
  display: block;
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  height: auto;
}

.jc--large-cta-block .cta-heading {
  font-family: 'Gotham';
  color: #E2E1DF;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.05px;
  text-transform: uppercase;
}

.jc--large-cta-block .btn-link {
  text-decoration: none;
  transition: all .3s linear;
  padding: 2px 4px;
}

.jc--large-cta-block .btn-link:hover {
  opacity: .8;
}

.jc--large-cta-block .cta-heading {
  margin-bottom: 30px;
}

.jc--large-cta-block .btn-link {
  margin-top: 40px;
  color: #F5F4F2;
}

/* ************************* */
/* **** Feature Events **** */
.jc--feature-events {
  padding-top: 40px;
  padding-bottom: 40px;
}

.jc--feature-events .event-heading {
  margin-bottom: 28px;
}

.event-col {
  display: flex;
  padding: 20px;
  gap: 24px;
  background: var(--gray);
  color: var(--white);
  flex-direction: column-reverse;
}

.event-col .event-img {
  width: 100%;
  overflow: hidden;
}

.event-col img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  transition: all .75s;
}

.event-col:hover img {
  transform: scale(1.1);
}

.jc--feature-events .event-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.jc--feature-events .event-content .event-title {
  color: #FFF;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.25em;
}

.jc--feature-events :is(.event-date, .event-price, .tag) {
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 1.05px;
  text-transform: uppercase;
  margin: 0;
}

.jc--feature-events .tag {
  font-size: 11px;
  margin-bottom: 20px;
}

.jc--feature-events .event-content .btn-theme {
  margin-top: 2rem;
}

.jc--feature-events .slick-slider .slick-list {
  padding-left: 0px;
}

.jc--feature-events .slick-slider .slick-slide {
  margin: 0 0 0 20px;
}

.jc--feature-events .slick-slider .slick-arrow {
  bottom: unset;
  top: -48px;
  left: unset;
  right: 0px !important;
  display: inline-flex;
  color: var(--dark);
  width: auto;
  padding: 0;
}

.jc--feature-events .slick-slider .slick-arrow.prev {
  right: 25px !important;
}

.jc--feature-events .slick-slider .slick-arrow .icon {
  width: 14px;
  height: 14px;
}

/* ************************ */



/* **** 2 Column Text and Media block **** */
.column-text-and-media-block {
  padding-top: 40px;
  padding-bottom: 40px;
}

.column-text-and-media-block .heading-h2 {
  margin-bottom: 1.5em;
}

.column-text-and-media-block .text-media-col :is(img, video, iframe) {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  height: auto;
  object-fit: cover;
  max-height: 400px;
  border: 0;
}

.column-text-and-media-block .text-media-col .text-media-heading {
  color: #212121;
  font-weight: 400;
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.column-text-and-media-block .text-media-col .text-media-description {
  color: #212121;
  font-weight: 400;
  margin-bottom: 1.25em;
}

/* ************************************* */



/* **** Text and Media block **** */
.jc--text-media-block {
  padding-top: 40px;
  padding-bottom: 40px;
}

.jc--text-media-block .text-content-col small {
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 1.05px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.jc--text-media-block .text-content-col h2 {
  margin-bottom: .75em;
}

.jc--text-media-block .text-content-col .description {
  margin-bottom: 2em;
}

.jc--text-media-block img {
  width: 100%;
}

.jc--text-media-block .theme-row:not(.reverse-column) .text-content-col {
  margin-left: var(--margin-page-width);
}

.jc--text-media-block .theme-row:is(.reverse-column) .text-content-col {
  margin-right: var(--margin-page-width);
}

.jc--text-media-block .slick-slider .carousel-item img {
  aspect-ratio: 16 / 9;
}

.jc--text-media-block .slick-dots li {
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: var(--white);
  opacity: 0.6;
}

.jc--text-media-block .slick-dots li.slick-active {
  opacity: 1;
}

.jc--text-media-block .slick-dots li button:before {
  content: "";
}

.jc--text-media-block .slick-dotted.slick-slider {
  margin: 0;
  position: relative;
}

.jc--text-media-block iframe {
  border: 0;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ****************************** */

.sub-title {
  font-family: 'Gotham';
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 1.05px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}


/* Restaurant / Dining Block **** */
.jc--restaurant-block {
  padding-top: 40px;
  padding-bottom: 40px;
}

.jc--restaurant-block .restaurant-menu {
  max-width: 450px;
}

.jc--restaurant-block .restaurant-menu>* {
  margin-bottom: 20px;
}

.jc--restaurant-block .restaurant-dining>* {
  margin-bottom: 28px;
}

.jc--restaurant-block .restaurant-dining .sub-title {
  margin-bottom: 20px;
}

.jc--restaurant-block .restaurant-dining+.media-block {
  margin-top: 60px;
  overflow: hidden;
}

.jc--restaurant-block .restaurant-menu .restaurant-media img {
  object-fit: cover;
}

.jc--restaurant-block .restaurant-dining+.media-block img {
  aspect-ratio: 16 / 9;
  height: 100%;
  object-fit: cover;
  width: 100%;
  transition: all .75s;
}

.jc--restaurant-block .restaurant-dining+.media-block img:hover {
  transform: scale(1.1);
}

.jc--restaurant-block .full-width-image-carousel .slick-slide {
  padding: 0;
}

.jc--restaurant-block .full-width-image-carousel .slick-arrow.fa-angle-left {
  margin-left: 0;
  padding-left: 0;
}

.jc--restaurant-block .full-width-image-carousel .slick-arrow.fa-angle-right {
  margin-right: 0;
  padding-right: 0;
}

.jc--restaurant-block.bg-gray .full-width-image-carousel .slick-dots li {
  background: var(--white);
  opacity: .5;
}

.jc--restaurant-block.bg-gray .full-width-image-carousel .slick-dots li.slick-active {
  background: var(--primary);
  opacity: 1;
}

.jc--restaurant-block .restaurant-menu .full-width-image-carousel .carousel-item img {
  aspect-ratio: 4 / 3;
}

/* ****************************** */

/* **** Vimeo video **** */
.jc--media-stream {
  padding-top: 40px;
  padding-bottom: 40px;
}

.jc--media-stream iframe {
  border: 0;
  display: block;
  aspect-ratio: 16 / 9;
  max-width: 100%;
  object-fit: cover;
}

.jc--media-stream .video-container {
  max-width: 58rem;
  margin: 0 auto;
}

.jc--media-stream .heading {
  font-weight: 500;
  margin-top: 12px;
  margin-bottom: 12px;
}

.jc--media-stream p {
  max-width: 32rem;
  font-size: 14px;
}

/* ********************* */
/* **** Team **** */
.jc--team {
  padding-bottom: 40px;
}

.jc--team .heading-h2 {
  margin-bottom: 1.5rem;
}

.jc--team .team-col {
  margin-top: 2.5rem;
  cursor: pointer;
}

.jc--team .team-col .team-img {
  overflow: hidden;
  position: relative;
}

.jc--team .team-col .team-img:before {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background-color: var(--primary);
  opacity: 0;
  transition: all .75s;
}

.jc--team .team-col:hover .team-img:before {
  width: 95%;
  height: 95%;
  opacity: 0.2;
}

.jc--team .team-col img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  height: auto;
  transition: all .75s;
}

.jc--team .team-col:hover img {
  transform: scale(1.1);
}

.jc--team .team-col .team-name {
  font-weight: 500;
  margin-top: 12px;
  margin-bottom: 2px;
}

.jc--team .team-col p {
  font-size: 14px;
}

.jc--team .team-col .team-description {
  display: none;
}

/* ************** */
/* **** News List **** */
.jc--news .theme-row {
  row-gap: 60px;
}

.jc--news .news-col .news-img {
  margin-bottom: 16px;
  overflow: hidden;
}

.jc--news .news-col .news-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 15 / 9;
  height: auto;
  transition: all .75s;
}

.jc--news .news-col:hover .news-img img {
  transform: scale(1.1);
}

.jc--news .news-col .news-content>*:not(:last-child) {
  margin-bottom: 16px;
}

.jc--news .news-col .news-content .news-meta-date {
  color: rgba(33, 33, 33, 0.60);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 1.05px;
  text-transform: uppercase;
}

.jc--news .news-col .news-content .news-description {
  font-size: 14px;
}

.jc--news .news-col .news-content .btn-link {
  color: #7D736B;
  transition: all .3s linear;
}

.jc--news .news-col .news-content .btn-link:hover {
  color: var(--dark);
}

/* ---- Pagination ---- */
.pagination {
  margin-top: 5rem;
  margin-bottom: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  padding: 0 40px;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  color: var(--gray);
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 1.05px;
  text-transform: uppercase;
  width: 36px;
  height: 36px;
  text-decoration: none;
  transition: all .3s linear;
}

.pagination .page-numbers:is(.prev, .next) {
  position: absolute;
}

.pagination .page-numbers.prev {
  left: 0;
}

.pagination .page-numbers.next {
  right: 0;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--primary);
}

/* ******************* */
/* **** News & Event Details **** */
.event-details {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 1.05px;
  text-transform: uppercase;
}

.event-details .event-date {
  margin-right: 2rem;
}

/* ****************************** */
/* ****  gform **** */
.jc--enquires {
  padding-top: 40px;
  padding-bottom: 40px;
}

.gform_wrapper form .gform-body .gfield_label {
  display: none;
}

.gform_wrapper form .gform-body .ginput_container :is(input:not([type='submit'], [type='radio'], [type='checkbox']), textarea, select) {
  display: block;
  border: 1px solid rgba(33, 33, 33, 0.30);
  background: transparent;
  color: var(--dark);
  font-family: 'Gotham';
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 1.05px;
  padding: 16px 18px;
  box-shadow: none;
  outline: none;
  transition: all .3s linear;
}

.gform_wrapper form .gform-body .ginput_container :is(input:not([type='submit'], [type='radio'], [type='checkbox']), textarea, select)::placeholder {
  color: rgba(33, 33, 33, 0.30);
  text-transform: uppercase;
}

.gform_wrapper form .gform-body .ginput_container :is(input:not([type='submit'], [type='radio'], [type='checkbox']), textarea, select):hover,
.gform_wrapper form .gform-body .ginput_container :is(input:not([type='submit'], [type='radio'], [type='checkbox']), textarea, select):focus {
  border: 1px solid var(--dark);
}

.gform_wrapper form .gform-body .gfield--type-radio .gform-field-label,
.gform_wrapper form .gform-body .gfield--type-radio .gform-field-label a {
  color: rgba(255, 255, 255, 0.50);
  font-family: 'Gotham';
  font-size: 11px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.16px;
}

.gform_wrapper form .gform-body .gfield--type-radio .gform-field-label a:hover {
  text-decoration: underline;
}

.gform_wrapper form .gform-body .gfield--type-radio .gfield-choice-input {
  vertical-align: top;
  margin-left: 0;
}

.gform_wrapper form .gform-body .ginput_container_radio .gfield_radio>div {
  display: flex;
  max-width: 700px;
}

.gform_wrapper form .gform-body .gfield--type-radio .gfield-choice-input[type="radio"] {
  background-color: var(--offwhite);
  border-radius: 10px;
  height: 10px;
  position: relative;
  width: 10px;
  -webkit-appearance: none;
  margin-top: 1px;
  margin-right: 8px;
}

.gform_wrapper form .gform-body .gfield--type-radio .gfield-choice-input[type="radio"]:after {
  background-color: var(--offwhite);
  border-radius: 25px;
  content: '';
  display: block;
  height: 6px;
  left: 2px;
  position: relative;
  top: 2px;
  width: 6px;
}

.gform_wrapper form .gform-body .gfield--type-radio .gfield-choice-input[type="radio"]:checked:after {
  background-color: #a15f27;
}

.gform_wrapper form .gform_footer .gform_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.05px;
  line-height: 1.25em !important;
  min-height: auto !important;
  text-transform: uppercase;
  padding: 16px 20px;
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
  cursor: pointer;
  text-decoration: none;
  max-width: fit-content;
  transition: all .3s linear;
  border: 1px solid var(--primary);
  background: var(--primary);
  transition-property: all !important;
}

.gform_wrapper form .gform_footer .gform_button,
.gform_wrapper form .gform_footer .gform_button:hover,
.gform_wrapper form .gform_footer .gform_button:active,
.gform_wrapper form .gform_footer .gform_button:focus {
  border: 1px solid #ac7851;
  background: #ac7851;
}

.gform_wrapper form .gform_footer .gform_button:hover,
.gform_wrapper form .gform_footer .gform_button:focus,
.gform_wrapper form .gform_footer .gform_button:active:focus {
  box-shadow: 0 0 0 4px rgb(172 120 81 / 30%);
}

.gform_wrapper.gravity-theme .gform_validation_errors {
  display: none;
}

.gform_wrapper.gravity-theme .gfield_validation_message,
.gform_wrapper.gravity-theme .validation_message {
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  margin: 4px 0 0 0 !important;
  font-family: 'Gotham' !important;
  font-size: 12px !important;
}

.jc--enquires .gform_wrapper form .gform_footer {
  margin-bottom: 0;
  padding-bottom: 0;
}

.footer_newsletter_form .gform_wrapper form {
  position: relative;
  max-width: 44rem;
}

.footer_newsletter_form .gform_wrapper form .gform-body .ginput_container :is(input:not([type='submit'], [type='radio'], [type='checkbox']), textarea, select) {
  border: 1px solid var(--white);
  color: var(--white);
  line-height: 1.25em !important;
  min-height: auto !important;
}

.footer_newsletter_form .gform_wrapper form .gform-body .ginput_container :is(input:not([type='submit'], [type='radio'], [type='checkbox']), textarea, select)::placeholder {
  color: var(--white);
}

.footer_newsletter_form .gform_wrapper form .gform-body .ginput_container :is(input:not([type='submit'], [type='radio'], [type='checkbox']), textarea, select):hover,
.footer_newsletter_form .gform_wrapper form .gform-body .ginput_container :is(input:not([type='submit'], [type='radio'], [type='checkbox']), textarea, select):focus {
  border: 1px solid var(--primary);
}

.footer_newsletter_form .gform_wrapper.gravity-theme .gform_footer {
  position: relative;
  top: -97px;
  margin: 0;
  padding: 0;
  right: 0;
  justify-content: end;
}

.footer_newsletter_form .gform_wrapper.gravity-theme .gform_footer .gform_ajax_spinner {
  position: absolute;
  left: 50%;
  transform: translateY(-50%);
  top: 20px;
}

.footer_newsletter_form .gform_wrapper.gravity-theme .gform_fields {
  gap: 24px;
}

.gform_wrapper.gravity-theme .gfield_validation_message,
.gform_wrapper.gravity-theme .validation_message {
  position: absolute;
  line-height: 1 !important;
}

/* **************** */

.page-template-page-builder .side-image-carousel {
  margin-bottom: 40px !important;
}

.modal-dialog.modal-dialog-centered {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1100px;
  padding: 80px 60px;
  box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.3);
  z-index: 99999999;
  background: #E0CBB5;
  width: 100%;
}

.modal.team-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 9999;
  padding: 1.2rem;
}

.modal.team-modal .modal-dialog.modal-dialog-centered {
  max-width: 80rem;
  position: relative;
  inset: unset;
  transform: unset;
}

.modal.team-modal button.close.modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #5B5A5A !important;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
}

.modal.team-modal button.close.modal-close .icon {
  width: 32px;
  height: 32px;
}

.modal.team-modal .modal-body .theme-row {
  justify-content: space-between;
}

.modal.team-modal .modal-body .theme-row .team-img {
  /*   display: flex;
  height: 100%;
  width: 100%; */
  padding-right: 40px;
}

.modal.team-modal .team-img img.attachment-full.size-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  max-height: 70vh;
  aspect-ratio: 1 / 1;
}

.modal.team-modal .modal-body .theme-row .col-sm-6.height {
  height: auto;
}

.modal.team-modal .modal-body .theme-row .team-name,
.modal.team-modal .modal-body .theme-row .team-profile {
  font-family: 'Beaufort Pro';
  margin: 0;
  line-height: 1.2;
  font-weight: normal;
  font-size: 40px;
}

.modal.team-modal .modal-body .theme-row .team-profile {
  color: rgba(46, 48, 48, 0.50);
  margin-bottom: 1rem;
}

.modal.team-modal .modal-body .theme-row {
  height: 100%;
}

.popup-age {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  opacity: 1;
  background: rgba(0, 0, 0, 0.68);
  transition: all .75s linear;
  transform: translateX(-100%);
  opacity: 0;
}

.popup-age.active {
  transform: translateX(0);
  opacity: 1;
}

.popup-age .popup-inner {
  width: 50%;
  margin: 0;
  height: 100vh;
  animation: ageGateForm 1s ease 5s forwards;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  background: #F1EDE7;
  padding: 50px;
  padding-top: 0;
}

.popup-age .popup-inner .logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.86);
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.23));
}

.popup-age .popup-inner .logo a img {
  display: inline-flex;
}

.popup-age .popup-inner .logo,
.popup-age .popup-inner .popup-content {
  margin-bottom: auto;
}

.popup-age .popup-inner .popup-content {
  max-width: 550px;
}

.popup-age .popup-inner .popup-content .popup-actions {
  margin-top: 40px;
  margin-bottom: 40px;
}

.popup-age .popup-inner .popup-content .popup-actions .btn-theme {
  padding: 12px 20px;
  margin-right: 12px;
}

.popup-age .popup-inner .popup-content .popup-actions+.no-selected-text {
  color: #C80000;
  margin-top: -1.5rem;
  font-style: italic;
}

.popup-age .popup-inner .popup-content .popup-description {
  color: rgba(33, 33, 33, 0.50);
}


.sub-nav-sticky+.jc--media-stream {
  padding-top: 0 !important;
}

.jc--enquires+.jc--media-stream {
  padding-top: 0 !important;
}

.jc--media-stream+.column-text-and-media-block {
  padding-top: 0 !important;
}

.two-col-media-block .slick-slider .carousel-item img {
  aspect-ratio: 16 / 10;
}




/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* product listing page css  */

.app-block-product-listing {
  padding: 145px 0 80px;
}

.app-block-product-listing .shell--fluid {
  display: grid;
  grid-template-columns: .3fr 1fr;
}

.app-block-product-listing .app__filters {
  border-top: 1px solid #B5A797;
  padding: 24px 28px 24px 0;
}

.app-block-product-listing .shell--fluid .filters {
  position: sticky;
  top: 145px;
}

.app-block-product-listing .app__filters .filters_list h3 {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 21px;
  color: #333333;
  font-weight: 500;
  font-family: 'Gotham';
}

.app-block-product-listing .app__filters .filters__nav {
  margin-bottom: 24px;
}

.app-block-product-listing .app__filters .filters__nav a {
  color: rgba(51, 51, 51, .5);
}

.app-block-product-listing .app__filters .filters__nav a.active {
  color: rgba(51, 51, 51, 1);
}

.app-block-product-listing .grid--articles-wines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  border-top: 1px solid #B5A797;
  border-left: 1px solid #B5A797;
}

.app-block-product-listing .grid--articles-wines .article-wine {
  border-right: 1px solid #B5A797;
  border-bottom: 1px solid #B5A797;
}

.app-block-product-listing .grid--articles-wines .article-wine .article__content {
  display: flex;
  justify-content: space-between;
  padding: 24px 28px;
}

.app-block-product-listing .grid--articles-wines .article-wine .article__title a {
  font-size: 15px;
  line-height: 21px;
  color: #333333;
  font-weight: 400;
  font-family: 'Gotham';
}

.app-block-product-listing .grid--articles-wines .article-wine .article__title a span {
  display: block;
}

.app-block-product-listing .grid--articles-wines .article-wine .article__price p {
  font-size: 16px;
  line-height: 18px;
  color: #333333;
  font-weight: 500;
  font-family: 'Gotham';
}

.app-block-product-listing .grid--articles-wines .article-wine .article__image img {
  width: 100%;
  height: auto;
  max-width: 300px;
  object-fit: contain;
  margin: 70px auto;
  aspect-ratio: 300/300;
}

.app-block-product-listing .grid--articles-wines .article__action {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #B5A797;
}

.app-block-product-listing .grid--articles-wines .article__action .article__cart-button pre {
  display: none;
}

.app-block-product-listing .grid--articles-wines .article__action .article__cart-button .ww-action-button-try,
.app-block-product-listing .grid--articles-wines .article__action .article__cart-button .ww-action-button-like {
  display: none;
}

.app-block-product-listing .grid--articles-wines .article__action .article__view-button a {
  font-size: 11px;
  line-height: 14px;
  font-weight: 500;
  font-family: 'Gotham';
  color: #333333;
  text-align: center;
  padding: 16px;
  display: block;
  letter-spacing: 1.05px;
  text-transform: uppercase;
  border-right: 1px solid #B5A797;
}

.app-block-product-listing .grid--articles-wines .article__action .article__cart-button .ww-action-button-buy {
  font-size: 11px;
  line-height: 14px;
  font-weight: 500;
  font-family: 'Gotham';
  color: #333333;
  text-align: center;
  padding: 16px;
  display: block;
  letter-spacing: 1.05px;
  text-transform: uppercase;
  background-color: transparent !important;
  border: none;
}

.app-block-product-listing .grid--articles-wines .article__action .article__cart-button .ww-action-button-buy span {
  display: none;
}

.app-block-product-listing .grid--articles-wines .article__action .article__cart-button .ww-action-button-buy::after {
  content: "Add to cart";
  text-indent: 0;
  display: block;
  line-height: 1.21;
}

.app-block-product-listing .grid--articles-wines .article__action .article__cart-button .ww-product-action-buttons {
  margin: 0;
}

.app-block-product-listing .js-load-more-wines-container {
  margin-top: 10px;
  text-align: center;
}

.app-block-product-listing .wines-pagination {
  margin-top: 10px;
  text-align: center;
}

.app-block-product-listing .wines-pagination {
  color: rgba(51, 51, 51, .5);
}

.app-block-product-listing .wines-pagination .current {
  color: rgba(51, 51, 51, 1);
}




.is-loading {
  padding-bottom: 80px;
}

.ico-spinner {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url('../images/spinner.svg') no-repeat center/cover;
  width: 40px;
  height: 40px;
  display: block;
}

.page-template-product-listing,
.single-app_wine {
  background-color: #E0CBB5;
}

.section-intro-wine {
  padding: 106px 0 0;
}

.section-intro-wine .section__back {
  display: none;
}

.section-intro-wine .section__inner {
  display: grid;
  grid-template-columns: .5fr 1fr .5fr;
  border-top: 1px solid #B5A797;
}

.section-intro-wine .section__inner .section__head {
  padding: 30px;
  margin: auto;
  width: 100%;
}

.section-intro-wine .section__inner .section__head h1 {
  font-size: 32px;
  line-height: 34px;
  color: #333333;
  letter-spacing: -0.25px;
}

.section-intro-wine .section__inner .section__head h1 span {
  display: block;
}

.section-intro-wine .section__inner .section__head .section__entry p {
  font-size: 15px;
  line-height: 22px;
  color: #333333;
  font-family: 'Gotham';
}

.section-intro-wine .section__inner .section__image {
  position: relative;
}

.section-intro-wine .section__inner .section__image .custom-nav {
  position: absolute;
  left: 12px;
  bottom: 12px;
}

.section-intro-wine .section__inner .section__image .custom-nav a {
  text-decoration: none;
  font-size: 12px;
  line-height: 14px;
  color: rgba(51, 51, 51, .5);
  letter-spacing: 1.05px;
  text-transform: uppercase;
}

.section-intro-wine .section__inner .section__image .custom-nav span:not(:last-child)::after {
  content: " / ";
  margin: 0 5px;
  opacity: 0.5;
}

.section-intro-wine .section__inner .section__image .custom-nav span.active a {
  color: rgba(51, 51, 51, 1);
}

.section-intro-wine .section__inner .section__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 800px;
  background-color: #DAC5B0;
  border-left: 1px solid #B5A797;
  border-right: 1px solid #B5A797;
}

.section-intro-wine .section__inner .wine-details {
  padding: 15px 24px 18px;
}

.section-intro-wine .section__inner .wine-details p {
  font-size: 15px;
  line-height: 23px;
  color: #333333;
  font-family: 'Gotham';
}

.section-intro-wine .section__inner .section-accordion-detail .accordion__section {
  border-bottom: 1px solid #B5A797;
}

.section-intro-wine .section__inner .section-accordion-detail .accordion__head {
  padding: 12px 24px;
  position: relative;
}

.section-intro-wine .section__inner .section-accordion-detail .accordion__head::after,
.section-intro-wine .section__inner .section-accordion-detail .accordion__head::before {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background-color: #333333;
  position: absolute;
  top: 23px;
  right: 24px;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  -o-transition: transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
}

.section-intro-wine .section__inner .section-accordion-detail .accordion__head::after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.section-intro-wine .section__inner .section-accordion-detail .accordion__head::before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.section-intro-wine .accordion__section.is-active .accordion__head:after,
.section-intro-wine .accordion__section.is-active .accordion__head:before {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.section-intro-wine .section__inner .section-accordion-detail .accordion__body {
  padding: 0 24px 12px;
  display: none;
}

.section-intro-wine .section__content {
  position: sticky;
  bottom: 0;
  top: auto;
  background-color: #E0CBB5;
}

.section-intro-wine .section__content .section__actions {
  display: flex;
  align-items: center;
  border-top: 1px solid #B5A797;
  border-bottom: 1px solid #B5A797;
}

.section-intro-wine .section__content .section__variation {
  width: 75%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 17px 15px 30px;
  border-right: 1px solid #B5A797;
}

.section-intro-wine .section__content .related-wines-action-btn {
  width: 25%;
  position: relative;
}

.section-intro-wine .section__content .related-wines-action-btn .ww-type-product-action-buttons {
  height: 100%;
}

.section-intro-wine .section__content .section__variation h1 {
  font-size: 15px;
  line-height: 22px;
  color: #333333;
  margin: 0;
  font-family: 'Gotham';
  font-weight: 500;
}

.section-intro-wine .section__content .section__variation .variation-select {
  background-color: #E0CBB5;
  border: 1px solid #B5A797;
  border-radius: 100px;
  padding: 8px 32px 8px 16px;
  outline: none;
  font-size: 15px;
  line-height: normal;
  color: #333333;
  font-weight: 400;
  font-family: 'Gotham';
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(http://staging13.studioband.au/wp-content/uploads/2025/09/dropdown-arrow-2.svg);
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.section-intro-wine .section__content .related-wines-action-btn p {
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  font-family: 'Gotham';
  color: #333333;
  background-color: #C39062;
  text-align: center;
  padding: 27px 16px;
  display: block;
  letter-spacing: 1.05px;
  text-transform: uppercase;
  border: none;
  height: 100%;
}

.section-intro-wine .section__content .related-wines-action-btn .ww-product-action-buttons {
  margin: 0;
  height: 100%;
}

.section-intro-wine .section__content .ww-product-action-buttons .ww-action-button-try,
.section-intro-wine .section__content .ww-product-action-buttons .ww-action-button-like {
  display: none;
}

.section-intro-wine .section__content .ww-product-action-buttons .ww-action-button-buy span {
  display: none;
}

.section-intro-wine .section__content .ww-product-action-buttons .ww-action-button-buy {
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  font-family: 'Gotham';
  color: #333333;
  background-color: #C39062;
  text-align: center;
  padding: 27px 16px;
  display: block;
  letter-spacing: 1.05px;
  text-transform: uppercase;
  border: none;
  height: 100%;
}

.section-intro-wine .section__content .ww-product-action-buttons .ww-action-button-buy::after {
  content: "Add to cart";
  text-indent: 0;
  display: block;
  line-height: 1.21;
}

.section-intro-wine .section__content .related-wines-action-btn .section__price {
  position: absolute;
  top: 50%;
  right: 17%;
  transform: translate(-17%, -50%);
}

.section-intro-wine .section__content .related-wines-action-btn .section__price span {
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  font-family: 'Gotham';
  color: #333333;
  letter-spacing: 1.05px;
}

.app-block-related-wines {
  padding: 48px 0 95px;
}

.app-block-related-wines .app__head h2 {
  font-size: 24px;
  line-height: 34px;
  color: #333333;
  text-align: center;
  margin-bottom: 48px;
}

.app-block-related-wines .app__body .grid--articles-wines {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid #B5A797;
  border-left: 1px solid #B5A797;
}

.app-block-related-wines .grid--articles-wines .article-wine {
  border-right: 1px solid #B5A797;
  border-bottom: 1px solid #B5A797;
}

.app-block-related-wines .grid--articles-wines .article-wine .article__content {
  display: flex;
  justify-content: space-between;
  padding: 24px 28px;
}

.app-block-related-wines .grid--articles-wines .article-wine .article__title a {
  font-size: 15px;
  line-height: 21px;
  color: #333333;
  font-weight: 400;
  font-family: 'Gotham';
}

.app-block-related-wines .grid--articles-wines .article-wine .article__title a span {
  display: block;
}

.app-block-related-wines .grid--articles-wines .article-wine .article__price p {
  font-size: 16px;
  line-height: 18px;
  color: #333333;
  font-weight: 500;
  font-family: 'Gotham';
}

.app-block-related-wines .grid--articles-wines .article-wine .article__image img {
  width: 100%;
  height: auto;
  max-width: 300px;
  object-fit: contain;
  margin: 70px auto;
  aspect-ratio: 300/300;
}

.app-block-related-wines .grid--articles-wines .article__action {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #B5A797;
}

.app-block-related-wines .grid--articles-wines .article__action .article__cart-button pre {
  display: none;
}

.app-block-related-wines .grid--articles-wines .article__action .article__cart-button .ww-action-button-try,
.app-block-related-wines .grid--articles-wines .article__action .article__cart-button .ww-action-button-like {
  display: none;
}

.app-block-related-wines .grid--articles-wines .article__action .article__view-button a {
  font-size: 11px;
  line-height: 14px;
  font-weight: 500;
  font-family: 'Gotham';
  color: #333333;
  text-align: center;
  padding: 16px;
  display: block;
  letter-spacing: 1.05px;
  text-transform: uppercase;
  border-right: 1px solid #B5A797;
}

.app-block-related-wines .grid--articles-wines .article__action .article__cart-button .ww-action-button-buy {
  font-size: 11px;
  line-height: 14px;
  font-weight: 500;
  font-family: 'Gotham';
  color: #333333;
  text-align: center;
  padding: 16px;
  display: block;
  letter-spacing: 1.05px;
  text-transform: uppercase;
  background-color: transparent !important;
  border: none;
}

.app-block-related-wines .grid--articles-wines .article__action .article__cart-button .ww-action-button-buy span {
  display: none;
}

.app-block-related-wines .grid--articles-wines .article__action .article__cart-button .ww-action-button-buy::after {
  content: "Add to cart";
  text-indent: 0;
  display: block;
  line-height: 1.21;
}

.app-block-related-wines .grid--articles-wines .article__action .article__cart-button .ww-product-action-buttons {
  margin: 0;
}

.header-btn .ww-wine-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.05px;
  line-height: 1.25em;
  text-transform: uppercase;
  padding: 9px 16px;
  background: transparent;
  color: #F5F4F2;
  border: 1px solid #F5F4F2;
  cursor: pointer;
  text-decoration: none;
  max-width: fit-content;
  transition: all .3s linear;
  transition-property: all !important;
}

.header-btn .ww-wine-btn a:hover,
.header-btn .ww-wine-btn a:focus,
.header-btn .ww-wine-btn a:active:focus {
  box-shadow: none;
  outline: 0;
  box-shadow: 0 0 0 4px rgb(255 255 255 / 30%);
}

.header-btn .ww-wine-btn a .ww-cart-badge {
  background-color: var(--gray);
}

.header-btn .ww-wine-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-btn .ww-wine-btn a.ww-menu-auth-link {
  order: 1;
}

.header-btn .ww-wine-btn a.ww-menu-cart-link {
  order: 2;
}

body.home .header-btn .ww-wine-btn a {
  background: rgba(255, 255, 255, 0.20);
}

body.home .header-btn .ww-wine-btn a:hover {
  background: transparent;
}

body.single .header-btn .ww-wine-btn a {
  color: #212121;
  border: 1px solid #212121;
}

body.single .header-btn .ww-wine-btn a:hover,
body.single .header-btn .ww-wine-btn a:focus,
body.single .header-btn .ww-wine-btn a:active:focus {
  box-shadow: 0 0 0 4px rgb(0 0 0 / 30%);
}

body.page-template-product-listing .header-btn .ww-wine-btn a {
  color: #212121;
  border: 1px solid #212121;
}

body.page-template-product-listing .header-btn .ww-wine-btn a:hover,
body.page-template-product-listing .header-btn .ww-wine-btn a:focus,
body.page-template-product-listing .header-btn .ww-wine-btn a:active:focus {
  box-shadow: 0 0 0 4px rgb(0 0 0 / 30%);
}

.slide-pane__overlay .slide-pane__content {
  background-color: #E0CBB5;
}

.slide-pane__overlay .slide-pane__content .cart-items .my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.slide-pane__overlay .slide-pane__content .footer .text-base,
.slide-pane__overlay .slide-pane__content .footer .shipping-total {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.slide-pane__overlay .slide-pane__content .footer .check-out-button {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.page-template-wine-club-details .app-block-page-heading {
  padding: 262px 0 56px;
}

.page-template-wine-club-details .app-block-page-heading h2 {
  font-size: 44px;
  line-height: 1.2;
  color: #212121;
  margin: 0;
}

.page-template-wine-club-details .app-block-page-heading h3 {
  font-size: 44px;
  line-height: 1.2;
  color: #21212185;
  margin: 0;
}

.page-template-wine-club-details .club-wizard-section {
  margin-bottom: 100px;
}

.page-template-wine-club-details .ww-clubwizard-option {
  background-color: #252623 !important;
  color: #fff !important;
}

.page-template-wine-club-details .ww-step-description {
  padding-top: 90px !important;
  padding-bottom: 30px !important;
  text-align: center !important;
  font-family: 'Gotham';
  font-weight: 300 !important;
  font-size: 32px !important;
  color: #212121;
}

.page-template-wine-club-details .ww-clubwizard-option-header {
  text-align: center !important;
  font-family: 'Gotham';
  font-weight: 300 !important;
  font-size: 32px !important;
}

.page-template-wine-club-details .ww-clubwizard-option-content {
  max-width: 400px !important;
  padding-left: 100px !important;
  padding-right: 100px !important;
}

.page-template-wine-club-details .ww-clubwizard-option-footer {
  margin: 15px !important;
  border-radius: 13px !important;
  background-color: #4D4D4D !important;
}

.page-template-wine-club-details .club-wizard-section .ww-product-card-header {
  display: none;
}

.page-template-wine-club-details .club-wizard-section .ww-product-image {
  background-color: #e6e6e6;
  padding-top: 50px;
  padding-bottom: 50px;
}

.page-template-wine-club-details .club-wizard-section .ww-product-image img {
  height: 300px !important;
  -webkit-filter: drop-shadow(10px 4px 4px rgba(0, 0, 0, .25));
  filter: drop-shadow(10px 4px 4px rgba(0, 0, 0, .25));
}

.page-template-wine-club-details .club-wizard-section .ww-product-winery {
  display: none;
}

.page-template-wine-club-details .club-wizard-section .ww-product-name {
  font-weight: 300 !important;
  text-transform: uppercase;
  font-family: 'Gotham' !important;
}

.page-template-wine-club-details .club-wizard-section .ww-product-location {
  display: none;
}

.page-template-wine-club-details .club-wizard-section .ww-product-card-footer {
  border-top: none !important;
  padding-top: 0 !important;
}

.page-template-wine-club-details .club-wizard-section .price-info-content {
  color: #8e8e8b;
  font-weight: 500;
}

.page-template-page-builder .builder_page_heading{
  padding-top: 2rem !important;
  padding-bottom: 4.5rem !important;
  margin-top: 110px;
  background-color: #EAD0BD;
}

.page-template-page-builder .builder_page_heading .page-title{
  margin: 0;
}

.page-slug-my-membership .rich-text-block{
  background-color: #333333;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  max-width: 100%;
}

.page-slug-my-membership .rich-text-block .theme-row{
  max-width: 1512px;
  margin: 0 auto;
  padding: 0 40px;
}

.page-slug-my-membership .rich-text-block h2{
  color: #fff;
  padding: 30px 0;
  margin: 0;
}

.page-slug-my-membership .rich-text-block .para-img-text{
  padding: 30px;
  border-left: 1px solid #fff;
}

.page-slug-my-membership .rich-text-block a.ww-conditional-content{
  font-size: 16px;
  line-height: normal;
  color: #fff;
  text-decoration: underline;
  margin-bottom: 10px;
  display: block;
}

.page-slug-my-membership .rich-text-block .ww-my-account__content p{
  font-size: 18px;
  line-height: normal;
}


/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */




/* **** Media Query **** */
@media (min-width: 768px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 40px;
    margin-bottom: 1.25rem;
  }

  h2 {
    font-size: 28px;
    margin-bottom: 1rem;
  }

  h3 {
    font-size: 22px;
    margin-bottom: .875rem;
  }

  .jc--text-media-block,
  .jc--restaurant-block,
  .column-text-and-media-block,
  .jc--feature-events,
  .jc--media-stream,
  .jc--enquires,
  .rich-text-block {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .page-template-page-builder .side-image-carousel {
    margin-bottom: 60px !important;
  }

  .jc--large-cta-block .cta-col {
    padding: 48px;
  }

  .jc--large-cta-block .cta-heading {
    margin-bottom: 36px;
  }

  .jc--large-cta-block .btn-link {
    margin-top: 50px;
  }

  .th-slider-pagination {
    width: calc(50% - 20px);
  }


  .slick-slider .slick-dots {
    bottom: 10px;
    display: block;
    width: 100%;
  }

  .side-image-carousel .slick-dots,
  .jc--restaurant-block .full-width-image-carousel .slick-dots {
    bottom: -20px;
  }

  .slick-slider .slick-arrow {
    bottom: 30px;
    padding: 0 30px;
  }

  .slick-slider .slick-arrow.fa-angle-left {
    left: 0;
    right: unset;
  }

  .slick-slider .slick-arrow.fa-angle-right {
    right: 0;
    left: unset;
  }

  .full-width-image-carousel .slick-arrow {
    color: var(--white);
  }

  .slick-slider .slick-dots li {
    background: var(--white);
  }

  .slick-slider .slick-dots li.slick-active {
    background: var(--white);
  }

  .side-image-carousel .slick-slide {
    padding: 0 10px;
  }

  .builder_page_heading .page-description {
    font-size: 20px;
  }

  .jc--feature-events .event-slider {
    row-gap: 24px;
  }

  .jc--feature-events .event-heading {
    margin-bottom: 36px;
  }

  .two-col-media-block .slick-slider .slick-dots li:not(.slick-active) {
    opacity: .75;
  }

  .hero-section .th-slider-content-wrapper .th-slider-content {
    padding: 0 20px;
  }

  .modal.team-modal .team-details {
    max-height: 70vh;
    overflow: auto;
  }

  .modal.team-modal .team-details::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }

  .modal.team-modal .team-details::-webkit-scrollbar-track {
    background: var(--light-gray);
  }

  .modal.team-modal .team-details::-webkit-scrollbar-thumb {
    background: var(--primary);
  }

  .footer_newsletter_form .gform_wrapper form .gform-body .ginput_container.ginput_container_email :is(input:not([type='submit'], [type='radio'], [type='checkbox']), textarea, select) {
    max-width: calc(100% - 180px);
  }
}

@media (min-width: 991px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .slick-slider .slick-dots {
    bottom: 15px;
  }

  .side-image-carousel .slick-dots,
  .jc--restaurant-block .full-width-image-carousel .slick-dots {
    bottom: -25px;
  }

  .jc--large-cta-block .cta-col {
    padding: 56px 100px;
  }

  .jc--large-cta-block .cta-heading {
    margin-bottom: 40px;
  }

  .jc--large-cta-block .btn-link {
    margin-top: 60px;
  }

  .jc--text-media-block .media-block {
    padding: 0;
  }

  .jc--text-media-block .theme-row:not(.reverse-column) .text-content-col {
    padding-right: 2rem;
  }

  .jc--text-media-block .theme-row:is(.reverse-column) .text-content-col {
    padding-left: 2rem;
  }

  .builder_page_heading .page-description {
    font-size: 22px;
  }

  .builder_page_heading {
    padding-top: 10rem;
    padding-bottom: 4.5rem;
  }

  .jc--feature-events .event-heading {
    margin-bottom: 48px;
  }

  .hero-section .th-slider-content-wrapper .th-slider-content {
    padding: 0 30px;
  }
}

@media (min-width: 1201px) {

  .jc--text-media-block,
  .jc--restaurant-block,
  .column-text-and-media-block,
  .jc--feature-events,
  .jc--media-stream,
  .jc--enquires,
  .rich-text-block {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .page-template-page-builder .side-image-carousel {
    margin-bottom: 80px !important;
  }

  .event-col {
    flex-direction: row;
  }

  .event-col .event-img {
    width: 50%;
  }

  .event-col img {
    aspect-ratio: unset;
    max-height: 300px;
    min-height: 300px;
  }

  .jc--feature-events .event-content {
    width: 50%;
  }

  .side-image-carousel .slick-slide {
    padding: 0 15px;
  }

  .builder_page_heading .page-description {
    font-size: 24px;
  }

  .hero-section .th-slider-content-wrapper .th-slider-content {
    padding: 0 40px;
  }
}

@media (min-width: 1401px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 50px;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 36px;
    margin-bottom: 1.25rem;
  }

  h3 {
    font-size: 24px;
    margin-bottom: 1rem;
  }

  .slick-slider .slick-dots {
    bottom: 25px;
  }

  .side-image-carousel .slick-dots,
  .jc--restaurant-block .full-width-image-carousel .slick-dots {
    bottom: -35px;
  }

  .jc--text-media-block,
  .jc--restaurant-block,
  .column-text-and-media-block,
  .jc--feature-events,
  .jc--media-stream,
  .jc--enquires,
  .rich-text-block {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .page-template-page-builder .side-image-carousel {
    margin-bottom: 100px !important;
  }

  .jc--text-media-block .theme-row:not(.reverse-column) .text-content-col {
    padding-right: 4rem;
  }

  .jc--text-media-block .theme-row:is(.reverse-column) .text-content-col {
    padding-left: 4rem;
  }

  .jc--large-cta-block .cta-col {
    padding: 72px 150px;
    text-align: center;
  }

  .jc--large-cta-block .cta-heading {
    margin-bottom: 60px;
  }

  .jc--large-cta-block .btn-link {
    margin-top: 80px;
  }

  .jc--feature-events .event-heading {
    margin-bottom: 60px;
  }

  .hero-section .th-slider-content-wrapper .th-slider-content {
    padding: 0 50px;
  }
}

@media (min-width: 1620px) {
  .jc--text-media-block .slick-slider .carousel-item img {
    aspect-ratio: 16 / 8;
  }

  .builder_page_heading {
    padding-top: 12rem;
    padding-bottom: 5rem;
  }
}

@media (max-width: 1400px) {
  .modal.team-modal .modal-dialog.modal-dialog-centered {
    max-width: 72rem;
  }
}

@media(max-width: 1400px) {
  .section-intro-wine .section__content .related-wines-action-btn .section__price {
    right: 10%;
    transform: translate(-10%, -50%);
  }
}

@media(max-width: 1199px) {
  .app-block-related-wines .app__body .grid--articles-wines {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1200px) {
  .modal-dialog.modal-dialog-centered {
    max-width: 940px;
    padding: 50px;
  }

  .modal.team-modal .modal-body .theme-row .team-name {
    font-size: 34px;
  }

  .modal.team-modal .modal-body .theme-row .team-profile {
    font-size: 30px;
  }

  .modal.team-modal .modal-body .theme-row .team-img {
    padding-right: 0px;
  }

  .modal.team-modal .modal-dialog.modal-dialog-centered {
    max-width: 60rem;
  }

  .modal.team-modal button.close.modal-close {
    top: 10px;
    right: 30px;
  }

  .modal.team-modal button.close.modal-close .icon {
    width: 28px;
    height: 28px;
  }
}

@media(max-width: 991px) {
  .section-intro-wine .section__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 990px) {

  .sub-nav-tabs-wrapper,
  .sub-nav-sticky {
    margin-bottom: 30px;
    top: 73px;
  }

  .jc--text-media-block .theme-row [class^="col-lg-"]:not(:last-child) {
    margin-bottom: 36px;
  }

  .modal-dialog.modal-dialog-centered {
    max-width: 94%;
  }

  .popup-age .popup-inner {
    width: 60%;
    padding: 40px;
    padding-top: 0;
  }

  .popup-age .popup-inner .popup-content .popup-actions {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .modal.team-modal .modal-body .theme-row {
    height: 100%;
    flex-direction: column;
  }

  .modal.team-modal .modal-body .theme-row .col-sm-6 {
    width: 100%;
  }

  .column-text-and-media-block .theme-row .col-md-6:not(:last-child) {
    margin-bottom: 36px;
  }

  .jc--feature-events .event-heading .btn-theme,
  .sub-nav-tabs-wrapper {
    display: none;
  }

  .jc--feature-events .slick-slider .slick-track {
    display: flex;
    padding-left: 6%;
  }

  .jc--feature-events .slick-slider .slick-slide {
    height: auto;
  }

  .jc--feature-events .slick-slider .slick-slide .event-col {
    justify-content: space-between;
    height: 100%;
  }

  .column-text-and-media-block .text-media-col .text-media-heading {
    margin-top: 2.5rem;
  }

  .footer_newsletter_form .gform_wrapper.gravity-theme .gfield {
    grid-column: 1/-1 !important;
  }

  .modal.team-modal button.close.modal-close {
    top: 4px;
    right: 12px;
  }

  .modal.team-modal .team-img img.attachment-full.size-full {
    width: 100%;
    height: 100%;
    /*       object-fit: contain; */
    max-width: 300px;
    margin: 0 auto 20px;
  }

  .modal-dialog.modal-dialog-centered {
    padding: 40px 30px;
    max-height: 80vh;
    overflow: hidden;
    overflow-y: auto;
  }

  .modal.team-modal .modal-dialog.modal-dialog-centered::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }

  .modal.team-modal .modal-dialog.modal-dialog-centered::-webkit-scrollbar-track {
    background: var(--light-gray);
  }

  .modal.team-modal .modal-dialog.modal-dialog-centered::-webkit-scrollbar-thumb {
    background: var(--primary);
  }

  .modal.team-modal .modal-body .theme-row .team-name,
  .modal.team-modal .modal-body .theme-row .team-profile {
    font-size: 24px;
  }

  .popup-age .popup-inner {
    width: 100%;
    padding: 30px;
    padding-top: 0;
  }

  .popup-age .popup-inner .popup-content .popup-actions {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .popup-age .popup-inner .popup-content .popup-actions+.no-selected-text {
    margin-top: -.5rem;
  }

  .two-col-media-block .theme-row {
    row-gap: 16px;
  }

  .jc--restaurant-block .theme-row {
    row-gap: 30px;
  }

  .jc--restaurant-block .restaurant-menu {
    max-width: 100%;
  }

  .jc--restaurant-block .restaurant-menu .media-block .full-width-image-carousel .slick-arrow {
    color: var(--white);
  }

  .jc--restaurant-block.bg-gray .full-width-image-carousel .slick-dots li {
    opacity: 1;
  }

  .page-template-news-events-listings .jc--feature-events {
    border-top: 1px solid #2121214D;
    padding-top: 2.5rem !important;
  }

  .modal.team-modal .team-details {
    max-height: 100%;
  }

  .footer_newsletter_form .gform_wrapper.gravity-theme #field_submit input,
  .footer_newsletter_form .gform_wrapper.gravity-theme .gform_footer input {
    min-width: 100%;
  }

  .footer_newsletter_form .gform_wrapper.gravity-theme fieldset {
    margin-top: 68px;
    min-height: 68px;
  }

  .footer_newsletter_form .gform_wrapper form {
    max-width: 100%;
  }

  .footer_newsletter_form .gform_wrapper.gravity-theme .gform_footer {
    top: -136px;
  }

  .app-block-product-listing {
    padding: 95px 0 80px;
  }

  .app-block-product-listing .shell--fluid,
  .app-block-product-listing .grid--articles-wines {
    grid-template-columns: 1fr;
  }

  .app-block-product-listing .shell--fluid .filters {
    position: unset;
  }

  .app-block-product-listing .grid--articles-wines .article-wine .article__image img {
    margin: 50px auto;
  }

  .section-intro-wine .section__content .section__actions {
    flex-direction: column;
  }

  .section-intro-wine .section__content .section__variation {
    width: 100%;
    padding: 15px 17px 15px 24px;
  }

  .section-intro-wine .section__content .related-wines-action-btn {
    width: 100%;
  }

  .section-intro-wine .section__inner .section__head {
    padding: 24px;
    margin: 0;
  }

  .section-intro-wine .section__content .related-wines-action-btn .section__price {
    right: 15%;
    transform: translate(-15%, -50%);
  }

  .section-intro-wine .section__content .related-wines-action-btn p {
    padding: 16px;
  }

  .section-intro-wine .section__content .ww-product-action-buttons .ww-action-button-buy {
    padding: 16px;
  }

  .section-intro-wine .section__inner .section__image img {
    max-height: 370px;
  }

  .app-block-related-wines .app__body .grid--articles-wines {
    grid-template-columns: 1fr;
  }

  .app-block-related-wines {
    padding: 50px 0;
  }

  .app-block-related-wines .app__head h2 {
    margin-bottom: 25px;
  }

  .app-block-related-wines .grid--articles-wines .article-wine .article__image img {
    margin: 10px auto 40px;
  }

  .page-template-wine-club-details .app-block-page-heading {
    padding: 160px 0 36px;
  }

  .page-template-wine-club-details .app-block-page-heading h2,
  .page-template-wine-club-details .app-block-page-heading h3 {
    font-size: 24px;
  }

  .page-template-wine-club-details .ww-step-description {
    padding-top: 80px !important;
    font-size: 20px !important;
  }

  .page-template-wine-club-details .ww-clubwizard-option-header {
    font-size: 20px !important;
  }

  .page-template-wine-club-details .ww-step-container.expanded .store {
    flex: 0 0 100%;
  }

  .page-template-page-builder .builder_page_heading{
    margin-top: 20px;
    padding-top: 5rem !important;
  }

  .page-slug-my-membership .rich-text-block .para-img-text{
    padding: 0;
    border: none;
  }

  .page-slug-my-membership .rich-text-block .theme-row{
    padding: 0;
  }
}

@media (max-width: 580px) {

  .footer_newsletter_form .gform_wrapper form .gform-body .ginput_container :is(input:not([type='submit'], [type='radio'], [type='checkbox']), textarea, select),
  .footer_newsletter_form .gform_wrapper form .gform_footer .gform_button {
    width: 100%;
    max-width: 100%;
  }

  .footer_newsletter_form .gform_wrapper.gravity-theme .gform_fields {
    row-gap: 20px
  }

  .footer_newsletter_form .gform_wrapper.gravity-theme .gfield_validation_message,
  .footer_newsletter_form .gform_wrapper.gravity-theme .validation_message {
    font-size: 10px !important;
    line-height: 1.2;
  }

  .modal-dialog.modal-dialog-centered {
    padding: 40px 20px;
  }

  .theme-row.align-items-center .col-md-6.event-details+.col-md-6.text-end {
    text-align: left !important;
    margin-top: 20px;
  }

  .theme-row.align-items-center .col-md-6.event-details {
    flex-direction: column;
    display: flex;
  }

  .jc--feature-events .slick-slider .slick-track {
    padding-left: 4.5%;
  }

  .modal.team-modal .team-img img.attachment-full.size-full {
    max-width: 100%;
  }
}

@media (max-width: 990px) and (orientation:landscape) {
  h1 {
    font-size: 28px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .section-intro-wine .section__content .ww-product-action-buttons .ww-action-button-buy {
    text-align: left;
  }
}