@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Sulphur+Point:wght@400;700&display=swap");

:root {
  --primary-font: "Lato", sans-serif;
  --secondary-font: "Sulphur Point", sans-serif;
  --red-tone-bg: #c45c6b;
  --red-tone-light-bg: #e3929e;
  --red-tone-extralight-bg: #fcf5f5;
  --black-tone: #313030;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--primary-font);
  font-size: 16px;
  line-height: 24px;
  color: var(--black-tone);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--secondary-font);
}

h1 {
  font-size: 96px;
  line-height: 1;
  font-weight: 700;
}

h2 {
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
}

ol,
ul,
li {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: none;
  color: var(--black-tone);
  transition: all 0.5s ease;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #ebebeb;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #cc6b79;
}

::selection {
  background-color: #c45c6b;
  color: #fff;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

svg {
  transition: all 0.5s;
}

.container,
.woocommerce .woocommerce-breadcrumb,
.woocommerce div.product {
  max-width: 1670px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto !important;
}

.flex {
  display: flex;
  flex-wrap: nowrap;
}

.btn {
  background: var(--red-tone-bg);
  border-radius: 12px;
  padding: 7px 19px;
  display: inline-block;
  color: #fff;
  border: 1px solid var(--red-tone-bg);
  transition: all 0.5s ease 0s;
  font-weight: 700;
  font-family: var(--secondary-font);
  min-width: 144px;
  text-align: center;
  cursor: pointer;
}

.btn:hover {
  background: var(--black-tone);
  border-color: var(--black-tone);
}

.light-btn {
  background: var(--red-tone-light-bg);
  border: 1px solid #ebb0ba;
  color: var(--red-tone-bg);
}

.light-btn:hover {
  background: var(--red-tone-bg);
  color: #fff;
}

/* Header CSS */
.header {
  min-height: 80px;
  align-items: center;
  color: #fff;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  transition: background 0.5s ease;
}

.header .flex {
  align-items: center;
  justify-content: space-between;
}

.head-left a {
  color: #fff;
}

.menu-bar {
  display: flex;
  flex-direction: column;
}

.menu-bar .bar {
  display: inline-block;
  height: 2px;
  width: 24px;
  background: #fff;
  position: relative;
  transition: all 0.3s;
}

.menu-bar .bar2 {
  margin: 4px 0;
}

#hamburger-menu .menu-text {
  margin-left: 8px;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  font-family: var(--secondary-font);
}
.footer .social-share ul li svg {
  width: 22px;
  height: 22px;
}
#hamburger-menu {
  margin-right: 36px;
  cursor: pointer;
}

.language ul li:first-child,
.language a:first-child {
  padding-left: 0;
}

.language ul li,
.language a {
  padding: 0 8px;
}

.language ul li a,
.language a {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--secondary-font);
  color: #fff;
  position: relative;
}

.language ul li a:hover,
.language a:hover {
  color: #fff;
}

.language ul li a.active:after,
.language a.gt-current-lang:after {
  content: "";
  width: 60%;
  height: 1px;
  background: var(--red-tone-light-bg);
  display: block;
  position: absolute;
  bottom: -2px;
  left: 7px;
}
.header.dark a.glink.nturl.notranslate {
  color: #767676;
}
.language ul li a.active,
.language ul li a:hover,
.language a.gt-current-lang,
.language a:hover {
  color: #fff;
}

.head-right .head-cart {
  margin-right: 10px;
}

.head-right .head-cart a {
  border: 1px solid #767676;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sticky .header {
  background: #1f1e1e;
}

.head-right .head-cart a .count {
  position: absolute;
  top: -4px;
  right: -5px;
  left: auto;
  background: #c45c6b;
  height: 16px;
  width: 16px;
  border-radius: 50px;
  font-family: var(--secondary-font);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  display: grid;
  align-items: center;
  justify-content: center;
}

.nav-section {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  background-color: #fff;
  transform: translateX(-100%);
  transition: all 0.3s;
  padding: 103px 0 120px 0;
  height: 100vh;
  overflow-y: auto;
}

body.menu-open {
  overflow: hidden;
}

.menu-open .nav-section {
  transform: unset;
}

.header .flex .head-left {
  position: relative;
  z-index: 99;
}

.menu-open .header {
  min-height: 75px;
}

.menu-open .menu-bar .bar {
  background: #000;
}

.map-wrapper iframe {
  width: 35vw;
  height: 35vw;
  max-width: 100%;
}

.menu-open .menu-text {
  color: #000;
  text-align: center;
  font-family: Sulphur Point;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.8px;
}

.menu-open .language ul li a.active {
  color: #000;
}

.menu-open .language ul li a:hover {
  color: #000;
}

