main {
    overflow: hidden;
}

.item-slider-stages::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    z-index: 9;
    opacity: 0.5;
}

.box-member-banners .item-slider-stages {
}

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

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

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

.slide-mv__img img {
    width: 100%;
    height: 90vh;
    min-height: 700px;
}

@media (max-width: 768px) {
    .slide-mv__img img {
        min-height: 570px;
    }
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

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

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

.slide-mv__ct {
    color: white;
    text-align: center;
    font-size: 16px;
    width: 100%;
    max-width: 744px;
    margin: 0px auto;
}

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

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

.slide-mv__ct-brief {
    border-radius: 24px;
    color: white;
    font-size: 24px;
    display: inline-block;
    padding: 0px 0px 20px;
    line-height: 1.5;
    font-family: "Old Standard TT", sans-serif;
}

.slide-mv__ct-ttl {
    font-size: 43px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 10px;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    font-family: "Old Standard TT", sans-serif;
    letter-spacing: 1px;
}

.slide-mv-desc {
    font-size: 18px;
    font-weight: 300;
    color: rgb(255, 255, 255);
    line-height: 25px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .slide-mv-desc {
        font-size: 20px;
    }
}

a.btn-rooms {
    padding: 13px 40px;
    display: inline-block;
    border: 1px solid rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    margin-top: 20px;
}

.about-content__header {
    position: relative;
    & .ratting {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-bottom: 5px;
        & span {
            & i {
                color: var(--ratting-color);
                font-size: 20px;
            }
        }
    }
}

.about-content__sub-title {
    color: var(--button-color);
    text-transform: uppercase;
    margin-top: -8px;
    margin-bottom: 14px;
    letter-spacing: 2px;
    font-size: 24px;
    line-height: 30px;
    font-family: "Old Standard TT", sans-serif;
    font-weight: 400;
}

.about-content__title {
    color: var(--black-theme);
    font-weight: 400;
    font-size: 50px;
    font-family: "Old Standard TT", sans-serif;
    line-height: 1.2;
    margin-bottom: 8px;
}

.about-content__desc {
    font-size: 16px;
    font-weight: 400;
    color: var(--pragraph-color);
}

.about-content__progress-list {
    margin-top: 33px;
}

.about-content__progress-item {
    width: 100%;
    margin: 0px 0px 16px;
}

.about-content__progress-label {
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--black-color);
    font-size: 17px;
    line-height: 23.4px;
}

.about-content__progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-content__progress-percentage {
    padding-left: 20px;
    margin-bottom: 0px;
    color: var(--black-color);
    font-size: 15px;
    font-weight: 400;
    order: 2;
}

.about-content__progress-bar {
    position: relative;
    background: rgb(238, 238, 238);
    height: 6px;
    flex: 1 1 0%;
    border-radius: 6px;
    order: 1;
    &::before {
        content: "";
        position: absolute;
        top: 0px;
        left: -20px;
        height: 100%;
        background: var(--ratting-color);
    }
}

.about-content__progress-fill {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 90%;
    height: 100%;
    overflow: initial;
    background-color: rgb(228, 168, 83);
    &::before {
        position: absolute;
        content: "";
        left: -1px;
        top: -2px;
        width: 10px;
        height: 10px;
        border-radius: 10px;
        box-shadow: rgba(87, 86, 86, 0.25) 0px 4px 5px;
        background: var(--ratting-color);
        animation: 3s ease 0s infinite normal none running loader;
    }

    &::after {
        position: absolute;
        content: "";
        left: 1px;
        top: 0px;
        width: 6px;
        height: 6px;
        border-radius: 10px;
        background: var(--white-color);
        animation: 3s ease 0s infinite normal none running loader;
    }
}

.about-content__progress-fill--v2 {
    width: 98%;
}

