/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

@font-face {
    font-family: 'bodoni_stdbook';
    src: url('../../assets/fonts/bodonistd-book-webfont.woff2') format('woff2'),
         url('../../assets/fonts/bodonistd-book-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'bodoni_stdbook_italic';
    src: url('../../assets/fonts/bodonistd-bookitalic-webfont.woff2') format('woff2'),
         url('../../assets/fonts/bodonistd-bookitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'bodoni_mtregular';
    src: url('../../assets/fonts/bod_r-webfont.woff2') format('woff2'),
         url('../../assets/fonts/bod_r-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'bodoni_stditalic';
    src: url('../../assets/fonts/bodonistd-italic-webfont.woff2') format('woff2'),
         url('../../assets/fonts/bodonistd-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'mallorieregular';
    src: url('../../assets/fonts/mallorieregular-7bolr-webfont.woff2') format('woff2'),
         url('../../assets/fonts/mallorieregular-7bolr-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html {
    font-size: 16px;
    overflow-x: hidden;
}
body {
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: #2f2f2f;
    font-size: 16px;
    position: relative;
}

p {
    font-weight: 500;
}

a, .Web-Header.Sticky, .cta, img, .menu,
.menu_overlay, a::after {
    text-decoration: none;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    letter-spacing: 1.5px;
    color: #000;
}

a:hover {
    text-decoration: none;
    color: initial;
}

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

h1,h2,h3,h4,h5,h6 {
    font-family: 'bodoni_mtregular';
}

/* WEB UTILITIES */

.Web-Wrapper {
    display: block;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
}
#status {
    width: 200px;
    height: 200px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -100px 0 0 -100px;
}

.cta {
    border-left: 2px solid #9b1831;
    background-color: transparent;
    padding: 5px 20px;
    color: #9b1831;
    width: auto;
    height: 30px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.812rem;
    font-weight: 500;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    transition: .5s;
    width: 0;
    z-index: -1;
    background-color: #9b1831;
}

.cta:hover{
    color: #fff;
    text-decoration: none;
}

.cta:hover::before {
    right: 0;
    width: 100%;
}

.title {
    font-size: 3rem;
    line-height: 3.375rem;
}
.subTitle {
    font-size: 1.125rem;
    line-height: 1.125rem;
}
.text {
    font-size: 1rem;
    line-height: 1.75rem;
}

/* images effects */
.image_section_wrapper {
    overflow: hidden;
}
.image_section_wrapper .image_section {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}
.image_section_wrapper:hover .image_section {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    -webkit-transition: -webkit-transform 5s ease-in-out;
    transition: -webkit-transform 5s ease-in-out;
    transition: transform 5s ease-in-out;
    transition: transform 5s ease-in-out,-webkit-transform 5s ease-in-out;
}
.menu_overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
}
.menu_overlay.Active {
    opacity: 1;
    visibility: visible;
}

/* WEB HEADER /////////////////////////////////////////////////////////////*/

.Web-Header {
    padding: 34px 0 35px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}
.container-header {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}
.header-nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.style-1 .header-nav-wrapper {
    height: 118px;
}
.style-2 .header-nav-wrapper {
    height: 91px;
}
.header_social {}
.header_social li {}
.header_social li a {
    font-size: 2rem;
    line-height: 2rem;
    color: #fff;
    text-decoration: none;
}

.style-1 .header-nav-wrapper .boxLogo {
    position: absolute;
    left: 50%;
    margin-left: -59px;
}
.style-2 .header-nav-wrapper .boxLogo {
    position: absolute;
    left: 50%;
    margin-left: -45px;
}
.header-nav-wrapper .boxLogo .logo {}

.header-nav-wrapper .header-nav.header_left {}
.header-nav-wrapper .header_right {
    display: flex;
    align-items: center;
    gap: 26px;
}
.BoxIdioma {
    display: flex;
    width: 60px;
    justify-content: space-between;
    color: #fff;
}
.BoxIdioma .Link.active {
    color: #fff;
    background-color: #9b1831;
}
.BoxIdioma .Link {
    color: #000;
    padding: 0px 3px;
    border-radius: 3px;
}
.BoxIdioma .Link:hover {
    background-color: #9b1831;
    color: #fff;
}

.menu-activador {
    width: 36px;
    height: 20px;
}
.menu-activador  #openMenu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;  
    cursor: pointer;
}
.menu-activador-linea {
    height: 2px;
    background-color: #fff;
    opacity: 1;
    transform: translateY(0) rotate(0);
    transition: all 0.3s;
}

/* Menu Mobile */

.menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 310px;
    height: 100%;
    z-index: 3;
    background-color: #e0ddd8;
    transform: translateX(110%);
}
.menu.Active {
    transform: translateX(0%);
}
.menu_mobile_head {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 12px;
    border-bottom: 1px solid #b1b1af;
}
.menu_mobile_body {
    padding: 50px 12px;
}
.header-nav_mobile {}
.header-nav_mobile ul {}
.header-nav_mobile ul li {}
.header-nav_mobile ul li a {
    font-family: 'bodoni_stdbook';
    font-size: 1rem;
    line-height: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    color: #2f2f2f;
    letter-spacing: 2px;
    position: relative;
    padding: 10px 0;
    display: block;
}

.cta_close {
    width: 37px;
    height: 37px;
}
.cta_close .menu-linea {
    display: block;
    height: 1px;
    background-color: #2f2f2f;
    opacity: 1;
    transition: all 0.3s;
}
.cta_close .menu-linea:first-child {
    transform: translateY(18px) rotate(45deg);
}
.cta_close .menu-linea:last-child {
    transform: translateY(17px) rotate(-45deg);
}

/* HOME HERO /////////////////////////////////////////////////////////////*/

.bw-home-hero {
    background-image: url('../../assets/img/home/hero-home-Bira-Wines.jpg');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 749px;
    padding: 90px 0;
}
.homeHero_text {
    text-align: center;
    position: relative;
    color: #fff;
}
.homeHero_text .Title {
    font-size: 4.375rem;
    line-height: 4.375rem;
    font-family: 'bodoni_stdbook';
    text-transform: uppercase;
}
.homeHero_text .Title span {
    color: #9b1831;
}
.arrowDown {
    padding: 10px;
    position: absolute;
    left: 50%;
    bottom: -150px;
    margin-left: -28px;
}
.arrowDown span {
    display: block;
    position: relative;
    width: 37px;
    height: 20px;
}
.arrowDown span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -10px;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #fff;
    transform: rotate(45deg);
}
.arrowDown span::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #fff;
    transform: rotate(-45deg);
}

