@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Cormorant:ital,wght@0,300..700;1,300..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root{
    --cl-x: #A47764;
    --cl-y: #FFB160;
    --cl-gray: #F5F5F5;
    --fs-12: 12px;
    --fs-14: clamp(0.8125rem, 0.8rem + 0.0625vw, 0.875rem);
    --fs-18: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
    --fs-20: clamp(1.0625rem, 1.025rem + 0.1875vw, 1.25rem);
    --fs-24: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
    --fs-28: clamp(1.25rem, 1.15rem + 0.5vw, 1.75rem);
    --fs-36: clamp(1.5rem, 1.35rem + 0.75vw, 2.25rem);
    --fs-title: clamp(1.25rem, 1.1rem + 0.75vw, 2rem);

    --px-content: 8%;
    --py-content: 40px;
}


body{
    font-family: "Roboto", sans-serif;
    position: relative;
    overflow-x: hidden;
}

p:last-of-type{
    margin-bottom: 0;
}

a{
    color: #000;
    text-decoration: none;
}

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

.fs-12{
    font-size: var(--fs-12) !important;
}

.fs-14{
    font-size: var(--fs-14) !important;
}

.fs-18{
    font-size: var(--fs-18) !important;
}

.fs-20{
    font-size: var(--fs-20) !important;
}

.fs-24{
    font-size: var(--fs-24) !important;
}

.fs-28{
    font-size: var(--fs-28) !important;
}

.text-justify{
    text-align: justify !important;
}

.text-x{
    color: var(--cl-x) !important;
}

.text-y{
    color: var(--cl-y) !important;
}

.text-gray{
    color: var(--cl-gray);
}

/*background*/
.bg-x{
    background-color: var(--cl-x) !important;
}

.bg-y{
    background-color: var(--cl-y) !important;
}

.bg-gray{
    background-color: var(--cl-gray) !important;;
}

.btn-custom{
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 0;
    line-height: 1.5;
    font-weight: 500;
    font-family: "Lora", serif;
    position: relative;
    transition: all .3s ease-in-out;
    vertical-align: middle;
}

.btn-x{
    background-color: var(--cl-x);
    color: #fff;
    border: 1px solid var(--cl-x);
}

.btn-x:hover{
    color: #fff;
}

.btn-y{
    background-color: var(--cl-y);
    color: #fff;
    border: 1px solid var(--cl-y);
}

.btn-y:hover{
    color: #fff;
}

.btn-shape{
    background-color: transparent;
}

.btn-shape:after{
    content: "";
    position: absolute;
    top: 0.25rem;
    bottom: 0.25rem;
    left: -0.5rem;
    right: -0.5rem;
    pointer-events: none;
    transition: all .3s ease-in-out;
}
.btn-shape:hover:after{
    inset: 0;
}

.btn-shape-x{
    border: 2px solid var(--cl-x);
    color: var(--cl-x);
}

.btn-shape-x:after{
    border: 1px solid var(--cl-x);
}

.btn-shape-x:hover{
    background-color: var(--cl-x);
    color: #fff;
}


.btn-shape-white{
    border: 2px solid #fff;
    color: #fff;
}

.btn-shape-white:after{
    border: 1px solid #fff;
}

.btn-shape-white:hover{
    background-color: #fff;
    color:  var(--cl-x);
}


