.item-slider-stages:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000075;
    z-index: 9;
}


.slide-mv__info {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 50%;
    transform: translateY(50%);
    z-index: 999;
}

.slide-mv__ct-brief {
    color: white;
    font-size: 18px;
    display: inline-block;
    line-height: 1.5;
    text-transform: uppercase;
    font-weight: 200;
}

.slide-mv__img {
    position: relative;
    z-index: 1;
}

.slide-mv__img img {
    width: 100%;
    height: 88vh;
    /* animation: zoomInOut 6s ease-in-out infinite; */
}
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1); /* zoom lÃƒÆ’Ã‚Âªn */
  }
  100% {
    transform: scale(1); /* zoom vÃƒÂ¡Ã‚Â»Ã‚Â */
  }
}

.slide-mv__img-mask {
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 280px;
    width: 100%;
    background-color: white;
    -webkit-mask-image: url('../images/slider-cloud-bg.png');
    -webkit-mask-size: contain;
    -webkit-mask-position: bottom center;
    -webkit-mask-repeat: repeat-x;
}

.slide-mv__info {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 50%;
    transform: translateY(50%);
    z-index: 999;
}

.slide-mv__ct {
    color: white;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
}

.slide-mv__ct-logo img {
       display: inline-block;
    margin-top: 35px;
    height: 110px;
    width: auto;
}

.item-slider-stages {
    position: relative;
    z-index: 9999;
}

.slide-mv__ct-brief {
    border-radius: 24px;
    color: white;
    font-size: 20px;
    display: inline-block;
    padding: 15px 35px;
    line-height: 1.5;
    font-weight: 300;
}

.slide-mv__ct-ttl {
    font-size: 30px;
    font-weight: 700;
    max-width: 67%;
    line-height: 1.4;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
    margin: 0 auto !important;
    padding: 10px 0px;
}

a.btn-rooms {
    padding: 13px 40px;
    display: inline-block;
    border: 1px solid #fff;
    color: #fff;
    margin-top: 20px;
}







section.widget-form-room {
    position: absolute;
    bottom: 0;
    width: 100%;
}

form.kodelisting-form-wrap {
    margin: 0;
    align-items: center;
    display: flex;
    position: relative;
    justify-content: space-between;
}

.kodelisting-form-field {
    display: flex;
    align-items: center;
    gap: 0px 14px;
}

.kodelisting-reservation-form .kodelisting-form-icon {
    width: 20px;
    height: 25px;
    margin-right: 3px;
}

.kodelisting-reservation-form .kodelisting-form-icon svg {
    width: 20px;
    height: auto;
}

.kodelisting-reservation-form .kodelisting-form-icon svg path {
    fill: #b07f23;
}

.kodelisting-reservation-form .field-wrap {
    flex: 1 1 auto;
    position: relative;
}

label.kodelisting-form-label {
    color: #666666;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 0px;
}

.field-input-wrap.checkin-date input {
    color: #666666;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
}

.kodelisting-reservation-form .kodelisting-dropdown {
    position: absolute;
    bottom: -12px;
    left: 0;
    transform: translateY(100%);
    z-index: -1;
    display: block;
    min-width: 320px;
    background: #FFFFFF;
    color: #000;
    border: 1px solid #b07f23;
    box-shadow: 0 0 50px rgba(50, 50, 50, 0.2);
    padding: 30px;
    transition: 0.3s;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.kodelisting-reservation-form .kodelisting-dropdown.is-open {
    z-index: 999;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.field-input-wrap.has-dropdown input {
    color: #666666;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 400;
}

.kodelisting-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.kodelisting-reservation-form .kodelisting-dropdown .kodelisting-quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kodelisting-reservation-form .kodelisting-dropdown .kodelisting-quantity .input-text {
    padding: 0;
    margin: 0;
    width: 40px;
    height: auto;
    background: none;
    border: none;
    text-align: center;
    color: inherit;
    font-size: 16px;
    line-height: 1.2;
}

.kodelisting-reservation-form .kodelisting-dropdown .kodelisting-quantity .minus:before,
.kodelisting-reservation-form .kodelisting-dropdown .kodelisting-quantity .plus:before {
    width: 12px;
    height: 1px;
}

.kodelisting-reservation-form .kodelisting-dropdown .kodelisting-quantity .minus:before,
.kodelisting-reservation-form .kodelisting-dropdown .kodelisting-quantity .minus:after,
.kodelisting-reservation-form .kodelisting-dropdown .kodelisting-quantity .plus:before,
.kodelisting-reservation-form .kodelisting-dropdown .kodelisting-quantity .plus:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    content: "";
    background: currentColor;
}

.kodelisting-reservation-form .kodelisting-dropdown .kodelisting-quantity .minus,
.kodelisting-reservation-form .kodelisting-dropdown .kodelisting-quantity .plus {
    position: relative;
    background: none;
    border: none;
    box-shadow: none;
    outline: none;
    width: 30px;
    height: 30px;
    padding: 0;
    color: inherit;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
}

.kodelisting-reservation-form .kodelisting-dropdown .kodelisting-quantity .minus:before,
.kodelisting-reservation-form .kodelisting-dropdown .kodelisting-quantity .minus:after,
.kodelisting-reservation-form .kodelisting-dropdown .kodelisting-quantity .plus:before,
.kodelisting-reservation-form .kodelisting-dropdown .kodelisting-quantity .plus:after {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    content: "";
    background: currentColor;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    word-wrap: normal !important;
    border: 0;
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    overflow-wrap: normal !important;
    padding: 0;
    position: absolute !important;
    width: 1px;
}

.kodelisting-reservation-form .kodelisting-dropdown .kodelisting-quantity .plus:after {
    width: 1px;
    height: 12px;
}



.kodelisting-reservation-form {
    background-color: #FFFFFF;
    padding: 20px 40px 20px 40px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
}

.slideshows-banner {
    position: relative;
}









section.box-Most-Safe {
    padding: 40px 0px;
}

.sub-title-outer .subtitle {
    position: relative;
    display: inline-block;
    z-index: 1;
    color: #666666;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

h5.icon-box-title {
    font-size: 20px;
    margin: 0px 0px 15px 0px;
    color: #000;
    font-weight: 200;
}

.desc-content-abouts-pages p {
    font-size: 17px;
    margin: 0px 0px 15px 0px;
    color: #b07f23;
    text-align: justify;
}

.section-item2-abouts-pages p {
    font-size: 16px;
    color: #666;
}

.icon-box-wrapper {
    display: flex;
    gap: 0px 13px;
    align-items: center;
}

.list-the-best {
    display: flex;
    gap: 0px 50px;
}

.item-the-best {
    max-width: 100%;
}

.list-btn-abouts-the-best {
    display: flex;
    align-items: center;
    margin-top: 30px;
    gap: 0px 42px;
}

.sub-title-outer .subtitle:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 100%;
    margin-left: 5px;
    width: 37px;
    height: 10px;
    background-image: url(../images/before.png);
}
.item-slider-stages.slick-slide.slick-current.slick-active img {
        animation: zoomInOut 6s ease-in-out;
}
.slide-mv__ct {
    transform: translateY(47%);
    opacity: 0;
    transition: 0.8s ease;
}

.item-slider-stages.slick-slide.slick-current.slick-active .slide-mv__ct {
    transform: translateY(0px);
    opacity: 1;
    transition: 0.8s ease;
}
.item-the-best .icon-box-title {
    margin-bottom: 0px;
}

.right-current-theme {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    padding-left: 20px;
}

.images-most-safe img {
    height: 552px;
    width: 100%;
    object-fit: contain;
        display: block;
}

.list-the-best .icon-box-wrapper .icon-text {
    width: 45%;
}

.list-btn-abouts-the-best .btn-theme-colored1 {
    font-size: 15px;
    font-weight: 600;
}

section.Luxury_Rooms {
    padding: 40px 0px 20px;
}

.hedding-pages-rooms {
    text-align: center;
}

.hedding-pages-rooms .sub-title-outer .subtitle:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 100%;
    margin-left: 5px;
    width: 37px;
    height: 10px;
    
}

