:root {
  --black-color: #111;
  --white-color: #FFFFFF;
  --red-color: #C20F2F;
  --blue-color: #1A2940;
  --gold-color: #B2934D;
  --gray-color: #424242;
  --light-color: #F6F5EE;
  --brown-color: #F0E8DB;
  --text-color: #777;
  /**/
  --little-text: 0.7rem;
  --menu-text: 0.8rem;
  --regular-text: 1.1rem;
  --medium-text: 1.4rem;
  --h2-text: 1.6rem;
  --big-text: 3rem;
  --extra-text: 3.5rem;
  --footer-text: 0.9rem;
}
html, body {
  padding: 0px;
  margin: 0px;
  color: var(--black-color);
  outline: none;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  background-color: var(--white-color);
  font-family: 'Montserrat', sans-serif;
}
html, body {
  -webkit-font-smoothing: antialiased;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  -moz-osx-font-smoothing: grayscale;
}
body::-webkit-scrollbar {
  display: none;
}
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
* {
  outline: none !important;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
a:hover {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}
.align-justify {
  text-align: justify;
}
._block {
  display: block !important;
}
.nomargin {
  margin: 0 !important;
}
.nomargintop {
  margin-top: 0 !important;
}
.nomarginbottom {
  margin-bottom: 0 !important;
}
.nopadding {
  padding: 0 !important;
}
.nopaddingtop {
  padding-top: 0 !important;
}
.nopaddingbottom {
  padding-bottom: 0 !important;
}
.sticky-top {
  top: 100px;
  z-index: 1;
}
dl, ol, ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
/**main setting**/
.container-main {
  position: relative;
  overflow: unset;
  overflow: hidden;
}
section {
  position: relative;
  margin: 4rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border: 0;
}
section.section-hero {
  padding: 0;
  border: 0;
  margin: 0;
}
section.section-first {
  padding-top: 20rem !important;
  margin: 0;
  border: 0;
}
section.section-pad {
  padding: 4rem 0;
  border: 0;
}
section.bg-brown {
  border: 0;
}
section.bg-blue {
  border: 0;
}
section.section-gallery {
  border: 0;
  padding: 0 5rem;
}
.container {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 4rem;
}
.container:last-of-type {
  margin-bottom: 0;
}
.container.container-mini {
  width: 1000px;
  max-width: 80%;
}
.wrapper {
  padding: 0;
  overflow: hidden;
}
.container-fluid {
  padding: 0;
}
.row {
  position: relative;
  margin-bottom: 4rem;
}
.row.row-mini {
  margin-bottom: 2.5rem;
}
.row:last-of-type {
  margin-bottom: 0;
}
.el-margin {
  margin-top: 4em;
}
.el-margin-text {
  margin-top: 2.5em;
}
.col-pad {
  padding: 2.5rem 5rem;
}
.m-bottom {
  margin-bottom: 4rem;
}
/**end main setting**/
/**hackrow*/
.big-gutters {
  margin-right: -5rem !important;
  margin-left: -5rem !important;
}
.big-gutters > .col, .big-gutters > [class*=col-] {
  padding-right: 5rem;
  padding-left: 5rem;
}
/**end hackrow*/
/**image setting**/
.cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}
.cover.cover-top {
  object-position: top;
}
.cover.cover-bottom {
  object-position: bottom right;
}
.cover.cover-right {
  object-position: right;
}
.cover.cover-left {
  object-position: left;
}
.img-free, .img-free img {
  width: 100%;
  max-width: 100%;
}
/*end image setting*/
/*typo*/
h1, h2, h3, h4, h5, h6 {
  padding: 0px;
  margin: 0 0 0 0;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
  margin-bottom: 0;
}
h1, h2, h3 {
  font-family: 'Libre Bodoni', serif;
  text-transform: uppercase;
  color: var(--black-color);
  font-size: var(--big-text);
  line-height: 1.3;
  font-weight: 400;
}
h2 {
  font-size: var(--h2-text);
}
h3 {
  position: relative;
  line-height: 1.5;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  text-transform:inherit;
  color: var(--text-color);
  font-size: var(--medium-text);
  padding: 2.5rem 0;
}
h3::after, h3::before {
  content: "";
  position: absolute;
  width: 5rem;
  height: 1px;
  background-color: var(--red-color);
  left: 0;
}
h3::after {
  bottom: 0;
}
h3::before {
  top: 0;
}
.pagevillas h3::after, .pagevillas h3::before {
  background-color: var(--gold-color);
}
h4 {
  font-size: var(--little-text);
  font-weight: 500;
  color: var(--text-color);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}
