body {
    font-family: "Noto Serif TC", serif;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.8;
    background-color: #fff;
}

.Logo {
    margin-top: -10px;
    display: block;
    text-align: left;
    margin-left: 15px;
}

.Logo img {
    max-height: 100px;
    max-width: 80%;
    width: 475px;
}

.home .carousel-inner {
    max-height: 800px;
}

.bgSvg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    max-height: 722px;
    z-index: -1;
    opacity: .5;
    transition: all .3s ease;
    overflow: hidden;
}

.bgSvg svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
}

.bgSvg:hover {
    opacity: 1;
}

@media (max-width: 1400px) {
    .Logo img {
        width: 300px;
        max-width: 300px;
    }
    .Logo {
        max-height: 50px;
        overflow: hidden;
    }
}
/* 首頁 Banner 輪播圖片縮放動畫，切換時圖片不會閃白 */
#carouselBanner .carousel-item img {
    transition: transform 3s cubic-bezier(0.4,0,0.2,1), opacity 3s cubic-bezier(0.4,0,0.2,1);
    transform: scale(1.3);
    opacity: 1;
    z-index: 1;
}
#carouselBanner .carousel-item.active img {
    transform: scale(1);
    opacity: 1;
    z-index: 2;
}
#carouselBanner .carousel-item.carousel-item-next img,
#carouselBanner .carousel-item.carousel-item-prev img {
    opacity: 1;
}

@media (max-width: 1200px) {
    .Logo {
        max-width: 300px;
    }
}

@media (max-width:992px) {
    .Logo img {
        width: 245px;
        max-width: 300px;
    }
    .Logo {
        max-width: 245px;
        max-height: 50px;
        overflow: hidden;
    }
    .home .carousel-inner {
        max-height: none;
    }
}

.navbar {
    padding-top: 70px;
    padding-bottom: 0;
    background: #000;
}

.home .navbar {
    background: transparent;
}

header {
    position: relative;
    z-index: 10;
}

header.fixed-top {
    background-color: #000;
    height: 60px;
}

.home header.fixed-top {
    background-color: transparent;
    transition: background-color .3s ease;
}

.home header.fixed-top.scrolled {
    background-color: #000;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
    transform: rotate(450deg);
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M7.2,7.2l15.6,15.6 M7.2,22.8L22.8,7.2'/></svg>");
}

.topSearch .form-control {
    background-color: transparent;
    color: transparent;
    border-radius: 10px !important;
    width: 150px;
    height: 26px;
    transition: all .3s ease;
}

/* .topSearch .form-control::placeholder {
    color: #ffe1b5 !important;
} */

.topSearch .btn {
    color: #fff;
    margin: -5px 0 0 -30px !important;
    font-size: 18px;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-expand-lg {
    flex-wrap: wrap;
}

.navbar-expand-lg .navbar-collapse {
    justify-content: end;
}

.topSearch {
    margin: 12px 20px 0;
}

.fixed-top .topSearch {
    margin: -50px auto 0;
}

@media (max-width:1400px) {
    .topSearch {
        top: -45px;
        right: 38px;
    }
}

@media (max-width:992px) {
    .topSearch {
        top: 72px;
    }
}

.SearchBtn {
    margin-left: -40px !important;
    z-index: 4 !important;
    transform: scale(.85);
}

#navBars {
    border: 1px solid transparent;
}

#navBars .nav-link,
footer .nav-link {
    flex-wrap: nowrap;
    position: relative;
    color: #fff;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid transparent;
}
.nav-item .dropdown-menu[data-bs-popper] {
    left: 50%;
    transform: translateX(-73%);
}

.bg-dark {
    background-color: #000 !important;
}

.header2 {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 75px;
    z-index: -1;
    background-color: #000 !important;
    transition: all .3s ease;
}

.header2:hover {
    opacity: 1;
}

@keyframes showMenu1 {
    0% {
        position: fixed;
        top: -100px;
    }

    70% {
        position: fixed;
        top: 0;
    }

    100% {
        position: fixed;
        top: 0;
    }
}

.black {
    display: block;
    position: fixed;
    top: 0;
    transition: top .3s ease;
}

.navbar {
    box-shadow: none;
    padding-top: 5px;
}

#carouselBanner {
    margin-top: -71px;
    z-index: 0;
}

#carouselBanner .carousel-banner-link {
    display: block;
    position: relative;
    z-index: 1;
    color: inherit;
    text-decoration: none;
}

@media (max-width: 1400px) {
    .header2 {
        height: 60px;
    }
}

@media (min-width: 993px) {

    #navBars .nav-link,
    #navBars .nav-link.active {
        color: #fff;
    }
}

@media (min-width: 1830px) {

    #navBars .nav-link,
    footer .nav-link {
        padding: 0.75rem .5rem;
    }
}

#navBars .nav-item {
    position: relative;
    cursor: pointer;
}

#navBars .nav-link.show,
#navBars .nav-link.active,
#navBars .nav-link:hover {
    color: #8A6E2F;
    font-weight: bold;
}

@media (min-width: 993px) {

    #navBars .nav-link.show,
    #navBars .nav-link.active,
    #navBars .nav-link:hover {
        color: #fff;
    }
}

#navBars .nav-link:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 4px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #8A6E2F;
    transition: all .3s ease;
}

#navBars .nav-link:hover:after,
#navBars .nav-link.active:after {
    width: calc(100% - 1rem);
}

#navBars .dropdown-menu {
    padding: 0;
    border-color: #c5a65f;
    box-shadow: 0 10px 15px -10px rgb(0 0 0 / 35%);
    overflow: hidden;
}

#navBars .dropdown-item {
    padding: 10px 30px;
    border-bottom: 1px solid #8A6E2F;
    text-align: center;
}

#navBars .dropdown-item:focus,
#navBars .dropdown-item:hover {
    color: #8A6E2F;
    background-color: #fff;
    font-weight: bold;
}

footer {
    position: relative;
    color: #fff;
    padding: 80px 0 120px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    background-color: #000;
}

footer .border-top {
    border-top: 1px solid rgb(255 255 255 / 20%) !important;
}

footer .border-bottom {
    border-bottom: 1px solid rgb(255 255 255 / 10%) !important;
}

footer .fmenu {
    justify-content: space-between;
    margin-bottom: 50px;
}

footer .fmenu .nav-link {
    padding: 0.75rem 2.73vw;
}

footer .fmenu .nav-link:after {
    display: none;
}

footer .fmenu .nav-item:first-child .nav-link {
    padding-left: 0;
}

footer .fmenu .nav-item:last-child .nav-link {
    padding-right: 0;
}

footer .nav-link {
    color: #fff;
}

footer .nav-link:hover {
    font-size: 14px;
    color: #d9c17e;
    font-weight: bold;
}

footer .nav-link:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 15px;
    background-color: #ccc;
    opacity: .2;
}

footer .nav-item:last-child .nav-link:after {
    display: none;
}

footer .nav.fmenu .dropdown-menu {
    padding: 0;
}

footer .nav.fmenu .dropdown-item {
    padding: 10px 30px;
    border-bottom: 1px solid #8A6E2F;
    text-align: center;
    background-color: #fff;
}

footer .nav.fmenu .dropdown-item:hover {
    color: #8A6E2F;
    font-weight: bold;
}

.hide {
    display: none;
}

@keyframes show01 {
    0% {
        opacity: 0;
        transform: translateY(-50%);
    }

    80% {
        opacity: 1;
        transform: translateY(-215%);
    }

    100% {
        opacity: 0;
        transform: translateY(-215%);
    }
}

@keyframes show02 {
    0% {
        opacity: 0;
        transform: translateY(-50%) scale(.5);
    }

    80% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-50%) scale(1);
    }
}

@keyframes show03 {
    0% {
        opacity: 0;
        transform: translateY(-50%);
    }

    80% {
        opacity: 1;
        transform: translateY(120%);
    }

    100% {
        opacity: 0;
        transform: translateY(120%);
    }
}

@media (max-width: 576px) {
    @keyframes show01 {
        0% {
            opacity: 0;
            transform: translateY(-50%);
        }

        80% {
            opacity: 1;
            transform: translateY(-115%);
        }

        100% {
            opacity: 0;
            transform: translateY(-115%);
        }
    }
    @keyframes show03 {
        0% {
            transform: translateY(-50%);
        }

        80% {
            transform: translateY(30%);
        }

        100% {
            transform: translateY(30%);
        }
    }
}

.aboutUs {
    padding: 100px 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.famousWinery {
    padding: 30px 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.products {
    padding: 65px 0 10px;
    width: 100%;
    overflow: hidden;
}

.latestNews {
    padding: 30px 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.eventHighlights {
    background-color: #3c3c3c;
    padding: 60px calc(50vw - 600px) 10px;
    width: 100%;
    overflow: hidden;
}

.contactUs {
    margin: 0 auto;
    padding: 100px 0;
    max-width: 1200px;
    width: 100%;
}

.Winery {
    padding: 0 0 30px;
}

.Winery .inmap{
    margin-top: 18px;
    margin-bottom: -133px;
    z-index: 9;
}

.Winery .location{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    cursor: pointer;
    transition: all .3s ease;
    background-repeat: no-repeat;
    background-size: 45px 56px;
    background-position: 1px -1px;
}

.Winery .location:after{
    width: 30px;
    height: 35px;
    content: '';
    position: absolute;
    left: 50%;
    top: -10px;
    transform: translateX(-50%);
    background-image: url(../img/SVG/Label.svg);
}

.Winery .location.L01{
    width: 4%;
    height: 19%;
    top: 69%;
    left: 24.5%;
}

.Winery .location.L02{
    width: 12%;
    height: 20%;
    top: 74%;
    left: 73%;
}

.Winery .location.L03{
    width: 2.5%;
    height: 5%;
    top: 32.5%;
    left: 41%;
}

.Winery .location.L04{
    width: 2.2%;
    height: 5%;
    top: 30%;
    left: 43.5%;
}

.Winery .location.L05{
    width: 2.2%;
    height: 5%;
    top: 31.5%;
    left: 46%;
    display: none !important;
}

.Winery .location.L06{
    width: 3.2%;
    height: 5%;
    top: 36%;
    left: 44.5%;
}

.Winery .location.L07{
    width: 4.2%;
    height: 9%;
    top: 79%;
    left: 82.5%;
}

.Winery .location.L08{
    width: 2.2%;
    height: 5%;
    top: 36.85%;
    left: 40.7%;
    display: none !important;
}

.Winery .location.L09{
    width: 2.2%;
    height: 6%;
    top: 36%;
    left: 38.5%;
}

.Winery .location.L10{
    width: 2.2%;
    height: 4%;
    top: 33%;
    left: 44%;
}

.Winery .location.L11{
    width: 2.2%;
    height: 6%;
    top: 36%;
    left: 17%;
}

.Winery .location.L12{
    width: 2.2%;
    height: 6%;
    top: 76%;
    left: 23%;
}

.Winery .mapInfo{
    width: auto;
    height: 90px;
    position: absolute;
    display: none;
    z-index: 11;
    border: 1px solid #8A6E2F;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    align-items: center;
    transition: all .3s ease;
    transform-origin: 50% 100%;
}

.Winery .mapInfo h3,
.Winery .WineryInfos h3{
    padding: 10px 15px;
    color: #8A6E2F;
    text-align: left;
    font-weight: bold;
    font-size: 30px;
    margin:0;
}

.Winery .WineryInfos .cards h3{
    font-size: 24px;
    margin: 0 auto;
}

.Winery .mapInfo h3 .eng,
.Winery .WineryInfos h3 .eng{
    margin: 2px 0 0;
    color: #8A6E2F;
    font-size: 60%;
    display: block;
}

.Winery .WineryInfos{
    width: 600px;
    max-width: 50vw;
    height: auto;
    max-height: 75vh;
    position: absolute;
    display: none;
    z-index: 11;
    border: 1px solid #8A6E2F;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    transition: all .3s ease;
    transform-origin: 50% 100%;
    padding: 15px 7px 15px 15px;
}

.Winery .WineryInfos.active{
    display: flex;
    flex-direction: column;
    transform: scale(.3);
    animation-name: show_mapInfo;
    animation-duration: .3s;
    animation-iteration-count:inherit;
    animation-timing-function: ease;
    animation-fill-mode: both;
}

.Winery .WineryInfos img{
    width: auto;
    height: 75px;
    margin-left: 10px;
    border-radius: 7px;
    overflow: hidden;
}

.Winery .WineryInfos .close{
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.Winery .WineryInfos .header{
    display: flex;
    min-height: 80px;
    flex: 0 0 auto;
    padding-right: 28px;
}

.Winery .WineryInfos .cards{
    margin-bottom: 0;
    flex: 1 1 auto;
    min-height: 0;
    max-height: calc(75vh - 115px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 10px 0 0;
}

.cards .card{
    width: 100%;
    margin: 5px 30px 15px 0;
}

.cards .card .more.noborder {
    margin: 5px 10px -30px 0;
}

.cards .card:last-child{
    width: 100%;
    margin: 5px 30px 0 0;
}

.Winery .cards a.card img.img-logo {
    max-width: 100%;
    margin-left: 0;
}

@keyframes show_mapInfo {
    0% {
        transform: scale(.3);
    }
    85% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.Winery .mapInfo.active{
    display: flex;
    transform: scale(.3);
    animation-name: show_mapInfo;
    animation-duration: .3s;
    animation-iteration-count:inherit;
    animation-timing-function: ease;
    animation-fill-mode: both;
}

.Winery .mapInfo img{
    width: auto;
    height: 75%;
    margin-left: 10px;
    border-radius: 7px;
    overflow: hidden;
}

.Winery .mapInfo .title2{
    /* transform: scale(.75); */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-60%, -47%) scale(0.7);
}

.Winery .mapInfo .title2:before{
    display: none;
}

.Winery .container.bg {
    display: none;
}

@media (max-width: 767px) {
    .contactUs {
        padding: 30px 15px;
    }
    .Winery .location {
        width: 20px;
        height: 25px;
    }
    .Winery .mapInfo{
        width: 200px;
        height: 60px;
        border-radius: 5px;
    }
    .Winery .mapInfo .title2 {
        transform: translate(-47%, -47%) scale(0.7);
    }
}

.WineryInfo{
    padding: 40px 20px;
    overflow: hidden;
}

.product_list{
    padding: 40px 20px;
    overflow: hidden;
}

.news_list{
    padding: 40px 20px;
    overflow: hidden;
}

.news{
    padding: 40px 30px;
    overflow: hidden;
}

.event_list{
    padding: 40px 20px;
    overflow: hidden;
}

.event{
    padding: 40px 30px;
    overflow: hidden;
}

.about{
    padding: 40px 20px;
    overflow: hidden;
}

.product_info{
    padding: 40px 20px;
    overflow: hidden;
}

.lbtitle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    line-height: 3em;
    width: 100%;
    height: 200px;
    text-shadow: 0 0 5px rgb(0 0 0 / 75%);
    z-index: 1;
}

.lbtitle div,
.lbtitle strong,
.lbtitle span {
    position: absolute;
    transform: translateX(-50%);
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    transition: all .3s ease;
    animation-name: show1;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-fill-mode: both;
    opacity: 1;
}

.lbtitle div {
    animation-name: show01;
    transform: translateY(-50%);
    font-size: 30px;
    animation-delay: 1s;
}

.lbtitle strong {
    animation-name: show02;
    transform: translateY(-50%);
    font-size: 50px;
    letter-spacing: .2em;
    animation-delay: 2s;
}

.lbtitle span {
    animation-name: show03;
    transform: translateY(-50%);
    display: block;
    font-size: 26px;
    letter-spacing: .2em;
    animation-delay: 3s;
    text-transform: uppercase;
}

.lbtitle.has-subtitle div {
    top: 10%;
}

.lbtitle.has-subtitle strong {
    top: 22%;
}

.lbtitle.has-subtitle span {
    top: 34%;
}

@media (max-width: 1200px) {
    .lbtitle.has-subtitle div {
        top: 20%;
    }

    .lbtitle.has-subtitle strong {
        top: 32%;
    }

    .lbtitle.has-subtitle span {
        top: 44%;
    }
}

@media (max-width: 970px) {
    .lbtitle.has-subtitle div {
        top: 30%;
    }

    .lbtitle.has-subtitle strong {
        top: 42%;
    }

    .lbtitle.has-subtitle span {
        top: 54%;
    }
}

@media (max-width: 750px) {
    .lbtitle.has-subtitle div {
        top: 40%;
    }

    .lbtitle.has-subtitle span {
        top: 44%;
    }
}

@media (max-width: 450px) {
    .lbtitle.has-subtitle div {
        top: 50%;
    }

    .lbtitle.has-subtitle strong {
        top: 52%;
    }

    .lbtitle.has-subtitle span {
        top: 54%;
    }
}

.lbtitle.no-subtitle strong {
    animation-name: show01;
    animation-delay: 1s;
}

@media (max-width: 992px) {
    .lbtitle div {
        font-size: 2vw;
    }

    .lbtitle strong {
        font-size: 5vw;
    }

    .lbtitle span {
        font-size: 2vw;
    }
}

@keyframes show2 {
    0% {
        background-size: 120%;
        opacity: 0;
    }

    20% {
        background-size: 120%;
        opacity: 1;
    }

    50% {
        background-size: 110%;
        opacity: 1;
    }

    55% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.fullpage {
    width: 100%;
}

.nav-link:focus,
.nav-link:hover {
    color: #820000;
}

.carousel-control-next,
.carousel-control-prev {
    width: 5%;
    z-index: 2;
}

.carousel-indicators [data-bs-target] {
    width: 6px;
    height: 6px;
    background-color: #fff;
    opacity: 1;
    border-radius: 50%;
    margin-left: 7px;
    transition: all .3s ease;
}

.carousel-control-next,
.carousel-control-prev {
    color: #fff;
    height: 100px;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
    color: #fff;
    filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
    /* background-color: rgb(0 0 0 / 15%); */
}

.carousel-control-next:hover span,
.carousel-control-prev:hover span {
    transform: scale(1.05);
}

.carousel-indicators .active {
    width: 100px;
    border-radius: 3px 3px 3px 3px;
    transition: all .3s ease;
    position: relative;
}

.carousel-indicators .active:before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-3px, -50%);
}

.carousel-indicators .active:after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(3px, -50%);
}

.carousel-control-prev-icon {
    background-image: url(../img/SVG/Toleft.svg);
}

.carousel-control-next-icon {
    background-image: url(../img/SVG/ToRight.svg);
}

.famousWinery .carousel-control-prev-icon {
    background-image: url(../img/SVG/Toleft2.svg);
}

.famousWinery .carousel-control-next-icon {
    background-image: url(../img/SVG/ToRight2.svg);
}

.permo {
    position: relative;
}

.border-left {
    position: absolute;
    left: 33%;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
    border-left: 1px solid #c5b697;
    font-size: 0;
}

.border-right {
    position: absolute;
    right: 33%;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
    border-right: 1px solid #c5b697;
    font-size: 0;
}

.link {
    text-decoration: none;
    color: #333;
    text-align: center;
    background-color: rgb(255 255 255 / 70%);
    backdrop-filter: blur(1px);
}

.link:hover {
    background-color: rgb(255 255 255 / 80%);
    backdrop-filter: blur(2px);
}

.link strong {
    color: #333;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2em;
    transition: all .3s ease;
}

.link p {
    color: #333;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0;
    transition: all .3s ease;
}

.link:hover strong,
.link:hover p {
    color: #8A6E2F;
    letter-spacing: .1em;
}

.link-white {
    text-decoration: none;
    transition: all .3s ease;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 15px;
    border-radius: 50%;
    margin-right: 30px;
    background-color: #8A6E2F;

}

.link-white img {
    width: 30px;
    height: 30px;
}

.link-white:hover {
    background-color: #000;
    transform: scale(1.5);
    box-shadow: 0 0 10px 2px rgb(138 110 47 / 75%);
}

.more {
    display: table;
    width: 100%;
    max-width: 500px;
    font-size: 20px;
    letter-spacing: 0.2em;
    color: #8A6E2F;
    text-align: center;
    text-decoration: none;
    border-bottom: 1px solid #8A6E2F;
    position: relative;
    margin: 10px auto;
    padding: 0 15px 30px;
    font-weight: 500;
    transition: all .3s ease;
}

.arrow {
    font-style: normal;
    border: solid #8A6E2F;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
}

.right {
    transform: rotate(-45deg);
}

.left {
    transform: rotate(135deg);
}

.up {
    transform: rotate(-135deg);
}

.down {
    transform: rotate(45deg);
}

.more:after {
    content: '';
    width: 20px;
    font-size: 0;
    height: 20px;
    line-height: 1px;
    position: absolute;
    border: 1px solid #8A6E2F;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-125%);
    margin-left: 0;
    transition: all .3s ease;
}

.more .arrow {
    position: absolute;
    margin: 15px 0 0 4px;
    transition: all .3s ease;
}

.more:hover {
    font-weight: 900;
    color: #8A6E2F;
}

.more:hover:after {
    border: 2px solid #8A6E2F;
}

@keyframes arrowHover {
    0% {
        border-width: 0 1px 1px 0;
        margin: 15px 0 0 4px;
        transform: scale3d(1, 1, 1) rotate(-45deg);
    }

    70% {
        border-width: 0 3px 3px 0;
        margin: 14.5px 0 0 20px;
        transform: scale3d(2, 0.5, 0.5) rotate(-45deg);
    }

    100% {
        border-width: 0 2px 2px 0;
        margin: 14.5px 0 0 4px;
        transform: scale3d(1, 1, 1) rotate(-45deg);
    }
}

.more:hover .arrow {
    transition: all .3s ease;
    animation-name: arrowHover;
    animation-duration: .8s;
    animation-iteration-count: initial;
    animation-timing-function: ease;
    animation-fill-mode: both;
}

.more.noborder {
    border-bottom: none;
    margin: 10px auto -15px;
}

.more.white {
    color: #fff;
    border-bottom: none;
    text-shadow: 5px 5px 7px rgb(0 0 0 / 50%);
}

.more.white .arrow {
    border-color: #fff;
}

.more.white:hover {
    color: #fff;
    border-bottom: 0px;
}

.more.white::after {
    border: 1px solid #fff;
}

.more.white:hover:after {
    border: 2px solid #fff;
}

.famousWinery .more.white {
    margin-top: -50px;
}

.more2 {
    display: table;
    width: 100%;
    max-width: 500px;
    font-size: 20px;
    letter-spacing: 0.2em;
    color: #8A6E2F;
    text-align: center;
    text-decoration: none;
    position: relative;
    margin: 5px auto;
    padding: 0 15px 5px;
    font-weight: bold;
    transition: all .3s ease;
}

.more2::after {
    content: '';
    width: 35px;
    font-size: 0;
    height: 35px;
    line-height: 1px;
    position: absolute;
    background: url(../img/SVG/link.svg) center center no-repeat;
    background-size: 60%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 5px;
    transition: all .3s ease;
}

.more2:hover {
    color: #333;
}

.more2:hover:after {
    margin-left: 25px;
}

.permo .col-md-4:last-child .border-right::before {
    display: none;
}

.permo .card-text {
    font-size: 13px;
    max-height: 25px;
}

.permo img {
    width: 80px;
    max-height: 90px;
}

@media (max-width: 767px) {
    .border-left {
        top: 30%;
        left: 50%;
        transform: translateX(-50%);
        height: 1px;
        width: 80%;
        border-top: 1px solid #c5b697;
    }
    .border-right {
        top: 65%;
        left: 50%;
        transform: translateX(-50%);
        height: 1px;
        width: 80%;
        border-top: 1px solid #c5b697;
    }
    .link strong {
        font-size: 6vw;
    }
    .link p {
        font-size: 4vw;
    }
}

#carouselBanner .carousel-item img {
    transition: transform 3s cubic-bezier(0.4,0,0.2,1), opacity 3s cubic-bezier(0.4,0,0.2,1);
    transform: scale(1.2);
    opacity: 0;
}
#carouselBanner .carousel-item.active img {
    transform: scale(1);
    opacity: 1;
}

