/** @format */

:root {
  --white: white;
  --black: black;
  --base: #333;
  --gold: #ffd541;
  --gray: #b6b6b6;
  --gray-on-black: #858585;
  --soil: #f6eed9;
  --red: #c20000;
  --font-serif: Cinzel, serif;
  --font-serif-jp: Noto Serif JP, sans-serif;
  --color-brand: #d28349;
  --color-primary: #f4e3ca;
  --color-outline: #b3a380;
  --transition: 0.4s;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: var(--base);
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

h1 {
  font-size: 38px;
  line-height: 44px;
}

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

.h2 {
  font-size: 30px;
  margin-bottom: 0.8em;
}

h2:not(:first-child),
.h2:not(:first-child) {
  margin-top: 3rem;
}

h3 {
  font-size: 24px;
  line-height: 30px;
}

.h3 {
  font-size: 20px;
  margin-bottom: 1rem;
}

h3:not(:first-child),
.h3:not(:first-child) {
  margin-top: 2rem;
}

h4 {
  font-size: 18px;
  line-height: 24px;
}

h5 {
  font-size: 14px;
  line-height: 20px;
}

h6 {
  font-size: 12px;
  line-height: 18px;
}

p {
  margin-bottom: 10px;
}

a {
  color: #d7b56e;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.list {
  padding-left: 20px;
}

.list > li {
  margin-bottom: 10px;
}

.text-align-right {
  text-align: right;
}

.section {
  margin-top: 40px;
  margin-bottom: 40px;
}

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

blockquote {
  border-left: 5px solid #d7b56e;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 22px;
}

.font-serif-jp {
  font-family: var(--font-serif-jp);
  font-weight: 400;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.my-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.hero {
  perspective: 1000px;
  background-color: #000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.nav-menu {
  color: #e1c893;
  background-color: #000;
  background-image: linear-gradient(#000000e6, #000000e6), url("../images/calice.jpg");
  background-position:
    0 0,
    50%;
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 0;
  display: block;
}

.navbar-layout-3 {
  background-color: #004d91e6;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.navbar-layout-3.search {
  z-index: 88888888;
  opacity: 0.97;
  background-color: #000000f2;
  border-bottom: 0 #f0f0f0;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  height: 60px;
  padding: 0 100px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.image {
  opacity: 1;
}

.simple-menu-button-lt-2 {
  float: none;
  background-color: #0000;
  width: 50px;
  height: 60px;
  padding: 0;
  overflow: hidden;
}

.simple-menu-button-lt-2.w--open {
  background-color: #0000;
  width: 50px;
}

.menu-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  padding: 45px;
  display: flex;
}

.typography-container {
  border: 1px solid #e1c893;
  border-left-color: #d7b56e;
  width: 60%;
  height: auto;
  padding: 40px;
}

.menu-head {
  text-align: left;
  margin-top: 0;
  margin-bottom: 10px;
}

.menu-section-container {
  border-left: 1px solid #e1c893;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 150px;
  padding-left: 20px;
  display: flex;
}

.menu-links {
  color: #c5c5c5;
  margin-bottom: 15px;
}

.menu-paragraph {
  color: #c5c5c5;
  text-align: left;
  max-width: 300px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 20px;
}

.first-section-wrapper {
  justify-content: center;
  align-items: center;
  width: 80%;
  height: auto;
  display: flex;
}

.second-section-wrapper {
  justify-content: center;
  align-items: center;
  width: 80%;
  height: auto;
  margin-top: 100px;
  display: flex;
}

.footer-head-white {
  color: #333;
  padding-top: 4px;
  padding-bottom: 8px;
  font-family: var(--font-serif);
  font-size: 18px;
}

.link-2 {
  font-size: 10px;
}

.typography-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 142px;
  padding-bottom: 142px;
  display: flex;
}

.icons-wrapper-layout-1-hero {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  padding-left: 0;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.menu-button-layout-1 {
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-right: 0;
  padding: 20px;
  display: flex;
}

.menu-button-layout-1:hover {
  opacity: 1;
  background-color: #d7b56e12;
}

.menu-hero-bottom-text {
  color: #c5c5c5;
  margin-top: 10px;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 300;
}

.main-paragraph {
  color: #686868;
  text-align: left;
  max-width: 800px;
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
}

.left-side-wine-section {
  z-index: 1;
  background-color: #fff;
  border-top: 0 #e9e9e9;
  border-bottom: 0 #e9e9e9;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 70vh;
  padding: 100px;
  display: flex;
  position: relative;
  left: 80px;
  right: 0;
  box-shadow: 1px 1px 26px #0000000d;
}

.wine-section-text-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 50vh;
  display: flex;
}

.main-head {
  color: #333;
  margin-bottom: 0;
  font-size: 32px;
  line-height: 40px;
}

.main-head.yellow {
  color: #d7b56e;
}

.sub-hero {
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 1000px;
  display: flex;
  overflow: hidden;
}

.sub-hero-text-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  display: flex;
}

.horizontal-line {
  background-color: #d7b56e;
  width: 1000px;
  height: 2px;
  position: relative;
  top: -225px;
  left: -1347px;
}

.vertical-line {
  z-index: 0;
  background-color: #d7b56e;
  width: 2px;
  height: 700px;
  position: relative;
  top: -723px;
  left: 700px;
}

.form-wrapper {
  border-right: 1px solid #979797;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  height: 100%;
  display: flex;
}

.form-block {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.contact-text-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  padding-left: 0;
  padding-right: 200px;
  display: flex;
}

.logo-wrapper {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.submit-button {
  color: #d7b56e;
  background-color: #0000;
  margin-top: 60px;
  padding-left: 0;
  font-family: var(--font-serif);
  font-weight: 700;
}

.contacts-container {
  background-color: #000;
  background-image: linear-gradient(#000000ad, #000000ad), url("../images/botti.jpg");
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding-top: 200px;
  padding-bottom: 200px;
  display: flex;
}

.facebook {
  background-color: #d7b56e;
  background-image: url("../images/facebook-logo.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 15px;
  background-attachment: scroll;
  width: 30px;
  height: 30px;
  margin-right: 0;
  transition: transform 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.facebook:hover {
  background-color: #d7b56e;
  transform: scale(1.06);
  box-shadow: 1px 1px 3px #00000042;
}

.contact-social-wrapper {
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: 50px;
  margin-bottom: 0;
  margin-right: 0;
  padding-right: 0;
  display: flex;
  position: static;
  bottom: 0;
  right: 0;
}

.right-side-wine-section {
  z-index: 0;
  background-image: url("../images/bottiglie.jpg");
  background-position: 50% 42%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50%;
  height: 60vh;
  position: relative;
}

.blog-masonry-wrapper {
  flex-flow: wrap;
  flex: 1;
  width: 85%;
  margin-left: 0;
  margin-right: 0;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.blog-collection-list-wrapper {
  flex: 0 auto;
  width: 50%;
}

.blog-post-collection-item {
  cursor: pointer;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.post-card-wrapper {
  opacity: 1;
  cursor: pointer;
  background-image: url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border: 0 #000;
  border-radius: 0;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 400px;
  padding: 0;
  display: block;
}

.hamburger-wrapper {
  flex: 0 auto;
  display: flex;
}

.menu-logo-wrapper {
  flex: 1;
}

.blog-post-hover-wrapper {
  background-color: #000;
  border: 1px solid #d7b56e;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.wine-catalogue-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: block;
}

.product-section-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: block;
}

.product-section {
  border-bottom: 1px solid #dedede;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.product-section-left {
  background-color: #fff;
  border-bottom: 1px solid #ececec;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100vh;
  transition: all 2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  display: flex;
}

.product-section-right {
  background-color: #f6f6f6;
  border-bottom: 1px solid #ececec;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100vh;
  padding: 40px 60px;
  transition: all 2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  display: flex;
}

.info-value {
  max-width: 700px;
  margin-bottom: 0;
  margin-left: 53px;
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 22px;
}

.info-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 25px;
  display: flex;
}

.info-label {
  margin-left: 10px;
  margin-right: 0;
  font-family: var(--font-serif);
  font-size: 18px;
}

.product-info-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 90%;
  height: 75%;
  display: flex;
  overflow: auto;
}

.button-wrapper {
  justify-content: flex-start;
  align-items: center;
  width: 90%;
  height: 50px;
  margin-top: 20px;
  display: flex;
  position: static;
}

.menu-button-layout-2 {
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-right: 0;
  padding: 20px;
  display: flex;
}

.menu-button-layout-2:hover {
  opacity: 1;
  background-color: #d7b56e12;
}

.menu-button-3 {
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-right: 0;
  padding: 20px;
  display: flex;
}

.menu-button-3:hover {
  opacity: 1;
  background-color: #d7b56e12;
}

.wine-overview-section {
  z-index: 1;
  background-color: #fafafa;
  border-top: 0 #ececec;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 80vh;
  display: flex;
  position: relative;
}

.footer-image {
  background-image: linear-gradient(#fff 27%, #0000), url("../images/vigneto.jpg");
  background-position:
    0 0,
    50%;
  background-repeat: repeat, repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 350px;
  display: flex;
}

.wine-parallax-section {
  color: #fff;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  display: flex;
  overflow: hidden;
}

.confutatio-wine {
  z-index: 1;
  position: relative;
  inset: 264px 0 342px 227px;
}

.sanctus-wine {
  z-index: 1;
  position: relative;
  top: 178px;
  left: -262px;
}

.confutatis-description-wrapper {
  z-index: 1;
  position: relative;
  top: -101px;
  left: -250px;
}

.sanctus-description-wrapper {
  z-index: 1;
  position: relative;
  top: 612px;
  left: 208px;
}

.communio-description-wrapper {
  z-index: 1;
  position: relative;
  top: -666px;
  left: -250px;
}

.dealer-section {
  background-color: #fcfcfc;
  border-top: 0 #eee;
  border-bottom: 0 #eee;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  overflow: hidden;
}

.dealer-wrapper {
  background-color: #fff;
  flex-direction: row;
  width: 80%;
  max-width: 1600px;
  height: 700px;
  display: flex;
  box-shadow: 1px 1px 24px #a6a6a63b;
}

.dealer-left-side {
  background-color: #f6f6f6;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  padding: 40px 80px;
  display: flex;
}

.icons-wrapper {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100px;
  margin-top: 40px;
  display: flex;
}

.box {
  border: 1px #f1f1f1;
  border-right-width: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  padding: 5px;
  display: flex;
}

.text-box {
  margin-top: 10px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
}

.horizontal-line-wine-top {
  background-color: #d7b56e;
  width: 1000px;
  height: 2px;
  position: relative;
  top: 217px;
  left: -1347px;
}

.vertical-line-wine-section {
  z-index: 0;
  background-color: #d7b56e;
  width: 2px;
  height: 700px;
  position: relative;
  top: -723px;
  left: 700px;
}

.wine-layout-3 {
  z-index: 1;
  position: relative;
  inset: -121px 0 342px 227px;
}

.horizontal-line-wine-bottom {
  background-color: #d7b56e;
  width: 1000px;
  height: 2px;
  position: relative;
  top: 2345px;
  left: -1550px;
}

.link-14 {
  text-align: center;
}

.background-layout-1 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.opacity {
  background-color: #000000f0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: static;
}

.paragraph-sub-header {
  color: #686868;
  text-align: center;
  font-size: 22px;
  font-weight: 300;
  line-height: 36px;
  position: static;
  top: 50px;
}

.dealer-image {
  background-color: #fff;
  background-image: url("../images/logo.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 550px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  padding: 40px 80px;
  display: flex;
}

.samnio-logo-layout-1 {
  margin-bottom: 25px;
}

.events-section {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 100px 100px 50px;
  display: flex;
}

.row {
  perspective: 1000px;
}

.relative-features-content {
  z-index: 10;
  position: relative;
}

.slide-with-padding {
  padding-bottom: 20px;
}

.events-slider {
  background-color: #0000;
  height: auto;
}

.left-arrow {
  display: none;
}

.features-title-layout-3 {
  color: #d7b56e;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 70px;
  font-weight: 300;
  line-height: 80px;
}

.slide-navigation {
  opacity: 0.5;
  text-align: left;
  padding-top: 25px;
  padding-left: 10px;
  font-size: 10px;
  position: relative;
}

.slide-navigation.center {
  text-align: center;
  padding-top: 0;
}

.menu-link-layout-1:hover,
.menu-link-layout-3:hover {
  text-decoration: none;
}

.about-hero-wrapper-lt-1 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  max-width: 1100px;
  display: flex;
}

.img {
  margin-bottom: 100px;
}

.picture {
  margin-bottom: 99px;
  padding-left: 0;
}

.samnio-logo-text {
  color: #fff;
  text-transform: none;
  margin-top: 5px;
  margin-left: 8px;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 100;
}

.samnio-logo-text:hover {
  text-transform: none;
  text-decoration: none;
}

.hero-layout-2 {
  background-color: #000;
  background-image: linear-gradient(#000000b3, #000000b3), url("../images/tappi.jpg");
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.sub-header-layout-2 {
  background-color: #000;
  background-image: linear-gradient(#000000db, #000000db), url("../images/europa_1.svg");
  background-position:
    0 0,
    50% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.body-layout-2 {
  background-color: #000;
}

.tab-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70%;
  display: flex;
}

.left-block-layout-2 {
  background-color: #060606;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  display: flex;
}

.block {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  display: flex;
}

.heading {
  color: #fff;
  font-size: 35px;
  line-height: 40px;
}

.text-paragraph {
  color: #fff;
}

.icons-wrapper-layout-2 {
  justify-content: flex-start;
  align-items: center;
  width: 60%;
  height: 100px;
  margin-top: 40px;
  display: flex;
}

.icon-text {
  color: #fff;
  text-align: center;
  margin-top: 10px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
}

.footer-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-col {
  flex: 1;
  padding: 20px 15px;
}

.footer-title {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid #ffffff14;
  margin-top: 0;
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-family: var(--font-serif);
  font-size: 14px;
}

.footer-logo-wrapper {
  background-color: #030303;
  border-top: 1px #0c0c0c;
  margin-bottom: 40px;
  padding: 20px 12px;
}

.footer-logo-link {
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.footer-logo-link:active {
  text-decoration: none;
}

.single-wine-section {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.single-wine-section-reverse {
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.footer-black {
  background-color: #000;
  padding: 0 0 40px;
}

.recent-posts {
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 150px;
  padding-bottom: 150px;
  display: flex;
  overflow: hidden;
}

.centered-icons-wrapper {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  margin-top: 40px;
  display: flex;
}

.single-product-text-section {
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.product-wrapper {
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.heading-sub {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 50px;
  font-weight: 200;
  line-height: 80px;
  display: block;
}

.utility-page-wrap {
  background-color: #000;
  background-image: linear-gradient(#000000b3, #000000b3), url("../images/tappi.jpg");
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.main-hero-head {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 50px;
  font-weight: 200;
  line-height: 80px;
  display: block;
}

.menu-button-layout-4 {
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-right: 0;
  padding: 20px;
  display: flex;
}

.menu-button-layout-4:hover {
  opacity: 1;
  background-color: #d7b56e12;
}

.slide {
  background-image: url("../images/vigneto.jpg");
  background-position: 50%;
  background-size: cover;
}

.slide-2 {
  background-image: url("../images/botti.jpg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.slide-3 {
  background-image: url("../images/acini.jpg");
  background-position: 50%;
  background-size: cover;
}

.opacity-layout-3 {
  background-color: #000000d9;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.banner-layout-3 {
  background-color: #000;
  background-image: linear-gradient(#000000db, #000000db), url("../images/mockup-3.png");
  background-position:
    0 0,
    50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, 399px;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.table-row {
  border-bottom: 1px solid #eaeaea;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  display: flex;
}

.table-cell {
  border-right: 1px solid #eaeaea;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 33.33%;
  height: 100%;
  padding-left: 30px;
  display: flex;
}

.last-row {
  border-bottom: 1px #d7b56e;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  display: flex;
}

.table-right-cell {
  border-right: 1px #d7b56e;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 33.33%;
  height: 100%;
  padding-left: 30px;
  display: flex;
}

.table-icons {
  width: 50px;
}

.table-wrapper {
  background-color: #fff0;
  border-radius: 10px;
  width: 80%;
  max-width: 1200px;
  height: auto;
}

.div-section {
  border: 1px #000;
  border-bottom-color: #ededed;
  justify-content: center;
  align-items: center;
  width: 80%;
  max-width: 1200px;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.confutatio-card {
  color: #fff;
  background-color: #000;
  background-image: url("../images/Bottle-Mockup.png");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 150px;
  border: 0 #efefef;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  height: 100%;
  margin: 10px;
  display: flex;
  box-shadow: 1px 1px 13px #0000001a;
}

.lacrimosa-card {
  color: #fff;
  background-color: #000;
  background-image: url("../images/mockup-2.png");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 150px;
  border: 0 #efefef;
  border-radius: 5px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  height: 100%;
  margin: 10px;
  display: flex;
  box-shadow: 1px 1px 13px #0000001a;
}

.dies-irae-card {
  color: #fff;
  background-color: #000;
  background-image: url("../images/mockup-3.png");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 150px;
  border: 0 #efefef;
  border-radius: 5px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  height: 100%;
  margin: 10px;
  display: flex;
  box-shadow: 1px 1px 13px #0000001a;
}

.sanctus-card {
  color: #fff;
  background-color: #000;
  background-image: url("../images/mockup-4.png");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 150px;
  border: 0 #efefef;
  border-radius: 5px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  height: 100%;
  margin: 10px;
  display: flex;
  box-shadow: 1px 1px 13px #0000001a;
}

.three-card-wrapper {
  border: 1px #000;
  border-bottom-color: #ededed;
  justify-content: center;
  align-items: center;
  width: 80%;
  max-width: 1200px;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.events-section-white {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 100px 100px 50px;
  display: flex;
}

.arrow-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 45px;
  display: flex;
}

.hero-home-layout-4 {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 199px;
  padding-bottom: 199px;
  display: flex;
}

.hero-wrapper-layout-4 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70%;
  height: auto;
  display: flex;
}

.text-wrapper-layout-4 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60%;
  display: flex;
}

.tab-home-layout-4 {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
}

.table-texts {
  color: #333;
  margin-left: 8px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
}

.parallax-section {
  opacity: 1;
  background-image: linear-gradient(#000000a8, #000000a8), url("../images/calice.jpg");
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 200px;
  padding-bottom: 200px;
  display: flex;
}

.video-section-layout-4 {
  border-top: 0 #ececec;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70vh;
  display: flex;
}

.tab-section {
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.div {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 700px;
  display: flex;
}

.right-block-tabs {
  background-color: #060606;
  background-image: url("../images/mockup-2.png");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  border-left: 1px #090909;
  width: 50%;
  height: 100%;
}

.tabs-menu-layout-2 {
  text-align: center;
}

.tab-content {
  border: 1px solid #141414;
}

.right-block-tabs-lt-3 {
  background-color: #060606;
  background-image: url("../images/mockup-4.png");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  border-left: 1px #090909;
  width: 50%;
  height: 100%;
}

.right-block-tabs-lt-2 {
  background-color: #060606;
  background-image: url("../images/mockup-3.png");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  border-left: 1px #090909;
  width: 50%;
  height: 100%;
}

.layout-cards-1-2 {
  background-color: #000;
  background-image: linear-gradient(#000000fa, #000000fa), url("../images/logo.svg");
  background-position:
    0 0,
    50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, 700px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.layout-cards-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70%;
  height: 80vh;
  display: flex;
}

.lyout-cards-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
  display: flex;
}

.right-card-layout-2 {
  background-color: #d7b56e0f;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 20px 20px 20px 0;
  padding: 25px;
  display: flex;
}

.head-layout {
  color: #fff;
}

.intro-hero {
  background-color: #000;
  background-image: linear-gradient(#000000b3, #000000b3), url("../images/botti.jpg");
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.welcome-head {
  color: #fff;
  letter-spacing: 0.5rem;
  border-radius: 0;
  font-family:
    Palatino Linotype,
    Book Antiqua,
    Palatino,
    serif;
}

.intro-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-paragraph {
  color: #fff;
  letter-spacing: 0.1rem;
  font-family:
    PT Serif,
    serif;
}

.layout-preview-wrapper {
  border-radius: 5px;
  width: 70%;
  height: 600px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s;
  display: block;
  position: relative;
  overflow: scroll;
  box-shadow: 0 10px 12px -7px #000;
}

.image-full-layout {
  width: 100%;
}

.preview-text {
  font-family: Poppins, sans-serif;
  font-size: 18px;
}

.contact-head-layout-4 {
  background-color: #000;
  background-image: linear-gradient(#0000003d, #0000003d), url("../images/img-kura.jpg");
  background-position:
    0 0,
    50% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.team-hero {
  background-color: #171433;
  background-image: linear-gradient(to top, #000, #030303ba), url("../images/grappolo.jpg");
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  justify-content: center;
  align-items: center;
  height: 70vh;
  padding-top: 200px;
  padding-bottom: 200px;
  display: flex;
}

.team-text-wrapper {
  text-align: center;
}

.paragraph {
  color: #a5a5a5;
  font-size: 22px;
  font-weight: 200;
  line-height: 30px;
}

.paragraph.cards {
  color: #c7c7c7;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 14px;
}

.user-heading {
  color: #d7b56e;
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 19px;
  font-weight: 400;
}

.user-heading.white {
  color: #d7b56e;
}

.user-wrapper {
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.top-margin {
  margin-top: 30px;
}

.top-margin.big-section {
  margin-top: 120px;
}

.team-member-card {
  background-color: #6540fb;
  border-radius: 5px;
  width: 100%;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 25px -7px #0000001a;
}

.team-member-card._5 {
  background-color: #34a853;
}

.team-member-card._5.with-margin {
  background-color: #080808;
  border: 0 #484848;
  height: 300px;
  margin-bottom: 20px;
}

.team-member-card._4 {
  background-color: #ff1053;
}

.team-member-card._4.with-margin {
  background-color: #080808;
  border: 0 #484848;
  height: 300px;
  margin-bottom: 20px;
}

.team-member-card._2 {
  background-color: #2ac4ea;
}

.team-member-card._2.with-margin {
  background-color: #080808;
  border: 0 #484848;
  height: 300px;
  margin-bottom: 20px;
}

.team-member-card._6 {
  background-color: #3452ff;
}

.team-member-card._6.with-margin {
  background-color: #080808;
  border: 0 #484848;
  height: 300px;
  margin-bottom: 20px;
}

.team-member-card._3 {
  background-color: #fbbc05;
}

.team-member-card._3.with-margin {
  background-color: #080808;
  border: 0 #484848;
  height: 300px;
  margin-bottom: 20px;
}

.team-member-card._7 {
  background-color: #080808;
  border: 0 #484848;
  height: 300px;
}

.team-member-card.black {
  background-color: #fff;
}

.team-member-card.black.with-margin {
  background-color: #080808;
  border: 0 #484848;
  height: 300px;
  margin-bottom: 20px;
}

.team-member-card._9,
.team-member-card._8 {
  background-color: #080808;
  border: 0 #484848;
  height: 300px;
}

.user-photo {
  background-image: url("../images/9-Arthur-Songesand.png");
  background-position: 50%;
  background-size: cover;
  border-radius: 100%;
  width: 80px;
  height: 80px;
  margin-right: 15px;
}

.user-photo.photo-6 {
  background-image: url("../images/5-Jeff-Williamson.png");
  background-position: 50%;
  background-size: cover;
}

.user-photo.ui {
  background-image: url("../images/6-Judith-Ann-Rød.png");
}

.user-photo.photo-2 {
  background-image: url("../images/3-Thorbjørn-Mesterfem.png");
  background-position: 50%;
  background-size: cover;
}

.user-photo.photo-2.graphic {
  background-image: url("../images/7-Maria-Kvist.png");
}

.user-photo.photo-3 {
  background-image: url("../images/2-Astrid-bendtner.png");
  background-position: 50%;
  background-size: cover;
}

.user-photo.photo-3.ux {
  background-image: url("../images/1-Mathilde-Baker.png");
}

.user-photo.photo-5 {
  background-image: url("../images/4-Alicia-Mortensrud.png");
  background-position: 50%;
  background-size: cover;
}

.user-photo.photo-4 {
  background-image: url("../images/8-Agatha-Kastrup.png");
}

.container-fluid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.menu-link-layout-4:hover {
  text-decoration: none;
}

.par {
  color: #fff;
  text-align: center;
  background-color: #0000;
}

.copyright-link {
  color: #919197;
  margin-top: 30px;
  text-decoration: underline;
  display: inline-block;
}

.copyright-link.w--current {
  color: #919197;
  text-decoration: underline;
  display: inline-block;
}

.image-licens {
  width: 94px;
  margin: 12px 10px;
}

.div-block {
  background-color: #000;
  padding: 10px;
}

.head {
  text-align: left;
}

.yellow-link {
  margin-top: 50px;
}

.left-card-layout-1 {
  background-color: #d7b56e0f;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 20px 20px 20px 0;
  padding: 25px;
  display: flex;
}

.parallax-text-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-section-parallax {
  background-image: linear-gradient(#000000ed, #000000ed), url("../images/italia-.svg");
  background-position:
    0 0,
    50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, 900px;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.textparagraph {
  color: #fff;
  text-align: center;
}

.privacy-policy-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 142px;
  padding-bottom: 142px;
  display: flex;
}

.privacy-wrapper {
  border: 1px solid #e1c893;
  border-left-color: #d7b56e;
  width: 60%;
  height: auto;
  padding: 40px;
}

.imegae-sites-section {
  background-color: #fff;
  padding: 120px 15px;
}

.hero-licensing {
  background-image: linear-gradient(#000, #000);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 60vh;
  display: flex;
}

.team-cards {
  background-color: #000;
  padding: 120px 15px;
}

.error-message {
  color: #fff;
  background-color: #f44;
  border-radius: 4px;
  padding: 19px;
  font-family: Poppins, sans-serif;
}

.down-arrow {
  color: #d7b56e;
  margin-top: 30px;
  font-size: 25px;
  line-height: 30px;
}

.body-layout-3 {
  background-color: #000;
}

.search-button {
  display: none;
}

.search-input {
  background-color: #0000;
  border-radius: 5px;
  height: 60px;
  font-family: Poppins, sans-serif;
}

._404-section {
  background-color: var(--white);
  background-image: linear-gradient(#ffffffe0, #ffffffe0), url("../images/img_main.jpg");
  background-position:
    0 0,
    100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, contain;
  background-attachment: scroll, scroll;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.arrow {
  color: #d7b56e;
  font-size: 25px;
  line-height: 30px;
}

.preview-link {
  transition: color 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.preview-link:hover {
  color: #d1b06b91;
  text-decoration: none;
}

.left-card-layout-3,
.right-card-layout-4 {
  background-color: #d7b56e0f;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 20px 20px 20px 0;
  padding: 25px;
  display: flex;
}

.footer-logo-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.layout-cards-3-4 {
  background-color: #000;
  background-image: linear-gradient(#000000fa, #000000fa), url("../images/logo.svg");
  background-position:
    0 0,
    50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, 700px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.confutatis-parallax-paragraph,
.sanctus-parallax-paragraph,
.communio-parallax-paragraph {
  color: #686868;
  max-width: 400px;
  font-size: 20px;
  font-weight: 300;
  position: static;
  top: -95px;
  left: -90px;
}

.main-head-white {
  color: #dadada;
  text-align: center;
  font-size: 32px;
  line-height: 40px;
}

.main-head-white.align-left {
  text-align: left;
}

.main-paragraph-white {
  color: #dadada;
  text-align: center;
  width: 900px;
  font-size: 20px;
  line-height: 32px;
}

.image-parallax-section {
  opacity: 1;
  background-image: linear-gradient(#000000a8, #000000a8), url("../images/grappoli-bianchi.jpg");
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70vh;
  display: flex;
}

.events-card-wrapper {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  margin-left: 0;
  margin-right: 0;
  padding: 70px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.events-card-wrapper:hover {
  box-shadow: 0 15px 25px -7px #0000001a;
}

.events-slide-navigation {
  opacity: 0.5;
  text-align: left;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-left: 0;
  font-size: 10px;
  display: flex;
  position: relative;
}

.events-date {
  z-index: 10;
  position: relative;
}

.events-month {
  color: #333;
  text-align: center;
  font-weight: 300;
}

.events-paragraph {
  color: #686868;
  text-align: center;
  font-weight: 300;
}

.event-day {
  color: #d7b56e;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 70px;
  font-weight: 300;
  line-height: 80px;
}

.blog-post-head {
  color: #ccc;
  text-align: center;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 34px;
}

.blog-post-date {
  color: #b1b1b1;
  text-align: center;
  margin-bottom: 20px;
}

.blog-post-link {
  text-align: center;
  letter-spacing: 0.3px;
  text-transform: none;
  margin-top: 0;
  font-size: 18px;
}

.blog-post-card {
  opacity: 1;
  cursor: pointer;
  background-image: url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border: 0 #000;
  border-radius: 0;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 400px;
  padding: 0;
  display: block;
}

.posts-wrapper-1-2 {
  width: 100%;
}

.wrapper-post-04 {
  width: 75%;
}

.wrapper-post-05 {
  width: 25%;
}

.blog-empty-state {
  color: #fff;
  background-color: #131313;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-family: Poppins, sans-serif;
  display: flex;
}

.dealer-icon-wrapper {
  border: 1px #f1f1f1;
  border-right-width: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  padding: 5px;
  display: flex;
}

.head-about-page {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 50px;
  font-weight: 200;
  line-height: 80px;
  display: block;
}

.image-wrapper-about-page {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.hero---about-us-layout-1 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.subheader-section {
  background-image: linear-gradient(#000000ed, #000000ed), url("../images/italia-.svg");
  background-position:
    0 0,
    50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, 900px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 80px 0;
  display: flex;
}

.form-block-left-side {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.name-field {
  color: #fff;
  background-color: #0000;
  border-top: 1px solid #0000;
  border-left: 1px #000;
  border-right: 1px solid #0000;
  margin-bottom: 20px;
  padding: 30px 0;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 200;
}

.name-field:focus {
  border-top-width: 0;
  border-left-width: 0;
  border-right-width: 0;
}

.email-field {
  background-color: #0000;
  border-top: 0 solid #000;
  border-left: 0 solid #000;
  border-right: 0 solid #000;
  margin-bottom: 35px;
  padding: 30px 0;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 200;
}

.message-field {
  background-color: #0000;
  border-top-style: none;
  border-top-color: #000;
  border-left: 0 solid #000;
  border-right: 0 solid #000;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 200;
}

.successfully-sent-message {
  color: #d7b56e;
  background-color: #0e0e0e;
  border-radius: 4px;
  font-family: Poppins, sans-serif;
}

.logo-contact-page {
  margin-bottom: 10px;
}

.contact-info {
  color: #fff;
  max-width: 600px;
  font-size: 22px;
  font-weight: 200;
  line-height: 35px;
}

.twitter {
  background-color: #d7b56e;
  background-image: url("../images/icon-phone-w.png");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 15px;
  background-attachment: scroll;
  width: 30px;
  height: 30px;
  margin-left: 15px;
  margin-right: 15px;
  transition: transform 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.twitter:hover {
  background-color: #d7b56e;
  transform: scale(1.06);
  box-shadow: 1px 1px 3px #00000042;
}

.hero-wrapper-layout-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-icon-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.wine-wrapper {
  width: 95%;
  height: auto;
}

.wine-link-wrapper {
  width: 100%;
}

.wine-link-wrapper:hover {
  text-decoration: none;
}

.wine-card-wrapper {
  background-color: #000000ab;
  border: 2px solid #0000;
  border-radius: 0;
  flex-direction: column;
  flex-basis: 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: auto;
  height: auto;
  min-height: auto;
  margin-top: 15px;
  margin-bottom: 0;
  margin-right: 0;
  padding: 20px;
  display: flex;
}

.wine-card-wrapper:hover {
  border-style: solid;
  border-color: #d7b56e;
}

.wine-card-heading {
  color: #c7c7c7;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  display: block;
}

.wine-section-copy {
  background-image: linear-gradient(#000000eb, #000000eb), url("../images/vigneto2.jpg");
  background-position:
    0 0,
    50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 100vh;
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
}

.wine-features-section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.features-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70%;
  display: flex;
}

.features-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  padding-bottom: 50px;
  display: block;
}

.features-row-1,
.features-row-2,
.features-row-3 {
  perspective: 1000px;
  padding-bottom: 20px;
}

.features-card {
  background-color: #0c0c0c;
  border: 1px #d9eeff;
  border-radius: 4px;
  padding: 45px;
  box-shadow: 1px 1px 3px #154a6817;
}

.features-icon-wrapper {
  background-color: #0000;
  border-radius: 100%;
  flex-flow: wrap;
  place-content: center flex-start;
  align-items: center;
  width: auto;
  height: auto;
  display: flex;
}

.features-heading {
  color: #fff;
  margin-bottom: 7px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 18px;
}

.features-paragraph {
  color: #c9c9c9;
  font-size: 14px;
  line-height: 25px;
}

.features-icon-image {
  width: 20px;
  padding-left: 0;
  padding-right: 0;
  position: static;
  right: 0;
}

.left-block-single-wine {
  background-color: #060606;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  display: flex;
}

.single-wine-text-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  display: flex;
}

.single-wine-heading {
  color: #fff;
  font-size: 35px;
  line-height: 40px;
}

.single-wine-paragraph {
  color: #fff;
}

.single-icon-wrapper {
  border: 1px #f1f1f1;
  border-right-width: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  padding: 5px;
  display: flex;
}

.right-block-single-wine {
  background-image: url("../images/mockup-2.png");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 250px;
  border-left: 1px #090909;
  width: 50%;
  height: 100vh;
}

.video-background {
  width: 100%;
  height: 100vh;
}

.video-background-opacity-wrapper {
  background-color: #000000e0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.video-background-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.video-background-logo {
  margin-bottom: 15px;
}

.video-background-text {
  color: #d8d8d8;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 200;
  line-height: 34px;
}

.left-block-single-wine-reverse {
  background-image: url("../images/mockup-4.png");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 250px;
  border-left: 1px #090909;
  width: 50%;
  height: 100vh;
}

.right-block-single-wine-reverse {
  background-color: #060606;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100vh;
  display: flex;
}

.hero---about-us-layout-2 {
  background-color: #000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.about-us-left-block-layout-2 {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  height: 100vh;
  padding: 90px;
  display: flex;
}

.about-us-right-block-layout-2 {
  background-image: url("../images/vigneto.jpg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50%;
  height: 100vh;
}

.about-us-text-wrapper-layout-2 {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 70px;
  display: flex;
}

.about-us-heading-layout-2 {
  color: #333;
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 50px;
  font-weight: 200;
  line-height: 80px;
  display: block;
}

.about-us-paragraph-layout-2 {
  color: #333;
  text-align: left;
  max-width: 980px;
  margin-top: 0;
}

.icon-text-layout-2-black {
  color: #333;
  margin-top: 10px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
}

.wine-table {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.wine-table-wrapper {
  background-color: #fff0;
  border-radius: 10px;
  width: 80%;
  max-width: 1200px;
  height: auto;
}

.table-header {
  color: #333;
  font-size: 22px;
}

.table-text-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.table-link {
  text-align: center;
}

.contact-hero-layout-2 {
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50vh;
  display: flex;
}

.contact-hero-wrapper-layout-2 {
  background-image: linear-gradient(#00000080, #00000080), url("../images/grappoli-bianchi.jpg");
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50vh;
  display: flex;
}

.contact-hero-container-layout-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.contact-section {
  background-color: #000;
  background-image: linear-gradient(#000000eb, #000000eb);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding-top: 200px;
  padding-bottom: 200px;
  display: flex;
}

.contact-form-layout-2 {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.contact-form-submit-button {
  color: #d7b56e;
  background-color: #0000;
  margin-top: 60px;
  padding-left: 0;
  font-family: var(--font-serif);
  font-weight: 700;
}

.contact-info-paragraph-layout-2 {
  color: #979797;
  max-width: 600px;
  font-size: 22px;
  font-weight: 200;
  line-height: 35px;
}

.contact-social-wrapper-layout-2 {
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: 50px;
  margin-bottom: 0;
  margin-right: 0;
  padding-right: 0;
  display: flex;
  position: static;
  bottom: 0;
  right: 0;
}

.hero-layout-3 {
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.hero-slider-layout-3 {
  width: 100%;
  height: 100vh;
}

.wrapper-slide-lt-1 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  max-width: 1100px;
  display: flex;
}

.heading-slide-lt-1 {
  color: #c5c5c5;
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 65px;
  font-weight: 200;
  line-height: 80px;
  display: block;
}

.wrapper-slide-lt-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 800px;
  display: flex;
}

.icon-wrapper-slide-lt-2 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-slide-lt-2 {
  color: #c5c5c5;
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 65px;
  font-weight: 200;
  line-height: 80px;
  display: block;
}

.wrapper-slide-lt-3 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  max-width: 1100px;
  display: flex;
}

.icon-wrapper-slide-lt-3 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-slide-lt-3 {
  color: #c5c5c5;
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 65px;
  font-weight: 200;
  line-height: 80px;
  display: block;
}

.wine-features-section-white {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
}

.features-first-row {
  border: 1px #000;
  border-bottom-color: #ededed;
  justify-content: center;
  align-items: center;
  width: 80%;
  max-width: 1200px;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.features-card-white {
  border-left: 1px #d7b56e;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 33.33%;
  height: auto;
  padding: 55px;
  display: flex;
}

.features-second-row {
  border: 1px #000;
  border-bottom-color: #ededed;
  justify-content: center;
  align-items: center;
  width: 80%;
  max-width: 1200px;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.left-block-wine-overview {
  z-index: 1;
  background-color: #fff;
  border-top: 0 #e9e9e9;
  border-bottom: 0 #e9e9e9;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 70vh;
  padding: 100px;
  display: flex;
  position: relative;
  left: 80px;
  right: 0;
  box-shadow: 1px 1px 26px #0000000d;
}

.right-block-wine-overview {
  z-index: 0;
  background-image: url("../images/img-company.jpg");
  background-position: 50% 42%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50%;
  height: 60vh;
  position: relative;
}

.wine-overview-text-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 50vh;
  display: flex;
}

.wine-showcase {
  background-color: #fff;
  background-image: linear-gradient(#000000f0, #000000f0), url("../images/bottiglie.jpg");
  background-position:
    0 0,
    50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.wine-showcase-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  max-width: 1200px;
  height: 1000px;
  margin-bottom: 100px;
  display: flex;
}

.wine-showcase-row {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50%;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.card-link {
  background-color: #0000003d;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
}

.card-link:hover {
  text-decoration: none;
}

.card-heading {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 10px;
}

.card-button {
  background-color: #0d0d0d;
  border-radius: 0;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
}

.wine-table-black {
  background-color: var(--black);
  border-radius: 10px;
  width: 80%;
  max-width: 1200px;
  height: auto;
}

.table-header-black {
  color: #fff;
  font-size: 22px;
}

.table-cell-head {
  border-top: 1px solid #eaeaea;
  border-left: 1px solid #eaeaea;
  border-right: 1px #eaeaea;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 33.33%;
  height: 100%;
  padding-left: 30px;
  display: flex;
}

.table-cell-head-right {
  border-top: 1px solid #eaeaea;
  border-left: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 33.33%;
  height: 100%;
  padding-left: 30px;
  display: flex;
}

.table-cell-left {
  border-left: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 33.33%;
  height: 100%;
  padding-left: 30px;
  display: flex;
}

.table-cell-bottom {
  border: 1px #eaeaea;
  border-style: none none solid solid;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 33.33%;
  height: 100%;
  padding-left: 30px;
  display: flex;
}

.table-cell-bottom-right {
  border: 1px solid #eaeaea;
  border-top-style: none;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 33.33%;
  height: 100%;
  padding-left: 30px;
  display: flex;
}

.table-text-black {
  color: #fff;
  margin-left: 8px;
  font-family: Poppins, sans-serif;
  font-weight: 400;
}

.table-last-row {
  border-bottom: 1px #eaeaea;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  display: flex;
}

.events-day {
  color: #d7b56e;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 70px;
  font-weight: 300;
  line-height: 80px;
}

.hero---about-us-layout-3 {
  background-color: #000;
  background-image: linear-gradient(#000000c7, #000000c7), url("../images/vigneto.jpg");
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.about-us-wrapper-layout-3 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.about-us-heading-layout-3 {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
  font-size: 50px;
  font-weight: 200;
  line-height: 80px;
  display: block;
}

.about-us-paragraph-layout-3 {
  color: #fff;
  text-align: center;
  max-width: 980px;
  margin-top: 0;
}

.wine-tabs {
  width: 100%;
}

.year-text {
  letter-spacing: 5px;
}

.tab-heading {
  color: #fff;
  font-size: 35px;
  line-height: 40px;
}

.tab-paragraph {
  color: #fff;
}

.tab-left-block {
  background-color: #060606;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  display: flex;
}

.wine-tabs-wrapper {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 700px;
  display: flex;
}

.tab-text-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 60%;
  display: flex;
}

.tab-icons-wrapper {
  justify-content: flex-start;
  align-items: center;
  width: 60%;
  height: 100px;
  margin-top: 40px;
  display: flex;
}

.tab-right-block {
  background-color: #060606;
  background-image: url("../images/mockup-2.png");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  border-left: 1px #090909;
  width: 50%;
  height: 100%;
}

.contact-form-wrapper-layout-3 {
  border-right: 0 #979797;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  display: flex;
}

.contact-info-wrapper-layout-3 {
  width: 60%;
  margin-bottom: 25px;
}

.contact-paragraph,
.contact-heading {
  color: #ccc;
}

.form-block-layout-3 {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.main-head-layout-4 {
  text-align: center;
  font-family: Poppins, sans-serif;
  font-size: 55px;
  font-weight: 300;
  line-height: 60px;
}

.main-paragraph-layout-4 {
  text-align: left;
}

.video-section-layout-2 {
  border-top: 0 #ececec;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.video-background-opacity-wrapper-lt-4 {
  background-color: #000000e0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70vh;
  display: flex;
}

.sub-hero-home-layout-4 {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 200px;
  padding-bottom: 200px;
  display: flex;
}

.sub-hero-wrapper-layout-4 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70%;
  height: auto;
  display: flex;
}

.parallax-heading {
  color: #dadada;
  text-align: center;
  font-size: 35px;
  line-height: 40px;
}

.parallax-paragraph {
  color: #dadada;
  text-align: center;
  width: 900px;
  font-size: 22px;
  line-height: 32px;
}

.parallax-link {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.recent-posts-section {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 71px;
  padding-bottom: 71px;
  display: flex;
}

.recent-blog-block {
  width: 80%;
  height: auto;
}

.recent-collection-item {
  margin-top: 0;
  margin-bottom: 15px;
}

.post-hover-white {
  background-color: #fff;
  border: 1px solid #d7b56e;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.post-header {
  color: #333;
  text-align: center;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 34px;
}

.post-date {
  color: #969696;
  text-align: center;
  margin-bottom: 20px;
}

.post-link {
  text-align: center;
  letter-spacing: 0.3px;
  text-transform: none;
  margin-top: 0;
  font-size: 18px;
}

.icon-text-white {
  margin-top: 10px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
}

.hero---about-us-layout-4 {
  background-color: #000;
  background-image: linear-gradient(#000000ab, #000000ab), url("../images/0417_0248.jpg");
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.abou-us-text-wrapper-layout-4 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.main-head-layout-4-white {
  color: #fff;
}

.main-paragraph-layout-4-white {
  color: #fff;
  text-align: center;
}

.contact-text-wrapper-layout-4 {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.team-cards-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.team-cards-column-wrapper {
  perspective: 1000px;
  padding-bottom: 35px;
}

.user-name {
  color: #c7c7c7;
  text-transform: none;
  font-family: Poppins, sans-serif;
  font-weight: 300;
}

.privacy-paragraph {
  margin-bottom: 40px;
  font-weight: 300;
}

.password-field {
  background-color: #0000;
  height: 50px;
  font-family: Poppins, sans-serif;
}

.submit-button-protected-page {
  color: #d8b773;
  background-color: #0000;
  font-family: Poppins, sans-serif;
}

._404-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  padding-bottom: 60px;
  display: flex;
}

._404-h1 {
  color: #d7b56e;
  font-size: 90px;
  line-height: 100px;
  font-family: var(--font-serif);
  font-weight: 400;
}

._404-h2 {
  color: #d7b56d;
  font-family:
    PT Serif,
    serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}

.search-page-hero {
  background-color: #000;
  background-image: linear-gradient(#000000eb, #000000eb), url("../images/tappi.jpg");
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70vh;
  display: flex;
}

.heading-search-page {
  color: #d7b56e;
}

.search-field {
  width: 30%;
  min-width: 500px;
}

.search-result {
  margin-top: 110px;
  margin-bottom: 110px;
}

.search-url {
  font-family: Poppins, sans-serif;
  font-size: 12px;
}

.post-page-hero {
  background-color: #000;
  background-image: url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.post-page-container {
  background-color: #000000e0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
}

.post-hero-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.post-page-content {
  background-color: #000;
  background-image: linear-gradient(#000000f7, #000000f7), url("../images/cantina.svg");
  background-position:
    0 0,
    50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 135px;
  padding-bottom: 135px;
  display: flex;
}

.description-container {
  background-color: #030303;
  border: 0 solid #000;
  border-radius: 4px;
  padding: 60px;
}

.description p {
  color: #ececec;
}

.year-tab {
  color: #fff;
  background-color: #060606;
}

.year-tab:hover {
  text-decoration: none;
}

.year-tab.w--current {
  color: #fff;
  background-color: #141414;
}

.year-tab.w--current:hover {
  text-decoration: none;
}

.single-wine-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60%;
  display: flex;
}

.main-head-single-wine-page {
  text-align: center;
  font-family: Poppins, sans-serif;
  font-size: 55px;
  font-weight: 300;
  line-height: 60px;
}

.icons-wrapper-single-wine {
  justify-content: flex-start;
  align-items: center;
  width: 60%;
  height: 100px;
  margin-top: 40px;
  display: flex;
}

.catalogue-section {
  background-color: #000;
  background-image: linear-gradient(#000000d1, #000000d1), url("../images/botti.jpg");
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 90px 75px;
  display: flex;
}

.catalogue-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.catalogue-collection-list {
  width: 100%;
}

.catalogue-collection-item {
  width: 20%;
}

.catalogue-item-link {
  width: 100%;
}

.catalogue-item-link:hover {
  text-decoration: none;
}

.catalogue-item-wrapper {
  background-color: #000000ab;
  border: 2px solid #0000;
  border-radius: 0;
  flex-direction: column;
  flex-basis: 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: auto;
  height: auto;
  min-height: 220px;
  margin-top: 15px;
  margin-bottom: 0;
  margin-right: 0;
  padding: 20px;
  display: flex;
}

.catalogue-item-wrapper:hover {
  border-style: solid;
  border-color: #d7b56e;
}

.catalogue-empty-state {
  background-color: #0000;
  height: 0;
  padding: 0;
  font-size: 0;
  display: none;
}

.catalogue-collection-list-wrapper {
  width: 100%;
}

.product-image {
  width: 260px;
}

.product-header {
  color: #333;
  text-align: center;
  margin-bottom: 20px;
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 45px;
}

.product-feature {
  justify-content: center;
  align-items: center;
  display: flex;
}

.back-button {
  color: #d7b56e;
  background-color: #0000;
  border: 0 solid #000;
  border-right-style: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  height: 100%;
  font-family: var(--font-serif);
  display: flex;
}

.back-button:hover {
  color: #333;
  background-color: #0000;
  text-decoration: none;
}

.read-more-button {
  color: #d7b56e;
  background-color: #0000;
  border: 0 solid #000;
  border-right-style: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 50%;
  height: 100%;
  font-family: var(--font-serif);
  display: flex;
}

.read-more-button:hover {
  color: #333;
  background-color: #0000;
  text-decoration: none;
}

.hamburger-button {
  text-align: center;
  cursor: pointer;
  border-radius: 3px;
  width: 50px;
  height: 60px;
  padding: 15px 10px 10px;
  position: relative;
  overflow: hidden;
}

.hamburger-line {
  background-color: #fff;
  border-radius: 1px;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  display: block;
}

.credits-text {
  color: #000;
  text-transform: uppercase;
  padding-left: 0;
  font-family: var(--font-serif);
  font-size: 10px;
  font-weight: 400;
}

.form-wrapper-layout-4 {
  border-right: 1px #979797;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  height: 100%;
  display: flex;
}

.contact-info-paragraph-layout-4 {
  color: #fff;
  text-align: center;
  max-width: 600px;
  font-size: 22px;
  font-weight: 200;
  line-height: 35px;
}

.footer-logo-wrapper-white {
  background-color: #fff;
  border-top: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
  margin-bottom: 0;
  padding: 20px 12px;
}

.arrow-link-wrapper {
  background-color: #d7b56f29;
  border-radius: 4px;
  padding: 5px 15px;
}

.arrow-link-wrapper:hover {
  text-decoration: none;
}

.catalogue-section-post {
  background-color: #000;
  background-image: linear-gradient(#000, #000), url("../images/cantina.svg");
  background-position:
    0 0,
    50%;
  background-size: auto, cover;
  background-attachment: scroll, fixed;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 200px 75px;
  display: flex;
}

.changelog-section {
  background-color: #fafafa;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 100vh;
  margin-top: 0;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.changelog-container {
  background-color: #fff;
  border: 1px solid #f0f0f0;
  padding: 55px;
}

.hero-2 {
  background-image: url("../images/Capture.JPG");
  background-position: 0 0;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: block;
}

.flex-container {
  flex-direction: row;
  flex: 1;
  align-items: center;
  display: flex;
}

.hero-image-mask {
  width: 100%;
  margin-left: 0;
}

.hero-image {
  object-fit: cover;
  object-position: 50% 50%;
  flex: 0 0.5 auto;
  width: 50%;
  height: 100%;
  margin-left: 200px;
}

.heading-2 {
  color: var(--black);
  font-family:
    Noto Sans JP,
    sans-serif;
}

.heading-3 {
  color: #d28349;
  margin-top: 0;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 20px;
}

.columns {
  margin-left: 0;
  margin-right: 0;
  padding-left: 168px;
  display: flex;
}

.column-4 {
  display: block;
}

.heading-4 {
  text-align: right;
  margin-top: 5px;
  margin-left: 0;
  margin-right: -30px;
  padding-left: 0;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 18px;
}

.column-5 {
  padding-left: 10px;
}

.heading-5 {
  font-family:
    Noto Sans JP,
    sans-serif;
}

.heading-6 {
  text-align: right;
  margin-top: 5px;
  margin-right: 0;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 18px;
}

.heading-7,
.heading-8 {
  text-align: right;
  margin-top: 5px;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 18px;
}

.button {
  color: var(--black);
  text-align: center;
  background-color: #0000;
  border: 1px solid #000;
  flex-flow: wrap;
  align-content: flex-end;
  align-items: flex-end;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
  display: block;
  position: static;
}

.heading-9 {
  font-family:
    Noto Sans JP,
    sans-serif;
}

.div-block-2 {
  display: block;
}

.top-bg {
  -webkit-text-fill-color: inherit;
  background-color: #0000;
  background-image: linear-gradient(#f5e3cacc, #f5e3cacc), url("../images/Capture.JPG");
  background-position:
    0 0,
    0 6px;
  background-size: auto, auto;
  background-attachment: scroll, scroll;
  background-clip: border-box;
  padding-top: 60px;
}

.footer {
  background-color: var(--black);
  align-items: flex-start;
  padding-top: 40px;
  padding-bottom: 20px;
}

.footer-flex-container {
  text-align: left;
  justify-content: space-between;
  margin-bottom: 40px;
  display: flex;
}

.footer-logo-link-2 {
  flex: 0 auto;
  min-width: 60px;
  max-height: 60px;
}

.footer-image-2 {
  object-fit: contain;
  object-position: 0% 50%;
  width: 100%;
  height: 100%;
}

.footer-heading {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
}

.footer__copyright {
  color: var(--gray-on-black);
  font-size: 12px;
  margin: 0;
}

.footer__hr {
  opacity: 0.3;
  border: 1px solid var(--gray-on-black);
}

.footer__logo {
  color: var(--white);
  text-align: left;
  font-size: 30px;
  margin-top: 0;
  margin-bottom: 10px;
  display: block;
}

.footer__logo:hover {
  color: #929292;
  text-decoration: none;
}

.footer__description {
  color: var(--gray-on-black);
  text-align: left;
  padding-left: 0;
  font-size: 15px;
}

.footer__menu {
  display: grid;
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  grid-template-columns: repeat(3, auto);
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.footer__menu-item {
  padding-top: 10px;
  padding-bottom: 10px;
}

.footer__link {
  color: var(--gray-on-black);
  font-size: 0.9rem;
}

.footer__link.w--current {
  display: block;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  grid-row-gap: 1rem;
  grid-column-gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.columns-2 {
  flex-direction: column;
  display: flex;
}

.heading-12 {
  margin-bottom: 0;
  font-size: 30px;
}

.heading-13 {
  color: #b98d46;
  letter-spacing: 2px;
  margin-top: 10px;
  font-family:
    Noto Serif JP,
    sans-serif;
  font-size: 20px;
}

.paragraph-2 {
  text-align: justify;
  margin-top: 10px;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 1rem;
}

.heading-14 {
  text-align: center;
  border: 1px solid #000;
  margin-left: 450px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family:
    Noto Sans JP,
    sans-serif;
}

.columns-3 {
  align-items: center;
  margin-top: 60px;
  margin-left: 20px;
  margin-right: 20px;
  padding-bottom: 60px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.hero-overlay {
  color: #fff;
  background-image: linear-gradient(#0009, #0009), url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg");
  background-position:
    0 0,
    50%;
  justify-content: center;
  align-items: center;
  height: 90vh;
  max-height: 780px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.centered-container {
  text-align: center;
  flex: 1;
}

.bold-text {
  color: #858585;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 14px;
}

.heading-15 {
  color: #858585;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 15px;
}

.heading-16 {
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 15px;
}

.bold-text-2 {
  color: #858585;
}

.heading-17 {
  color: #858585;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 15px;
}

.heading-18 {
  font-size: 15px;
}

.menu-button-4 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.columns-4 {
  margin-top: 20px;
}

.container-2 {
  opacity: 1;
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  margin-top: 48px;
  padding-left: 10px;
  padding-right: 10px;
}

.container-3 {
  margin-top: 48px;
  padding-left: 10px;
  padding-right: 10px;
}

.container-4 {
  margin-top: 48px;
  margin-bottom: 48px;
  padding-left: 10px;
  padding-right: 10px;
}

.heading-19 {
  margin-top: 0;
  margin-bottom: 0;
}

.columns-6 {
  margin-bottom: 48px;
}

.heading-20 {
  margin-top: 48px;
  margin-bottom: 24px;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 30px;
}

.columns-8 {
  margin-bottom: 48px;
}

.heading-21 {
  margin-top: 0;
  margin-bottom: 24px;
}

.heading-22 {
  margin-top: 0;
  margin-bottom: 24px;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 30px;
}

.heading-23 {
  margin-top: 0;
  margin-bottom: 24px;
}

.columns-10 {
  margin-top: 48px;
  margin-bottom: 24px;
}

.paragraph-3 {
  text-align: justify;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 1rem;
}

.paragraph-4,
.paragraph-5 {
  text-align: left;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 1rem;
}

.image-2 {
  border-radius: 10px;
  width: 220px;
  height: 330px;
  position: static;
}

.image-3,
.image-4,
.image-5 {
  border-radius: 10px;
  width: 220px;
  height: 330px;
}

.div-block-9 {
  background-color: #ffd541;
  border: 2px solid #ffd541;
  margin-left: 77px;
  margin-right: 77px;
}

.div-block-10 {
  background-color: #ffd541;
  border: 2px solid #ffd541;
  margin-left: 77px;
  margin-right: 77px;
}

.div-block-11 {
  background-color: #ffd541;
  border: 2px solid #ffd541;
  margin-left: 57px;
  margin-right: 57px;
}

.column-7 {
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.image-6 {
  width: 200px;
}

.column-8 {
  padding-bottom: 10px;
  padding-left: 60px;
  padding-right: 60px;
}

.heading-26 {
  font-family:
    Noto Sans JP,
    sans-serif;
}

.heading-27 {
  padding-left: 10px;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 20px;
}

.list-item,
.list-item-2,
.list-item-3 {
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 14px;
}

.list-item-4 {
  font-family:
    Noto Sans JP,
    sans-serif;
}

.list-item-5,
.list-item-6 {
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 14px;
}

.list-item-7 {
  font-family:
    Noto Sans JP,
    sans-serif;
}

.list-item-8,
.list-item-9 {
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 14px;
}

.div-block-13 {
  z-index: 900;
  clear: none;
  box-shadow: none;
  opacity: 1;
  text-align: left;
  -webkit-text-fill-color: inherit;
  object-fit: fill;
  background-color: #f2dbbc;
  background-clip: border-box;
  border-radius: 9px;
  order: 0;
  width: auto;
  margin-left: 92px;
  padding: 1rem 0;
  display: flex;
  position: relative;
  left: 0;
}

.div-block-14 {
  background-color: #f5f5f5;
}

.column-9 {
  background-color: var(--white);
  height: 300px;
}

.div-block-15 {
  z-index: 400;
  background-color: #f5f5f5;
  width: 350px;
  height: 360px;
  margin-top: 20px;
  margin-left: -45px;
  margin-right: -240px;
  display: none;
  position: static;
}

.column-10 {
  flex-direction: row;
  display: block;
}

.image-7 {
  z-index: 500;
  display: none;
  position: relative;
}

.headding-l-border {
  border-left: 10px solid #ffd541;
  padding-left: 0.6em;
}

.headding-b-border {
  position: relative;
  text-align: center;
}

.headding-b-border::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 4px;
  display: inline-block;
  background-color: #ffd541;
  bottom: -10px;
  left: calc(50% - 55px);
}

.heading-29 {
  margin-top: 0;
  margin-bottom: 0;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 30px;
}

.paragraph-6 {
  text-align: justify;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 1rem;
}

.div-block-18 {
  text-align: left;
  border: 1px solid #000;
  justify-content: flex-end;
  width: 130px;
  margin-left: auto;
  padding-left: 5px;
  padding-right: 5px;
  display: flex;
}

.heading-30 {
  margin-top: 5px;
  margin-bottom: 5px;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 1rem;
}

.nomal-btn-img {
  margin-left: 5px;
  margin-right: 5px;
}

.nomal-btn-right {
  border: 1px solid var(--base);
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 130px;
  margin-left: auto;
  margin-right: 0;
  padding-left: 5px;
  padding-right: 5px;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
}

.nomal-btn-right:hover {
  background-color: var(--gold);
  text-decoration: none;
}

.nomal-btn-right.sub {
  background-color: #ffffffba;
  justify-content: center;
  align-items: center;
}

.nomal-btn-right.sub:hover {
  background-color: var(--gold);
}

.nomal-btn-text {
  color: var(--base);
  margin-top: 5px;
  margin-bottom: 5px;
  padding-left: 5px;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 1rem;
  text-decoration: none;
}

.nomal-btn-text:hover {
  text-decoration: none;
}

.nav-link,
.nav-link-2,
.nav-link-3 {
  font-family:
    Noto Sans JP,
    sans-serif;
}

.nav-link-4 {
  font-family:
    Noto Sans JP,
    sans-serif;
  display: none;
}

.div-block-24 {
  background-image: radial-gradient(circle farthest-corner at 100% 100%, transparent, var(--white) 40%, white), url("../images/0915_0037.jpg");
  background-position:
    0 0,
    100% 100%;
  background-size: auto, cover;
}

.div-block-25 {
  display: block;
}

.img_product_bd {
  text-align: center;
  border: 1px solid #dfdfdf;
  margin-bottom: 20px;
  padding: 40px;
}

.text-block-2 {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 0;
  font-size: 15px;
  font-weight: 700;
}

.text-block-2.mb-10 {
  margin-bottom: 10px;
}

.product-info-table {
  border-bottom: 1px solid var(--gray);
  margin-bottom: 10px;
  font-size: 1rem;
  font-family:
    PT Sans,
    sans-serif;
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.product-info-table > :not(caption) > * > * {
  border-bottom: 1px solid var(--gray);
  padding: 0.5rem;
}

.product-info-table th {
  font-weight: 300;
  text-align: left;
  white-space: nowrap;
}

.product-info-table td {
  font-weight: 400;
  width: 100%;
}

.heading-border-bottom {
  font-size: 1em;
  border-bottom: 1px solid var(--gray);
  padding-bottom: 0.3em;
}

.product-info-table_02 {
  font-size: 14px;
}

.breadcrumb {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 13px;
  display: inline-block;
}

.section_breadcrumb {
  padding-top: 10px;
  padding-bottom: 10px;
  font-family:
    Noto Serif JP,
    sans-serif;
}

.img_product_soil {
  background-color: var(--soil);
  text-align: center;
  border: 1px solid #dfdfdf;
  padding: 40px;
}

.jyo_icon {
  text-align: center;
  min-width: 330px;
  display: inline-block;
}

.jyo {
  text-align: center;
}

.button_01 {
  color: var(--black);
  background-color: #ffd541;
  border-radius: 5px;
  padding: 10px 20px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.2s;
}

.button_01:hover {
  background-color: #f1b708;
  text-decoration: none;
}

.columns-11 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.column_icon {
  text-align: center;
}

.icon_text {
  margin-bottom: 20px;
  font-size: 1.3rem;
  line-height: 1.5rem;
}

.html-embed {
  margin-bottom: 10px;
  font-family:
    Noto Sans JP,
    sans-serif;
}

.navbar-2 {
  background-color: #0000;
}

.heading-01 {
  letter-spacing: 2px;
  font-family:
    Noto Serif JP,
    sans-serif;
}

.brand-3 {
  color: #0000;
  line-height: 0;
}

.lead {
  font-size: 0.9rem;
  line-height: 1.7rem;
}

.sub-header-title {
  margin-bottom: 30px;
  font-family:
    Noto Serif JP,
    sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5rem;
}

.bold-text-3 {
  font-family:
    Noto Serif JP,
    sans-serif;
}

.div-block-3-copy {
  -webkit-text-fill-color: inherit;
  background-color: #0000;
  background-image: linear-gradient(#f5e3cacc, #f5e3cacc), url("../images/Capture.JPG");
  background-position:
    0 0,
    0 0;
  background-size: auto, auto;
  background-attachment: scroll, scroll;
  background-clip: border-box;
}

.subpage_header {
  -webkit-text-fill-color: inherit;
  background-color: #0000;
  background-clip: border-box;
  font-family:
    Noto Sans JP,
    sans-serif;
}

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

.columns-12 {
  align-items: center;
  display: flex;
}

.div-block-32 {
  background-image: url("../images/img-nature.jpg");
  background-position: 50% 100%;
  background-size: cover;
  border-radius: 5px;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.image-8 {
  position: absolute;
  inset: auto 0% 0%;
}

.sake-section {
  height: auto;
  margin-top: 40px;
}

.sake-card-heading {
  color: #c7c7c7;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  display: block;
}

.sake-card-wrapper {
  background-color: #fff;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  flex-direction: column;
  flex-basis: 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: auto;
  height: 100%;
  min-height: auto;
  margin-bottom: 0;
  margin-right: 0;
  padding: 20px;
  display: flex;
}

.sake-card-wrapper:hover {
  border-style: solid;
  border-color: #d7b56e;
}

.sake-link-wrapper {
  width: 100%;
  height: 100%;
}

.sake-link-wrapper:hover {
  text-decoration: none;
}

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

.products-side-menu-btn {
  color: var(--base);
  text-align: left;
  background-color: #0000;
  border-radius: 5px;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-weight: 400;
  transition: all 0.2s;
  display: flex;
}

.products-side-menu-btn:hover {
  background-color: var(--gold);
  text-decoration: none;
}

.text-block-3 {
  margin-left: 10px;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.products-side-menu-02 {
  border: 1px solid var(--gray);
  padding: 10px;
}

.image-9 {
  width: 100%;
}

.grid {
  display: grid;
}

.bg-rice {
  background-image: linear-gradient(162deg, var(--white) 87%, #ffffff5e), url("../images/0918_0474.jpg");
  background-position:
    0 0,
    50% 100%;
  background-repeat: repeat, repeat-x;
  background-size: auto, contain;
}

.sake-info {
  margin-top: 40px;
  margin-bottom: 40px;
}

.text-block-4 {
  color: #818181;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 13px;
  font-weight: 400;
}

.text-block-5 {
  margin-bottom: 10px;
  font-family:
    Noto Sans JP,
    sans-serif;
}

.sake-table-black {
  background-color: var(--white);
  width: 100%;
  height: auto;
  margin-bottom: 60px;
  padding-top: 0;
}

.sake-table-header {
  color: var(--base);
  font-size: 22px;
}

.sake-table-cell-left {
  border-left: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 80%;
  padding: 10px 30px;
  display: flex;
}

.sake-table-left {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.sake-table-cell {
  border-right: 1px solid #eaeaea;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 180px;
  padding: 20px 30px;
  display: flex;
}

.sake-table-row {
  border-bottom: 1px solid #eaeaea;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
}

.table-text-wrapper-copy {
  justify-content: center;
  align-items: stretch;
  height: 100%;
  display: flex;
}

.text-block-6 {
  font-size: 1.2rem;
  font-weight: 400;
}

.div-block-34 {
  margin-left: 20px;
}

.sake-table-cell-head {
  background-color: #f0f0f0;
  border-top: 1px solid #eaeaea;
  border-left: 1px solid #eaeaea;
  border-right: 1px #eaeaea;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 30px;
  display: flex;
}

.sake-table-cell-head-right {
  background-color: #f0f0f0;
  border-top: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 20%;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
  font-family:
    Noto Sans JP,
    sans-serif;
  display: flex;
}

.text-block-7 {
  font-size: 13px;
}

.shop-title {
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.shop-title a {
  text-decoration: underline;
  color: unset;
}

.bg-header {
  background-image: linear-gradient(#f5e3cacc, #f5e3cacc), url("../images/Capture.JPG");
  background-position:
    0 0,
    0 -1%;
  background-repeat: repeat, repeat-x;
  background-size: auto, auto;
  padding-top: 82px;
}

.image-10 {
  box-shadow: none;
  border: 1px solid #c4c2bd;
  border-radius: 5px;
  transition: all 0.2s;
}

.image-10:hover {
  opacity: 0.6;
}

.white {
  color: var(--white);
}

.s-table {
  border-bottom: 1px solid #d3d3d3;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
}

.m-table-cell-left {
  border-left: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  padding: 10px 30px;
  display: flex;
}

.sake-table-cell-copy {
  border-right: 1px solid #eaeaea;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 20%;
  padding: 20px 30px;
  display: flex;
}

.m-table {
  background-color: var(--white);
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.m-table-cell {
  border-right: 1px solid #eaeaea;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  padding: 10px 30px;
  display: flex;
}

.m-table-cell-head {
  background-color: #f0f0f0;
  border-top: 1px solid #eaeaea;
  border-left: 1px solid #eaeaea;
  border-right: 1px #eaeaea;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  height: 100%;
  padding: 10px 30px;
  display: flex;
}

.m-table-cell-head-right {
  background-color: #f0f0f0;
  border-top: 1px solid #eaeaea;
  border-left: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  font-family:
    Noto Sans JP,
    sans-serif;
  display: flex;
}

.m-table-row {
  border-bottom: 1px solid #eaeaea;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 3rem;
  display: flex;
}

.m-table-sub-row {
  border-bottom: 1px solid #eaeaea;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
}

.div-block-35 {
  align-items: center;
  display: flex;
}

.link-block {
  font-size: 1.5rem;
}

.link-block-tel {
  align-items: center;
  font-size: 1.5rem;
  display: flex;
}

.icon-phone {
  height: 1.8rem;
  margin-right: 10px;
}

.main-head-company {
  color: #333;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 40px;
}

.main-head-company.yellow {
  color: #d7b56e;
}

.m-table-company {
  background-color: var(--white);
  border-radius: 10px;
  width: 100%;
  height: auto;
}

.m-table-sub-row-company {
  border-bottom: 1px solid #eaeaea;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
}

.m-table-cell-left-company {
  color: #fff;
  background-color: #a32746;
  border-left: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 50%;
  padding: 10px 30px;
  font-family:
    Noto Serif JP,
    sans-serif;
  display: flex;
}

.m-table-cell-company {
  border-right: 1px solid #eaeaea;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  padding: 10px 30px;
  display: flex;
}

.m-table-cell-left-first {
  border-top: 1px solid #eaeaea;
  border-left: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 50%;
  padding: 10px 30px;
  display: flex;
}

.m-table-cell-sub-company {
  border-left: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 50%;
  padding: 10px 30px;
  display: flex;
}

.text-span {
  text-decoration: underline;
}

.sub_section {
  padding: 60px 10px;
}

.list-item-11 {
  list-style-type: decimal;
}

.div-block-36 {
  border-bottom: 1px solid #668cad;
  margin-bottom: 20px;
  font-size: 0;
  line-height: 0;
}

.heading-32 {
  color: #cc975e;
  font-size: 1.5rem;
  line-height: 2rem;
}

.sub-heading {
  color: #585858;
  line-height: 3rem;
}

.container-6 {
  max-width: 1100px;
}

.nomal-text-point {
  color: var(--red);
  font-family:
    Noto Sans JP,
    sans-serif;
  font-weight: 400;
  line-height: 1.7rem;
  display: inline-block;
}

.div-block-38 {
  margin-bottom: 40px;
  display: block;
}

.text-span-2 {
  text-decoration: line-through;
}

.text-span-3,
.text-span-4 {
  color: var(--red);
}

.small-text {
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 0.8rem;
}

.text-span-5 {
  color: var(--red);
}

.bd-layout {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 40px;
}

.section-other {
  background-image: linear-gradient(#faf7f4ab, #faf7f4ab), url("../images/22250470.jpg");
  background-position:
    0 0,
    0 0;
  background-size: auto, cover;
  padding-top: 60px;
  padding-bottom: 60px;
}

.container-bnr {
  max-width: 700px;
}

.jyo-copy {
  text-align: center;
}

.sub-product-btn {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.section_product {
  margin-top: 40px;
  margin-bottom: 40px;
}

.product-table-cell-left {
  border: 1px solid #d3d3d3;
  text-align: center;
  padding: 5px 20px;
  width: 60%;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.product-table-cell {
  border: 1px solid #d3d3d3;
  padding: 5px 10px;
  text-align: right;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.bold-text-4 {
  font-size: 1rem;
}

.product-table {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.paragraph-7 {
  margin-bottom: 0;
  margin-right: 10px;
}

.paragraph-8 {
  margin-bottom: 0;
}

.product-info-table-copy {
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}

.div-block-39 {
  align-items: flex-start;
}

.div-block-40,
.div-block-41 {
  float: left;
  width: 50%;
}

.link-16 {
  font-weight: 600;
}

.text-block-8 {
  background-color: #fff5ec;
  margin-bottom: 60px;
  padding: 40px 20px;
  font-family:
    Noto Serif JP,
    sans-serif;
  font-size: 1.5rem;
  line-height: 180%;
}

.div-block-42 {
  padding-bottom: 60px;
}

.image-product-logo {
  max-width: none;
  height: 220px;
}

.image-14 {
  width: 100%;
}

.headding-q {
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 24px;
  display: flex;
}

.headding-q-deco {
  background-color: var(--red);
  color: var(--white);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  font-family:
    Noto Serif JP,
    sans-serif;
  line-height: 20px;
  display: flex;
}

.headding-qa-text {
  text-align: left;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
}

.headding-a {
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 24px;
  display: flex;
}

.headding-a-deco {
  color: var(--white);
  text-align: center;
  background-color: #20417a;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  font-family:
    Noto Serif JP,
    sans-serif;
  line-height: 20px;
  display: flex;
}

.block-qa {
  border-bottom: 1px dashed var(--gray);
  margin-bottom: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.text-span-6 {
  color: var(--gray);
}

.number {
  display: flex;
  justify-content: center;
  overflow: visible;
}

.number-text {
  border: 1px solid var(--gray);
  color: var(--black);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-family:
    Arial,
    Helvetica Neue,
    Helvetica,
    sans-serif;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}

.number-text.on {
  background-color: var(--gold);
  color: var(--black);
  width: 30px;
  height: 30px;
  font-family:
    Noto Serif JP,
    sans-serif;
}

.number-text.on:hover {
  text-decoration: none;
}

.number-link-block-left {
  margin-right: 20px;
  font-family:
    Times New Roman,
    TimesNewRoman,
    Times,
    Baskerville,
    Georgia,
    serif;
}

.number-link-block {
  margin-left: 5px;
  margin-right: 5px;
}

.number-link-block-next {
  margin-left: 10px;
  font-family:
    Times New Roman,
    TimesNewRoman,
    Times,
    Baskerville,
    Georgia,
    serif;
}

.map {
  position: relative;
}

.map-link {
  border: 1px #000;
  border-radius: 5px;
  width: 15%;
  height: 14%;
  position: absolute;
  inset: 20% auto auto 6%;
}

.map-link:hover {
  background-color: #ffffff7a;
}

.map-link.h64 {
  top: 56%;
}

.map-link.h27 {
  top: 38%;
  left: 6%;
}

.map-link._64 {
  top: 56%;
}

.map-link.m8 {
  top: 56%;
  left: 25%;
}

.map-link.h7 {
  top: 73%;
  left: 12%;
}

.map-link.h8 {
  top: 73%;
  left: 30%;
}

.map-link._22 {
  top: 56%;
  left: 56%;
}

.map-link._869 {
  top: 73%;
  left: 57%;
}

.map-link._114 {
  top: 80%;
  left: 64%;
}

.map-link.h64 {
  left: 7%;
}

.image-icon {
  width: auto;
  height: 140px;
}

.link-block-3 {
  border: 1px solid var(--gray);
  color: var(--base);
  border-radius: 5px;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  font-family:
    Noto Serif JP,
    sans-serif;
}

.dropdown-link {
  border-bottom: 1px solid #cebf91;
  margin-left: 5px;
  padding: 15px 0;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.2s;
}

.dropdown-link:hover {
  color: #d28349;
  text-decoration: none;
}

.dropdown-link.w--current {
  color: var(--base);
}

.dropdown-list.w--open {
  background-color: var(--soil);
  width: 190px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
}

.dropdown-toggle {
  font-family:
    Noto Sans JP,
    sans-serif;
  transition: all 0.2s;
}

.list-item-link {
  margin-bottom: 20px;
}

.list-item-link-left {
  margin-right: 10px;
}

.list-item-link-right {
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 1rem;
  display: inline;
}

.btn-01 {
  text-align: left;
  margin-top: 20px;
  margin-bottom: 20px;
  position: static;
  top: 40px;
}

.list-item-jyomenu {
  color: var(--base);
  font-family:
    Noto Serif JP,
    sans-serif;
  font-size: 1rem;
  font-weight: 300;
}

.button_01-100 {
  color: var(--black);
  text-align: center;
  background-color: #ffd541;
  border-radius: 5px;
  width: 100%;
  padding: 10px 20px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.2s;
}

.button_01-100:hover {
  background-color: #f1b708;
  text-decoration: none;
}

.navbar-en {
  background-color: #f4e3ca;
  position: fixed;
  inset: 0% 0% auto;
}

.navbar-en:hover {
  text-decoration: none;
}

.container-en {
  opacity: 1;
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  max-width: 1300px;
  margin-top: 0;
  padding-left: 10px;
  padding-right: 10px;
  overflow: hidden;
}

.section-en-01 {
  background-color: #f4e4ca;
}

.container-en-02 {
  opacity: 1;
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  max-width: 1300px;
  margin-top: 0;
  padding-left: 10px;
  padding-right: 10px;
}

.section-en-02 {
  background-color: #f4e4ca;
  background-image: linear-gradient(to right, #ffffffd4, #f4e4ca), url("../images/DSC_0861.JPG");
  background-position:
    0 0,
    0 0;
  background-size: auto, auto;
}

.section-en-03 {
  background-color: var(--white);
  background-image: linear-gradient(#ffffffdb, #ffffffdb), url("../images/DSC_0861.JPG");
  background-position:
    0 0,
    0 0;
  background-size: auto, auto;
}

.en {
  font-family:
    Noto Serif JP,
    sans-serif;
}

.heading-12-en {
  margin-bottom: 0;
  font-family:
    Times New Roman,
    TimesNewRoman,
    Times,
    Baskerville,
    Georgia,
    serif;
  font-size: 30px;
}

.heading-01-copy {
  font-family:
    Noto Serif JP,
    sans-serif;
}

.heading-13-en {
  margin-top: 10px;
  font-family:
    Times New Roman,
    TimesNewRoman,
    Times,
    Baskerville,
    Georgia,
    serif;
  font-size: 20px;
}

.columns-3-en {
  align-items: center;
  margin-top: 60px;
  margin-left: 20px;
  margin-right: 20px;
  padding-bottom: 0;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.card {
  color: var(--base);
  transition: all 0.2s;
}

.card:hover {
  opacity: 0.76;
  text-decoration: none;
}

.card__thumb {
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 330px;
}

.columns-13 {
  background-color: var(--soil);
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.image-100 {
  width: 100%;
}

.img-wrapper {
  border-radius: 10px;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.img-wrapper-h-img {
  width: auto;
  max-width: none;
  height: 100%;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.img-wrapper-h {
  border-radius: 10px;
  width: 80%;
  height: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.img-wrapper-w-img {
  width: 100%;
  max-width: none;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.img-wrapper-w {
  border-radius: 10px;
  width: 100%;
  max-width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.section_sub_bg {
  background-image: linear-gradient(to bottom, var(--white) 60%, #ffffffd1 69%, #ffffffb5), url("../images/0915_0037.jpg");
  background-position:
    0 0,
    50% 100%;
  background-repeat: repeat, repeat-x;
  background-size: auto, contain;
}

.insta-title {
  color: var(--gray);
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.insta-title-01 {
  color: #363636;
  text-align: center;
  letter-spacing: 2px;
  margin-top: 40px;
  margin-bottom: 45px;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 30px;
  line-height: 36px;
}

.html-embed-googlemap {
  text-align: center;
}

.paragraph-9 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1rem;
}

.heading-33 {
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 2.5rem;
}

.div-block-44 {
  padding-bottom: 40px;
  padding-right: 20px;
}

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

.gray-text {
  color: #9e9e9e;
  font-family:
    Noto Sans JP,
    sans-serif;
}

.gray-text.small-text {
  line-height: 1rem;
}

.comingsoon {
  background-image: url("../images/22250470.jpg");
  background-position: 0 0;
  background-size: contain;
  height: 470px;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 1.2rem;
  position: relative;
}

.text-block-9 {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bold-text-5 {
  color: #7e483d;
}

.nomal-btn-left {
  border: 1px solid var(--base);
  background-color: #0000;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: 0;
  padding-left: 5px;
  padding-right: 5px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.nomal-btn-left:hover {
  background-color: var(--gold);
  text-decoration: none;
}

.nomal-btn-left.sub {
  background-color: #ffffffba;
}

.nomal-btn-left.sub:hover {
  background-color: var(--gold);
}

.nomal-btn-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.left-block-wine-overview-company {
  z-index: 1;
  background-color: #fff;
  border-top: 0 #e9e9e9;
  border-bottom: 0 #e9e9e9;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 70vh;
  padding: 100px;
  display: flex;
  position: relative;
  left: 80px;
  right: 0;
  box-shadow: 1px 1px 26px #0000000d;
}

.main-paragraph-company {
  color: #949494;
  text-align: left;
  max-width: 800px;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
}

.nomal-btn-left-02 {
  border: 1px solid var(--base);
  background-color: #0000;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  margin-right: 0;
  padding-left: 5px;
  padding-right: 5px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.nomal-btn-left-02:hover {
  background-color: var(--gold);
  text-decoration: none;
}

.nomal-btn-left-02.sub {
  background-color: #ffffffba;
}

.nomal-btn-left-02.sub:hover {
  background-color: var(--gold);
}

.br-pc {
  display: inline-block;
}

.btn-shop-sticky {
  background-color: var(--white);
  text-align: left;
  max-width: 940px;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 20px;
  position: static;
  top: 0;
}

.shop-sticky-wrapper {
  background-color: var(--white);
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  position: sticky;
  top: 57px;
}

.anchor {
  z-index: -1;
  margin-top: -130px;
  padding-top: 130px;
  display: block;
  position: relative;
}

.body-2 {
  background-color: var(--white);
}

.btn-shop-sticky-text {
  color: var(--base);
  margin-top: 5px;
  margin-bottom: 5px;
  padding-left: 5px;
  font-family:
    Noto Sans JP,
    sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.btn-shop-sticky-m {
  float: left;
}

.nomal-btn-left-03 {
  border: 1px solid var(--base);
  background-color: #0000;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  margin-right: 0;
  padding-left: 5px;
  padding-right: 5px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.nomal-btn-left-03:hover {
  background-color: var(--gold);
  text-decoration: none;
}

.nomal-btn-left-03.sub {
  background-color: #ffffffba;
}

.nomal-btn-left-03.sub:hover {
  background-color: var(--gold);
}

.section_shop {
  padding-top: 40px;
  padding-bottom: 40px;
}

.btn-02 {
  text-align: left;
  margin-top: 20px;
  margin-bottom: 20px;
  position: static;
  top: 40px;
}

.div-block-45 {
  position: relative;
}

.html-anchor-link {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.bold-text-6 {
  font-family:
    Noto Sans JP,
    sans-serif;
  font-weight: 400;
}

.nomal-btn-left-en {
  border: 1px solid var(--base);
  background-color: #0000;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: 0;
  padding-left: 5px;
  padding-right: 5px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.nomal-btn-left-en:hover {
  background-color: var(--gold);
  text-decoration: none;
}

.nomal-btn-left-en.sub {
  background-color: #ffffffba;
}

.nomal-btn-left-en.sub:hover {
  background-color: var(--gold);
}

.bottom-sns {
  padding-left: 40px;
}

.text-block-2-copy {
  text-align: center;
  width: auto;
  padding-top: 20px;
  padding-bottom: 10px;
  padding-left: 0;
  font-size: 15px;
  font-weight: 700;
  display: block;
}

.text-block-2-copy.mb-10 {
  margin-bottom: 10px;
}

.link-17,
.link-18,
.link-19,
.link-20,
.link-21 {
  color: #000;
  font-family:
    Noto Serif JP,
    sans-serif;
  font-size: 13px;
}

.div-block-47,
.bird-icon {
  text-align: center;
}

.list-3 {
  padding-left: 0;
}

.list-4 {
  padding-left: 0;
  padding-right: 40px;
}

.list-5 {
  padding-right: 0;
}

.image-102 {
  border-radius: 20px;
  margin-left: 92px;
}

.columns-14 {
  flex-direction: column;
  display: flex;
}

.heading-34 {
  font-size: 1.3rem;
}

.image-103 {
  float: left;
}

.text-span-8 {
  text-decoration: underline;
}

.grid-table {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px solid #d3d3d3;
  grid-template-rows: 1fr auto;
  grid-template-columns: auto 1fr 1fr 1fr;
  grid-auto-flow: row dense;
  margin-bottom: 10px;
}

.link {
  text-decoration: underline;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.btn-list {
  display: inline-flex;
}

.btn-list.gap-3 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.ml-auto {
  margin-left: auto;
}

.hero-header-btnlist {
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.border-bottom-0 {
  border-bottom: 1px #000;
}

@media screen and (max-width: 991px) {
  .nav-menu {
    background-color: #000;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .navbar-layout-3 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .navbar-layout-3.search {
    padding-left: 10px;
    padding-right: 10px;
  }

  .menu-wrapper {
    padding: 0;
  }

  .typography-container {
    width: 80%;
  }

  .menu-section-container {
    margin-right: 30px;
  }

  .first-section-wrapper,
  .second-section-wrapper {
    width: 100%;
  }

  .footer-head-white {
    padding-bottom: 4px;
  }

  .typography-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .main-paragraph {
    text-align: left;
  }

  .left-side-wine-section {
    width: 100%;
    height: auto;
    position: static;
  }

  .wine-section-text-wrapper {
    height: auto;
  }

  .sub-hero {
    height: auto;
    display: flex;
    overflow: hidden;
  }

  .sub-hero-text-wrapper {
    padding: 80px 40px;
  }

  .form-wrapper {
    border-right-width: 0;
    flex-direction: column;
    width: 100%;
    margin-top: 25px;
  }

  .contact-text-wrapper {
    align-items: flex-start;
    width: 100%;
    padding-left: 150px;
    padding-right: 0;
  }

  .contacts-container {
    flex-direction: column-reverse;
    height: auto;
  }

  .right-side-wine-section {
    width: 100%;
    position: static;
  }

  .blog-masonry-wrapper {
    width: 90%;
  }

  .blog-collection-list-wrapper {
    width: 100%;
  }

  .wine-catalogue-section {
    height: auto;
    display: flex;
  }

  .product-section-wrapper {
    align-items: center;
    display: flex;
  }

  .product-section {
    flex-direction: column;
    width: 100%;
    height: auto;
  }

  .product-section-left,
  .product-section-right {
    width: 100%;
    height: auto;
  }

  .wine-overview-section {
    flex-direction: column-reverse;
    height: auto;
  }

  .confutatio-wine {
    left: 209px;
  }

  .sanctus-wine {
    left: -226px;
    right: -37px;
  }

  .dealer-section {
    height: auto;
  }

  .dealer-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
  }

  .dealer-left-side {
    align-items: center;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .icons-wrapper {
    justify-content: center;
  }

  .wine-layout-3 {
    left: 209px;
  }

  .dealer-image {
    padding: 278px;
  }

  .row {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 300px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .slide-navigation {
    text-align: center;
  }

  .sub-header-layout-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .left-block-layout-2 {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .icons-wrapper-layout-2 {
    justify-content: center;
  }

  .single-wine-section {
    flex-direction: column-reverse;
  }

  .single-wine-section-reverse {
    flex-direction: column-reverse;
    height: auto;
  }

  .centered-icons-wrapper {
    justify-content: center;
  }

  .single-product-text-section {
    height: auto;
  }

  .product-wrapper {
    height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .banner-layout-3 {
    padding-left: 25px;
    padding-right: 25px;
  }

  .div-section,
  .three-card-wrapper {
    flex-direction: column;
  }

  .hero-home-layout-4 {
    height: auto;
    padding-top: 89px;
    padding-bottom: 89px;
  }

  .hero-wrapper-layout-4 {
    width: 90%;
  }

  .text-wrapper-layout-4 {
    border-bottom: 1px solid #ebebeb;
    width: 100%;
    padding: 20px 20px 50px;
  }

  .tab-home-layout-4 {
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .tab-section {
    height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .div {
    flex-direction: column-reverse;
    height: auto;
  }

  .right-block-tabs {
    width: 100%;
    min-height: 500px;
  }

  .layout-cards-1-2 {
    height: auto;
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .layout-cards-wrapper {
    width: 90%;
    height: auto;
  }

  .lyout-cards-container {
    flex-direction: column;
  }

  .layout-preview-wrapper {
    margin-bottom: 50px;
  }

  .team-hero {
    height: 600px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .team-text-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .team-member-card {
    margin-bottom: 20px;
  }

  .privacy-policy-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .privacy-wrapper {
    width: 80%;
  }

  .layout-cards-3-4 {
    height: auto;
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .main-paragraph-white {
    width: auto;
  }

  .events-slide-navigation,
  .blog-post-date {
    text-align: center;
  }

  .wrapper-post-04 {
    width: 70%;
  }

  .wrapper-post-05 {
    width: 30%;
  }

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

  .wine-collection-list-wrapper,
  .wine-collection-list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .wine-collection-item {
    width: 100%;
  }

  .wine-card-wrapper {
    align-items: center;
    width: 100%;
    min-width: auto;
    min-height: 200px;
    display: flex;
  }

  .wine-features-section {
    height: auto;
  }

  .features-row-1,
  .features-row-2,
  .features-row-3 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
    display: flex;
  }

  .features-column-1 {
    flex-grow: 0;
    flex-shrink: 0;
    align-items: center;
    display: block;
  }

  .features-card {
    margin-bottom: 10px;
  }

  .features-heading,
  .features-paragraph {
    text-align: left;
  }

  .left-block-single-wine {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .right-block-single-wine {
    background-size: contain;
    width: 100%;
    height: 786px;
  }

  .video-background-text {
    font-size: 24px;
  }

  .left-block-single-wine-reverse {
    background-size: contain;
    height: 600px;
  }

  .right-block-single-wine-reverse {
    width: 100%;
    height: 100%;
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .hero---about-us-layout-2 {
    flex-direction: column;
    height: auto;
  }

  .about-us-left-block-layout-2 {
    width: 100%;
    height: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .about-us-right-block-layout-2 {
    width: 100%;
    min-height: 100vh;
  }

  .wine-table {
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .contact-section {
    flex-direction: column;
    height: auto;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .heading-slide-lt-1,
  .heading-slide-lt-2,
  .heading-slide-lt-3 {
    font-size: 45px;
  }

  .features-first-row {
    flex-direction: column;
  }

  .features-card-white {
    width: 100%;
  }

  .features-second-row {
    flex-direction: column;
  }

  .left-block-wine-overview {
    order: 1;
    width: 100%;
    height: auto;
    position: static;
  }

  .right-block-wine-overview {
    width: 100%;
    position: static;
  }

  .wine-overview-text-wrapper {
    height: auto;
  }

  .hero---about-us-layout-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .tab-panel {
    flex-direction: column;
    display: block;
  }

  .tab-left-block {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .wine-tabs-wrapper {
    flex-direction: column-reverse;
    height: auto;
  }

  .tab-text-wrapper {
    width: 80%;
  }

  .tab-icons-wrapper {
    justify-content: center;
  }

  .tab-right-block {
    width: 100%;
    min-height: 500px;
  }

  .contact-form-wrapper-layout-3 {
    width: 90%;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .main-head-layout-4 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 33px;
    line-height: 40px;
  }

  .main-paragraph-layout-4 {
    text-align: center;
  }

  .sub-hero-home-layout-4 {
    height: auto;
    padding-top: 89px;
    padding-bottom: 89px;
  }

  .sub-hero-wrapper-layout-4 {
    width: 90%;
  }

  .parallax-paragraph {
    width: auto;
  }

  .recent-blog-block {
    width: 95%;
  }

  .post-date {
    text-align: center;
  }

  .hero---about-us-layout-4 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .post-page-content {
    padding: 70px 20px;
  }

  .single-wine-wrapper {
    border-bottom: 1px solid #ebebeb;
    width: 100%;
    padding: 20px 20px 50px;
  }

  .main-head-single-wine-page {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 33px;
    line-height: 40px;
  }

  .icons-wrapper-single-wine {
    justify-content: center;
  }

  .catalogue-section {
    flex-direction: column;
    align-items: center;
  }

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

  .catalogue-collection-list {
    flex-flow: wrap;
    justify-content: center;
    align-items: stretch;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .catalogue-collection-item {
    float: none;
    flex-basis: 100%;
    display: block;
  }

  .catalogue-item-wrapper {
    align-items: center;
    width: 100%;
    min-width: auto;
    min-height: 200px;
    display: flex;
  }

  .catalogue-collection-list-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: block;
  }

  .credits-text {
    padding-left: 0;
  }

  .form-wrapper-layout-4 {
    border-right-width: 0;
    flex-direction: column;
    width: 100%;
    margin-top: 25px;
  }

  .catalogue-section-post {
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  .paragraph-2 {
    text-align: left;
  }

  .columns-3 {
    justify-content: flex-start;
    align-items: stretch;
    padding-right: 0;
    display: flex;
  }

  .container-3 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container-4 {
    margin-bottom: 48px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .heading-21 {
    margin-top: 0;
    margin-bottom: 24px;
  }

  .div-block-5 {
    margin-bottom: 48px;
  }

  .heading-22 {
    margin-top: 0;
    margin-bottom: 24px;
  }

  .paragraph-3,
  .paragraph-4,
  .paragraph-5 {
    text-align: left;
  }

  .column-8 {
    align-items: center;
    display: flex;
  }

  .div-block-13 {
    margin-left: 0;
    margin-right: 0;
  }

  .nomal-btn-img {
    margin-top: 0;
  }

  .nomal-btn-right {
    justify-content: center;
    align-items: center;
  }

  .nomal-btn-right.sub {
    align-items: center;
  }

  .text-block-2 {
    width: 100%;
  }

  .jyo_icon {
    max-width: 310px;
  }

  .sake-card-wrapper {
    align-items: center;
    width: 100%;
    min-width: auto;
    min-height: 200px;
    display: flex;
  }

  .sake-collection-item {
    width: 100%;
  }

  .sake-collection-list,
  .sake-collection-list-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .bg-header {
    background-image: linear-gradient(#f5e3cacc, #f5e3cacc), url("../images/Capture.JPG");
    background-position:
      0 0,
      0 -3%;
    background-size: auto, cover;
  }

  .br-sp {
    display: inline-block;
  }

  .m-table-cell-left-company {
    width: 40%;
  }

  .m-table-cell-left-first,
  .m-table-cell-sub-company {
    width: 60%;
  }

  .image-product-logo {
    height: 200px;
    display: inline;
  }

  .headding-q,
  .headding-a {
    margin-bottom: 24px;
  }

  .map-link {
    width: 15%;
    height: 14%;
  }

  .dropdown {
    margin-left: 0;
    margin-right: 0;
    display: block;
  }

  .dropdown-list.w--open {
    padding-bottom: 0;
  }

  .container-en {
    text-align: center;
    background-image: none;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }

  .section-en-01 {
    background-image: none;
    position: relative;
  }

  .container-en-02 {
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .section-en-02 {
    background-image: linear-gradient(to right, var(--white), #f4e4ca);
  }

  .section-en-03 {
    background-color: var(--white);
    background-image: none;
  }

  .columns-3-en {
    justify-content: flex-start;
    align-items: stretch;
    padding-right: 0;
    display: flex;
  }

  .section_sub_bg {
    background-image: linear-gradient(to bottom, var(--white) 75%, #ffffffd1 83%, #ffffffb5), url("../images/0915_0037.jpg");
    background-position:
      0 0,
      50% 100%;
    background-repeat: repeat, repeat-x;
    background-size: auto, contain;
  }

  .image-101 {
    margin-left: -40px;
    margin-right: -40px;
  }

  .container-en-inner {
    margin-left: -80px;
    margin-right: -80px;
  }

  .nomal-btn-left {
    justify-content: center;
    align-items: center;
  }

  .nomal-btn-left.sub {
    align-items: center;
  }

  .left-block-wine-overview-company {
    order: 1;
    width: 100%;
    height: auto;
    position: static;
  }

  .main-paragraph-company {
    text-align: left;
  }

  .nomal-btn-left-02 {
    justify-content: center;
    align-items: center;
  }

  .nomal-btn-left-02.sub {
    align-items: center;
  }

  .br-pc {
    display: inline-block;
  }

  .btn-shop-sticky {
    max-width: 728px;
  }

  .shop-sticky-wrapper {
    top: 59px;
  }

  .anchor {
    z-index: -1;
    margin-top: -130px;
    padding-top: 130px;
    padding-bottom: 0;
    padding-right: 0;
    display: block;
    position: relative;
  }

  .anchor:focus-visible {
    margin-top: -130px;
    padding-top: 130px;
  }

  .anchor[data-wf-focus-visible] {
    margin-top: -130px;
    padding-top: 130px;
  }

  .nomal-btn-left-03 {
    justify-content: center;
    align-items: center;
  }

  .nomal-btn-left-03.sub {
    align-items: center;
  }

  .section_shop {
    padding-left: 10px;
    padding-right: 10px;
  }

  .nomal-btn-left-en {
    justify-content: center;
    align-items: center;
  }

  .nomal-btn-left-en.sub {
    align-items: center;
  }

  .bottom-sns {
    padding-left: 20px;
  }

  .text-block-2-copy {
    width: 100%;
  }

  .image-102 {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .nav-menu {
    height: auto;
  }

  .navbar-layout-3 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .menu-wrapper {
    height: auto;
  }

  .typography-container {
    width: 80%;
  }

  .menu-head {
    font-size: 1rem;
    line-height: 20px;
  }

  .menu-section-container {
    border-left-style: none;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .menu-links {
    font-size: 14px;
    line-height: 16px;
  }

  .first-section-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 20px;
  }

  .second-section-wrapper {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
    padding-top: 20px;
  }

  .typography-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .main-paragraph {
    text-align: left;
  }

  .left-side-wine-section {
    padding: 90px;
  }

  .contact-text-wrapper {
    padding-left: 110px;
    padding-right: 0;
  }

  .contacts-container {
    height: auto;
  }

  .blog-masonry-wrapper {
    flex-direction: column;
  }

  .blog-post-collection-item,
  .collection-list {
    width: 100%;
  }

  .product-section-left {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .link-14 {
    font-size: 1rem;
  }

  .events-section {
    padding: 0;
  }

  .row {
    min-width: auto;
  }

  .footer-container {
    flex-wrap: wrap;
  }

  .footer-col {
    flex: 0 0 50%;
  }

  .recent-posts {
    padding: 60px 20px;
  }

  .product-wrapper {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .heading-sub,
  .main-hero-head {
    font-size: 35px;
    line-height: 50px;
  }

  .confutatio-card,
  .lacrimosa-card,
  .dies-irae-card,
  .sanctus-card {
    width: 100%;
  }

  .events-section-white {
    padding: 0;
  }

  .text-wrapper-layout-4 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .parallax-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .welcome-head {
    text-align: center;
  }

  .layout-preview-wrapper {
    width: 100%;
  }

  .team-hero {
    height: 550px;
  }

  .team-text-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }

  .paragraph {
    font-size: 22px;
  }

  .column-1,
  .column-2,
  .column-3 {
    display: none;
  }

  .yellow-link {
    margin-top: 0;
    font-size: 1rem;
  }

  .text-section-parallax {
    padding-left: 20px;
    padding-right: 20px;
  }

  .privacy-policy-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .image-parallax-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .events-card-wrapper {
    width: 100%;
    margin-left: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .wrapper-post-04,
  .wrapper-post-05 {
    width: 100%;
  }

  .head-about-page {
    font-size: 35px;
    line-height: 50px;
  }

  .image-wrapper-about-page {
    flex-direction: column;
  }

  .subheader-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .wine-card-wrapper {
    align-items: center;
    margin-right: 0;
  }

  .video-background-opacity-wrapper {
    padding: 50px;
  }

  .video-background-text {
    font-size: 20px;
    line-height: 28px;
  }

  .about-us-left-block-layout-2 {
    padding: 111px 45px;
  }

  .about-us-text-wrapper-layout-2 {
    padding: 0;
  }

  .about-us-heading-layout-2 {
    font-size: 35px;
    line-height: 50px;
  }

  .table-link {
    font-size: 1rem;
  }

  .contact-hero-wrapper-layout-2 {
    text-align: center;
  }

  .heading-slide-lt-1,
  .heading-slide-lt-2,
  .heading-slide-lt-3 {
    font-size: 35px;
    line-height: 50px;
  }

  .left-block-wine-overview {
    padding: 90px;
  }

  .wine-showcase {
    min-height: auto;
    padding: 0;
  }

  .wine-showcase-wrapper {
    height: auto;
  }

  .wine-showcase-row {
    flex-direction: column;
    height: 100%;
  }

  .card-link {
    min-height: 600px;
  }

  .about-us-heading-layout-3 {
    font-size: 35px;
    line-height: 50px;
  }

  .tab-text-wrapper {
    width: 85%;
  }

  .video-background-opacity-wrapper-lt-4 {
    padding: 50px;
  }

  .search-field {
    width: 90%;
  }

  .search-result {
    padding-left: 15px;
    padding-right: 15px;
  }

  .post-page-content {
    padding: 50px 20px;
  }

  .single-wine-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .catalogue-section {
    padding-top: 65px;
    padding-bottom: 0;
  }

  .catalogue-wrapper {
    align-items: stretch;
  }

  .catalogue-collection-list {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }

  .catalogue-collection-item {
    flex-direction: column;
    flex: 0 auto;
    justify-content: center;
    width: 100%;
    display: block;
  }

  .catalogue-item-wrapper {
    align-items: center;
    margin-right: 0;
  }

  .product-image {
    width: 200px;
  }

  .credits-text {
    padding-left: 0;
  }

  .catalogue-section-post {
    padding-top: 65px;
    padding-bottom: 0;
  }

  .hero-2 {
    padding: 40px 20px;
  }

  .h2 {
    font-size: 1.4rem;
  }

  .flex-container {
    flex-direction: column;
  }

  .hero-image-mask {
    order: -1;
    margin-left: 0;
    margin-right: 0;
  }

  .footer-image-2 {
    object-fit: contain;
  }

  .columns-3 {
    margin-top: 20px;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 60px;
    padding-left: 10px;
    padding-right: 10px;
    display: block;
  }

  .hero-overlay {
    padding: 40px 20px;
  }

  .container-2,
  .container-3,
  .container-4 {
    margin-top: 0;
  }

  .column-8 {
    justify-content: center;
  }

  .div-block-24 {
    background-image: radial-gradient(circle farthest-corner at 100% 100%, #ffffff47, var(--white) 33%, white), url("../images/0915_0037.jpg");
    background-position:
      0 0,
      100% 100%;
    background-size: auto, cover;
  }

  .jyo_icon {
    min-width: 0;
    max-width: 100%;
  }

  .columns-11,
  .columns-12 {
    display: block;
  }

  .sake-card-wrapper {
    align-items: center;
    margin-right: 0;
    padding: 10px;
  }

  .sake-table-cell-left {
    width: 83%;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .sake-table-cell {
    width: 17%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .text-block-6 {
    display: block;
  }

  .sake-table-cell-head {
    width: 100%;
  }

  .container-5 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .bg-header {
    background-image: linear-gradient(to bottom, null, null), url("../images/Capture.JPG");
    background-position:
      0 0,
      0 -10%;
  }

  .m-table-cell-left {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .sake-table-cell-copy {
    width: 17%;
  }

  .m-table-cell {
    width: 66%;
  }

  .m-table-cell-left-company {
    width: 40%;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .m-table-cell-company {
    width: 17%;
  }

  .m-table-cell-left-first,
  .m-table-cell-sub-company {
    width: 60%;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .bd-layout {
    grid-template-columns: 1fr;
  }

  .products-side-menu {
    order: 2;
  }

  .column-12 {
    margin-bottom: 40px;
  }

  .product-table-cell-left {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .image-product-logo {
    max-width: 100%;
    height: auto;
    max-height: 220px;
  }

  .headding-q,
  .headding-a {
    padding-top: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .dropdown-list {
    position: relative;
  }

  .btn-01 {
    text-align: center;
    margin-top: 10px;
  }

  .section-en-01 {
    overflow: hidden;
  }

  .heading-12-en,
  .heading-13-en {
    text-align: center;
  }

  .columns-3-en {
    margin-top: 20px;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 60px;
    padding-left: 10px;
    padding-right: 10px;
    display: block;
  }

  .img-wrapper {
    margin-top: 24px;
  }

  .img-wrapper-h-img {
    width: 100%;
    height: auto;
  }

  .img-wrapper-h {
    width: 100%;
    margin-top: 24px;
  }

  .img-wrapper-w {
    margin-top: 24px;
  }

  .section_sub_bg {
    background-image: linear-gradient(to bottom, var(--white) 82%, #ffffffd1 92%, #ffffffb5), url("../images/0915_0037.jpg");
    background-position:
      0 0,
      50% 100%;
    background-repeat: repeat, repeat-x;
    background-size: auto, contain;
  }

  .container-en-inner {
    margin-left: -80px;
    margin-right: -80px;
  }

  .left-block-wine-overview-company {
    padding: 90px 60px;
  }

  .main-paragraph-company {
    text-align: left;
  }

  .btn-shop-sticky {
    text-align: center;
    max-width: none;
    margin-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .shop-sticky-wrapper {
    text-align: center;
    margin-top: 10px;
  }

  .anchor {
    z-index: -1;
    position: relative;
  }

  .btn-shop-sticky-text {
    font-size: 0.9rem;
  }

  .section_shop {
    padding-bottom: 20px;
    display: block;
  }

  .bottom-sns {
    padding-left: 0;
  }

  .image-102 {
    width: 100%;
    margin-left: 0;
    margin-right: 10px;
    padding-right: 0;
  }
}

@media screen and (max-width: 479px) {
  .nav-menu {
    height: auto;
  }

  .navbar-layout-3 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .typography-container {
    width: 90%;
    padding: 10px;
  }

  .first-section-wrapper {
    padding-left: 0;
  }

  .typography-section {
    padding-top: 83px;
    padding-bottom: 83px;
  }

  .menu-button-layout-1 {
    width: auto;
    height: auto;
    padding: 20px;
  }

  .main-paragraph {
    text-align: left;
    font-family:
      Noto Sans JP,
      sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .left-side-wine-section {
    padding: 50px 30px;
  }

  .wine-section-text-wrapper {
    height: auto;
  }

  .main-head {
    font-size: 26px;
    line-height: 35px;
  }

  .sub-hero-text-wrapper {
    flex: 1;
    padding: 100px 20px;
  }

  .form-wrapper {
    width: 90%;
  }

  .form-block {
    width: 100%;
  }

  .contact-text-wrapper {
    align-items: center;
    padding-left: 0;
  }

  .contacts-container {
    height: auto;
  }

  .blog-post-hover-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }

  .product-section-wrapper {
    padding: 60px 0;
  }

  .product-section {
    width: 100%;
  }

  .product-section-right {
    padding-left: 15px;
    padding-right: 15px;
  }

  .info-wrapper,
  .product-info-wrapper {
    width: 100%;
  }

  .menu-button-layout-2 {
    width: auto;
    height: auto;
    padding: 10px;
  }

  .menu-button-3 {
    width: auto;
    height: auto;
  }

  .confutatio-wine {
    top: 148px;
    left: 3px;
    right: 378px;
  }

  .sanctus-wine {
    left: 8px;
  }

  .dealer-left-side {
    align-items: flex-start;
    padding-left: 15px;
    padding-right: 15px;
  }

  .box {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .wine-layout-3 {
    top: 148px;
    left: 3px;
    right: 378px;
  }

  .link-14 {
    font-size: 14px;
  }

  .opacity {
    padding-left: 20px;
    padding-right: 20px;
  }

  .samnio-logo-layout-1 {
    margin-bottom: 10px;
  }

  .events-section {
    overflow: hidden;
  }

  .row {
    min-width: auto;
  }

  .events-slider {
    position: relative;
    overflow: hidden;
  }

  .events-wrapper {
    overflow: hidden;
  }

  .img {
    display: none;
  }

  .hero-layout-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .tab-wrapper {
    width: 90%;
  }

  .left-block-layout-2 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .icons-wrapper-layout-2 {
    width: 90%;
  }

  .footer-col {
    flex-basis: 100%;
    padding-left: 40px;
  }

  .centered-icons-wrapper {
    flex-direction: column;
    height: auto;
  }

  .single-product-text-section,
  .product-wrapper {
    height: auto;
  }

  .menu-button-layout-4 {
    width: auto;
    height: auto;
  }

  .table-cell {
    justify-content: center;
    padding-left: 0;
  }

  .table-right-cell {
    align-items: center;
    padding-left: 0;
  }

  .table-icons {
    width: 40px;
  }

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

  .div-section,
  .three-card-wrapper {
    width: 100%;
  }

  .events-section-white {
    overflow: hidden;
  }

  .text-wrapper-layout-4 {
    border-bottom: 1px solid #dedede;
  }

  .parallax-section {
    height: auto;
    padding: 110px 20px;
  }

  .welcome-head {
    text-align: center;
    font-size: 26px;
    line-height: 35px;
  }

  .hero-paragraph {
    text-align: center;
  }

  .contact-head-layout-4 {
    height: auto;
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .team-hero {
    height: auto;
    padding: 90px 15px;
  }

  .team-text-wrapper {
    padding: 0 30px;
  }

  .paragraph {
    text-align: center;
    font-size: 18px;
  }

  .team-member-card {
    padding: 20px;
  }

  .user-photo {
    width: 60px;
    height: 60px;
  }

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

  .text-section-parallax {
    padding-left: 20px;
    padding-right: 20px;
  }

  .privacy-policy-section {
    padding-top: 83px;
    padding-bottom: 83px;
  }

  .privacy-wrapper {
    width: 95%;
    padding: 10px;
  }

  ._404-section {
    max-height: auto;
  }

  .preview-link {
    font-size: 1rem;
  }

  .main-paragraph-white {
    font-size: 18px;
    line-height: 28px;
  }

  .image-parallax-section {
    height: auto;
    padding: 110px 20px;
  }

  .events-card-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .blog-post-date {
    text-align: center;
  }

  .wrapper-post-04,
  .wrapper-post-05 {
    width: 100%;
  }

  .dealer-icon-wrapper {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .image-wrapper-about-page {
    flex-direction: column;
  }

  .subheader-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .form-block-left-side {
    width: 100%;
  }

  .wine-card-wrapper {
    min-width: auto;
    height: auto;
    min-height: 220px;
    margin-bottom: 20px;
    display: flex;
  }

  .wine-features-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .features-wrapper {
    width: 90%;
  }

  .features-container {
    padding-top: 0;
    padding-bottom: 0;
  }

  .features-row-1,
  .features-row-2,
  .features-row-3 {
    padding-bottom: 0;
  }

  .features-card {
    margin-bottom: 10px;
  }

  .left-block-single-wine {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .single-wine-text-wrapper {
    width: 85%;
  }

  .single-icon-wrapper {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .video-background-opacity-wrapper {
    background-color: #000000cf;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .video-background-text {
    margin-bottom: 15px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 20px;
    font-weight: 200;
    line-height: 30px;
  }

  .about-us-left-block-layout-2 {
    height: auto;
    padding: 0 30px;
  }

  .about-us-right-block-layout-2 {
    height: auto;
  }

  .about-us-text-wrapper-layout-2 {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 60px 0;
  }

  .about-us-heading-layout-2 {
    text-align: left;
  }

  .wine-table-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .table-header {
    font-size: 1rem;
  }

  .table-link {
    font-size: 14px;
  }

  .contact-form-layout-2,
  .features-first-row,
  .features-second-row {
    width: 100%;
  }

  .left-block-wine-overview {
    padding: 50px 30px;
  }

  .wine-overview-text-wrapper {
    height: auto;
  }

  .wine-table-black {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .table-cell-head,
  .table-cell-head-right,
  .table-cell-left,
  .table-cell-bottom,
  .table-cell-bottom-right {
    justify-content: center;
    padding-left: 0;
  }

  .tab-left-block {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .tab-text-wrapper {
    width: 85%;
  }

  .contact-form-wrapper-layout-3 {
    width: 80%;
  }

  .contact-info-wrapper-layout-3 {
    width: 100%;
  }

  .contact-heading {
    font-size: 27px;
  }

  .form-block-layout-3 {
    width: 100%;
  }

  .main-head-layout-4 {
    text-align: center;
    font-size: 26px;
  }

  .video-background-opacity-wrapper-lt-4 {
    background-color: #000000cf;
    justify-content: center;
    align-items: center;
    padding: 0;
  }

  .post-date {
    text-align: center;
  }

  .heading-search-page {
    font-size: 32px;
  }

  .search-field {
    width: 90%;
    min-width: auto;
  }

  .post-page-content {
    padding: 40px 15px;
  }

  .description-container {
    padding: 15px 16px;
  }

  .single-wine-wrapper {
    border-bottom: 1px solid #dedede;
  }

  .main-head-single-wine-page {
    text-align: center;
    font-size: 26px;
  }

  .catalogue-section {
    padding-top: 50px;
    padding-bottom: 0;
  }

  .catalogue-item-wrapper {
    min-width: auto;
    height: auto;
    min-height: 220px;
    margin-bottom: 20px;
    display: flex;
  }

  .product-image {
    width: 200px;
  }

  .product-header {
    font-size: 26px;
    line-height: 35px;
  }

  .form-wrapper-layout-4 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .catalogue-section-post {
    padding-top: 50px;
    padding-bottom: 0;
  }

  .changelog-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .changelog-container {
    padding: 25px;
  }

  .columns {
    padding-left: 0;
    display: none;
  }

  .heading-4 {
    margin-right: 0;
  }

  .footer-flex-container {
    flex-direction: column;
  }

  .footer-logo-link-2 {
    height: 60px;
  }

  .footer-heading {
    margin-top: 20px;
  }

  .text-block {
    text-align: center;
  }

  .heading-14 {
    margin-left: 150px;
  }

  .columns-3 {
    padding-left: 0;
    padding-right: 0;
  }

  .centered-container {
    text-align: left;
  }

  .bold-text {
    font-size: 13px;
  }

  .container-4 {
    overflow: hidden;
  }

  .paragraph-5 {
    margin-top: 10px;
    margin-bottom: 0;
  }

  .image-2 {
    width: 300px;
    height: auto;
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .image-3 {
    width: 300px;
    height: 186px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .image-4,
  .image-5 {
    width: 300px;
    height: auto;
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .div-block-9 {
    width: 60px;
    margin-left: auto;
    margin-right: auto;
  }

  .div-block-10 {
    width: 60px;
    margin-left: auto;
    margin-right: auto;
  }

  .div-block-11 {
    width: 100px;
    margin-left: auto;
    margin-right: auto;
  }

  .image-6 {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .column-8 {
    text-align: left;
    padding-left: 30px;
    padding-right: 30px;
    position: static;
  }

  .heading-27 {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-15 {
    margin-left: 0;
    margin-right: -250px;
  }

  .image-7 {
    margin-left: -55px;
    margin-right: 0;
    position: static;
  }

  .paragraph-6 {
    text-align: left;
  }

  .div-block-18 {
    justify-content: flex-end;
    margin-left: auto;
    margin-right: auto;
  }

  .nomal-btn-right {
    margin-left: auto;
    margin-right: auto;
  }

  .column-11 {
    margin-bottom: 24px;
  }

  .nav-link-4 {
    display: block;
  }

  .div-block-25 {
    background-color: #f2dbbc;
    margin-top: 24px;
    margin-left: 0;
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
    display: block;
  }

  .card__thumb {
    aspect-ratio: 1.6 / 1;
    width: 100%;
    height: 100%;
  }

  .sub-header-title {
    font-size: 1.5rem;
  }

  .div-block-32 {
    background-image: url("../images/img-building.jpg");
  }

  .sake-card-heading {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .sake-card-wrapper {
    min-width: auto;
    height: 100%;
    min-height: 220px;
    margin-bottom: 20px;
    padding: 0;
    display: flex;
  }

  .div-block-33 {
    line-height: 20px;
  }

  .sake-table-cell-left {
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .sake-table-cell {
    justify-content: center;
    width: 50px;
    padding-left: 0;
    padding-right: 0;
  }

  .text-block-6 {
    display: block;
  }

  .div-block-34 {
    width: 50px;
    display: none;
  }

  .sake-table-cell-head {
    text-align: left;
    border-right-style: none;
    justify-content: flex-start;
    padding-left: 10px;
  }

  .sake-table-cell-head-right {
    border-left-style: none;
    justify-content: center;
    padding-left: 0;
    padding-right: 10px;
  }

  .shop-title {
    font-size: 0.9rem;
  }

  .bg-header {
    background-image: linear-gradient(to bottom, null, null), url("../images/Capture.JPG");
    background-position:
      0 0,
      50% 0;
  }

  .m-table-cell-left {
    justify-content: flex-start;
    width: 100%;
    padding: 10px;
  }

  .sake-table-cell-copy {
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .m-table {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .m-table-cell {
    text-align: left;
    justify-content: flex-start;
    width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .m-table-cell-head {
    border-right-style: none;
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .m-table-cell-head-right {
    border-left-style: none;
    justify-content: center;
    padding-left: 0;
  }

  .main-head-company {
    font-size: 25px;
    line-height: 35px;
  }

  .m-table-company {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .m-table-sub-row-company {
    display: block;
  }

  .m-table-cell-left-company {
    justify-content: center;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .m-table-cell-company {
    justify-content: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .m-table-cell-left-first,
  .m-table-cell-sub-company {
    justify-content: center;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .sub_section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .heading-32 {
    font-size: 1.3rem;
  }

  .sub-heading {
    font-size: 1.7rem;
    line-height: 2rem;
  }

  .container-bnr {
    padding-left: 0;
    padding-right: 0;
  }

  .product-table-cell {
    white-space: nowrap;
    justify-content: flex-end;
    padding-left: 5px;
    padding-right: 5px;
  }

  .text-block-8 {
    font-size: 1rem;
  }

  .headding-q,
  .headding-a {
    padding-left: 0;
    padding-right: 0;
  }

  .number {
    max-width: 290px;
  }

  .number-link-block-left {
    margin-right: 5px;
  }

  .number-link-block-next {
    margin-left: 0;
  }

  .map {
    display: none;
  }

  .link-block-3 {
    margin-bottom: 20px;
  }

  .image-16 {
    margin-bottom: 20px;
  }

  .columns-3-en {
    padding-left: 0;
    padding-right: 0;
  }

  .columns-13 {
    display: block;
  }

  .img-wrapper {
    width: 280px;
    height: 170px;
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
  }

  .img-wrapper-h-img {
    width: 100%;
  }

  .img-wrapper-h,
  .img-wrapper-w {
    width: 280px;
    height: 170px;
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
  }

  .section_sub_bg {
    background-image: linear-gradient(to bottom, var(--white) 94%, #ffffffd1 96%, #ffffffb5), url("../images/0915_0037.jpg");
    background-position:
      0 0,
      50% 100%;
    background-repeat: repeat, repeat-x;
    background-size: auto, contain;
  }

  .container-en-inner {
    margin-left: -40px;
    margin-right: -40px;
  }

  .nomal-btn-left {
    margin-left: auto;
    margin-right: auto;
  }

  .left-block-wine-overview-company {
    padding: 40px 20px 50px;
  }

  .main-paragraph-company {
    text-align: left;
    font-family:
      Noto Sans JP,
      sans-serif;
    font-size: 0.9rem;
    line-height: 1.4rem;
  }

  .nomal-btn-left-02 {
    margin-left: 10px;
    margin-right: auto;
  }

  .br-pc {
    display: block;
  }

  .btn-shop-sticky {
    text-align: center;
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 0;
  }

  .btn-shop-sticky-text {
    font-size: 14px;
  }

  .btn-shop-sticky-m {
    float: left;
    margin-bottom: 10px;
  }

  .nomal-btn-left-03 {
    margin-left: 0;
    margin-right: auto;
  }

  .section_shop {
    padding-top: 10px;
    padding-bottom: 0;
  }

  .nomal-btn-left-en {
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  .sp-br {
    display: block;
  }

  .grid-table {
    grid-template-columns: auto auto 1fr 1fr;
  }

  .hero-header-btnlist {
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

#w-node-_04fa4327-458d-77bd-863c-8b11c45872d2-c45872c5 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_04fa4327-458d-77bd-863c-8b11c45872de-c45872c5 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_04fa4327-458d-77bd-863c-8b11c45872ea-c45872c5 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_04fa4327-458d-77bd-863c-8b11c4587302-c45872c5 {
  grid-area: 1 / 6 / 2 / 7;
}

#w-node-_04fa4327-458d-77bd-863c-8b11c45872d4-c45872c5 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_04fa4327-458d-77bd-863c-8b11c45872da-c45872c5 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_43ef26e4-ca50-8e26-d5e5-6783ce3cdb6d-c45872c5 {
  grid-area: 4 / 2 / 5 / 3;
}

#w-node-_4b7974bc-3c46-daf6-1a55-5ef40d289f8a-c45872c5 {
  grid-area: 5 / 2 / 6 / 3;
}

#w-node-_718c503e-a20f-3895-aad8-6715880e10cb-c45872c5 {
  grid-area: 6 / 2 / 7 / 3;
}

#w-node-ab13f0f8-8f37-3960-cacf-e5487f5b3185-c45872c5 {
  grid-area: 7 / 2 / 8 / 3;
}

#w-node-_04fa4327-458d-77bd-863c-8b11c45872e3-c45872c5 {
  grid-area: 2 / 3 / 3 / 4;
}

#w-node-_04fa4327-458d-77bd-863c-8b11c45872e0-c45872c5 {
  grid-area: 3 / 3 / 4 / 4;
}

#w-node-_36ba4c07-0ad1-154e-c8c3-ba31812978c9-c45872c5 {
  grid-area: 4 / 3 / 5 / 4;
}

#w-node-_6d2ba7a6-e5e9-e416-56fe-2f149b6d312d-c45872c5 {
  grid-area: 5 / 3 / 6 / 4;
}

#w-node-_8bcd4d22-d14c-0513-b0f7-fd6f4c6c5495-c45872c5 {
  grid-area: 6 / 3 / 7 / 4;
}

#w-node-_7fe289b4-408b-c190-a580-e6dbca045271-c45872c5 {
  grid-area: 7 / 3 / 8 / 4;
}

#w-node-_04fa4327-458d-77bd-863c-8b11c45872ec-c45872c5 {
  grid-area: 2 / 4 / 3 / 5;
}

#w-node-_9ba8950e-a36e-8d65-f9d0-2a1069481a25-c45872c5 {
  grid-area: 4 / 4 / 5 / 5;
}

#w-node-_04fa4327-458d-77bd-863c-8b11c45872f2-c45872c5 {
  grid-area: 3 / 4 / 4 / 5;
}

#w-node-_04fa4327-458d-77bd-863c-8b11c45872f6-c45872c5 {
  grid-area: 1 / 5 / 2 / 6;
}

#w-node-_011b94dd-c593-a0cc-fdba-754a3b00557c-c45872c5 {
  grid-area: 6 / 4 / 7 / 5;
}

#w-node-_09557b8a-618f-f611-b300-f40ff0821ec9-c45872c5 {
  grid-area: 5 / 4 / 6 / 5;
}

#w-node-_04fa4327-458d-77bd-863c-8b11c45872f8-c45872c5 {
  grid-area: 2 / 5 / 3 / 6;
}

#w-node-_04fa4327-458d-77bd-863c-8b11c45872fb-c45872c5 {
  grid-area: 3 / 5 / 4 / 6;
}

#w-node-_04fa4327-458d-77bd-863c-8b11c45872fe-c45872c5 {
  grid-area: 4 / 5 / 5 / 6;
}

#w-node-d3799a7d-0160-1e23-95fa-c5fe4826a6ac-c45872c5 {
  grid-area: 5 / 5 / 6 / 6;
}

#w-node-de2fb9f2-65b4-a733-4f4b-9af2bdf33875-c45872c5 {
  grid-area: 6 / 5 / 7 / 6;
}

#w-node-_04fa4327-458d-77bd-863c-8b11c4587304-c45872c5 {
  grid-area: 2 / 6 / 3 / 7;
}

#w-node-_04fa4327-458d-77bd-863c-8b11c45872cd-c45872c5 {
  grid-area: 7 / 6 / 8 / 7;
}

#w-node-_04fa4327-458d-77bd-863c-8b11c4587307-c45872c5 {
  grid-area: 3 / 6 / 4 / 7;
}

#w-node-a7b29c86-e51b-4c34-31dd-579880929723-c45872c5 {
  grid-area: 4 / 6 / 5 / 7;
}

#w-node-cbf04097-5947-e067-a544-5f98fb16119e-c45872c5 {
  grid-area: 5 / 6 / 6 / 7;
}

#w-node-_920207e5-1902-3d3b-694d-aa2ae544e0f2-c45872c5 {
  grid-area: 6 / 6 / 7 / 7;
}

#w-node-_5816756b-9005-6f58-b285-a1a63a7608ae-406b7a96,
#w-node-_5816756b-9005-6f58-b285-a1a63a7608b4-406b7a96,
#w-node-_5816756b-9005-6f58-b285-a1a63a7608c0-406b7a96,
#w-node-_5816756b-9005-6f58-b285-a1a63a7608c6-406b7a96,
#w-node-a255ba67-696b-607b-21d4-257c28eb615a-e1fe6c9b,
#w-node-a255ba67-696b-607b-21d4-257c28eb616c-e1fe6c9b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_466ca2f4-343d-314c-6b87-27ec523560c6-e1fe6c9b,
#w-node-_466ca2f4-343d-314c-6b87-27ec523560d4-e1fe6c9b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ee8b32d9-3f41-efc6-fdde-8bcf73e2d57f-e1fe6c9b,
#w-node-ee8b32d9-3f41-efc6-fdde-8bcf73e2d591-e1fe6c9b,
#w-node-_5cf5d4fe-eb23-726d-c2a0-458d2eca4a03-e1fe6c9b,
#w-node-_5cf5d4fe-eb23-726d-c2a0-458d2eca4a11-e1fe6c9b,
#w-node-bb1772a7-5b7c-af7e-3156-b25398c399e8-e1fe6c9b,
#w-node-bb1772a7-5b7c-af7e-3156-b25398c399f6-e1fe6c9b,
#w-node-a420c10b-6966-55df-3c32-37dff3ee3d7a-e1fe6c9b,
#w-node-a420c10b-6966-55df-3c32-37dff3ee3d88-e1fe6c9b,
#w-node-ee394677-19f2-fc09-67f4-bf68df63554a-e1fe6c9b,
#w-node-ee394677-19f2-fc09-67f4-bf68df635554-e1fe6c9b,
#w-node-ee394677-19f2-fc09-67f4-bf68df635558-e1fe6c9b,
#w-node-ee394677-19f2-fc09-67f4-bf68df635562-e1fe6c9b,
#w-node-ad6ce14d-6d8e-ed2a-9dd4-3e4ccb7d497c-e1fe6ce9,
#w-node-ad6ce14d-6d8e-ed2a-9dd4-3e4ccb7d498e-e1fe6ce9,
#w-node-f1646e6d-ef67-4808-d447-d53f91e1f1f9-e1fe6ce9,
#w-node-f1646e6d-ef67-4808-d447-d53f91e1f207-e1fe6ce9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 767px) {
  #w-node-_04fa4327-458d-77bd-863c-8b11c45872d2-c45872c5 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_04fa4327-458d-77bd-863c-8b11c45872de-c45872c5 {
    grid-area: 8 / 1 / 9 / 2;
  }

  #w-node-_04fa4327-458d-77bd-863c-8b11c45872ea-c45872c5 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_04fa4327-458d-77bd-863c-8b11c4587302-c45872c5 {
    grid-area: 15 / 1 / 16 / 2;
  }

  #w-node-_04fa4327-458d-77bd-863c-8b11c45872d4-c45872c5 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_04fa4327-458d-77bd-863c-8b11c45872da-c45872c5 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_43ef26e4-ca50-8e26-d5e5-6783ce3cdb6d-c45872c5 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_4b7974bc-3c46-daf6-1a55-5ef40d289f8a-c45872c5 {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-_718c503e-a20f-3895-aad8-6715880e10cb-c45872c5 {
    grid-area: 6 / 1 / 7 / 2;
  }

  #w-node-ab13f0f8-8f37-3960-cacf-e5487f5b3185-c45872c5 {
    grid-area: 7 / 1 / 8 / 2;
  }

  #w-node-_04fa4327-458d-77bd-863c-8b11c45872e3-c45872c5 {
    grid-area: 9 / 1 / 10 / 2;
  }

  #w-node-_04fa4327-458d-77bd-863c-8b11c45872e0-c45872c5 {
    grid-area: 10 / 1 / 11 / 2;
  }

  #w-node-_36ba4c07-0ad1-154e-c8c3-ba31812978c9-c45872c5 {
    grid-area: 11 / 1 / 12 / 2;
  }

  #w-node-_6d2ba7a6-e5e9-e416-56fe-2f149b6d312d-c45872c5 {
    grid-area: 12 / 1 / 13 / 2;
  }

  #w-node-_8bcd4d22-d14c-0513-b0f7-fd6f4c6c5495-c45872c5 {
    grid-area: 13 / 1 / 14 / 2;
  }

  #w-node-_7fe289b4-408b-c190-a580-e6dbca045271-c45872c5 {
    grid-area: 14 / 1 / 15 / 2;
  }

  #w-node-_04fa4327-458d-77bd-863c-8b11c45872ec-c45872c5 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_9ba8950e-a36e-8d65-f9d0-2a1069481a25-c45872c5 {
    grid-area: 4 / 2 / 5 / 3;
  }

  #w-node-_04fa4327-458d-77bd-863c-8b11c45872f2-c45872c5 {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-_04fa4327-458d-77bd-863c-8b11c45872f6-c45872c5 {
    grid-area: 8 / 2 / 9 / 3;
  }

  #w-node-_011b94dd-c593-a0cc-fdba-754a3b00557c-c45872c5 {
    grid-area: 6 / 2 / 7 / 3;
  }

  #w-node-_09557b8a-618f-f611-b300-f40ff0821ec9-c45872c5 {
    grid-area: 5 / 2 / 6 / 3;
  }

  #w-node-_04fa4327-458d-77bd-863c-8b11c45872f8-c45872c5 {
    grid-area: 9 / 2 / 10 / 3;
  }

  #w-node-_04fa4327-458d-77bd-863c-8b11c45872fb-c45872c5 {
    grid-area: 10 / 2 / 11 / 3;
  }

  #w-node-_04fa4327-458d-77bd-863c-8b11c45872fe-c45872c5 {
    grid-area: 11 / 2 / 12 / 3;
  }

  #w-node-d3799a7d-0160-1e23-95fa-c5fe4826a6ac-c45872c5 {
    grid-area: 12 / 2 / 13 / 3;
  }

  #w-node-de2fb9f2-65b4-a733-4f4b-9af2bdf33875-c45872c5 {
    grid-area: 13 / 2 / 14 / 3;
  }

  #w-node-_04fa4327-458d-77bd-863c-8b11c4587304-c45872c5 {
    grid-area: 16 / 1 / 17 / 2;
  }

  #w-node-_04fa4327-458d-77bd-863c-8b11c45872cd-c45872c5 {
    grid-area: 14 / 2 / 15 / 3;
  }

  #w-node-_04fa4327-458d-77bd-863c-8b11c4587307-c45872c5 {
    grid-area: 17 / 1 / 18 / 2;
  }

  #w-node-a7b29c86-e51b-4c34-31dd-579880929723-c45872c5 {
    grid-area: 18 / 1 / 19 / 2;
  }

  #w-node-cbf04097-5947-e067-a544-5f98fb16119e-c45872c5 {
    grid-area: 19 / 1 / 20 / 2;
  }

  #w-node-_920207e5-1902-3d3b-694d-aa2ae544e0f2-c45872c5 {
    grid-area: 20 / 1 / 21 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_04fa4327-458d-77bd-863c-8b11c45872ea-c45872c5 {
    grid-area: 17 / 1 / 18 / 2;
  }

  #w-node-_04fa4327-458d-77bd-863c-8b11c4587302-c45872c5 {
    grid-area: 29 / 1 / 30 / 2;
  }

  #w-node-_04fa4327-458d-77bd-863c-8b11c45872ec-c45872c5 {
    grid-area: 18 / 1 / 19 / 2;
  }

  #w-node-_9ba8950e-a36e-8d65-f9d0-2a1069481a25-c45872c5 {
    grid-area: 20 / 1 / 21 / 2;
  }

  #w-node-_04fa4327-458d-77bd-863c-8b11c45872f2-c45872c5 {
    grid-area: 19 / 1 / 20 / 2;
  }

  #w-node-_04fa4327-458d-77bd-863c-8b11c45872f6-c45872c5 {
    grid-area: 23 / 1 / 24 / 2;
  }

  #w-node-_011b94dd-c593-a0cc-fdba-754a3b00557c-c45872c5 {
    grid-area: 22 / 1 / 23 / 2;
  }

  #w-node-_09557b8a-618f-f611-b300-f40ff0821ec9-c45872c5 {
    grid-area: 21 / 1 / 22 / 2;
  }

  #w-node-_04fa4327-458d-77bd-863c-8b11c45872f8-c45872c5 {
    grid-area: 24 / 1 / 25 / 2;
  }

  #w-node-_04fa4327-458d-77bd-863c-8b11c45872fb-c45872c5 {
    grid-area: 25 / 1 / 26 / 2;
  }

  #w-node-_04fa4327-458d-77bd-863c-8b11c45872fe-c45872c5 {
    grid-area: 26 / 1 / 27 / 2;
  }

  #w-node-d3799a7d-0160-1e23-95fa-c5fe4826a6ac-c45872c5 {
    grid-area: 27 / 1 / 28 / 2;
  }

  #w-node-de2fb9f2-65b4-a733-4f4b-9af2bdf33875-c45872c5 {
    grid-area: 28 / 1 / 29 / 2;
  }

  #w-node-_04fa4327-458d-77bd-863c-8b11c4587304-c45872c5 {
    grid-area: 30 / 1 / 31 / 2;
  }

  #w-node-_04fa4327-458d-77bd-863c-8b11c45872cd-c45872c5 {
    grid-area: 35 / 1 / 36 / 2;
  }

  #w-node-_04fa4327-458d-77bd-863c-8b11c4587307-c45872c5 {
    grid-area: 31 / 1 / 32 / 2;
  }

  #w-node-a7b29c86-e51b-4c34-31dd-579880929723-c45872c5 {
    grid-area: 32 / 1 / 33 / 2;
  }

  #w-node-cbf04097-5947-e067-a544-5f98fb16119e-c45872c5 {
    grid-area: 33 / 1 / 34 / 2;
  }

  #w-node-_920207e5-1902-3d3b-694d-aa2ae544e0f2-c45872c5 {
    grid-area: 34 / 1 / 35 / 2;
  }
}

a {
  /* AnkerLink */
  outline-color: transparent;
}

.w-row,
.w-container .w-row {
  margin-right: -10px;
  margin-left: -10px;
}
@media screen and (max-width: 767px) {
  .w-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}
