@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css");
@import url("typo.css");
@import url("header.css");
@import url("img.css");
@import url("btn.css");
@import url("form.css");
@import url("footer.css");
@import url("preloader.css");
:root {
  /*Setting Color*/
  --white-color: #EBE3D8;
  --black-color: #1A1A1A;
  --cyan-color: #A0BBC7;
  /*Setting Font*/
  --little-text: 0.7rem;
  --regular-text: 1rem;
  --medium-text: 2rem;
  --big-text: 5rem;
  /*Setting Space*/
  --little-space: 0.75rem;
  --regular-space: 1rem;
  --medium-space: 2rem;
  --big-space: 8rem;
  --header-height: 130px;
  --container-width: 1600px;
  --logo-width: 220px;
  /*Setting Btn*/
  --btn-space: 0.5rem 1.25rem;
  --btn-space-little: 0.25rem 0.75rem;
  /*Setting Radius*/
  --btn-radius: 3px;
  --regular-radius: 3px;
  --medium-radius: 10px;
  --big-radius: 30px;
  /*Setting Shadow*/
  --box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.07);
}
html, body {
  padding: 0;
  margin: 0;
  color: var(--black-color);
  background: var(--white-color);
  outline: none;
  scroll-behavior: auto !important;
}
* {
  outline: none !important;
}
/**utility**/
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
a:hover {
  text-decoration: none;
}
a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
dl, ol, ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
ul:last-child {
  margin-bottom: 0 !important;
}
li:last-child {
  margin-bottom: 0 !important;
}
div:last-child {
  margin-bottom: 0 !important;
}
.align-left {
  text-align: left;
}
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}
.align-justify {
  text-align: justify;
}
.d-block {
  display: block !important;
  width: 100%;
}
.d-flex {
  display: flex !important;
}
.flex-center {
  align-items: center !important;
}
.flex-end {
  align-items: flex-end !important;
}
.over-hidden {
  overflow: hidden !important;
}
.over-show {
  overflow: visible !important;
}
.nomargin {
  margin: 0 !important;
}
.nopadding {
  padding: 0 !important;
}
.noborder {
  border: 0 !important;
}
.m-top {
  margin-top: calc(var(--regular-space) * 1.5) !important;
}
.m-top-xs {
  margin-top: var(--little-space) !important;
}
.m-top-md {
  margin-top: var(--medium-space) !important;
}
.m-top-xl {
  margin-top: var(--big-space) !important;
}
.m-top-extra {
  margin-top: calc(var(--big-space) * 3) !important;
}
.m-bottom {
  margin-bottom: calc(var(--regular-space) * 1.5) !important;
}
.m-bottom-xs {
  margin-bottom: var(--little-space) !important;
}
.m-bottom-md {
  margin-bottom: var(--medium-space) !important;
}
.m-bottom-xl {
  margin-bottom: var(--big-space) !important;
}
.m-left {
  margin-left: var(--regular-space) !important;
}
.m-right {
  margin-right: var(--regular-space) !important;
}
.p-top {
  padding-top: var(--regular-space) !important;
}
.p-bottom {
  padding-bottom: var(--regular-space) !important;
}
.p-bottom-0 {
  padding-bottom: 0 !important;
}
.p-left {
  padding-left: var(--regular-space) !important;
}
.p-right {
  padding-right: var(--regular-space) !important;
}
.bg-white {
  background-color: var(--white-color) !important;
}
.bg-black {
  background-color: var(--black-color) !important;
}
.bg-cyan {
  background-color: var(--cyan-color) !important;
}
.color-white {
  color: var(--white-color);
}
.color-black {
  color: var(--black-color);
}
.color-cyan {
  color: var(--cyan-color);
}
/**end utility**/
/**grid setting**/
.container-main {
  z-index: 1;
}
section {
  position: relative;
  margin: 0 auto;
  padding: var(--medium-space) 0;
  border-bottom: 1px solid var(--black-color);
  z-index: 2;
}
section.bg-black {
  border-color: var(--white-color);
}
section.section-grid {
  display: flex;
  padding: 0;
}
section.section-grid.h-40 {
  min-height: 40vh;
}
section.section-first {
  padding-top: calc(var(--header-height) + var(--medium-space));
  padding-bottom: var(--medium-space);
}
section.section-first-wine {
  padding-top: calc(var(--header-height));
  padding-bottom: 0;
}
section.section-first-wine .container {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
}
section.section-first-wine .container > div:first-child {
  padding: var(--medium-space) 0;
}
section.section-first-wine .row {
  height: 100%;
  margin: 0;
}
section.section-first-wine .row > div {
  height: 100%;
  padding-bottom: var(--medium-space);
  padding-right: var(--medium-space);
}
section.section-first-wine img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
section.section-full {
  height: 100vh;
  height: 100svh;
}
section.section-canvas-animate {
  padding: 0;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.container {
  position: relative;
  width: 100%;
  max-width: var(--container-width);
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--medium-space);
}
section.section-grid .container {
  width: 50%;
  padding: var(--medium-space);
}
section.section-grid .container:not(:first-of-type) {
  border-left: 1px solid var(--black-color);
}
section.section-grid.bg-black .container:not(:first-of-type) {
  border-color: var(--white-color);
}
section.section-grid .container.order-lg-1 {
  border: none;
}
section.section-grid .container.order-lg-2 {
  border-left: 1px solid var(--black-color);
}
@media screen and (max-width: 767px) {
  section.section-grid {
    flex-wrap: wrap;
  }
  section.section-grid .container {
    width: 100%;
    border: none;
  }
  section.section-grid .container.order-lg-2 {
    border: none;
  }
}
.row {
  margin-bottom: var(--medium-space);
}
.no-gutters {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.no-gutters > .col, .no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}
@media screen and (min-width: 1200px) {
  .container .row {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }
  .container .row > .col, .container .row > [class*=col-] {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
.row.margin-row {
  margin-bottom: -2rem !important;
}
.row.margin-row > .col, .row.margin-row > [class*=col-] {
  margin-bottom: 2rem !important;
}
.row.grid-project {
  margin-bottom: -10px !important;
  margin-right: -5px !important;
  margin-left: -5px !important;
}
.row.grid-project > .col, .row.grid-project > [class*=col-] {
  margin-bottom: 10px !important;
  padding-right: 5px;
  padding-left: 5px;
}
.row.row-coltext {
  height: 100%;
}
.row.row-coltext .col {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/**end grid setting*/
/**page**/
.custom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid black;
}
@media screen and (max-width: 991px) {
  .custom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .custom-grid .item:nth-child(2n) {
    border-right: none;
  }
}
.section-crop {
  overflow: hidden;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  /*background: linear-gradient(180deg, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, 0) 100%);*/
}
#crop {
  width: 0;
  height: 0;
  overflow: hidden;
  position: relative;
}
.cropimage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--black-color);
  border-right: 1px solid var(--black-color);
  height: 50vh;
  min-height: 450px;
  padding: 2rem 15px 1rem 15px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.custom-grid .item:nth-child(4n) {
  border-right: none;
}
.item img {
  max-width: 90%;
  max-height: 80%;
  position: relative;
  z-index: 2;
}
.item-text {
  margin-top: 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
.item-text span {
  display: block;
  margin-top: 10px;
}
.item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background-color: var(--cyan-color);
  z-index: 1;
  transition: height 0.5s ease, bottom 0.5s ease;
}
@media screen and (min-width: 992px) {
  .item:hover::after {
    height: 100%;
    bottom: 0;
  }
}
.img-wine {
  width: 100%;
  height: 80vh;
  height: 80svh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-wine img {
  max-width: 80%;
  max-height: 80%;
}
.menu-wine-container {
  position: fixed;
  z-index: 7777;
  bottom: var(--medium-space);
  width: 100%;
  display: flex;
  justify-content: center;
}
ul.menu-wine {
  display: flex;
  justify-content: center;
  width: auto;
  border: 1px solid var(--black-color);
  background-color: var(--white-color);
}
ul.menu-wine li {
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.075rem;
  display: block;
  border-right: 1px solid var(--black-color);
  transition: all 0.3s;
}
ul.menu-wine li:last-of-type {
  border-right: none;
}
ul.menu-wine li:hover {
  background-color: var(--black-color);
}
ul.menu-wine li a {
  min-height: 55px;
  padding: 0.5rem 1.5rem;
  padding-top: var(--regular-space);
  padding-bottom: var(--regular-space);
  display: block;
  color: var(--black-color);
  position: relative;
  transition: all 0.3s;
}
ul.menu-wine li:hover a {
  color: var(--white-color);
}
ul.menu-wine li.active {
  background-color: var(--black-color);
}
ul.menu-wine li.active a {
  color: var(--white-color);
}
/*big button effect*/
.big-button-effect {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.big-button-effect a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: .3;
  transition: all .3s;
}
.big-button-effect a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: #DBD3C9;
  background-color: var(--cyan-color);
  opacity: 0;
  z-index: -1;
  transition: all .3s;
}
.big-button-effect img {
  width: 300px;
  height: 300px;
  position: absolute;
  object-fit: contain;
  z-index: 5;
  pointer-events: none;
}
.big-button-effect .medias img {
  width: 1px;
  height: 1px;
  top: 0;
  left: 0;
  position: absolute;
  visibility: hidden;
  pointer-events: none;
}
@media screen and (min-width: 992px) {
  .big-button-effect a:hover {
    opacity: 1;
  }
  .big-button-effect a:hover::after {
    opacity: 1;
  }
}
/*accordion*/
.accordion {
  margin-bottom: 0;
  border-top: 1px solid var(--black-color);
}
.accordion:last-of-type {
  border-bottom: 1px solid var(--black-color);
}
.accordion-intro {
  cursor: pointer;
  padding: 20px 0;
  padding-right: 30px;
  transition: background 0.3s;
  background: rgba(0, 0, 0, 0);
  display: block;
  position: relative;
  opacity: .3;
  transition: opacity 0.6s;
}
@media screen and (min-width: 992px) {
  .accordion-intro:hover {
    opacity: 1;
  }
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  will-change: max-height;
  transition: all 0.25s ease-out;
  opacity: 0;
  padding-left: 0;
  padding-right: 0;
  background: rgba(0, 0, 0, 0);
}
.accordion-first-active .accordion-content {
  max-height: unset;
}
.accordion-active .accordion-intro {
  opacity: 1;
}
.accordion-active .accordion-content {
  opacity: 1;
  padding-top: 20px;
  padding-bottom: 40px !important;
}
/*rollerfoam*/
.container-rotate {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  position: relative;
}
.container-rotate::after, .container-rotate::before {
  content: "";
  display: block;
  width: 100%;
  height: 35%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--black-color);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 1) 100%);
  pointer-events: none;
  z-index: 2;
}
.container-rotate::before {
  top: auto;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 1) 100%);
}
.wheel {
  position: relative;
  width: 100%;
  height: 100vh;
  transform-style: preserve-3d;
  transform-origin: 50% 50%;
  z-index: 1;
}
.elWheel {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translate(0, -50%);
  backface-visibility: hidden;
  color: var(--white-color);
  font-family: "PPRightGrotesk-TightMedium";
  font-style: normal;
  font-size: clamp(2rem, 4vw, 6vw);
  text-transform: uppercase;
  text-align: center;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: opacity 0.3s;
}
.elWheel a {
  display: block;
  text-align: center;
  text-transform: uppercase;
  color: var(--white-color);
  font-family: "PPRightGrotesk-TightMedium";
  font-style: normal;
  font-size: clamp(2rem, 7vw, 8vw);
  text-transform: uppercase;
  line-height: .8;
  opacity: .2;
  transition: opacity 0.5s;
}
.elWheel a:hover {
  opacity: 1;
}
/*random gallery homepage*/
.section-galleryscroll {
  width: 100%;
  overflow: hidden;
  height: 100vh;
}
.section-galleryscroll .scroll {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 30ch;
}
.section-galleryscroll .container {
  height: 100%;
  white-space: nowrap;
  width: max-content;
  padding: 0 110vw;
  will-change: transform;
  display: flex;
  align-items: center;
}
.section-galleryscroll .medias {
  position: relative;
  height: auto;
  gap: 3vw;
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  align-items: center;
}
.section-galleryscroll .media {
  width: 15vw;
  height: 15vw;
  will-change: transform;
  position: relative;
  object-fit: contain;
}
@media (max-width: 768px) {
  .section-galleryscroll .medias {
    grid-template-rows: repeat(3, auto);
    gap: 5vw;
  }
  .section-galleryscroll .media {
    width: 50vw;
    height: 50vw;
  }
  .section-galleryscroll .container {
    padding: 0 110vw;
  }
}
/*scrollbar*/ ::-webkit-scrollbar {
  width: 8px;
  background: var(--black-color);
}
::-webkit-scrollbar-track {
  box-shadow: none;
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 0;
}
/*end scrollbar*/
/*selection*/ ::-moz-selection {
  color: white;
  background: black;
}
::selection {
  color: white;
  background: black;
}
/*end selection*/
@media screen and (max-width: 1920px) {
  :root {}
  html, body {
    font-size: 18px;
  }
}
@media screen and (max-width: 1450px) {
  :root {
    --header-height: 110px;
    --logo-width: 200px;
  }
  html, body {
    font-size: 18px;
  }
}
@media screen and (max-width: 1199px) {
  :root {
    --header-height: 100px;
    --logo-width: 180px;
  }
  html, body {
    font-size: 16px;
  }
  .hide-lg {
    display: none !important;
  }
  .align-center-lg {
    text-align: center !important;
  }
  .align-left-lg {
    text-align: left !important;
  }
  .m-top-lg-m {
    margin-top: var(--medium-space) !important;
  }
}
@media screen and (max-width: 991px) {
  :root {
    --header-height: 90px;
    --logo-width: 180px;
  }
  html, body {
    font-size: 16px;
  }
  .hide-md {
    display: none !important;
  }
  .hide-desktop {
    display: block !important;
  }
  .align-center-md {
    text-align: center !important;
  }
  .align-left-md {
    text-align: left !important;
  }
  .m-top-lg-m, .m-top-md-m {
    margin-top: var(--medium-space) !important;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --header-height: 80px;
    --logo-width: 160px;
  }
  html, body {
    font-size: 16px;
  }
  .hide-sm {
    display: none !important;
  }
  .align-center-sm {
    text-align: center !important;
  }
  .align-left-sm {
    text-align: left !important;
  }
  .m-top-lg-m, .m-top-md-m, .m-top-sm-m {
    margin-top: var(--medium-space) !important;
  }
  footer .m-top-sm-m {
    margin-top: var(--regular-space) !important;
  }
}
@media screen and (max-width: 575px) {
  :root {
    --logo-width: 120px;
  }
  html, body {
    font-size: 16px;
  }
  .hide-xs {
    display: none !important;
  }
  .align-center-xs {
    text-align: center !important;
  }
  .align-left-xs {
    text-align: left !important;
  }
  .m-top-lg-m, .m-top-md-m, .m-top-sm-m, .m-top-xs-m {
    margin-top: var(--medium-space) !important;
  }
  footer .m-top-sm-m {
    margin-top: var(--regular-space) !important;
  }
  footer .m-top-xs-m {
    margin-top: var(--regular-space) !important;
  }
}