.image-cover{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-contain{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.block{
    padding: var(--py-content) var(--px-content);
    scroll-margin-top: 100px;
}

.bg-cover{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.main-title{
    margin-bottom: 0;
    font-weight: 700;
    font-size: var(--fs-title);
    text-transform: uppercase;
    font-family: "Lora", serif;
    position: relative;
}

.sub-title{
    margin-bottom: 0;
    font-weight: bold;
    font-size: 32px;
}

.box-shape-title{
    border-bottom: 1px solid var(--cl-x);
}
.box-shape-title .title{
    display: inline-block;
    margin-bottom: 0;
    padding: 0.5rem;
    background-color: var(--cl-x);
    color: #fff;
}


/*nav menu*/
.navbar{
    display: flex;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
    background-color: transparent;
}

.index .navbar{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}


.navbar>*{
    width: 100%;
    max-width: 100%;
}

.navbar-top{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.navbar-main{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.navbar-fixed{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: animate 1s;
    transition: all 0.2s ease-in-out;
    z-index: 30;
}

@keyframes animate {
    0% {
        transform: translateY(-100px);
    }
    100% {
        transform: translateY(0px);
   }
}

.navbar-fixed.navbar{
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.navbar-nav{
    width: 100%;
    justify-content: flex-end;
    align-items: center;
}

.navbar-nav .nav-item .nav-link{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    font-weight: 400;
    white-space: nowrap;
}

.navbar-nav .nav-item .nav-link,
.navbar-nav .nav-item .nav-link a{
    color: #000;
    transition: all 0.2s ease-in-out;
}

.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link.active a{
    color: var(--cl-x);
}

.navbar-nav .nav-item:hover .nav-link,
.navbar-nav .nav-item:hover .nav-link a{
    color: #2f7901;
}

/*===*/
.navbar-nav .dropdown-menu .dropdown-item{
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    white-space: normal;
}

.navbar-nav .dropdown-menu .dropdown-item:hover{
    background-color: var(--cl-x);
    color: #fff;
}

.navbar-nav .dropdown-menu .dropdown-item:active{
    background-color: var(--cl-y);
}

.navbar-nav .nav-item.dropdown .dropdown-menu{
    animation: menu 0.3s;
}

.navbar-nav .dropdown:hover > .dropdown-menu{
    display: block;
}

.navbar-nav .dropdown .dropdown-menu .dropdown .dropdown-menu{
    top: 0;
    left: 98%;
}

@keyframes menu {
    0% { transform: translateY(20px); }
    100% { transform: translateY(0px); }
}

.navbar-brand{
    margin: 0;
    padding: 0;
}

.logo{
    width: 100px;
    transition: all .3s ease-in-out;
}

.navbar-fixed .logo{
    width: 80px;
}

.btn-booking-header,
.btn-booking-header:after{
    border: 1px solid #000;
    color: #000;
    transition: all 0.2s ease-in-out;
}

.navbar-toggler{
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--cl-x);
    box-shadow: none !important;
    color: var(--cl-x);
}

.box-search-header{
    display: flex;
    width: 100%;
    padding: 0.4rem;
    border: 2px solid #DDDDDD;
    border-radius: 50rem;
    overflow: hidden;
    background-color: #fff;
}

.box-search-header input{
    flex: 1;
    width: 100%;
    padding: 0.25rem 1rem;
    border: none !important;
    outline: none;
    background-color: transparent;
    font-size: var(--fs-14);
}

.box-search-header button{
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.25rem;
    border: none;
    border-radius: 50%;
    font-size: var(--fs-14);
}

.btn-popup-search{
    padding: 0;
    border: 0;
    box-shadow: none !important;
    background-color: transparent;
    color: #fff;
    transition: all 0.2s ease-in-out;
}

.btn-popup-search svg{
    fill: #000;
    transition: all 0.2s ease-in-out;
}

.cart-shopping{
    display: flex;
    align-items: center;
    gap: 6px; 
    border-radius: 8px;
    color: #000;
    font-size: var(--fs-18);
    position: relative;
    transition: all 0.2s ease-in-out;
}

.label-quantity{
    position: absolute;
    top: -6px;
    right: -10px;
    width: 1rem;
    height: 1rem;
    font-size: 12px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #000;
}

.translate .lang-item{
    padding-left: 0.25rem;
    color: #000;
}

.translate .lang-item + .lang-item{
    border-left: 1px solid #000;
}

.translate .lang-item.active{
    color: var(--cl-x);
}


/*============*/
.swiper {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

/*banenr-page*/
.banner-page{
    min-height: clamp(11rem, 10rem + 5vw, 16rem);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.banner-page .title{
    display: block;
    margin-bottom: 0;
    font-weight: 700;
    color: #fff;
    font-size: clamp(1.5rem, 1.4rem + 0.5vw, 2rem);
    text-align: center;
    text-transform: uppercase;
    position: relative;
}

.banner-page .breadcrumb{
    justify-content: center;
    margin-bottom: 0;
}

.banner-page .breadcrumb .breadcrumb-item,
.banner-page .breadcrumb .breadcrumb-item a,
.banner-page .breadcrumb-item + .breadcrumb-item::before{
    color: #000;
}

.banner-page .breadcrumb .breadcrumb-item.active{
    color: #000;
}

.simple-breadcrumb{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #f4f4f4;
}
.simple-breadcrumb .breadcrumb{
    justify-content: center;
    margin-bottom: 0;
}

.simple-breadcrumb .breadcrumb .breadcrumb-item,
.simple-breadcrumb .breadcrumb .breadcrumb-item a,
.simple-breadcrumb .breadcrumb-item + .breadcrumb-item::before{
    color: #000;
    font-weight: 400;
    text-decoration: none;
    font-size: 14px;
}

.simple-breadcrumb .breadcrumb-item.active{
    color: #000;
}


/* Home ============*/
.wrapper-main-slide{
    position: relative;
}

.main-slide{
    overflow: hidden;
    position: relative;
    height: 100vh;
}

.main-slide::after{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  z-index: 1;
  content: "";
  background-image: url(../images/sky-cover.png);
  background-position: top center;
  background-repeat: repeat-x;
  background-size: contain;
  animation: cloudMove 60s linear 0s infinite;
  pointer-events: none;
}

@keyframes cloudMove {
  0% {
    background-position: -1920px 100%;
  }
  100% {
    background-position: 0 100%;
  }
}

.group-swiper-button{
    position: absolute;
    top: 50%;
    left: 5%;
    z-index: 1;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.main-slide-prev,
.main-slide-next{
    inset: unset;
    position: relative;
    width: clamp(1.75rem, 1.55rem + 1vw, 2.75rem);
    height: clamp(1.75rem, 1.55rem + 1vw, 2.75rem);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid #fff;    
    border-radius: 50%;
    margin: 0;
    color: #fff;
}

.main-slide-prev:after,
.main-slide-next:after{
    content: "";
}

.main-slide .swiper-pagination{
    width: auto;
    left: unset;
    bottom: unset;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.main-slide .swiper-pagination-bullet{
    width: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    height: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    border-radius: 50%;
    background-color: #fff;
}


.main-slide .swiper-slide{
    position: relative;
}

.main-slide .swiper-slide .banner-slide{
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    color: #fff;
    transform: translateY(-50%);
    overflow: hidden;
}

.main-slide .banner-slide h2{
    display: inline-block;
    margin: 0 0 0.5rem;
    font-size: clamp(1.75rem, 1.1rem + 3.25vw, 5rem);
    font-family: "Cormorant", serif;
    color: #fff;
    line-height: 1;
    opacity: 0;
    overflow: hidden;
    position: relative;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateX(200px);
}

.main-slide .banner-slide h2::after{
    content: "";
    width: 101%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    transition: 1s cubic-bezier(0.858, 0.01, 0.068, 0.99);
    z-index: 3;
    transform: translateX(-100%);
    transition-delay: 1s;
}

.main-slide .swiper-slide-active .banner-slide h2{
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1300ms;
}

.main-slide .swiper-slide-active .banner-slide h2::after{
    transform: translateX(1%);
    transition-delay: 1500ms;
}


.main-slide .banner-slide h5{
    text-align: left;
    font-size: clamp(1rem, 0.6rem + 2vw, 3rem);
    font-family: "Alex Brush", serif;
    font-weight: 300;
    line-height: 1;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateY(200px);
}

.main-slide .swiper-slide-active .banner-slide h5{
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1100ms;
}

.main-slide .banner-slide .btn-custom{
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateY(200px);
}

.main-slide .swiper-slide-active .banner-slide .btn-custom{
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1500ms;
}



/*Home========================*/

.box-main-title h1,
.box-main-title h2{
    margin-bottom: 0.5rem;
    font-size: var(--fs-title);
    font-family: "Lora", serif;
    position: relative;
}

.block-about .bg-cover{
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}

/**/
.icon-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    height: 100%;
    padding: 20% 10%;
    background-image: url('../images/bg-icon-box.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 1rem;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.icon-box .icon{
    width: clamp(4rem, 3.4rem + 3vw, 7rem);
    height: clamp(4rem, 3.4rem + 3vw, 7rem);
}

.icon-box .content{
    flex: 1;
    color: #fff;
    text-align: center;
    line-height: 1.2;
}

.icon-box .title{
    margin-bottom: 0.25rem;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    font-family: "Lora", serif;
    text-align: center;
}

.icon-box:hover{
    transform: translateY(-0.25rem);
}


/*===*/
.box-item-experience{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    height: 100%;
    padding: clamp(3rem, 2rem + 5vw, 8rem) 2rem;
    position: relative;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.box-item-experience .icon{
    width: 5rem;
    height: 5rem;
    transition: all .3s ease-in-out;
}

.box-item-experience .title{
    text-align: center;
    color: #fff;
    font-size: var(--fs-18);
    font-weight: 400;
    transition: all .3s ease-in-out;
}

.icon-view-arrow{
    position: absolute;
    top: 2rem;
    right: 1rem;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 50rem;
    color: #fff;
    transition: all .3s ease-in-out;
}

.box-item-experience:hover{
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(7.5px);
}

.box-item-experience:hover .icon{
    transform: translateY(-0.5rem);
}

.box-item-experience:hover .title{
    transform: translateY(-0.25rem);
}

.box-item-experience:hover .icon-view-arrow{
    transform: rotate(180deg);
}


/*===*/
.box-image-instagram{
    border-radius: 0.75rem;
    overflow: hidden;
}

.block-instagram .label-tittle{
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    width: calc(20% - 1rem);
    height: 100%;
    background-color: #fff;
    border-radius: 0.75rem;
}

.block-instagram .inner-label-tittle{
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100% - 1rem);
    margin-top: 1rem;
    margin-right: 1rem;
    background-color: var(--cl-x);
    border-radius: 0.75rem;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 700;
    font-family: "Lora", serif;
    color: #fff;
    position: relative;
}

.block-instagram .inner-label-tittle:after{
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid var(--cl-x);
    border-radius: 0.75rem;
    transform: translate(1rem, -1rem);
}

/*===*/
.achievement-icon{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
}

.achievement-icon .icon{
    width: 5rem;
    height: 5rem;
}

.achievement-icon .label-counter{
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.achievement-icon .label-name{
    font-family: "Lora", serif;
    font-size: var(--fs-18);
}

/*===*/
.form-booking .form-control{
    padding: 0.5rem 0;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #fff;
    border-radius: 0;
    color: #fff;
    box-shadow: none !important;
}

.form-booking select.form-control option{
    color: #000;
}

.form-booking .form-control::placeholder{
    color: #fff;
}

.form-booking .g-recaptcha-contact{
    transform: scale(0.8);
    transform-origin: 0 0;
}


/*===*/
.card-review{
    padding: 6px;
}

.card-review .card-review-inner{
    padding: 3rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.25);
    background-image: url('../images/bg-cover-review.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.card-review .thumbnail{
    width: 5rem;
    border-radius: 50%;
    overflow: hidden;
}

.card-review-top{
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-review-top .label-rate{
    font-size: var(--fs-14);
    color: #CAB82E;
}

.card-review-top .label-title{
    margin-top: 0.25rem;
    font-weight: 700;
    font-size: var(--fs-18);
    line-height: 1.2;
}

.card-review-bottom{
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--cl-x);
    transition: border .3s ease-in-out;
}

.card-review .card-review-inner:hover{
    background-color: var(--cl-x);
    color: #fff;
}

.card-review .card-review-inner:hover .card-review-bottom{
    border-color: #fff;
}

/*====*/
.box-img-partner{
    padding: 1rem;
    background-color: #fff;
    border-radius: clamp(0.25rem, 0.15rem + 0.5vw, 0.75rem);
}

.box-img-partner:hover{

}


/*===*/
.card-hover-zoom .thumbnail,
.card-hover-zoom-long .thumbnail{
    overflow: hidden;
}

.card-hover-zoom .thumbnail img{
    transition: all 0.3s ease-in-out;
}

.card-hover-zoom:hover .thumbnail img,
.card-hover-zoom-long:hover .thumbnail img{
    transform: scale(1.1);
}

.card-hover-zoom-long .thumbnail img{
    transition: all 1s ease-in-out;
}

.swiper-button-circle .swiper-button-next,
.swiper-button-circle .swiper-button-prev{
    width: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
    height: clamp(1.875rem, 1.75rem + 0.625vw, 2.5rem);
    background-color: #fff;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    color: var(--cl-x);
    opacity: 1;
    transition: all .3s ease-in-out;
    pointer-events: all;
}
.swiper-button-circle .swiper-button-next:after,
.swiper-button-circle .swiper-button-prev:after{
    content: "";
}

.swiper-button-circle.hover-show-button .swiper-button-next,
.swiper-button-circle.hover-show-button .swiper-button-prev{
    opacity: 0;
}
.swiper-button-circle.hover-show-button:hover .swiper-button-next,
.swiper-button-circle.hover-show-button:hover .swiper-button-prev{
    opacity: 1;
}
.swiper-button-circle.hover-show-button:hover .swiper-button-disabled{
    opacity: 0.5;
}


/*===*/
.card-service{
    position: relative;
}
.card-service .thumbnail{
    border-radius: 0.5rem;
    overflow: hidden;
}

.card-service .thumbnail img{
    transition: all .5s ease-in-out;
}

.card-service .content{
    position: absolute;
    inset: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(7.5px);
    text-align: center;
}

.card-service .title{
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: var(--fs-20);
    font-family: "Lora", serif;
    color: #fff;
    transition: all .3s ease-out;
}

.card-service:hover .thumbnail img{
    transform: scale(1.1);
}


/**/
.product-slide .swiper-slide{
    height: calc((100% - 30px) / 2) !important;
}

.card-product{
    position: relative;
}

.card-product .thumbnail{
    --bs-aspect-ratio: 120%;
    border-radius: 1rem;
    overflow: hidden;
}

.card-product .content{
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.card-product .category{
    color: var(--cl-x);
    text-transform: uppercase;
}

.card-product .title{
    margin-bottom: 0rem;
    height: 2.5rem;
    font-size: var(--fs-18);
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-price{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
    font-weight: 600;
}

.card-price .label-sale-price{
    color: #000;
}

.card-price .label-regular-price{
    color: #939393;
    text-decoration: line-through;
    font-size: var(--fs-14);
}

.cart-group-action{
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.75rem;
}
.cart-group-action [class*='item-']{
    background-color: #ccc;
    width: 2rem;
    height: 2rem;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: all .3s ease-in-out;
    cursor: pointer;
}
.cart-group-action [class*='item-'],
.cart-group-action [class*='item-'] a{
    color: var(--cl-x);
}

.cart-group-action [class*='item-']:hover{
    color: #fff;
    background-color: var(--cl-x);
}
.cart-group-action [class*='item-']:hover a{
    color: #fff;
}

/*===*/
.card-blog .thumbnail{
    border-radius: 1rem;
    overflow: hidden;
}

.card-blog .card-content{
    position: relative;
    margin-left: 1.5rem;
    margin-top: -2rem;
    padding: 1rem;
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.card-blog .box-date{
    position: absolute;
    top: 0;
    left: 1rem;
    transform: translateY(-100%);
    width: 4rem;
    height: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--cl-x);
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
}

.card-meta-box{
    margin-bottom: 0.5rem;
    color: rgba(0, 0, 0, 0.50);
}

.card-blog .box-user{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-blog .box-user .avatar{
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    overflow: hidden;
}


.card-blog .card-title{
    margin-bottom: 0.25rem;
    height: 3rem;
    font-size: var(--fs-20);
    font-weight: 700;
    font-family: "Cormorant Garamond";
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

.card-blog .description{
    font-size: 15px;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-blog .card-more{
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.30);
    font-family: "Cormorant Garamond";
    font-weight: 500;
    text-transform: uppercase;
}

.card-blog .card-more i{
    transition: all .3s ease-in-out;
}

.card-blog:hover .card-title{
/*    color: var(--cl-x);*/
}

.card-blog .card-more:hover i{
    transform: translateX(0.25rem);
}


/*===*/
.card-gallery{
    display: block;
    position: relative;
}

.card-gallery .title{
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all .3s ease-in-out;
    opacity: 0;
    transform: scale(0.7);
}
.card-gallery:hover .title{
    opacity: 1;
    transform: scale(1);
}

.card-gallery img{
    transition: all .2s ease-in-out;
}

.card-gallery:hover img{
    filter: brightness(0.5);
}

.text-writing-mode{
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 4rem;
    font-weight: 700;
    color: var(--cl-x);
}


.block-gallery .card-gallery .thumbnail{
    height: clamp(11.25rem, 9.125rem + 10.625vw, 21.875rem);
}


/**/
.footer{
    padding-top: 1.5rem;
    position: relative;
    color: #fff;
    font-size: var(--fs-18);
}

.footer-bottom{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.footer-top{
    position: relative;
    z-index: 1;
}

.footer-top:after{
    content: "";
    position: absolute;
    inset: 1rem;
    z-index: -1;
    background: rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(7.5px);
}

.footer a{
    color: #fff;
    text-decoration: none;
}

.footer a:hover{
    color: var(--cl-y);
}

.footer p{
    margin-bottom: 0.7rem;
}

.logo-footer{
    width: clamp(8.75rem, 8rem + 3.75vw, 12.5rem);
}

.title-footer{
    position: relative;
    margin-bottom: 1rem;
    font-size: var(--fs-20);
    font-weight: bold;
}

.list-footer ul{
    list-style: none;
    list-style-position: inside;
    margin-bottom: 0;
    padding-left: 0px;
}

.list-footer ul li a{
    position: relative;
}

.list-footer ul li a::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #fff;
    bottom: -4px;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .2s ease-in-out;
}

.list-footer ul li a:hover::before{
  transform-origin: left;
  transform: scaleX(1);
}

.list-footer ul li{
    transition: transform .2s ease-in-out;
}

.list-footer ul li:hover{
    transform: translateX(5px);
}

.list-footer ul li + li{
    margin-top: 0.7rem;
}

.list-footer ul li i{
    margin-right: 6px;
    color: var(--cl-x);
}

.social-contact{
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-contact .item{
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    border-radius: 50rem;
    background-color: transparent;
    color: #fff;
    font-size: var(--fs-20);
    transition: all .2s ease-out;
}

.social-contact .item.item-zalo{
    font-size: 12px;
    font-weight: 900;
    color: #fff;
}

.social-contact-footer .item:hover{
    animation: scale-icon 0.5s;
    background-color: var(--cl-x);
    color: #fff;
}

@keyframes scale-icon {
    0% { transform: scale(0.8); }
    100% { transform: scale(1); }
}

.coppyright{
    font-size: clamp(0.625rem, 0.5625rem + 0.3125vw, 0.9375rem);
    font-weight: 300;
    text-align: center;
}


/**/
.form-booking-footer .form-control{
    border: 1px solid #D9D9D9;
    border-radius: 0;
    box-shadow: none !important;
    background-color: transparent;
    color: #fff;
}

.form-booking-footer button{
    width: 100%;
    border-radius: 0;
    color: #303029;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.form-booking-footer .form-control::placeholder{
    color: #fff;
}

.form-booking-footer .g-recaptcha-contact{
    transform: scale(0.7);
    transform-origin: 0 0;
}    


/*===*/
.box-iframe iframe{
    width: 100%;
    max-width: 100%;
}
.box-iframe-contact iframe{
    /*height: 100%;*/
}

.contact-information{
    padding: 5% 20%;
    border-radius: 1rem;
    background-color: var(--cl-x);
}

.contact-information li{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-align: center;
}

.contact-information li + li{
    margin-top: 1.5rem;
}

.contact-information li span{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--cl-x)
}

#modalQuickView .btn-close{
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    box-shadow: none !important;
    z-index: 1;
}

/*===*/
.custom-cursor,
.custom-cursor-dot {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
}

.custom-cursor {
    width: 1.5rem;
    height: 1.5rem;
    border: 1px solid #4caf50;
    border-radius: 50%;
}

.custom-cursor-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #4caf50;
}


.ball {
    pointer-events: none;
    position: absolute; 
    width: 10px;
    height: 10px;
    z-index: 100;
    border-radius: 50%; 
    background: gray;
/*    background: radial-gradient(circle, #ffffff 0%, rgba(255, 255, 255, 0) 100%);*/
    animation: implode 1s ease-in-out;
    animation-fill-mode: both;
    filter: blur(5px);
    opacity: .1;
}

@keyframes implode {
    100% {transform: scale(0)}
}