:root {
  scroll-behavior: unset;
  color-scheme: light only;

  --primary: #2732E2;
  --primary-rgb: 39, 50, 226;

  --secondary: #D7C34B;
  --secondary-rgb: 215, 195, 75;

  --ternary: #E6E7EC;
  --ternary-rgb: 230, 231, 236;

  --dark: #0B0500;
  --dark-rgb: 11, 5, 0;

  --light: #F3F0EF;
  --light-rgb: 243, 240, 239;

  --black: #000;
  --black-rgb: 0, 0, 0;

  --white: #FFFFFF;
  --white-rgb: 255, 255, 255;

  --gray-light: #FFFDF8;
  --gray-light-rgb: 255, 253, 248;

  --gray: #A5A5A5;
  --gray-rgb: 164, 164, 164;

  --gray-dark: #939393;
  --gray-dark-rgb: 147, 147, 147;

  --border-radius: .25rem;
  --box-shadow: 0 .5rem 1rem rgba(var(--primary-rgb), .15);

  --link-color:       var(--primary);
  --link-hover-color: var(--secondary);

  --body-bg-color: var(--light);
  --body-font-size: 1em;
  --nav-height:  62px;
  --em-gutter-x: 56px;

  --scrollbar-width: calc(100vw - 100%);
  --app-height: 100%;

  --font-family-primary: "NeueMontreal";
  --font-family-secondary: "Self Modern";
  --font-weight-light: 300;
  --font-weight-regular: normal;
  --font-weight-medium: 500;
  --font-weight-bold: bold;
}

/*.container-fluid,
.row {
  --bs-gutter-x: var(--em-gutter-x);
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}*/

@media (min-width: 992px) {
  :root {
    --em-gutter-x: 70px;
  }
}

@media (min-width: 1400px) {
  :root {
    --em-gutter-x: 88px; /* 38px on each side aka 76 * 0.5 */
  }
}

@media (min-width: 1600px) {
  :root {
    --em-gutter-x: 104px; /* 38px on each side aka 76 * 0.5 */
  }
}

/*@media (min-width: 2000px) {
  :root {
    --em-gutter-x: 2.5rem;
  } 
}*/

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

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

* {
  min-width: 0;
  /*  margin: 0;*/
}

html {
  height: 100%;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /*virtual-keyboard: overlay-content;*/
}