.hedding-pages-rooms .sub-title-outer .subtitle:after {
    content: "";
    position: absolute;
    top: 10px;
    right: 100%;
    margin-right: 5px;
    width: 37px;
    height: 10px;
    background-image: url(../images/before.png);
}

.hedding-pages-rooms .title-hedding-split-line h2 {
    font-size: 50px;
    font-weight: 200;
    color: #222;
}


section.Luxury_Rooms .list-suite-rooms-night {
    margin-top: 30px;
}

section.Luxury_Rooms .item-suite-rooms-night {
    position: relative;
    overflow: hidden;
}

section.Luxury_Rooms .content-box {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: right;
    padding: 20px;
    transform: translateY(80px);
    overflow: hidden;
    transition: 0.5s ease;
    z-index: 9;
}

section.Luxury_Rooms .images-suite-rooms-night img {
    display: block;
}

section.Luxury_Rooms .content-box .title h6 a {
    font-size: 27px;
}

section.Luxury_Rooms .content-box .title a {
    color: #fff;
    font-size: 26px;
    font-weight: 200;
}

section.Luxury_Rooms .content-box .price {
    color: #fff;
}

section.Luxury_Rooms a.book-btn {
    padding: 7px 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    display: inline-block;
}

section.Luxury_Rooms .kodelisting-icon i {
    font-size: 16px;
    color: #fff;
}

section.Luxury_Rooms ul.kodelisting-room-basic-info-minimal {
    display: flex;
    gap: 0px 20px;
}

section.Luxury_Rooms .box-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 10px;
    margin-top: 20px;
    /* opacity: 0; */
    /* visibility: hidden; */
}

section.Luxury_Rooms .item-suite-rooms-night:hover .content-box {
    transform: translateY(10px);
    transition: 0.5s ease;
}

section.Luxury_Rooms .item-suite-rooms-night img {
    transform: scale(1);
    transition: 0.5s ease;
    height: 350px;
}

section.Luxury_Rooms .item-suite-rooms-night:hover img {
    transform: scale(1.2);
    transition: 0.5s ease;
}



.Hotel_Facilities .header {
    text-align: center;
    margin-bottom: 60px;
}

.Hotel_Facilities .brand {
    font-size: 14px;
    color: #b8860b;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 300;
}

.Hotel_Facilities .title {
    font-size: 48px;
    color: #2c3e50;
    font-weight: 400;
    margin-bottom: 20px;
}

.Hotel_Facilities .facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    row-gap: 70px;
    margin-top: 70px;
}

.Hotel_Facilities .facility-item {
    text-align: center;
    padding: 70px 20px 40px;
    background-color: #024324;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #c79e66;
    position: relative;
    color: #FFF;
    position: relative;
}

.Hotel_Facilities .facility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.Hotel_Facilities .facility-item:hover .image-elegance{
    background: #024324;
    border: 7px solid #FFF;
}


.Hotel_Facilities .facility-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    stroke: #b8860b;
    fill: none;
    stroke-width: 1.5;
}

.Hotel_Facilities .facility-title {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 400;
}

.Hotel_Facilities .facility-description {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0 auto;
}

section.decorative-elements {
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.box-content-decorative-elements {
    padding-top: 195px;
    padding-bottom: 61px;
}

section.decorative-elements .title-hedding p {
    position: relative;
    display: inline-block;
    z-index: 1;
    color: #c7c7c7;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 7.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}



section.decorative-elements .title-hedding p:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 100%;
    margin-left: 5px;
    width: 37px;
    height: 10px;
}

section.decorative-elements .hedding-member-pages h2 {
    font-size: 50px;
    color: #fff;
    font-weight: 300;
    width: 54%;
}

section.Hotel_Facilities {
    padding: 40px 0px 90px;
    background-position: center;
    background-repeat: no-repeat !important;
    background-size: cover;
}

section.Fitness_Center {
    padding: 40px 0px;
}

section.Fitness_Center .images_Fitness_Center {
    margin-right: -105px;
    position: relative;
    z-index: 9;
}

section.Fitness_Center .inner-column {
    position: relative;
    background-color: #f8f5f0;
    padding: 60px 60px 80px 200px;
    margin-top: 50px;
}

section.Fitness_Center .inner-column:before {
    content: "";
    position: absolute;
    top: 0;
    left: 200px;
    width: 95px;
    height: 11px;
    background-color: #b07f23;
}

section.Fitness_Center .inner-column .sec-title {
    margin-bottom: 35px;
}

section.Fitness_Center .service-subtitle {
    position: relative;
    font-size: 18px;
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 6px;
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: 100;
    font-family: "Playfair Display", serif;
}

section.Fitness_Center h2.service-title {
    font-size: 48px;
    font-weight: 100;
}

section.Fitness_Center .service-details {
    margin-top: 8px;
    color: #666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

section.Fitness_Center .btn-view-details a {
    color: #b07f23;
    border: 1px solid #b07f23;
    border-width: 1px;
    padding: 1rem 2.5rem;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
}

/* .Hotel_Facilities .facility-item:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 95px;
    height: 11px;
    background-color: #f8f5f0;
    transform: translateX(-50%);
} */

section.Fitness_Center .row:nth-child(2n) .inner-column {
    padding: 61px 231px 70px 60px;
}

section.Fitness_Center .row:nth-child(2n) .images_Fitness_Center {
    position: relative;
    z-index: 9;
    margin-right: 0;
    margin-left: -105px;
}

section.Fitness_Center .row {
    margin-bottom: 50px;
}

.category-list .slick-slide {
    margin: 10px 15px;
}

.category-list .slick-list {
    margin: 0 -15px;
}

.category-list {
    margin-top: 15px;
}

.category-list .item {
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
    transition: transform .3s, box-shadow .3s, background-color .3s, color .3s, opacity .3s;
    overflow: hidden;
    background: #000;
}

.category-list .item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .1);
}

