@font-face {
  font-family: 'Candara';
  src: url('../fonts/Candara-Light.woff2') format('woff2'),
      url('../fonts/Candara-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Big Caslon';
  src: url('../fonts/BigCaslon-Medium.woff2') format('woff2'),
      url('../fonts/BigCaslon-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Candara';
  src: url('../fonts/Candara-Bold.woff2') format('woff2'),
      url('../fonts/Candara-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Light.woff2') format('woff2'),
      url('../fonts/Outfit-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Regular.woff2') format('woff2'),
      url('../fonts/Outfit-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Outfit';
  src: url('../fonts/Outfit-Medium.woff2') format('woff2'),
      url('../fonts/Outfit-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/WorkSans-Regular.woff2') format('woff2'),
      url('../fonts/WorkSans-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Calibri';
  src: url('../fonts/Calibri-Bold.woff2') format('woff2'),
      url('../fonts/Calibri-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
      url('../fonts/Montserrat-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}






/* Fonts */
:root {
  --default-font: 'Candara';
  --vinos-font: 'Javanese Text';
  --heading-font: 'Outfit';
  --nav-font: 'Montserrat';
  --montserrat-font: 'Montserrat';
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #f5f9ff; /* Background color for the entire website, including individual sections */
  --default-color: #5d5d5d; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #080808; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #c69c6d; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --regular-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
} 

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #080808;  /* The default color of the main navmenu links */
  --nav-hover-color: #c69c6d; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #080808; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #c69c6d; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f5f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #080808;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: 18px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}


a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

#navbarSupportedContent a {
  color: var(--nav-color);
  text-decoration: none;
  transition: 0.3s;
}
#navbarSupportedContent .active {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}
#navbarSupportedContent a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  /*font-style: italic;*/
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header .topbar {
  background-color: var(--heading-color);
  height: 40px;
  padding: 0;
  font-size: 12px;
  transition: all 0.5s;
}

.header .topbar .contact-info {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info a,
.header .topbar .contact-info span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info a,
  .header .topbar .contact-info span {
    font-size: 12px;
  }
}

.header .topbar .contact-info a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  background-color: transparent;
  min-height: 60px;
  padding: 18px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  height: 40px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  background-color: var(--heading-color);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--contrast-color);
    padding: 18px 15px;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color);
  }

}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--contrast-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--heading-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--contrast-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color);;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }


  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: var(--heading-color);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.bg-dark {
  background-color: var(--heading-color) !important;
}
.footer {
  color: var(--heading-color);
  font-size: 14px;
  position: relative;
  background-position: center bottom;
  background-size: cover;
}



.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

#quick-menu {
  font-family: var(--montserrat-font);
  font-size: 18px;
  font-weight: bolder;
  color: var(--heading-color);
  width: 100%;
  overflow: hidden;
}
#quick-menu a {
  font-family: var(--montserrat-font);
  font-size: 18px;
  font-weight: bolder;
  color: var(--heading-color);
}
.info-footer {
  border-left: 2px solid #000;
  height: auto;
  color: var(--default-color);
  font-family: 'Big Caslon';
}
.info-footer p{
  font-size: 18px;
  color: var(--heading-color);
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--heading-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#preloader img {
  width: 400px;
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
  margin-top: 137px;
}

.page-title h1 {
  font-size: 34px;
  font-weight: 600;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
.container-section {
  padding: 80px 0;
  scroll-margin-top: 78px;
  overflow: clip;
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 80px 0;
  scroll-margin-top: 78px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero p, 
#hero span {
  color: #FFF;
}
#hero {
  width: 100%;
  height: 100dvh;
  background-size: cover;
  background-position: center top;
  position: relative;
}
#hero::before {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: rgb(255,255,255);
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(8,8,8,0.4990371148459384) 50%, rgba(8,8,8,1) 100%);
}

#vertical-button {
  position: fixed;
  right: 0;
  top: 40%;
  z-index: 2;
}
#vertical-button a{
  color: var(--contrast-color);
  writing-mode: vertical-rl;
  text-orientation: upright;
  background-color: var(--heading-color);
  border-radius: 1.5rem 0 0 1.5rem;
  padding: 30px 5px;
  font-size: 14px;
  transition: .3s;
  border: 1px solid var(--accent-color);
}
#vertical-button a:hover{
  background-color: var(--accent-color);
  transition: .3s;
}
#horizontal-button {
  position: absolute;
  right: 50px;
  bottom: 50px;
  z-index: 2;
}



.btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--montserrat-font);
  font-weight: 400;
  font-size: 14px;
  border-radius: .2rem;
  letter-spacing: 1px;
  display: inline-block;
  padding: 15px 35px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}