body {
  min-height: 100%;
  /* Allows you to scroll below the viewport; default value is visible */
  overflow-x: hidden;
  overflow-y: scroll;
  /* To smooth any scrolling behavior */
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*Custom scrollbar*/
/** {*/
/*  scrollbar-width: thin;*/
/*  scrollbar-color: var(--primary) var(--secondary);*/
/*}*/

/**::-webkit-scrollbar {*/
/*  width: 8px;*/
/*  height: 8px;*/
/*}*/

/**::-webkit-scrollbar-track {*/
/*  border-radius: 16px;*/
/*  background: rgba(var(--secondary-rgb), 0.25);*/
/*}*/

/**::-webkit-scrollbar-thumb {*/
/*  background-color: var(--primary);*/
/*  border-radius: 16px;*/
/*}*/

/*::-webkit-scrollbar-thumb:hover {*/
/*  background: var(--secondary);*/
/*}*/


body,
html {
  padding: 0;
  margin: 0;

  background-color: var(--body-bg-color);
  color: var(--black);

  font-family: var(--font-family-primary), sans-serif;
  font-weight: var(--font-weight-regular);
  font-size: var(--body-font-size, 1em);
  font-style: normal;
  line-height: 1.4;

  text-rendering: geometricPrecision;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

html.em-mod-touch * {
  background-attachment: scroll !important;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-block-start: 1px solid var(--gray-light);
  margin: 1em 0;
  padding: 0;
}

/*
  Remove built-in form typography styles
*/
input, button, textarea, select {
  font: inherit;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

input[type="button"],
input[type="reset"],
input[type="submit"],
button {
  cursor: pointer;
  -webkit-appearance: button;
  appearance: button;
}

input[type=checkbox],
input[type=radio],
legend {
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  height: auto;
  margin: 0;
}

input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

input[type=search] {
  appearance: textfield;
  outline-offset: -2px;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

::-webkit-file-upload-button {
  appearance: button;
  font: inherit;
}

::file-selector-button {
  appearance: auto;
  font: inherit;
}

::selection {
  color: var(--black);
  background: var(--primary);
  text-shadow: none;
}

img::selection,
svg::selection {
  background: transparent;
}

p {
  font-size: 16px;
  font-family: var(--font-family-primary), sans-serif;
  color: var(--black);
  line-height: 120%;
  overflow-wrap: break-word;
/*  hyphens: auto;*/
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-regular);
  color: var(--black);
  font-style: normal;
  line-height: normal;
  overflow-wrap: break-word;
  -ms-word-wrap: break-word;
  word-wrap: break-word
}

h1 {
  font-size: 100px;
}

h2 {
  font-size: 55px;
}

h3 {
  font-size: 35px;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

@media (max-width: 991px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 25px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 14px;
  }

}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: inherit
}

a {
  font-family: var(--font-family-primary);
  color: var(--link-color);
/*  text-decoration: none;*/
  -webkit-transition: color .3s ease;
  -o-transition: color .3s ease;
  transition: color .3s ease
}

a:hover {
  color: var(--link-hover-color);
}

a,
a div,
a span,
button,
button div,
button span,
input,
textarea,
.touch-action {
  -ms-touch-action: manipulation;
  touch-action: manipulation; /*disable the delay of click events caused by support for the double-tap to zoom gesture. */
}

button {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-variant: inherit;
  line-height: 1;
  text-transform: none;
  cursor: pointer;
  -webkit-appearance: button;
}

a[disabled],
button[disabled],
html input[disabled] {
  cursor: default;
}

/*Force Hand Cursor over Clickable Items*/
a[href],
input[type="submit"],
input[type="image"],
label[for],
select,
button,
.pointer,
.clickable,
.tappable {
  cursor: pointer;
}

/*
  Improve media defaults
*/
img, picture, video, canvas, svg {
  display: inline-flex;
  max-width: 100%;
}

img {
  image-rendering: auto;
  border-style: none;
  display: inline-flex;
  height: auto;
  vertical-align: middle;
  max-width: 100%;
}

/*
  Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

/* ==========================================================================
   Author's custom styles
========================================================================== */
.cv-auto {
  content-visibility: auto;
}

.disable-hover,
.disable-hover * {
  pointer-events: none !important;
/*  animation: none !important;
  transition: none !important;*/
}

/*stop interaction with the page when page is loading*/
/*or when the search is open*/
body.is-loading,
body.is-loading * {
  pointer-events: none !important;
}


/*Helpers*/
.container-em,
.em-container {
  position: relative;
  padding-inline: calc(var(--em-gutter-x) * .5);
  margin-inline: auto;
}

/*START - Author styles*/

/*<Loader>*/

/* Loader */
html .loader {
  display: flex;
}

.loader {
  pointer-events: none;
}

.loader {
  z-index: 2500;
  width: 100%;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.loader_panel {
  z-index: 1;
  width: 100%;
  height: 50%;
  background-color: var(--dark);
}

.loader_panel.is-1 {
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: 0;
}

.loader_panel.is-2 {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
}

.loader_line {
  z-index: 2;
  width: 0;
  height: 1px;
  background-color: var(--light);
  margin-block-start: auto;
  margin-block-end: auto;
  position: relative;
}

.loader_number {
  color: var(--light);
  font-family: var(--font-family-secondary), sans-serif;
  text-align: end;
  padding-inline-start: .3em;
  padding-inline-end: .3em;
  font-size: 6em;
  position: absolute;
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  margin-block-end: 0;
}
/*</Loader>*/

/*<Nav>*/
.em-navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  padding-block-start: 63px;
  transition: padding 0.35s, background-color 0.35s;
}

.didScroll .em-navbar {
  background-color: var(--body-bg-color);
  padding-block-start: 16px;
  padding-block-end: 16px;
}

/*.floating-menu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}*/

.mobile-logo {
  width: 44px;
  height: 46px;
  object-fit: contain;
  object-position: center;
}

.desktop-logo {
  width: 99px;
  height: 104px;
  object-fit: contain;
  object-position: center;
  position: absolute;
  bottom: 0;
  right: 0;
}


.header-item {
  font-size: 30px;
  font-family: var(--font-family-secondary);
  line-height: 109%;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--black);
  border-radius: 0;

  --bs-btn-padding-x: 0;
  --bs-btn-padding-y: 0;
  --bs-btn-border-width: 0;
}

.header-dropdown-menu {
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: calc(25px * 0.5);
  --bs-dropdown-spacer: 0;
  --bs-dropdown-color: var(--black);
  --bs-dropdown-bg: var(--body-bg-color);
  --bs-dropdown-border-radius: 0;
  --bs-dropdown-border-width: 0;
  --bs-dropdown-border-color: var(--bs-dropdown-bg);
  --bs-dropdown-link-color: var(--bs-dropdown-color);
  --bs-dropdown-link-hover-bg: var(--bs-dropdown-bg);
  --bs-dropdown-link-active-color: var(--bs-dropdown-color);
  --bs-dropdown-link-active-bg: var(--bs-dropdown-bg);
  --bs-dropdown-item-padding-y: calc(25px * 0.5);
  --bs-dropdown-item-padding-x: 12px;
  --bs-dropdown-min-width: 190px;
  overflow: hidden;
}

.header-dropdown-menu .dropdown-item {
  font-weight: normal;
  transform: skewX(0deg);
  transition: transform 0.3s ease, padding 0.3s;
}

.header-dropdown-menu .dropdown-item:hover {
  padding-inline-start: 25px;
  transform: skewX(-10deg);
}

.explore-btn {
  display: flex;
  align-items: center;
}

.explore-btn svg {
  margin-inline-start: 23px;
}


@media (min-width: 992px) {
  .floating-menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
  }
}