.famousWinery .carousel-item .winerybg{
    width: 25%;
    min-height: 620px;
    max-height: 620px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #8A6E2F;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.famousWinery .carousel-item .winerybg>.img-fluid{
    opacity: 1;
    height: 100%;
    width: auto;
    max-width: none;
    min-height: 0;
    object-fit: contain;
    object-position: center center;
}

.famousWinery .carousel-item .slider {
    opacity: 1;
    transition: all .3s ease;
}

.famousWinery .carousel-item.haslick .slider {
    opacity: 1;
}

.famousWinery .carousel-item .item {
    max-width: 100%;
    margin: 0 auto;
    min-height: 620px;
    background-position: center center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 50px;
}

.famousWinery .box {
    background-color: rgb(255 255 255 / 80%);
    border: 1px solid #8A6E2F;
    color: #333;
    padding: 20px 10px;
    max-width: 715px;
    width: 75%;
    height: 620px;
    border-radius: 10px;
    position: relative;
}

.famousWinery .box:hover {
    backdrop-filter: blur(5px);
}

.famousWinery .box::before {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../img/SVG/adornTopleft.svg) center center no-repeat;
    position: absolute;
    top: 15px;
    left: 15px;
    transition: all .5s ease;
}

.famousWinery .box::after {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../img/SVG/adornTopright.svg) center center no-repeat;
    position: absolute;
    bottom: 15px;
    right: 15px;
    transition: all .5s ease;
}

.famousWinery .nicescroll {
    width: 100%;
    height: 45%;
    overflow: hidden;
    padding: 0 25px;
}

.famousWinery h4 {
    font-size: 32px;
    color: #333;
    text-align: center;
    margin: 25px auto;
    font-weight: bold;
}

.famousWinery .subtitle {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    display: block;
    position: relative;
    padding-top: 25px;
    font-weight: 500;
}

.famousWinery .subtitle:before {
    content: '';
    width: 300px;
    max-width: 100%;
    height: 1px;
    background-color: #9d8859;
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
}

.famousWinery .desc {
    font-size: 18px;
    color: #333;
    font-weight: 500;
    line-height: 1.5em;
}

.famousWinery .carousel-indicators {
    bottom: -45px;
}

.famousWinery .carousel-indicators [data-bs-target],
.famousWinery .carousel-indicators .active:before,
.famousWinery .carousel-indicators .active:after {
    background-color: #8A6E2F;
}

.famousWinery .carousel-indicators .active:before,
.famousWinery .carousel-indicators .active:after {
    height: 5px;
}

.famousWinery .slider {
    max-width: 100%;
    margin: 0 auto 25px;
    display: flex;
    justify-content: space-evenly;
}

.famousWinery .slick-list {
    overflow: visible;
    width: 95%;
    margin: 0 auto;
}

.famousWinery .bottle {
    min-width: 130px;
    position: relative;
    transition: all .3s ease;
}

.famousWinery .bottle .product-img-slot {
    height: 250px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.famousWinery .bottle img {
    display: block;
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto;
}

.famousWinery .bottle.active
.famousWinery .bottle:hover {
    z-index: 9;
}

.famousWinery .bottle .info {
    height: 100px;
    width: 130px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 10px;
    overflow: hidden;
    z-index: -1;
    border: 1px solid #8A6E2F;
    border-radius: 7px;
    box-shadow: 5px 5px 15px rgb(0 0 0 / 10%);
    background-color: #fff;
    background-image: url(../img/SVG/HollowCircle.svg);
    background-position: -20% 129px;
    background-repeat: no-repeat;
    transition: all .3s ease;
}

.famousWinery .bottle:nth-child(5n-4) .info {
    background-image: url(../img/SVG/ConcentricCircles2.svg);
}

.famousWinery .bottle:nth-child(5n-3) .info {
    background-image: url(../img/SVG/Cube.svg);
}

.famousWinery .bottle:nth-child(5n-2) .info {
    background-image: url(../img/SVG/DiagonalLine.svg);
    background-size: 142% !important;
    background-position: 200% 116px;
}

.famousWinery .bottle:nth-child(5n-1) .info {
    background-image: url(../img/SVG/SolidPoint.svg);
}

.famousWinery .info h5 {
    color: #333;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    width: 160px;
    opacity: 0;
    position: absolute;
    right: 15px;
    top: 15px;
}

.famousWinery .info .subtitle {
    color: #333;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    padding: 15px 0;
    margin-top: 15px;
    width: 160px;
    opacity: 0;
}

.famousWinery .info .subtitle:before {
    content: '';
    width: 115px;
    height: 1px;
    background-color: #9d8859;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.famousWinery .bottle:hover img,
.famousWinery .bottle.active img {
    transform: translateX(-45%);
}

.famousWinery .bottle:hover .info,
.famousWinery .bottle.active .info {
    height: 270px;
    width: 265px;
    bottom: -10px;
    opacity: 1;
    background-size: 60%;
    border-width: 1px;
    transition: all .3s ease;
}

.famousWinery .bottle:hover .info h5,
.famousWinery .bottle:hover .info .subtitle,
.famousWinery .bottle.active .info h5,
.famousWinery .bottle.active .info .subtitle {
    opacity: 1;
}

@media (max-width: 1024px) {
    .famousWinery .carousel-item .item {
        max-width: calc(100% - 60px);
    }
    .famousWinery .carousel-item .item {
        gap: 15px;
    }
}

@media (max-width: 715px) {
    .famousWinery .box {
        width: 100%;
    }
    .famousWinery .carousel-item .winerybg {
        display: none;
    }
}

@media (max-width: 580px) {
    .famousWinery h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .famousWinery .subtitle {
        font-size: 14px;
        margin-bottom: 5px;
        padding-top: 10px;
    }
    .famousWinery .desc {
        font-size: 14px;
        line-height: 1.3em;
    }
}

.products .pboxs {
    position: relative;
    border: 1px solid #8A6E2F;
    overflow: hidden;
    display: flex;
    margin: 0 auto 30px;
    width: 1920px;
    height: 520px;
    transition: all 0.1s ease;
    background-color: #fff;
}

.products .pbox {
    position: relative;
    height: 520px;
    margin-top: 0;
    transition: all .3s ease;
    z-index: 2;
    cursor: pointer;
    width: 20%;
    pointer-events: none;
}

.products .pbox.is-empty {
    cursor: default;
}

.products .pbox.is-empty::after {
    display: none;
}

.products .pbox.is-empty img,
.products .pbox.is-empty .info,
.products .pbox.is-empty .SensingArea {
    display: none;
}

.products .pbox[num="1"] {
    margin-left: 9%;
}

.products .pbox.active {
    width: 830px;
    z-index: 3;
}

.products .pbox[num="1"].active {
    margin-left: -7px;
}

.products .pbox.active:hover:before {
    background-color: #fff;
}

.products .pbox img {
    transform-origin: 50% 0;
    height: 400px;
    margin: 40% -95px 0 -20%;
    transition: all .3s ease;
}

.products .pbox.active img {
    margin: 11% -95px 0 0;
    transform: translateY(0);
}

.products .pbox::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    border: 1px solid #8A6E2F;
    background-color: #fff;
    width: 100%;
    height: 520px;
    transform: skewX(-20deg);
    transition: all .3s ease;
    z-index: 1;
    pointer-events: none;
}

.products .pbox[num="1"]::before {
    left: 50%;
}

.products .pbox .SensingArea {
    content: '';
    position: absolute;
    top: -1px;
    left: -287px;
    border: 1px solid transparent;
    width: 100%;
    height: 520px;
    transform: skewX(-20deg);
    transition: all .3s ease;
    z-index: 5;
    pointer-events: all;
}

.products .pbox .SensingArea .more2 {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) skewX(20deg);
    opacity: 0;
    transition: all .3s ease;
}

.products .pbox.active .SensingArea .more2 {
    opacity: 1;
}

.products .pbox[num="1"] .SensingArea {
    width: 146%;
    left: -96%;
}

.products .pbox[num="1"].active .SensingArea {
    width: 100%;
    left: -18%;
}

.products .pbox[num="2"] .SensingArea {
    width: 100%;
    left: -50%;
}

.products .pbox[num="3"] .SensingArea {
    width: 100%;
    left: -50%;
}

.products .pbox[num="4"] .SensingArea {
    width: 100%;
    left: -50%;
}

.products .pbox[num="5"] .SensingArea {
    width: 230%;
    left: -50%;
}

.products .pbox .SensingArea:hover {
    background-color: #8a6f2f4c;
}

.products .pbox.active .SensingArea:hover {
    background-color: transparent;
}

.products .pbox::after {
    content: '';
    position: absolute;
    top: 99px;
    left: -9px;
    width: 100%;
    height: 801px;
    transition: all .6s ease;
    z-index: -1;
    background-image: url(../img/SVG/HollowCircle.svg);
    background-size: 40%;
    background-position: 0 6%;
    background-repeat: no-repeat;
    pointer-events: none;
}

.products .pbox.active:after {
    left: 0%;
    transition: all .6s ease;
    background-size: 30%;
    background-position: 41% 32%;
    opacity: 0.25;
}

.products .pbox[num="2"]::after {
    top: -1px;
    left: -9px;
    background-image: url(../img/SVG/ConcentricCircles.svg);
    background-size: 50%;
    background-position: 0 6%;
}

.products .pbox[num="2"].active:after {
    left: -51%;
    transition: all .6s ease;
    background-size: 72%;
    background-position: 69% 30%;
}

.products .pbox[num="3"]::after {
    top: 76px;
    left: -85px;
    background-image: url(../img/SVG/SolidPoint.svg);
    background-size: 44%;
    background-position: 0 6%;
}

.products .pbox[num="3"].active:after {
    top: -31%;
    left: 6%;
    transition: all .6s ease;
    background-size: 40%;
    background-position: 10% 75%;
}

.products .pbox[num="4"]:before {
    border-right: none;
}

.products .pbox[num="4"].active:before {
    border-right: 1px solid #8A6E2F;
}

.products .pbox[num="4"]:after {
    top: -2%;
    left: -15%;
    background-image: url(../img/SVG/Cube.svg);
    background-size: 54%;
    background-position: 0 6%;
}

.products .pbox[num="4"].active:after {
    top: -45%;
    left: -15%;
    transition: all .6s ease;
    background-size: 60%;
    background-position: 10% 88%;
}

.products .pbox[num="2"].active img {
    margin: 11% -95px 0 -25%;
}

.products .pbox[num="3"].active img {
    margin: 11% -95px 0 40%;
}

.products .pbox[num="4"].active img {
    margin: 11% -95px 0 37%;
}

.products .pbox[num="5"].active img {
    margin: 11% -95px 0 252px;
}

.products .pbox[num="5"].active .info {
    margin-left: -31%;
    width: 300px;
    top: 7%;
}

.products .pbox[num="5"]::before {
    opacity: 0;
    border-right: none;
}

.products .pbox[num="5"]::after {
    width: 830px;
    top: -146px;
    left: -105%;
    background-image: url(../img/SVG/curve000.svg);
    background-size: 140%;
    background-position: 0 64%;
}

.products .pbox[num="5"].active:after {
    top: -3%;
    left: -2%;
    transition: all .6s ease;
    background-size: 100%;
    background-position: 10% 100%;
}

.products .pbox.active:before {
    width: 830px;
    margin-left: -80%;
    z-index: -1;
}

.products .pbox[num="2"].active:before,
.products .pbox[num="3"].active:before,
.products .pbox[num="4"].active:before {
    margin-left: -90%;
}

.products .pbox[num="5"].active:before {
    opacity: 1;
    margin-left: -73%;
    border-right: none;
}

.products .pbox.active .SensingArea {
    width: 830px;
    margin-left: 10.5%;
    z-index: 3;
}

.products .info {
    position: absolute;
    top: 10%;
    left: 43%;
    width: 300px;
    transform: translateX(-75%);
    padding: 15px;
    text-align: center;
    transition: all .3s ease;
    z-index: -1;
}