.btn-contact {
  color: var(--contrast-color);
  background: var(--heading-color);
  font-family: var(--montserrat-font);
  font-size: 14px;
  padding: 15px 35px;
  font-weight: 400;
  border-radius: .2rem;
  letter-spacing: 1px;
  display: inline-block;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.btn-contact:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--heading-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}


.btn-get-invert {
  font-family: var(--heading-font);
  font-size: 20px;
  padding: 8px 35px;
  font-weight: 400;
  color: var(--heading-color);
  border: none;
  background: var(--contrast-color);
  letter-spacing: 1px;
  display: inline-block;
  transition: 0.5s;
  border-radius: .2rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.btn-get-invert:hover {
  color: var(--heading-color);
  background: var(--background-color);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}




.btn-transparent {
  color: var(--contrast-color);
  padding: 18px 15px 6px 15px;
  font-size: 20px;
  letter-spacing: 1px;
  font-family: var(--nav-font);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  background-color: transparent;
  border: none;
  position: relative;
}

.btn-transparent:hover {
  color: var(--accent-color);
}

#counter-pedido {
  position: absolute;
  font-size: 12px;
  font-weight: bold;
  color: var(--contrast-color);
  background: var(--accent-color);
  z-index: 998;
  padding: 10px 6px;
  border-radius: 20px;
  left: 50%;
  top: 15px;
  line-height: 0;
}





/*MY STYLES*/
.swiper-button-next:after {
  font-family: bootstrap-icons !important;
  content: "\F231";
  display: inline-block;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 32px;
}
.swiper-button-prev:after {
  font-family: bootstrap-icons !important;
  content: "\F22D";
  display: inline-block;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 32px;
}
.divider {
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
  margin: 30px 0;
}
.logo-footer {
  width: 250px;
  height: auto;
}
.section-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.section-title {
  font-size: 54px;
}

#home-enoturismo {
  height: 720px;
  background-position: center bottom !important;
}
#home-enoturismo::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 50%;
  background-color: rgb(255,255,255);
}
#home-enoturismo .container {
  position: relative;
  z-index: 2;
}
.cabanas-card .cabanas-card-img .swiper-wrapper .swiper-slide img{
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: .2rem;
}
.cabanas-card .cabanas-card-body h2 {
  font-weight: 400;
  font-size: 42px;
}
.overlay-black-top::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: .2rem;
  background: rgb(255,255,255);
  background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
}


#home-vinedos {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
#home-vinedos::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 200px;
  background: #DB5A20;
}
.img-bg_1 {
  background-size: cover;
  background-position: center;
  width: 100%;
  content: "";
  padding-bottom: 80%;
}
#padd-home-vinedos {
  padding-top: 100px;
  padding-bottom: 100px;
}
/*
#home-vinedos {
  height: 900px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: visible;
}

#home-vinedos::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(8, 8, 8, 0.5);
}
*/
#home-recorrido {
  position: absolute;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  top: -250px;
}

#nav-tab .nav-link {
  background-color: #f5f9ff;
  color: var(--default-color);
  letter-spacing: 1px;
  display: inline-block;
  transition: 0.5s;
  border-radius: 1rem 1rem 0 0 !important;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  padding: 5px 35px;
}
.recorrido-content {
  border-radius: 3rem;
}

#home-tienda {
  overflow: visible;  
}
#home-tienda .tienda-card{
  padding: 100px;
  position: relative;
  overflow: hidden;
  margin-top: -250px;
  border-radius: 2rem;
}
#home-tienda .tienda-card .deco_1{
  position: absolute;
  width: 500px;
  height: 500px;
  right: -150px;
  top: -150px;
  z-index: 1;
  opacity: .2;
}
#home-tienda .productos img {
  width: auto;
  height: 300px;
  margin-bottom: 35px;
}
#home-tienda .productos h2 {
  font-family: var(--vinos-font);
  font-size: 24px;
}
#home-tienda .swiper-button-next, 
#home-tienda .swiper-button-prev {
  color: var(--contrast-color);
}

#home-galeria .swiper-slide a img{
  opacity: .6;
}
#home-galeria .swiper-slide.swiper-slide-active a img{
  opacity: 1;
}


.footer-newsletter ul li a i {
  font-size: 24px;
}
.swiper-pagination-bullet-active {
  background: var(--accent-color)
}
.swiper-button-next, .swiper-button-prev {
  color: var(--contrast-color);
}

/*INSITTUCIONAL*/
#institucional .swiper-one .swiper-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/*INSITTUCIONAL*/
#home-institucional {
  position: absolute;
  z-index: 4;
  left: 50%;
  transform: translateX(-50%);
  bottom: 60px;
}