@media (min-width: 1600px) {
 .floating-menu {
  top: 48px;
 }
}


/*</Nav>*/

/*<Header>*/
.header-wrapper {
  padding-block-start: 45px;
  padding-block-end: 45px;
}

.header-inner-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  margin-block-start: 48px;
}

.header-text {
  font-size: 16px;
  line-height: 117%;
  text-align: center;
  letter-spacing: -0.03em;
  margin-block-end: 0;
  max-width: 320px;
}

.swiper-header {
  width: 100%;
  padding-block: 42px;
}

.swiper-header .swiper-slide {
  width: 274px;
  height: 349px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: self-start;
  background-color: var(--body-bg-color);
/*  filter: blur(3px);*/
}

.swiper-header .swiper-slide-active {
/*  filter: blur(0px);*/
}

.swiper-header .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.swiper-header .swiper-carousel-animate-opacity {
    height: 100%
}

.swiper-header .swiper-slide-shadow-left,
.swiper-header .swiper-slide-shadow-right {
  background-image: none;
}

@media (min-width: 992px) {
  .header-wrapper {
    padding-block-start: 60px;
    padding-block-end: 58px;
  }

  .header-logo {
    margin-block-start: 0;
  }

  .header-text {
    font-size: 36px;
    line-height: 100%;
    padding-inline: 100px;
    max-width: 972px; /*772 + 100 * 2 which is the logo*/
  }

  .swiper-header .swiper-slide {
    width: 523px;
    height: 666px;
  }
}
/*</Header>*/

/*<About>*/
.about-wrapper {
  margin-block: 45px;
}

.about-title {
  font-size: 28px;
  line-height: 109%;
  letter-spacing: -0.03em;
  font-family: var(--font-family-secondary);
  margin-block-end: 43px;
}

.about-description {
  font-size: 16px;
  line-height: 126.5%;
  margin-block-end: 30px;
}

.about-accordion {
    --bs-accordion-color: var(--black);
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: var(--black);
    --bs-accordion-border-width: 1px;
    --bs-accordion-border-radius: 0;
    --bs-accordion-btn-padding-x: 0;
    --bs-accordion-btn-padding-y: 14px;
    --bs-accordion-btn-color: var(--black);
    --bs-accordion-btn-icon: url(data:image/svg+xml,%3Csvg%20width%3D%2234%22%20height%3D%2234%22%20viewBox%3D%220%200%2034%2034%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M17.2319%200.698242V33.4863%22%20stroke%3D%22black%22%2F%3E%3Cpath%20d%3D%22M33.626%2017.0923L0.837891%2017.0923%22%20stroke%3D%22black%22%2F%3E%3C%2Fsvg%3E);
    --bs-accordion-btn-icon-width: 26px;
    --bs-accordion-btn-active-icon: url(data:image/svg+xml,%3Csvg%20width%3D%2234%22%20height%3D%2234%22%20viewBox%3D%220%200%2034%2034%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M1%2017H33%22%20stroke%3D%22black%22%20stroke-width%3D%221%22%2F%3E%3C%2Fsvg%3E);
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-body-padding-x: 0;
    --bs-accordion-body-padding-y: 30px;
    --bs-accordion-active-color: var(--black);
    --bs-accordion-active-bg: transparent;
    border-block: 1px solid var(--bs-accordion-border-color);
    margin-block-start: 10px;
    margin-block-end: 20px;
}