.category-list .item:hover .box-image {
    transform: translateY(-5px);
}

.category-list .item:hover .box-image img {
    transform: scale(1.1);
}

.category-list .item:hover .box-text {
    /* background: #000000c2; */
    transform: translateY(-15px);
}

.category-list .item img {
    transition: filter .6s, opacity .6s, transform .6s, box-shadow .3s;
}

.category-list .box-text {
    transition: opacity .3s, transform .3s, background-color .3s;
}

.category-list .box-text .text {
    font-size: 14px;
    display: block;
    padding: 15px 15px 20px;
    text-align: center;
    color: #FFF;
    font-size: 16px;
    text-transform: uppercase;
    background: #000000c2;
}

section.Check_Availability .item-left-Check_Availability {
    width: 40%;
    background-color: #fff;
    padding: 40px 15px 20px;
    border-top: 4px solid #007341;
}

section.Check_Availability .box-form-Check_Availability p {
  position: relative;
    display: inline-block;
    z-index: 1;
    color: #666666;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 3.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
    transition: all 0.3s 
ease;
    padding-bottom: 0;
}

section.Check_Availability .box-form-Check_Availability h2 {
  font-size: 30px;
    font-weight: 100;
    color: #222;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

section.Check_Availability .field-input-wrap.checkin-date input {
    height: 48px;
    font-size: 14px;
    background: none;
    border-color: rgb(2 123 70 / 16%);
    border-style: solid;
    border-width: 1px;
    border-radius: 0;
    color: #666666;
    width: 100%;
    padding: 0px 12px;
}

section.Check_Availability .field-wrap {
    width: 100%;
}

section.Check_Availability .kodelisting-form-label {
    margin-bottom: 5px;
}

section.Check_Availability .btn-theme-colored1 {
    width: 100%;
    font-weight: 600;
    font-size: 16px;
}

section.Check_Availability .kodelisting-form-field {
    margin-bottom: 20px;
}


section.Check_Availability .container-Check_Availability {
    display: flex;
    height: 100%;
    align-items: center;
    position: relative;
    top: -50px;
}

section.Check_Availability .item-right-Check_Availability {
    height: 100%;
    padding: 0px 80px;
    width: 60%;
    display: flex;
    align-items: center;
    padding-right: 0px;
}

section.Check_Availability {
    background-position: center right !important;
    background-repeat: no-repeat !important;
    position: relative;
}

section.Check_Availability .hedding-item-right-Check_Availability p {
    position: relative;
    display: inline-block;
    z-index: 1;
    color: #d2d2d2;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    padding-bottom: 0;
}

section.Check_Availability .hedding-item-right-Check_Availability p:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 100%;
    margin-left: 5px;
    width: 37px;
    height: 10px;
    background-image: url(../images/before.png);
}

section.Check_Availability .hedding-item-right-Check_Availability h2 {
    color: #fff;
    font-size: 50px;
    font-weight: 200;
    margin-bottom: 15px;
}

section.Check_Availability .content-item-right-Check_Availability {
    color: #Fff;
}

section.Check_Availability .content-item-right-Check_Availability p {
    padding-bottom: 20px;
}

section.Check_Availability .hotline-item-right-Check_Availability {
    display: flex;
    align-items: center;
    gap: 0px 20px;
    color: #FFF;
}

section.Check_Availability .hotline-item-right-Check_Availability .icon-text span {
    color: #FFF;
}

section.Check_Availability .content p {
    margin-bottom: 0px;
    padding-bottom: 0px;
}

section.Check_Availability h5.icon-box-title {
    font-size: 24px;
    color: #fff;
}


section.Check_Availability .ctnr:before {
    position: absolute;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center;
    left: -59px;
    width: 439px;
    height: 640px;
    content: "" "";
}

section.Check_Availability .ctnr {
    position: relative;
}

section.Check_Availability .box-content-desc-right-Check_Availability {
    margin-top: 70px;
}


section.blog-news {
    padding: 40px 0px;
    background: url( ../images/bg-shape-1.png);
    background-position: bottom left;
    background-repeat: no-repeat;
}

.list-item-blog-news .splide__track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}


.splide__track {
    position: relative;
    display: block;
    /* margin-left: 3rem; */
    /* width: 30%; */
    margin-top: 30px;
}

.splide__slide {
    position: relative;
}

.news-img {
    position: relative;
}

a.news-cat.shadow-sm {
    margin-left: -3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    height: 100%;
    font-size: 13px;
    letter-spacing: .135rem;
    background-color: #fff;
    color: #144121;
    width: 3rem;
    z-index: 1;
    box-shadow: 0 0.15rem 0.35rem rgba(0, 0, 0, 0.075);
}

a.news-cat.shadow-sm strong {
    transform: rotate(180deg);
    writing-mode: vertical-lr;
    text-transform: uppercase;
    font-weight: 700;
}

.news-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #ffffffd9;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.25;
    padding: .5rem;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.news-date span:last-child {
    border-top: 1px solid #000;
}

.news-content.shadow-sm {
    padding: 1.5rem;
    background-color: #fff;
    box-shadow: 0 0.15rem 0.35rem rgba(0, 0, 0, 0.075);
}

h3.news-title a {
    font-size: 19px;
}

h3.news-title {
    line-height: unset;
}