/* HOME CUORE ITALIANO /////////////////////////////////////////////////////////////*/

.bw-home-cuore {
    background-color: #edeae5;
}
.pt-8rem {
    padding-top: 8rem;
}
.home-cuore_box {
    width: 720px;
    max-width: 100%;
}
.home-cuore_box .home-cuore_text {
    text-align: left;
    color: #2f2f2f;
}
.home-cuore_box .home-cuore_text .subTitle {
    font-family: 'bodoni_mtregular';
    font-size: 1.187rem;
    line-height: 1.187rem;
    text-transform: uppercase;
    color: #a39d8f;
    margin-bottom: 2rem;
}
.home-cuore_box .home-cuore_text .title {
    font-size: 3.873rem;
    line-height: 3.686rem;
    margin-bottom: 2rem;
}
.home-cuore_box .home-cuore_text .boxText {
    width: 77%;
}
.home-cuore_box .home-cuore_text .boxText .text {}
.home-cuore_box .home-cuore_text .cta {}
.home-cuore_box .home-cuore_text .cta:hover {}

.home-cuore_img {}
.home-cuore_img .image_section {
    width: 991px;
    height: 735px;
    max-width: 100%;
}
.bw-home-cuore .imgFloat {
    position: absolute;
    top: -80px;
    left: -80px;
}

/* HOME FRASE CARRUSEL /////////////////////////////////////////////////////////////*/