.about-content__buttons {
    margin-top: 33px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-grid > :nth-child(2) {
    grid-row: span 2;
    max-height: 522px;
}

.about-grid .images-most-safe--1 {
    max-height: 250px;
}

.about-grid .images-most-safe img {
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.cmn--btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px 9px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    background-color: var(--button-color);
    border: 1px solid var(--button-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: "Old Standard TT", sans-serif;
    color: var(--white-color) !important;
    &:hover {
        background-color: transparent;
        border-color: var(--theme-color);
        color: var(--theme-color) !important;
    }
}

.cmn--border {
    text-transform: capitalize;
    background-color: transparent !important;
    color: rgb(0, 0, 0) !important;
    border-color: rgb(0, 0, 0) !important;
    & span {
        display: flex;
        align-items: center;
        & svg {
            fill: currentcolor;
            transition: 0.3s;
            margin-right: 4px;
        }

        & img {
            width: 20px;
            height: 20px;
        }
    }

    &:hover {
        background-color: var(--button-color) !important;
        color: var(--white-color) !important;
        border-color: var(--button-color) !important;
    }
}

.cmn--link {
    font-size: 18px;
    font-weight: 600;
    color: var(--theme-color);
    transition: 0.3s;
    & i {
        padding-left: 4px;
        font-size: 16px;
        color: var(--theme-color);
    }

    &:hover {
        color: var(--theme-color);
    }
}

@keyframes loader {
    0% {
        left: 0px;
    }

    90% {
        left: 100%;
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

@media (max-width: 992px) {
    .about-content__title {
        font-size: 30px;
    }

    .about-content__buttons > a {
        font-size: 14px;
        padding: 7px 15px;
    }
}

.banner-booking .booking-bar {
    background-color: rgb(37, 50, 91);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 6px 20px;
    border-radius: 4px;
    padding: 40px;
    transform: translateY(-50%);
    position: relative;
    z-index: 10;
}

.booking-bar > .row {
    gap: 15px 0px;
}

.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: rgb(51, 154, 94);
}

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

label.kodelisting-form-label {
    color: rgb(102, 102, 102);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 300;
    margin-bottom: 0px;
}

.field-input-wrap.checkin-date input {
    color: rgb(102, 102, 102);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    font-family: inherit;
}

.kodelisting-reservation-form .kodelisting-dropdown {
    position: absolute;
    bottom: -12px;
    left: 0px;
    transform: translateY(100%);
    z-index: -1;
    display: block;
    min-width: 260px;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border: 1px solid rgb(51, 154, 94);
    box-shadow: rgba(50, 50, 50, 0.2) 0px 0px 50px;
    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: rgb(102, 102, 102);
    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;
}

.slideshows-banner {
    position: relative;
}

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

.box-Most-Safe .row {
    gap: 20px 0px;
}

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

h2.title.tm-split-text.split-in-right .title-part1 {
    font-size: 37px;
    font-weight: 400;
    width: 100%;
    display: block;
    color: rgb(34, 34, 34);
    font-family: "Old Standard TT", sans-serif;
}

h5.icon-box-title {
    font-size: 20px;
    margin: 0px 0px 15px;
    color: rgb(0, 0, 0);
    font-weight: 200;
}

.desc-content-abouts-pages p {
    font-size: 17px;
    margin: 0px 0px 15px;
    color: rgb(51, 154, 94);
    text-align: justify;
}

.section-item2-abouts-pages p {
    font-size: 16px;
    color: rgb(102, 102, 102);
}

.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: 6s ease-in-out 0s 1 normal none running zoomInOut;
}

.slide-mv__ct {
    transform: translateY(47%);
    opacity: 0;
    transition: 0.8s;
}

.item-slider-stages.slick-slide.slick-current.slick-active .slide-mv__ct {
    transform: translateY(0px);
    opacity: 1;
    transition: 0.8s;
}

.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;
}

.Luxury_Rooms {
    padding: 55px 0px;
    background: rgb(247, 245, 240);
}

.Luxury_Rooms .section-title, .service-section .section-title {
    margin-bottom: 50px;
}

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

.list-suite-rooms-night .slick-dots {
    margin-top: 40px;
}

.hedding-pages-rooms .title-hedding-split-line h2 {
    font-size: 50px;
    font-weight: 200;
    color: rgb(34, 34, 34);
}

.list-suite-rooms-night .slick-list {
    margin: 0px -10px;
}

.list-suite-rooms-night .slick-slide {
    padding: 0px 10px;
}

.box-stage-outer-slider .slick-arrow {
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.15) !important;
}

