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

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

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

html {
    font-size: 16px;
    overflow-x: hidden;
}
body {
    font-family: 'ibm_plex_sansregular';
    background: #fff;
    color: #fff;
    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: 'kudryashev_headlineregular';
}

img {
    max-width: 100%;
    height: auto;
}

/* 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: 1px solid #c3b799;
    background-color: #c3b799;
    padding: 4px 15px;
    color: #000;
    border-radius: 50px;
    width: 145px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    font-size: 1rem;
}
.cta:hover{
    background-color: #000;
    color: #c3b799;
    text-decoration: none;
}

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

/* 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: 1;
    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;
    border-bottom: 1px solid #b1b1af;
    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;
}
.header-nav-wrapper .boxLogo {
    position: absolute;
    left: 50%;
    margin-left: -100px;
    z-index: 1;
}
.header-nav-wrapper .boxLogo .logo {
    width: 200px;
}
.header-nav-wrapper .header-nav {}
.header-nav-wrapper .header-nav ul {
    display: flex;
    align-items: center;
}
.header-nav-wrapper .header-nav ul > li {
    margin-right: 70px;
}
.header-nav-wrapper .header-nav ul > li:last-of-type {
    margin-right: 0;
}
.header-nav-wrapper .header-nav ul > li > a {
    font-family: 'ibm_plex_sansregular';
    font-size: 0.875rem;
    line-height: 0.875rem;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    letter-spacing: 2px;
    position: relative;
}
.header-nav-wrapper .header-nav ul > li > a:hover {
    text-decoration: none;
    color: #ffffff;
}
.header-nav-wrapper .header-nav ul > li > a.active {
    color: #c3b799;
}
.header-nav-wrapper .header-nav ul > li > a.active::after {
    content: '';
    position: absolute;
    bottom: -37px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #c3b799;
}
.header-nav-wrapper .header-nav ul > li:hover a {
    color: #c3b799;
}
.header-nav-wrapper .header-nav ul > li:hover a::after {
    content: '';
    position: absolute;
    bottom: -37px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #c3b799;
    color: #c3b799;
}

.header-nav-wrapper .header-nav.header_left {}
.header-nav-wrapper .header-nav.header_right {}

.menu-activador {
  width: 30px;
  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;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: #fff;
    transform: translateX(-110%);
}
.menu.Active {
    transform: translateX(0%);
}
.menu_mobile_head {
    display: flex;
    justify-content: space-between;
    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 {
    border-bottom: 1px solid #b1b1af;
}
.header-nav_mobile ul li:last-of-type {
    border-bottom: 0;
}
.header-nav_mobile ul li a {
    font-family: 'ibm_plex_sansregular';
    font-size: 0.875rem;
    line-height: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    letter-spacing: 2px;
    position: relative;
    padding: 10px 0;
    display: block;
}

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

.castel-home-hero {
    background-image: url('../../assets/img/home/hero-home-Castel-Conegliano.jpg');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 749px;
    padding: 90px 0;
}
/* .homeHero_wrapper {
    height: 100%;
    display: grid;
    place-content: center;
} */
.homeHero_text {
    text-align: center;
    position: relative;
}
.homeHero_text .Title {
    font-size: 4.75rem;
    line-height: 4.75rem;
}
.homeHero_text .cta {}
.arrowDown {
    padding: 10px;
    position: absolute;
    left: 50%;
    bottom: -150px;
    margin-left: -11px;
}
.arrowDown span {
    display: block;
    position: relative;
    bottom: 0;
    width: 1px;
    height: 44px;
    background-color: #fff;
}
.arrowDown span::before {
    content: '';
    position: absolute;
    right: 4px;
    bottom: 0;
    width: 1px;
    height: 10px;
    background-color: #fff;
    transform: rotate(-45deg);
}
.arrowDown span::after {
    content: '';
    position: absolute;
    left: 4px;
    bottom: 0;
    width: 1px;
    height: 10px;
    background-color: #fff;
    transform: rotate(45deg);
}

/* HOME HISTORIA /////////////////////////////////////////////////////////////*/