.bw-criticas-carrusel {
    padding: 6rem 0;
}
.container_carrusel_critica {
    max-width: 1154px;
}
.critica_slide_items {
    width: 100%;
    display: flex;
    align-items: center;
    height: 270px;
}
.critica_slide_es .critica_slide_items {
    height: 270px;
}
.critica_items_img {
    margin-right: 48px;
    margin-left: 4px;
}
.critica_items_img .critica_box_perfil {
    width: 152px;
    height: 152px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0;
}
.critica_items_img .critica_box_perfil img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.critica_items_content {
    display: flex;
    align-items: center;
}
.critica_items_content blockquote {
    font-family: 'bodoni_stditalic';
    color: #a39d8f;
    font-size: 2rem;
    line-height: 2.875rem;
    margin: 0;
}
.critica_items_content blockquote cite {
    font-family: 'Montserrat', sans-serif;
    color: #2f2f2f;
    font-size: 0.809rem;
    line-height: 1.121rem;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 500;
    position: relative;
    padding-left: 38px;
}
.critica_items_content blockquote span {
    font-family: 'Montserrat', sans-serif;
    color: #2f2f2f;
    font-size: 0.9rem;
    line-height: 0.9rem;
    font-style: italic;
}
.critica_items_content blockquote cite::before {
    content: '';
    display: block;
    width: 26px;
    height: 1px;
    background-color: #2f2f2f;
    position: absolute;
    top: 50%;
    left: 0px;
}

/* Control carrusel critica */
.control_slide_critica {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 0;
    display: flex;
    justify-content: flex-end;
    gap: 36px;
}
.control_slide_critica li {
    cursor: pointer;
    width: 45px;
    height: 23px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.control_slide_critica li .slideArrow {
    display: block;
    position: relative;
    bottom: 0;
    width: 34px;
    height: 1px;
    background-color: #9b1831;
}
.control_slide_critica li .slideArrow.arrowPrev::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 0;
    width: 1px;
    height: 6px;
    background-color: #9b1831;
    transform: rotate(-45deg);
}
.control_slide_critica li .slideArrow.arrowPrev::after {
    content: '';
    position: absolute;
    left: 2px;
    bottom: 0;
    width: 1px;
    height: 6px;
    background-color: #9b1831;
    transform: rotate(45deg);
}
.control_slide_critica li .slideArrow.arrowNext::before {
    content: '';
    position: absolute;
    right: 2px;
    bottom: 0;
    width: 1px;
    height: 6px;
    background-color: #9b1831;
    transform: rotate(-45deg);
}
.control_slide_critica li .slideArrow.arrowNext::after {
    content: '';
    position: absolute;
    right: 2px;
    top: 0;
    width: 1px;
    height: 6px;
    background-color: #9b1831;
    transform: rotate(45deg);
}

/* HOME FRASE /////////////////////////////////////////////////////////////*/