@media (max-width: 1800px) {
    .products .info {
        border-radius: 10px;
        /* background-color: rgb(255 255 255 / 50%);
        backdrop-filter: blur(3px); */
    }
}

.products .pbox.active .info {
    z-index: 3;
    top: 12%;
    transform: translateX(-30%);
}

.products .pbox[num="1"].active .info {
    transform: translateX(3%);
}

.products .pbox[num="3"].active .info {
    top: 7%;
    transform: translateX(-113%);
}

.products .pbox[num="4"].active .info {
    top: 7%;
    transform: translateX(-113%);
}

.products .info h4 {
    color: #333;
    font-size: 32px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .3s ease;
    font-weight: bold;
}

.products .pbox.active .info h4 {
    font-size: 32px;
    position: relative;
}

.products .info h4::before {
    content: '';
    width: 15px;
    height: 15px;
    background: url(../img/SVG/adornTopleft2.svg) center center no-repeat;
    position: absolute;
    top: 25px;
    left: 0;
    opacity: 0;
}

.products .info h4::after {
    content: '';
    width: 15px;
    height: 15px;
    background: url(../img/SVG/adornTopright2.svg) center center no-repeat;
    position: absolute;
    top: 25px;
    right: 0;
    opacity: 0;
}

.products .pbox.active .info h4::before {
    top: 14px;
    left: -26px;
    opacity: 1;
}

.products .pbox.active .info h4::after {
    top: 14px;
    right: -26px;
    opacity: 1;
}

.products .info .text {
    color: #333;
    font-size: 16px;
    transition: all .3s ease;
    font-weight: bold;
    opacity: 0;
    text-align: left;
    width: 110%;
    margin-left: 0;
}

.products .info .text-muted {
    color: #333 !important;
    font-size: 21px;
    transition: all .3s ease;
    font-weight: bold;
    opacity: 0;
}

.products .info .more2 {
    opacity: 0;
}

.products .pbox.active .info .text {
    opacity: 1;
}
.products .pbox.active .info .text-muted {
    opacity: 1;
    margin-right: 50px;
}
.products .pbox.active .info .more2 {
    opacity: 1;
    margin-right: 50px;
}

.products .info .icons {
    width: 240px;
    height: 55px;
    padding: 8px 0 0;
    margin: 10px auto 10px;
    text-align: center;
    border-top: 1px solid #8A6E2F;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    flex-direction: row;
    transition: all .3s ease;
    opacity: 0;
    max-height: 45px;
    overflow: hidden;
}

.products .info .icons img {
    width: 35px;
    height: 35px;
    margin-left: 0;
    transform: scale(100%);
    margin-left: 0 !important;
}

.products .pbox.active .info .icons {
    opacity: 1;
}

.products .responsive3 {
    overflow: hidden;
    touch-action: pan-y;
}

@media (max-width: 800px) {
    .products .responsive3 {
        overflow-x: auto;
        overflow-y: hidden;
        touch-action: auto;
        height: 520px;
    }
}

@media (max-width: 580px) {
    .products .responsive3 {
        height: 520px;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }
    .products .pbox.active img {
        height: 80%;
        margin-top: 15%;
    }
    .products .pboxs {
        width: calc(125% * 5);
    }
    .products .pbox {
        width: 100%;
    }
    .products .pbox.active {
        width: 125%;
    }
    .products .pbox.active:before {
        width: 125%;
    }
    .products .pbox[num="1"].active .info {
        transform: translateX(-30%);
        width: 250px;
    }
    .products .pbox[num="2"].active .info {
        transform: translateX(-50%);
        width: 250px;
    }
    .products .pbox[num="3"].active .info {
        transform: translateX(-88%);
        width: 250px;
    }
    .products .pbox[num="4"].active .info {
        transform: translateX(-70%);
        width: 250px;
    }
    .products .pbox[num="5"].active .info {
        transform: translateX(24%);
        width: 250px;
    }
    .products .pbox[num="2"].active img {
        margin-left: -10%;
    }
    .products .pbox[num="3"].active img {
        margin-left: 40%;
    }
    .products .pbox[num="4"].active img {
        margin-left: 52%;
    }
    .products .pbox[num="5"].active img {
        margin-left: 70%;
    }
    .products .pbox .info h4 {
        font-size: 26px;
    }
    .products .pbox.active .info h4 {
        font-size: 26px;
    }
    .products .pbox[num="5"].active:before {
        margin-left: -50%;
    }
    .products .pbox[num="2"].active:before, .products .pbox[num="3"].active:before {
        margin-left: -65%;
    }
    .products .pbox[num="3"].active:before {
        margin-left: -70%;
    }
    .products .pbox[num="4"].active:before {
        margin-left: -65%;
    }
    .products .pbox[num="2"].active:after {
        left: -26%;
    }
    .products .pbox.active .SensingArea {
        display: none;
    }
}

.latestNews .carousel-item {
    padding: 0 40px;
}

.latestNews .carousel-control-prev-icon {
    background-image: url(../img/SVG/Toleft3.svg);
    margin: -20px 0 0 -23px;
}

.latestNews .carousel-control-next-icon {
    background-image: url(../img/SVG/ToRight3.svg);
    margin: -20px -23px 0 0;
}

.latestNews .carousel-control-prev,
.latestNews .carousel-control-next {
    background: none;
}

.latestNews .carousel-control-prev {
    left: -17px;
}

.latestNews .carousel-control-next {
    right: -17px;
}

.latestNews .box {
    position: relative;
    border: 1px solid #8A6E2F;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 22px;
    text-align: center;
}

.latestNews .col-md-3 .box {
    max-height: 260px;
}

.latestNews .col-md-6 .box {
    max-height: 540px;
}

.latestNews .info {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 15px;
    width: 100%;
    height: 55px;
    background-color: rgb(255 255 255 / 60%);
    text-align: center;
    transition: all .5s ease;
    display: flex;
    align-items: center;
}

.latestNews .box:hover .info {
    padding: 15px;
    height: 75px;
    backdrop-filter: blur(3px);
    background-color: rgb(255 255 255 / 75%);
}

.latestNews .info.big {
    height: 55px;
    padding: 5px 15px;
    text-align: left;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
}

.latestNews .info.big .row div:first-child {
    width: 100% !important;
    text-align: center;
    transition: all .5s ease;
}

.latestNews .box:hover .info.big .row div:first-child {
    width: auto !important;
}

.latestNews .info.big .row div:last-child {
    opacity: 0;
    display: none;
}

.latestNews .box:hover .info.big .row div:last-child {
    opacity: 1;
    display: block;
}

.latestNews .box:hover .info.big {
    padding: 15px;
    height: 200px;
}

.latestNews .info::before {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../img/SVG/adornTopleft.svg) center center no-repeat;
    position: absolute;
    top: 10px;
    left: 10px;
    transition: all .5s ease;
}

.latestNews .info::after {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../img/SVG/adornTopright.svg) center center no-repeat;
    position: absolute;
    bottom: 10px;
    right: 10px;
    transition: all .5s ease;
}

.latestNews .box:hover .info.big::before {
    top: 15px;
    left: 15px;
}

.latestNews .box:hover .info.big::after {
    bottom: 15px;
    right: 15px;
}

.latestNews .info h4 {
    font-size: 26px;
    margin: 0 auto;
    color: #333;
    text-align: center;
}

.latestNews .info .text-muted,
.latestNews .info .text {
    font-size: 16px;
    font-weight: bold;
    color: #333 !important;
}

.latestNews .border1 {
    position: relative;
}

.latestNews .border1:before {
    content: '';
    width: 1px;
    height: 90%;
    background-color: #8A6E2F;
    position: absolute;
    left: -0.4vw;
    top: 5px;
}

.latestNews .carousel {
    max-width: 1808px;
    margin: 0 auto;
}

.latestNewsList {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 30px;
}

.latestNewsList .box {
    position: relative;
    border: 1px solid #8A6E2F;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 22px;
    text-align: center;
    height: 180px;
    cursor: pointer;
}

.latestNewsList .info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 5px 15px;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    background-color: rgb(255 255 255 / 60%);
    text-align: center;
    transition: all .5s ease;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.latestNewsList .info h4 {
    font-size: 30px;
    font-weight: 500;
    transition: all 1s ease;
}

.latestNewsList .box:hover .info h4 {
    font-size: 32px;
    font-weight: bold;
}

.latestNewsList .box:hover .info {
    backdrop-filter: blur(3px);
    background-color: rgb(255 255 255 / 75%);
}

.latestNewsList .info::before {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../img/SVG/adornTopleft.svg) center center no-repeat;
    position: absolute;
    top: 10px;
    left: 10px;
    transition: all 1s ease;
}

.latestNewsList .info::after {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../img/SVG/adornTopright.svg) center center no-repeat;
    position: absolute;
    bottom: 10px;
    right: 10px;
    transition: all 1s ease;
}

.latestNewsList .box:hover .info::before {
    top: 20px;
    left: 20px;
}

.latestNewsList .box:hover .info::after {
    bottom: 20px;
    right: 20px;
}

@media (max-width: 1400px) {
    .latestNewsList {
        justify-content: space-evenly;
        flex-wrap: wrap;
        flex-direction: row;
    }
}

@media (max-width: 1200px) {
    .latestNews .info h4 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .latestNewsList .info h4 {
        font-size: 22px;
    }

    .latestNewsList .box:hover .info h4 {
        font-size: 28px;
    }
}

@media (max-width: 580px) {
    .latestNews .info.big {
        height: 55x;
    }
    .latestNews .info .text-muted, .latestNews .info .text {
        font-size: 14px;
    }
}

.eventHighlights .time {
    text-align: center;
    width: auto;
    padding: 4px 15px 4px 70px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    float: left;
    transition: all .3s ease;
}

.eventHighlights .card.first:hover .time {
    padding: 16px 70px 4px 15px;
}

.eventHighlights .border1 {
    position: relative;
    float: left;
    padding: 0 20px;
    transition: all .3s ease;
    border-left: 1px solid #8A6E2F;
    display: table-cell;
    width: 70%;
}

.eventHighlights .border1::before {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../img/SVG/adornTopleft.svg) center center no-repeat;
    position: absolute;
    top: 20px;
    left: 30px;
    transition: all .5s ease;
    opacity: 0;
}

.eventHighlights .card.first:hover .border1::before {
    top: 0;
    left: 10px;
    opacity: 1;
}

.eventHighlights .card-body::after {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../img/SVG/adornTopright.svg) center center no-repeat;
    position: absolute;
    bottom: 30px;
    right: 30px;
    transition: all .5s ease;
    opacity: 0;
}

.eventHighlights .card.first:hover .card-body::after {
    opacity: 1;
    bottom: 10px;
    right: 10px;
}

.eventHighlights .card.first:hover .border1 {
    padding: 5px 15px;
}

.eventHighlights .year {
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    text-align: left;
    float: left;
    opacity: 0;
    margin: -25px 0 0;
    transition: all .3s ease;
}

.eventHighlights .card.first:hover .year {
    margin: 0;
    opacity: 1;
}

.eventHighlights .times {
    font-size: 34px;
    font-weight: 900;
    white-space: nowrap;
    letter-spacing: 0.23em;
    display: inline-block;
    line-height: 0.8em;
}

.eventHighlights .card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #8A6E2F;
    cursor: pointer;
    margin-bottom: 1.7vw;
}

.eventHighlights .card.first img {
    height: 28.8vw;
}

.eventHighlights .card-body {
    position: absolute;
    height: 80px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background-color: rgb(255 255 255 / 50%);
    padding: 22px;
    transition: all .3s ease;
}

.eventHighlights .card.first:hover .card-body {
    height: 120px;
    background-color: rgb(255 255 255 / 100%);
    padding: 10px 22px;
}

.eventHighlights .card-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0;
}

.eventHighlights .card-text {
    font-size: 12px;
    font-weight: 500;
    margin-top: -33px;
    margin-bottom: 10px;
    opacity: 0;
    transition: all .3s ease;
}

.eventHighlights .card.first:hover .card-text {
    margin-top: 5px;
    opacity: 1;
}

.eventHighlights .card.first:hover .card-text .text-muted {
    display: block;
}

.eventHighlights .smallEvent .year {
    opacity: 0;
    margin: -27px 0 0 20px;
    transition: all .3s ease;
}

.eventHighlights .smallEvent .card:hover .year {
    opacity: 1;
    margin: 0;
}

.eventHighlights .smallEvent .times {
    font-size: 28px;
    letter-spacing: 0.03em;
}

.eventHighlights .smallEvent .card-title {
    font-size: 18px;
    white-space: nowrap;
    transition: all .3s ease;
}

.eventHighlights .smallEvent .card:hover .card-title {
    padding: 20px 0;
}

.eventHighlights .smallEvent .card-body {
    padding: 10px;
    display: flex;
    height: 40px;
}

.eventHighlights .smallEvent .card:hover .card-body {
    height: 80px;
    background-color: #fff;
}

.eventHighlights .smallEvent .border1 {
    padding: 0 10px;
}

.eventHighlights .smallEvent .card-text,
.eventHighlights .smallEvent .text-muted {
    display: none;
}

.eventHighlights .smallEvent img {
    height: 8.4vw;
}

.eventHighlights .smallEvent .time {
    width: auto;
    padding: 0 10px 4px 0;
}

@media (min-width: 1920px) {
    .eventHighlights .smallEvent img {
        height: 8.45vw;
    }
}

@media (max-width: 1400px) {
    .eventHighlights .times {
        letter-spacing: 0.05em;
        line-height: 0.8em;
    }
    .eventHighlights .smallEvent img {
        height: auto;
    }
    .eventHighlights .card {
        margin-bottom: 30px;
    }
    .eventHighlights .card.first img {
        height: auto;
    }
    .eventHighlights .smallEvent {
        display: flex;
        gap: 30px;
    }
    .eventHighlights .border1 {
        flex-grow: 2;
    }
}

@media (max-width: 992px) {
    .eventHighlights .time {
        margin: 0 auto 15px;
    }
    .eventHighlights .card-title {
        font-size: 26px;
    }
    .eventHighlights .smallEvent .card-text,
    .eventHighlights .smallEvent .text-muted {
        display: block;
    }
    .eventHighlights .smallEvent {
        gap: 0;
        flex-direction: column;
    }
    .eventHighlights .time {
        padding: 4px 15px 4px 10px;
    }
}

@media (max-width: 575px) {
    .eventHighlights .border1:before {
        width: 95%;
        height: 1px;
        left: 50%;
        transform: translateX(-50%);
        top: -8px;
    }
    .eventHighlights .times {
        font-size: 24px;
        letter-spacing: 0.03em;
        padding: 4px 5px;
    }
    .eventHighlights .smallEvent .times {
        font-size: 24px;
        letter-spacing: 0.03em;
        padding: 4px 5px;
    }
    .eventHighlights .year {
        margin: -28px 0 0;
    }
    .eventHighlights .smallEvent .year {
        margin: -29px 0 0;
    }
    .eventHighlights .card-title {
        font-size: 18px;
    }
    .eventHighlights .card-body {
        padding: 10px;
        height: 50px;
    }
    .eventHighlights .card.first:hover .time {
        padding: 16px 10px 4px 10px;
    }
    .eventHighlights .card.first:hover .card-body {
        padding: 10px 5px;
    }
    .eventHighlights .card.first:hover .card-text .text-muted {
        display: inline;
        float: right;
    }
    .eventHighlights .border1 {
        padding: 4px 10px;
    }
    .eventHighlights .card.first:hover .border1 {
        padding: 0 15px;
    }
    .eventHighlights .card:hover .year {
        margin: 0 0 0 5px !important;
    }
}

.about_img {
    text-align: center;
    margin: 20px auto;
}

.about_img img {
    width: 100%;
}

.about_text {
    font-weight: bold;
    line-height: 2em;
    letter-spacing: 2px;
    text-align: left;
    font-size: 20px;
    color: #3f3f3f;
}

.title1.about {
    font-size: 46px;
    margin: 40px auto;
}

.slick-slide img {
    max-width: 238px;
    transition: all 1s ease;
}

.responsive .slick-slide img {
    max-width: 320px;
}

.responsive4 .slick-slide img {
    max-width: 300px;
}

.slick-slide a:hover img {
    transform: scale(1);
    transform-origin: 50% 100%;
}

.slick-prev:before {
    content: ' ';
    background-image: url(../img/SVG/Toleft2.svg);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center center;
}

.slick-next:before {
    content: ' ';
    background-image: url(../img/SVG/ToRight2.svg);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center center;
}

.slick-prev:before,
.slick-next:before {
    background-color: transparent;
    border-radius: 50%;
    line-height: 35px;
    height: 80px;
    width: 80px;
    display: block;
    border: 2px solid transparent;
    transition: all .3s ease;
}

.slick-prev {
    left: -30px;
}

.slick-next {
    right: 30px;
}

.famousWinery .slick-prev {
    left: -15px;
}

.famousWinery .slick-next {
    right: 48px;
}

.famousWinery .slick-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
}

.slick-initialized .slick-slide {
    text-align: left;
    position: relative;
}

.slick-initialized .slick-slide a {
    border: 1px solid #d2d2d2;
    width: 240px;
    max-width: 240px;
    text-decoration: none;
    color: #333;
    display: block;
    position: relative;
    transition: all .3s ease;
    margin: 0 auto 30px;
    overflow: hidden;
}

.slick-initialized.responsive .slick-slide a {
    width: 320px;
    max-width: 320px;
}

.slick-initialized.responsive4 .slick-slide a {
    width: 300px;
    max-width: 300px;
    border-radius: 10px;
}

.slick-initialized .slick-slide a:hover {
    border: 1px solid #ba9736;
    box-shadow: 0 10px 20px -10px rgb(0 0 0 / 30%);
}

.slick-initialized .slick-slide h4 {
    padding: 15px;
    margin: 0 auto 5px;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all .3s ease;
}

.slick-initialized.responsive4 .slick-slide h4 {
    padding: 15px 15px 15px 20%;
}

.slick-initialized .slick-slide h4:after {
    content: '';
    width: 50%;
    height: 1px;
    position: absolute;
    background-color: #ba9736;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all .5s ease;
}