.castel-home-historia {

}
.homeHistoriaBg {
    background-image: url('../../assets/img/home/historia-bg-texture-home-Castel-Conegliano.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
.homeHistoria_box {
    width: 720px;
    max-width: 100%;
}
.homeHistoria_box .homeHistoria_text {
    text-align: center;
}
.homeHistoria_box .homeHistoria_text .subTitle {
    font-size: 1.125rem;
    line-height: 1.125rem;
    text-transform: uppercase;
    color: #c3b799;
    margin-bottom: 4rem;
}
.homeHistoria_box .homeHistoria_text .title {
    font-size: 3rem;
    line-height: 3rem;
    margin-bottom: 2rem;
}
.homeHistoria_box .homeHistoria_text .boxText {
    width: 56%;
    margin: auto;
}
.homeHistoria_box .homeHistoria_text .boxText .text {
    font-size: 1.313rem;
    line-height: 1.8rem;
}
.homeHistoria_box .homeHistoria_text .cta {
    border: 1px solid #c3b799;
    background-color: #000;
    color: #c3b799;
    width: 157px;
}
.homeHistoria_box .homeHistoria_text .cta:hover {
    border: 1px solid #c3b799;
    background-color: #c3b799;
    color: #000;
}

.homeHistoria_img {}
.homeHistoria_img .image_section {
    width: 991px;
    height: 735px;
    max-width: 100%;
}

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

.castel-home-vinedos {
    background-color: #f0e8d7;
    padding: 80px 0;
    position: relative;
    height: 1055px;
    z-index: 1;
}

.homeVinedos_text {
    text-align: center;
    position: relative;
    z-index: 2;
}
.homeVinedos_text .subTitle {
    color: #c3b799;
    text-transform: uppercase;
    font-size: 1.125rem;
    line-height: 1.125rem;
}
.homeVinedos_text .title {
    font-size: 3rem;
    line-height: 3rem;
    color: #000;
    margin-bottom: 2rem;
}
.homeVinedos_text .boxText {
    width: 63%;
    margin: auto;
}
.homeVinedos_text .boxText .text {
    font-size: 1.313rem;
    line-height: 1.813rem;
    color: #000;
}
.homeVinedos_text .cta {
    border: 1px solid #000;
    background-color: transparent;
    color: #000;
}

.homeVinedosImg_wrapper {
    position: absolute;
    top: 240px;
    width: 100%;
    height: 815px;
    z-index: 1;
    background-image: url('../../assets/img/home/vinedos-home-Castel-Conegliano.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}
.homeVinedosImg_wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 30%;
    background: linear-gradient(0deg, rgba(0,0,0,1) 25%, rgba(255,255,255,0) 100%);
}
.homeVinedosImg_wrapper .homeVinedo_img_1 {}
.homeVinedosImg_wrapper .homeVinedo_img_2 {}

/* HOME CAROUSEL /////////////////////////////////////////////////////////////*/

.castel_home_slide {
    background-color: #000;
    padding-bottom: 6rem;
    position: relative;
    z-index: 2;
    /*background-image: url(../../assets/img/home/bg_slide_home.png);
    background-repeat: no-repeat;
    background-position: bottom;*/
/*    background-size: 600px;*/
}
.wrapper_home_slide {
    position: relative;
    width: 50%;
    margin: auto;
}

.item_vino {
    text-align: center;
    position: relative;
    z-index: 3;
}
.item_vino .item_image {
    max-width: 180px;
    margin: auto;
    margin-bottom: 4rem;
}
.item_vino .item_image img {}
.item_vino .item_content {
    width: 540px;
    margin: 0 auto;
    position: relative;
    left: 50%;
    margin-left: -270px;
    transition: transform 1.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.item_vino .item_content .title {
    font-size: 2.125rem;
    line-height: 2.125rem;
    margin-bottom: 2rem;
}
.item_vino .item_content .text {
    font-size: 1rem;
    line-height: 1.5rem;
}
.item_vino .item_content .item_content_cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 29px;
}
.item_vino .item_content .item_content_cta .cta {
    width: auto;
    padding: 4px 24px;
    background-color: #000;
    color: #c3b799;
    text-decoration: none;
}
.item_vino .item_content .item_content_cta .cta:hover {
    background-color: #c3b799;
    color: #000;
    text-decoration: none;
}

/* sombra vino */
.lazy-susan-spotlight {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 45.4%;
    right: 0;
    left: 0;
    z-index: 1;
    max-width: 536px;
    margin-right: auto;
    margin-left: auto;
}
.lazy-susan-spotlight img {
    width: 100%;
    height: auto;
}
/* END sombra vino */

.lazy-susan-spotlight-top {
    position: absolute;
    top: -15rem;
    width: 100%;
    height: 60%;
    right: 0;
    left: 0;
    z-index: 0;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}
.lazy-susan-spotlight-top img {
    width: 100%;
    height: auto;
    max-height: 1260px;
}

/* HOME NOVEDADES /////////////////////////////////////////////////////////////*/

.castel-home-divide-detalle {
    width: 100%;
    height: 82px;
    background-image: url('../../assets/img/home/home-detalle-Castel-Conegliano.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.castel-home-novedades {
    background-color: #fff;
    padding: 85px 0;
}
.homeNovedades_head {
    margin-bottom: 60px;
}
.homeNovedades_head_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.homeNovedades_head_content .homeNovedades_title {}
.homeNovedades_head_content .homeNovedades_title .subTitle {
    color: #c3b799;
    font-size: 1.125rem;
    line-height: 1.125rem;
    text-transform: uppercase;
}
.homeNovedades_head_content .homeNovedades_title .title {
    color: #000;
    font-size: 3rem;
    line-height: 3rem;
    margin-bottom: 0;
}
.homeNovedades_head_content .cta {
    width: 130px;
}

.homeNovedades_post {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 48px;
}
.box_post {
    overflow: hidden;
    text-align: left;
    background-color: #ffffff;
}
.box_post .box_post_image {
    overflow: hidden;
}
.box_post .box_post_image a {
    display: block;
}
.box_post .box_post_image img {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 255px;
    display: block;
    transition: 0.5s;
}
.box_post:hover .box_post_image img {
    transform: scale(1.1,1.1);
}
.box_post_content {
    padding: 24px 0;
}
.box_post_content .box_post_title {
    color: #000;
    font-size: 1.1rem;
    line-height: 1.375rem;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.box_post_content .box_post_title a {}
.box_post_content .box_post_link {}
.box_post_content .box_post_link a {
    font-size: 1rem;
    line-height: 1rem;
    text-transform: uppercase;
    padding-bottom: 8px;
    border-bottom: 2px solid #c3b799;
    text-decoration: none;
    color: #000;
}
.box_post_content .box_post_link a:hover {
    text-decoration: none;
    color: #000;
}


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

.Web-Footer {
    background: #fff;
    padding: 62px 0 39px;
    border-top: 1px solid #f0e8d7;
}

.boxLogo_footer {
    text-align: center;
    margin-bottom: 4rem;
}
.footer-nav_wrapper {
    display: flex;
    justify-content: center;
}
.footer-nav {}
.footer-nav ul {
    display: flex;
    align-items: center;
}
.footer-nav ul > li {
    margin-right: 70px;
    text-align: center;
}
.footer-nav ul > li:last-of-type {
    margin-right: 0;
}
.footer-nav ul > li > a {
    font-family: 'ibm_plex_sansregular';
    font-size: 1rem;
    line-height: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    color: #242424;
    letter-spacing: 2px;
}
.boxSocial {
    margin-top: 4rem;
    margin-bottom: 2rem;
}
.boxSocial ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.boxSocial ul li {}
.boxSocial ul li a {
    font-size: 1.5rem;
    line-height: 1rem;
    text-decoration: none;
    color: #242424;
}
.textCopy {
    color: #a9a9a9;
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.5rem;
}
.textCopy p {
    margin-bottom: 0;
}

.footer-nav.footer-nav_conditions {
    margin-bottom: 2rem;
}
.footer-nav.footer-nav_conditions ul > li {
    margin-right: 35px;
}
.footer-nav.footer-nav_conditions ul > li > a {
    font-size: 0.75rem;
    line-height: 0.75rem;
    letter-spacing: 1px;
}

/* PAGINA VINOS /////////////////////////////////////////////////////////////*/

.castel_section_hero {
    position: relative;
    height: 620px;
    padding: 90px 0;
    display: flex;
    align-items: center;
}

.castel_section_hero_productos {
    background-image: url(../../assets/img/vinos/hero-productos-Castel-Conegliano.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sectionHero_wrapper {}
.sectionHero_wrapper .sectionHero_title {
    text-align: center;
}
.sectionHero_wrapper .sectionHero_title .Title {
    font-size: 4.75rem;
    line-height: 5.75rem;
    margin-bottom: 40px;
}
.sectionHero_wrapper .sectionHero_title .cta {}
.sectionHero_wrapper .sectionHero_title .arrowDown {
    bottom: 70px;
}

.castel_productos_presentacion {
    background-color: #fff;
    padding: 75px 0;
}
.productosPresent_text {
    text-align: center;
    color: #000;
    margin-bottom: 80px;
}
.productosPresent_text .subTitle {
    color: #c3b799;
    font-size: 1.125rem;
    line-height: 1.125rem;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}
.productosPresent_text .title {
    font-size: 3rem;
    line-height: 3.375rem;
}
.productosPresent_text .title span {
    color: #c3b799;
}
.productosPresent_text .boxText {
    width: 66%;
    margin: auto;
}
.productosPresent_text .boxText .text {
    font-size: 1.313rem;
    line-height: 1.813rem;
}

.productosPresent_vinos {}
.productosPresent_nuestros_vinos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
}
.productosPresent_nuestros_vinos .cardVino {
    position: relative;
    background-image: url('../../assets/img/vinos/productos-bg-detalle.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    text-align: center;
    cursor: pointer;
    padding: 78px 0;
}
.productosPresent_nuestros_vinos .cardVino a {
    display: block;
}
.productosPresent_nuestros_vinos .cardVino .cardVino_image {}
.productosPresent_nuestros_vinos .cardVino .cardVino_image img {
    max-width: 100%;
    height: auto;
}
.productosPresent_nuestros_vinos .cardVino .cardVino_image .cta {
    position: absolute;
    bottom: 70px;
    left: 50%;
    margin-left: -72px;
    background-color: transparent;
    color: #c3b799;
}
.cardVino:hover .cardVino_image .cta {
    background-color: #c3b799;
    color: #000;
}
.productosPresent_nuestros_vinos .cardVino .cardVino_title {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.productosPresent_nuestros_vinos .cardVino .cardVino_title .title {
    font-size: 4.75rem;
    line-height: 4.75rem;
    color: #fff;
}
.cardVino.disabled {
    cursor: auto;
}

.castel_productos_banner {
    padding: 189px 0;
}
.castel_productos_banner_bg {
    background-image: url('../../assets/img/vinos/banner-productos-Castel-Conegliano.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.castel_productos_banner .title {
    font-size: 4.75rem;
    line-height: 5.125rem;
    text-align: center;
}

.prox {
    position: absolute;
    bottom: 70px;
    left: 50%;
    margin-left: -152px;
    font-size: 2rem;
    line-height: 2rem;
    text-transform: uppercase;
    font-family: 'kudryashev_headlineregular';
}

/* PAGINA BODEGA /////////////////////////////////////////////////////////////*/

.castel_section_hero_bodega {
    background-image: url(../../assets/img/bodega/bodega-hero-Castel-Conegliano.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* bodega */

.castel_nuestra_bodega {
    background-color: #fff;
    padding: 75px 0;
}
.nuestraBodega_text {
    text-align: center;
    color: #000;
    margin-bottom: 80px;
}
.nuestraBodega_text .subTitle {
    color: #c3b799;
    font-size: 1.125rem;
    line-height: 1.125rem;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}
.nuestraBodega_text .title {
    font-size: 3rem;
    line-height: 3.375rem;
}
.nuestraBodega_text .title span {
    color: #c3b799;
}
.nuestraBodega_text .boxText {
    width: 66%;
    margin: auto;
}
.nuestraBodega_text .boxText .text {
    font-size: 1.313rem;
    line-height: 1.813rem;
}
.nuestra_bodega_carrusel {
    position: relative;
}
.tns-visually-hidden {
    display: none;
}
.slide_item {
    cursor: pointer;
    overflow: hidden;
}
.slide_item img {
    max-width: 100%;
    height: auto;
}
.slide_item:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: -webkit-transform 4s ease-in-out;
    transition: -webkit-transform 4s ease-in-out;
    transition: transform 4s ease-in-out;
    transition: transform 4s ease-in-out,-webkit-transform 4s ease-in-out;
}
.bodega_slide_controller {
    margin-top: 2.5rem;
}
.control_slide {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 0;
    display: flex;
    justify-content: center;
    gap: 57px;
}
.control_slide li {
    cursor: pointer;
    width: 45px;
    height: 23px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slideArrow {
    display: block;
    position: relative;
    bottom: 0;
    width: 44px;
    height: 1px;
    background-color: #c3b799;
}
.slideArrow.arrowPrev::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 0;
    width: 1px;
    height: 6px;
    background-color: #c3b799;
    transform: rotate(-45deg);
}
.slideArrow.arrowPrev::after {
    content: '';
    position: absolute;
    left: 2px;
    bottom: 0;
    width: 1px;
    height: 6px;
    background-color: #c3b799;
    transform: rotate(45deg);
}
.slideArrow.arrowNext::before {
    content: '';
    position: absolute;
    right: 2px;
    bottom: 0;
    width: 1px;
    height: 6px;
    background-color: #c3b799;
    transform: rotate(-45deg);
}
.slideArrow.arrowNext::after {
    content: '';
    position: absolute;
    right: 2px;
    top: 0;
    width: 1px;
    height: 6px;
    background-color: #c3b799;
    transform: rotate(45deg);
}

/* viñedo */
.bodegaVinedoBg {
    background-color: #000;
}
.bodegaVinedo_box {
    width: 720px;
    max-width: 100%;
}
.bodegaVinedo_box .bodegaVinedo_text {
    text-align: center;
}
.bodegaVinedo_box .bodegaVinedo_text .title {
    font-size: 3rem;
    line-height: 3rem;
    margin-bottom: 2rem;
}
.bodegaVinedo_box .bodegaVinedo_text .boxText {
    width: 64%;
    margin: auto;
}
.bodegaVinedo_box .bodegaVinedo_text .boxText .text {
    font-size: 1.313rem;
    line-height: 1.8rem;
}
.bodegaVinedo_box .bodegaVinedo_text .cta {
    border: 1px solid #c3b799;
    background-color: #000;
    color: #c3b799;
    width: 295px;
}
.bodegaVinedo_box .bodegaVinedo_text .cta:hover {
    background-color: #c3b799;
    color: #000;
}
.bodegaVinedo_img .image_section {
    width: 991px;
    height: 735px;
    max-width: 100%;
}

/* equipo */
.castel_bodega_equipo {
    background-color: #f0e8d7;
    padding: 85px 0 90px;
}
.bodega_equipo_title {
    text-align: center;
    margin-bottom: 5rem;
}
.bodega_equipo_title .title {
    color: #c3b799;
    text-transform: uppercase;
    font-size: 1.125rem;
    line-height: 1.125rem;
}
.bodega_equipo_images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 34px;
}
.bodegaEquipo_img {
    max-height: 631px;
}

.bodega_items {
    color: #000;
    font-size: 1.1rem;
    font-style: italic;
}
.bodega_items .text_pie {
    display: inline-block;
    margin-top: 0.5rem;
    font-family: 'kudryashev_headlineregular';
    visibility: hidden;
/*    transition: all .5s ease;*/
}
.bodega_items:hover .text_pie {
    visibility: visible;
}

/* PAGINA HISTORIA /////////////////////////////////////////////////////////////*/

.castel_section_hero_historia {
    background-image: url(../../assets/img/historia/historia-hero-Castel-Conegliano.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}
/* historia */
.castel_nuestra_historia {
    background-color: #fff;
    padding: 75px 0;
    color: #000;
}
.nuestraHistoria_text {
    text-align: center;
    color: #000;
    margin-bottom: 80px;
}
.nuestraHistoria_text .subTitle {
    color: #c3b799;
    font-size: 1.125rem;
    line-height: 1.125rem;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}
.nuestraHistoria_text .title {
    font-size: 3rem;
    line-height: 3.375rem;
}
.nuestraHistoria_text .title span {
    color: #c3b799;
}
.nuestraHistoria_text .boxText {
    width: 66%;
    margin: auto;
}
.nuestraHistoria_text .boxText .text {
    font-size: 1.313rem;
    line-height: 1.813rem;
}
.nuestra_historia_carrusel {
    position: relative;
}
.historia_slide_controller {
    margin-top: 2.5rem;
}
.nuestraHistoria_parr {
    margin-top: 80px;
}
/* emprendedor */
.castel_historia_emprendedor {}
.historiaEmprendedorBg {
    background-image: url('../../assets/img/historia/historia-bg-texture-Castel-Conegliano.jpg');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}
.historiaEmprendedor_box {
    width: 720px;
    max-width: 100%;
}
.historiaEmprendedor_box .historiaEmprendedor_text {
    text-align: center;
}
.historiaEmprendedor_box .historiaEmprendedor_text .title {
    margin-bottom: 2rem;
}
.historiaEmprendedor_box .historiaEmprendedor_text .boxText {
    width: 64%;
    margin: auto;
}
.historiaEmprendedor_box .historiaEmprendedor_text .boxText .text {}
.historiaEmprendedor_img .image_section {
    width: 991px;
    height: 735px;
    max-width: 100%;
}
/* elaboramos */
.castel_historia_elaboramos {
    background-color: #f0e8d7;
    padding: 85px 0 90px;
    color: #000;
}
.historiaElaboramos_content {
    text-align: center;
}
.historiaElaboramos_content .title {
    margin-bottom: 2.5rem;
}
.historiaElaboramos_content .text {}
.historiaElaboramos_content .elaboramos_figure {}
.historiaElaboramos_content .elaboramos_figure img {}
.historiaElaboramos_canto {
    text-align: center;
}
.historiaElaboramos_canto p {
    margin-bottom: 0;
}
.historiaElaboramos_canto .text_it {
    font-style: italic;
    font-size: 1.5rem;
    line-height: 2.125rem;
    font-family: 'kudryashev_headlineregular';
    color: #000;
}
.historiaElaboramos_canto .text_esp {
    font-size: 1.313rem;
    line-height: 2.125rem;
    color: #c3b799;
    margin-bottom: 5px;
}

/* PAGINA LUGAR Y VIÑEDOS /////////////////////////////////////////////////////////////*/

.castel_section_hero_vinedos {
    background-image: url('../../assets/img/lugar-y-vinedos/lugar-vinedos-hero-Castel-Conegliano.jpg');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.castel_nuestros_vinedos {
    background-color: #fff;
    padding: 75px 0;
    color: #000;
}
.nuestrosVinedos_text {
    text-align: center;
    color: #000;
    margin-bottom: 80px;
}
.nuestrosVinedos_text .subTitle {
    color: #c3b799;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}
.nuestrosVinedos_text .title {
    font-size: 2.5rem;
    line-height: 3rem;
}
.nuestrosVinedos_text .boxText {
    width: 66%;
    margin: auto;
}
.nuestrosVinedos_text .boxText .text {}

.nuestrosVinedos_lugares {}
.nuestrosVinedos_lugares .vinedo_wrapper {
    position: relative;
}
.nuestrosVinedos_lugares .vinedo_wrapper .item_ubic {
    position: absolute;
    top: 0;
    left: 0;
    padding-left: 20px;
    padding-bottom: 20px;
    border-left: 1px solid #fff;
    font-family: 'kudryashev_headlineregular';
    color: #fff;
    font-size: 2.125rem;
    line-height: 2.125rem;
}
.nuestrosVinedos_lugares .vinedo_wrapper .item_ubic .item_ubic_cta {
    width: 31px;
    height: 31px;
    background-color: #c3b799;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-top: 10px;
}
.nuestrosVinedos_lugares .vinedo_wrapper .item_ubic.item_ubic_01 {
    top: 0;
    left: 24%;
}
.nuestrosVinedos_lugares .vinedo_wrapper .item_ubic.item_ubic_02 {
    top: 41%;
    left: 0;
}
.nuestrosVinedos_lugares .vinedo_wrapper .item_ubic.item_ubic_03 {
    top: initial;
    left: 18%;
    bottom: 18%;
}
.nuestrosVinedos_lugares .vinedo_wrapper .item_ubic.item_ubic_04 {
    top: 27%;
    left: initial;
    right: 70%;
}
.nuestrosVinedos_lugares .vinedo_wrapper .item_ubic.item_ubic_05 {
    top: initial;
    left: 35%;
    bottom: 0;
}

.vinedos_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.vinedos_grid .grid_box {
    position: relative;
}

.contenedor_iframe {
    position: relative;
    padding-bottom: 40.25%;
    height: 0;
    overflow: hidden;
}
.contenedor_iframe iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: brightness(100%) contrast(100%) saturate(0%) blur(0) hue-rotate(0deg);
}

/* PAGINA VINOS INTERNA /////////////////////////////////////////////////////////////*/

.container_productos_vinos {}
.productos_vinos_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.itemVino {
    text-align: center;
    padding: 45px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.itemVino .item_image {}
.itemVino .item_image img {
    max-height: 400px;
}
.itemVino .item_title {
    margin-bottom: 2rem;
}
.itemVino .item_title .title {
    font-size: 2rem;
    line-height: 2rem;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}
.itemVino .item_title .text {
    font-size: 1.125rem;
    line-height: 1.125rem;
    margin-bottom: 0;
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}
.itemVino.itemVino_prox .item_title .text {
    visibility: hidden;
    opacity: 0;
}
.itemVino .item_cta {}
.itemVino .item_cta .text-prox {
    font-size: 1.2rem;
    display: block;
    min-height: 34px;
}

.itemVino:nth-child(2) {
    background-color: #f0e8d7;
}
.itemVino:hover {
    background-color: #f0e8d7;
}
.itemVino:nth-child(2n+1) .item_cta .cta {
    background-color: transparent;
    color: #c3b799;
}
.itemVino:nth-child(2n+1) .item_cta .cta:hover {
    background-color: #fff;
}

/* PAGINA CONTACTO /////////////////////////////////////////////////////////////*/

.castel_section_hero_contacto {
    background-image: url('../../assets/img/contacto/contacto-hero-Castel-Conegliano.jpg');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.castel_contacto_form {
    background-color: #fff;
    padding: 75px 0;
    color: #000;
}
.box_datos_contact {}
.box_datos_contact h6 {
    font-family: 'ibm_plex_sansregular';
    color: #c3b799;
    text-transform: uppercase;
    font-size: 1.125rem;
    line-height: 1.125rem;
    margin-bottom: 10px;
}
.box_datos_contact a {
    font-size: 1.313rem;
    line-height: 1.313rem;
}
.box_datos_contact .cta {
    font-size: 1rem;
    line-height: 1rem;
    width: 202px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

input {
    width: 100%;
    border: 0;
    padding: 12px 6px;
    border-bottom: 1px solid #d4d4d4;
}
textarea {
    width: 100%;
    border: 0;
    padding: 12px 6px;
    border-bottom: 1px solid #d4d4d4;
}
input:focus,
textarea:focus {
    outline: 0;
    border-bottom: 1px solid #c3b799;
}
::placeholder {
    font-size: 1.125rem;
    line-height: 1.125rem;
    text-transform: uppercase;
    color: #a3a3a3;
}
input:focus::placeholder,
textarea:focus::placeholder {
  color: #000;
}
.form_btn {
    margin-top: 2rem;
}
.form_btn .cta {
    width: 175px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

/* Preguntas frecuentes */

.castel_contacto_faq {
    background-color: #fff;
    padding: 75px 0;
    border-top: 1px solid #f0e8d7;
    color: #000;
}
.castel_faq_title {}
.castel_faq_title .title {
    font-size: 2.125rem;
    line-height: 2.125rem;
}
.castel_box_faq {}
.castel_box_faq .faq_title {
    font-size: 1.313rem;
    line-height: 1.313rem;
    color: #c3b799;
    margin-bottom: 2rem;
}
.castel_box_faq .text {}
.castel_box_faq .text a {
    color: #c3b799;
    text-decoration: none;
}

/* PAGINA VINOS PROSECCO /////////////////////////////////////////////////////////////*/

.Web-Header.Web-Header_vinos {
    border-bottom: 1px solid #dbd4c2;
}
.Web-Header.Web-Header_vinos .header-nav-wrapper .header-nav ul > li > a {
    color: #000;
}
.Web-Header.Web-Header_vinos .menu-activador .menu-activador-linea {
    background-color: #000;
}
.castel_product_info {
    background-color: #fff;
    color: #000;
/*    padding-top: 94px;*/
}
.product_info_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.product_box_info {
    max-width: 390px;
    width: calc(100% / 3);
    text-align: center;
}
.product_box_info .title {
    font-size: 2.5rem;
    line-height: 2.5rem;
}
.product_box_info .title span {
    font-size: 3.5rem;
    line-height: 4.5rem;
}
.product_box_info .subTitle {
    color: #c3b799;
    text-transform: uppercase;
}
.product_box_info .text {
    margin-bottom: 2.5rem;
}
.product_box_info .cta {
    display: block;
    margin: auto;
    background-color: #fff;
    color: #c3b799;
    max-width: 100%;
}
.product_box_info .cta:first-of-type {
    margin-bottom: 15px;
    width: 202px;
}
.product_box_info .cta:last-of-type {
    width: 161px;
}
.product_box_image {
    position: relative;
    bottom: -155px;
    left: 24px;
}
.product_box_image .product_box_image_inner {}

.castel_vinos_info {
    padding: 10rem 0;
    color: #000;
    background-color: #f0e9d7;
    position: relative;
    z-index: -1;
}
.castel_vinos_info.castel_vinos_info_prosecco {
    background-image: url('../../assets/img/vinos/vinos-Prosecco-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.vinosInfo_content {
    text-align: center;
}
.vinosInfo_content .subTitle {
    color: #c3b799;
    text-transform: uppercase;
}
.vinosInfo_content .title {
    margin-bottom: 2.5rem;
}
.vinosInfo_content .title span {
    color: #c3b799;
}
.vinosInfo_content .boxText {
    width: 55%;
    margin: auto;
}
.vinosInfo_content .boxText .text {}

.castel_elaboracion_vinos {
    background-color: #fff;
    padding: 120px 0;
    color: #000;
}
.castel_elaboracion_content {
    text-align: center;
}
.castel_elaboracion_content .subTitle {
    color: #c3b799;
    text-transform: uppercase;
    margin-bottom: 4rem;
}
.castel_elaboracion_content .title {
    margin-bottom: 4rem;
}
.castel_elaboracion_content .title span {
    color: #c3b799;
}
.castel_elaboracion_content .boxText {
    width: 55%;
    margin: auto;
}
.castel_elaboracion_content .boxText .text {}

.castel_banner {
    padding: 19rem;
}
.castel_banner.castel_banner_prosecco {
    background-image: url('../../assets/img/vinos/uvas-vinos-Prosecco.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* Moscato */
.castel_vinos_info.castel_vinos_info_moscato {
    background-image: url('../../assets/img/vinos/vinos-Moscato-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.castel_banner.castel_banner_moscato {
    background-image: url('../../assets/img/vinos/uvas-vinos-Moscato.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* PAGINA NOVEDADES /////////////////////////////////////////////////////////////*/

.castel_section_hero_novedades {
    background-image: url('../../assets/img/novedades/novedades-hero-Castel-Conegliano.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.blogs_menu_box {
    border-bottom: 1px solid #f0e8d7;
}
.blogs_menu_box .blogs_menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 68px;
}
.blogs_menu_box .blogs_menu .bgl_btn {
    border: 0;
    background: transparent;
    color: #c3b799;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1rem;
    letter-spacing: 2px;
    padding: 31px 0;
    position: relative;
}
.blogs_menu_box .blogs_menu .bgl_btn.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #c3b799;
}

.castel_container_blogs {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}
.blogs_container {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}
.blogs {
    padding: 4.5rem 0;
    display: block;
}
.blogs.hidden {
    display: none;
}
.blogs .blogs_inner {}
.blogs .blogs_inner .blogs_flex {
    display: flex;
    align-items: center;
}
.blogs_content,
.blogs_thumb {
    width: 50%;
    overflow: hidden;
}
.blogs .blogs_inner .blogs_flex .blogs_content {
    text-align: center;
    color: #000;
}
.blogs .blogs_inner .blogs_flex .blogs_content .blogs_data {
    color: #c3b799;
    text-transform: uppercase;
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 4rem;
}
.blogs .blogs_inner .blogs_flex .blogs_content .blogs_title {
    font-family: 'kudryashev_headlineregular';
    font-size: 3rem;
    line-height: 3.25rem;
    margin-bottom: 2rem;
}
.blogs .blogs_inner .blogs_flex .blogs_content .blogs_parr {
    font-size: 1.125rem;
    line-height: 1.75rem;
    width: 60%;
    margin: auto;
    margin-bottom: 4rem;
}
.blogs .blogs_inner .blogs_flex .blogs_content .blogs_cta {}
.blogs .blogs_inner .blogs_flex .blogs_content .blogs_cta .cta {
    width: 196px;
    max-width: 100%;
    height: 35px;
    background-color: #fff;
    color: #c3b799;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.blogs .blogs_inner .blogs_flex .blogs_thumb {
    overflow: hidden;
}
.blogs .blogs_inner .blogs_flex .blogs_thumb:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: -webkit-transform 4s ease-in-out;
    transition: -webkit-transform 4s ease-in-out;
    transition: transform 4s ease-in-out;
    transition: transform 4s ease-in-out,-webkit-transform 4s ease-in-out;
}
.blogs .blogs_inner .blogs_flex .blogs_thumb a {}
.blogs .blogs_inner .blogs_flex .blogs_thumb a img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}
.blogs:nth-child(even) {
  background-color: #f0e8d7;
}
.blogs:nth-child(even) .blogs_inner .blogs_flex .blogs_content .blogs_cta .cta {
    background-color: transparent;
}

/* PAGINA TIENDA /////////////////////////////////////////////////////////////*/

.castel_section_hero_tienda {
    background-image: url('../../assets/img/tienda/tienda-hero-Castel-Conegliano.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.castel_tienda_products {}

.tienda_vinos_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.producto_vino_box {
    border-right: 1px solid #f0e8d7;
    text-align: center;
    color: #000;
    max-height: 745px;
    position: relative;
    overflow: hidden;
    padding: 97px 12px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.producto_vino_box:first-child {
    border-left: 1px solid #f0e8d7;
}
.producto_vino_box:nth-child(3n) {
/*    border-right: 0px solid #f0e8d7;*/
}
.producto_vino_box .tienda_producto_imagen {}
.producto_vino_box .tienda_producto_imagen img {
    max-width: 100%;
    height: auto;
    max-height: 365px;
    margin-right: -29px;
}
.producto_vino_box .producto_vino_info {}
.producto_vino_box .producto_vino_info .producto_vino_titulo {
    font-family: 'kudryashev_headlineregular';
    font-size: 2.125rem;
    line-height: 2.281rem;
    margin-bottom: 1.25rem;
}
.producto_vino_box .producto_vino_info .producto_vino_texto {
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 0.5rem;
}
.producto_vino_box .producto_vino_info .producto_vino_precio {
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 2rem;
}
.producto_vino_box .producto_vino_cta {}
.producto_vino_box .producto_vino_cta .cta {
    width: 230px;
    max-width: 100%;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    background-color: #fff;
    color: #c3b799;
}
.producto_vino_box .producto_vino_cta .cta:hover {
    background-color: #c3b799;
    color: #000;
    text-decoration: none;
}
/* CARRITO */
.menu_carrito {
    position: fixed;
    top: 0;
    right: 0;
    width: 424px;
    max-width: 100%;
    height: 100%;
    z-index: 2;
    background-color: #fff;
    transform: translateX(0%);
    overflow: hidden;
    color: #000;
}

.menu_carrito_head {
    border-bottom: 1px solid #f0e8d7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 2.125rem;
    line-height: 2.125rem;
    font-family: 'kudryashev_headlineregular';
    color: #000;
    padding: 29px 32px;
}
.closeMenuCarrito {
    width: 24px;
    height: 24px;
    display: block;
    position: relative;
}
.closeMenuCarrito .menu-linea {
    position: absolute;
    top: 50%;
    left: 0px;
    display: block;
    background-color: #000;
    width: 24px;
    height: 2px;
    transform: rotate(-45deg);
    opacity: 1;
}
.closeMenuCarrito .menu-linea:last-child {
    transform: rotate(45deg);
}

.menu_cart_footer {
    padding: 50px 32px;
}
.menu_cart_footer .box_cart_subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
.menu_cart_footer .box_cart_subtotal .cart_subtotal {
    font-size: 1.5rem;
    line-height: 1.375rem;
}
.menu_cart_footer .box_cart_subtotal .cart_subtotal_precio {
    font-size: 1.5rem;
    line-height: 1.375rem;
    font-weight: 600;
}
.menu_cart_footer .cta {
    width: 100%;
    height: 54px;
    font-size: 1.125rem;
    line-height: 2rem;
}

.cart table {
    width: 100%;
}
.cart_producto_item {
    display: flex;
    padding: 23px 0;
    border-bottom: 1px solid #f0e8d7;
}
.cart_producto_item .cart_image {
    max-width: 151px;
    height: 151px;
    overflow: hidden;
}
.cart_content {}
.cart_content .cart_nombre {
    font-size: 1.125rem;
    line-height: 1.375rem;
    margin-bottom: 10px;
}
.cart_content .cart_precio {
    font-size: 1.125rem;
    line-height: 1.375rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.cart_content .cart_cantidad {}
.cantidad {
    display: flex;
    width: 125px;
    max-width: 100%;
    border: 1px solid #c3b799;
    border-radius: 45px;
    overflow: hidden;
}
.cantidad input {
    width: 33.33%;
    padding: 0;
    border: 0;
    text-align: center;
}
.cantidad .cantidad_btn {
    position: relative;
    display: block;
    width: 33.33%;
    height: 38px;
}
.cantidad .btn_less::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -7px;
    width: 13px;
    height: 1px;
    display: block;
    background-color: #000;
}
.cantidad .btn_plus::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -7px;
    width: 13px;
    height: 1px;
    display: block;
    background-color: #000;
}
.cantidad .btn_plus::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -7px;
    width: 13px;
    height: 1px;
    display: block;
    background-color: #000;
    transform: rotate(90deg);
}

/* END CARRITO */

/* PAGINA NOVEDADES POST /////////////////////////////////////////////////////////////*/

.castel_section_hero_post {
    background-image: url('../../assets/img/novedades/novedades-post-hero-Castel-Conegliano.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.post_data {
    font-size: 1.125rem;
    line-height: 1.75rem;
    text-transform: uppercase;
    color: #fff;
}
.post_data .post__fecha {}

.post_compartir {
    display: flex;
    gap: 11px;
    margin-bottom: 55px;
}
.post_compartir .post_tags {}
.post_compartir .post_tags .etiqueta {
    border: 1px solid #c3b799;
    border-radius: 50px;
    background-color: #fff;
    color: #c3b799;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 2rem;
    display: inline-block;
    padding: 1px 18px;
}
.btn-compartir {
    width: 36px;
    height: 36px;
    border: 1px solid #c3b799;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
    display: inline-block;
}
.btn-compartir::before {
    content: '';
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23c3b799" d="M18 9a3 3 0 1 0-2.977-2.63l-6.94 3.47a3 3 0 1 0 0 4.319l6.94 3.47a3 3 0 1 0 .895-1.789l-6.94-3.47a3.03 3.03 0 0 0 0-.74l6.94-3.47C16.456 8.68 17.19 9 18 9Z"%2F%3E%3C%2Fsvg%3E');
    width: 24px;
    height: 24px;
    position: absolute;
    top: 5px;
    left: 4px;
}
.post_compartir .post_btns {
    display: flex;
    gap: 11px;
}
.btn-guardar {
    display: inline-block;
    width: 36px;
    height: 36px;
    border: 1px solid #c3b799;
    border-radius: 50%;
    background-color: #fff;
    position: relative;
}
.btn-guardar::before {
    content: '';
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 1024 1024"%3E%3Cpath fill="%23c3b799" d="M256 128v698.88l196.032-156.864a96 96 0 0 1 119.936 0L768 826.816V128H256zm-32-64h576a32 32 0 0 1 32 32v797.44a32 32 0 0 1-51.968 24.96L531.968 720a32 32 0 0 0-39.936 0L243.968 918.4A32 32 0 0 1 192 893.44V96a32 32 0 0 1 32-32z"%2F%3E%3C%2Fsvg%3E');
    width: 24px;
    height: 24px;
    position: absolute;
    top: 5px;
    left: 4px;
}

#post {
    color: #000000;
    padding: 70px 0 90px;
}
#post .container {}
#post h1 {
    font-size: 1.8125rem;
    line-height: 2.1125rem;
    margin-bottom: 24px;
}
#post p {
    font-weight: 400;
    letter-spacing: -.2px;
    font-size: 1.0625rem;
    line-height: 1.5625rem;
    margin-bottom: 30px;
}
#post img {
    display: inherit;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}
.post_box_images {
    position: relative;
    margin: 60px 0;
}
.post_gallery_grid {
    display: grid;
}
.post_gallery_grid .block_image {}
.post_gallery_grid .block_image img {
    width: 100%;
    height: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* Relacionados */
.posts_relacionados {
    background-color: #fff;
    padding: 75px 0;
    border-top: 1px solid #f0e8d7;
}
.posts_relacionados h2 {
    font-family: 'kudryashev_headlineregular';
    font-size: 2rem;
    color: #000;
    margin-bottom: 0;
}
.posts_relacionados .cta {
    width: 130px;
}
.posts_relacionadas_section {
    margin-bottom: 60px;
}
.posts_relacionadas_section .posts_relacionadas_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    justify-content: space-between;
}
.posts_relacionadas_section .posts_relacionadas_wrapper .posts_relacionadas_titulo {}
.posts_relacionadas_container {}
.posts_relacionadas_grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 24px;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(180deg, rgba(0,0,0,0.4990371148459384) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(180deg, rgba(0,0,0,0.4990371148459384) 0%, rgba(255,255,255,0) 100%);
    background: linear-gradient(180deg, rgba(0,0,0,0.4990371148459384) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
}
.parallax {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    top: 0;
    left: 0;
}

/* PAGINA PRODUCTO EN TIENDA /////////////////////////////////////////////////////////////*/

.Web-Header.Web-Header_negro .header-nav-wrapper .header-nav ul > li > a {
    color: #000;
}
.Web-Header.Web-Header_negro .header-nav-wrapper .header-nav ul > li > a.active {
    color: #c3b799;
}
.Web-Header.Web-Header_negro .menu-activador .menu-activador-linea {
    background-color: #000;
}
.Web-Header.Web-Header_negro {
    background-color: #fff;
    border-bottom: 1px solid #dbd4c2;
}

.producto_info_section {
    padding-top: 94px;
    color: #000;
}
.producto_info_container {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}
.producto_info_grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}
.producto_media {
    padding: 27px;
    position: relative;
    /*display: flex;
    justify-content: center;*/
}
.producto_media_select {
    max-width: 591px;
    overflow: hidden;
}
.producto_media_select img {
    width: auto;
    height: auto;
    max-width: 100%;
}
.producto_info_main {
    padding: 40px;
}

.producto_info_content {}
.producto_info_titulo_wrapper {}
.producto_info_titulo_wrapper .producto_info_titulo {
    margin-bottom: 24px;
}
.producto_info_titulo_wrapper .producto_info_titulo .producto_titulo {}
.producto_info_titulo_wrapper .producto_info_subTitulo {
    color: #c3b799;
    text-transform: uppercase;
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.producto_info_precio_wrapper {
    margin: 55px 0 60px;
}
.producto_info_precio_wrapper .producto_info_cantidad {
    font-size: 1.313rem;
    line-height: 1.813rem;
    margin-bottom: 24px;
}
.producto_info_precio_wrapper .producto_info_precio {
    font-size: 1.875rem;
    line-height: 1.813rem;
}

.producto_box_cart {}
.producto_cart_cantidad {}
.cart_cantidad {
    display: flex;
    border: 1px solid #c3b799;
    border-radius: 45px;
    width: 340px;
    max-width: 100%;
    height: 54px;
    overflow: hidden;
}
.cart_cantidad input {
    width: 33.33%;
    padding: 0;
    border: 0;
    text-align: center;
}
.cart_cantidad .cart_cantidad_btn {
    position: relative;
    display: block;
    width: 33.33%;
    height: 100%;
}
.cart_cantidad .cart_cantidad_btn_less::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -7px;
    width: 17px;
    height: 1px;
    display: block;
    background-color: #000;
}
.cart_cantidad .cart_cantidad_btn_plus::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -7px;
    width: 17px;
    height: 1px;
    display: block;
    background-color: #000;
}
.cart_cantidad .cart_cantidad_btn_plus::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -7px;
    width: 17px;
    height: 1px;
    display: block;
    background-color: #000;
    transform: rotate(90deg);
}
.producto_box_cart .cta {
    width: 340px;
    height: 54px;
    margin-top: 24px;
}

.producto_descripcion {}
.descript_menu_box {
    border-bottom: 1px solid #f0e8d7;
}
.descript_menu_box .descript_menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 68px;
}
.descript_menu_box .descript_menu .descript_btn {
    border: 0;
    background: transparent;
    color: #c3b799;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1rem;
    letter-spacing: 2px;
    padding: 31px 0;
    position: relative;
}
.descript_menu_box .descript_menu .descript_btn.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #c3b799;
}

.descript_item {
    display: block;
    color: #000;
}
.descript_item.hidden {
    display: none;
}
.descript_content {
    text-align: center;
    padding: 70px 0 45px;
}
.descript_content p {
    font-size: 1.313rem;
    line-height: 1.813rem;
    margin-bottom: 30px;
}

/* PAGINA CHECKOUT /////////////////////////////////////////////////////////////*/

.castel_checkout_section {
    padding: 150px 0 90px;
    color: #000;
}

.checkout_section_title {
    display: flex;
    align-items: flex-end;
    margin-bottom: 40px;
}
.checkout_section_title .title {
    font-size: 3rem;
    line-height: 3rem;
    margin-bottom: 0;
}
.checkout_section_title .seguro {
    color: #c3b799;
    font-size: 1.125rem;
    line-height: 1.375rem;
    position: relative;
    margin-left: 60px;
    margin-bottom: 6px;
}
.checkout_section_title .seguro::before {
    content: '';
    background-image: url('../../assets/img/tienda/ic-escudo.png');
    width: 19px;
    height: 19px;
    position: absolute;
    left: -25px;
    bottom: 2px;
}

.checkout_compra {}
.checkout_compra table {
    width: 100%;
    border-top: 1px solid #f0e8d7;
    border-left: 1px solid #f0e8d7;
    border-right: 1px solid #f0e8d7;
}
.checkout_compra table .tr {
    border-bottom: 1px solid #f0e8d7;
}
.checkout_compra table .tr_titulo {
    text-align: left;
}
.checkout_compra table .tr_titulo .td_titulo {
    padding: 29px 34px;
    width: 100%;
}
.checkout_compra table .tr_titulo .td_titulo h2 {
    font-size: 2.125rem;
    margin-bottom: 0;
}
.tr_info {}
.tr_info .td_info {
    width: 50%;
}

.tr_producto {}
.tr_producto .td_producto {
    padding: 20px 0px;
}
.tr_producto .td_producto_image {
    width: 22%;
}
.tr_producto .td_producto_nombre {
    font-size: 1.125rem;
    line-height: 1.375rem;
    width: 53%;
}
.tr_producto .td_producto_nombre .td_producto_unidad {
    display: block;
}
.tr_producto .td_producto_precio {
    font-size: 1.125rem;
    line-height: 1.375rem;
    font-weight: 600;
    width: 25%;
}

.tr_subTotal {}
.tr_subTotal.tr_subTotal_1 {
    border-bottom: 0 !important;
}
.tr_subTotal .td_subTotal_1 {
    font-size: 1.125rem;
    line-height: 1.375rem;
}
.tr_subTotal .td_subTotal_2 {
    text-align: right;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.375rem;
}
.tr_subTotal.tr_subTotal_1 .td_subTotal_1 {
    padding: 24px 0 8px 34px;
}
.tr_subTotal.tr_subTotal_1 .td_subTotal_2 {
    padding: 24px 34px 8px 0;
}
.tr_subTotal.tr_subTotal_2 .td_subTotal_1 {
    padding: 8px 0 24px 34px;
}
.tr_subTotal.tr_subTotal_2 .td_subTotal_2 {
    padding: 8px 34px 24px 0;
}

.tr_total {
    background-color: #f0e8d7;
}
.tr_total .td_info_1 {
    padding: 23px 12px 23px 34px;
}
.tr_total .td_info_2 {
    padding: 23px 34px 23px 12px;
}
.tr_total .td_total {
    font-size: 1.5rem;
    line-height: 1.375rem;
}
.tr_total .td_total_precio {
    font-size: 1.5rem;
    line-height: 1.375rem;
    font-weight: 600;
    text-align: right;
}

.checkout_form {
    padding: 45px 36px;
    border: 1px solid #f0e8d7;
}
.form_row {
    margin-bottom: 20px;
}
.form_row_flex {
    display: flex;
    gap: 20px;
}
.box_input {
    width: 50%;
}
.form_btn_submit {}
.form_btn_submit .btn_submit {
    width: 100%;
    max-width: 100%;
    height: 62px;
    font-size: 1.375rem;
    line-height: 1.375rem;
}
label.check_label {
    font-size: 1.125rem;
    line-height: 1.375rem;
    text-transform: uppercase;
    margin-bottom: 14px;
    position: relative;
}
input.check_input {
    padding: 9px 6px;
    border: 1px solid #f0e8d7;
    background-color: #f9f6ee;
    border-radius: 4px;
}
select.check_select {
    display: block;
    padding: 9px 6px;
    border: 1px solid #f0e8d7;
    background-color: #f9f6ee;
    border-radius: 4px;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
    position: relative;
}
textarea.check_textarea {
    display: block;
    padding: 12px;
    border: 1px solid #f0e8d7;
    background-color: #f9f6ee;
    border-radius: 4px;
    width: 100%;
}
.check_label_opcional::after {
    content: 'opcional';
    position: absolute;
    right: -90px;
    font-size: 1rem;
    color: #a7a7a7;
    text-transform: capitalize;
}
.select_custom {
    position: relative;
}
.select_custom::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 28px;
    pointer-events: none;
    width: 10px;
    height: 2px;
    background-color: #232627;
    transform: rotate(45deg);
    z-index: 1;
}
.select_custom::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 22px;
    pointer-events: none;
    width: 10px;
    height: 2px;
    background-color: #232627;
    transform: rotate(-45deg);
    z-index: 1;
}
/* END PAGINA CHECKOUT /////////////////////////////////////////////////////////////*/

.imgFloat {
    position: absolute;
}
.imgFloatLeft-01 {
    top: -22%;
    left: 20%;
    width: 200px;
}
.imgFloatLeft-02 {
    top: -10%;
    left: 1%;
    width: 200px;
}
.imgFloatLeft-03 {
    bottom: 20%;
    left: -3%;
    width: 150px;
}
.imgFloatLeft-04 {
    bottom: 30%;
    left: 12%;
}
.imgFloatLeft-05 {
    bottom: -5%;
    left: 8%;
}
.imgFloatLeft-06 {
    bottom: -13%;
    left: 21%;
    width: 150px;
}
.imgFloatLeft-07 {
    bottom: -3%;
    left: 39%;
}
.imgFloatRight-01 {
    top: 12%;
    right: 27%;
}
.imgFloatRight-02 {
    top: -5%;
    right: 5%;
    width: 200px;
}
.imgFloatRight-03 {
    top: 30%;
    right: -6%;
    width: 200px;
}
.imgFloatRight-04 {
    bottom: 6%;
    right: 8%;
    width: 100px;
}
.imgFloatRight-05 {
    bottom: -18%;
    right: 15%;
    width: 200px;
}
.float {
    transform: translatey(0px);
    webkit-animation: float 6s ease-in-out infinite;
    animation: float 6s ease-in-out infinite;
    animation-duration: 6s !important;
}
.floatA {
    transform: translatey(-20px);
    webkit-animation: float 8s ease-in-out infinite;
    animation: floatA 8s ease-in-out infinite;
    animation-duration: 6s !important;
}
@keyframes floatA {
    0% {
        transform: translatey(-20px) rotate(0deg);
    }
    50% {
        transform: translatey(0px) rotate(2deg);
    }
    100% {
        transform: translatey(-20px) rotate(0deg);
    }
}
@keyframes float {
    0% {
        transform: translatey(0px) rotate(0deg);
    }
    50% {
        transform: translatey(-20px) rotate(5deg);
    }
    100% {
        transform: translatey(0px) rotate(0deg);
    }
}

.producto_slide_controller {}
.producto_control_slide {}
.producto_control_slide li {
    cursor: pointer;
    width: 24px;
    height: 37px;
    position: absolute;
    bottom: 50%;
}
.producto_control_slide li .slideArrow {
    display: block;
    position: relative;
    bottom: 0;
    height: inherit;
    background-color: transparent;
}
.producto_control_slide li .slideArrow.arrowPrev::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 9px;
    transform: rotate(130deg);
}
.producto_control_slide li .slideArrow.arrowPrev::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background-color: #000;
    position: absolute;
    bottom: 9px;
    transform: rotate(-130deg);
}
.producto_control_slide li .slideArrow.arrowNext::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 9px;
    right: inherit;
    transform: rotate(50deg);
}
.producto_control_slide li .slideArrow.arrowNext::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background-color: #000;
    position: absolute;
    bottom: 9px;
    right: inherit;
    top: inherit;
    transform: rotate(-50deg);
}
.producto_control_slide li.prev {
    left: 27px;
}
.producto_control_slide li.next {
    right: 27px;
}
.product_tienda_item {}
.product_tienda_item img {
    max-width: 100%;
    height: auto;
}

/* PAGINA Términos y condiciones /////////////////////////////////////////////////////////////*/

.terms-conditions {
    color: #242424;
    padding: 158px 0 64px;
    background-color: #f0e9d7;
}
.terms-conditions h1 {
    margin-bottom: 3rem;
}
.terms-conditions h2,
.terms-conditions h3,
.terms-conditions h4,
.terms-conditions h5,
.terms-conditions h6, {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 19px;
}
.terms-conditions p {
    font-size: 14px;
    margin-bottom: 19px;
}