.about-accordion .accordion-button {
  font-size: 14px;
  line-height: 126.5%;
  text-transform: uppercase;
  border-block-end: 1px solid var(--bs-accordion-border-color);
  margin-block-end: -1px;
}

.accordion-body p {
  font-size: 14px;
  line-height: 120%;
  margin-block-end: 30px;
}

.accordion-body p:last-child {
  margin-block-end: 0;
}

@media (min-width: 992px) {
  .about-wrapper {
    margin-block: 138px;
  }

  .about-title {
    font-size: 50px;
  }

  .about-description {
    font-size: 25px;
  }

  .about-accordion {
    --bs-accordion-btn-icon-width: 34px;
    --bs-accordion-btn-padding-y: 58px;
    --bs-accordion-body-padding-y: 40px;
    margin-block: 70px;
  }

  .about-accordion .accordion-button {
    font-size: 25px;
  }

  .accordion-body p {
    font-size: 25px;
  }
}
/*</About>*/

/*<Display>*/


.type {
    display: grid;
    align-content: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    will-change: transform
    height: 100vmax;
    width: 100vmax;
/*    margin-top: -50vmax;
    top: 50%;
    position: fixed;*/
}

.type__line {
    -webkit-touch-callout: none;
    color: var(--black);
    font-family: var(--font-family-secondary);
    font-size: 12vh;
    font-size: clamp(6.625rem, 4.9072rem + 6.3918vw, 10.5rem);
    line-height: 90%;
    opacity: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    will-change: transform,opacity;
}


.grid-container {
  display: grid;
  grid-template-columns: 1fr; /* Single column */
  grid-template-rows: 1fr; /* Single row */
  position: relative;
      place-items: center;
}

.element-1,
.element-2 {
  grid-column: 1 / 2; /* Both elements occupy the same column */
  grid-row: 1 / 2;    /* Both elements occupy the same row */
}

.element-1 {
  z-index: 1; /* Set z-index to stack */
}

.element-2 {
  z-index: 2; /* Higher z-index makes it appear on top */
}


.display-wrapper {
  margin-block-start: 46px;
  margin-block-end: 66px;
}

.display {
  font-size: 106px;
  line-height: 90%;
  color: var(--black);
  font-family: var(--font-family-secondary);
  text-transform: uppercase;
  text-align: center;
  margin-inline: -105%;
  margin-block: 0;
}


.image--style {
  width: 160px;
  height: 203px;
  cursor: pointer;
  display: inline-grid;
  overflow: hidden;
  position: relative;
}

.image--style>.image__element,
.image__wrap {
  border-radius: inherit;
  grid-area: 1/1/2/2;
  height: 100%;
  position: relative;
  transform-origin: inherit;
  width: 100%;
  will-change: transform
}

.image__wrap {
  overflow: hidden
}


.image__element {
  background-position: 50% 50%;
  background-size: cover;
  height: 100%;
  width: 100%
}


@media (min-width: 576px) {
  .display {
    margin-inline: -70%;
  }
}

@media (min-width: 768px) {
  .display {
    margin-inline: -45%;
  }
}


@media (min-width: 992px) {
  .display-wrapper {
    margin-block: 80px;
  }

  .display {
    /*    font-size: 168px;*/
    /*    font-size: 12vh;*/
    font-size: clamp(6.625rem, 4.9072rem + 6.3918vw, 10.5rem);
    margin-inline: -40%;
  }

  .image--style {
    width: 334px;
    height: 426px;
  }
}

@media (min-width: 1200px) {
  .display-wrapper {
    margin-block: 110px;
  }
  .display {
    margin-inline: -27%;
  }
}
@media (min-width: 1400px) {
  .display-wrapper {
    margin-block: 150px;
  }
  .display {
    margin-inline: -17%;
  }
}
@media (min-width: 1600px) {
  .display {
    margin-inline: -13%;
  }
}
@media (min-width: 1800px) {
  .display {
    margin-inline: -11%;
  }
}
/*</Display>*/

/*<Swiper>*/
.swiper-clients {
}

.swiper-clients .swiper-slide {
  height: 452px;
  width: 299px;
}

figure.effect-lily {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  margin-block-end: 0;
}