.slick-initialized.responsive4 .slick-slide h4:after {
    display: none;
}

.slick-initialized .slick-slide span {
    display: block;
    padding: 15px;
    margin: 0 auto 15px;
    max-width: 240px;
    font-size: 15px;
    max-height: 41px;
    overflow: hidden;
    transition: all .3s ease;
}

.slick-initialized.responsive4 .slick-slide span {
    padding: 15px;
    max-width: 300px;
}

.slick-initialized .slick-slide p.desc {
    display: block;
    padding: 0 15px;
    margin: 0 auto 15px;
    max-width: 240px;
    font-size: 15px;
    transition: all .3s ease;
    color: #666;
    min-height: 86px;
    max-height: 86px;
    overflow: hidden;
}

.slick-initialized.responsive .slick-slide p.desc {
    max-width: 320px;
}

.slick-initialized.responsive2 .slick-slide p.desc {
    padding: 0;
}

.slick-initialized.responsive4 .slick-slide p.desc {
    padding: 0 15px 0 20%;
    max-width: 300px;
}

.slick-initialized.news .slick-slide a {
    border-color: #9d1351;
}

.slick-initialized.news .slick-slide h4:after {
    background-color: #9d1351;
}

.slick-initialized.responsive2 .slick-slide a img {
    float: left;
    width: 50%;
    border-width: 23px 0;
    margin: 22px 0 0 0;
}

.slick-initialized.responsive2 .slick-slide a h4 {
    width: 50%;
}

.slick-initialized.responsive2 .slick-slide a span {
    width: 50%;
}

.slick-initialized.responsive2 .slick-slide a p.desc {
    width: 50%;
}

.slick-initialized .slick-slide:hover h4:after {
    height: 1px;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    color: #333;
}

.slick-initialized .slick-slide i.times {
    position: absolute;
    top: 0;
    font-size: 13px;
    background-color: #280050;
    color: #fff;
    padding: 5px 10px;
    transition: all .3s ease;
    transform: translateX(calc(240px - 453%));
    right: 50%;
}

.slick-initialized.responsive .slick-slide i.times {
    transform: translateX(calc(320px - 176%));
}

.slick-initialized.responsive4 .slick-slide i.times {
    transform: translateX(calc(300px - 870%));
    background-color: transparent;
    text-align: center;
    color: #333;
    font-style: normal;
    font-weight: bold;
    bottom: 78px;
    top: auto;
    right: auto;
    left: 50%;
    font-size: 26px;
}

.slick-initialized.responsive4 .slick-slide i.times .year {
    color: #b69949;
    padding: 0;
    margin: 0;
    font-size: 13px;
    font-weight: normal;
}

.slick-initialized.responsive4 .slick-slide i.times .month {
    color: #7641ab;
    font-size: 14px;
    font-weight: bold;
    padding: 0;
    margin: 0;
}

.slick-initialized .slick-slide:hover i.times {
    background-color: #ba9736;
    color: #333;
}

.slick-initialized.responsive4 .slick-slide:hover i.times {
    background-color: transparent;
}

.slick-initialized.news .slick-slide:hover i.times {
    background-color: #9d1351;
    color: #fff;
}

.slick-initialized.responsive2 .slick-slide .Winery_info {
    background-color: #eee;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto 30px;
    padding: 30px;
}

@media (max-width:1200px) {
    .slick-initialized.responsive2 .slick-slide .Winery_info .bg-white {
        margin: 0 auto 30px;
    }
}

.slick-initialized.responsive2 .slick-slide .Winery_info .Winery_img {
    max-width: 100%;
}

.responsive2 .slick-slide .Winery_info a.box {
    width: 100%;
    max-width: 100%;
    background-color: rgb(255 255 255 / 70%);
    padding: 10px 20px 10px;
    border: none;
    box-shadow: none;
    backdrop-filter: blur(5px);
    transition: all .3s ease;
    display: block;
    margin: 0 auto 35px
}

.responsive2 .slick-slide .Winery_info a.box:hover {
    background-color: rgb(255 255 255 / 100%);
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.35);
}

.slick-initialized.responsive2 .slick-slide .Winery_info a h4 {
    width: 100%;
    max-width: 100%;
    font-size: 30px;
    color: #40054b;
}

.slick-initialized.responsive2 .slick-slide .Winery_info a h4:after {
    width: 94%;
    max-height: 1px;
    background-color: #666;
}

.slick-initialized.responsive2 .slick-slide .Winery_info a span {
    width: 100%;
    max-width: 100%;
    padding: 15px;
    color: #333;
    font-size: 18px;
    margin-bottom: 0;
}

.slick-initialized.responsive2 .slick-slide .Winery_info a p.desc {
    width: 100%;
    max-width: 100%;
    padding: 15px;
    color: #444;
    font-size: 16px;
    max-height: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}

.slick-initialized.responsive2 .slick-slide .Winery_info a.box p.desc {
    max-height: none;
    overflow: visible;
}

.slick-initialized.responsive2 .slick-slide .Winery_info a .wmore {
    padding: 2px 25px;
    color: #fff;
    background-color: #40054b;
    font-size: 16px;
    float: right;
    margin-top: 10px;
}

.slick-initialized.responsive2 .slick-slide .Winery_info a .wmore:hover {
    background-color: #000;
}

.slick-initialized.responsive2 .slick-slide .Winery_info .products {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
}

.slick-initialized.responsive2 .slick-slide .Winery_info .products .prod a {
    padding-bottom: 15px;
    background-color: rgb(255 255 255 / 70%);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    margin-bottom: 0;
}

.slick-initialized.responsive2 .slick-slide .Winery_info .products .prod a:hover {
    background-color: rgb(255 255 255 / 100%);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.slick-initialized.responsive2 .slick-slide .Winery_info .products .prod img {
    width: 90%;
    margin: 10px auto 0;
    float: none;
}

.slick-initialized.responsive2 .slick-slide .Winery_info .products .prod h4 {
    font-size: 20px;
}

.slick-initialized.responsive2 .slick-slide .Winery_info .products .prod .subtitle {
    font-size: 16px;
}

.slick-initialized.responsive2 .slick-slide .Winery_info .products .prod p.desc {
    font-size: 14px;
    line-height: 1.8;
    display: none;
}

.title1 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    color: #b69949;
    position: relative;
    margin: 30px auto;
}

.title1::before {
    content: '';
    width: 35%;
    font-size: 0;
    height: .5px;
    line-height: 1px;
    position: absolute;
    background-color: #b69949;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.title1::after {
    content: '';
    width: 35%;
    font-size: 0;
    height: .5px;
    line-height: 1px;
    position: absolute;
    background-color: #b69949;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.title1.news {
    color: #9d1351;
}

.title1.news::before {
    background-color: #9d1351;
}

.title1.news::after {
    background-color: #9d1351;
}

.title2 {
    padding-bottom: 15px;
    position: relative;
    margin: 0 auto 20px;
    width: 80%;
    max-width: 315px;
    text-align: center;
}

.home .title2 {
    background-color: rgb(255 255 255 / 70%);
    backdrop-filter: blur(1px);
}

.title2.white {
    background-color: transparent;
}

.title2 .cht {
    color: #8A6E2F;
    font-size: 40px;
    font-weight: bold;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
}

.title2 .eng {
    color: #8A6E2F;
    font-size: 15px;
    font-weight: 700;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    display: block;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    margin: 15px 0;
    letter-spacing: 0.4em;
}

.title2.white .cht,
.title2.white .eng {
    color: #fff;
}

.title2.dark .cht,
.title2.dark .eng {
    color: #333;
    letter-spacing: 0.25em;
}

.title2 i {
    font-style: normal;
}

.title2.noafter {
    width: 250px;
    white-space: nowrap;
    padding-top: 120px;
    margin-left: 60px;
}

.mapInfo .title2.noafter {
    margin-top: 0;
    padding: 0;
}

.title2.noafter:after {
    display: none;
}

@media (max-width: 992px) {
    .title2 {
        max-width: 300px;
    }
    .title2 .cht {
        font-size: 5vw;
    }
    .title2 .eng {
        font-size: 1.85vw;
    }
    .title2.noafter {
        width: 150px;
        margin-left: 60px;
    }
}

@media (max-width: 768px) {
    .slick-slide img {
        max-width: 125px;
    }
}

@media (max-width: 580px) {
    .title2 {
        max-width: 250px;
    }
    .title2 .cht {
        font-size: 7vw;
    }
    .famousWinery .bottle {
        min-width: 300px;
    }
}

.title2::before {
    content: '';
    width: 30px;
    height: 30px;
    position: absolute;
    background: url(../img/SVG/adornleft.svg) no-repeat center center;
    top: 50%;
    left: 0;
    transform: translate(-60px, -50%);
}

.title2.noafter::before {
    margin-top: 58px;
}

.title2::after {
    content: '';
    width: 30px;
    height: 30px;
    line-height: 1px;
    position: absolute;
    background: url(../img/SVG/adornRight.svg) no-repeat center center;
    top: 50%;
    right: 0;
    transform: translate(60px, -50%);
}

.title2.white::before {
    background: url(../img/SVG/adornleft_w.svg) no-repeat center center;
}

.title2.white::after {
    background: url(../img/SVG/adornRight_w.svg) no-repeat center center;
}

.title2.news {
    color: #9d1351;
}

.title2.news::before {
    background: linear-gradient(to right, #9d1351 0%, #9d135100 80%);
}

.title2.news::after {
    background: linear-gradient(to right, #9d1351 0%, #9d135100 80%);
}

.text-brown {
    color: #612c0f !important;
}

.btn-purple {
    color: #fff;
    background-color: #672a72;
    border-color: #8e479b;
}

.btn-purple:hover {
    color: #fff;
    background-color: #5a0e68;
    border-color: #40054b;
}

.btn-secondary {
    color: #fff;
    background-color: #9e9e9e;
    border-color: #9e9e9e;
}

#LoginModal .nav-tabs .nav-item .nav-link {
    color: #d2d2d2;
    background-color: #fafafa;
    border-color: #eee;
    border-top: 3px solid #eee;
}

#LoginModal .nav-tabs .nav-item.show .nav-link,
#LoginModal .nav-tabs .nav-link.active {
    color: #706e6c;
    background-color: #fff;
    border-color: #eee #eee #fff;
    border-top: 3px solid #612c0f;
}

#LoginModal .tab-content {
    padding: 50px 15px;
    border: 1px solid #eee;
    border-top: none;
}

#LoginModal .tab-area-left input {
    border: 0;
    outline: none;
    color: #5e3b25;
    letter-spacing: 1px;
    border-bottom: 1px solid #ccc;
}

#LoginModal .tab-area-left label {
    display: none;
}

#LoginModal input[type=button] {
    margin-top: 10px;
    border-radius: 5px;
    background-color: #5e3b25;
    color: #fff;
    cursor: pointer;
}

::placeholder {
    color: #c2c2c2 !important;
    opacity: 1;
}

#LoginModal .tab-area-left input::placeholder {
    color: #ccc;
}

#LoginModal .btn-link {
    color: #5e3b25;
    text-decoration: none;
    padding: 0 5px;
}

#LoginModal .btn-link:hover {
    color: #391e0e;
    border-bottom: 1px solid;
    border-radius: 0;
}

#LoginModal .login_fb {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    margin: 0 auto 25px auto;
    background-color: #3b5998;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
    padding: 0 15px;
}

.product_list h3 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
}

.product_list h5 {
    font-size: 14px;
    margin-top: 15px;
    text-align: center;
}

.product_list .Page.navigation {
    margin: 65px auto;
}

.product_list [data-pagination-wrapper] {
    margin-top: 32px;
}

nav[aria-label="Page navigation"] {
    display: inline-block;
    transform: scale(1.1);
}

.product_list .pagination {
    justify-content: center;
    position: relative;
    gap: 5px;
}

.pagination-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    border: 2px solid #8A6E2F;
    border-radius: 10px;
    pointer-events: none;
    z-index: 9;
    transition: left 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product_list .page-item {
    height: 25px;
    width: 25px;
    margin: 0 5px;
}

.product_list .page-link {
    color: #8A6E2F;
    border: none;
    font-weight: 500;
    font-size: 18px;
    padding: 0;
    height: 25px;
    width: 25px;
    text-align: center;
    line-height: 25px !important;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-items: center;
}

.product_list .page-link:hover,
.product_list .page-link.active {
    color: #8A6E2F;
    border: 2px solid transparent;
    background-color: #fff;
    border-radius: 10px;
}

.page-link:focus {
    box-shadow: none;
    background-color: rgb(138 110 47 / 10%);
}

.product_list .page-item:first-child .page-link:hover,
.product_list .page-item:last-child .page-link:hover,
.product_list .page-item:first-child .page-link.active,
.product_list .page-item:last-child .page-link.active {
    border: 1px solid transparent;
}

.product_list .page-link img,
.product_list .page-link:hover img {
    width: 25px !important;
    height: 25px !important;
}

.feature a h4 {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-top: 5px;
    padding: 0 15px 15px;
    width: 100%;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all .3s ease;
}

.feature a h4:after {
    content: '';
    width: 120px;
    height: 1px;
    position: absolute;
    background-color: #8A6E2F;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all .5s ease;
}

.feature a:hover h4 {
    color: #333;
}

.feature a p {
    text-align: center;
    font-size: 16px;
    color: #333;
    line-height: 1.5em;
    margin-bottom: 0;
}

@keyframes show_feature {
    0% {
        transform: translateX(-300px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.feature {
    opacity: 0;
}

.feature.show {
    transform: translateX(-300px);
    animation-name: show_feature;
    animation-duration: .8s;
    animation-iteration-count:inherit;
    animation-timing-function: ease;
    animation-fill-mode: both;
}

.feature a {
    backdrop-filter: blur(1px);
    background-color: rgb(255 255 255 / 80%);
    border: 1px solid rgb(138 110 47 / 25%);
    border-width: 0 1px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    width: 100%;
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
}

.feature a:hover {
    border: 1px solid #8A6E2F;
    backdrop-filter: blur(2px);
    background-color: rgb(255 255 255 / 60%);
    box-shadow: 0 0 20px rgb(138 111 47 / 35%);
}

.feature a img {
    transition: all 0.3s ease;
    transform-origin: 50% 100%;
    margin: 30px auto 10px;
    max-height: 340px;
}

.feature a:hover img {
    transform: scale(1.05);
}

.feature .price {
    font-size: 13px;
    color: #333;
    text-align: right;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 2px;
    margin-bottom: 10px;
}

.feature .stext {
    font-size: 13px;
    color: #333;
    display: none;
}

.feature .original_price {
    font-size: 16px;
    font-family: 'Century Gothic';
    color: #888;
    text-align: right;
    text-decoration: line-through;
    font-weight: normal;
    margin: 0 10px 0 0;
    display: none;
}

.feature .current_price {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    margin: 0 0 0 2px;
    color: #8A6E2F;
}

.feature a:hover .price,
.feature a:hover .current_price {
    color: #8A6E2F;
}

#shopCart {
    display: none;
    border: 1px solid #ccc;
    padding: 10px;
    position: absolute;
    width: 380px;
    right: 12px;
    background-color: #fff;
    box-shadow: 0 15px 25px -15px rgb(0 0 0 / 30%);
    z-index: 9;
}

#shopCartBtn {
    cursor: pointer;
}

#shopCart:hover {
    display: block;
}

#shopCart .btnBar {
    text-align: right;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

#shopCart .cartList {
    max-height: 350px;
}

.productList {
    border: 1px solid #ccc;
}

.productList .product {
    display: flex;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.productList .product.text {
    border: 1px solid #fff;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
}

.productList .product:last-child {
    border-bottom: none;
}

.productList .product.text {
    background-color: #fff;
    padding: 2px 0;
}

.productList .product .pimg {
    width: 15%;
    padding: 5px;
}

.productList .product .quantity {
    width: 10%;
    padding: 5px;
    white-space: nowrap;
}

.productList .product .title {
    width: 50%;
    padding: 0 5px;
}

.productList .product.text .price {
    color: #212529;
}

.productList .product .price {
    width: 25%;
    font-family: 'Century Gothic';
    color: #af4099;
    text-align: right;
    padding: 0 5px;
}

.productList .product .price span {
    font-weight: bold;
    font-size: 1.3em;
}

.bd-aside a {
    padding: 0.2rem 0.5rem;
    margin-top: 0.125rem;
    margin-left: 0;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    overflow: hidden;
}

.bd-aside a:hover,
.bd-aside a:focus {
    color: rgba(0, 0, 0, .85);
    background-color: rgb(152 103 225 / 30%);
}

.bd-aside .active {
    font-weight: 600;
    color: rgba(0, 0, 0, .85);
}

.bd-aside .btn {
    padding: .25rem .5rem .25rem .25rem;
    font-weight: 600;
    color: rgba(0, 0, 0, .65);
    border: 0;
    text-align: left;
}

.bd-aside .btn:hover,
.bd-aside .btn:focus {
    color: rgba(0, 0, 0, .85);
    background-color: rgb(152 103 225 / 10%);
}

.bd-aside .btn:focus {
    box-shadow: 0 0 0 1px #7952b3b3;
}

.bd-aside .btn::before {
    width: 1.25em;
    line-height: 0;
    content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
    transition: transform .35s ease;
    transform-origin: .5em 50%;
    transform: scale(.65);
}

.bd-aside .btn[aria-expanded="true"]::before {
    transform: rotate(90deg) scale(.65);
}

.sale_news {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sale_news li {
    background: transparent url(data:image/gif;base64,R0lGODlhBAAFAIAAAP///01JSiH5BAAAAAAALAAAAAAEAAUAAAIGRICWygcFADs=) no-repeat 0 9px;
    background-position: 0 12px;
}

.sale_news .snews {
    font-size: 13px;
    color: #8A6E2F;
    padding: 5px 5px 5px 10px;
    border-radius: 7px;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    overflow: hidden;
}

.news .sale_news .snews {
    font-size: 15px;
}

.product_image .showimg {
    width: 100%;
    height: 587px;
    max-height: 100%;
    background-color: rgb(255 255 255 / 25%);
    backdrop-filter: blur(2px);
    text-align: center;
    margin: 0 auto;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

#productImg {
    width: auto;
    height: 680px;
    max-height: 100%;
}

.alb_list {
    width: 100%;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 30px 0 0;
    background-color: #fff;
}

.alb_list .alb_item {
    width: 130px;
    height: 130px;
    border-radius: 0;
    border: 1px solid rgb(0 0 0 / 20%);
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    transition: all .3s ease;
}

.alb_list .alb_item:hover,
.alb_list .alb_item.active {
    cursor: zoom-in;
    border: 1px solid rgb(212 175 55 / 100%);
}

.alb_list .alb_item img {
    width: fit-content;
    height: 130px;
}

.product_info .product_image .showimg {
    align-items: center;
    background-color: transparent;
    border-radius: 0;
}

.product_info #productImg {
    width: 100%;
    height: 520px;
    max-height: 100%;
    object-fit: contain;
}

.product_info .alb_list {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    background-color: transparent;
}

.product_info .alb_list .alb_item {
    width: calc((100% - 48px) / 5);
    height: 96px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product_info .alb_list .alb_item img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product_info .message .wineryname a {
    color: inherit;
    text-decoration: none;
}

.product_info .message .wineryname a:hover {
    color: #8A6E2F;
}

.tab-content .tab-pane img {
    text-align: center;
    margin: 10px auto 30px;
}

.tab-content .tab-pane p {
    text-align: left;
    margin: 10px auto 30px;
}

.addcart .input-group-text {
    color: #999;
    background-color: #eee;
    height: 38px;
}

.addcart .number {
    max-width: 50px;
    text-align: center;
    font-size: 16px;
    font-family: 'Century Gothic';
    height: 38px;
}

.addcart .minus {
    cursor: pointer;
}

.addcart .plus {
    cursor: pointer;
    border-radius: 0;
    font-size: 18px;
}

.addcart .input-group-text:hover {
    background-color: #8A6E2F;
    color: #fff;
}

#productTab {
    margin: 50px auto;
}

#productTab .nav {
    justify-content: center;
}

#productTab .nav-tabs .nav-item .nav-link {
    color: #999;
    background-color: #fafafa;
    border-color: #eee #eee transparent #eee;
    border-top: 7px solid #eee;
    border-radius: 10px 10px 0 0;
    transition: all .3s ease;
}