h5 {
  font-size: var(--little-text);
  font-weight: 500;
  color: var(--red-color);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
h5 strong {
  font-weight: 600;
}
p {
  font-size: var(--regular-text);
  color: var(--text-color);
  margin-bottom: 1rem;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
}
p a {
  font-weight: 500;
}
p strong {
  font-weight: 500;
}
p:last-child, p:last-of-type {
  margin-bottom: 0;
}
strong, b {
  font-weight: 500;
}
blockquote {
  font-size: var(--little-text);
  font-style: italic;
  font-family: 'Libre Bodoni', serif;
  margin-top: 1rem;
  padding-right: 20%;
}
/*end typo*/
/*img*/
figure {
  position: relative;
  margin-bottom: 2.5rem;
  width: 100%;
  overflow: hidden;
}
figure:last-of-type {
  margin-bottom: 0;
}
figure.img-box {
  height: 800px;
  min-height: 800px;
}
figure.img-box-mini {
  height: 450px;
}
figure.img-gallery {
  height: 320px;
}
figure.img-gallery-social {
  height: 380px;
  margin-bottom: 30px;
}
figure.img-hero {
  height: 100vh;
  min-height: 100vh;
}
.galleryFull figure.img-gallery {
  width: 320px;
}
.galleryPage figure.img-gallery {
  width: 400px;
}
.my_video {
  position: absolute;
  right: 50%;
  top: 0;
  transform: translate(50%, 0);
  min-width: 100%;
  min-height: 100%;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0.4;
  z-index: 2;
}
.overlay.overlay-dark {
  background: rgba(0, 0, 0, 0.8);
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.1) 100%);
}
/*end img*/
/*btn*/
.btn-more {
  position: relative;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: 0;
  background-color: transparent;
  border-top: 1px solid var(--red-color);
  border-bottom: 1px solid var(--red-color);
  color: var(--red-color);
  padding: 0;
  margin-top: 2.5rem;
  transition: background 0.3s;
  overflow: hidden;
}
.btn-more span {
  display: block;
  font-size: var(--little-text);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.1rem;
  transition: color 0.6s;
  padding: 0.5rem 0.75rem 0.5rem 0.75rem;
  min-width: 0;
  z-index: 2;
}
.btn-more.btn-gold {
  border-color: var(--gold-color);
  color: var(--gold-color);
}
.btn-more.btn-white {
  border-color: var(--white-color);
  color: var(--white-color);
}
.btn-more.btn-download {
  margin-top: 0;
}
.btn-more.btn-download span {
  min-width: 0;
}
@media only screen and (min-width: 992px) {}
/*end btn*/
/*home*/
.banner-hero {
  position: absolute;
  padding: 0 3rem;
  width: 60%;
  top: 50%;
  left: 20%;
  text-align: center;
  z-index: 3;
}
.banner-hero h4 {
  color: var(--white-color);
}
h4.h4-tag span {
  padding: 3px 10px;
  background-color: var(--red-color);
}
h4.h4-tagblue span {
  background-color: var(--blue-color);
}
.banner-hero h1 span {
  display: inline-block;
  padding: 2px 8px 2px 5px;
  margin: 5px 0;
  background-color: var(--red-color);
}
/*end home*/
/*page*/
.row-villas {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--blue-color);
}
.bg-blue .row-villas {
  border-bottom: 1px solid var(--gold-color);
}
.row-tag {
  display: flex;
  justify-content: flex-start;
  font-size: var(--regular-text);
  color: var(--red-color);
}
.row-tag div {
  margin-right: 0.5rem;
}
.row-tag div:last-of-type {
  margin-right: 0;
}
.row-villas .row-tag {
  color: var(--blue-color);
}
.bg-blue .row-villas .row-tag {
  color: var(--white-color);
}
.row-tag strong {
  font-weight: 700;
}
.logo-villas {
  display: inline-block;
  height: 180px;
}
.logo-villas img {
  height: 100%;
}
.box-villas figure, .box-villas h2 {
  margin-bottom: 1.5rem;
}
.box-villas h2 {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  font-family: 'Montserrat', sans-serif;
  font-size: var(--little-text);
  font-weight: 500;
  color: var(--text-color);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}