figure.effect-lily figcaption {
  padding-inline: 28px;
  padding-block: 15px;
  color: var(--light);
  text-transform: uppercase;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

figure.effect-lily figcaption::before,
figure.effect-lily figcaption::after {
  pointer-events: none;
}

figure.effect-lily figcaption,
figure.effect-lily figcaption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
figure.effect-lily figcaption > a {
  z-index: 10;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}

figure.effect-lily .effect-lily__title {
  margin: 0;
  font-size: 14px;
  line-height: 126.5%;
}

figure.effect-lily .effect-lily__title--white {
  color: var(--white);
}

figure.effect-lily .effect-lily__title span {
  font-weight: var(--font-weight-bold);
}


figure.effect-lily img {
  display: block;
  max-width: none;
  width: -webkit-calc(100% + 52px);
  width: calc(100% + 52px);
  object-fit: cover;
  object-position: center;
  height: 100%;
  margin-block-end: 0;

  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-40px,0, 0);
  transform: translate3d(-40px,0,0);
}

figure.effect-lily figcaption {
  text-align: start;
}

figure.effect-lily .effect-lily__title {
  opacity: 0;
  -webkit-transform: translate3d(0,40px,0);
  transform: translate3d(0,40px,0);
  -webkit-transition: opacity 0.2s, -webkit-transform 0.35s;
  transition: opacity 0.2s, transform 0.35s;
}

.touch figure.effect-lily img,
.touch figure.effect-lily .effect-lily__title,
figure.effect-lily:hover img,
figure.effect-lily:hover .effect-lily__title {
  opacity: 1;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.touch  figure.effect-lily .effect-lily__title,
figure.effect-lily:hover .effect-lily__title {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
}

@media (min-width: 767px) {
  .swiper-clients .swiper-slide {
    width: 400px;
    height: 540px;
  }
}

@media (min-width: 992px) {
  .swiper-clients .swiper-slide {
    height: 672px;
    width: 445px;
  }

  figure.effect-lily figcaption {
    padding-inline: 42px;
    padding-block: 22px;
  }

  figure.effect-lily .effect-lily__title {
    font-size: 22px;
  }
}
/*</Swiper>*/


/*<Wines>*/
.tasting-wrapper {
  margin-block-start: 40px;
  margin-block-end: 68px;
  overflow: hidden;
}

.wine-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: 0;
  --bs-nav-link-color: var(--black);
  --bs-nav-link-hover-color: var(--black);
}

.dropdown-menu.wine-nav {
  padding-block-start: 20px;
  --bs-dropdown-bg: var(--body-bg-color);
  --bs-dropdown-border-radius: 0;
  --bs-dropdown-color: var(--black);
  --bs-dropdown-padding-y: 0;
  --bs-dropdown-item-padding-y: 8px;
  --bs-dropdown-link-hover-bg: var(--body-bg-color);
  --bs-dropdown-link-active-bg: var(--body-bg-color);

}

.dropdown-menu.wine-nav .dropdown-item {
  padding-block-start: 0;
}

.wine-nav .nav-link {
  font-size: 20px;
  line-height: 109%;
  letter-spacing: -0.03em;
  font-family: var(--font-family-secondary);
  font-style: normal;
  margin-block-end: calc(20px - 0.5rem);
  padding-inline-start: 0;
  transform: skewX(0deg);
  transition: all 0.3s ease;
}

.wine-nav .nav-link.active {
  transform: skewX(-10deg);
  padding-inline-start: 25px;
}

.wine-nav .nav-link:not(.active):hover {
  padding-inline-start: 25px;
  transform: skewX(-10deg);
}

.catalog-btn .btn {
    --bs-btn-padding-y: 0.75rem;
    --bs-btn-padding-x: 0;
    --bs-btn-font-family: var(--font-family-secondary);
    --bs-btn-font-size: 20px;
    --bs-btn-line-height: 133%;
    --bs-btn-color: var(--black);
    --bs-btn-bg: transparent;
    --bs-btn-border-width: 0;
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: 0;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
    margin-block-end: 30px;

}
.catalog-btn .dropdown-toggle::after {
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D'15'%20height%3D'7'%20viewBox%3D'0%200%2015%207'%20fill%3D'none'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M1%201L7.5%206L14%201'%20stroke%3D'black'%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 13px;
    height: 5px;
    border: none;
}



@media (min-width: 992px) {
  .tasting-wrapper {
    margin-block-start: 80px;
    margin-block-end: 110px;
  }

  .wine-nav .nav-link {
    font-size: 30px;
    margin-block-end: 25px;
  }
}