#productTab .nav-tabs .nav-item .nav-link:hover {
    color: #672a72;
    border-color: #eee #9d63a7 transparent #9d63a7;
    border-top: 7px solid #9d63a7;
}

#productTab .nav-tabs .nav-item.show .nav-link,
#productTab .nav-tabs .nav-link.active {
    color: #672a72;
    background-color: #fff;
    border-color: #672a72 #672a72 #fff;
    border-top: 7px solid #672a72;
    width: 200px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 3px 0 rgb(255 255 255);
}

#productTab .tab-content {
    padding: 50px 30px;
    border: 1px solid #672a72;
    box-shadow: 0 5px 15px rgb(0 0 0 / 5%);
    transition: all .3s ease;
}

.pageTitle {
    font-weight: bold;
    font-size: 25px;
    margin: 50px 0 20px;
    text-indent: 1.5em;
    position: relative;
}

.pageTitle .bi {
    transform: translate(-88px, -5px) scale(1.15);
    position: absolute;
    left: 0;
    transform-origin: 0 0;
    color: #bababa;
}

.pageTitle .bi.rotate {
    transform: rotate(348deg) translate(-88px, -2px) scale(1.15);
}

.newslist {
    margin: 20px;
}

.newslist .card {
    color: #333;
    text-decoration: none;
    box-shadow: 0 .125rem .25rem rgb(0 0 0 / 7.5%);
    transition: all .3s ease;
    overflow: hidden;
    border: 2px solid #8A6E2F;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    transition: all .3s ease;
}

.newslist .card img {
    width: 100%;
    order: 1;
    transform-origin: 50% 100%;
}

.newslist .card:hover {
    color: #333;
    box-shadow: 0 15px 15px -10px rgba(81, 19, 0, 0.5);
}

.newslist .card-body {
    position: relative;
    transition: all .3s ease;
    padding: 30px;
    order: 2;
}

.newslist .card-body .noScroll {
    width: 100%;
    height: auto;
    overflow: visible;
    padding-right: 0;
}

.newslist .card-body::before {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../img/SVG/adornTopleft.svg) center center no-repeat;
    position: absolute;
    top: 10px;
    left: 10px;
    transition: all .5s ease;
}

.newslist .card-body::after {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../img/SVG/adornTopright.svg) center center no-repeat;
    position: absolute;
    bottom: 10px;
    right: 10px;
    transition: all .5s ease;
}

.newslist .card h3 {
    font-weight: bold;
    color: #333;
    font-size: 22px;
    line-height: 25px;
    margin: 10px 0;
    padding: 0 0 10px;
    position: relative;
    text-align: left;
    letter-spacing: 0.15em;
    text-overflow: ellipsis;
    width: 100%;

}

.newslist .card h3:after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    background-color: #8A6E2F;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.newslist .card .card-text {
    font-size: 16px;
    margin-bottom: 0;
    height: 175px;
    overflow-y: hidden;
}

.newslist .time {
    color: #8A6E2F;
    font-size: 16px;
    margin-bottom: 8px;
    line-height: 1.5em;
}

.newslist .time .times {
    color: #8A6E2F;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: normal;
    text-indent: 0;
}

.newslist a.more {
    margin: 10px auto -40px;
}

.news .slider {
    margin: 0 -30px;
}

.news .Winerys.slider .feature {
    opacity: 1;
    padding: 0 6px;
}

.news .Winerys.slider .feature a {
    background-color: rgb(255 255 255 / 92%);
    border: 1px solid rgb(138 110 47 / 35%);
    border-radius: 14px;
    padding-bottom: 18px;
}

.news .Winerys.slider .feature a img {
    width: auto;
    max-width: 78%;
    height: 310px;
    object-fit: contain;
    margin: 18px auto 10px;
}

.news .Winerys.slider .feature a h4 {
    padding: 0 18px 12px;
    margin-top: 0;
}

.news .Winerys.slider .feature a p {
    padding: 0 12px;
}

.news .slider .slick-prev:before {
    content: ' ';
    background-image: url(../img/SVG/Toleft3.svg);
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: center center;
    margin: -127%;
}

.news .slider .slick-next:before {
    content: ' ';
    background-image: url(../img/SVG/ToRight3.svg);
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: center center;
    margin: -127% 0 0 127%;
}

.news h2.blog-post-title {
    color: #872e06;
}

.news .blog-post p {
    line-height: 2em;
    font-size: 105%;
}

.news .slick-slide.card {
    color: #333;
    text-decoration: none;
    box-shadow: 0 .125rem .25rem rgb(0 0 0 / 7.5%);
    transition: all .3s ease;
    overflow: hidden;
    border: 2px solid #8A6E2F;
    border-radius: 10px;
    margin: 0 15px;
    display: flex;
    flex-direction: row;
    transition: all .3s ease;
}

.news .slick-slide.card img {
    width: 45%;
    max-width: 370px;
}

.news .slick-slide.card:hover {
    color: #333;
    box-shadow: 0 15px 15px -10px rgba(81, 19, 0, 0.5);
}

.news .slick-slide .card-body {
    position: relative;
    transition: all .3s ease;
    padding: 15px 30px;
}

.news .slick-slide .card-body .niceScroll {
    width: 100%;
    height: 350px;
    overflow: hidden;
    padding-right: 10px;
}

.news .slick-slide .card-body::before {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../img/SVG/adornTopleft.svg) center center no-repeat;
    position: absolute;
    top: 10px;
    left: 10px;
    transition: all .5s ease;
}

.news .slick-slide .card-body::after {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../img/SVG/adornTopright.svg) center center no-repeat;
    position: absolute;
    bottom: 10px;
    right: 10px;
    transition: all .5s ease;
}

.news .slick-slide.card h3 {
    color: #333;
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
    padding-bottom: 10px;
    position: relative;
    line-height: 1.5em;
    text-align: center;
}

.news .slick-slide.card h3:after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    background-color: #8A6E2F;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.news .slick-slide .card .card-text {
    font-size: 14px;
    margin-bottom: 0;
}

.news .slick-initialized .slick-slide .time span {
    color: #8A6E2F;
    font-size: 16px;
    letter-spacing: 0.25em;
    display: inline;
    padding: 0;
    margin: 0 auto;
    max-height: auto;
}

.eventlist {
    margin: 20px;
}

.eventlist .card {
    color: #333;
    text-decoration: none;
    box-shadow: 0 .125rem .25rem rgb(0 0 0 / 7.5%);
    transition: all .3s ease;
    overflow: hidden;
    border: 2px solid #8A6E2F;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    transition: all .3s ease;
}

.eventlist .card img {
    width: 49%;
    height: 395px;
    align-self: stretch;
    object-fit: cover;
    object-position: center center;
    transform-origin: 50% 100%;
}

.eventlist .card:hover {
    color: #333;
    box-shadow: 0 15px 15px -10px rgba(81, 19, 0, 0.5);
}

.eventlist .card-body {
    position: relative;
    transition: all .3s ease;
    padding: 30px 40px;
}

.eventlist .card-body .noScroll {
    width: 100%;
    height: auto;
    overflow: visible;
    padding-right: 0;
}

.eventlist .card-body .noScroll .card-text {
    height: 205px;
    overflow-y: hidden;
}

.eventlist .card-body::before {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../img/SVG/adornTopleft.svg) center center no-repeat;
    position: absolute;
    top: 10px;
    left: 10px;
    transition: all .5s ease;
}

.eventlist .card-body::after {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../img/SVG/adornTopright.svg) center center no-repeat;
    position: absolute;
    bottom: 10px;
    right: 10px;
    transition: all .5s ease;
}

.eventlist .card h3 {
    color: #333;
    font-size: 20px;
    line-height: 1.5em;
    font-weight: bold;
    margin: 10px 0;
    padding: 0 0 15px;
    position: relative;
    text-align: left;
}

.eventlist .card h3:after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    background-color: #8A6E2F;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.eventlist .card .card-text {
    font-size: 16px;
    margin-bottom: 0;
}

.eventlist .time {
    color: #8A6E2F;
    font-size: 16px;
}

.eventlist a.more {
    margin: 10px auto -40px;
}

.event .slider {
    margin: 0 -30px;
}

.event .slider .slick-prev:before {
    content: ' ';
    background-image: url(../img/SVG/Toleft3.svg);
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: center center;
    margin: -127%;
}

.event .slider .slick-next:before {
    content: ' ';
    background-image: url(../img/SVG/ToRight3.svg);
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: center center;
    margin: -127% 0 0 127%;
}

.event h2.blog-post-title {
    color: #872e06;
}

.event .blog-post p {
    line-height: 2em;
    font-size: 105%;
}

.event .slick-slide.card {
    color: #333;
    text-decoration: none;
    box-shadow: 0 .125rem .25rem rgb(0 0 0 / 7.5%);
    transition: all .3s ease;
    overflow: hidden;
    border: 2px solid #8A6E2F;
    border-radius: 10px;
    margin: 0 15px;
    display: flex;
    flex-direction: row;
    transition: all .3s ease;
}

.event .slick-slide.card img {
    width: 45%;
    max-width: 370px;
}

.event .slick-slide.card:hover {
    color: #333;
    box-shadow: 0 15px 15px -10px rgba(81, 19, 0, 0.5);
}

.event .slick-slide .card-body {
    position: relative;
    transition: all .3s ease;
    padding: 15px 30px;
}

.event .slick-slide .card-body .niceScroll {
    width: 100%;
    height: 270px;
    overflow: hidden;
    padding-right: 10px;
}

.event .slick-slide .card-body::before {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../img/SVG/adornTopleft.svg) center center no-repeat;
    position: absolute;
    top: 10px;
    left: 10px;
    transition: all .5s ease;
}

.event .slick-slide .card-body::after {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../img/SVG/adornTopright.svg) center center no-repeat;
    position: absolute;
    bottom: 10px;
    right: 10px;
    transition: all .5s ease;
}

.event .slick-slide.card h3 {
    color: #333;
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
    padding-bottom: 10px;
    position: relative;
    line-height: 1.5em;
    text-align: center;
}

.event .slick-slide.card h3:after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    background-color: #8A6E2F;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.event .slick-slide .card .card-text {
    font-size: 14px;
    margin-bottom: 0;
}

.event .slick-initialized .slick-slide .time span {
    color: #8A6E2F;
    font-size: 16px;
    letter-spacing: 0.25em;
    display: inline;
    padding: 0;
    margin: 0 auto;
    max-height: auto;
}

.slick-initialized .slick-slide a.more {
    display: table;
    width: 100%;
    max-width: 500px;
    font-size: 20px;
    letter-spacing: 0.3em;
    color: #8A6E2F;
    text-align: center;
    text-decoration: none;
    border: none;
    position: relative;
    margin: 10px auto -15px;
    padding: 0 15px 30px;
    font-weight: 500;
    transition: all .3s ease;
}

.slick-initialized .slick-slide a.more:hover {
    border: none;
    box-shadow: none;
}

@media (max-width: 1060px) {
    .event .slider {
        margin: 0 -15px;
    }
}

@media (max-width: 992px) {
    .event .slider {
        margin: 0 -30px;
    }
}

.articles a {
    color: #666;
    text-decoration: none;
    box-shadow: 0 .125rem .25rem rgb(0 0 0 / 7.5%);
    transition: all .3s ease;
    overflow: hidden;
}

.articles a img {
    transition: all .5s ease;
    transform: scale(1);
}

.articles a:hover {
    color: #444;
    box-shadow: 0 15px 15px -10px rgba(81, 19, 0, 0.5);
    border: 1px solid #ba9736;
}

.articles a:hover img {
    transform: scale(1.05);
}

.articles a h3 {
    color: #333;
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
    padding-bottom: 10px;
    position: relative;
    width: 100%;
    height: 66px;
    line-height: 1.5em;
    overflow: hidden;
    text-overflow: ellipsis;
}

.articles a h3:after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    background-color: #ba9736;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all .5s ease;
}

.articles a:hover h3:after {
    height: 5px;
}

.articles a .card-text {
    font-size: 14px;
    height: 85px;
    overflow: hidden;
}

.articles .time {
    color: #917341;
    font-size: 13px;
    text-align: right;
}

.Winery .card-body {
    text-align: center;
    position: relative;
    padding-top: 2rem;
}

.Winery .cards .card-body {
    padding-top: 1rem;
}

.Winery .card-body::before {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../img/SVG/adornTopleft.svg) center center no-repeat;
    position: absolute;
    top: 15px;
    left: 15px;
}

.Winery .card-body::after {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../img/SVG/adornTopright.svg) center center no-repeat;
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.Winery a {
    color: #666;
    text-decoration: none;
    box-shadow: 0 .125rem .25rem rgb(0 0 0 / 7.5%);
    transition: all .3s ease;
    overflow: hidden;
    border: 1px solid #8A6E2F;
    flex-direction: row;
    flex-wrap: nowrap;
    border-radius: 10px;
}

.Winery a .winery-logo-box {
    width: 110px;
    min-width: 110px;
    max-width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    overflow: hidden;
}

.Winery a img.img-logo {
    transition: all .5s ease;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    padding: 0;
    display: block;
}

.Winery a:hover {
    color: #444;
    box-shadow: 0 15px 15px -10px rgba(81, 47, 0, 0.5);
    border: 1px solid #ba9736;
}

.Winery a:hover img {
    transform: scale(1.05);
}

.Winery a h3 {
    padding-bottom: 15px;
    position: relative;
    margin: 0 auto 15px;
    width: 65%;
}

.Winery a h3 .cht {
    color: #333;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
}

.Winery .cards a h3 .cht {
    font-size: 24px;
}

.Winery a h3 .eng {
    color: #333;
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
}

.Winery a h3 i {
    font-style: normal;
}

.Winery a h3:after {
    content: '';
    width: 60%;
    height: 1px;
    position: absolute;
    background-color: #ba9736;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all .5s ease;
}

.Winery a .card-text {
    color: #333;
    font-weight: 500;
    font-size: 18px;
    max-height: 130px;
    overflow: auto;
    padding: 5px 10px 5px 0;
    text-align: left;
}

.Winery .cards a .card-text {
    font-size: 14px;
    max-height: 60px;
    padding: 5px 0;
    margin-bottom: 0;
}

.Winery .worldMap {
    margin: 0 auto 60px;
    text-align: center;
    border: 1px solid #8A6E2F;
    position: relative;
    background-color: rgb(255 255 255 / 60%);
}

.worldMapBtn {
    display: none;
    flex-wrap: wrap;
    padding: 0 10px;
    gap: 10px;
}

.Winery .worldMapBtn .title2.noafter {
    width: calc(33% - 10px);
    margin: 0 auto;
    border: 1px solid #8A6E2F;
    padding: 15px 15px 0;
    margin: 0 auto;
    border-radius: 10px;
    cursor: pointer;
}

.Winery .worldMapBtn .title2.noafter:hover {
    background-color: #f0e0bc;
}

.Winery .worldMapBtn .title2.noafter .cht {
    font-size: 18px;
}

.Winery .worldMapBtn .title2.noafter::before {
    display: none;
}

.breadcrumb a,
.breadcrumb .active {
    color: #8A6E2F;
    font-weight: 500;
    text-decoration: none;
    font-size: 18px;
}

.breadcrumb a:hover {
    font-weight: bold;
    border-bottom: 2px solid #8A6E2F;
}

.WineryInfo .wineryTop {
    position: relative;
}

.WineryInfo .wineryImg {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.WineryInfo .wineryImg::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 0;
    border: 1px solid #8A6E2F;
}

.WineryInfo .wineryImg > img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
    object-position: center center;
}

.WineryInfo .wineryImg .flagImg {
    width: 100px;
    height: auto;
}