a.velora-hedding {
    font-size: 19px;
    font-weight: 400;
    line-height: 1.1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

figure.image-hover.image-hover-overlay img {
    display: block;
    width: 100%;
    height: 230px;
}

a.news-link svg {
    width: 25px;
    height: 25px;
    margin-left: 10px;
}

a.news-link {
    display: inline-flex;
    align-items: center;
    color: #027b46;
}

.comment-view {
    padding-top: 10px;
}

.news.hover-effect {
    padding-left: 40px;
    padding-right: 10px;
    transition: 0.5s ease;
}

.splide__track button svg {
    width: 20px;
    height: 20px;
    fill: #fff !important;
}

button.slick-prev-blogs.slick-arrow {
    -ms-flex-align: center;
    position: absolute;
    align-items: center;
    background: #144121;
    color: #fff;
    border: 0;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 1;
    padding: 0;
    top: 50%;
    width: 40px;
    height: 40px;
    font-size: .85rem;
    z-index: 1;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: .25s ease-in-out;
    right: 0;
    opacity: 0;
}

button.slick-prev-blogs.slick-arrow svg path {
    fill: #fff;
    stroke: #fff;
}

.splide__track button svg path {
    stroke: #fff;
    fill: #fff;
}

button.slick-next-blogs.slick-arrow {
    -ms-flex-align: center;
    position: absolute;
    align-items: center;
    background: #144121;
    color: #fff;
    border: 0;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 1;
    padding: 0;
    top: 50%;
    width: 40px;
    height: 40px;
    font-size: .85rem;
    z-index: 1;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: .25s ease-in-out;
    left: 35px;
    opacity: 0;
}

button.slick-next-blogs.slick-arrow svg {
    transform: rotate(180deg);
}

.splide__track:hover button.slick-next-blogs.slick-arrow,
.splide__track:hover button.slick-prev-blogs.slick-arrow {
    opacity: 1;
}

.hover-effect:hover {
    transform: translateY(-.5rem);
}


a.velora-hedding h2 {
    font-size: 18px;
}

.comment-view p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-bottom: 0px;
    margin-bottom: 15px;
    font-weight: 500;
}

section.decorative-elements h2 .title-part1 {
    color: #fff !important;
}

section.decorative-elements h2.title.tm-split-text.split-in-right .title-part1 {
    width: 64%;
}

section.Check_Availability h2.title.tm-split-text.split-in-right .title-part1 {
    color: #fff;
}

section.box-Most-Safe h2.title.tm-split-text.split-in-right .title-part1 {
    width: 94%;
    font-size: 33px;
}
.desc-content-abouts-pages {
    padding-top: 0px;
}
.icon.icon-default img {
    height: auto;
    width: 64px;
}

.list-btn-abouts-the-best .btn-2-abouts img {
    width: 42px;
    height: auto;
}

.image-elegance img {
    height: 58px;
}

.image-elegance {
    margin-bottom: 0px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100px;
    width: 100px;
    background: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: .3s;
}

.list-fitness-home-pages {
    padding-top: 50px;
}

.images_Fitness_Center {
    overflow: hidden;
    position: relative;
}

.images_Fitness_Center img {
    transform: scale(1);
    transition: 0.5s ease;
    display: block;
}

.images_Fitness_Center:hover img {
    transform: scale(1.3);
    transition: 0.7s ease;
}

.box-content-fitness h5.service-subtitle:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 100%;
    margin-left: 5px;
    width: 37px;
    height: 10px;
}

.icon-item-right-Check_Availability img {
    height: 46px;
}

.hotline-item-right-Check_Availability .icon-text p {
    padding-bottom: 0px !important;
}
.field-input-wrap.checkin-date select {
    height: 48px;
    font-size: 14px;
    background: none;
    border-color: rgb(2 123 70 / 16%);
    border-style: solid;
    border-width: 1px;
    border-radius: 0;
    color: #666666;
    width: 100%;
    padding: 0px 12px;
}
.desc-content-elegance h3 {
       font-weight: 600;
    font-size: 20px;
    padding-bottom: 10px;
    text-transform: uppercase;
}

section.reviews {
    padding: 30px 0px;
    background: #f7f8fa;
}
.customers-item {
    padding: 4rem 3.2rem;
    border-radius: 5px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.customers-item .des {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 96px;
    font-size: 15px;
}

.customers-item {
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 1px -2px 8px 0px;
    padding: 30px 30px 50px 34px;
    position: relative;
    transition: 0.4s;
    z-index: 1;
    border: 1px solid rgb(238, 238, 238);
    margin-top: 10px;
    height: unset !important;
}
.customers-item__brief {
    margin-bottom: 19px;
    overflow: hidden;
    display: -webkit-box;
    text-align: center;
    -webkit-box-orient: vertical;
}
.icon-customers {
    text-align: center;
    display: flex
;
    justify-content: center;
    padding-bottom: 20px;
}
.customers-item__info {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    flex-direction: column;
    margin-top: -45px;
    position: relative;
    z-index: 9999;
}
.customers-item__info-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    position: relative;
    border-style: solid;
    border-width: 5px;
    border-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 20px 20px 40px 0px;
}
.customers-item__info-img::before {
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    content: "";
    z-index: 1;
}
.customers-item__info-img img {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    z-index: 9;
}
.customers-item__info-name {
    display: block;
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 5px;
    line-height: 1.2;
    color: #007341;
}
.swal2-container{
    z-index: 999999 !important;
}
.hover-btn {
    position: relative;
}
section.Fitness_Center .btn-view-details a span{
    color:#dcaf41;
}
a.btn.btn-outline-theme-colored1.btn-outline.hover-btn:hover span {
    color: #Fff;
}
section.Luxury_Rooms a.book-btn:hover {
    background: #dcaf41;
    color: #Fff;
    transition: 0.5s ease;
}
.hover-btn:before {
    background-color: #007341;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    transform: scale(0, 1);
    transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    transform-origin: top right;
}

.hover-btn:hover:before {
    background-color: #007341;
    transform: scale(1, 1);
    transform-origin: bottom left;
}

.hover-btn span {
    position: relative;
    color: #fff;
    z-index: 9;
    font-size: 18px;
    font-weight: 500;
}
section.Check_Availability:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}


.images-most-safe {
    position: relative;
    overflow: hidden;
}

.images-most-safe:before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    animation: shine 2s infinite 2s;
    display: block;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.icon-box-wrapper .icon-text {
    line-height: 1.3;
}

a.news-link svg path {
    fill: currentColor;
}

.reviews-grid {
    margin-top: 25px;
}
.customers-item__info-img:after {
    content:"";
    width: 70px;
    height: 70px;
    top: -6px;
    left: -7px;
    position: absolute;
    background-color: #03814a61;
    border-radius: 100%;
    border: 2px solid transparent;
    -webkit-animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    animation: phonering-alo-circle-fill-anim 2.3s infinite ease-in-out;
    transition: all .5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    z-index: 0;
	
}
@-webkit-keyframes phonering-alo-circle-fill-anim {
	0% {
		-webkit-transform: rotate(0) scale(0.7) skew(1deg);
		opacity: 0.6;
	}

	50% {
		-webkit-transform: rotate(0) scale(1) skew(1deg);
		opacity: 0.6;
	}

	100% {
		-webkit-transform: rotate(0) scale(0.7) skew(1deg);
		opacity: 0.6;
	}
}