.bw-home-frase {
    background-image: url('../../assets/img/home/Bira-Wines-uvas.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 11rem 0;
}
.home-frase_wrapper blockquote {
    font-family: 'mallorieregular';
    text-align: center;
    margin: 0;
    font-size: 5.75rem;
    line-height: 7.5rem;
    color: #fff;
}
.home-frase_wrapper blockquote cite {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    display: inline-block;
    font-size: 0.812rem;
    line-height: 1.124rem;
    font-weight: 500;
    font-style: normal;
    margin-top: 4rem;
    position: relative;
}
.home-frase_wrapper blockquote cite::before {
    content: '';
    display: block;
    width: 26px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 45%;
    left: -38px;
}

/* HOME NUESTROS VINOS /////////////////////////////////////////////////////////////*/

.bw-home-carrusel-vinos {
    padding: 6rem 0;
}
.container-lg.container_carrusel_home_vinos {
    max-width: 1194px;
}

.home_vinos_title {
    text-align: center;
    margin-bottom: 3.5rem;
}
.home_vinos_title .subTitle {
    color: #a39d8f;
    font-size: 1.187rem;
    line-height: 1.187rem;
    margin-bottom: 1.5rem;
}
.home_vinos_title .title {
    color: #2f2f2f;
    font-size: 3.25rem;
    line-height: 2.938rem;
}

.home_vinos_carrusel {
    background-image: url('../../assets/img/home/bg-home-vinos.png');
    background-repeat: no-repeat;
/*    background-size: contain;*/
    background-position: top center;
}
.home_vinos_slide {
    padding: 2rem 0;
}

.hm_vino_item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hm_vino_item_content {
    color: #2f2f2f;
    text-align: center;
    margin-top: 2rem;
}
.hm_vino_item_content h4 {
    line-height: 1.5rem;
}
.hm_vino_item:hover .hm_vino_item_img img {
    transform: scale(1.1);
}
.hm_vino_item:hover .hm_vino_item_content {
    color: #9b1831;
}


/* Control carrusel home vinos */
.control_slide_home_vino {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 0;
    position: relative;
}
.control_slide_home_vino li {
    cursor: pointer;
    width: 45px;
    height: 23px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 310px;
    z-index: 1;
}
.control_slide_home_vino li.prev {
    left: 0;
}
.control_slide_home_vino li.next {
    right: 0;
}
.control_slide_home_vino li .slideArrow {
    display: block;
    position: relative;
    bottom: 0;
    width: 34px;
    height: 1px;
    background-color: #9b1831;
}
.control_slide_home_vino li .slideArrow.arrowPrev::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 0;
    width: 1px;
    height: 6px;
    background-color: #9b1831;
    transform: rotate(-45deg);
}
.control_slide_home_vino li .slideArrow.arrowPrev::after {
    content: '';
    position: absolute;
    left: 2px;
    bottom: 0;
    width: 1px;
    height: 6px;
    background-color: #9b1831;
    transform: rotate(45deg);
}
.control_slide_home_vino li .slideArrow.arrowNext::before {
    content: '';
    position: absolute;
    right: 2px;
    bottom: 0;
    width: 1px;
    height: 6px;
    background-color: #9b1831;
    transform: rotate(-45deg);
}
.control_slide_home_vino li .slideArrow.arrowNext::after {
    content: '';
    position: absolute;
    right: 2px;
    top: 0;
    width: 1px;
    height: 6px;
    background-color: #9b1831;
    transform: rotate(45deg);
}

/* HOME EXPLORAR VIÑEDOS /////////////////////////////////////////////////////////////*/

.bw-home-vinedos {
    background-color: #edeae5;
    color: #2f2f2f;
    padding-top: 5rem;
}

.home-vinedos_box {
    text-align: center;
}
.home-vinedos_box .title {
    font-size: 3.25rem;
    line-height: 2.938rem;
    margin-bottom: -90px;
}

.vinedos_wrapper {
    position: relative;
}
.vinedos_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.vinedos_grid .grid_box {
    position: relative;
}
.vinedos_grid .grid_box .item_ubic {
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 20px;
    padding-bottom: 20px;
    font-family: 'bodoni_mtregular';
    border-left: 2px solid #2f2f2f;
    color: #2f2f2f;
    font-size: 1.5rem;
    line-height: 1.5rem;
    text-align: left;
}
.vinedos_grid .grid_box .item_ubic .item_ubic_cta {
    width: 46px;
    height: 46px;
    background-color: #9b1831;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}
.item_ubic .item_ubic_img {
    position: absolute;
    overflow: hidden;
    z-index: 0;
    width: 500px;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    top: -195px;
    left: -225px;
    opacity: 0;
    visibility: hidden;
}
.vinedos_grid .grid_box .item_ubic.item_ubic_01 {
    top: 42%;
    left: inherit;
    right: -24%;
}
.vinedos_grid .grid_box .item_ubic.item_ubic_02 {
    top: 35%;
    left: 45%;
}
.vinedos_grid .grid_box .item_ubic.item_ubic_03 {
    top: 52%;
    left: 10%;
}

.vinedos_grid .grid_box .item_ubic.item_ubic_01:hover .item_ubic_img {
    opacity: 1;
    visibility: visible;
}
.vinedos_grid .grid_box .item_ubic.item_ubic_02:hover .item_ubic_img {
    opacity: 1;
    visibility: visible;
}
.vinedos_grid .grid_box .item_ubic.item_ubic_03:hover .item_ubic_img {
    opacity: 1;
    visibility: visible;
}

/* WEB FOOTER /////////////////////////////////////////////////////////////*/

.Web-Footer {
    background: #e0ddd8;
    padding: 0 0 3.5rem;
}

.footer_ilustracion {
    background-image: url(../../assets/img/Bira-footer-illutracion.jpg);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    position: relative;
    height: 265px;
}
.footer_ilustracion::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 6em;
    background: linear-gradient(0deg, rgba(224,221,216,1) 35%, rgba(255,255,255,0) 100%);
}