/*ENOTURISMO*/
.cabanas-card {
  width: 100%;
  border-radius: 2rem;
  background-color: #222;
  padding: 50px;
}
.cabanas-card .swiper-slide img {
  width: 100%;
  height: 350px;
  border-radius: .2rem;
}

/*VIÑEDOS*/
.vinedos-card {
  width: 100%;
  border-radius: 2rem;
  background-color: #222;
  padding: 50px;
}

/*TOENDA*/
.product-image img{
  width: auto;
  height: 300px !important;
  object-fit: cover;
}
.product-image {
  margin-bottom: 15px;
}
.product-body {
  height: 120px !important;
}
.product-body p {
  margin-bottom: 0;
  font-size: 22px;
}
.expanded-product {
  width: auto;
  height: 400px;
  object-fit: cover;
}


#offcanvasCart .item-added img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}
#offcanvasCart .item-added h6 {
  font-size: 15px;
  font-weight: 600;
}
#offcanvasCart .item-added span {
  font-weight: 600;
  color: #198754;
}
.offcanvas-footer p {
  font-weight: 600;
  color: #198754;
}
.offcanvas-footer b {
  font-weight: 600;
  color: var(--color-black);
}


.bg_contact {
  background-size: cover;
  background-position: center;
  width: 100%;
  content: "";
  padding-bottom: 100%;
}
.bg-img-2, .bg-img-3 {
  background-size: cover;
  background-position: center;
  width: 100%;
  content: "";
}
.bg-img-2 {
  height: 900px;
}
.bg-img-3 {
  padding-bottom: 100%;
}

.inner-spacer {
  width: 100%;
  height: 100px;
}

#contactForm label {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  font-family: var(--montserrat-font);
}

#quienes-somos-content .swiper .swiper-wrapper .swiper-slide img,
#recorridosModal .swiper .swiper-wrapper .swiper-slide img, 
#vinedosModal .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}





.product-card {
  min-height: 500px !important;
  height: auto;
}


/* FILTER */

#session-nav #navbarSupportedContent .navbar-nav{
  display: block !important;
}
#session-nav h5{
  color: var(--color-dark);
}
.session-menu-list li {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-check label {
  font-size: 14px;
}
.scrolling-content {
  overflow-x: hidden;
  overflow-y: scroll;
  height: auto;
  max-height: 300px;
}
.scrolling-content::-webkit-scrollbar-track
{
	border-radius: 2px;
	background-color: var(--color-light);
}
.scrolling-content::-webkit-scrollbar
{
	width: 2px;
	background-color: var(--color-light);
}
.scrolling-content::-webkit-scrollbar-thumb
{
	border-radius: 2px;
	background-color: var(--color-primary);
}
/* FILTER */








.half-fluid .left-half,
.half-fluid .right-half {
  left: 50%;
  margin-left: -50vw;
  max-width: 100vw;
  position: relative;
  right: 50%;
  width: 100vw;
}

@media (min-width: 992px) {
  .half-fluid .left-half {
    padding-left: 0 !important;
    position: absolute;
    left: 0;
    right: 50%;
    margin-left: auto;
    width: auto;
  }
  .half-fluid .right-half {
    padding-right: 0 !important;
    position: absolute;
    right: 0;
    left: 50%;
    margin-left: auto;
    width: auto;
  }
}
.enoturismo-swiper {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}


@media only screen and (max-width: 768px) {
  #preloader img {
    width: 250px;
  }
  .header .logo img {
    height: 35px;
  }
  #horizontal-button {
    position: absolute;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
    z-index: 2;
  }
  .cabanas-card, .vinedos-card {
    padding: 25px 15px;
  }
  #home-vinedos {
    height: auto;
    display: block;
    align-items: unset;
    overflow: unset;
  }
  #home-recorrido {
    position: relative;
    z-index: 2;
    left: unset;
    transform: unset;
    top: unset;
    margin-bottom: 50px;
  }
  #home-enoturismo {
    height: auto;
    display: block;
    align-items: unset;
    overflow: unset;
  }
  #home-enoturismo::before {
    left: 0;
  }
  #home-tienda .tienda-card {
    padding: 25px 15px;
    position: relative;
    overflow: hidden;
    margin-top: unset;
  }
  .buttons-100 button, 
  .buttons-100 a {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  } 
  .w-25 {
    width: 100% !important;
  }
  .img-bg_1 {
    border-radius: 0 0 .5rem .5rem;
  }
  .container-section {
    padding: 80px 15px;
  }
  #quick-menu {
    text-align: center;
  }
  #quick-menu a {
    font-size: 12px !important;
  }
  .section-title {
    font-size: 28px;
  }
}