/*end page*/
/*booking*/
.booking-banner {
  position: relative;
  padding: 1.5rem 1.5rem;
  background-color: var(--white-color);
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 100;
  /*box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.07);*/
}
#sb-container .sb-custom-icon-color {
  width: 15px;
  height: 15px;
}
#sb-container .sb__calendar-day--valid.sb__calendar-day--checkin {
  background: var(--blue-color);
}
@media (max-width: 991px) {
  .sb__dates .sb__form-field {
    width: 100% !important;
  }
  .sb__dates .sb__form-field:first-of-type {
    margin-bottom: 1rem;
  }
}
/*end booking*/
/*box wine*/
/*wine*/
.box-wine {
  display: block;
  position: relative;
  margin-bottom: 3rem;
}
.box-wine-inside {
  padding: 5rem 2.5rem;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}
figure.img-wine {
  height: 600px;
}
figure.img-wine.img-wine-page {
  height: 1000px;
}
figure.img-wine img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin: 0 auto;
  /**/
  mix-blend-mode: multiply;
}
.text-wine {
  padding: 2rem 0 0 0;
  text-align: center;
}
.subtitle-wine {
  display: block;
  color: var(--red-color);
  margin-bottom: 1rem;
}
.title-wine {
  font-family: 'Libre Bodoni', serif;
  text-transform: uppercase;
  color: var(--black-color);
  font-size: var(--medium-text);
}
.intro-wine {
  padding: 1.5rem 1rem;
  padding-bottom: 0 !important;
}
.intro-wine-inside {
  position: relative;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  margin: 0 auto;
}
.intro-wine-inside::before, .intro-wine-inside::after {
  content: "";
  width: 70px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -35px;
  background-color: var(--red-color);
}
.intro-wine-inside::after {
  display: none;
}
.intro-wine-inside:last-of-type::after, .intro-wine-inside:last-of-type::before {
  display: none;
}
@media (min-width: 992px) {
  .intro-wine-inside p {
    font-size: 0.9rem;
  }
  }
  @media (max-width: 1400px) {
    .intro-wine-inside:first-of-type {
      display: none;
    }
  }
  @media (max-width: 1199px) {
    .intro-wine-inside:first-of-type {
      display: block;
    }
  }