.WineryInfo .winfo .flagImg {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.WineryInfo .winfo p {
    font-size: 18px;
    font-weight: bold;
}

.WineryInfo .img-logo {
    width: auto;
    max-width: 200px;
    max-height: 200px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

.WineryInfo .flagImg img {
    border-radius: 5px;
    overflow: hidden;
    width: 40px;
    height: auto;
    margin-right: 10px;
}

.WineryInfo .flagImg .flagText {
    color: #8A6E2F;
    font-size: 26px;
    font-weight: bold;
}

.WineryInfo .titleBox {
    height: auto;
    margin: 20px auto 0;
    background-color: transparent;
    color: #8A6E2F;
}

.WineryInfo .winfo .titleBox {
    height: auto;
    margin: 20px auto 0 !important;
    padding: 0;
    border: 0;
    background-color: transparent;
    color: #8A6E2F;
    display: block;
}

.WineryInfo .winfo .titleBox .title2 {
    margin: 0 auto !important;
}

.WineryInfo .smallImg {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
}

.WineryInfo .smallImg img {
    flex: 0 0 calc((100% - 48px) / 5);
    width: calc((100% - 48px) / 5);
    max-width: calc((100% - 48px) / 5);
    height: 90px;
    object-fit: cover;
    border-radius: 0;
}

.Winerys.slider .feature {
    opacity: 1;
    padding: 0 6px;
}

.Winerys.slider {
    margin: 0 -30px;
}

.Winerys.slider .bottle {
    border: 1px solid #8A6E2F;
    border-radius: 10px;
    margin: 0 15px;
    padding: 15px 0;
    background-image: url(../img/SVG/HollowCircle.svg);
    background-size: 50%;
    background-position: 65% 90%;
    background-repeat: no-repeat;
    background-color: #fff;
    transition: all .3s ease;
    cursor: pointer;
    overflow: hidden;
}

.Winerys.slider .bottle:hover {
    background-color: #f7ecd2;
}

.Winerys.slider .bottle:nth-child(5n-3) {
    background-image: url(../img/SVG/Cube.svg);
    background-size: 70%;
    background-position: 30% 80%;
}

.Winerys.slider .bottle:nth-child(5n-2) {
    background-image: url(../img/SVG/ConcentricCircles.svg);
    background-size: 140%;
    background-position: 73% -68%;
}

.Winerys.slider .bottle:nth-child(5n-1) {
    background-image: url(../img/SVG/curve001_2.svg);
    background-size: 100%;
    background-position: 50% 35%;
}

.Winerys.slider .bottle:nth-child(5n) {
    background-image: url(../img/SVG/DiagonalLine2.svg);
    background-size: 120%;
    background-position: 61% 320%;
}

.Winerys.slider .bottle img:hover {
    transform: scale(1.1);
}

.Winerys.slider .bottle .info {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px;
    width: 100%;
    min-height: 75px;
    background-color: rgb(255 255 255 / 60%);
    text-align: center;
    vertical-align: middle;
    transition: all .3s ease;
}

.Winerys.slider .bottle:hover .info {
    background-color: rgb(255 255 255 / 90%);
}

.Winerys.slider .bottle .info h5 {
    color: #333;
    font-size: 26px;
    font-weight: bold;
}

.Winerys.slider .bottle .info::before {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../img/SVG/adornTopleft.svg) center center no-repeat;
    position: absolute;
    top: 10px;
    left: 10px;
}

.Winerys.slider .bottle .info::after {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../img/SVG/adornTopright.svg) center center no-repeat;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.Winerys.slider .slick-prev:before {
    content: ' ';
    background-image: url(../img/SVG/Toleft3.svg);
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: center center;
    margin: -127%;
}

.Winerys.slider .slick-next:before {
    content: ' ';
    background-image: url(../img/SVG/ToRight3.svg);
    background-size: 40%;
    background-repeat: no-repeat;
    background-position: center center;
    margin: -127% 0 0 127%;
}

.winery-product-section {
    margin-top: 24px;
}

.winery-product-nav {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin: 0 18px 18px;
}

.winery-product-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid #8A6E2F;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8A6E2F;
    background-color: #fff;
    font-size: 24px;
    line-height: 1;
    transition: all .3s ease;
}

.winery-product-arrow:hover {
    background-color: #8A6E2F;
    color: #fff;
}

.winery-product-arrow.is-disabled {
    opacity: .35;
    pointer-events: none;
}

.winery-product-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.winery-product-list .feature {
    opacity: 1;
    padding: 0 6px;
}

.winery-product-list .feature a {
    display: block;
    height: 100%;
    background-color: rgb(255 255 255 / 92%);
    border: 1px solid rgb(138 110 47 / 35%);
    border-radius: 14px;
    padding: 0 0 18px;
}

.winery-product-list .feature a img {
    width: auto;
    max-width: 78%;
    height: 250px;
    object-fit: contain;
    margin: 18px auto 10px;
}

.winery-product-list .feature a h4 {
    padding: 0 18px 12px;
    margin-top: 0;
}

.winery-product-list .feature a p {
    padding: 0 12px;
}

.winery-product-slider .slick-slide {
    height: auto;
}

.winery-product-slider .feature a {
    display: block;
    height: auto;
    background-color: rgb(255 255 255 / 92%);
    border: 1px solid rgb(138 110 47 / 35%);
    border-radius: 14px;
    padding-bottom: 18px;
}