.nav-section .nav-map {
  max-width: 750px;
}
.menu-open .language ul li a, .menu-open .language a {
    color: #777777;
}
.nav-section .nav-title {
  color: #c45c6b;
  font-family: Sulphur Point;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.nav-section .nav-section-inner {
  align-items: flex-start;
  justify-content: space-between;
}

.menu-open .header {
  z-index: 99;
  background-color: #fff;
}

.menu-open header .head-right {
  opacity: 0;
  visibility: hidden;
}

.nav-section .social-share ul li a:hover,
.footer .social-share ul li a:hover {
  transform: rotate(45deg);
}

.nav-section .navigate .nav-title {
  margin-bottom: 20px;
}

.nav-section .navigate > ul > li > a {
  font-family: Sulphur Point;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.96px;
  color: #000;
  position: relative;
  left: 0;
}

.nav-section .navigate > ul > li {
  margin-bottom: 16px;
}

.navigate .divider svg {
  margin: 24px 0;
}

.nav-section .navigate > ul > li:last-child {
  margin: 0;
}

.nav-section .buy-online a.btn {
  padding: 11px 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-section .buy-online a.btn span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-section .buy-online a.btn svg {
  margin-right: 8px;
}

.nav-section .buy-online {
  padding-bottom: 46px;
}

.nav-section .social-share ul li a, 
.social-share ul li a{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  border-radius: 50px;
  border: 1px solid #c2c2c2;
  transition: all 0.3s;
}

.nav-section .social-share ul li,
.social-share ul li{
  margin: 0 5.5px;
}

.nav-section .social-share ul li:first-child,
.social-share ul li:first-child{
  margin-left: 0;
}

.nav-section .navigate > ul > li > a:hover {
  color: #c45c6b;
  left: 5px;
}

.nav-contact-details ul li span {
  font-family: Sulphur Point;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.48px;
  color: #000;
}

.nav-contact-details {
  padding: 0 20px;
}

.nav-contact-details ul li {
  padding-bottom: 32px;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 32px;
}

.nav-contact-details ul li:last-child {
  border: 0;
  margin: 0;
  padding: 0;
}

.nav-privacy-content {
  padding-top: 11px;
}

.nav-privacy-content {
  padding-top: 11px;
  font-family: Sulphur Point;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #b5b5b5;
}

.nav-privacy-content a {
  color: #b5b5b5;
}

.menu-open .menu-bar .bar.bar2 {
  opacity: 0;
  margin: 0;
  transition: unset;
}

.menu-open .menu-bar .bar.bar1 {
  transform: rotate(45deg);
}

.menu-open .menu-bar .bar.bar3 {
  transform: rotate(-45deg);
  top: -4px;
}

/* Banner CSS */
.banner {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner:before,
.banner-inner:before{
  content: "";
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.banner .flex {
  width: 100%;
  flex-direction: column;
  height: 100vh;
  align-items: center;
  justify-content: center;
  position: relative;
}

.banner .container {
  position: relative;
}

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

.banner-text h2 {
  color: #fff;
  margin-bottom: 12px;
}

.banner-text h1 {
  color: #fff;
  margin-bottom: 24px;
}

.banner-text h1 a {
  color: #fff;
}

.banner-text p {
  color: #ffffff;
}

.banner .banner-bottom {
  position: absolute;
  bottom: 84px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  left: 0;
}

.banner-bottom .swiss-made span {
  color: #fff;
  line-height: 20px;
  font-family: var(--secondary-font);
  font-weight: 700;
}

.scroll-down span {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  font-family: var(--secondary-font);
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.scroll-down span i {
  margin-left: 8px;
  -webkit-animation: sdb05 1.5s infinite;
  animation: sdb05 1.5s infinite;
  top: -5px;
  position: relative;
}

.cursor {
  border-left: 4px solid white;
}

.scroll-down {
  cursor: pointer;
}

/* Timeline slide CSS */
.company-journey {
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.timeline {
  overflow: hidden;
  position: relative;
  padding-top: 110px;
}

.timeline .timeline-nav .slick-track {
  display: flex;
  padding: 15px 0;
}

.timeline .timeline-nav .slick-list {
  display: flex;
  justify-content: center;
  max-width: 522px;
  margin: auto;
}

.timeline-wrapper .timeline-slide figcaption {
  opacity: 0;
  visibility: hidden;
}

.timeline-wrapper .timeline-slide.slick-center figcaption {
  opacity: 1;
  visibility: visible;
}

.timeline-wrapper .slick-next.slick-arrow {
  left: auto;
  right: 30%;
}

.timeline-wrapper .slick-arrow {
  position: absolute;
  top: 100px;
  left: 30%;
  width: 36px;
  height: 36px;
  border-radius: 50px;
  border: 1px solid #cfd1da;
  background: transparent;
  cursor: pointer;
  z-index: 9;
}

.timeline .timeline-nav li {
  font-size: 12px;
  line-height: 14.4px;
  font-weight: 700;
  color: #1f1e1e;
  cursor: pointer;
  position: relative;
}

.timeline .timeline-wrapper {
  padding-top: 110px;
}

.timeline .timeline-wrapper .slick-list {
  padding: 0 !important;
}

.timeline .timeline-wrapper .timeline-slide img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.timeline-wrapper .timeline-slide figure {
  padding: 0 25px;
  transition: transform 0.3s linear;
  transition-delay: 1s;
}

.timeline-wrapper .timeline-slide:not(.slick-current) figure {
  transform: scale(0.9);
  transition-delay: 0s;
}

.timeline-wrapper .timeline-slider,
.timeline-wrapper .our-story-timeline-slider {
  position: static;
}

.timeline .timeline-nav li:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #cfd1da;
  display: inline-block;
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50px;
}

.timeline .timeline-nav li:after {
  width: 100%;
  top: -10px;
  height: 2px;
  background: #cfd1da;
  position: absolute;
  left: 0;
  z-index: -1;
  left: -50%;
  content: "";
  transition: all 0.3s ease;
}

.timeline .timeline-nav li.slick-current.slick-active,
.timeline .timeline-nav li:has(~ .slick-current) {
  color: #c45c6b;
}

.timeline .timeline-nav li.slick-current.slick-active:before {
  background: #c45c6b;
  width: 12px;
  height: 12px;
  top: -14px;
}

.timeline .timeline-nav li:has(~ .slick-current):before {
  background: #c45c6b;
  width: 10px;
  height: 10px;
  top: -14px;
}

.timeline .timeline-nav li.slick-current.slick-active:before {
  width: 14px;
  height: 14px;
  top: -15px;
}

.timeline .timeline-nav__item.slick-current.slick-active:after {
  background: #c45c6b;
}

.timeline .timeline-nav li:has(~ .slick-current):before {
  background: #c45c6b;
}

.timeline .timeline-nav li:has(~ .slick-current):after {
  background: #c45c6b;
}

.timeline .timeline-nav li:first-child:after {
  width: 0;
  left: 50%;
}

.timeline-wrapper .timeline-slide figcaption {
  padding: 16px 0 68px 0;
  font-size: 16px;
  font-style: normal;
  line-height: 20px;
  color: #000;
  transition: all 0.3s;
}

.timeline-btn a.btn {
  padding: 11px 32px 11px 32px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #c45c6b;
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #ebb0ba;
}

.timeline-btn a.btn span svg {
  margin-right: 8px;
}

.timeline-btn a.btn span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-btn a.btn:hover {
  color: #fff;
  background: #c45c6b;
  border-color: #c45c6b;
}

.timeline-btn a.btn:hover path {
  stroke: #fff;
}

.timeline-btn a.btn path {
  transition: all 0.3s ease;
}

/* recipe-section */
.recipe-section .row {
  position: relative;
  min-height: 900px;
}

.recipe-section .mid-section {
  position: absolute;
  left: auto;
  right: 17%;
  top: 0;
}

.recipe-section .mid-section img {
  max-width: 689px;
}

.recipe-section .right_col {
  flex: 0 0 28%;
  background-repeat: no-repeat;
  background-size: cover;
}

.recipe-section .left_col {
  flex: 0 0 72%;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.recipe-section .left_col p,
.recipe-section .left_col ul,
.recipe-section .left_col h2 {
  color: #fff;
}

.recipe-section .left_col .recipe-content {
  padding: 0px 26.6% 0 21.2%;
}

.recipe-section .left_col h2 {
  color: #fff;
  margin-bottom: 12px;
}

.recipe-section .left_col p {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 29px;
}

.recipe-section .left_col ul li {
  margin-bottom: 26px;
}

.recipe-section .left_col ul li {
  position: relative;
  display: flex;
}

.recipe-section .left_col ul li .counter {
  height: 38px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  color: #000;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  flex: 0 0 38px;
  margin-right: 20px;
  position: relative;
}

.recipe-section .left_col ul li p span {
  display: block;
}

.recipe-section .left_col ul li p span {
  font-family: var(--secondary-font);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}
.language ul li a.active:after, .language a.gt-current-lang:first-child:after {
    left: 0;
}
.recipe-section .left_col ul li p .gray-text {
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
}

.recipe-section .left_col ul li p {
  margin: 0;
}

.recipe-section .left_col ul li .counter:after {
  content: "";
  display: inline-block;
  background: rgba(255, 255, 255, 0.64);
  border-radius: 50px;
  width: 4px;
  height: 4px;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.recipe-section .left_col ul li .counter:before {
  content: "";
  display: inline-block;
  background: rgba(255, 255, 255, 0.64);
  border-radius: 50px;
  width: 4px;
  height: 4px;
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
}

.recipe-section .left_col ul li:first-child .counter:before,
.recipe-section .left_col ul li:last-child .counter:after {
  display: none;
}

.tasting-event-sec {
  padding-top: 105px;
  overflow: hidden;
}

.tasting-event-sec .left_col {
  display: flex;
  align-items: center;
  background-color: #fcf5f5;
  margin-right: 12px;
}

.tasting-event-sec .col-inner {
  padding: 107px 86px 106px 139px;
}

.tasting-event-sec h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.96px;
  margin-bottom: 12px;
}

.tasting-event-sec h2 span.highlighted-text {
  color: #c45c6b;
}

.tasting-event-sec .col-inner p {
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 8px;
  color: #1f1e1e;
}

.tasting-event-sec .tasting-btn {
  padding-top: 55px;
}

.tasting-event-sec a.btn.light-btn {
  background-color: #fcf5f5;
  padding: 11px 31px;
}

.tasting-event-sec .tasting-btn span {
  display: flex;
  align-items: center;
}

.tasting-event-sec .tasting-btn span svg {
  margin-right: 8px;
}

.tasting-event-sec a.btn.light-btn:hover {
  background-color: #c45c6b;
  border-color: #c45c6b;
}

.tasting-event-sec a.btn.light-btn path {
  transition: all 0.3s ease;
  stroke: rgb(196, 92, 107);
}

.tasting-event-sec a.btn.light-btn:hover path {
  stroke: #fff;
}

.tasting-event-sec .right_col img {
  height: 100%;
  object-fit: cover;
}

/* Popular Product CSS */
/* .popular-product {

  padding-top: 84px;

} */
.popular-product .title-section {
  text-align: center;
  margin-bottom: 80px;
}

.popular-product .title-section img {
  max-width: 220px;
}

.popular-product .title-section h2 {
  margin-top: 40px;
  margin-bottom: 14px;
}

.popular-product .title-section p {
  max-width: 800px;
  margin: auto;
}

.popular-product .product-categories form {
  display: flex;
}

.popular-product form .category-item {
  max-width: 193px;
  display: flex;
  align-items: center;
  width: 100%;
}

.popular-product form .category-item label {
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-right: 12px;
}

.popular-product form .category-item select {
  display: flex;
  width: 143px;
  height: 32px;
  padding: 0 8px 0 12px;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px;
  border: 1px solid #cfd1da;
  appearance: none;
  outline: none;
  cursor: pointer;
  background: transparent;
}

.popular-product form .category-item .cat svg {
  position: absolute;
  right: 10px;
  top: 4px;
  z-index: -1;
}

.popular-product .product-categories form .spacer {
  display: inline-block;
  margin: 0 21px;
  height: 10px;
  color: #cfd1da;
  line-height: 1.7;
}

.product-section .product-categories {
  margin-bottom: 20px;
}

.product-list {
  display: flex;
  margin: 0 -6px;
}

.product-list .product-img {
  background: #fcf5f5;
  text-align: center;
  padding: 46px 47px;
  margin-bottom: 8px;
}

.product-list .product-img img {
  max-width: 100%;
  display: block;
  margin: auto;
  position: relative;
  /* left: -35px; */
}

.product-list .product-list-item {
  padding: 0 6px;
}

.product-list .product-list-item .product-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-list .product-list-item h5 {
  font-family: Sulphur Point;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 4px;
}

.product-list .product-list-item .wine_type {
  display: block;
  font-family: Sulphur Point;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #b0b0b0;
  margin-bottom: 12px;
}

.product-list .product-list-item .price {
  font-family: Sulphur Point;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.48px;
}

.product-list-item.active span.price {
  color: #c45c6b;
}

.product-list-item.active h5 span {
  border-radius: 21px;
  background: #c45c6b;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  padding: 4px 6px;
}

.product-list-item.active span.price em {
  color: #b0b0b0;
  text-align: center;
  font-family: Sulphur Point;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.24px;
  text-decoration: line-through;
}

.product-list .product-list-item .cart-icon {
  margin-right: 8px;
}

.product-section .see-all-btn {
  text-align: center;
  padding-top: 78px;
}

.product-section .see-all-btn a.btn {
  padding: 12px 31px;
  font-family: Sulphur Point;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.popular-product form .category-item .cat {
  position: relative;
}

/* footer css */
.footer {
  padding-top: 52px;
  padding-bottom: 25px;
}

.footer .footer-top {
  border-top: 1px solid #eaeaea;
  padding: 48px 0 0 0;
}

.footer .row {
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo img {
  max-width: 210px !important;
  height: auto !important;
}

.footer-logo {
  margin-bottom: 17px;
  text-align: center;
}

.footer .social-share ul {
  justify-content: center;
}

.footer .social-share ul li a {
  padding: 7px;
  border: 1px solid #c2c2c2;
  border-radius: 50px;
  display: flex;
  align-items: center;
}

.contact-details p {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  font-family: Sulphur Point;
}

nav.footer-nav ul li a {
  font-family: Sulphur Point;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

nav.footer-nav ul li a:hover,
nav.footer-nav ul li a.active {
  color: #c45c6b;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 59px;
}

.footer-bottom p,
.footer-bottom a {
  font-family: Sulphur Point;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #b5b5b5;
}

.footer-bottom p .divider {
  margin: 0 12px;
  padding: 0;
}

.footer .social-share ul li {
  margin: 0 5.5px;
}

.nav-section .social-share ul,
.social-share ul{
  justify-content: flex-start;
}

.popular-product .product-categories form::-webkit-scrollbar {
  height: 6px;
}

/* our-events page css */
.banner-inner {
  min-height: 438px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 110px 0 40px;
}

.banner-inner .title-section {
  width: 100%;
}

.banner-inner .title-section h2 {
  color: #fff;
  font-family: "Sulphur Point";
  font-weight: 700;
  margin-bottom: 12px;
}

.banner-inner .title-section p {
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
}

.banner-inner {
  min-height: 438px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.event-section {
  padding-top: 103px;
}

.event-section .flex {
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 72px;
}

.event-section .event-item {
  flex: 0 0 calc(25% - 12px);
}

.event-section .event-img img {
  height: 401px;
  object-fit: cover;
}

.event-section .event-item .event-img {
  margin-bottom: 8px;
}

.event-section .event-item .title a {
  display: block;
  font-family: Sulphur Point;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  color: #1f1e1e;
}

.event-section .event-item .title .categories {
  font-family: Sulphur Point;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #767676;
}

.event-section .event-item .event-date {
  display: block;
  font-family: Sulphur Point;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  color: #c45c6b;
  margin-top: 16px;
}

.gallery-wrapper .gallery-item {
  height: 383px;
  margin-bottom: 0;
}

.gallery-wrapper .gallery-item img {
  height: 383px;
  object-fit: cover;
  width: 100%;
}

.divider {
  padding: 98px 0 95px;
}

.divider hr {
  background: #eaeaea;
  height: 0;
  border-bottom: 1px solid #eaeaea;
}
.body-wrapper .divider hr {
  background: rgba(234, 234, 234, 1);
  height: 0;
  border: 0;
  border-bottom: 1px solid rgba(234, 234, 234, 1);
}
.gallery_section .top-section {
  text-align: center;
}
.body-wrapper .divider {
  padding: 58px 0 95px;
}
.gallery_section h2 {
  margin-bottom: 14px;
  font-family: Sulphur Point;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.96px;
}

.gallery_section p {
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #313030;
}

.gallery_section .gallery-wrapper {
  padding-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gallery_section .gallery-item {
  width: 100%;
  flex: 0 0 calc(27.9% - 12px);
}

.gallery-wrapper .gallery-item.small_img {
  width: 100%;
  flex: 0 0 calc(16.9% - 12px);
}

.woocommerce p.stars a {
  color: #ff9210;
}

body {
  overflow-x: hidden;
}

.animation-element.slide-right {
  opacity: 0;
  -moz-transition: all 600ms linear;
  -webkit-transition: all 600ms linear;
  -o-transition: all 600ms linear;
  transition: all 600ms linear;
  -moz-transform: translate3d(400px, 0px, 0px);
  -webkit-transform: translate3d(400px, 0px, 0px);
  -o-transform: translate(400px, 0px);
  -ms-transform: translate(400px, 0px);
  transform: translate3d(400px, 0px, 0px);
}

.animation-element.slide-right.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.dark #hamburger-menu .menu-text {
  color: #000;
}

.dark .language ul li a.active,
.dark .language ul li a:hover,
.dark .language a.gt-current-lang,
.dark .language a:hover {
  color: #000;
}

.dark .menu-bar .bar {
  background: #000;
}

.header.dark .head-cart svg path {
  fill: #000;
}

.sticky .header.dark {
  background: #fff;
}

.header.dark {
  background: #fff;
}

.dark .logo img {
  max-width: 210px;
}

.dark.header .head-right .head-cart {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dark.header .head-right .head-cart > span {
  color: #c1c1c1;
  text-align: center;
  font-family: Sulphur Point;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: inline-block;
  flex: 0 0 114px;
  margin-right: 16px;
}

.popular-product.listing-view .title-section,
.common-page-class h1 {
  text-align: left;
  margin-bottom: 72px;
}
.common-page-class .entry-content h2 {
  margin-bottom: 10px;
}
.woocommerce .woocommerce-breadcrumb a {
  margin: 0 5px;
}
.common-page-class .entry-content p {
  margin-bottom: 18px;
}
/*.woocommerce div.product {*/
/*  padding-top: 70px;*/
/*}*/

.listing-view .product-list .product-list-item {
  flex: 0 0 calc(25%);
  margin-bottom: 30px;
}
.single-product .related.products h2 {
  margin-bottom: 30px;
}
.nav-section .divider {
  padding: 0;
}

html.menu-open {
  overflow: hidden;
}

.popular-product.listing-view .product-list {
  display: flex;
  margin-bottom: 70px;
  flex-wrap: wrap;
}

.popular-product.listing-view .product-list:last-child {
  margin: 0;
}

.woocommerce,
.common-page-class {
  padding-top: 164px;
}

body.menu-open .dark .logo {
  visibility: hidden;
  display: none;
}

html {
  overflow-x: hidden;
}

.product-wrapper {
  padding-top: 154px;
}

.woocommerce div.product {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product-wrapper .details_img {
  flex: 0 0 40%;
}

.product-wrapper .details-content {
  flex: 0 0 40%;
}

.modal-header button.btn-close {
  background-color: transparent;
  border: 0;
  padding: 0;
  outline: none;
  padding-left: 15px;
  cursor: pointer;
}

.modal-content .modal-body {
  padding: 0;
}

.modal-content .modal-header {
  border: 0;
  padding: 22px 24px;
}

.popup_content {
  padding: 16px 20px;
  color: #000;
}

.modal-body hr {
  border: 0;
  border-bottom: 1px solid #eaeaea;
  margin: 8px 0 24px 0;
}

.modal-body .form {
  padding: 0 20px 20px;
}

.modal-body .form form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-body .form form input {
  width: 100%;
  display: flex;
  height: 48px;
  padding: 16px 20px;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #d6d8e3;
  outline: none;
  transition: all 0.3s ease;
  appearance: none;
  -moz-appearance: textfield;
  -webkit-appearance: none;
}

.modal-body .form form input:focus {
  border-color: #c45c6b;
}

.modal-body .form form .popup-btn {
  display: block;
  width: 100%;
  padding-top: 20px;
}

.modal-body .form #popup_btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-family: Sulphur Point;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  gap: 8px;
  cursor: pointer;
}

html.model-open {
  overflow: hidden;
}

.modal {
  padding: 10px;
}

.modal-title {
  font-family: Sulphur Point;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  color: #000;
}

.product-wrapper .timeline-wrapper .timeline-slide:not(.slick-current) figure {
  transform: unset;
  transition: unset;
}

.product-wrapper .timeline-wrapper .slick-arrow {
  top: auto;
  bottom: 15px;
}

.product-wrapper .timeline .timeline-wrapper {
  padding-top: 0;
}

.product-wrapper .two_col_content {
  display: flex;
  padding-bottom: 84px;
  align-items: center;
}

.product-wrapper .timeline .timeline-wrapper .timeline-slide img {
  height: auto;
}

.product-wrapper .company-journey .left_col {
  flex: 0 0 40%;
  text-align: center;
  background-color: #fcf5f5;
  padding: 196px 134px;
}

.product-wrapper .company-journey .right_col {
  padding-left: 139px;
  text-align: left;
  flex: 0 0 60%;
}

.product-wrapper .company-journey .right_col h1 {
  color: #f3ccd1;
  font-family: Sulphur Point;
  font-size: 128px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.product-wrapper .company-journey .right_col h2 {
  font-family: Sulphur Point;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.96px;
  color: #1f1e1e;
  padding: 29px 0;
}

.product-wrapper .company-journey .right_col p {
  color: #1f1e1e;
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 12px;
}

.product-wrapper .company-journey .left_col img {
  max-width: 470px;
  margin: 0 auto;
}

.our-story-section .company-journey {
  padding: 131px 0 100px;
}

.our-story-section .timeline {
  padding: 0;
}

.our-story-section .timeline-wrapper {
  padding: 0 0 84px;
}

.our-story-section .timeline-slide figure {
  padding: 0;
  flex: 41%;
}

.our-story-section .timeline-slide .slide-content {
  flex: 40%;
  padding-left: 139px;
  text-align: left;
  text-align: left;
  display: flex;
  align-items: center;
  padding-right: 70px;
}

.our-story-section .timeline-slide .year {
  font-family: Sulphur Point;
  font-size: 128px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  color: #f3ccd1;
}

.our-story-section .timeline-slide h2 {
  margin: 29px 0px;
  font-family: Sulphur Point;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.96px;
}

.our-story-section .timeline-slide .content p {
  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 12px;
  color: #1f1e1e;
}

.our-story-section .timeline-slide .content p:last-child {
  margin: 0;
}

.our-story-section .timeline .timeline-wrapper .timeline-slide img {
  height: 734px;
}

.our-story-section .timeline-wrapper .slick-arrow {
  top: auto;
  bottom: 20px;
}

.our-story-section
  .timeline-wrapper
  .timeline-slide:not(.slick-current)
  figure {
  transform: unset;
}

/* blog css start */

.blog-main {
  padding-top: 150px;
}
.blog-main .img-section {
  flex: 50%;
}
.blog-main .post-content {
  flex: 50%;
}
.blog-main .img-section .img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.blog-main .img-section img:hover {
  transform: scale(1.05);
}
.blog-main .img-section img {
  transition: all 0.3s ease;
}
.blog-main .post-content {
  padding-left: 70px;
  display: flex;
  align-items: center;
}
.blog-main .post-content .post-content-inner h4 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #a8a8a8;
}
.blog-main .post-content .post-content-inner a:hover {
  color: #c45c6b;
}
.blog-main .post-content h1 {
  font-size: 60px;
  margin-bottom: 20px;
}
.blog-main .post-content p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.blog-main .post-content .author strong:after {
  content: "|";
  margin: 0 6px;
}
.post-item-wrapper {
  padding: 100px 0;
}
.post-item-wrapper .flex {
  flex-wrap: wrap;
}
.post-item-wrapper .flex .post-item {
  flex: 0 0 33.3333%;
  padding: 0 10px;
  margin-bottom: 60px;
}
.post-item-wrapper .flex .post-item .img {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 20px;
}
.post-item-wrapper .flex .post-item .img img {
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  height: 340px;
}
.post-item-wrapper .flex .post-item .img img:hover {
  transform: scale(1.05);
}
.post-item-wrapper .flex .item-content h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #a8a8a8;
}
.post-item-wrapper .flex .item-content h2 {
  font-size: 26px;
}
.post-item-wrapper .flex .item-content h2 a:hover {
  color: #c45c6b;
}
.post-item-wrapper .flex .item-content h2 {
  margin-bottom: 10px;
}
.post-item-wrapper .flex .item-content p {
  margin-bottom: 10px;
}
.post-item-wrapper .flex .item-content .author strong:after {
  content: " | ";
  margin: 0 5px;
}
.pagination ul {
  display: flex;
  justify-content: center;
}
.pagination {
  padding-top: 50px;
}
.pagination ul li:not(.next, .prev) a {
  border: 1px solid #cc6b79;
  border-radius: 50%;
  height: 35px;
  width: 35px;
}
.pagination ul li a {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cc6b79;
  font-weight: 500;
  font-size: 16px;
}
.pagination ul li {
  display: flex;
  align-items: center;
  padding: 0 7px;
}
.pagination ul li a:hover,
.pagination ul li.active a {
  background-color: #cc6b79;
  color: #fff;
}
.pagination ul li a.next.page-numbers:after {
    content: "\f061";
    font-size: 14px;
    font-family: fontawesome;
}
.pagination ul li a.next.page-numbers {
  font-size: 0;
}
.pagination ul li.pagination-item a.prev.page-numbers {
  font-size: 0;
}
.pagination ul li.pagination-item a.prev.page-numbers:after {
  content: "\f061";
  font-size: 14px;
  transform: rotate(-180deg);
  font-family: fontawesome;
}
.blog-main .topic {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.blog-main .row {
  width: 66.666%;
  margin: auto;
}
.blog-main .post-title h1 {
  font-size: 60px;
  text-align: center;
  margin-bottom: 20px;
}
.blog-main .date-section {
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
}
.showcoupon {
    color: #c45c6b;
}
.woocommerce-form-coupon-toggle .woocommerce-info {
    border-top-color: #c45c6b;
    background-color: #fafafa;
}
.woocommerce-info::before {
    color: #c45c6b;
}
.blog-main .date-section strong:after {
  content: "|";
  margin: 0 5px;
  font-size: 16px;
  position: relative;
  top: -2px;
}
.blog-main .feature_img img {
  border-radius: 20px;
}
.blog-main .feature_img {
  margin-bottom: 40px;
}
.blog-main .post-content-section p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: #656565;
}
.blog-main .post-content-section h2 {
  margin-bottom: 20px;
  font-size: 40px;
}
.blog-main .row .social-share ul.flex li {
  margin: 0 7px;
}
.blog-main .row .social-share ul.flex {
  margin: 30px 0 20px;
}
.blog-main .row hr {
  height: 1px;
  border: 0;
  background: #dbdbdb;
}
.post-author {
  margin: 40px 0 20px;
  display: flex;
}
.post-author .post-author-avatar img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 100px;
}
.post-author .post-author-txt {
  flex: 1;
  padding: 0 20px;
}
.post-content-section hr {
  margin: 14px 0;
}
.post-author {
  margin: 40px 0 20px;
  display: flex;
  align-items: center;
}
.post-author .post-author-txt h5 {
  font-size: 22px;
  color: #c45c6b;
  margin-bottom: 10px;
}
.post-author .post-author-txt p {
  line-height: 1.5;
}
.post-author .post-author-avatar {
  width: 100px;
  height: 100px;
}
/* blog css end */

.woocommerce div.product .woocommerce-product-gallery {
  flex: 0 0 40%;
}

.woocommerce div.product .summary.entry-summary {
  flex: 0 0 50%;
}

.woocommerce div.product h1.product_title {
  font-family: Sulphur Point;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.96px;
  margin-bottom: 32px;
}
.woocommerce div.product .woocommerce-product-details__short-description p {
  margin-bottom: 40px;
}

body.woocommerce div.product p.price {
  margin-bottom: 15px;
}
.woocommerce
  div.product
  .woocommerce-product-gallery
  .woocommerce-product-gallery__image {
  background: #fcf5f5;
}
.woocommerce
  div.product
  div.images
  .woocommerce-product-gallery__image:nth-child(n + 2) {
  width: 20% !important;
  display: inline-block;
  margin-top: 20px;
  padding: 16px;
}
.woocommerce-cart .hentry .woocommerce .wc-empty-cart-message {
  width: 100%;
}
.woocommerce-cart p.return-to-shop a.button {
  background: #c45c6b;
  color: #fff;
  padding: 16px 30px;
}
.woocommerce-cart p.return-to-shop a.button:hover {
  background: #000;
  color: #fff;
}
.woocommerce-shop .wpfMainWrapper {
  display: flex;
  margin-bottom: 30px;
}
.woocommerce-shop .wpfMainWrapper .wpfFilterWrapper {
  width: 10% !important;
  margin: 0;
  margin-right: 18px;
}
.woocommerce-shop .wpfMainWrapper .wpfFilterWrapper .wpfCheckboxHier {
  position: relative;
}
.woocommerce-shop .wpfMainWrapper .wpfFilterWrapper .wpfCheckboxHier:after {
  content: "\f107";
  font-family: fontawesome;
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.woocommerce-shop .wpfMainWrapper .wpfFilterWrapper select {
  display: flex;
  width: 100%;
  height: 32px;
  padding: 0 8px 0 12px;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px;
  border: 1px solid #cfd1da;
  appearance: none;
  outline: none;
  background: transparent;
}
.woocommerce-shop .wpfMainWrapper .wpfFilterButtons {
  display: flex;
  align-items: center;
}
.woocommerce div.product .cart button.single_add_to_cart_button {
  display: inline-flex;
  height: 48px;
  padding: 12px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  transition: all 0.5s;
  background: #c45c6b;
  border-radius: 12px;
  font-family: Sulphur Point;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
  width: auto;
}
.woocommerce-shop .wpfMainWrapper .wpfFilterButtons button {
  padding: 8px 30px;
  border: 1px solid #c45c6b;
  background: #c45c6b;
  border-radius: 10px;
  margin: 0 10px;
  color: #fff;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: all 0.5s;
}
.woocommerce-shop .wpfMainWrapper .wpfFilterButtons button:hover {
  background: #000;
  border-color: #000;
}
.woocommerce div.product .cart button.single_add_to_cart_button:hover {
  background-color: #313030;
}

.woocommerce div.product form.cart {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.woocommerce div.product form.cart div.quantity {
  margin: 0 0 15px 0 !important;
  width: 100%;
}
.woocommerce div.product form.cart div.quantity input,
.woocommerce-cart
  .hentry
  .woocommerce
  .woocommerce-cart-form
  .product-quantity
  input {
  padding: 9px 0px !important;
  border: 0 !important;
  width: 55px;
  border-radius: 5px !important;
  text-align: center;
  outline: none;
  padding-left: 14px !important;
}
.product_cat-uncategorized .related.products {
  margin-top: 110px;
  padding-top: 55px;
  border-top: 1px solid rgba(234, 234, 234, 1);
}
.woocommerce div.product form.cart div.quantity button,
.woocommerce-cart
  .hentry
  .woocommerce
  .woocommerce-cart-form
  .product-quantity
  button {
  padding: 0 6px 0px;
  background: transparent;
  border: 1px solid rgba(184, 184, 184, 1);
  border-radius: 6px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  width: 24px;
  height: 24px;
  justify-content: center;
  color: rgba(184, 184, 184, 1);
  cursor: pointer;
}
.woocommerce div.product form.cart div.quantity button.minus {
  position: relative;
  top: -2px;
  padding-bottom: 3px;
}
.woocommerce div.product p.price {
  font-family: Sulphur Point;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.48px;
  color: var(--black-tone);
  margin: 0 0 5px;
}
.woocommerce-tabs.wc-tabs-wrapper {
  padding-top: 50px;
  padding-bottom: 50px;
  flex: 0 0 100%;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent !important;
  border: 0 !important;
  margin: 0 !important;
  margin-right: 30px !important;
  padding: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:after,
.woocommerce div.product .woocommerce-tabs ul.tabs li:before {
  display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0 !important;
  overflow: visible !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #c45c6b !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-size: 18px;
  color: #000;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a:after,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #c45c6b;
  transition: all 0.3s;
}
.xoo-cp-modal .xoo-cp-container {
  padding: 28px 32px;
  max-width: 1163px;
  border-radius: 12px;
  border: 0;
  overflow: auto;
  max-height: 100vh;
}
.xoo-cp-modal .xoo-cp-container .xoo-cp-hdtxt {
  padding: 0;
  margin: 0;
  border: 0;
  font-family: Sulphur Point;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  text-transform: capitalize;
}
.xoo-cp-modal .xoo-cp-container .xoo-cp-cart tr.xoo-cp-ths {
  display: none;
}
.xoo-cp-modal .xoo-cp-container .xoo-cp-cart .xoo-cp-pdetails {
  margin-top: 24px;
  padding-top: 24px !important;
  border-top: 1px solid rgba(234, 234, 234, 1) !important;
  display: block;
  border-bottom: 0;
}
.xoo-cp-modal .xoo-cp-container .xoo-cp-content {
  padding: 0;
}
.xoo-cp-modal .xoo-cp-container td {
  padding: 0;
}
.xoo-cp-modal .xoo-cp-container .xoo-cp-ptitle {
  padding-left: 40px;
  width: 67%;
}
.xoo-cp-modal .xoo-cp-container .xoo-cp-ptitle a {
  font-size: 18px;
  font-weight: 700;
  font-family: Sulphur Point;
  line-height: 20px;
}
.xoo-cp-modal .xoo-cp-container .xoo-cp-ptitle .wine_type {
  font-size: 14px;
  line-height: 1;
  color: rgba(176, 176, 176, 1);
  font-weight: 700;
  font-family: Sulphur Point;
}
.xoo-cp-modal .xoo-cp-container .xoo-cp-cart-total {
  background: rgba(252, 245, 245, 1);
  color: rgba(196, 92, 107, 1);
  border-radius: 14px;
  border: 1px solid rgba(196, 92, 107, 1);
  padding: 14px 7px 15px 31px;
  flex: 0 0 309px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.xoo-cp-modal .xoo-cp-container .xoo-cp-close {
  right: 20px;
  top: 20px;
}
.xoo-cp-modal .xoo-cp-container .xoo-cp-cart .xoo-cp-pdetails td.xoo-cp-pimg img {
  height: 100%;
}
.xoo-cp-modal .xoo-cp-container .xoo-cp-close.xoo-cp-icon-cross:before {
  background-image: url(../img/Close.png);
  content: "";
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.xoo-cp-modal .xoo-cp-container .xoo-cp-cart .xoo-cp-pdetails td.xoo-cp-pimg {
  width: 126px;
  height: 126px;
}
.xoo-cp-modal .xoo-cp-container .xoo-cp-cart-btns a.xoo-cp-close.xcp-btn {
  width: 100%;
  border: 1px solid rgba(207, 209, 218, 1);
  background: transparent;
  color: #a0a0a0;
  padding: 10px;
  min-width: 200px;
}
.xoo-cp-modal .xoo-cp-container .xoo-cp-cart-total .xoo-cp-btn-ch.xcp-btn {
  width: 100%;
  margin: 0;
  border-radius: 12px;
}
.xoo-cp-cart td.xoo-cp-pqty .xoo-cp-qtybox {
  border: 0;
  height: auto;
  display: flex;
  align-items: center;
  margin: 0;
  justify-content: center;
}
.xoo-cp-modal .xoo-cp-container .xcp-chng {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(184, 184, 184, 1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(184, 184, 184, 1);
  font-size: 17px;
  cursor: pointer;
  outline: none;
}
.xoo-cp-modal .xoo-cp-container .xoo-cp-cart .xoo-cp-pdetails:last-child {
  border-bottom: 1px solid rgba(234, 234, 234, 1) !important;
  display: block;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.xoo-cp-modal .xoo-cp-container table.xoo-cp-cart {
  margin: 0;
}
.xoo-cp-modal .xoo-cp-container .xoo-cp-table-bottom {
  padding: 0;
}
.xoo-cp-modal .xoo-cp-container input.xoo-cp-qty {
  font-size: 14px;
  line-height: 1;
  font-family: Sulphur Point;
  font-weight: 700;
  color: rgba(59, 59, 59, 1);
}
.xoo-cp-modal .xoo-cp-container td.xoo-cp-ptotal bdi {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  font-family: Sulphur Point;
}
.xoo-cp-modal .xoo-cp-container .xoo-cp-pprice {
  display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:after {
  width: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover:after {
  width: 100%;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  z-index: inherit !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:last-child {
  margin: 0;
}
.woocommerce .woocommerce-tabs.wc-tabs-wrapper .woocommerce-Tabs-panel {
  margin: 0 !important;
}
.woocommerce .woocommerce-tabs.wc-tabs-wrapper h2 {
  font-size: 26px;
  margin-bottom: 15px;
}
.woocommerce-tabs.wc-tabs-wrapper .comment-form-comment textarea {
  border: 1px solid #d6d8e3;
  border-radius: 8px;
  max-width: 700px;
  padding: 16px 20px;
}
.woocommerce-tabs.wc-tabs-wrapper p.comment-form-author,
.woocommerce-tabs.wc-tabs-wrapper p.comment-form-email,
.woocommerce #review_form #respond p.comment-form-comment {
  display: flex;
  flex-direction: column;
}
.woocommerce-tabs.wc-tabs-wrapper p.comment-form-author label,
.woocommerce-tabs.wc-tabs-wrapper p.comment-form-email label {
  font-size: 16px;
  margin-bottom: 4px;
}
.woocommerce-tabs.wc-tabs-wrapper p.comment-form-author input,
.woocommerce-tabs.wc-tabs-wrapper p.comment-form-email input {
  display: flex;
  height: 48px;
  padding: 16px 20px;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  border: 1px solid #d6d8e3;
  border-radius: 8px;
  max-width: 700px;
}
.woocommerce-tabs.wc-tabs-wrapper p.comment-form-cookies-consent input {
  margin-right: 5px;
}
body.woocommerce
  .woocommerce-tabs.wc-tabs-wrapper
  #respond
  p.form-submit
  input#submit {
  display: flex !important;
  padding: 16px 42px;
  border-radius: 12px;
  background: #c45c6b;
  color: #fff;
}
.woocommerce-tabs.wc-tabs-wrapper #respond p.comment-form-cookies-consent {
  margin-bottom: 20px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 10px 0 15px;
}
.woocommerce .woocommerce-notices-wrapper .woocommerce-message {
  max-width: 1660px;
  margin: 30px auto;
  background: #f6f6f6;
  border-top-color: #e28390;
}
.woocommerce .woocommerce-message::before {
  color: #c45c6b;
}
.woocommerce .woocommerce-notices-wrapper a.button {
  background: #c45c6b;
  color: #fff;
  border-radius: 6px;
}
.woocommerce .woocommerce-notices-wrapper a.button:hover {
  background: #000;
  color: #fff;
}
.woocommerce-cart .hentry .woocommerce {
  padding: 50px 20px 0px;
  display: flex;
  max-width: 1680px;
  margin: auto;
  flex-wrap: wrap;
}
.select2-selection__rendered {
  padding: 0 !important;
  color: #767676 !important;
}
.woocommerce-cart .hentry .woocommerce .woocommerce-cart-form {
  flex: 70%;
}
.woocommerce-cart .hentry .woocommerce .woocommerce-notices-wrapper {
  flex: 100%;
}
.woocommerce-cart .hentry .woocommerce .cart-collaterals {
  flex: 30%;
}
.woocommerce-cart .hentry .woocommerce .cart-collaterals:after,
.woocommerce-cart .hentry .woocommerce .cart-collaterals:before {
  display: none;
}
.woocommerce-cart .hentry .woocommerce .cart-collaterals .cart_totals {
  width: 100%;
  padding-left: 40px;
}
.woocommerce-cart .hentry .woocommerce .cart-collaterals h2 {
  font-size: 30px;
  margin-bottom: 16px;
}
.woocommerce-cart .hentry .woocommerce .cart-collaterals a.checkout-button {
  background: #c45c6b;
  border-radius: 6px;
  font-size: 18px;
}
.woocommerce-cart
  .hentry
  .woocommerce
  .woocommerce-cart-form
  .product-thumbnail
  img {
  width: 126px;
  max-width: 100%;
}
.woocommerce-cart .hentry .woocommerce .woocommerce-cart-form .product-name a {
  font-family: Sulphur Point;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  color: #000;
}
.woocommerce-cart .hentry .woocommerce .woocommerce-cart-form td a,
.woocommerce-cart .hentry .woocommerce .woocommerce-cart-form td span {
  font-family: Sulphur Point;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  color: #000;
}
.woocommerce-cart
  .hentry
  .woocommerce
  .woocommerce-cart-form
  .product-quantity
  input {
  border: 1px solid #ccc;
  padding: 7px;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
}
.woocommerce-cart .hentry .woocommerce .woocommerce-cart-form .actions .button {
  border-radius: 12px;
  background: #c45c6b;
  color: #fff;
  cursor: pointer;
  font-family: Sulphur Point;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  padding: 11px 27px;
  transition: all 0.5s;
}
.woocommerce-cart
  .hentry
  .woocommerce
  .woocommerce-cart-form
  .actions
  .button:hover {
  background: #000;
}
.woocommerce-cart .woocommerce a.remove {
  color: #c45c6b !important;
  font-size: 22px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.woocommerce-cart .woocommerce a.remove:hover {
  color: #fff !important;
  background-color: #c45c6b !important;
}
.woocommerce-cart
  .hentry
  .woocommerce
  .woocommerce-cart-form
  .product-name
  a:hover {
  color: #c45c6b;
}
.woocommerce-checkout .woocommerce {
  padding: 60px 0 0;
}
.woocommerce-checkout .woocommerce .woocommerce-billing-fields > h3 {
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.woocommerce-checkout .woocommerce form.checkout label {
  color: #767676;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #767676;
  margin-bottom: 4px;
}
.woocommerce-checkout .woocommerce form.checkout input:not([type="checkbox"]),
.woocommerce-checkout .woocommerce form.checkout .select2-selection,
.woocommerce-checkout .woocommerce form.checkout textarea,
form.checkout_coupon.woocommerce-form-coupon input{
  padding: 11px 20px;
  border: 1px solid #d6d8e3;
  border-radius: 8px;
  color: #767676;
  font-family: Lato;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  height: auto;
}
form.checkout_coupon.woocommerce-form-coupon .form-row-last {
    width: 78%;
}
form.checkout_coupon.woocommerce-form-coupon .form-row-last button {
    background: #c45c6b;
    padding: 13px 20px;
    border-radius: 8px;
    transition: all 0.5s;
    color: #fff;
}
form.checkout_coupon.woocommerce-form-coupon .form-row-first {
    width: 22%;
}
.woocommerce div.product .cart button.single_add_to_cart_button:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-image: url(../img/cart.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.woocommerce-form-coupon-toggle .woocommerce-info::before {
    color: #c45c6b;
}
.woocommerce-checkout
  .woocommerce
  form.checkout
  .select2-selection
  #select2-billing_country-container {
  padding: 0;
  color: #767676;
}
.woocommerce-checkout
  .woocommerce
  form.checkout
  .select2-selection
  .select2-selection__arrow {
  height: 100%;
}
.woocommerce-checkout .woocommerce form.checkout textarea {
  min-height: 140px;
}
.woocommerce-checkout .woocommerce form.checkout h3#order_review_heading {
  margin-top: 40px;
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.woocommerce-checkout .woocommerce form.checkout #payment {
  background: #fafafa;
  margin-top: 60px;
}
.woocommerce-checkout .woocommerce form.checkout #payment button#place_order {
  background: #c45c6b;
  padding: 16px 40px;
  border-radius: 8px;
  transition: all 0.5s;
}
.woocommerce-checkout
  .woocommerce
  form.checkout
  #payment
  button#place_order:hover {
  background: #000;
}
.woocommerce-shop .wpfMainWrapper label {
  display: flex;
  align-items: center;
  margin-right: 5px;
}

.xoo-wsc-container,
.xoo-wsc-slider {
  left: 50%;
  right: auto !important;
  top: 50% !important;
  transform: translate(-50%, -50%);
  max-width: 1163px !important;
  padding: 28px 32px;
  height: 500px;
  display: block !important;
  overflow: auto;
}
.xoo-wsc-markup {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.xoo-wsc-cart-active .xoo-wsc-markup {
  visibility: visible;
  opacity: 1;
}

@media (min-width: 576px) {
  .footer-bottom.mobile {
    display: none;
  }
}

@media (max-width: 1900px) {
  .gallery_section .gallery-item {
    flex: 0 0 calc(27.9% - 12px);
  }
  .home .popular-product {
    padding-top: 200px;
  }
}

@media (max-width: 1420px) {
  .timeline-wrapper .slick-arrow {
    left: 25%;
  }

  .timeline-wrapper .slick-next.slick-arrow {
    left: auto;
    right: 25%;
  }

  .nav-section .nav-map {
    max-width: 470px;
  }

  .recipe-section .row {
    min-height: 830px;
  }

  .recipe-section .mid-section {
    right: 11%;
  }

  .popular-product .product-categories form {
    display: flex;
    overflow: auto;
    padding-bottom: 14px;
  }

  .popular-product.listing-view .product-list .product-img {
    padding: 46px 20px;
  }

  .our-story-section .timeline .timeline-wrapper .timeline-slide img {
    height: 50vw;
  }

  .our-story-section .timeline-slide .slide-content {
    padding-left: 59px;
    padding-right: 30px;
  }
  .xoo-cp-modal .xoo-cp-container .xoo-cp-ptitle {
    padding-left: 40px;
    width: 54%;
  }
}

@media (max-width: 1150px) {
  .timeline-wrapper .slick-next.slick-arrow {
    left: auto;
    right: 12%;
  }

  .timeline-wrapper .slick-arrow {
    left: 12%;
  }

  .nav-section .navigate > ul > li > a {
    font-size: 35px;
  }

  .nav-contact-details ul li {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }

  .nav-contact-details ul li span {
    font-size: 20px;
  }

  .recipe-section .left_col .recipe-content {
    padding: 0 130px 0 40px;
  }

  .recipe-section .mid-section {
    right: 8%;
  }

  .product-list {
    flex-wrap: wrap;
  }

  .product-list .product-list-item {
    padding: 0 6px;
    margin-bottom: 20px;
  }

  .product-section .see-all-btn {
    text-align: center;
    padding-top: 48px;
  }

  .tasting-event-sec .col-inner {
    padding: 50px 30px 50px 30px;
  }

  .tasting-event-sec .tasting-btn {
    padding-top: 20px;
  }

  body {
    overflow-x: hidden;
  }

  .popular-product.listing-view .product-list .product-img {
    padding: 46px 10px;
  }

  .product-wrapper .company-journey .left_col {
    padding: 196px 20px;
  }
}

@media (max-width: 1180px) {
    .common-page-class h1 {
        font-size: 60px;
    }
    form.checkout_coupon.woocommerce-form-coupon .form-row-first {
    	width: 42%;
    }
    form.checkout_coupon.woocommerce-form-coupon .form-row-last {
    	width: 58%;
    }
}

@media (max-width: 1024px) {
  .event-section .event-item {
    flex: 0 0 calc(50% - 12px);
  }

  .event-section .event-img img {
    width: 100%;
  }

  .event-section .flex {
    row-gap: 20px;
    column-gap: 24px;
  }

  .event-section {
    padding-top: 50px;
  }

  .product-wrapper .company-journey .right_col {
    padding-left: 50px;
  }

  .product-wrapper .company-journey .right_col h1 {
    font-size: 78px;
  }

  .product-wrapper .company-journey .right_col h2 {
    font-size: 38px;
    padding: 15px 0;
  }

  .our-story-section .timeline-slide .year {
    font-size: 70px;
  }

  .our-story-section .timeline-slide h2 {
    font-size: 40px;
    line-height: 1;
    margin: 10px 0;
  }

  .our-story-section .timeline-slide .slide-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 992px) {
  .timeline-wrapper .timeline-slide figcaption {
    visibility: visible;
    opacity: 1;
    line-height: 1.5;
  }
  .body-wrapper .divider {
    padding: 58px 0 58px;
  }
  .timeline .timeline-wrapper {
    padding-top: 0;
  }

  .timeline-wrapper .slick-next.slick-arrow {
    left: auto;
    right: 12%;
  }

  .timeline-wrapper .slick-arrow {
    left: 12%;
  }

  .timeline-wrapper .timeline-slide figure {
    padding: 0;
  }

  .timeline-slider.slick-initialized .slick-slide,
  .our-story-timeline-slider.slick-initialized .slick-slide {
    transform: scale(1);
    padding-top: 20px;
  }

  .recipe-section .mid-section {
    right: 4%;
  }

  .recipe-section .right_col {
    display: none;
  }

  .recipe-section .left_col {
    flex: 0 0 100%;
  }

  .recipe-section .mid-section {
    right: -60px;
  }

  .recipe-section .left_col .recipe-content {
    padding: 0 40px 0 40px;
  }

  /* .popular-product {

    padding-top: 154px;

  } */
  .timeline-wrapper .slick-arrow i {
    color: #c45c6b;
  }

  .listing-view .product-list .product-list-item {
    flex: 0 0 calc(50%);
  }

  .product-wrapper .timeline-wrapper .slick-arrow,
  .product-wrapper .timeline-wrapper .slick-next.slick-arrow {
    top: auto;
  }

  .our-story-section .timeline .timeline-wrapper .timeline-slide img {
    height: 74vw;
  }
  .xoo-cp-modal .xoo-cp-container .xoo-cp-ptitle {
    width: 44%;
  }
  .recipe-section .mid-section {
    display: none;
  }
  .woocommerce-shop .wpfMainWrapper .wpfFilterButtons {
    display: flex;
    align-items: center;
    flex: 0 0 100%;
  }
  .woocommerce-shop .wpfMainWrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
  .woocommerce-shop .wpfMainWrapper .wpfFilterWrapper {
    width: 29% !important;
    margin: 0;
    margin-right: 18px;
}
  .woocommerce-shop .wpfMainWrapper .wpfFilterButtons {
    display: flex;
    align-items: center;
    flex: 0 0 100%;
    margin-top: 20px;
  }
  .blog-main .post-content {
		padding-left: 30px;
	}
	.blog-main .post-content h1 {
		font-size: 40px;
	}
	.post-item-wrapper .flex .post-item {
		flex: 0 0 50%;
		padding: 0 10px;
		margin-bottom: 60px;
	}
	.blog-main .row {
		width: 86.666%;
		margin: auto;
	}
}

@media (max-width: 767px) {
  .banner-text h1 {
    font-size: 46px;
  }

  .banner-text h2 {
    font-size: 33px;
  }

  .timeline-wrapper .slick-arrow {
    top: 154px;
    left: auto;
    right: 130px;
  }

  #hamburger-menu .menu-text {
    display: none;
  }

  .header .logo {
    max-width: 170px;
  }

  .header .head-right .buy-btn {
    display: none;
  }
  th.xcp-rhead,
  td.xoo-cp-remove {
    display: table-cell;
  }
  .language ul li,
  .language a {
    padding: 0 5px;
  }
  .xoo-cp-modal
    .xoo-cp-container
    .xoo-cp-cart
    .xoo-cp-pdetails
    td.xoo-cp-pimg
    img {
    max-width: unset;
    width: 86px;
  }
  .xoo-cp-modal .xoo-cp-container .xoo-cp-ptitle {
    padding-left: 0;
    width: 170px;
    min-width: 170px;
  }
  #hamburger-menu {
    margin-right: 20px;
  }
  .xoo-cp-modal .xoo-cp-container .xoo-cp-table-bottom {
    display: block;
    padding-bottom: 20px;
  }
  .xoo-cp-modal .xoo-cp-container .xoo-cp-cart-btns a.xoo-cp-close.xcp-btn {
    margin-bottom: 15px;
    margin-top: 30px;
  }
  .xoo-cp-modal .xoo-cp-container .xoo-cp-cart-total {
    padding: 7px 7px 7px 21px;
  }
  .xoo-cp-modal .xoo-cp-container .xoo-cp-cart-total .xcp-ctotal .amount {
    font-size: 16px;
  }
  .xoo-cp-modal .xoo-cp-container .xoo-cp-cart-total .xoo-cp-btn-ch.xcp-btn {
    width: 220px;
  }
  .xoo-cp-cart-table-cont::-webkit-scrollbar {
    height: 8px;
  }
  .xoo-cp-modal .xoo-cp-container .xoo-cp-cart-total {
    padding: 7px 7px 7px 21px;
    justify-content: flex-end;
  }
  .head-right .head-cart a {
    width: 30px;
    height: 30px;
  }
  .xoo-cp-modal .xoo-cp-container .xoo-cp-cart .xoo-cp-pdetails {
    margin-top: 14px;
    padding-top: 0 !important;
  }
  .head-right .head-cart a svg {
    width: 15px;
    height: 15px;
  }

  .header .logo {
    padding: 0 10px;
  }

  .nav-section .nav-section-inner {
    flex-wrap: wrap;
  }

  .nav-section .nav-map {
    max-width: 100%;
    padding-top: 50px;
  }

  .nav-contact-details {
    flex: 0 0 60%;
  }

  .nav-section {
    padding: 103px 0 50px 0;
  }

  .nav-privacy-content {
    padding-top: 30px;
  }

  .company-journey {
    padding: 60px 0;
  }

  h2 {
    font-size: 34px;
  }

  .timeline {
    padding-top: 40px;
  }

  .timeline-wrapper .timeline-slide figure {
    padding: 35px 0 30px;
    width: 100%;
  }

  .timeline-wrapper .timeline-slide figcaption {
    padding-bottom: 20px;
  }

  .timeline-slider.slick-initialized .slick-slide,
  .our-story-timeline-slider.slick-initialized .slick-slide {
    transform: scale(1);
  }

  .timeline-wrapper .slick-next.slick-arrow {
    right: 0;
    top: 13%;
  }

  .timeline-wrapper .slick-next.slick-arrow {
    right: 0;
    top: 13%;
  }

  .timeline-wrapper .slick-arrow {
    right: 50px;
    z-index: 2;
  }

  .timeline-wrapper .slick-arrow {
    right: 30px;
    width: 26px;
    height: 26px;
  }

  .timeline-wrapper .slick-arrow {
    top: 50px !important;
  }

  .recipe-section .left_col p {
    font-size: 16px;
  }

  .recipe-section .mid-section {
    display: none;
  }

  .recipe-section .left_col .recipe-content {
    padding: 0 20px;
  }

  .recipe-section .row {
    min-height: 640px;
  }

  /* .popular-product {

    padding-top: 60px;

  } */
  .timeline-slider.slick-initialized .slick-slide,
  .our-story-timeline-slider.slick-initialized .slick-slide {
    padding-top: 0;
  }

  .tasting-event-sec .row {
    display: block;
  }

  .tasting-event-sec .left_col {
    margin: 0 0 20px;
  }

  .tasting-event-sec {
    padding-top: 50px;
  }

  .product-list .product-list-item .price {
    font-size: 20px;
  }

  .tasting-event-sec h2 {
    font-size: 34px;
  }

  .recipe-section .left_col {
    flex: 0 0 100%;
    padding: 60px 0;
  }

  .nav-section .navigate > ul > li > a {
    font-size: 25px;
  }

  .nav-contact-details ul li span {
    font-size: 16px;
  }

  .nav-section .nav-title {
    margin: 0;
  }

  .nav-map .nav-title {
    margin-bottom: 10px;
  }

  .recipe-section .left_col ul li .counter:after,
  .recipe-section .left_col ul li .counter:before {
    display: none;
  }

  .language {
    display: none;
  }

  body.menu-open .language {
    display: block;
  }

  .nav-privacy-content {
    padding-bottom: 30px;
  }

  .timeline-wrapper .slick-next.slick-arrow {
    right: 43%;
    top: 14.5%;
    transform: translateX(100%);
  }

  .timeline-wrapper .slick-arrow {
    right: 50%;
    width: 26px;
    height: 26px;
    transform: translateX(100%);
  }

  .event-section .flex {
    row-gap: 20px;
    column-gap: 0;
  }

  .event-section .event-item {
    flex: 0 0 100%;
  }

  .body-wrapper .divider {
    padding: 50px 0 50px;
  }

  .gallery_section h2 {
    font-size: 34px;
  }

  .gallery_section .gallery-item {
    flex: 0 0 calc(49% - 0px);
  }

  .gallery-wrapper .gallery-item.small_img {
    flex: 0 0 calc(49% - 0px);
  }

  .gallery-wrapper .gallery-item img {
    width: 100%;
  }

  .event-section .event-img img {
    height: auto;
  }

  .product-wrapper .two_col_content {
    flex-wrap: wrap;
  }

  .product-wrapper .company-journey .left_col {
    flex: 100%;
  }

  .product-wrapper .company-journey .right_col {
    padding-left: 0;
    flex: 100%;
  }

  .product-wrapper .company-journey .right_col {
    padding-top: 40px;
  }

  .product-wrapper .timeline-wrapper .slick-arrow {
    top: auto;
    bottom: 15px;
  }

  .product-wrapper .timeline-wrapper button.slick-next {
    right: 0;
    left: auto;
    transform: unset;
  }

  .product-wrapper .timeline-wrapper button.slick-prev {
    left: 0;
  }

  .product-wrapper .timeline-wrapper .timeline-slider,
  .product-wrapper .timeline-wrapper .our-story-timeline-slider {
    position: relative;
  }

  .timeline {
    padding-top: 100px;
  }

  .our-story-section .timeline-wrapper {
    padding: 0 0 100px;
  }

  .our-story-section .timeline-nav {
    position: relative;
    top: -57px;
  }

  .our-story-section .timeline-wrapper .slick-arrow {
    top: auto !important;
    bottom: 20px;
  }

  .timeline-wrapper .timeline-slide .flex {
    flex-direction: column;
  }

  .our-story-section .timeline .timeline-wrapper .timeline-slide img {
    height: 80vw;
  }

  .our-story-section .timeline-slide .year {
    font-size: 50px;
  }

  .our-story-section .timeline-slide h2 {
    font-size: 30px;
  }

  .our-story-section .timeline-slide .content p {
    font-size: 14px;
  }

  .our-story-section .company-journey {
    padding: 70px 0 20px;
  }

  .map-wrapper iframe {
    max-width: 100%;
    width: 95vw;
    height: 95vw;
  }

  .tasting-event-sec .right_col img {
    height: auto;
    object-fit: inherit;
  }
  .woocommerce div.product {
    display: block;
  }
  .product_cat-uncategorized .related.products {
    margin-top: 40px;
    padding-top: 35px;
  }
  .home .popular-product {
    padding-top: 70px;
  }
  .blog-main .img-section {
		flex: 100%;
	}
	.blog-main .top-news .flex {
		flex-wrap: wrap;
	}
	.blog-main .post-content {
		padding-left: 0;
	}
	.blog-main .img-section {
		padding-bottom: 20px;
	}
	.blog-main .post-content h1 {
		font-size: 32px;
	}
	.post-item-wrapper {
		padding: 80px 0;
	}
	.post-item-wrapper .flex .post-item {
		flex: 0 0 100%;
		padding: 0;
	}
	.pagination {
		padding-top: 0;
	}
	.post-item-wrapper .flex .post-item .img img{
		height: 50vw;
	}
	.blog-main .row {
		width: 100%;
		margin: auto;
	}
	.blog-main .post-title h1 {
		font-size: 32px;
	}
    .blog-main .post-content-section h2 {
    font-size: 26px;
    }
    .blog-main {
        padding-top: 100px;
    }
    .blog-main .date-section {
        font-size: 16px;
    }
    .popular-product.listing-view .title-section, .common-page-class h1 {
        font-size: 50px;
        margin-bottom: 30px;
    }
    .banner-inner .title-section h2 {
    	margin-bottom: 20px;
    }
}

@media (max-width: 610px) {
  .gallery_section .gallery-item {
    flex: 0 0 calc(48.9% - 0px);
  }

  .gallery-wrapper .gallery-item.small_img {
    flex: 0 0 calc(48.9% - 0px);
  }
}

@media (max-width: 575px) {
  .xoo-cp-modal .xoo-cp-container .xoo-cp-cart-total {
    display: block;
    text-align: center;
  }
  .woocommerce,
  .common-page-class {
    padding-top: 114px !important;
  }
  .xoo-cp-modal .xoo-cp-container .xoo-cp-hdtxt {
    font-size: 24px;
  }
  .xoo-cp-modal .xoo-cp-container {
    padding: 18px 18px;
  }
  .woocommerce div.product h1.product_title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .xoo-cp-modal .xoo-cp-container .xoo-cp-cart-total {
    padding: 14px;
    margin: 0;
  }
  .xoo-cp-modal .xoo-cp-container .xoo-cp-cart-total .xoo-cp-btn-ch.xcp-btn {
    margin: auto;
  }
  .xoo-cp-modal .xoo-cp-container .xoo-cp-cart-total .xcp-ctotal .amount {
    margin-bottom: 10px;
    display: block;
  }
  .nav-contact-details {
    flex: 100%;
    padding: 50px 0;
  }

  .nav-section .navigate {
    width: 100%;
  }

  .nav-section .nav-map {
    padding-top: 0;
  }

  .nav-section .buy-online a.btn {
    display: inline-flex;
  }

  .product-list .product-list-item {
    padding: 0 6px;
    margin-bottom: 20px;
  }

  .footer-top .row {
    text-align: center;
    display: block;
  }

  .footer-top .footer-nav {
    margin-bottom: 40px;
  }

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

  .footer-bottom.desktop {
    text-align: center;
    padding-top: 20px;
    display: none;
  }

  .footer-bottom.mobile {
    padding: 40px 0 0;
  }

  .product-section .see-all-btn {
    text-align: center;
    padding-top: 20px;
  }

  .recipe-section .left_col ul li .counter {
    height: 30px;
    flex: 0 0 30px;
  }

  .recipe-section .left_col ul li {
    align-items: center;
  }

  .timeline-wrapper .slick-arrow,
  .timeline-wrapper .slick-next.slick-arrow {
    top: 13.5%;
  }

  .timeline-wrapper .slick-next.slick-arrow {
    right: 40%;
  }

  .gallery_section .gallery-item {
    width: calc(48.9% - 0px);
  }

  .gallery-wrapper .gallery-item.small_img {
    width: calc(48.9% - 0px);
  }

  .gallery-wrapper .gallery-item {
    height: auto;
  }

  .gallery-wrapper .gallery-item img {
    width: 100%;
    height: 200px;
  }

  .gallery_section .gallery-item {
    width: 100%;
    flex: calc(50% - 12px);
  }

  .listing-view .product-list .product-list-item {
    flex: 0 0 calc(100%);
  }

  .popular-product.listing-view .product-list .product-img {
    padding: 46px 40px;
  }

  .popular-product.listing-view .title-section h1 {
    font-size: 40px;
  }

  .popular-product.listing-view .title-section {
    padding: 45px 0;
    text-align: left;
    margin-bottom: 0;
  }

  .woocommerce {
    padding-top: 20px;
  }

  .dark.header .head-right .head-cart > span {
    display: none;
  }

  .dark #hamburger-menu {
    margin: 0;
  }

  .dark .logo img {
    max-width: 210px;
    width: 100%;
  }

  .timeline-wrapper .slick-arrow {
    right: 52%;
  }
  .woocommerce-shop .wpfMainWrapper {
    display: block;
  }
  .woocommerce-shop .wpfMainWrapper .wpfFilterWrapper {
    width: 100% !important;
    margin: 5px 0 0;
    margin-right: 0;
    margin-bottom: 11px;
    padding: 0;
  }
  .common-page-class h1{
  	font-size: 30px;
  }
  form.checkout_coupon.woocommerce-form-coupon .form-row-first {
    width: 100%;
    }
    form.checkout_coupon.woocommerce-form-coupon .form-row-last {
    	width: 100%;
    }
    .woocommerce form .form-row-first,
    .woocommerce form .form-row-last, 
    .woocommerce-page form .form-row-first,
    .woocommerce-page form .form-row-last {
    width: 100% !important;
        overflow: visible;
    }
}

.popup_img img {
  height: auto;
}

@media (max-width: 479px) {
  .banner .banner-bottom {
    flex-direction: column;
    gap: 20px;
  }

  .timeline-wrapper .slick-next.slick-arrow {
    right: calc(50% + -27px);
    top: 12.5%;
    transform: translateX(50%);
  }

  .timeline-wrapper .slick-arrow {
    right: calc(50% + 10px);
    width: 26px;
    height: 26px;
    top: 12.5%;
    transform: translateX(50%);
  }
  .recipe-section .left_col h2 {
    font-size: 26px;
  }
  form.checkout_coupon.woocommerce-form-coupon .form-row-last button {
    font-size: 14px;
    }
}

@media (max-width: 479px) {
}

@keyframes sdb05 {
  0% {
    transform: rotate(0) translate(0, 0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: rotate(0) translate(0, 10px);
    opacity: 0;
  }
}

.event_form_response.error_msg {
  padding: 10px;
  background-color: #f8d7da;
  color: #58151c;
  border-radius: 0.375rem;
  margin-bottom: 10px;
}

.event_form_response.success_msg {
  padding: 10px;
  background-color: #d1e7dd;
  color: #0a3622;
  border-radius: 0.375rem;
  margin-bottom: 10px;
}
.woocommerce-cart aside#secondary,
.woocommerce-checkout aside#secondary {
  display: none;
}
.product_desc,
.product_attr {
  margin-bottom: 20px;
}
.product_desc h3,
.product_attr h3 {
  margin-bottom: 5px;
}
.product_attr table.woocommerce-product-attributes.shop_attributes {
  text-align: left;
}