.images_Fitness_Center:before {
     position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    animation: shine 2s infinite 2s;
    display: block;
}
ul.kodelisting-room-basic-info-minimal li img {
    width: 25px;
    height: 25px !important;
    object-fit: fill;
}
























.abouts-list-content .container-abouts-content {
    padding: 40px 0; 
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.abouts-list-content .product-image {
    position: relative;
}
.abouts-list-content .circular-bg {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #f4c2a1 0%, #e8a373 100%);
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.abouts-list-content .product-items {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
}
.abouts-list-content .serum-bottle {
    position: absolute;
    top: 20px;
    left: 50px;
    width: 120px;
    height: 180px;
    background: linear-gradient(to bottom, #fff 0%, #f8f8f8 100%);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: rotate(-10deg);
}
.abouts-list-content .serum-bottle::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 20px;
    background: #8b4513;
    border-radius: 50%;
}
.abouts-list-content .serum-label {
    position: absolute;
    top: 30px;
    left: 10px;
    right: 10px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 8px;
    text-align: center;
    font-weight: bold;
}
.abouts-list-content .small-bottles {
    position: absolute;
    bottom: 40px;
    right: 20px;
    display: flex;
    gap: 8px;
}
.abouts-list-content .small-bottle {
    width: 25px;
    height: 35px;
    background: linear-gradient(to bottom, #8b4513 0%, #654321 100%);
    border-radius: 4px;
    position: relative;
}
.abouts-list-content .small-bottle::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 8px;
    background: #8b4513;
    border-radius: 50%;
}
.abouts-list-content .product-box {
    position: absolute;
    bottom: 10px;
    left: 20px;
    width: 140px;
    height: 100px;
    background: linear-gradient(135deg, #f4c2a1 0%, #e8a373 100%);
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.abouts-list-content .product-box-label {
    position: absolute;
    top: 20px;
    left: 10px;
    right: 10px;
    height: 40px;
    background: #2c5530;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 7px;
    text-align: center;
    font-weight: bold;
}
.abouts-list-content .content {
    padding: 0 20px;
}
.abouts-list-content .brand-tag {
    background: linear-gradient(90deg, rgb(0 115 65) 0%, rgb(12 162 97) 50%, rgb(220 175 65) 100%);
    color: #FFF;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.abouts-list-content .main-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 11px;
}
.abouts-list-content .description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}
.abouts-list-content .description .highlight {
    color: #d4af37;
    font-weight: 600;
}
.abouts-list-content .description .italic {
    font-style: italic;
    color: #8b4513;
}
.abouts-list-content .rating-section {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 16px;
}
.abouts-list-content .rating-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(#007341 0deg 352.8deg, #e0e0e0 352.8deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.abouts-list-content .rating-circle::before {
    content: '';
    position: absolute;
    width: 82px;
    height: 82px;
    background: white;
    border-radius: 50%;
}
.abouts-list-content .rating-text {
    position: relative;
    z-index: 1;
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
}
.abouts-list-content .rating-label {
    color: #2c3e50;
    font-weight: 600;
    font-size: 21px;
    position: relative;
    padding-top: 13px;
}
.abouts-list-content .cta-button {
    background: linear-gradient(90deg, rgb(0 115 65) 0%, rgb(12 162 97) 50%, rgb(220 175 65) 100%);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-left: 20px;
    font-size: 18px;
}
.abouts-list-content .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}
@media (max-width: 768px) {
    .abouts-list-content .container-abouts-content {
        grid-template-columns: 1fr;
        gap: 40px;
   }
    .abouts-list-content .circular-bg {
        width: 320px;
        height: 320px;
   }
    .abouts-list-content .main-title {
        font-size: 2rem;
        line-height: 1.6;
   }
    .abouts-list-content .rating-section {
        align-items: flex-start;
        gap: 20px;
        flex-wrap: wrap;
        align-items: center;
   }
}


.abouts-list-content .rating-label:before {
   content: "";
   position: absolute;
   height: 5px;
   background: #007341;
   width: 100px;
   top: 0;
}
.servicer-list .services {
    padding: 40px 0;
}
.servicer-list .services {
    background: #faf4f2;
}
.servicer-list .box-hedding-pages {
    padding-bottom: 45px;
    text-align: center;
}
.servicer-list .box-hedding-pages span {
    display: block;
}
.servicer-list .box-hedding-pages img {
    height: 80px !important;
}
.servicer-list .box-hedding-pages h2 {
    font-size: 30px;
    margin-top: 10px;
    display: inline-block;
    position: relative;
}

.servicer-list .service-block-style5 .inner-box {
    background-color: #fff;
    border-radius: 20px;
    margin-top: 30px;
    padding: 30px 30px 40px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}
.servicer-list .service-block-style5 .inner-box .thumb-icon {
       height: 69px;
    width: 87px;
    line-height: 100px;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
    text-align: center;
}
.servicer-list .service-block-style5 .inner-box .thumb-icon .bg {
       position: absolute;
    top: 0;
    z-index: -1;
    height: 87px;
    width: 64px;
}

.servicer-list .service-block-style5 .inner-box .thumb-icon .bg .img-2 {
    display: none;
}

.servicer-list .service-block-style5 .inner-box:hover .img-2 {
    display: block !important;
}

.servicer-list .service-block-style5 .inner-box:hover .img-1 {
    display: none;
}

.servicer-list .service-block-style5 .inner-box .shape-btn {
    position: absolute;
    right: -19px;
    top: -33px;
    width: auto;
    height: auto;
}
.servicer-list .service-block-style5 .inner-box  .shape-btn svg path {
    fill: #f9f3f0 !important;
}
.servicer-list .service-block-style5 .inner-box .service-btn {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
}
.servicer-list .service-block-style5 .inner-box .service-btn .btn {
    align-items: center;
    background: #fff;
    border-radius: 12px;
    display: flex;
    font-weight: 700;
    height: 64px;
    justify-content: center;
    width: 104px;
}

.servicer-list .service-block-style5 .inner-box .service-btn .btn svg {
    width: 30px;
    height: 30px;
}

.servicer-list .service-block-style5 .inner-box .service-btn .btn img {
    width: 50px;
}

.servicer-list .service-block-style5 .inner-box .service-content .service-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 57px;

}
.servicer-list .service-details {
    color: gray;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 120px;
    font-size: 15px;
}
.servicer-list .service-block-style5 .inner-box:hover {
    background: linear-gradient(90deg, rgb(0 115 65) 0%, rgb(12 162 97) 50%, rgb(220 175 65) 100%);
}

.servicer-list .service-block-style5 .inner-box:hover .service-title, .servicer-list .service-block-style5 .inner-box:hover .service-details, .servicer-list .service-block-style5:hover .service-title a {
    color: #fff;
}

.featured-product {
    padding: 40px 0 0;
    /* background: #000; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.featured-product h2.title.tm-split-text.split-in-right .title-part1 {
    color: #007341;
    text-transform: uppercase;
}

.item-product .wrap-img {
    position: relative;
    padding: 0px 0 10px;
    overflow: hidden;
    padding: 37px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: linear-gradient(90deg, rgba(40, 58, 71, 1) 0%, rgba(49, 70, 87, 1) 50%, rgba(52, 73, 92, 1) 100%);
    display: flex;
    align-items: center;
    position: relative;
    /* height: 375px; */
    margin-bottom: 15px;
}

.item-product .wrap-img img {
    width: 100%;
}

.item-product .img-inner {width: 100%;height: 100%;}

.item-product .img-inner img {
    width: 75%;
    margin: 0 auto;
}

.item-product.ngang .img-inner img {
    width: 100%;
    border-bottom-color: #3a3939;
    border-top-color: #5c3208;
    border-left-color: #575555;
    border-right-color: #3a3939;
    filter: drop-shadow(2px 4px 6px black);
    background: linear-gradient(90deg, rgba(97, 23, 3, 1) 0%, rgba(135, 79, 66, 1) 50%, rgba(135, 79, 66, 1) 100%);
    border-width: 5px;
    border-style: solid;
}

.item-product.tron .img-inner img {
    border-radius: 50%;
    width: 85%;
    background: #000;
}

.item-product .content .name {
    font-size: 20px;
    font-weight: 500;
    display: block;
    text-align: center;
    font-family: var(--font-heading-family);
}

.item-product {
    margin-top: 20px;
    padding: 15px 0 10px;
}

.product-list {
    padding: 30px 0 30px;
}

.featured-product-inner {
    /* background: url('https://wedesignthemes.com/html/redart/default/images/portfolio-bg.jpg') repeat; */
    padding: 60px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.grid-list-product-home {
  margin: 0 auto;
  display: grid;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 25px 25px;
}

.grid-sizer,
.grid-list-product-home .element-item {
}

.grid-list-product-home .element-item {
    padding: 37px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: linear-gradient(90deg,rgba(40, 58, 71, 1) 0%, rgba(49, 70, 87, 1) 50%, rgba(52, 73, 92, 1) 100%);
    display: flex;
    align-items: center;
    position: relative;
}

.grid-list-product-home .element-item figure {
     border-bottom-color: #3a3939;
     border-top-color: #5c3208;
     border-left-color: #575555;
     border-right-color: #3a3939;
     filter: drop-shadow(2px 4px 6px black);
     background: linear-gradient(90deg,rgba(97, 23, 3, 1) 0%, rgba(135, 79, 66, 1) 50%, rgba(135, 79, 66, 1) 100%);
}

.grid-list-product-home .element-item figure {
    border-width: 5px;
    border-style: solid;
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: block;
}

.grid-list-product-home .element-item figure img {
    max-width: 100%;
    width: 100%;
    transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transition: all 300ms linear 0s;
    height: 100%;
}


.grid-list-product-home .element-item figure:after {
    border: 0px solid #fff;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    box-shadow: 0 0 5px 0 #000000 inset;
    -moz-box-shadow: 0 0 5px 0 #000000 inset;
    -webkit-box-shadow: 0 0 5px 0 #000000 inset;
}

.grid-list-product-home .element-item figure figcaption {
    background-color: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    float: left;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    transition: all 300ms linear 0s;
}

.grid-list-product-home .element-item figcaption .detail {
    background-color: rgba(0, 0, 0, 0);
    border: medium none;
    clear: both;
    cursor: default;
    display: inline-block;
    margin: 0;
    min-height: 48px;
    padding: 0;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
    z-index: 1;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.grid-list-product-home .element-item figcaption .detail .title {
    display: inline-block;
    float: none;
    min-height: 0;
    padding: 0 15px 0 25px;
    text-align: center;
    width: auto;
    transform: translateY(100%);
    -moz-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    transition: all 0.35s ease-in-out 0s;
    -moz-transition: all 0.35s ease-in-out 0s;
    -webkit-transition: all 0.35s ease-in-out 0s;
}

.grid-list-product-home .element-item figcaption .detail .title a {
    color: #FFFFFF;
    text-transform: uppercase;
    transform: translateY(100%);
    -moz-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    transition: all 0.35s ease-in-out 0.1s;
    -moz-transition: all 0.35s ease-in-out 0.1s;
    -webkit-transition: all 0.35s ease-in-out 0.1s;
}

.grid-list-product-home .element-item figure:hover img{
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
}

.grid-list-product-home .element-item figure:hover figcaption {
    opacity: 1;
    top: 0;
}

.grid-list-product-home .element-item figure:hover figcaption .detail .title {
    opacity: 1;
    -webkit-transform: translateY(10%);
}

.grid-list-product-home .element-item figure:hover figcaption .detail .title a {
    transform: translateY(0%);
    -moz-transform: translateY(0%);
    -webkit-transform: translateY(0%);
} 

.featured-product .is-divider {
    height: 1px;
    background: #4d4d4d;
    width: 30%;
    margin: 10px auto 0;
}

.featured-product .filters {
    text-align: center;
    margin-top: 20px;
}

.featured-product .filters button {
    background: #007341;
    color: #FFF;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
}

.featured-product .filters button.is-checked {
    background: #FFF;
    color: #007341;
}

.filter-products-tion .down-icon svg{
	width: 15px;
	height: 15px;
}

.filter-products-tion .down-icon {
	position: absolute;
	top: 0;
    right: 0;
    transition: 0.3s all;
    cursor: pointer;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
	width: 30px;
	height: 34px;
}

.filter-products-tion .down-icon.active {
	transform: rotate(180deg);
}

.filter-products-tion .down-icon.active svg {
	fill: #008846;
}


.featured-product .sub-title-outer .subtitle {
    color: #bba5a5;
}

.icon-chat-luong ul li {
    display: inline-block;
}

.icon-chat-luong ul li img {
    width: 60px !important;
}

.icon-chat-luong {
    margin-top: 15px;
}




.filter-products-tion {
	margin-left: 0;
	position: sticky;
	top: 100px;
	margin-right: 10px;
}

.filter-products-tion .danh-muc {
	margin-bottom: 30px;
    border-radius: 6px;
    /* border: 1px solid #efefef; */
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.filter-products-tion .danh-muc .list{
	padding: 15px;
}

.filter-products-tion .danh-muc .title {
	position: relative;
	font-size: 18px;
	font-weight: 600;
	padding: 15px 15px 5px 15px;
	color: #000;
	border-bottom: solid 1px #eee;
    text-transform: uppercase;
    background: linear-gradient(90deg, rgb(0 115 65) 0%, rgb(12 162 97) 30%, rgb(220 175 65) 100%);
   	color: #FFF;
}

.filter-products-tion .nav-item {
	position: relative;
	display: block;
}

.filter-products-tion .nav-item.active > a {
  color: #007341;
}


.filter-products-tion .nav-link {
	display: block;
	padding: 5px 30px 5px 0;
	word-wrap: break-word;
	position: relative;
	text-transform: unset;
	font-weight: 600;
	font-size: 17px;
	color: #333;
	line-height: 1.4;
}

.filter-products-tion .level-2 {
    margin-left: 25px;
    display: none;
}

.filter-products-tion .level-2 .nav-link {
    font-weight: 400;
    font-size: 15px;
}

.filter-products-tion .nav-link:hover {
	color: #0c6d37;
}

.filter-products-tion .nav-item.active .level-2 {
    display: block;
}

.dich-vu-list {
    padding: 0px 0 10px;
}

.dich-vu-list .inner {
    padding-top: 30px;
}

.dich-vu-list .item {
    position: relative;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dich-vu-list .item .img-wrap {
    overflow: hidden;
}

/* .dich-vu-list .item .wrap-img {
    position: relative;
    overflow: hidden;
}

.dich-vu-list .item .wrap-img::before {
    content: "";
    padding-top: 65%;
    display: block;
}

.dich-vu-list .item .wrap-img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 3s ease 0s;
    margin: 0;
    border-radius: 0;
} */

.dich-vu-list .item .wrap-img img {
    transition: all 3s ease 0s;
}

.dich-vu-list .item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.dich-vu-list .item .des {
    color: #595959;
    text-align: justify;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    height: 72px;
    font-size: 15px;
}

.dich-vu-list .item .icon {
    display: inline-block;
    transform: translateY(5px);
}

.dich-vu-list .item .content {
    background: white;
    padding: 15px;
}

.dich-vu-list .item .icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.dich-vu-list .item:hover .wrap-img img {
    transform: scale(1.1);
}

.item-product .img-inner img {
    width: 100%;
    height: 100%;
    border-width: 5px;
    border-style: solid;
    width: 100%;
    border-bottom-color: #3a3939;
    border-top-color: #5c3208;
    border-left-color: #575555;
    border-right-color: #3a3939;
    filter: drop-shadow(2px 4px 6px black);
    background: linear-gradient(90deg, rgba(97, 23, 3, 1) 0%, rgba(135, 79, 66, 1) 50%, rgba(135, 79, 66, 1) 100%);
    border-width: 5px;
    border-style: solid;
}
.wrap-img.img-surfing:after {
    content: "";
    position: absolute;
    background: url(https://mau11.bivaco.com/storage/photos/logo_1758784683_509151.png);
    width: 100%;
    height: 32px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    bottom: 14px;
    right: -65px;
    z-index: 9;
}

.active-custom-frame {
    background: none !important;
    height: unset !important;
    padding: unset !important;
    box-shadow: unset !important;
}

.active-custom-frame img {
    background: unset !important;
    box-shadow: unset !important;
    filter: unset !important;
    border: none !important;
}
.no-active-img-logo:after {
    background: none !important;
}
@media (max-width: 990px) {
    .grid-sizer,
    .grid-list-product-home .element-item {
        width: 33% !important; 
    }

    .filter-products-tion {
        display: none;
    }
    section.Luxury_Rooms a.book-btn {
    padding: 4px 13px;
}
    section.Luxury_Rooms ul.kodelisting-room-basic-info-minimal {
    gap: 0px 10px;
}

ul.kodelisting-room-basic-info-minimal li img {
    width: 20px;
    height: 20px !important;
}
    section.Luxury_Rooms .item-suite-rooms-night img{
        height: auto;
    }
    section.decorative-elements .title-hedding p {
    font-size: 11px;
}
    .desc-content-elegance h3 {
    font-size: 18px;
}
    .right-current-theme {
    padding-left: 0px;
}

    .images-most-safe img {
    height: auto;
}

section.Check_Availability .field-wrap {
    overflow: hidden;
}
    section.widget-form-room {
    position: unset;
}
    .Hotel_Facilities .facility-item {
    padding: 40px 10px;
}
    .images-most-safe {
        margin-bottom: 26px;
    }

    section.Fitness_Center .inner-column {
        padding: 30px 30px 30px 30px !important;
        margin-top: 0px;
    }

    section.Fitness_Center .images_Fitness_Center {
        margin-right: 0px;
        width: 100%;
    }

    section.Fitness_Center .images_Fitness_Center img {
        width: 100%;
    }

    section.Fitness_Center .row:nth-child(2n) .images_Fitness_Center {
        margin-left: 0px;
    }

    section.Fitness_Center .row:nth-child(2n) .clm:nth-child(1) {
        order: 2;
    }

    section.Check_Availability .item-right-Check_Availability {
        padding: 0px 5px;
        width: 50%;
    }

    h2.title.tm-split-text.split-in-right .title-part1 {
        font-size: 40px;
    }

    section.Check_Availability .content-item-right-Check_Availability p {
        font-size: 17px;
    }

    section.Check_Availability .item-left-Check_Availability {
        width: 50%;
        padding: 20px 20px 20px;
    }

    section.Check_Availability .box-form-Check_Availability h2 {
        font-size: 36px;
    }

    section.Fitness_Center h2.service-title {
        font-size: 40px;
    }

    .btn-theme-colored1 {
        width: 100%;
        min-height: 45px;
        padding: 0 40px;
    }

    .kodelisting-reservation-form {
        padding: 15px 0px 15px 0px;
    }

    section.decorative-elements h2.title.tm-split-text.split-in-right .title-part1 {
        width: 100%;
    }

    section.box-Most-Safe h2.title.tm-split-text.split-in-right .title-part1 {
        width: 100%;
        font-size: 38px;
    }

    .Hotel_Facilities .facilities-grid {
        gap: 10px;
        margin-top: 70px;
        row-gap: 70px;
    }

    .list-btn-abouts-the-best {
        justify-content: left;
        gap: 0px 40px;
    }

    .slide-mv__ct-brief {
        padding: 10px 15px;
        font-size: 15px;
    }

    .slide-mv__ct-brief:not(:last-child) {
        margin-bottom: 5px;
    }

    .slide-mv__ct-ttl {
        font-size: 22px;
        max-width: 350px;
        margin-bottom: 10px;
    }

    .slide-mv__ct-logo img {
        display: inline-block;
        max-width: 180px;
        width: 40%;
        margin-top: 15px;
        object-fit: contain;
    }

    .slide-mv__info {
        bottom: 50%;
    }

    .list-fitness-home-pages {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0px 10px;
        padding-top: 15px;
    }

    section.Check_Availability .ctnr:before {
        display: none;
    }

    form.kodelisting-form-wrap {
        flex-wrap: wrap;
        gap: 15px 10px;
    }

    .widget-form-room .kodelisting-form-field {
        width: 49%;
    }

    .abouts-list-content .container-abouts-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .Hotel_Facilities .facilities-grid {
        grid-template-columns: 1fr 1fr;
    }

    .Hotel_Facilities .title {
        font-size: 36px;
    }

    .slide-mv__img img {
        height: 70vh;
        /* animation: zoomInOut 6s ease-in-out infinite; */
    }

}
@media(max-width:550px){
    .widget-form-room .kodelisting-form-field {
    width: calc(100% / 2 - 15px);
}
.list-the-best {
    flex-wrap: wrap;
}

.list-the-best .icon-box-wrapper .icon-text {
    width: 100%;
}   

.list-btn-abouts-the-best {
    flex-wrap: wrap;
    gap: 20px;
}
section.box-Most-Safe h2.title.tm-split-text.split-in-right .title-part1 {
    font-size: 30px;
}

h2.title.tm-split-text.split-in-right .title-part1 {
    font-size: 25px;
}

.sub-title-outer .subtitle {
    font-size: 14px;
    letter-spacing: 2px;
}

section.Luxury_Rooms .list-suite-rooms-night {
    grid-template-columns: 1fr;
    margin-top: 20px;
}


section.Fitness_Center h2.service-title {
    font-size: 30px;
}

section.Fitness_Center .inner-column {
    padding: 20px 20px 20px 20px !important;
}

.list-fitness-home-pages {
    grid-template-columns: 1fr;
}

section.Fitness_Center .inner-column:before {
    left: 0px;
}
section.Check_Availability .container-Check_Availability {
    flex-wrap: wrap;
    /* top: 0px; */
    top: -30px;
}

section.Check_Availability .item-left-Check_Availability {
    width: 100%;
}

section.Check_Availability .item-right-Check_Availability {
    width: 100%;
}
.Hotel_Facilities .facility-title {
    font-size: 20px;
}
section.Check_Availability {
            background-size: cover !important;
        background-position: center right !important;
}
}
.btn-theme-colored1 {
    color: #fff;
    background: linear-gradient(90deg, rgb(0 115 65) 0%, rgb(12 162 97) 50%, rgb(220 175 65) 100%);
    min-height: 56px;
    padding: 0 15px;
    text-align: center;
    width: 267px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
}h2.title.tm-split-text.split-in-right .title-part1 {
    font-size: 37px;
    font-weight: 500;
    width: 100%;
    display: block;
    color: #222;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .grid-sizer,
    .grid-list-product-home .element-item {
        width: 100% !important;
    }
    .abouts-list-content .container-abouts-content {
        gap: 0px;
        padding: 24px 0;
    }

    .abouts-list-content .content {
        padding: 0;
    }

    .abouts-list-content .cta-button {
        margin-left: 0;
    }

    .abouts-list-content .brand-tag {
        margin-bottom: 10px;
    }

    .servicer-list .services {
        padding: 24px 0;
    }

    h2.title.tm-split-text.split-in-right .title-part1 {
        font-size: 24px;
    }

    section.Check_Availability .hedding-item-right-Check_Availability p {
        font-size: 16px;
    }

    .servicer-list .service-block-style5 .inner-box {
        margin-top: 24px;
        padding: 24px 30px 30px;
    }

    .servicer-list .service-block-style5 .inner-box .service-content .service-title {
        font-size: 21px;
        height: unset;
    }

    section.Luxury_Rooms {
        padding: 24px 0 !important;
    }

    section.Hotel_Facilities {
        padding: 10px 0px 60px;
    }

    .Hotel_Facilities .facility-item {
        padding: 70px 10px 10px;
    }

    section.Luxury_Rooms .content-box .title a {
        font-size: 22px;
    }

    section.Check_Availability .box-form-Check_Availability p {
        font-size: 16px;
    }

    section.Check_Availability .box-form-Check_Availability h2 {
        font-size: 30px;
        margin-bottom: 16px;
    }

    label.kodelisting-form-label {
        font-size: 15px;
    }

    section.Check_Availability .btn-theme-colored1 {
        min-height: 42px;
    }

    section.Check_Availability .item-left-Check_Availability {
        padding: 20px 20px 0px;
    }

    section.Check_Availability .box-content-desc-right-Check_Availability {
        margin-top: 34px;
    }

    section.Check_Availability .content-item-right-Check_Availability p {
        font-size: 16px;
        padding-bottom: 10px;
    }

    section.blog-news {
        padding: 24px 0;
    }

    .list-item-blog-news .splide__track {
        margin-top: 24px;
    }

    section.reviews {
        padding: 24px 0;
    }

    .customers-item {
        padding: 20px 20px 40px 20px;
    }

    .reviews-grid {
        margin-top: 10px;
    }

    .featured-product .img-inner img {
        width: 73%;
    }

    .featured-product {
        padding: 24px 0 0;
    }

    .featured-product .item-product {
        margin-top: 12px;
    }

    .item-product .wrap-img {
        padding: 0px 0 5px;
    }

    .item-product .content .name {
        font-size: 18px;
    }

    .btn-theme-colored1 {
        min-height: 45px;
    }

    a.btn-rooms {
        padding: 8px 25px;
    }

    .item-product .img-inner img {
        border-width: 7px;
    }

    .featured-product-inner {
        padding: 20px 0;
    }

    .product-list {
        padding: 15px 0 20px
    }

    .grid-list-product-home .element-item {
        padding: 10px;
    }

    .grid-list-product-home .element-item figure {
        border-width: 3px;
    }

    .grid-list-product-home .element-item figure:after {
        border: 3px solid #fff;
    }

    .featured-product .filters {
        margin-bottom: 20px;
    }
}  
.element-item.filter-69.active-custom-frame {
    background: none;
    box-shadow: unset;
    padding: unset;
}

.element-item.filter-69.active-custom-frame figure {
    border: none;
    background: none !important;
    filter: unset;
}

.element-item.filter-69.active-custom-frame img {
    transform: unset;
    display: block;
    height: 100%;
}

.element-item.filter-69 .no-active-img-logo{
    position:relative;
}
.element-item.filter-69.no-active-img-logo:before {
    content: "";
    position: absolute;
    background: url(https://mau11.bivaco.com/storage/photos/logo_1758784683_509151.png);
    width: 100%;
    height: 32px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    bottom: 14px;
    right: -65px;
    z-index: 9;
}