.homestay-slider .slick-slide {
    margin: 10px;
}

.homestay-slider .slick-list {
    margin: 0px -10px;
}

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

.Hotel_Facilities .brand {
    font-size: 14px;
    color: rgb(184, 134, 11);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 300;
}

.Hotel_Facilities .title {
    font-size: 48px;
    color: rgb(44, 62, 80);
    font-weight: 400;
    margin-bottom: 20px;
}

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

.Hotel_Facilities .facility-item {
    padding: 40px 20px;
    background-color: rgb(255, 255, 255);
    position: relative;
    box-shadow: rgba(87, 86, 86, 0.1) 0px 6px 20px;
    border-radius: 20px;
    transition: 0.4s !important;
}

.Hotel_Facilities .facility-item:hover {
    transform: skewX(-5deg) !important;
}

.Hotel_Facilities .facility-icon {
    width: 60px;
    height: 60px;
    margin: 0px auto 30px;
    stroke: rgb(184, 134, 11);
    fill: none;
    stroke-width: 1.5;
}

.Hotel_Facilities .facility-title {
    font-size: 24px;
    color: rgb(44, 62, 80);
    margin-bottom: 20px;
    font-weight: 400;
}

.Hotel_Facilities .facility-description {
    font-size: 16px;
    color: rgb(127, 140, 141);
    line-height: 1.6;
    margin: 0px auto;
}

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

section.decorative-elements {
    position: relative;
    z-index: 1;
    &::before {
        content: "";
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        background: rgb(0, 0, 0);
        opacity: 0.5;
        z-index: -1;
    }
}

.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: rgb(199, 199, 199);
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 3.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
    transition: 0.3s;
    font-family: "Old Standard TT", sans-serif;
}

section.decorative-elements .hedding-member-pages h2 {
    font-size: 50px;
    color: rgb(255, 255, 255);
    font-weight: 300;
    width: 54%;
}

section.Hotel_Facilities {
    padding: 60px 0px;
    background-position: left bottom !important;
    background-repeat: no-repeat !important;
}

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: rgb(248, 245, 240);
    padding: 60px 60px 80px 200px;
    margin-top: 50px;
}

section.Fitness_Center .inner-column::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 200px;
    width: 95px;
    height: 11px;
    background-color: rgb(51, 154, 94);
}

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: 0px;
    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: rgb(102, 102, 102);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

section.Fitness_Center .btn-view-details a {
    color: rgb(51, 154, 94);
    border: 1px solid rgb(51, 154, 94);
    padding: 1rem 2.5rem;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
}

.Hotel_Facilities .facility-item::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 50%;
    width: 95px;
    height: 11px;
    background-color: rgb(248, 245, 240);
    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: 0px;
    margin-left: -105px;
}

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

section.Check_Availability .item-left-Check_Availability {
    width: 40%;
    background-color: rgb(248, 245, 240);
    padding: 40px 15px 20px;
    border-top: 4px solid rgb(171, 133, 84);
}

section.Check_Availability .box-form-Check_Availability p {
    position: relative;
    display: inline-block;
    z-index: 1;
    color: rgb(102, 102, 102);
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 3.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
    transition: 0.3s;
}

section.Check_Availability .box-form-Check_Availability h2 {
    font-size: 40px;
    font-weight: 100;
    color: rgb(34, 34, 34);
    margin-bottom: 20px;
}

section.Check_Availability .field-input-wrap.checkin-date input {
    height: 48px;
    font-size: 14px;
    background: none;
    border-color: rgba(170, 132, 83, 0.3);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px;
    color: rgb(102, 102, 102);
    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 0px 0px 80px;
    width: 60%;
    display: flex;
    align-items: center;
}

section.Check_Availability {
    background-image: url("https://dev24.kodesolution.com/hoexr/wp-content/uploads/2023/10/bg-booking.jpeg");
    background-size: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: initial;
    position: relative;
    background-position: right center !important;
    background-repeat: no-repeat !important;
}

section.Check_Availability .hedding-item-right-Check_Availability p {
    position: relative;
    display: inline-block;
    z-index: 1;
    color: rgb(210, 210, 210);
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    transition: 0.3s;
}

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("https://dev24.kodesolution.com/hoexr/wp-content/themes/hoexr/assets/images/current-theme/before.png");
}