.winery-product-slider .feature .product-img-slot {
    height: 250px;
    margin: 18px auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.winery-product-slider .feature .product-img-slot img {
    width: auto;
    max-width: 78%;
    height: 100%;
    object-fit: contain;
    margin: 0;
}

.winery-product-slider .feature a h4 {
    padding: 0 18px 12px;
    margin-top: 0;
}

.winery-product-slider .feature a p {
    padding: 0 12px;
}

.infomation {
    position: relative;
    border-radius: 0 0 10px 10px;
    border-top: none;
    z-index: 0;
    padding: 45px 0;
    margin: 0 0 0 12px;
    width: calc(100% - 24px);
    background-color: rgb(255 255 255 / 50%);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.WineryInfo .infomation {
    width: 100%;
    margin: 0 auto;
    padding: 45px 20px;
}

.news .infomation {
    border-radius: 10px;
    margin: 0 auto;
    width: 100%;
    padding: 45px;
}

.event .infomation {
    border-radius: 10px;
    margin: 0 auto;
    width: 100%;
    padding: 45px;
}

.event .infomation .smallImg img {
    border-radius: 0;
}

.infomation p {
    color: #333;
    font-size: 16px;
}

.infomation p .ptitle {
    font-size: 18px;
    font-weight: bold;
}

.infomation hr.border {
    border-color: #8A6E2F !important;
    opacity: .75 !important;
    margin: 2vw auto;
}

.infomation:before {
    content: '';
    width: 1px;
    height: 45px;
    position: absolute;
    left: -1px;
    top: -37px;
}

.news .infomation:before,
.news .infomation:after {
    display: none;
}

.event .infomation:before,
.event .infomation:after {
    display: none;
}

.infomation:after {
    content: '';
    width: 15px;
    height: 15px;
    position: absolute;
    right: -1px;
    top: -1px;
}

.product_info .infomation {
    padding: 5px 45px 45px;
}

.product_info .infomation:before {
    height: 40px;
    top: -40px;
}

.product_info .infomation:after {
    width: 30px;
    height: 50px;
    top: -31px;
}

.product_info .infomation h4 {
    font-weight: bold;
    font-size: 24px;
    color: #333;
    margin: 0 0 20px;
}

.news-body-content {
    padding: 0 20px;
}

.product_info .infomation h4:after {
    content: '';
    width: 40px;
    height: 2px;
    background-color: rgb(138 111 47 / 75%);
    display: block;
    font-size: 0;
    margin-top: 15px;
}

.news_image {
    padding: 0;
    overflow: hidden;
    width: 100%;
    margin: 15px auto 30px;
    border-radius: 10px;
}

.news_image img {
    min-width: 100%;
}

.event_image {
    padding: 0;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.event_image img {
    min-width: 100%;
}

.titleBox2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.titleBox2 .time {
    text-align: left;
    width: 140px;
    padding: 15px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all .3s ease;
    color: #8A6E2F;
}

.titleBox2 .year {
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    text-align: left;
    opacity: 1;
    margin: -10px 0 0;
    transition: all .3s ease;
    letter-spacing: 1.8em;
    text-indent: 0;
    display: block;
    width: 100%;
    overflow: visible;
}

.titleBox2 .year::after {
    content: none;
    display: none;
}

.titleBox2 .times {
    font-size: 34px;
    font-weight: 900;
    white-space: nowrap;
    letter-spacing: 0.23em;
    display: block;
    width: 100%;
    line-height: 0.8em;
}

/* news 內容頁年份改用字元分散排列，避免外凸 */
.news .titleBox2 .year,
.event .titleBox2 .event-date-item .year {
    display: block;
    width: 100%;
    white-space: nowrap;
    text-align: left;
}

.news .titleBox2 .year::after,
.event .titleBox2 .event-date-item .year::after {
    content: none;
    display: none;
}

.news .titleBox2 .times,
.event .titleBox2 .event-date-item .times {
    display: block;
    width: 100%;
    white-space: nowrap;
    text-align: left;
    letter-spacing: 0.23em;
}

.news .titleBox2 .times::after,
.event .titleBox2 .event-date-item .times::after {
    content: none;
    display: none;
}

.news .titleBox2 .time,
.event .titleBox2 .event-date-item {
    width: 120px;
    max-width: 120px;
}

.news .titleBox2 .title2.border1 {
    padding-left: 15px;
    max-width: calc(100% - 150px);
}

.news .titleBox2 .title2 .cht {
    font-size: 30px;
}

.event .titleBox2 .event-date-row {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    gap: 8px;
    min-width: 280px;
    max-width: 280px;
}

.event .titleBox2 .event-date-row.no-end {
    min-width: 120px;
    max-width: 120px;
}

.event .titleBox2 .event-date-separator {
    width: 16px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    padding-top: 24px;
}

.event .titleBox2 .event-date-end.is-empty,
.event .titleBox2 .event-date-separator.is-empty {
    visibility: hidden;
}

.event .titleBox2 .title2.border1 {
    padding-left: 30px;
    max-width: calc(100% - 310px);
}

.event .titleBox2 .event-date-row.no-end + .title2.border1 {
    max-width: calc(100% - 150px);
}

.event .titleBox2 .title2 .cht {
    font-size: 30px;
}

.titleBox2 .title2.border1 {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 0 0 60px;
    border-left: 1px solid #8A6E2F;
    max-width: calc(100% - 180px);
    width: 100%;
    height: 70px;
    line-height: normal;
    margin: 0;
}

.titleBox2 .title2::before,
.titleBox2 .title2::after {
    display: none;
}

.titleBox2 .title2 .cht {
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    font-size: clamp(18px, 3.6vw, 36px);
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-align: left;
}

.progressList {
    position: relative;
    padding: 45px 30px 22px 180px;
    border-radius: 10px;
    background-color: rgb(206 206 206 / 25%);
    backdrop-filter: blur(2px);
}

.progressList ul{
    position: absolute;
    left: 0;
    top: 20px;
}

.progressList li{
    list-style: none;
    line-height: 63px;
    font-size: 13px;
    color: #333;
    font-weight: bold;
}

.progressList .numlist{
    display: flex;
    justify-content: space-between;
    color: #333;
    font-size: 13px;
    line-height: .2em;
    height: 30px;
}

.progressList .numlist .num{
    position: relative;
}

.progressList .numlist .num:after{
    content: '';
    width: 1px;
    height: 13px;
    background-color: rgb(0 0 0 / 35%);
    position: absolute;
    bottom: 50px;
    left: 3px;
}

.progressList .numlist .num:first-child:after,
.progressList .numlist .num:last-child:after{
    opacity: 0;
}

.progressList .progress {
    display: flex;
    height: 14px;
    overflow: hidden;
    font-size: .75rem;
    background-color: #fff;
    border: 1px solid #8A6E2F;
    border-radius: 7px;
    margin-bottom: 20px;
}

.progressList .progress-bar {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #db9800;
    transition: width .6s ease;
    overflow: hidden;
}

.progressList .progress-bar:after {
    position: absolute;
    top: 0;
    right: 1px;
    content: '';
    background: linear-gradient(to left,  rgb(255 255 255 / 25%) 0%,rgb(255 255 255 / 0) 50%);
    width: 80px;
    height: 14px;
}

.product_content {
    padding: 45px;
    border-radius: 10px;
    background-color: rgb(255 255 255 / 25%);
    backdrop-filter: blur(2px);
}

.product_content h2.title {
    font-size: 32px;
    font-weight: bold;
}

.product_content h4.pop {
    font-size: 24px;
    font-weight: 500;
    color: #999;
}

.product_content .message {
    font-size: 16px;
    font-weight: 500;
    padding-right: 10px;
    display: grid;
    grid-template-columns: 10% 20% 20% 1fr;
    gap: 8px 24px;
}

.product_content .message.style2 {
    grid-template-columns: 15% 1fr 15% 1fr;
    gap: 8px 40px;
}

.product_content .message .msg_item{
    padding: 6px 0;
    line-height: 1.5;
}

.product_content .message .msg_item select{
    padding: 2px 6px;
    line-height: 1.5;
    border-color: #ccc;
    min-width: 100px;
    border-radius: 10px;
}

.product_content .message .msg_item:nth-child(4n+1),
.product_content .message .msg_item:nth-child(4n+3){
    color: #768597;
}

.product_content .message .msg_item.wineryname,
.product_content .message .msg_item.price:nth-child(4n+4) {
    color: #8A6E2F;
    font-weight: 700;
    font-size: 16px;
    margin: 0;
}

.product_content .message .msg_item.wineryname {
    white-space: nowrap;
}

.product_content .message .msg_item:nth-child(4n+4){
    color: #333;
}

.product_content .message.style2 .msg_item:nth-child(4n+2),
.product_content .message.style2 .msg_item:nth-child(4n+4){
    text-align: right;
}

@media (max-width: 992px){
    /* 兩欄顯示：標籤／數值配對 */
    .product_content .message{
        grid-template-columns: 120px 1fr;
        gap: 8px 16px;
    }
}

@media (max-width: 768px){
    .product_content .message.style2 {
        grid-template-columns: 120px 1fr;
    }
    .product_image .showimg {
        width: 100%;
        height: auto;
    }
    #productImg {
        width: fit-content;
        height: auto;
    }
}

@media (max-width: 580px){
    /* 一欄顯示：上下堆疊 */
    .product_content .message{
        grid-template-columns: 1fr;
        gap: 6px 0;
    }
    .product_content .message .msg_item:nth-child(4n+2),
    .product_content .message .msg_item:nth-child(4n+4){
        /* 手機上數值顏色保留，但可調整字重或大小如需 */
        font-weight: 700;
    }
}

.product_content li {
    font-size: 16px;
    font-weight: 500;
}

.product_content .price {
    font-size: 32px;
    font-weight: 900;
    color: #8A6E2F;
    float: right;
    margin-top: -15px;
}

.product_content hr.border {
    width: 100%;
    border-color: #8A6E2F !important;
    opacity: .25 !important;
    margin: 30px auto;
}

.product_content .badges {
    display: flex;
    gap: 15px 20px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.product_content .badge {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background-color: #8A6E2F;
    padding: 5px 7px;
    border-radius: 10px;
    min-width: 80px;
    display: flex;
    justify-content: space-around;
}

.product_content .badge i {
    font-style: normal;
}

.product_num {
    display: flex;
    gap: 30px;
    width: 100%;
    flex-wrap: wrap;
}

.product_num .num_item {
    display: flex;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #8A6E2F;
    gap: 0 30px;
    background-color: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    width: 22.5%;
    max-width: 100%;
}

.product_num .title {
    font-size: 20px;
    font-weight: bold;
    color: #8A6E2F;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    white-space: nowrap;
    width: 100%;
    max-width: 170px;
    margin-bottom: -15px;
}

.product_num .num_item:nth-child(4n) .title,
.product_num .num_item:nth-child(4n-1) .title {
    justify-content: space-around;
}

.product_num .num_item:nth-child(4n) .title,
.product_num .num_item:nth-child(4n-2) .title {
    margin-bottom: -30px;
}

.product_num .show_num {
    font-size: 34px;
    font-weight: bold;
    color: #8A6E2F;
    display: flex;
    justify-content: space-between;
    white-space: nowrap;
    width: 100%;
    max-width: 200px;
}

.product_num .num_item:nth-child(4n) .show_num,
.product_num .num_item:nth-child(4n-2) .show_num {
    font-size: 48px;
    font-weight: 900;
}

.product_num .title i,
.product_num .show_num i {
    font-style: normal;
}

@media (max-width: 1918px) {
    .product_num .num_item {
        width: calc(50% - 15px);
        flex-wrap: wrap;
    }
}

@media (max-width: 992px) {
    .product_num {
        margin: 30px auto;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .product_num .show_num {
        font-size: 30px;
    }
    .product_num .num_item:nth-child(4n) .show_num,
    .product_num .num_item:nth-child(4n-2) .show_num {
        font-size: 37px;
    }
}

.smallImg {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    gap: 15px;
    width: 100%;
    margin-top: 30px;
    align-items: center;
    background-color: #fff;
}

.smallImg img {
    border-radius: 10px;
    border: 1px solid #8A6E2F;
    overflow: hidden;
    height: fit-content;
    z-index: 0;
    cursor: pointer;
    transition: all .3s ease;
}

.smallImg img:hover {
    transform: scale(.95);
    transform-origin: 50% 100%;
    box-shadow: 0 10px 20px -10px rgb(0 0 0 / 25%);
}

.smallImg::before {
    content: '';
    width: 100%;
    border-width: 0 0 1px 1px;
    background-color: #fff;
    border-radius: 0 0 0 10px;
    overflow: hidden;
    position: absolute;
    left: -13px;
    top: 45px;
}

.highlight-gallery {
    width: 100%;
}

.highlight-gallery-main {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #8A6E2F;
    background-color: #fff;
}

.highlight-gallery-main img {
    width: 100%;
    display: block;
}

.highlight-gallery-thumbs {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.highlight-thumb {
    border: 1px solid transparent;
    background: transparent;
    padding: 0;
    width: calc(20% - 8px);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.85;
    transition: all .2s ease;
}

.highlight-thumb img {
    width: 100%;
    height: 72px;
    object-fit: cover;
    display: block;
}

.highlight-thumb:hover,
.highlight-thumb.is-active {
    border-color: #8A6E2F;
    opacity: 1;
}

@media (max-width: 1200px) {
    .smallImg::before {
        display: none;
    }
    .infomation {
        padding: 30px 15px;
    }
    .infomation:after {
        display: none;
    }
    .product_info .titleBox {
        height: 80%;
    }
    .product_info .infomation {
        padding: 45px;
    }
    .titleBox2 .title2.border1 {
        padding: 0 0 0 20px;
        max-width: calc(100% - 160px);
        margin: 0;
    }
    .titleBox2 .title2 .cht {
        font-size: 30px;
    }
}

@media (max-width: 992px) {
    .titleBox2 .title2 .cht {
        font-size: 4vw;
    }
}

@media (max-width: 580px) {
    .product_num .num_item:nth-child(4n) .title,
    .product_num .num_item:nth-child(4n-2) .title {
        margin-bottom: -22px;
    }
    .titleBox2 {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    .titleBox2 .title2.border1 {
        padding: 50px 0;
        border-left: none;
        border-top: 1px solid #8A6E2F;
        max-width: 100%;
        margin: 0;
    }
    .titleBox2 .title2 .cht {
        font-size: 5vw;
    }
    .titleBox2 .time {
        width: 120px;
    }
    .news .titleBox2 .title2.border1 {
        padding: 50px 0;
        max-width: 100%;
    }
}

.titleBox {
    width: 100%;
    height: 75%;
    border-width: 1px 1px 0;
    background-color: #fff;
    border-radius: 10px 10px 0 0;
    align-items: center;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    position: relative;
}

.titleBox .title2{
    margin: 40px auto 0;
}

.titleBox .title2 .cht{
    font-size: 36px;
}

.titleBox .title2 .eng{
    font-size: 18px;
}

@media (max-width: 1400px) {
    .WineryInfo .wineryImg .flagImg {
        transform: scale(.75);
        transform-origin: 100% 0;
    }
    .WineryInfo .wineryImg,
    .WineryInfo .wineryImg::before {
        border-radius: 0;
    }

.WineryInfo .wineryImg > img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
    object-position: center center;
}
}

@media (max-width: 1200px) {
    .titleBox {
        margin: 14vw 0 0;
        padding: 14px 0;
    }
    .WineryInfo .titleBox {
        margin: 12px auto 0;
    }
    .titleBox .title2 {
        margin: 0 auto 10px;
    }
    .infomation:before {
        display: none;
    }
}

@media (max-width: 1024px) {
    .Winery .inmap {
        margin-bottom: 24px;
        transform: translateY(18px);
    }
    .WineryInfo .wineryImg,
    .WineryInfo .wineryImg::before {
        border-radius: 0;
    }

.WineryInfo .wineryImg > img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
    object-position: center center;
}
    .WineryInfo .wineryImg img {
        max-width: 100%;
        width: auto;
        height: auto;
    }
    .WineryInfo .wineryImg .flagImg {
        transform: scale(.5);
    }
    .winery-product-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 580px) {
    .Winery a .winery-logo-box {
        width: 110px;
        min-width: 110px;
        max-width: 110px;
        padding: 10px 8px;
    }
    .Winery a img.img-logo {
        position: static;
        transform: none;
        left: auto;
        max-width: 100%;
        max-height: 100px;
    }
    .Winery .card-body{
        margin-top: 0;
    }
    .Winery a .card-text {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }
    .WineryInfo .wineryImg,
    .WineryInfo .wineryImg::before {
        border-radius: 0;
    }

.WineryInfo .wineryImg > img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
    object-position: center center;
}
    .WineryInfo .wineryImg .flagImg {
        transform: scale(.3);
    }
    .Winerys.slider {
        margin: 0 5px;
    }
    .winery-product-nav {
        margin: 0 6px 14px;
    }
    .winery-product-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

.titleList {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    gap: 15px;
    width: 100%;
    height: 160px;
    margin-top: 30px;
}

.titleList .titleBtn {
    color: #8A6E2F;
    font-size: 24px;
    font-weight: bold;
    border-radius: 10px;
    border: 1px solid #8A6E2F;
    background-color: #fff;
    overflow: hidden;
    width: 25%;
    height: 100px;
    z-index: 0;
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 0 10px;
}

.titleList .titleBtn:hover {
    transform: scale(.95);
    transform-origin: 50% 100%;
    box-shadow: 0 10px 20px -10px rgb(0 0 0 / 25%);
}

.titleList .titleBtn i {
    font-style: normal;
}

.titleList::before {
    content: '';
    width: 100%;
    height: calc(100% - 75px);
    border-width: 0 0 1px 1px;
    background-color: #fff;
    border-radius: 0 0 0 10px;
    overflow: hidden;
    position: absolute;
    left: -13px;
    top: 45px;
}

.titleBtn::before {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../img/SVG/adornTopleft.svg) center center no-repeat;
    position: absolute;
    top: 15px;
    left: 15px;
}

.titleBtn::after {
    content: '';
    width: 10px;
    height: 10px;
    background: url(../img/SVG/adornTopright.svg) center center no-repeat;
    position: absolute;
    bottom: 15px;
    right: 15px;
}

@media (max-width: 1199px) {
    .titleList::before {
        display: none;
    }
    .titleList {
        border-width: 0 1px;
        padding: 0 15px;
        margin: 0 auto;
        height: auto;
        background-color: #fff;
    }
    .titleList .titleBtn {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .titleList {
        flex-wrap: wrap;
    }
    .titleList .titleBtn {
        min-width: 45%;
    }
}

@media (max-width: 580px) {
    .titleList .titleBtn {
        height: 70px;
        z-index: 9;
    }
}

.blog-post {
    padding: 0 24px;
}

.shoppingSteps {
    margin: 0 auto 15px;
    max-width: 700px;
}

.shoppingSteps .col i {
    font-size: 30px;
    margin: 0 auto 20px;
    color: #d5d5d5;
}

.shoppingSteps .col h5 {
    font-size: 16px;
    margin: 20px auto;
    color: #c4c4c4;
    font-weight: bold;
}

.shoppingSteps .col.active i {
    color: #be8669;
}

.shoppingSteps .col.active h5 {
    color: #7e4729;
}

.shoppingSteps .col:before {
    font-size: 30px;
    content: "➔";
    color: #ccc;
    font-family: 'Glyphicons Halflings';
    position: absolute;
    top: 22%;
    left: -10%;
    transform: translateY(-50%);
}

.shoppingSteps .col.active:before {
    color: #be8669;
}

.shoppingSteps .col:first-child::before {
    display: none;
}

.inputArea {
    margin: 0 auto 15px;
    justify-content: space-around;
    padding: 0;
}

.inputArea .list-group-item {
    padding: 2rem;
    margin: 0 0 15px;
    background-color: #f6f6f6;
}

.inputArea.nobg .list-group-item {
    background-color: transparent;
}

.inputArea .list-group-item+.list-group-item {
    border-top-width: 1px;
}

.inputArea .toolBox {
    padding: 2rem 1rem;
}

.inputArea .form-control:disabled,
.inputArea .form-control[readonly] {
    background-color: transparent;
    opacity: 1;
    border: none;
    border-bottom: 1px solid #eee;
    border-radius: 0;
}

.inputArea .form-check-input {
    font-size: 1.5em;
    line-height: 1.5em;
    background-color: #fff;
    border: 3px solid #be8669;
    cursor: pointer;
    margin: 0 auto;
}

.inputArea .form-check-label {
    cursor: pointer;
}

.inputArea .form-check-input:hover,
.inputArea .form-check-input:checked:hover {
    background-color: #7e4729;
    border: 3px solid #be8669;
}

.inputArea .form-check-input:checked {
    background-color: #7e4729;
    border: 3px solid #7e4729;
}

.selectBtn {
    position: relative;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.selectBtn[readonly],
.selectBtn:disabled {
    background-image: none;
}

.productsList {
    margin: 0 auto 15px;
    justify-content: space-around;
    padding: 0;
}

.productsList .close {
    font-size: 1.5em;
    position: absolute;
    top: 5%;
    right: 20px;
    color: #ccc;
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.productsList .close:hover {
    color: #820000;
}

.productsList .form-check-input {
    font-size: 1.5em;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
    background-color: #fff;
    border: 3px solid #995ba4;
    cursor: pointer;
}

.productsList .form-check-input:hover,
.productsList .form-check-input:checked:hover {
    background-color: #672a72;
    border: 3px solid #672a72;
}

.productsList .form-check-input:checked {
    background-color: #672a72;
    border: 3px solid #672a72;
}

.form-check-input:focus,
.btn-check:focus+.btn,
.form-control:focus,
.btn:focus {
    border-color: #8A6E2F;
    box-shadow: 0 0 0 0.25rem rgb(138 111 47 / 15%);
}

.topSearch .form-control:hover,
.topSearch .form-control:focus {
    border-color: #fff;
    box-shadow: 0 0 0 0.25rem rgba(171, 145, 16, 0.25);
    width: 150px !important;
    color: #fff;
}

.topSearch .form-control[value]:not([value=""]) {
    border-color: #fff;
    color: #fff;
}

.search_list .search-card-image {
    width: 100%;
    height: 366px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
}

.search_list .search-card-image > img {
    width: 100%;
    height: 366px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.search_list .card-title .time {
    min-height: 24px;
}

.search_list .card-title .time.is-empty {
    visibility: hidden;
}

.form-check-input:checked {
    background-color: #672a72;
    border-color: #672a72;
}

.productsList .list-group-item {
    padding: 0.5rem 3rem;
}

.productsList .form-checked-content {
    width: 100%;
}

.productsList .addcart .input-group-text {
    color: #999;
    background-color: #fff;
}

.productsList .addcart .input-group {
    justify-content: flex-end;
}

.productsList .addcart .plus {
    border-radius: .25rem;
}

.productsList .addcart .input-group-text:hover {
    background-color: #eecbb6;
    color: #333;
}

.productsList .original_price {
    font-size: 16px;
    font-family: 'Century Gothic';
    color: #ccc;
    text-align: right;
    text-decoration: line-through;
    font-weight: normal;
}

.productsList .price {
    font-size: 14px;
    font-family: 'Century Gothic';
    color: #983b3b;
    text-align: right;
    display: flex;
    font-weight: bold;
    justify-content: end;
    align-items: baseline;
}

.productsList .price span {
    font-size: 22px;
    font-weight: bold;
    margin-left: 5px;
}

.productsList a.image {
    display: block;
    margin: 10px;
    width: 100px;
    float: left;
}

.productsList .product {
    display: flex;
    align-items: center;
}

.productsList .title {
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: #706e6c;
    display: block;
    margin: 15px 0;
}

.productsList .title2 {
    font-size: 16px;
    text-decoration: none;
    color: #706e6c;
    display: block;
    margin: 15px 0;
    text-indent: 3em;
    width: 100%;
}

.productsList .active .title2,
.productsList .active .title2 small {
    color: #714519 !important;
}

.productsList .title:hover,
.productsList .title2:hover {
    color: #333;
}

.sortProducts {
    border: 1px solid #8A6E2F;
    border-width: 1px 0;
    border-radius: 2px;
    padding: 5px 0 10px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    background-color: #fff;
}

.sortProducts>div {
    display: flex;
    justify-content: space-between;
    gap: 0 2vw;
}

@media (max-width: 992px) {
    .sortProducts>div {
        flex-wrap: wrap;
    }
}

.sortProducts .btn-white:after {
    width: 35px;
    height: 35px;
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #fff url(../img/SVG/select.svg) center center no-repeat;
    background-size: 50%;
    pointer-events: none;
    border-top: 0;
}

.sortProducts .btn-white.active:after {
    transform: translateY(-50%) rotate(180deg);
}

.sortProducts .btn-white {
    min-width: 120px;
    color: #8A6E2F;
    font-weight: 500;
    font-size: 18px;
    border: 1px solid transparent;
    position: relative;
    text-align: left;
}

.sortProducts .btn-white:hover {
    font-weight: bold;
}

.sortProducts .btn-white.wide {
    letter-spacing: 2em;
}

.sortProducts .dropdown-menu {
    border: 1px solid #8A6E2F;
}

.sortProducts .dropdown-item {
    color: #8A6E2F;
    font-weight: 500;
}

.sortProducts .dropdown-item:hover {
    font-weight: bold;
    background-color: #eee2c5;
}

.text-measure {
    visibility: hidden;
    position: absolute;
    font-size: 18px;
    white-space: nowrap;
}

.checkProdList {
    overflow: hidden;
    min-height: 65px;
    position: relative;
    width: 100%;
}

.checkProdList .checklistinfo {
    padding: 15px;
    width: 100%;
    position: absolute;
    top: 5px;
    z-index: -1;
}

.checkProdList .clear {
    padding: 2px 10px;
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 1;
    background: #999;
    border-radius: 7px;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    transition: all .3s ease;
}

.checkProdList .checklistinfo span {
    padding: 0 5px;
}

.checkProdList .checklistinfo span:first-child {
    margin: 0 10px 0 0;
    padding: 2px 7px;
    background: #8A6E2F;
    border-radius: 7px;
    color: #fff;
}

.sortProducts .btn-white.wide.clear
{
    letter-spacing: 2em;
    width: 100px;
    overflow: hidden;
    min-width: 100px;
}

.sortProducts .btn-white.wide.clear:after {
    display: none;
}

@media (max-width: 992px) {
    .sortProducts .btn-white.wide.clear {
        width: auto;
    }
}

@keyframes show_check1 {
    0% {
        display: flex;
        transform: translateY(0);
    }
    100% {
        display: none;
        transform: translateY(-200px);
    }
}

.checkProducts {
    display: none;
    gap: 0 3vw;
    padding: 15px 0;
    border-bottom: 1px solid #8A6E2F;
    flex-wrap: wrap;
    flex-direction: row;
    background-color: #fff;
    transform: translateY(0);
}

.checkProducts.close {
    animation-name: show_check1;
    animation-duration: .3s;
    animation-iteration-count:inherit;
    animation-timing-function: ease;
    animation-fill-mode: both;
}

@keyframes show_check2 {
    0% {
        transform: translateY(-200px);
    }
    100% {
        transform: translateY(0);
    }
}

.checkProducts.active {
    display: flex;
    transform: translateY(-200px);
    animation-name: show_check2;
    animation-duration: .3s;
    animation-iteration-count:inherit;
    animation-timing-function: ease;
    animation-fill-mode: both;
}

.checkProducts.active.cp5 {
    justify-content: flex-end;
}

.checkProducts .form-check {
    display: flex;
    gap: 10px;
    align-items: center;
}

.checkProducts .form-check-input {
    background-color: #fff;
    border-color: #8A6E2F;
    cursor: pointer;
}

.checkProducts .form-check-input.active {
    background-color: #8A6E2F;
    border-color: #8A6E2F;
}

.checkProducts .form-check label {
    color: #8A6E2F;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
}

.checkProducts .form-check label:hover {
    font-weight: bold;
}

.product-list-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 42px;
    align-items: start;
    margin-top: 34px;
}

.product-filter-mobile-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 9px 15px;
    border: 1px solid #8A6E2F;
    background: #fff;
    color: #8A6E2F;
    font-weight: 600;
    letter-spacing: .08em;
}

.product-filter-sidebar {
    border-top: 1px solid #8A6E2F;
    background: #fff;
}

.product-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 10px;
    border-bottom: 1px solid #8A6E2F;
    color: #8A6E2F;
}

.product-filter-header strong {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .08em;
}

.product-filter-header .clear {
    padding: 4px 10px;
    border: 0;
    background: #8A6E2F;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
}

.product-filter-panel {
    border-bottom: 1px solid #D9C89E;
}

.product-filter-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 10px;
    border: 0;
    background: transparent;
    color: #8A6E2F;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    letter-spacing: .08em;
}

.product-filter-title i {
    transition: transform .25s ease;
}

.product-filter-panel.is-collapsed .product-filter-title i {
    transform: rotate(-90deg);
}

.product-filter-sidebar .checkProducts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 0 18px;
    border-bottom: 0;
    background: transparent;
    transform: none;
    animation: none;
}

.product-filter-panel.is-collapsed .checkProducts {
    display: none;
}

.product-filter-sidebar .checkProducts .form-check {
    min-height: 28px;
    padding-left: 10px;
    padding-right: 10px;
}

.product-filter-sidebar .checkProducts .form-check-input {
    width: 18px;
    height: 18px;
    margin: 0;
    border: 1px solid #8A6E2F;
    border-radius: 2px;
    flex: 0 0 auto;
}

.product-filter-sidebar .checkProducts .form-check label {
    font-size: 16px;
    line-height: 1.5;
}

.product-filter-sidebar .checkProducts .is-disabled label {
    color: #aaa;
    cursor: default;
}

.product-filter-sidebar .checklistinfo {
    display: block;
    position: static;
    width: 100%;
    padding: 12px 10px;
    color: #8A6E2F;
    font-size: 14px;
    line-height: 1.8;
}

.product-filter-sidebar .checklistinfo span {
    padding: 0;
}

.product-filter-sidebar .checklistinfo span:first-child {
    display: inline-block;
    margin: 0 8px 0 0;
    padding: 2px 7px;
    background: #8A6E2F;
    color: #fff;
}

.product-result-panel {
    min-width: 0;
}

.product-result-panel .feature a {
    display: flex;
    flex-direction: column;
    min-height: 520px;
}

.product-result-panel .feature .product-img-slot {
    width: 100%;
    height: 340px;
    margin: 30px auto 10px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.product-result-panel .feature .product-img-slot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    margin: 0;
}

.product-result-panel [data-pagination-wrapper] {
    margin-top: 32px;
    max-width: 100%;
    overflow: hidden;
}

.product-result-panel [data-pagination-wrapper] nav[aria-label="Page navigation"] {
    max-width: 100%;
    transform: none;
}

.product-result-panel .pagination {
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.product-result-panel .pagination-border {
    display: none;
}

.product-result-panel .page-link:hover,
.product-result-panel .page-link.active {
    border: 2px solid #8A6E2F;
    box-sizing: border-box;
}

.product-result-panel .page-item:first-child .page-link:hover,
.product-result-panel .page-item:last-child .page-link:hover,
.product-result-panel .page-item:first-child .page-link.active,
.product-result-panel .page-item:last-child .page-link.active {
    border-color: transparent;
}

@media (max-width: 991.98px) {
    .product-filter-mobile-toggle {
        display: inline-flex;
    }

    .product-list-layout {
        display: block;
        margin-top: 18px;
    }

    .product-filter-sidebar {
        display: none;
        margin-bottom: 28px;
    }

    .product-filter-sidebar.is-open {
        display: block;
    }
}

.payment .list-group-item {
    cursor: pointer;
    transition: all .3s ease;
}

.payment .list-group-item:hover {
    background-color: #faf0eb;
}

.payment .list-group-item.active {
    background-color: #faf0eb;
    border-color: #7e4729;
    border-left: 15px solid #cda189;
}

.payment .list-group-item small {
    float: right;
    font-weight: normal;
}

.productsList .match-activity {
    font-size: 14px;
    text-decoration: none;
    color: #706e6c;
    display: block;
    font-weight: normal;
}

.productsList .nomatch-activity {
    font-size: 14px;
    text-decoration: none;
    color: #706e6c;
    display: block;
    font-weight: normal;
}

.totalBox {
    border: 1px solid #ccc;
    padding: 15px;
    text-align: right;
    background-color: #f2f2f2;
    border-radius: .25rem;
}

.totalBox em {
    font-size: 20px;
    padding: 10px;
    font-style: normal;
    font-family: 'Century Gothic';
    font-weight: bold;
}

.totalBox .orderPrice {
    font-size: 14px;
    font-family: 'Century Gothic';
    color: #af4099;
    text-align: right;
    align-items: baseline;
    display: flex;
    font-weight: bold;
    justify-content: end;
}

.totalBox .orderPriceBig {
    font-size: 24px;
    font-weight: bold;
    margin-left: 5px;
}

.totalBox .spreadTotalBlock {
    font-family: 'Century Gothic';
}

.totalBox .mred {
    color: #d30000;
}

.toolBox {
    padding: 0;
}

.btnBig {
    padding-left: 4vw;
    padding-right: 4vw;
    white-space: nowrap;
}

footer p,
footer .nav-link {
    font-size: 14px;
    font-weight: 500;
}

footer .f_info .company {
    color: #fff;
    line-height: 2.6em;
    font-weight: 500;
}

footer .f_info .company li .fax {
    vertical-align: baseline;
}

footer .f_info .company li img {
    width: 25px;
    height: 25px;
    margin-right: 20px;
}

footer .f_info .social {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin-bottom: 50px;
}

footer .f_info .logo_w {
    margin: 0 0 15px -15px;
}

footer .f_info p {
    color: #fff;
    margin-top: 15px;
    font-size: 18px;
}

footer .f_info p.copyright {
    color: #fff;
    opacity: 1;
    font-size: 16px;
}

footer .f_info a.f-link {
    display: inline-block;
    color: #fff;
    margin-bottom: 5px;
    text-decoration: none;
    transition: all .5s ease;
    font-size: 15px;
    font-weight: 300;
}

footer .f_info a.f-link:hover {
    letter-spacing: 0.25vw;
    color: #8A6E2F;
}

.back-to-top {
    position: fixed;
    display: none;
    width: 30px;
    height: 30px;
    border-radius: 12px;
    right: 18.5px;
    bottom: 11.5%;
    transition: all 0.3s ease;
    z-index: 99999;
    font-size: 30px;
    font-weight: bold;
    line-height: 17px;
    text-align: center;
    text-decoration: none;
}

.back-to-top:after {
    content: '';
    width: 25px;
    font-size: 0;
    height: 25px;
    line-height: 1px;
    position: absolute;
    border: 2px solid #8A6E2F;
    border-radius: 10px;
    top: 50%;
    transform: translateY(-125%);
    margin-left: 0;
    transition: all .3s ease;
    z-index: -1;
}

.back-to-top .arrow {
    width: 10px;
    height: 10px;
    position: absolute;
    margin: -6px 0 0 8px;
    transition: all .3s ease;
    transform: rotate(-135deg);
    border-width: 0 2px 2px 0;
}

.back-to-top:hover {
    font-weight: 900;
    color: #8A6E2F;
}

.back-to-top:hover:after {
    border: 3px solid #8A6E2F;
}

@keyframes arrowHover2 {
    0% {
        border-width: 0 2px 2px 0;
        margin: -6px 0 0 8px;
        transform: scale3d(1, 1, 1) rotate(-135deg);
    }

    70% {
        border-width: 0 3px 3px 0;
        margin: -35px 0 0 8px;
        transform: scale3d(0.75, 2.5, 0.75) rotate(-135deg);
    }

    100% {
        border-width: 0 2px 2px 0;
        margin: -6px 0 0 8px;
        transform: scale3d(1, 1, 1) rotate(-135deg);
    }
}

.back-to-top:hover .arrow {
    transition: all .3s ease;
    animation-name: arrowHover2;
    animation-duration: .8s;
    animation-iteration-count: initial;
    animation-timing-function: ease;
    animation-fill-mode: both;
}

.banner18 {
    position: fixed;
    width: 100%;
    height: auto;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    text-align: center;
    background-color: #000;
    z-index: 9;
}

.banner18 img {
    width: 100%;
    max-width: 1200px;
    height: auto;
}

.logo_w {
    max-height: 70px;
}

.contactUs p {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.4em;
    font-weight: 500;
}

.contactUs .info {
    padding: 10px 20px;
    border: 1px solid #8A6E2F;
    border-width: 1px 0;
    backdrop-filter: blur(2px);
    background-color: rgb(255 255 255 / 20%);
}

.contactUs .info img {
    width: 25px;
    height: 25px;
    margin-right: 20px;
}

.contactUs .info.noborder {
    border: none;
}

.contactUs .map {
    border: 1px solid #000;
    border-radius: 10px;
    overflow: hidden;
    line-height: 0;
}

.contactUs a {
    color: #8a6e2f;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4em;
    transition: all .5s ease;
}

.contactUs a:hover {
    color: #553e0a;
    margin-left: 15px;
}

.contact .img-fluid {
    margin-left: 10px;
    max-width: 500px;
}

.waterfall {
    width: 100%;
    margin: 0px auto 30px;
    column-count: 3;
    column-gap: 10px;
}

.waterfall .item {
    text-align: center;
    padding: 5px;
    box-sizing: border-box;
    margin: 0 auto 15px;
    break-inside: avoid;
}

.waterfall img {
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

@media (min-width: 1400px) {
    .container {
        /*max-width: 1920px;
        padding: 0 20px;*/
    }
    .container.first {
        /*max-width: 1920px;
        padding: 0;*/
    }
    .product_list .container,
    .product_info .container,
    .Winery .container {
        padding: 0 60px;
    }
}

@media (max-width: 1024px) {
    footer .fmenu .nav-item:first-child .nav-link {
        padding-left: 2.73vw;
    }

    footer .fmenu .nav-item:last-child .nav-link {
        padding-right: 2.73vw;
    }

    footer .fmenu {
        justify-content: flex-start;
    }
}

@media (max-width: 992px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1030;
    }

    header.fixed-top {
        height: 60px;
    }

    .Logo {
        margin-top: 0;
        display: inline;
        text-align: left;
        width: auto;
    }

    main {
        margin-top: 54px;
    }

    .navbar-expand-lg {
        flex-wrap: nowrap;
    }

    .navbar {
        padding-top: 5px;
        padding-bottom: 0;
        box-shadow: none;
    }

    .topSearch {
        padding: 0 20px;
        top: 80px;
        right: 0;
        width: 100%;
        left: 0;
    }

    #navBars {
        background-color: #000;
        box-shadow: 0 15px 20px -10px rgb(0 0 0 / 25%);
        opacity: 0;
        transition: all .3s ease;
        margin: -45px auto 0;
        padding: 70px 30px 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
    }

    #navBars.show {
        opacity: 1;
        margin: -45px auto 0;
        padding: 70px 30px 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
    }

    #navBars .nav-item {
        width: 100%;
        text-align: center;
    }

    #navBars .nav-link {
        font-weight: 500;
        font-size: 20px;
    }

    #navBars .dropdown-menu {
        position: relative;
        top: auto;
        border-width: 0 0 1px;
    }

    #navBars .nav-item .dropdown-menu[data-bs-popper] {
        left: 0;
        transform: none;
        margin: 0 auto;
    }

    #navBars .nav-link:after {
        display: none;
    }

    .navbar-light .navbar-toggler {
        border-color: rgba(0, 0, 0, 0);
    }

    .navbar-toggler[aria-expanded=false] .navbar-toggler-icon {
        transition: all 0.3s ease;
    }

    .navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
        transform: rotate(450deg);
        transition: all 0.3s ease;
    }

    .navbar-expand-lg .navbar-collapse {
        width: 100%;
        position: absolute;
        top: 94px;
    }

    .container.first {
        margin-top: 80px;
    }

    .border-right::before {
        width: 100%;
        height: 100%;
        background-color: transparent;
        border: 1px solid #d8d8d8;
        border-radius: 7px;
    }

    .permo .col-md-4:last-child .border-right::before {
        display: block;
    }

    .link {
        text-align: center;
    }

    .permo .col-md-3:last-child .border-right::before {
        display: block;
    }

    .permo .card-text,
    .permo strong {
        text-align: center;
    }

    #navBars .nav-link.active,
    #navBars .nav-link:hover {
        color: #8A6E2F;
    }

    #navBars .nav-link:hover:before,
    #navBars .nav-link.active:before,
    #navBars .nav-link:hover:after,
    #navBars .nav-link.active:after {
        width: 0;
    }

    .product_list {
        margin-top: 75px;
    }
}