.region-nav {
  --bs-nav-pills-border-radius: 16px;
  --bs-nav-pills-link-active-color: var(--light);
  --bs-nav-pills-link-active-bg: var(--black);

    --bs-nav-link-padding-x: 19px;
    --bs-nav-link-padding-y: 6px;
    --bs-nav-link-color: var(--black);
    --bs-nav-link-hover-color: var(--bs-link-hover-color);
    gap: 5px;
    margin-block-end: 48px;
}

.region-nav .nav-item {
  flex-basis: 99px;   /* Set the base width (you can adjust this) */
}

.region-nav .nav-link {
  width: 100%;
  text-align: center;
  text-transform: capitalize;
  font-size: 15px;
  line-height: 126.5%;
  border: 1px solid var(--black);
}

.region-nav .nav-link:focus, 
.region-nav .nav-link:hover {
    color: var(--light);
    background-color: var(--bs-nav-pills-link-active-bg);
}

.category-title {
  font-size: 50px;
  line-height: 109%;
  letter-spacing: -0.03em;
  font-family: var(--font-family-secondary);
  margin-block: 34px;
}

.beverage-list {
    --bs-list-group-color: var(--black);
    --bs-list-group-bg: transparent;
    --bs-list-group-border-color: var(--black);
    --bs-list-group-border-width: 1px;
    --bs-list-group-border-radius: 0;
    --bs-list-group-item-padding-x: 0;
    --bs-list-group-item-padding-y: 21px;
    --bs-list-group-action-color: var(--black);
    --bs-list-group-action-hover-color: var(--black);
    --bs-list-group-action-hover-bg: transparent;
    --bs-list-group-action-active-color: var(--black);
    --bs-list-group-action-active-bg: transparent;
    border-block: 1px solid var(--bs-list-group-border-color);
    margin-block: 34px;
}

.beverage-title,
.beverage-producer,
.beverage-year {
  font-size: 15px;
  line-height: 126.5%; 
  margin-block-end: 0;
}

.beverage-producer {
 font-style: italic;
}

.bottle-placeholder {
  width: 250px;
  height: 358px;
  object-fit: contain;
  object-position: center;
  will-change: transform;
  opacity: 0;
}


/*slider*/
.info-logo {
  width: 58px;
  height: 62px;
  object-fit: contain;
  margin-block-end: 30px;
}

.info-title {
  font-size: 28px;
  line-height: 109%;
  letter-spacing: -0.03em;
  font-family: var(--font-family-secondary);
  margin-block-end: 43px;
}

.info-description {
  font-size: 16px;
  line-height: 149%;
  margin-block-end: 30px;
}

.info-btn {
  padding: 0;
  line-height: 100%;
  font-size: 14px;
  letter-spacing: -0.03em;
  color: var(--black);
  text-decoration: none;
}


.wine-swiper {
  position: relative;
  overflow: visible;
  clip-path: inset(0 -100vw 0 0);
}

.wine-swiper .swiper-slide {

  --swiper-padding-inline: 32px;
  --swiper-padding-block: 34px;
  --swiper-border-width: 1px;

  --slide-width: calc(135px + var(--swiper-padding-inline));
  --slide-height: calc(520px + var(--swiper-padding-block));

  height: var(--slide-height);
  width: var(--slide-width);

  margin-block-end: 0;
  text-align: center;

  position: relative;
  overflow: hidden;

  background-color: transparent;
  border: var(--swiper-border-width) solid transparent;

  cursor: pointer;
  flex-grow: 1;

  padding-inline: var(--swiper-padding-inline);
  padding-block: var(--swiper-padding-block);

  margin-inline-end: calc(-1 * var(--swiper-border-width));

  transition: background-color 0.35s, border-color 0.35s;
} 

.wine-swiper .swiper-slide img {
  position: relative;
  display: inline-block;

  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;

  width: 100%;
  max-width: 105px;
  max-height: 420px;

  margin-inline: auto;
  margin-block: auto;

  object-fit: contain;
  object-position: center;

  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  transform-origin: top center;
}

.wine-swiper .swiper-slide .product-name {
  font-size: 15px;
  line-height: 100%;

  margin-block-start: var(--swiper-padding-block);
  margin-block-end: 0px;

  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}

.wine-swiper .swiper-slide .product-name small {
  color: #939393;
  font-size: 100%;
}