section.Check_Availability .hedding-item-right-Check_Availability h2 {
    color: rgb(255, 255, 255);
    font-size: 50px;
    font-weight: 200;
    margin-bottom: 15px;
}

section.Check_Availability .content-item-right-Check_Availability {
    color: rgb(255, 255, 255);
}

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;
}

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

section.Check_Availability h5.icon-box-title {
    font-size: 24px;
    color: rgb(255, 255, 255);
}

section.Check_Availability .ctnr::before {
    position: absolute;
    z-index: 0;
    background-repeat: no-repeat;
    background-position: center 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: 60px 0px;
    background: url("../images/bg-shape-1.png") left bottom no-repeat;
}

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

.splide__track {
    position: relative;
    display: block;
    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: 0.135rem;
    background-color: rgb(255, 255, 255);
    color: rgb(20, 65, 33);
    width: 3rem;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.075) 0px 0.15rem 0.35rem;
}

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: rgba(255, 255, 255, 0.85);
    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: 0.5rem;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}

.news-date span:last-child {
    border-top: 1px solid rgb(0, 0, 0);
}

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

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: rgb(51, 154, 94);
}

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

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

.splide__track button svg {
    width: 20px;
    height: 20px;
    fill: rgb(255, 255, 255) !important;
}

button.slick-prev-blogs.slick-arrow {
    position: absolute;
    align-items: center;
    background: rgb(20, 65, 33);
    color: rgb(255, 255, 255);
    border: 0px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    padding: 0px;
    top: 50%;
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
    z-index: 1;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: 0.25s ease-in-out;
    right: 0px;
    opacity: 0;
}

button.slick-prev-blogs.slick-arrow svg path {
    fill: rgb(255, 255, 255);
    stroke: rgb(255, 255, 255);
}

.splide__track button svg path {
    stroke: rgb(255, 255, 255);
    fill: rgb(255, 255, 255);
}

button.slick-next-blogs.slick-arrow {
    position: absolute;
    align-items: center;
    background: rgb(20, 65, 33);
    color: rgb(255, 255, 255);
    border: 0px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    padding: 0px;
    top: 50%;
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
    z-index: 1;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: 0.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(-0.5rem);
}

a.velora-hedding h2 {
    font-size: 18px;
    color: rgb(34, 34, 34);
}

.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: rgb(255, 255, 255) !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: rgb(255, 255, 255);
}

.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: 10px;
}

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

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

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

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

.box-content-fitness h5.service-subtitle::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 100%;
    margin-left: 5px;
    width: 37px;
    height: 10px;
    background-image: url("https://dev24.kodesolution.com/hoexr/wp-content/themes/hoexr/assets/images/current-theme/before.png");
}

.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: rgba(170, 132, 83, 0.3);
    border-style: solid;
    border-width: 1px;
    border-radius: 0px;
    color: rgb(102, 102, 102);
    width: 100%;
    padding: 0px 12px;
}

.desc-content-elegance h3 {
    font-weight: 100;
    font-size: 24px;
    padding-bottom: 10px;
    font-family: "Old Standard TT", sans-serif;
}

.desc-content-elegance p {
    color: var(--pragraph-color);
    font-size: 16px;
    line-height: 30px;
}

section.reviews {
    padding: 30px 0px;
    background: rgb(247, 248, 250);
}

.customers-item {
    padding: 4rem 3.2rem;
    border-radius: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.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: 0px;
    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: rgb(51, 154, 94);
}

.swal2-container {
    z-index: 999999 !important;
}

.hover-btn {
    position: relative;
}

section.Fitness_Center .btn-view-details a span {
    color: rgb(51, 154, 94);
}

a.btn.btn-outline-theme-colored1.btn-outline.hover-btn:hover span {
    color: rgb(255, 255, 255);
}

.hover-btn::before {
    background-color: rgb(34, 34, 34);
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    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;
    transform-origin: right top;
}

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

.hover-btn span {
    position: relative;
    color: rgb(255, 255, 255);
    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.39);
}

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

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

.about-content__desc p {
    padding-bottom: 10px;
}

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

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