.row-wine {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--red-color);
}
.list-awards .row-wine {
  margin-bottom: 6rem;
}
.list-awards .row-wine:last-of-type {
  margin-bottom: 0;
}
.box-awards {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.row-awards {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.row-awards:last-of-type {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.row-awards div {
  font-size: var(--little-text);
  font-weight: 500;
  color: var(--gray-color);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}
.row-awards div:last-of-type {
  font-weight: 700;
  color: var(--red-color);
}
.title-awards {
  font-family: 'Libre Bodoni', serif; 
  text-transform: uppercase;
  color: var(--black-color);
  font-size: var(--medium-text);
  padding-bottom: 1rem;
}
ul.data-text {
  font-size: 85%;
}
ul.data-text li {
  padding: 1rem 0;
  border-bottom: 1px dotted var(--red-color);
}
ul.data-text li:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}
ul.data-text li span {
  color: var(--red-color);
  font-weight: 600;
  margin-right: 0.5rem;
}
ul.data-text a.data-text-wine {
  /*font-family: 'Libre Bodoni', serif;
			font-style: italic;*/
}
ul.data-text a.data-text-wine:hover {
  color: var(--red-color);
}
/*end box wine*/
/*blog*/
.box-blog {}
.blog-text {
  background-color: var(--brown-color);
  height: 100%;
  display: flex;
  align-items: center;
}
.blog-text h2 a {
  text-transform: uppercase;
}
/*end blog*/
/*people*/
.box-people {
  margin-bottom: 30px;
}
.text-people {
  padding: 3rem 1.5rem;
  background-color: var(--brown-color);
}
.text-people h2, .text-people h4 {
  margin-bottom: 1.5rem;
}
.text-people h2 {
  font-size: 1.5rem;
}
/*end people*/
/*map*/
.map {
  margin-top: 1.5rem;
}
.placemap {
  width: 100%;
  height: 600px;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.placemap span {
  font-size: var(--little-text);
  font-weight: 400;
  color: var(--gray-color);
  text-transform: uppercase;
}
.map-big {
  position: relative;
  border-top: 1px solid var(--red-color);
}
.map-ita {
  position: absolute;
  top: 3rem;
  left: 0;
  border: 1px dotted var(--red-color);
  height: 320px;
  width: 320px;
  border-radius: 160px;
  overflow: hidden;
  padding: 1.5rem;
  z-index: 2;
  background-color: var(--light-color);
  /*mix-blend-mode: multiply;*/
}
.map-ita img {
  height: 100%;
  margin: auto;
  display: block;
}
.map-piemonte {
  position: relative;
  z-index: 1;
}
.map-piemonte img {
  width: 100%;
  z-index: 1;
}
.map-pointer {
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--red-color);
  z-index: 3;
}
.map-pointer::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  margin-left: -60px;
  margin-top: -60px;
  border-radius: 60px;
  background-color: var(--red-color);
  opacity: 0;
  transform: scale(0, 0);
  transition: transform 0.3s, opacity 0.5s;
  pointer-events: none;
}
.map-pointer:hover::after {
  opacity: 0.3;
  transform: scale(1, 1);
}
.map-pointer::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  margin-top: -10px;
  border-radius: 10px;
  background-color: var(--red-color);
  opacity: 1;
  animation: opacityAnime 3s infinite;
}
@keyframes opacityAnime {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
  }
}
.map-pointer:hover::before {
  opacity: 0;
  animation: opacityStop 1s infinite;
}
@keyframes opacityStop {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.map-pointer.map-p-01 {
  bottom: 64%;
  left: 44.5%;
}
.map-pointer.map-p-02 {
  bottom: 65%;
  left: 47%;
}
.map-pointer.map-p-03 {
  bottom: 64.5%;
  left: 61.2%;
}
.map-pointer.map-p-04 {
  bottom: 64.5%;
  left: 68%;
}
.map-text {
  position: absolute;
  text-align: center;
  font-family: 'Libre Bodoni', serif;
  z-index: 5;
  padding: 1rem;
  background-color: var(--light-color);
  border: 1px dotted var(--red-color);
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transform: scale(0, 0);
  transition: transform 0.3s, opacity 0.5s;
}
.map-text.active {
  opacity: 1;
  transform: scale(1, 1);
}
.map-title {
  font-size: 1.3rem;
  color: var(--red-color);
}
.map-loc {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--black-color);
}
.map-info {
  font-size: 0.75rem;
  color: var(--red-color);
  margin-top: 3px;
}
.map-text.map-p-01 {
  bottom: 58.5%;
  left: 34.5%;
}
.map-text.map-p-02 {
  bottom: 66%;
  left: 47.5%;
}
.map-text.map-p-03 {
  bottom: 50%;
  left: 58%;
}
.map-text.map-p-04 {
  bottom: 59%;
  left: 70%;
}
/*end map*/
/*margin hack*/
.row.remove-margin-list {
  margin-bottom: -4rem !important;
}
.row.remove-margin-list > [class*=col-] {
  margin-bottom: 4rem;
}
.remove-margin-list-social {
  margin-bottom: -4rem !important;
}
.remove-margin-list-social > [class*=col-] {
  margin-bottom: 4rem;
}
/*end margin hack*/
/****e-commerce***/
/*cart*/
.row-cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  margin-bottom: 2rem;
}
.row-cart:last-of-type {
  margin-bottom: 0;
}
.row-cart .img-wine-shop {
  height: 350px;
  width: 100%;
}
.row-cart .area-quantity {
  margin: 0;
  justify-content: end;
}
.cart-checkout .row-cart {
  justify-content: flex-start;
}
.cart-checkout .row-cart .img-wine-shop {
  height: 150px;
}
.col-cart {
  width: 25%;
}
.col-cart.col-prod {
  width: 50%;
}
.col-cart h3 {
  margin-bottom: 1rem;
}
.cart-checkout .row-cart .col-cart h5 {
  margin-bottom: 5px;
}
.img-wine-shop {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 750px;
}
.img-wine-shop img {
  display: block;
  max-width: 90%;
  max-height: 80%;
  mix-blend-mode: multiply;
  filter: brightness(110%);
}
.area-quantity {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  width: auto;
}
.quantity-button {
  position: relative;
  width: 35px;
  height: 35px;
  border-radius: 30px;
  color: var(--red-color);
  font-weight: 100;
  text-align: center;
  cursor: pointer;
  /**/
  border: none;
}
.quantity-button span {
  font-size: 1.5rem;
  line-height: 32px;
}
.quantity-value {
  color: var(--gray-color);
  border-radius: 0.25rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0 5px;
  width: 50px;
  height: 45px;
  padding-left: 15px;
  font-weight: 400;
  text-align: center;
}
.quantity-button.remove {
  margin-left: 5px;
  height: auto;
}
.data {
  padding: 4rem;
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}
@media (max-width: 1199px) {
  .img-wine-shop {
    height: 450px;
    border-bottom: 1px dotted var(--red-color);
  }
  .col-cart {
    width: 100%;
    margin-bottom: 2rem;
    padding: 0 2rem;
  }
  .col-cart:last-of-type {
    margin-bottom: 0;
  }
  .col-cart.col-prod {
    width: 100%;
  }
  .row-cart {
    padding: 2rem 0;
  }
  .row-cart .area-quantity {
    justify-content: center;
    padding: 1rem;
    border-top: 1px dotted var(--red-color);
    border-bottom: 1px dotted var(--red-color);
  }
  .quantity-value {
    padding-left: 0;
  }
  .cart-checkout .row-cart .img-wine-shop {
    border: none;
  }
  .cart-checkout .row-cart .col-cart {
    width: 25%;
    margin-bottom: 0;
    padding: 0;
  }
  .cart-checkout .row-cart .col-cart.col-prod {
    width: 75%;
  }
}
@media (max-width: 767px) {
  .row-cart .img-wine-shop {
    height: 320px;
  }
  .data {
    padding: 3rem 2rem;
  }
}
/*end cart*/
/*footer*/
section.section-social {}
footer {
  background-color: var(--white-color);
}
footer .container {
  width: 100%;
  max-width: 100%;
}
footer .row {
  padding: 3rem 3rem;
  margin-bottom: 0;
  background-color: var(--brown-color);
}
footer .row:last-of-type {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background-color: var(--black-color);
  color: var(--brown-color);
}
footer .row:first-of-type {
  background-color: var(--white-color);
}
footer .row::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 0;
  left: 0;
  /**/
  display: none;
}
footer .row:first-of-type::before {
  display: block;
}
.logo-footer {
  display: inline-block;
  height: 110px;
}
.logo-footer img {
  height: 100%;
}
footer p {
  font-size: var(--footer-text);
}
footer p a {
  font-weight: 400;
}
footer p strong {
  font-weight: 400;
}
/*end footer*/
/**background**/
.bg-brown {
  background-color: var(--brown-color);
}
.bg-blue {
  background-color: var(--blue-color);
}
.bg-blue h1, .bg-blue h2, .bg-blue h3 {
  color: var(--white-color);
}
.bg-blue h4 {
  color: var(--gold-color);
}
.bg-blue p {
  color: var(--white-color);
  opacity: 0.7;
}
.bg-light {
  background-color: var(--light-color);
}
.red-color {
  color: var(--red-color);
}
.section-hero h1, .section-hero h2, .section-hero h3 {
  color: var(--white-color);
}
/**end background**/
/*swiper gallery*/
.swiper-container-nav {
  margin-bottom: 5rem;
}
.swiper-button-next, .swiper-button-prev {
  position: relative;
  width: 5rem;
  height: 2rem;
  margin: 0;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  background-image: url("../img/icon/arrow.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center left;
  transition: opacity 0.3s;
}
.galleryPage .swiper-container-nav {
  margin-bottom: 2.5rem;
}
.galleryPage .swiper-button-next, .galleryPage .swiper-button-prev {
  background-image: url("../img/icon/arrow-gold.svg");
}
.sliderCards .swiper-container-nav {
  display: none;
}
.swiper-slide.swiper-slide-blockquote {
  width: 320px;
}
@media only screen and (max-width: 992px) {
  .row.swiper-wrapper {
    flex-wrap: nowrap;
    margin-left: 0;
    padding-right: 0;
    margin-bottom: 3.5rem;
  }
  .row.swiper-wrapper .box-wine.swiper-slide {
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
  }
  .row.swiper-wrapper .box-wine-inside {
    padding: 2rem;
    /*background-color: #eae0cf;*/
  }
  .row.swiper-wrapper .box-wine-inside .text-wine {
    padding-left: 0;
    padding-right: 0;
  }
  /*.row.swiper-wrapper .box-wine-inside .text-wine p, .row.swiper-wrapper .box-wine-inside .text-wine {
    font-size: 0.8rem;
  }*/
  .row.swiper-wrapper figure.img-wine {
    height: 400px;
  }
  .sliderCards .swiper-container-nav {
    display: block;
    margin-bottom: 1rem;
  }
  .sliderCards .swiper-pagination-bullets.swiper-pagination-horizontal {
    position: relative;
    bottom: auto;
    left: auto;
  }
  .swiper-pagination-bullet-active {
    background-color: var(--red-color);
  }
}
.galleryBox figure {
  margin-bottom: 0 !important;
}
.galleryBox .swiper-container-nav {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30px;
  margin: 0;
}
.galleryBox .swiper-pagination-bullet {
  background-color: var(--white-color);
  opacity: 1;
}
.galleryBox .swiper-pagination-bullet-active {
  background-color: var(--gold-color);
}
/*end swiper gallery*/
/*progress bar*/
@media only screen and (max-width: 992px) {
  .sideleft {
    position: fixed;
    width: 5px;
    height: 100vh;
    left: 0;
    top: 0;
    background: transparent;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    z-index: 2;
  }
  .progress-bar {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background-color: var(--red-color);
  }
}
/*end progress bar*/
/*preloader*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--brown-color);
  width: 100%;
  height: 100%;
  z-index: 999000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, transform 1s;
  pointer-events: none;
}
.is-complete .preloader {
  opacity: 0;
}
/*end preloader*/
/*modal*/
.modal.show {
  display: block;
}
.modal-backdrop {
  z-index: 9998;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.20) 100%);
}
.modal-backdrop.show {
  opacity: 1;
}
.modal {
  z-index: 9999;
}
.modal.fade, .modal-backdrop.fade {
  transition: opacity .75s linear;
}
.modal .close {
  padding-right: 0;
  color: var(--gold-color);
  opacity: 1;
}
.modal-content {
  margin: 2rem 0;
  border: none;
  padding: 1rem;
  padding-top: 0;
  border-radius: 10px;
  background-color: var(--white-color);
}
.modal-content h4 {
  margin-bottom: 1rem;
}
.modal-content .btn-more {
  margin-top: 1.5rem;
}
.modal-header {
  margin-bottom: 1rem;
  border-color: var(--gold-color);
  border-bottom-style: dotted;
}
.modal-body {
  padding-top: 2rem;
  border: 1px solid var(--gold-color);
  background-color: var(--light-color);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.modal-body figure {
  margin-bottom: 2rem !important;
  height: 250px !important;
}
/*end modal*/
/*selection*/ ::-moz-selection {
  color: white;
  background: black;
}
::selection {
  color: white;
  background: black;
}
/*end selection*/
.iubenda-tp-btn[data-tp-float][data-tp-float=bottom-right] {
  display: none !important;
}