.wine-swiper figcaption {
  text-align: start;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;

  padding-inline: var(--swiper-padding-inline);
  padding-block: var(--swiper-padding-block);

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-end;

  opacity: 0;

  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;

  -webkit-transform: translate3d(0, 90px, 0);
  transform: translate3d(0, 90px, 0);
}


.no-touch .wine-swiper .swiper-slide:hover {
  background-color: var(--white);
  border-color: var(--black);
}

.no-touch .wine-swiper .swiper-slide:hover img {
  -webkit-transform: translate3d(0,0,0) scale(0.642, 0.693);
  transform: translate3d(0,0,0) scale(0.642, 0.693);
}

.no-touch .wine-swiper .swiper-slide:hover figcaption {
  opacity: 1;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.no-touch .wine-swiper .swiper-slide:hover .product-name {
  -webkit-transform: translate3d(0,-50px,0);
  transform: translate3d(0,-50px,0);
  opacity: 0;
}


.wine-swiper .slide-title {
  font-size: 15px;
  line-height: 126.5%;
  border-block-end: 1px solid var(--black);
  margin-block-end: 16px;
  padding-block-end: 20px;
}

.wine-swiper .slide-title small {
  color: #939393;
  font-size: 100%;
}

.wine-swiper .slide-description {
  font-size: 14px;
  line-height: 17px;
  margin-block-end: 0;
}


@media (min-width: 992px) {
  .element-left {
    max-width: 480px;
  }

  .info-logo {
    width: 58px;
    height: 62px;
    margin-block-end: 56px;
  }

  .info-title {
    font-size: 69px;
    margin-block-end: 105px;
  }

  .info-description {
    font-size: 20px;
    margin-block-end: 48px;
  }

  .info-btn {
    font-size: 18px;
  }
}

@media (min-width: 1400px) {
 .wine-swiper  .swiper-slide {
    --slide-width: 390px;
    --slide-height: 678px;
  }

  .wine-swiper .swiper-slide img {
    max-width: 123px;
    max-height: 488px;
  }

}

@media (min-width: 1600px) {

}

@media (min-width: 1800px) {
  .wine-swiper  .swiper-slide {
    --slide-width: 450px;
  }
}
/*</Wines>*/


/*<Video>*/
.video-wrapper {
  padding-inline: 0;
}

.poster {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  height: 461px;
  max-height: 100svh;
  overflow: hidden;
  margin-block-end: 0;
}

.poster--overlay::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--primary-rgb), 0.55);
  z-index: 0;
}

.poster--grayscale .poster-img {
  filter: grayscale(100%);
}

.poster-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin: 0;
  padding: 0;
  z-index: 0;
}

.poster-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  opacity: 0;
  z-index: -1;
  position: relative;
  transition: opacity 0.3s ease-in-out;
}