a.news-link svg path {
    fill: rgb(51, 154, 94);
}

a.velora-hedding h2:hover {
    color: rgb(176, 127, 35);
}

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

.customers-item__info-img::after {
    content: "";
    width: 70px;
    height: 70px;
    top: -6px;
    left: -7px;
    position: absolute;
    background-color: rgba(51, 154, 94, 0.56);
    border-radius: 100%;
    border: 2px solid transparent;
    animation: 2.3s ease-in-out 0s infinite normal none running phonering-alo-circle-fill-anim;
    transition: 0.5s;
    transform-origin: 50% 50%;
    z-index: 0;
}

@-webkit-keyframes phonering-alo-circle-fill-anim {
    0% {
        transform: rotate(0deg) scale(0.7) skew(1deg);
        opacity: 0.6;
    }

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

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

.images_Fitness_Center::before {
    position: absolute;
    top: 0px;
    left: -75%;
    z-index: 2;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0px, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
    animation: 2s ease 2s infinite normal none running shine;
    display: block;
}

ul.kodelisting-room-basic-info-minimal li img {
    width: 25px;
    object-fit: fill;
    height: 25px !important;
}

.student-testimonial {
    padding: 100px 0px;
    background-color: rgb(255, 255, 255);
}

.testimonial-slider {
    margin: 50px -15px 0px;
}

.testimonial-slide {
    padding: 60px 15px 10px;
}

.testimonial-card {
    background: rgb(243, 243, 243);
    border-radius: 12px;
    padding: 0px 30px 40px;
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card__avatar {
    width: 110px;
    height: 110px;
    margin: -55px auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 20px;
    flex-shrink: 0;
}

.testimonial-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.testimonial-card__rating {
    margin-bottom: 12px;
    color: var(--ratting-color);
}

.testimonial-card__rating .material-icons-outlined {
    color: rgb(249, 171, 25);
    font-size: 18px;
}

.testimonial-card__name {
    font-size: 20px;
    font-weight: 700;
    color: rgb(29, 38, 74);
    margin-bottom: 4px;
}

.testimonial-card__role {
    font-size: 14px;
    color: rgb(110, 113, 130);
    display: block;
    margin-bottom: 20px;
}

.testimonial-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: rgb(69, 71, 79);
    margin: 0px;
    text-align: center;
}

@media (max-width: 1199px) {
    .testimonial-slider .slick-arrow {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .student-testimonial {
        padding: 60px 0px;
    }
}

@media (max-width: 990px) {
    ul.kodelisting-room-basic-info-minimal li img {
        width: 20px;
        height: 20px !important;
    }

    section.decorative-elements .title-hedding p {
        font-size: 11px;
    }

    .desc-content-elegance h3 {
        font-size: 20px;
    }

    .right-current-theme {
        padding-left: 0px;
    }

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

    section.Check_Availability .field-wrap {
        overflow: hidden;
    }

    section.widget-form-room {
    }

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

    .images-most-safe {
    }

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

    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 20px;
        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;
    }

    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: 0px 40px;
    }

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

    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;
    }

    .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: 30px;
        margin-bottom: 10px;
    }

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

    .slide-mv__info {
        bottom: 60%;
    }

    .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%;
    }

    .banner-booking .booking-bar {
        transform: translateY(-9%);
    }

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

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

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

    .about-content__sub-title {
        font-size: 19px;
    }
  .slide-mv-desc {
  	font-size: 16px;
  }
}

@media (max-width: 550px) {
    .widget-form-room .kodelisting-form-field {
        width: calc(50% - 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: 15px;
    }

    .Hotel_Facilities .facilities-grid {
        gap: 10px;
    }

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

    section.Fitness_Center .inner-column {
        padding: 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;
    }

    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: right center !important;
    }

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

    section.Hotel_Facilities {
        padding: 45px 0px;
    }
}

@media (max-width: 365px) {
    .slide-mv__ct-brief {
        font-size: 14px;
    }

    .slide-mv-desc {
        font-size: 16px;
    }

    .banner-booking .booking-bar {
        padding: 40px 30px;
    }

    .about-grid {
        gap: 12px;
    }
}