.boxLogo_footer {
    text-align: center;
}
.footer_item {
    text-align: center;
}
.footer_item .text {
    font-size: 1rem;
    line-height: 1.813rem;
    font-weight: 500;
    color: #54524a;
    margin: 0;
    letter-spacing: 6px;
}
.footer_item.footer_item_left .text {
    color: #9b1831;
}
.footer-nav_wrapper {
    display: flex;
    justify-content: center;
}
.footer-nav {}
.footer-nav ul {
    display: flex;
    align-items: center;
}
.footer-nav ul > li {
    margin-right: 65px;
    text-align: center;
}
.footer-nav ul > li:last-of-type {
    margin-right: 0;
}
.footer-nav ul > li > a {
    font-family: 'bodoni_stdbook';
    font-size: 1rem;
    line-height: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    color: #2f2f2f;
    letter-spacing: 1px;
}
.footer-nav ul > li:last-of-type a {
    font-size: 1.1rem;
}
.textCopy {
    color: #989693;
    text-align: center;
    font-size: 0.813rem;
    line-height: 0.813rem;
}
.textCopy p {
    margin-bottom: 0;
}

/* PAGINA NOSOTROS /////////////////////////////////////////////////////////////*/

.bw-hero {
    height: 749px;
    padding: 90px 0;
    position: relative;
}
.bw-hero_nosotros {
    background-image: url(../../assets/img/nosotros/Hero-Nosotros-Bira-Wines.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}
.bw-hero_title {
    text-align: center;
    position: relative;
    color: #fff;
}
.bw-hero_title .subTitle {
    font-size: 1.187rem;
    line-height: 1.125rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.bw-hero_title .Title {
    font-size: 4.125rem;
    line-height: 4.375rem;
}

/* Nosotros Sobre Bira */
.bw-nosotros_sobre {
    background-color: #edeae5;
    padding: 8rem 0;
}
.nosotros_sobre_content {
    text-align: center;
    width: 92%;
    margin: auto;
}
.nosotros_sobre_content .title {
    color: #9b1831;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 1.313rem;
    line-height: 1.5rem;
    letter-spacing: 0.5em;
}
.nosotros_sobre_content .text {
    font-family: 'bodoni_stdbook_italic';
    font-size: 2rem;
    line-height: 2.625rem;
    color: #2f2f2f;
}
/* Nosotros Enólogo */
.bw-nosotros_enologo {
    background-color: #fff;
}
.nosotros_enologo_box {}
.nosotros_enologo_content {}
.nosotros_enologo_content .subTitle {
    font-family: 'bodoni_mtregular';
    font-size: 1.187rem;
    line-height: 1.187rem;
    text-transform: uppercase;
    color: #a39d8f;
    margin-bottom: 2rem;
}
.nosotros_enologo_content .title {
    font-size: 3.873rem;
    line-height: 3.686rem;
    margin-bottom: 2rem;
}
.nosotros_enologo_content .boxText {
    width: 77%;
}
.nosotros_enologo_content .boxText .text {}

.nosotros_enologo_img .image_section {
    width: 991px;
    height: 697px;
    max-width: 100%;
}
.carrusel-vinos_nosotros {
    background: #edeae5;
}

/* HEADER NEGRO /////////////////////////////////////////////////////////////*/

.Web-Header_negro .header_right .menu-activador-linea {
    background-color: #2f2f2f;
}
.Web-Header_negro .header_left .header_social li a {
    color: #2f2f2f;
}

/* PAGINA VINO /////////////////////////////////////////////////////////////*/

.bw-hero_vino {
    background-color: #edeae5;
    padding-top: 10rem;
    padding-bottom: 5rem;
    position: relative;
}
.bw-hero_vino.bw-hero_vino_brunetto::before {
    content: url(../../assets/img/vinos/bg-hero-vino-brunetto.png);
    position: absolute;
    bottom: 14%;
    left: 4%;
    z-index: 0;
}
.bw-hero_vino.bw-hero_vino_rosa::before {
    content: url(../../assets/img/vinos/bg-hero-vino-rosa.png);
    position: absolute;
    bottom: 14%;
    left: -4%;
    z-index: 0;
}
.bw-hero_vino.bw-hero_vino_tanito::before {
    content: url(../../assets/img/vinos/bg-hero-vino-tanito.png);
    position: absolute;
    bottom: 10%;
    left: 0%;
    z-index: 0;
}
.bw-hero_vino_bin_otto::before {
    content: url(../../assets/img/vinos/bg-hero-vino-bin-otto.png);
    position: absolute;
    bottom: 10%;
    left: 0%;
    z-index: 0;
}

.hero_box_info {
    background-color: #fff;
    padding: 60px;
    max-width: 600px;
    position: relative;
    z-index: 1;
}
.hero_box_info .name {
    color: #2f2f2f;
    font-size: 3.875rem;
    line-height: 3.25rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.info_descrip_btn .Btn {
    background-color: transparent;
    border: 0;
    color: #a39d8f;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.813rem;
    line-height: 0.813rem;
    padding: 0;
    margin-right: 42px;
    padding-bottom: 9px;
    border-bottom: 1px solid transparent;
}
.info_descrip_btn .Btn:last-child {
    margin-right: 0;
    display: none;
}
.info_descrip_btn .Btn.active {
    color: #9b1831;
    border-bottom: 1px solid #9b1831;
}
.box_info_wrapper {
    padding: 24px 0;
}
.cta-ficha {
    border: 1px solid #9b1831;
    background-color: #9b1831;
    padding: 5px 20px;
    color: #fff;
    width: 100%;
    height: 53px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.813rem;
    line-height: 0.813rem;
    font-weight: 500;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.cta-ficha:hover {
    color: #fff;
    text-decoration: none;
}

.box_vino_img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrapper_img {
    position: relative;
}
.wrapper_img::before {
    content: url(../../assets/img/home/nuestra-herencia-italiana.png);
    position: absolute;
    top: 45px;
    left: -70px;
    z-index: 0;
}
.box_vino_img img {
    max-height: 454px;
    position: relative;
    z-index: 1;
}
.descript_item.hidden {
    display: none;
}


/* Vino Elaboracion */
.bw-vino_elaboracion {
    background-color: #edeae5;
}

.vino_elaboracion_content .subTitle {
    font-family: 'bodoni_mtregular';
    font-size: 1.187rem;
    line-height: 1.187rem;
    text-transform: uppercase;
    color: #a39d8f;
    margin-bottom: 2rem;
}
.vino_elaboracion_content .title {
    font-size: 3.873rem;
    line-height: 3.686rem;
    margin-bottom: 2rem;
}
.vino_elaboracion_content .boxText {
    width: 77%;
}
.vino_elaboracion_img .image_section {
    width: 991px;
    height: 697px;
    max-width: 100%;
}
.bw-vino_vinedo {
    background-color: #fff;
    padding: 7rem 0;
}
.box_img_valle_wrapper {
    max-width: 688px;
    width: 100%;
    display: flex;
    justify-content: center;
}
/* Vino Sobre */
.bw-vino_sobre {
    background-color: #fff;
    padding: 5rem 0;
}
.vino_sobre_content {
    text-align: left;
    width: 92%;
}
.vino_sobre_content .text {
    font-family: 'bodoni_stdbook_italic';
    font-size: 1.5rem;
    line-height: 2rem;
    color: #2f2f2f;
    margin: 0;
}
.vino_ilustracion {
    margin: 0;
    padding: 3.3rem;
}
.bw-vino_sobre_tanito {
    padding: 7rem 0;
}
.bw-vino_sobre_tanito .vino_sobre_content {
    text-align: center;
    width: 59%;
}

/* PÁGINA VIÑEDOS /////////////////////////////////////////////////////////////*/

.bw-hero_vinedos {
    background-image: url(../../assets/img/vinedos/Hero-Vinedos-Bira-Wines.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}
.bw-vinedos_practica {
    background-color: #edeae5;
    padding: 8rem 0;
}
.vinedos_practica_content {
    text-align: center;
    width: 90%;
    margin: auto;
}
.vinedos_practica_content .title {
    color: #9b1831;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 1.313rem;
    line-height: 1.5rem;
    letter-spacing: 0.5em;
}
.vinedos_practica_content .text {
    font-family: 'bodoni_stdbook_italic';
    font-size: 2rem;
    line-height: 2.625rem;
    color: #2f2f2f;
}
.vinedos_practica_content.font-en .text {
    font-size: 1.8rem;
}

.bw-vinedos_valle {
    margin: 7rem 0;
}
.vinedos_box_valle {    
    color: #fff;
    text-align: center;
    background-image: url(../../assets/img/vinedos/Bira-Wines-Vinedos-microterroirs.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 9rem 0;
    margin-bottom: 5rem;
}
.vinedos_box_valle .vinedos_box_valle_content {
    position: relative;
}
.vinedos_box_valle .vinedos_box_valle_content .subTitle {
    font-size: 1.188rem;
    margin-bottom: 2rem;
}
.vinedos_box_valle .vinedos_box_valle_content .title {
    font-size: 3.813rem;
    line-height: 3.625rem;
}
.vinedos_box_valle .vinedos_box_valle_content .boxText {
    width: 66%;
    margin: auto;
}
.vinedos_box_valle .vinedos_box_valle_content .arrowDown {
    bottom: -80px;
}

.box_info_valle {
    color: #2f2f2f;
}
.box_info_valle .vino_name {
    font-family: 'bodoni_stdbook';
    font-size: 1.75rem;
    line-height: 1.75rem;
}
.box_info_valle .vino_valle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.vinedos_select {}
.vinedos_select_flex {
    display: flex;
    border-bottom: 1px solid #edeae5;
}
.vinedos_select_flex .select_btn {
    width: 33.33%;
    text-align: center;
    padding: 3.5rem 0;
    position: relative;
    cursor: pointer;
}
.vinedos_select_flex .select_btn .ubic {
    display: block;
    font-family: 'bodoni_mtregular';
    color: #a39d8f;
    font-size: 1.187rem;
    line-height: 1.187rem;
    margin-bottom: 0.5rem;
}
.vinedos_select_flex .select_btn .vinedo {
    display: block;
    font-family: 'bodoni_mtregular';
    font-size: 2.563rem;
    line-height: 3.625rem;
}
.vinedos_select_flex .select_btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 4px;    
    background-color: transparent;
}
.vinedos_select_flex .select_btn.active .vinedo {
    color: #9b1831;
}
.vinedos_select_flex .select_btn.active::after {
    background-color: #9b1831;
}

.select_info {
    padding-top: 4rem;
}
.vinedo_img1 {
    margin-bottom: 4.5rem;
}
.vinedo_box_title {}
.vinedo_box_title .title {
    font-size: 3.813rem;
    line-height: 3.625rem;
}
.vinedo_box_text {}
.vinedo_box_text .text {
    font-size: 1.375rem;
    line-height: 2.25rem;
}
.vinedo_box_text_arboleda {
    width: 89%;
    margin-left: auto;
}
.vinedo_img2 .image_section {
    width: 991px;
    height: 547px;
    max-width: 100%;
}

.vinedos_select_mod2 {
    margin: 6rem 0 10rem;
}
.vinedo_block_content .title {
    font-size: 2.563rem;
    line-height: 2.875rem;
    margin-bottom: 2rem;
}
.vinedo_block_content .boxText {
    width: 81%;
}

.vinedos_select_mod3 {
    background-color: #edeae5;
    padding: 4rem 0 7.5rem;
    position: relative;
}
.vinedo_img3 .image_section {
    width: 991px;
    height: 447px;
    max-width: 100%;
}
.vinedo_block_3_box .vinedo_block_content .boxText {
    width: 82%;
}
.vinedos_select_mod3::before {
    content: '';
    position: absolute;
    top: -73px;
    left: 0;
    width: 100%;
    height: 73px;
    background-image: url('../../assets/img/vinedos/Bira-Wines-Vinedo-detalle.jpg');
    background-repeat: repeat-x;
}
.select_info.hidden {
    display: none;
}
.bw-vino_sobre_tanito .vino_sobre_content.vino_sobre_content_tanoENG {
    width: 67%;
}
.bw-vino_sobre_tanito .vino_sobre_content.vino_sobre_content_tano {
    width: 83%;
}