.poster-icon,
.poster-play-btn {
  position: absolute;
  cursor: pointer;
  z-index: 1;
  display: inline-flex;
  width: 33px;
  height: 37px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.poster-play-btn {
  background-image: url(../img/general/play.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.poster.active .poster-video {
  opacity: 1;
  z-index: 1;
}
.poster.active .poster-play-btn {
  z-index: -1;
}

.poster.active.pause .poster-play-btn {
  z-index: 1;
  pointer-events: none;
  background-image: url(../img/general/pause-circle.svg);
}

@media (min-width: 992px) {
  .video-wrapper {
  }
  .poster {
    height: 100svh;
    max-height: 1022px;
  }

  .poster-icon,
  .poster-play-btn {
    width: 74px;
    height: 84px;
  }
}
/*</Video>*/

/*<Banner>*/
.img-banner {
  margin-block-end: 0;
  width: 100%;
  height: 461px;
}

.img-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-block-end: 0;
}

@media (min-width: 992px) {
  .img-banner {
    height: 662px;
  }
}
/*</Banner>*/


/*<CardElement>*/
.element-wrapper {
  padding-block: 59px;
}

.element-card {
    --card-color: var(--black);
    --bs-card-spacer-y: 41px;
    --bs-card-spacer-x: 0;
    --bs-card-title-spacer-y: 27px;
    --bs-card-text-spacer-y: 36px;
    --bs-card-title-color: var(--card-color);
    --bs-card-subtitle-color: var(--card-color);
    --bs-card-border-color: var(--card-color);
    --bs-card-cap-color: var(--card-color);
    --bs-card-color: var(--card-color);
    --bs-card-bg: transparent;
    --bs-card-border-width: 1px;
    --bs-card-border-radius: 0;
    border-inline: none;
    margin-block-end: -1px;
}

.element-card .card-body {
  padding-block-start: 43px;
  padding-block-end: 26px;
}

.element-card .card-title {
  font-family: var(--font-family-secondary);
  margin-block-end: var(--bs-card-title-spacer-y);
  color: var(--bs-card-color);
  font-size: 26px;
  line-height: 109%;
  letter-spacing: -0.03em;
  font-weight: normal;
  text-transform: uppercase;
}

.element-card .card-text {
    margin-block-end: var(--bs-card-text-spacer-y);
    color: var(--bs-card-color);
    font-size: 16px;
    line-height: 126.5%;
}

.element-card .card-link {
  color: var(--bs-card-color);
  text-decoration: none;
  font-size: 16px;
  line-height: 99.4%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .element-wrapper {
    padding-block: 110px;
  }

  .element-card {
      --bs-card-spacer-y: 41px;
      --bs-card-title-spacer-y: 25px;
      --bs-card-text-spacer-y: 40px;
  }

  .element-card .card-body {
    padding-block-start: 43px;
    padding-block-end: 40px;
  }


  .element-card .card-title {
    font-size: 30px;
  }

  .element-card .card-text {
      font-size: 20px;
      max-width: 801px;
  }

  .element-card .card-link {
    font-size: 18px;
    line-height: 99.4%;
    letter-spacing: -0.03em;
  }
}


/*<Footer>*/
.footer-wrapper {
  background-color: #0B0500;
  padding-block-start: 54px;
  padding-block-end: 27px;
}

.footer-grid-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
/*  grid-row-gap: 45px;*/
}

.footer-col {
  margin-block-end: 45px;
}


.footer-header,
.footer-nav__link,
.footer-text,
.footer-description {
  padding-inline: 0;
  padding-block: 0;
  font-size: 16px;
  line-height: 149%;
  color: var(--light);
  margin-block-end: 0;
}

.footer-header {
 text-transform: uppercase;
 margin-block-end: 10px;
}

.footer-description {
  line-height: 126.5%;
  color: var(--light);
  max-width: 328px;
}

.form-group {
  margin-block-end: 57px; 
}

.newsletter-group .form-item {
    border-inline: 0;
    border-radius: 0;
    border-block-start: 0;
    font-size: 20px;
    line-height: 126.5%;
}

.newsletter-group .form-control {
  --bs-border-color: var(--light);
  --bs-body-color: var(--light);
  --bs-border-radius: 0;
  background-color: transparent;
  padding-inline-start: 0;
}

.form-control::placeholder {
  color: var(--light);
}

.newsletter-group .btn {
  text-align: end;
  padding-inline-end: 0;
  text-transform: uppercase;


    --bs-btn-color: var(--light);
    --bs-btn-border-color: var(--light);
    /* --bs-btn-hover-color: aliceblue; */
    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-border-color: var(--light);
    /* --bs-btn-active-color: var(--dark); */
    --bs-btn-active-bg: transparent;
    --bs-btn-active-border-color: var(--light);
}

.form-item-text {
  color: var(--light);
  font-style: italic;
  font-size: 15px;
  line-height: 126.5%;
}

.footer-logo {
  margin-block-end: 59px;
}

.copyright {
}

.copyright-content {
  margin-block-end: 57px;
}

.copyright-content .nav-link {
  text-decoration: underline var(--light);
}

.copyright-content .nav-link:hover {
      color: var(--light);
}

.copyright-text {
  font-size: 12px;
  line-height: 120%;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}

@media (min-width: 992px) {
  .footer-wrapper {
    padding-block-start: 65px;
    padding-block-end: 97px;
  }

  
  .grid-item-span-2 {
    grid-column: span 2; /* This item will span 2 columns */
  }

  .footer-header,
  .footer-nav__link,
  .footer-text,
  .footer-description {
    font-size: 20px;
  }

  .footer-header {
   margin-block-end: 16px;
  }

  .form-group {
    max-width: 381px;
  }

  .footer-logo {
    margin-block-start: 26px;
    margin-block-end: 94px;
  }

  .footer-description {
    max-width: 575px;
  }

  .copyright {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }

  .copyright-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-block-end: 0;
  }

  .copyright-text {
    font-size: 16px;
  }
}

@media (min-width: 1400px) {
  .desktop-column-gutter {
    --bs-gutter-x: 64px;
  }
}

/*</Footer>*/

/*END - Author styles*/