@media (max-width: 768px) {
    .productsList .form-check-input {
        left: 10px;
    }

    .slick-initialized.responsive2 .slick-slide .Winery_info .Winery_img {
        max-width: 80%;
        position: relative;
        right: auto;
        margin-bottom: 30px;
    }

    .responsive2 .slick-slide .Winery_info a.box {
        width: 100%;
        max-width: 80%;
        margin: 0 auto 30px;
    }
    .news_list {
        padding: 30px 0;
    }
    .newslist .card {
        flex-direction: column;
    }
    .newslist .card-body .noScroll {
        height: auto;
        padding-right: 0;
    }
    .newslist .card img {
        width: 100%;
        transform-origin: 50% 100%;
    }
    .newslist .card-body {
        padding: 30px 15px;
    }
    .news .slick-slide.card.card {
        flex-direction: column;
    }
    .news .slick-slide.card .card-body .niceScroll {
        height: auto;
        padding-right: 0;
    }
    .news .slick-slide.card img {
        width: 100%;
        transform-origin: 50% 100%;
    }
    .news .slick-slide.card .card-body {
        padding: 30px 15px;
    }
    .eventlist .card {
        flex-direction: column;
    }
    .eventlist .card-body .noScroll {
        height: auto;
        padding-right: 0;
    }
    .eventlist .card img {
        width: 100%;
        transform-origin: 50% 100%;
    }
    .eventlist .card-body {
        padding: 30px 15px;
    }
    .event .slick-slide.card.card {
        flex-direction: column;
    }
    .event .slick-slide.card .card-body .niceScroll {
        height: auto;
        padding-right: 0;
    }
    .event .slick-slide.card img {
        width: 100%;
        transform-origin: 50% 100%;
    }
    .event .slick-slide.card .card-body {
        padding: 30px 15px;
    }
    .slick-initialized .slick-slide a.more {
        margin: 10px auto -40px;
    }
    .event_list {
        padding: 30px 0;
    }
}

@media (max-width: 580px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        line-height: 40px;
        right: 10px;
        bottom: 14%;
    }
    #navBars.show {
        margin: -22px auto 0;
        padding: 70px 30px 20px;
        left: 50%;
    }

    .navbar-expand-lg .navbar-collapse {
        top: 70px;
    }

    #alb_content {
        width: calc(100% - 60px);
    }

    .shoppingSteps .col:before {
        top: 20%;
        left: -16%;
    }

    .shoppingSteps .col h5 {
        font-size: 13px;
    }

    .btnBig {
        min-width: 80%;
        white-space: nowrap;
    }

    .productsList .title2 {
        text-indent: 0;
    }

    .productsList a.image {
        width: 70px;
        margin: 0 10px 0 0;
    }

    .slick-prev {
        left: -20px;
    }

    .slick-next {
        right: 40px;
    }

    .slick-initialized.responsive2 .slick-slide a {
        max-width: 85%;
        min-height: 200px;
    }
    .product_info {
        padding: 30px 10px;
        background: #fff url(../img/SVG/productlistBg.svg) 50% -50% no-repeat;
    }
    .product_info .infomation:before {
        height: 0;
    }
    .alb_list {
        gap: 15px;
        padding: 15px 0;
        margin-top: 0;
    }

    footer .fmenu {
        justify-content: start;
    }

    footer p.copyright {
        display: block;
    }

    footer ul.list-unstyled {
        position: absolute;
        bottom: -6px;
    }

    footer .f_info ul.list-unstyled {
        position: relative;
        bottom: auto;
    }

    .responsive2 .slick-slide .Winery_info a.box {
        top: 10px;
        right: 0;
        width: 100%;
        max-width: calc(100% - 30px);
    }

    .banner18 {
        overflow: hidden;
        min-height: 50px;
        width: 100%;
        background-color: transparent;
    }

    .banner18 img {
        position: absolute;
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
    }

    .slick-initialized.responsive2 .slick-slide .Winery_info .products {
        gap: 5vw 1vw;
    }

    .slick-initialized.responsive2 .slick-slide .Winery_info .products .prod {
        width: 100%;
    }

    .slick-initialized.responsive2 .slick-slide .Winery_info .Winery_img {
        max-width: 100%;
        margin-bottom: 5px;
    }
    footer .f_info .logo_w {
        max-width: 80%;
    }
    .Winery .worldMap {
        display: none;
    }
    .Winery .worldMapBtn {
        display: flex;
    }
    .carousel-control-next, .carousel-control-prev {
        opacity: 1;
    }
    .latestNews .carousel-control-prev {
        left: 0;
    }
    .latestNews .carousel-control-next {
        right: 0;
    }
    .back-to-top:after {
        transform: translateY(-148%);
    }
    .Winery {
        padding: 5px 0 30px;
    }
    footer {
        padding: 0.75rem 0 120px 8vw;
    }
    .newslist .card h3 {
        font-size: 18px;
    }
    .eventlist .card h3 {
        font-size: 18px;
    }
    nav[aria-label="Page navigation"] {
        transform: scale(1);
    }
    .newslist {
        margin: 20px -8px;
    }
    .eventlist {
        margin: 20px -8px;
    }
    .latestNews .carousel-item {
        padding: 0;
    }
    .eventHighlights {
        padding: 45px 15px 10px;
    }
    .product_list {
        padding: 40px 5px;
    }
    .progressList {
        margin-top: 15px;
    }
    .product_info .titleBox {
        margin: 15px 0 0;
    }
    .latestNewsList {
        gap: 5px;
    }
    .event {
        padding: 40px 15px;
    }
    .news {
        padding: 40px 15px;
    }
    .Winery .container.bg {
        display: block;
    }
}

/* 首頁列表版：酩洋搶先報 / 品酩活動（對齊 newslist.html、eventlist.html） */
.home .latestNewsListHome .newslist {
    margin: 20px;
}

.home .latestNewsListHome .newslist .card-body {
    min-height: 360px;
    display: flex;
    flex-direction: column;
}

.home .latestNewsListHome .newslist .card-body .noScroll {
    height: 285px;
    overflow: hidden;
}

.home .latestNewsListHome .newslist .card .card-text {
    height: auto;
    overflow: hidden;
}

.home .latestNewsListHome .newslist .card-body > a.more {
    margin-top: auto;
}

.home .eventListHome {
    background-color: #3c3c3c;
}

.home .eventListHome .eventlist {
    margin: 20px;
}

.home .eventListHome .eventlist .card {
    border: 2px solid #8A6E2F;
    border-radius: 10px;
    box-shadow: 0 .125rem .25rem rgb(0 0 0 / 7.5%);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    margin-bottom: 0;
    cursor: auto;
}

.home .eventListHome .eventlist .card img {
    width: 49%;
    height: auto;
}

.home .eventListHome .eventlist .card-body {
    position: relative;
    height: auto;
    bottom: auto;
    left: auto;
    transform: none;
    background-color: transparent;
    padding: 30px 40px;
}

.home .eventListHome .eventlist .card-body::after {
    display: none;
}

.home .eventListHome .eventlist .time {
    display: block;
    float: none;
    padding: 0;
    margin: 0 0 8px;
    text-align: left;
}

.home .eventListHome .eventlist .times {
    font-size: 16px;
    font-weight: normal;
    letter-spacing: normal;
    line-height: 1.5em;
}

.home .eventListHome .eventlist .card-title {
    font-size: 18px;
    margin-bottom: 0;
    height: 30px;
    overflow-y: hidden;
    text-overflow: ellipsis;
}

.home .eventListHome .eventlist .card .card-text {
    font-size: 16px;
    margin-top: 0;
    opacity: 1;
}

@media (max-width: 768px) {
    .home .latestNewsListHome .newslist,
    .home .eventListHome .eventlist {
        margin: 20px 0;
    }
    .home .eventListHome .eventlist {
        margin: 20px 0;
        padding: 30px 20px;
    }

    .home .eventListHome .eventlist .card {
        flex-direction: column;
    }

    .home .eventListHome .eventlist .card img {
        width: 100%;
    }

    .home .eventListHome .eventlist .card-body {
        padding: 30px 15px;
    }
}

.famousWinery > .title2:first-of-type {
    display: none;
}

