/**
* Template Name: Hoteligo - v1.0
* Template URL: https://hotelligo.themenix.com
* Author: Themenix.com
*/

/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700&family=Caudex:ital,wght@0,400;0,700;1,400;1,700&display=swap');
/* GOOGLE FONTS */

/*--------------------------------------------------------------
# ROOT 
--------------------------------------------------------------*/
:root, :host {
    /* Fonts */
    --ht-font-title: "Caudex", sans-serif;
    --ht-font-default: "Albert Sans", sans-serif;
    --ht-body-font-size: 1.1rem;
    --ht-body-font-weight-default: 300;
    /* Colors */
    --ht-color-primary: #e45858;
    --ht-color-primary-rgb: 228, 88, 88;
    --ht-color-primary-dark: #c75252;
    --ht-color-secondary: #87888b;
    --ht-color-secondary-rgb: 135, 136, 139;
    --ht-color-secondary-dark: #707275;
    --ht-color-dark: #24262b;
    --ht-color-dark-rgb: 36, 38, 43;
    --ht-color-dark-dark: #0a0a0b;
    --ht-color-white: #ffffff;
    --ht-color-white-rgb: 255, 255, 255;
    --ht-color-content: #343a40;
    --ht-color-title: #24262b;
    /* Backgound */
    --ht-background-light: #f2f2f2;
    /* Letter Space */
    --ht-letter-spacing: 0.25rem;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# SCROLL BAR 
--------------------------------------------------------------*/
*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background-color: var(--ht-background-light);
}

*::-webkit-scrollbar-thumb {
    border-radius: 100px;
    border: 2px solid transparent;
    background-clip: content-box;
    background-color: var(--ht-color-secondary);
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# GENERAL
--------------------------------------------------------------*/
body, :host {
    scroll-behavior: smooth;
    font-family: var(--ht-font-default);
    color: var(--ht-color-content);
    font-size: var(--ht-body-font-size);
    font-weight: var(--ht-body-font-weight-default);
}

a {
    color: var(--ht-color-primary);
    text-decoration: none;
}

a:hover {
    color: var(--ht-color-primary-dark);
}

a.link-highlight {
    color: var(--ht-color-primary);
}

a.link-highlight:hover {
    color: var(--ht-color-primary-dark);
}

a.link-dark {
    color: var(--ht-color-dark);
}

a.link-dark:hover {
    color: var(--ht-color-secondary);
}

b,
strong {
    font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--ht-font-title);
    color: var(--ht-color-title);
    font-weight: 500;
    line-height: 1.35;
}

figure {
    margin: 0;
}

figure img {
    max-width: 100%;
}

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

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# PRELOADER
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    overflow: hidden;
    background: #fff;
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
}

#preloader:before,
#preloader:after {
    content: "";
    position: absolute;
    border: 4px solid var(--ht-color-primary);
    border-radius: 50%;
    -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1;
    }

    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0;
    }
}

@keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1;
    }

    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0;
    }
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# SCROLL TO THE TOP
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 25px;
    bottom: 25px;
    z-index: 999;
    background: rgba(var(--ht-color-primary-rgb), 0.75);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: all 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-top:hover {
    background: var(--ht-color-secondary);
    color: #fff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

.scroll-top i {
    font-size: 1.15rem;
    color: #fff;
    line-height: 0;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# CONTROLS
--------------------------------------------------------------*/
/* Standart button */
.btn {
    font-weight: 300;
    padding-left: 2rem;
    padding-right: 2rem;
    --bs-btn-focus-box-shadow: !important;
    white-space: nowrap;
}

.btn-ht-primary {
    --bs-btn-color: #ffffff;
    --bs-btn-bg: var(--ht-color-primary);
    --bs-btn-border-color: var(--ht-color-primary);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: var(--ht-color-primary-dark);
    --bs-btn-hover-border-color: var(--ht-color-primary-dark);
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: var(--ht-color-primary-dark);
    --bs-btn-active-border-color: var(--ht-color-primary-dark);
    --bs-btn-disabled-color: #ffffff;
    --bs-btn-disabled-bg: var(--ht-color-primary);
    --bs-btn-disabled-border-color: var(--ht-color-primary);
}

.btn-ht-dark {
    --bs-btn-color: #ffffff;
    --bs-btn-bg: var(--ht-color-dark);
    --bs-btn-border-color: var(--ht-color-dark);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: var(--ht-color-dark-dark);
    --bs-btn-hover-border-color: var(--ht-color-dark-dark);
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: var(--ht-color-dark-dark);
    --bs-btn-active-border-color: var(--ht-color-dark-dark);
    --bs-btn-disabled-color: #ffffff;
    --bs-btn-disabled-bg: var(--ht-color-dark);
    --bs-btn-disabled-border-color: var(--ht-color-dark);
}

.btn-ht-secondary {
    --bs-btn-color: #ffffff;
    --bs-btn-bg: var(--ht-color-secondary);
    --bs-btn-border-color: var(--ht-color-secondary);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: var(--ht-color-secondary-dark);
    --bs-btn-hover-border-color: var(--ht-color-secondary-dark);
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: var(--ht-color-secondary-dark);
    --bs-btn-active-border-color: var(--ht-color-secondary-dark);
    --bs-btn-disabled-color: #ffffff;
    --bs-btn-disabled-bg: var(--ht-color-secondary);
    --bs-btn-disabled-border-color: var(--ht-color-secondary);
}

.btn-ht-blue {
    --bs-btn-color: #ffffff;
    --bs-btn-bg: #3f74c3;
    --bs-btn-border-color: #3f74c3;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #3460a2;
    --bs-btn-hover-border-color: #3460a2;
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: #3460a2;
    --bs-btn-active-border-color: #3460a2;
    --bs-btn-disabled-color: #ffffff;
    --bs-btn-disabled-bg: #3f74c3;
    --bs-btn-disabled-border-color: #3f74c3;
}

/* Square buttons */
.btn-square-icon {
    height: 2.35rem;
    width: 2.35rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.btn-square-icon.btn-square-icon-xxl {
    height: 7rem;
    width: 7rem;
    font-size: 3.25rem;
    line-height: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* Location buttons */
.btn-location {
    --bs-btn-color: var(--ht-color-primary);
    --bs-btn-bg: rgba(var(--ht-color-white-rgb), 0.75);
    --bs-btn-border-color: transparent;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: var(--ht-color-primary);
    --bs-btn-hover-border-color: transparent;
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: var(--ht-color-primary);
    --bs-btn-active-border-color: transparent;
    --bs-btn-disabled-color: rgba(var(--ht-color-primary), 0.35);
    --bs-btn-disabled-bg: rgba(var(--ht-color-white-rgb), 0.35);
    --bs-btn-disabled-border-color: transparent;
}

/* Expand Buttons */
.btn.btn-expand {
    position: relative;
    background-color: transparent;
    border-color: transparent;
    padding-left: 3.35rem;
    transition: all 0.3s ease-in-out;
}

.btn.btn-expand:before {
    content: '';
    position: absolute;
    top: -1px;
    width: 2.375rem;
    height: 2.375rem;
    left: -1px;
    border-radius: 0.375rem;
    display: block;
    text-align: right;
    padding: 0.75rem 0.75rem;
    line-height: 1;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
    background-color: transparent;
    z-index: 0;
}

.btn.btn-lg.btn-expand:before {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    padding: 0.95rem 0.95rem;
}

.btn.btn-expand.btn-ht-primary:before {
    border-color: var(--ht-color-primary);
}

.btn.btn-expand.btn-ht-dark:before {
    border-color: var(--ht-color-dark);
}

.btn.btn-expand.btn-ht-white:before {
    border-color: var(--ht-color-white);
}

.btn.btn-expand.btn-ht-primary {
    color: var(--ht-color-primary);
}

.btn.btn-expand.btn-ht-dark {
    color: var(--ht-color-dark);
}

.btn.btn-expand.btn-ht-white {
    color: var(--ht-color-white);
}

.btn.btn-lg.btn-expand {
    padding-left: 3.95rem;
}

.btn.btn-expand span {
    position: relative;
}

.btn.btn-expand i {
    position: absolute;
    top: -1px;
    width: 2.375rem;
    height: 2.375rem;
    left: -1px;
    border-radius: 0.375rem;
    display: block;
    text-align: right;
    padding: 0.75rem 0.75rem;
    line-height: 1;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
    background-color: transparent;
    z-index: 1;
}

.btn.btn-lg.btn-expand i {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    padding: 0.95rem 0.95rem;
}

.btn.btn-expand.btn-ht-dark {
    color: var(--ht-color-dark);
}

.btn.btn-expand.btn-ht-white {
    color: var(--ht-color-white);
}

/* Video play button */
.video-play-button {
    position: relative;
    box-sizing: content-box;
    display: flex;
    border-radius: 50%;
    padding-left: 5px;
    justify-content: center;
    align-items: center;
}

.video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 64px;
    height: 64px;
    background: var(--ht-color-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 64px;
    height: 64px;
    background: var(--ht-color-primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video-play-button img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 16px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

/* From Control */
.form-control:focus,
.form-select:focus {
    box-shadow: unset !important;
    border-color: rgba(var(--ht-color-primary-rgb), 0.35);
}

.form-control-icon,
.form-select-icon {
    position: relative;
}

.form-control-icon .form-control,
.form-select-icon .form-select {
    padding-left: 2.45rem;
}

.form-control-icon .form-control.form-control-lg,
.form-select-icon .form-select.form-select-lg {
    padding-left: 3.15rem;
}

.form-control-icon i,
.form-select-icon i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0.75rem;
    color: var(--ht-color-secondary);
}

.form-control-icon.form-control-icon-lg i,
.form-select-icon.form-select-icon-lg i {
    left: 1rem;
    font-size: 1.35rem;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# BREADCRUMB
--------------------------------------------------------------*/
.breadcrumb-box {
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# MODAL
--------------------------------------------------------------*/
.modal-body {
    padding: 2.5rem;
}

.modal-content {
    border-radius: 0.55rem;
}

.btn-close-right {
    position: absolute;
    right: 1.25rem;
    top: 1rem;
    z-index: 1;
}

.btn-close-right:focus,
.btn-close-right:hover {
    box-shadow: none;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# BACKGROUND
--------------------------------------------------------------*/
/* Background Transparent */
.bg-light {
    background-color: var(--ht-background-light) !important;
}

.bg-white-transparent {
    background-color: rgba(var(--ht-color-white-rgb), 0.75);
}

.bg-transparent-top {
    position: relative;
    background: var(--ht-background-light);
}

.bg-transparent-top:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 550px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%);
    z-index: 0;
}

/* Background Image */
.bg-image-wrapper {
    background: no-repeat center center;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.bg-image-wrapper {
    background-attachment: fixed !important;
}

.bg-image-wrapper.bg-image-auto {
    background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll !important;
}

.bg-image-wrapper.bg-image-full {
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll !important;
}

.bg-image-wrapper.bg-image-cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll !important;
}

.bg-image-wrapper.bg-image-overlay:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 34, 40, 0.5);
}

.bg-image-wrapper.rounded.bg-image-overlay:before {
    border-radius: 0.5rem;
}

.bg-image-wrapper.bg-image-overlay-300:before {
    background: rgba(30, 34, 40, 0.3);
}

.bg-image-wrapper.bg-image-overlay-400:before {
    background: rgba(30, 34, 40, 0.4);
}

.bg-image-wrapper.bg-image-overlay-600:before {
    background: rgba(30, 34, 40, 0.6);
}

.bg-image-wrapper.bg-image-overlay-700:before {
    background: rgba(30, 34, 40, 0.7);
}

.bg-image-wrapper.bg-image-overlay-800:before {
    background: rgba(30, 34, 40, 0.8);
}

.bg-image-wrapper.bg-image-overlay-900:before {
    background: rgba(30, 34, 40, 0.9);
}

.bg-image-wrapper.bg-image-overlay-light-300:before {
    background: rgba(255, 255, 255, 0.7);
}

.bg-image-wrapper.bg-image-overlay-light-400:before {
    background: rgba(255, 255, 255, 0.4);
}

.bg-image-wrapper.bg-image-overlay-light-500:before {
    background: rgba(255, 255, 255, 0.5);
}

.bg-image-wrapper.bg-image-overlay-light-600:before {
    background: rgba(255, 255, 255, 0.6);
}

.bg-image-wrapper.bg-image-overlay-light-700:before {
    background: rgba(255, 255, 255, 0.7);
}

.bg-image-wrapper.bg-image-overlay-light-800:before {
    background: rgba(255, 255, 255, 0.8);
}

.bg-image-wrapper.bg-image-overlay-light-900:before {
    background: rgba(255, 255, 255, 0.9);
}

.bg-image-wrapper.bg-image-overlay:not(.bg-content) *,
.bg-image-wrapper.bg-image-overlay.bg-content .content {
    position: relative;
    z-index: 2;
}

.bg-image-wrapper.card:before {
    border-radius: 0.55rem !important;
}

/* Background video */
.bg-video-wrapper {
    position: relative;
    overflow: hidden;
}

.bg-video-wrapper.ratio-16x9 {
    --bs-aspect-ratio: 53%;
}

.bg-video-wrapper.bg-video-overlay:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(30, 34, 40, 0.55);
    z-index: 1;
}

.bg-video-wrapper.bg-video-overlay.bg-video-overlay-gradient:after {
    opacity: 0.4;
    background: linear-gradient(120deg, #542461 50%, #332487 100%);
}

.bg-video-wrapper video {
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    position: absolute;
    height: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    top: 0;
    left: 0;
    background: #000;
}

.bg-video-wrapper video:-webkit-media-controls {
    display: none !important;
}

.bg-video-wrapper .video-content {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# CONTENT
--------------------------------------------------------------*/
.light-content {
    color: rgba(var(--ht-color-white-rgb), 0.8);
}

.light-content a,
.light-content h1,
.light-content h2,
.light-content h3,
.light-content h4,
.light-content h5,
.light-content h6 {
    color: #ffffff;
}

.light-content .heading .sub-title {
    color: rgba(var(--ht-color-white-rgb), 0.8);
}

.light-content .breadcrumb-item.active {
    color: rgba(var(--ht-color-white-rgb), 0.45);
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# ICON BOXS
--------------------------------------------------------------*/
/* Icon Center */
.icon-box {
    position: relative;
}

.icon-box .icon-box-img {
    margin-bottom: 1rem;
    color: var(--ht-color-primary);
}

.icon-box .icon-box-img span {
    display: inline-block;
}

.icon-box .icon-box-img span i {
    font-size: 3rem;
    width: 48px;
    height: 48px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.35s ease-in-out;
}

.icon-box .icon-box-info .icon-box-title {
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 500
}

.icon-box .icon-box-info .icon-box-desc {
    margin-bottom: 0;
    font-weight: 300;
}

.icon-box .icon-box-info .icon-box-detail a:not(.btn) {
    color: var(--ht-color-primary);
}

.icon-box .icon-box-info .icon-box-detail a:not(.btn):hover {
    color: var(--ht-color-dark);
}

/* Icon Left */
.icon-box.icon-box-left .icon-box-container {
    display: flex;
}

.icon-box.icon-box-left .icon-box-img {
    margin-bottom: 0;
    margin-right: 1.75rem;
    padding-top: 0.45rem;
}

/* Icon Small */
.icon-box .icon-box-img.icon-box-img-sm span i {
    font-size: 1.65rem;
    width: 32px;
    height: 32px;
}

/* Title Small */
.icon-box .icon-box-info .icon-box-title.icon-box-title-sm {
    font-size: 1.35rem;
}

/*--------------------------------------------------------------/

/*--------------------------------------------------------------
# SWIPER 
--------------------------------------------------------------*/
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    transition: all 0.35s ease-in-out;
}

.swiper-pagination-bullet-active {
    width: 30px;
    background-color: var(--ht-color-primary);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--ht-color-primary);
    padding: 25px 20px;
    transition: all 0.35s ease-in-out;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: var(--ht-color-dark);
}

/*--------------------------------------------------------------/


/*--------------------------------------------------------------
# HEADING 
--------------------------------------------------------------*/
/* Title */
.heading {
    margin-bottom: 2rem;
}

.heading .title {
    position: relative;
    font-size: 2.55rem;
}

.heading .title.title-md {
    font-size: 4rem !important;
}

.heading .title.title-lg {
    font-size: 5rem !important;
}

.heading .title a {
    color: var(--ht-color-dark);
    transition: 0.15s ease-in-out;
}

.heading .title a:hover {
    color: var(--ht-color-primary);
}

/* Sub Title */
.heading .sub-title {
    position: relative;
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--ht-color-secondary);
    letter-spacing: var(--ht-letter-spacing);
    margin-bottom: 1rem;
    font-family: var(--ht-font-default);
    display: block;
}

.heading .sub-title.line-before:before {
    content: '';
    width: 100px;
    height: 1px;
    background-color: var(--ht-color-primary);
    display: inline-block;
    margin-right: 50px;
    vertical-align: middle;
}

.heading .sub-title.line-before-50.line-before:before {
    content: '';
    width: 50px;
    margin-right: 25px;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# HEADER
--------------------------------------------------------------*/
/* Header */
.header {
    transition: 0.35s ease-in-out;
    z-index: 997;
}

/* Logo */
.header .logo-nav-box {
    transition: all 0.5s ease-in-out;
}

.header .logo-nav-box .logo-nav-box-container {
    display: flex;
    align-items: center;
}

.header .logo-nav-box .logo {
    margin-right: auto;
}

.header .logo-nav-box .logo h1 {
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
    color: #fff;
}

.header .logo-nav-box .logo img {
    margin-right: 30px;
    transition: 0.5s;
}

/* Top Bar */
.header .top-bar {
    position: relative;
    background-color: var(--ht-color-dark);
    font-size: 0.9rem;
}

.header .top-bar .top-bar-container {
    color: #fff;
    line-height: 20px;
    display: flex;
    align-items: center;
}

.header .top-bar .top-bar-right {
    margin-left: auto;
}

.header .top-bar .top-bar-right>ul>li:not(:last-child),
.header .top-bar .top-bar-left>ul>li:not(:last-child) {
    margin-right: 1.5rem;
}

.header .top-bar .top-bar-text {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
}

.header .top-bar a:hover {
    color: var(--ht-color-primary);
}

.header .top-bar a:not(.dropdown-item) {
    color: #fff;
    transition: all 0.15s;
}

.header .top-bar .dropdown-toggle:focus,
.header .top-bar .dropdown-toggle:hover {
    outline: none;
}

.header .top-bar .dropdown-toggle::after {
    margin-left: -0.05rem;
    vertical-align: 0.1rem;
    font-family: icons;
    content: "\F5AA";
    font-weight: 400;
    font-style: normal;
    font-size: 0.55rem;
    border-top: unset;
    border-right: unset;
    border-bottom: 0;
    border-left: unset;
    line-height: 0;
}

.header .top-bar .dropdown-toggle .icon-group {
    display: inline-flex;
    align-items: center;
}

.header .top-bar .dropdown-toggle .icon-group img {
    height: 10px;
    width: auto;
    margin-right: 0.5rem;
    transform: scale(1.65);
}

.header .top-bar .dropdown-toggle .lang-flag {
    display: inline-flex;
    align-items: center;
}

.header .top-bar .lang-flag img {
    height: 10px;
    width: auto;
    margin-right: 0.5rem;
    transform: scale(1.45);
}

.header .top-bar .dropdown-menu {
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    border: 0;
    border-radius: 0.55rem;
    padding-top: 10px;
    padding-bottom: 10px;
    min-width: auto;
}

.header .top-bar .dropdown-menu .dropdown-item {
    padding: 10px 20px;
}

.header .top-bar .dropdown-menu .dropdown-item:hover,
.header .top-bar .dropdown-menu .dropdown-item:focus {
    background-color: transparent;
    color: var(--ht-color-primary);
}

/* Reservation */
.header .reservation-link {
    font-weight: 600;
}

.header .contact-link i,
.header .reservation-link i {
    font-weight: 600;
    margin-right: .35rem;
    line-height: 0;
    margin-bottom: 0;
}

.header .contact-link a,
.header .reservation-link a {
    font-weight: 600;
    padding: 35px 0 35px 0;
    color: var(--ht-color-dark);
    white-space: nowrap;
    line-height: 20px;
    display: flex;
    align-items: center;
}

.header .contact-link a:hover,
.header .contact-link a:focus,
.header .reservation-link a:hover,
.header .reservation-link a:focus {
    color: var(--ht-color-primary);
}

/* Header Sticked */
.header.sticked .logo-nav-box {
    background: #ffffff;
    transition: all 0.25s ease-in-out;
    opacity: 0;
}

.header.sticked.showed .logo-nav-box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: #ffffff;
    box-shadow: 0px 2px 20px rgba(14, 29, 52, 0.1);
    opacity: 1;
}

.header.sticked.showed .logo-nav-box .logo img {
    height: 44px;
}

.header.sticked.showed+main {
    padding-top: 68px;
}

.header.sticked.showed .contact-link a,
.header.sticked.showed .reservation-link a {
    padding: 24px 0 24px 0;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# TITLE BOX
--------------------------------------------------------------*/
.title-box {
    position: relative;
}

.title-box .description {
    font-size: 1.5rem;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# CHECK ROOM BOX
--------------------------------------------------------------*/
.check-room-box {
    position: relative;
    z-index: 1;
}

.check-room-box .check-room-box-title {
    font-size: 1.5rem;
    padding-right: 1.5rem;
}

.check-room-box .form-control,
.check-room-box .form-select {
    border-color: transparent;
}

.check-room-box .form-control:focus,
.check-room-box .form-select:focus {
    border-color: rgba(var(--ht-color-primary-rgb), 0.35);
}

.check-room-box .datepicker {
    right: unset;
}


.check-room-box select option {
    line-height: 2rem;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# RESERVATION
--------------------------------------------------------------*/
.reservation-box .reservation-box-desc {
    position: relative;
}

.reservation-box .reservation-main .reservation-main-container {
    display: flex;
    align-self: start;
}

.reservation-box .reservation-main .reservation-main-container .reservation-left {
    width: 72%;
}

.reservation-box .reservation-main .reservation-main-container .reservation-right {
    width: 28%;
    padding-left: 25px;
}

/* Process */
.reservation-box .progress {
    height: 5px;
    overflow: unset;
}

.reservation-box .progress {
    height: 5px;
}

.reservation-box .progress-bar {
    background-color: var(--ht-color-primary) !important;
    border-radius: 0.15rem;
}

.reservation-box .progress-bar {
    position: relative;
    overflow: unset;
}

.reservation-box .progress-bar span {
    background-color: var(--ht-color-primary);
    padding: 0.15rem 0.35rem;
    color: #fff;
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 2;
    border-radius: 0.25rem;
    transform: translateY(-50%);
}

/* Room list */
.reservation-box .room-list .room-item {
    margin-bottom: 25px;
    border-color: transparent;
    border-radius: 0.55rem;
    overflow: hidden;
}

.reservation-box .room-list .room-item .card-title {
    margin-bottom: 20px;
    font-size: 1.75rem;
}

.reservation-box .room-list .room-item .card-body {
    padding: 25px;
}

.reservation-box .room-list .room-item .card-title a {
    color: var(--ht-color-dark)
}

.reservation-box .room-list .room-item .card-title a:hover,
.reservation-box .room-list .room-item .card-title a:focus {
    color: var(--ht-color-primary)
}

.reservation-box .room-list .room-item .room-image img {
    border-radius: 0.55rem;
}

.reservation-box .room-list .card.card-selected {
    border-width: 1px !important;
    border-color: var(--ht-color-primary);
    position: relative;
}

.reservation-box .room-list .card.card-selected:before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    border-bottom: 40px solid var(--ht-color-primary);
    border-top: 40px solid transparent;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    -webkit-transform: rotate(30deg);
    transform: rotate(45deg);
}

.reservation-box .room-list .card.card-selected:after {
    content: "\F1C1";
    top: 6px;
    right: 8px;
    position: absolute;
    color: #fff;
    font-family: icons;
    font-weight: 900;
    font-size: 0.9rem;
}

.reservation-box .list-featured {
    line-height: 1.75;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.reservation-box .room-book {
    text-align: center;
    line-height: 1.65;
}

.reservation-box .room-book .price .amout span {
    font-size: 1.5rem;
    color: var(--ht-color-primary);
    font-weight: 700;
}

.reservation-box .room-book .price .amout small {
    font-size: 1rem;
    font-weight: normal;
}

.reservation-box .room-book .price .saving {
    color: var(--ht-color-primary);
    font-size: 0.9rem;
    display: block;
}

.reservation-box .room-book .price .old-price {
    color: var(--ht-color-secondary);
    display: block;
}

/* Detail Reservation */
.reservation-box .reservation-detail {
    border-color: transparent;
    font-size: 1rem;
    border-radius: 0.55rem;
}

.reservation-box .reservation-detail .card-body {
    padding: 25px;
}

.reservation-box .reservation-detail .book-date {
    line-height: 1.75;
}

.reservation-box .reservation-detail .book-date strong {
    color: var(--ht-color-dark);
    font-weight: 600;
}

.reservation-box .reservation-detail .select-list .select-item {
    margin-bottom: 0.75rem;
}

.reservation-box .reservation-detail .select-list .select-item .item-title {
    font-size: 1.25rem;
    position: relative;
    margin-bottom: 0.25rem;
}

.reservation-box .reservation-detail .select-list .select-item .remove-it {
    font-size: 0.75rem;
    font-weight: 600;
    vertical-align: 0.1rem;
    margin-left: 0.15rem;
}

.reservation-box .reservation-detail .select-list .select-item .extra-info strong {
    color: var(--ht-color-primary);
    float: right;
    font-size: 1.15rem;
    line-height: 1;
}

.reservation-box .reservation-detail .tax-service {
    position: relative;
}

.reservation-box .reservation-detail .tax-service .item-title {
    font-size: 1.25rem;
}

.reservation-box .reservation-detail .tax-service strong {
    color: var(--ht-color-primary);
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.15rem;
}

.reservation-box .reservation-detail .total-amount {
    font-size: 1.35rem;
    position: relative;
    margin-bottom: 2rem;
}

.reservation-box .reservation-detail .total-amount .item-title {
    font-size: 1.55rem;
    font-weight: 600;
}

.reservation-box .reservation-detail .total-amount strong {
    color: var(--ht-color-primary);
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.45rem;
    font-weight: 700;
}

/* Customer information */
.reservation-box.customer-information .reservation-main .reservation-main-container .reservation-left {
    width: 33.333333%;
}

.reservation-box.customer-information .reservation-main .reservation-main-container .reservation-right {
    width: 66.666666%;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# HERO SLIDER
--------------------------------------------------------------*/
/* Hero */
.hero {
    width: 100%;
    height: calc(100vh - 180px);
}

.hero .hero-container {
    position: relative;
    margin-right: -0.75rem;
}

/* Hero Slider */
.hero .hero-slider {
    position: relative;
}

.hero .hero-slider .swiper {
    border-radius: 0.55rem;
}

.hero .hero-slider .swiper .swiper-slide {
    height: calc(100vh - 180px);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero .hero-caption {
    position: absolute;
    padding: 25px 50px 25px 0;
    background: #fff;
    transition: all 0.35s ease-in-out;
    top: 50px;
    bottom: 50px;
    left: 0;
    width: 38%;
    z-index: 2;
    display: flex;
    align-items: center;
    border-top-right-radius: 0.55rem;
    border-bottom-right-radius: 0.55rem;
}

.hero .hero-caption .hero-title {
    margin-bottom: 1.5rem;
    padding: 0;
    font-size: 3.75rem;
    font-weight: 700;
}

.hero .hero-caption .hero-sub-title {
    margin-bottom: 1.25rem;
    padding: 0;
    font-size: 1rem;
    font-weight: 300;
    font-family: var(--ht-font-default);
    text-transform: uppercase;
    color: var(--ht-color-content);
    letter-spacing: var(--ht-letter-spacing);
    display: block;
}

.hero .hero-caption .hero-desc {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.hero .hero-caption .hero-ext {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.hero .hero-caption .hero-link {
    margin-bottom: 1rem;
}

.hero .hero-caption .hero-link .btn-hero {
    background-color: var(--bs-yellow) !important;
}

/* Hero Light Content */
.hero.hero-light-content .hero-caption {
    color: rgba(var(--ht-color-white-rgb), 0.85);
}

.hero.hero-light-content .hero-caption .hero-title {
    color: var(--ht-color-white-rgb);
}

.hero.hero-light-content .hero-caption .hero-sub-title {
    color: rgba(var(--ht-color-white-rgb), 0.65);
}

/* Hero Full Width */

.hero.hero-fullwidth {
    height: calc(100vh - 130px);
}

.hero.hero-fullwidth .hero-container {
    position: relative;
    margin-right: unset;
}

.hero.hero-fullwidth .hero-slider {
    margin-left: unset;
}

.hero.hero-fullwidth .hero-slider .swiper {
    border-radius: 0;
}

.hero.hero-fullwidth .hero-slider .swiper .swiper-slide {
    height: calc(100vh - 130px);
}

.hero.hero-fullwidth .hero-slider .swiper .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    background: #fff;
    opacity: 0.55;
}

.hero.hero-fullwidth .hero-caption {
    background-color: transparent;
    padding: 0;
    right: 0;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

/*.hero.hero-fullwidth .hero-caption {
            background-color: transparent;
            padding: 0;
            left: 50px;
            width: 46%;
            top: 50%;
            transform: translateY(-50%);
        }*/
/* Hero video */
.hero.hero-fullwidth.hero-video .video {
    height: calc(100vh - 130px);
}

/* Pagination */
.hero .hero-slider .swiper-pagination {
    right: 50px;
    bottom: unset;
    width: auto;
    left: unset;
    font-size: 1.5rem;
    font-family: var(--ht-font-title);
    line-height: 0;
    top: 50px;
    color: var(--ht-color-secondary)
}

/* Button Play */
.hero .hero-slider .hero-button-play {
    content: "";
    position: absolute;
    z-index: 10;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.hero .hero-slider .hero-button-play:before,
.hero .hero-slider .hero-button-play:after {
    background: rgba(var(--ht-color-white-rgb), 0.85);
}

.hero .hero-slider .hero-button-play span {
    height: 0;
    border-left-color: var(--ht-color-primary);
}

.hero .check-room {
    position: absolute;
    z-index: 10;
    bottom: 50px;
    right: 0;
}

.hero .check-room .check-room-container {
    position: relative;
    background-color: rgba(var(--ht-color-dark-rgb), 0.85);
    padding: 1.5rem;
    border-radius: 0.55rem 0 0 0.55rem;
}

.hero .check-room .check-icon i {
    font-size: 2.25rem;
    color: rgba(var(--ht-color-white-rgb), 0.35);
}

.hero .check-room .form-container {
    display: flex;
    align-items: center;
}

.hero .check-room .check-date-box {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.hero .check-room .check-date-box .check-icon {
    margin-right: 0.5rem;
}

.hero .check-room .check-date input {
    border-color: transparent;
    background-color: transparent;
    font-weight: 600;
    font-size: 1.15rem;
    height: calc(2.9rem + 2px);
    width: 20rem;
    cursor: pointer;
    transition: 0.15s ease-in-out;
    color: #ffffff;
    padding-bottom: 0px;
}

.hero .check-room .check-date input:hover,
.hero .check-room .check-date input:focus {
    color: var(--ht-color-primary)
}

.hero .check-room .check-date label {
    text-transform: uppercase;
    transform: scale(.85) translateY(-0.85rem) translateX(0.15rem);
    font-weight: normal;
    color: rgba(var(--ht-color-white-rgb), 0.55);
    top: -0.25rem;
}

.hero .check-room .check-date label::after {
    background-color: transparent !important;
    border-radius: 0 !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    -ms-border-radius: 0 !important;
    -o-border-radius: 0 !important;
}

.hero .check-room .check-date label i {
    font-size: 1.35rem;
    margin-right: 0.25rem;
}

.hero .check-room .check-button {
    padding-left: 1rem;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# HEADING PAGE
--------------------------------------------------------------*/
.heading-page-box {
    position: relative;
    z-index: 0;
}

.heading-page-box .title-page.title-page-absolute {
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}

.heading-page-box .title-page .info-box-content {
    max-width: 67%;
}

/* Heading page slider */
.heading-page-swiper-box {
    position: relative;
}

.heading-page-swiper-box .heading-page-swiper .heading-page-slide {
    height: calc(100vh - 180px);
    overflow: hidden;
}

.heading-page-swiper-box .heading-page-swiper .heading-page-slide .zoom-photo {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.85rem;
    display: flex;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background-color: rgba(var(--ht-color-white-rgb), 0.1);
    z-index: 1;
    color: #ffffff;
}

.heading-page-swiper-box .heading-page-swiper .swiper-pagination {
    width: auto;
    left: 50px;
    bottom: 50px;
}

.heading-page-swiper-box .heading-page-swiper .swiper-pagination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    background: var(--ht-color-white);
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# DETAIL ROOM
--------------------------------------------------------------*/
/* Room info */
.detail-room-box .detail-room {
    display: flex;
    align-items: self-start;
}

.detail-room-box .detail-room .detail-room-info {
    width: 68%;
    margin-right: auto;
    padding-right: 50px;
}

.detail-room-box .room-featured,
.detail-room-box .room-offer,
.detail-room-box .facilities-amenities {
    margin-bottom: 4rem;
}

.detail-room-box .room-featured .title,
.detail-room-box .room-offer .title,
.detail-room-box .facilities-amenities .title,
.detail-room-box .room-rolicies .title {
    margin-bottom: 2rem;
    font-size: 2.15rem;
}

.detail-room-box .room-featured .featured-item {
    font-weight: 400;
    font-size: 1.15rem;
    line-height: 2.55;
}

.detail-room-box .room-featured .featured-item i {
    font-size: 2rem;
    margin-right: 0.55rem;
}

.detail-room-box .room-featured .description {
    margin-top: 2rem;
}

.detail-room-box .facilities-amenities h3,
.detail-room-box .room-rolicies h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.detail-room-box .facilities-amenities .amenities-box {
    margin-bottom: 2rem;
}

.detail-room-box .facilities-amenities .amenities-box .ame-item {
    margin-bottom: 0.5rem;
}

.detail-room-box .facilities-amenities .amenities-box .ame-item i {
    font-size: 1.35rem;
    margin-right: 0.5rem;
}

/* Booking room */
.detail-room-box .detail-room .detail-room-book {
    width: 32%;
    position: sticky;
    top: 285px;
}

.detail-room-box .detail-room .detail-room-book .booking-room {
    background: #ffffff;
    padding: 35px;
    border-radius: 0.55rem;
    margin-top: -190px;
    position: relative;
    z-index: 1;
}

.detail-room-box .detail-room .detail-room-book .booking-room .price {
    font-size: 1.35rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.detail-room-box .detail-room .detail-room-book .booking-room .price .price-number {
    font-size: 2.35rem;
    font-weight: 700;
    color: var(--ht-color-primary);
}

.detail-room-box .detail-room .detail-room-book .booking-room .price .price-unit {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--ht-color-secondary);
}

.detail-room-box .detail-room .detail-room-book .booking-room .adults,
.detail-room-box .detail-room .detail-room-book .booking-room .children,
.detail-room-box .detail-room .detail-room-book .booking-room .button-check {
    margin-bottom: 1.5rem;
}

.detail-room-box .detail-room .detail-room-book .booking-room .check-date {
    margin-bottom: 1.5rem;
    position: relative;
}

.detail-room-box .detail-room .detail-room-book .booking-room .button-check .btn {
    width: 100%;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# OTHER ROOMS
--------------------------------------------------------------*/
.other-roooms-box .other-room-slide .other-room-content .image {
    border-radius: 0.55rem;
    overflow: hidden;
    position: relative;
}

.other-roooms-box .other-room-slide .other-room-content .content {
    background: #ffffff;
    padding: 35px;
    margin-left: 25px;
    margin-right: 50px;
    margin-top: -50px;
    border-radius: 0.55rem;
    position: relative;
    transition: 0.3s ease-in-out;
}

.other-roooms-box .other-room-slide .other-room-content:hover .content {
    margin-top: -100px;
    margin-bottom: 50px;
}

.other-roooms-box .other-room-slide .other-room-content .content .info-box-ext {
    margin-bottom: 35px;
}

.other-roooms-box .other-room-slide .other-room-content .content .info-box-ext i {
    color: var(--ht-color-primary)
}


.other-roooms-box .other-room-slide .other-room-content .content .heading {
    margin-bottom: 20px;
}

.other-roooms-box .other-room-slide .other-room-content .content .heading .title {
    font-size: 2.15rem;
}

.other-roooms-box .other-room-slide .other-room-content .image:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(var(--ht-color-dark-rgb), 0.35);
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.other-roooms-box .other-room-slide .other-room-content:hover .image:after {
    opacity: 1;
}

.other-roooms-box .swiper-pagination {
    width: auto;
    left: 25px;
    top: 25px;
    bottom: unset;
    line-height: 1;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# INFO BOXS
--------------------------------------------------------------*/
.info-box .info-box-container {
    position: relative;
}

.info-box .info-box-container .info-box-content {
    position: relative;
}

.info-box .info-box-container .info-box-content.image-left,
.info-box .info-box-container .info-box-content.image-right {
    position: relative;
    display: flex;
    width: 100%;
}

/* Content */
.info-box .info-box-container .info-box-content .content {
    border-radius: 0.55rem;
    position: relative;
}

.info-box .info-box-container .info-box-content .content.content-absolute {
    position: absolute;
}

.info-box .info-box-container .info-box-content .content.bg-content-white {
    background-color: #fff;
    padding: 50px;
}

.info-box .info-box-container .info-box-content .content .info-box-desc {
    margin-bottom: 2rem;
}

.info-box .info-box-container .info-box-content .content .info-box-ext {
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 2;
}

.info-box .info-box-container .info-box-content .content .info-box-link {
    margin-bottom: 2rem;
}

.info-box .info-box-container .info-box-content .content .info-box-ext i {
    color: var(--ht-color-primary);
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.info-box .info-box-container .info-box-content.image-left .content,
.info-box .info-box-container .info-box-content.image-right .content {
    background: #ffffff;
    width: 450px;
    padding: 50px;
    margin-top: 150px;
    align-self: self-start;
}

.info-box .info-box-container .info-box-content.image-left .content {
    margin-left: -250px;
}

.info-box .info-box-container .info-box-content.image-right .content {
    margin-right: -250px;
    order: 0;
    z-index: 1;
}

/* Image */
.info-box .info-box-container .info-box-content .image {
    overflow: hidden;
    max-width: calc(100% - 275px)
}

.info-box .info-box-container .info-box-content .image img {
    border-radius: 0.55rem;
}

.info-box .info-box-container .info-box-content.image-right .image {
    order: 1;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# ABOUT 
--------------------------------------------------------------*/
/* About 1 */
.about-home-box .about-home-1.info-box .about-home-1-container .content {
    margin-left: -250px;
}

/* About 2 */
.about-home-box .about-home-2.info-box .about-home-2-container .content {
    margin-right: -100px;
    margin-top: 50px;
}

/* About 3 */
.about-home-box .about-home-3.info-box .about-home-3-container .content {
    margin-left: -150px;
    margin-top: 100px;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# OUR STORY (ABOUT US) 
--------------------------------------------------------------*/
.our-story-box .our-story {
    display: flex;
    align-items: self-start;
}

.our-story-box .our-story .our-story-content {
    width: 68%;
    margin-right: auto;
    padding-right: 50px;
}

.our-story-box .our-story .our-story-contact {
    width: 32%;
    position: sticky;
    top: 285px;
}

.our-story-box .our-story .our-story-contact .contact-info {
    background: #ffffff;
    padding: 35px;
    border-radius: 0.55rem;
    margin-top: -190px;
    position: relative;
    z-index: 1;
}

.our-story-box .our-story .our-story-contact .contact-info .brand {
    margin-bottom: 30px;
}

.our-story-box .our-story .our-story-content .featured-item {
    margin-bottom: 3rem;
}

.our-story-box .our-story .our-story-content .featured-item ul li {
    line-height: 2;
}


.our-story-box .our-story .our-story-content .featured-item .title {
    margin-bottom: 1.5rem;
}

.our-story-box .our-story .our-story-content .featured-item .title-small {
    font-size: 1.35rem;
}

.our-story-box .our-story .our-story-content .featured-item .list-check {
    list-style: none;
    padding-left: 0;
}

.our-story-box .our-story .our-story-content .featured-item .list-check ul {
    list-style: none;
    padding-left: 1rem;
}

.our-story-box .our-story .our-story-content .featured-item .list-check li {
    position: relative;
    padding-left: 1.5rem;
}

.our-story-box .our-story .our-story-content .featured-item .list-check li:before {
    position: absolute;
    content: "\F1C1";
    left: 0;
    top: 0.825rem;
    font-size: 0.85rem;
    line-height: 0;
    left: -0.15rem;
    color: var(--ht-color-primary);
    font-family: 'icons';
    font-weight: 900;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# ROOM SLIDER (Homepage)
--------------------------------------------------------------*/
/* Room home box description */
.room-home-box .room-box-slider .rooms-slider {
    position: relative;
}

.room-home-box .room-box-slider .room-box-slider-container {
    margin-left: -0.75px;
    margin-right: -0.75rem;
}

/* Pagination */
.room-home-box .room-box-slider .rooms-slider .swiper-pagination {
    right: 0;
    bottom: unset;
    width: auto;
    left: unset;
    font-size: 1.5rem;
    font-family: var(--ht-font-title);
    line-height: 1;
    top: 50px;
    padding: 25px;
    background-color: rgba(var(--ht-color-white-rgb), 0.45);
    border-top-left-radius: 0.55rem;
    border-bottom-left-radius: 0.55rem;
}

.room-home-box .room-box-slider .rooms-slider .swiper-pagination .swiper-pagination-current {
    font-size: 3rem;
    color: var(--ht-color-dark);
    font-weight: 300;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# FACITLITIES
--------------------------------------------------------------*/
.facilities-box .facilities-box-list {
    height: 100vh;
}

.facilities-box .facilities-box-list .info-box-content .content {
    margin-top: -200px;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# TOURS
--------------------------------------------------------------*/
/* Tours */
.tour-list {
    position: relative;
}

.tour-list .tour-item {
    display: block;
    color: var(--ht-color-content)
}

.tour-list .all-tour-link {
    text-align: center;
    margin-top: 75px;
}

.tour-list .tour-item .tour-item-content .image {
    position: relative;
    overflow: hidden;
    border-radius: 0.55rem;
}

.tour-list .tour-item .tour-item-content .image:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(var(--ht-color-dark-rgb), 0.35);
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.tour-list .tour-item:hover .tour-item-content .image:after {
    opacity: 1;
}

.tour-list .tour-item .tour-item-content .image img {
    border-radius: 0.55rem;
    transition: 0.3s ease-in-out;
}

.tour-list .tour-item:hover .tour-item-content .image img {
    transform: scale(1.05);
}

.tour-list .tour-item .tour-item-content {
    transition: 0.3s ease-in-out;
}

.tour-list .tour-item .tour-item-content .content {
    margin-top: -50px;
    position: relative;
    background: #ffff;
    margin-left: 25px;
    margin-right: 50px;
    border-radius: 0.55rem;
    padding: 35px;
    transition: 0.3s ease-in-out;
}

.tour-list .tour-item:hover .tour-item-content {
    margin-bottom: 50px;
}

.tour-list .tour-item:hover .tour-item-content .content {
    margin-top: -100px;
}

.tour-list .tour-item .tour-item-content .content .heading {
    margin-bottom: 1rem;
}

.tour-list .tour-item .tour-item-content .content .heading .title {
    font-size: 1.55rem;
}

.tour-list .tour-item:hover .tour-item-content .content .heading .title {
    color: var(--ht-color-primary);
}

.tour-list .tour-item .tour-item-content .content .price-title {
    font-weight: 600;
}

.tour-list .tour-item .tour-item-content .content .price-number {
    font-weight: 600;
    color: var(--ht-color-primary);
    font-size: 1.55rem;
    margin-left: 0.25rem;
}

.tour-list .tour-item .tour-item-content .content .heading .price-unit {
    font-size: 1rem;
}

/* Tour category */
.category-item .category-item-container {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 0.5rem;
}

.category-item .category-item-container img {
    width: 100%;
    transition: all 0.35s ease-in-out;
}

.category-item .category-item-container:hover img {
    transform: scale(1.1);
    transition: all 0.35s ease-in-out;
}

.category-item .category-item-caption {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    padding: 2rem;
    transition: all 0.35s ease-in-out;
}

.category-item .category-item-container .category-item-title {
    position: absolute;
    bottom: 2rem;
    margin-bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.35s ease-in-out;
    white-space: nowrap;
    color: #fff;
}

.category-item .category-item-container:hover .category-item-title {
    bottom: 5rem;
}

.category-item .category-item-container .category-item-detail {
    position: absolute;
    bottom: 0rem;
    opacity: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.35s ease-in-out;
}

.category-item .category-item-container:hover .category-item-detail {
    bottom: 1.15rem;
    opacity: 1;
}

.category-item .category-item-container .category-item-overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 34, 40, 0.45);
    transition: all 0.35s ease-in-out;
}

.category-item .category-item-container:hover .category-item-overlay {
    background: rgba(30, 34, 40, 0.65);
}

/* Detai tour */
.detail-tour-box .detail-tour-content {
    display: flex;
    align-items: self-start;
}

.detail-tour-box .detail-tour-content .detail-tour {
    width: 68%;
    margin-right: auto;
    padding-right: 50px;
}

.detail-tour-box .detail-tour-content .detail-tour .title {
    margin-bottom: 1rem;
}

.detail-tour-box .detail-tour-content .detail-tour .title-small {
    font-size: 1.35rem;
}

.detail-tour-box .detail-tour-content .booking-tour {
    width: 32%;
    position: sticky;
    top: 285px;
}

.detail-tour-box .detail-tour-content .booking-tour .booking-tour-container {
    background: #ffffff;
    padding: 35px;
    border-radius: 0.55rem;
    margin-top: -190px;
    position: relative;
    z-index: 1;
}

.detail-tour-box .detail-tour-content .booking-tour .price {
    font-size: 1.35rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.detail-tour-box .detail-tour-content .booking-tour .price .price-number {
    font-size: 2.35rem;
    font-weight: 700;
    color: var(--ht-color-primary);
}

.detail-tour-box .detail-tour-content .booking-tour .price .price-unit {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--ht-color-secondary);
}

.detail-tour-box .detail-tour-content .booking-tour .book {
    margin-top: 1.5rem;
}

.other-tours-box .swiper-pagination {
    width: auto;
    left: 25px;
    top: 25px;
    bottom: unset;
    line-height: 1;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# TESTIMONIAL
--------------------------------------------------------------*/
.testimonial-list {
    position: relative;
}

.testimonial-list .testimonial-list-container {
    position: relative;
}

.testimonial-list .testimonial-list-container .testimonial-list-swiper:before {
    content: "";
    background-image: url(../img/quote.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 80px;
    height: 80px;
    z-index: 1;
    right: 0;
    position: absolute;
    opacity: 0.2;
    top: -80px;
}

.testimonial-list .testimonial-item-container {
    display: flex;
}

.testimonial-list .testimonial-avatar img {
    width: 128px;
    border-radius: 50%;
}

.testimonial-list .testimonial-content {
    padding-left: 35px;
    width: auto;
}

.testimonial-list .testimonial-content blockquote {
    font-style: italic;
}

.testimonial-list .testimonial-content span {
    opacity: 0.85;
    font-size: 0.9rem;
    position: relative;
}

.testimonial-list .testimonial-content span:before {
    content: '';
    width: 50px;
    height: 1px;
    background-color: var(--ht-color-white);
    display: inline-block;
    margin-right: 25px;
    vertical-align: middle;
}

/* Pagination */
.testimonial-list .testimonial-swiper .swiper-pagination {
    text-align: left;
    margin-left: 160px;
    margin-top: 25px;
}

.testimonial-list .testimonial-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    transition: all 0.35s ease-in-out;
    background: #fff;
}

.testimonial-list .testimonial-swiper .swiper-pagination .swiper-pagination-bullet-active {
    width: 30px;
    background-color: var(--ht-color-primary);
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# NEWS
--------------------------------------------------------------*/
.news-list .news-item {
    display: block;
    color: var(--ht-color-content);
}

.news-list .all-tour-link {
    text-align: center;
    margin-top: 50px;
}

.news-list .news-item .news-item-content {
    position: relative;
    display: flex;
    align-items: self-start;
}

.news-list .news-item .news-item-content .image {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 0.55rem;
    border-bottom-left-radius: 0.55rem;
    border-bottom-right-radius: 0.55rem;
    width: 50%;
    transition: 0.35s ease-in-out;
}

.news-list .news-item.image-right .news-item-content .image {
    order: 1;
    border-top-left-radius: 0;
    border-top-right-radius: 0.55rem;
}

.news-list .news-item .news-item-content .image:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(var(--ht-color-dark-rgb), 0.35);
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.news-list .news-item:hover .news-item-content .image:after {
    opacity: 1;
}

.news-list .news-item .news-item-content .image img {
    transition: 0.35s ease-in-out;
}

.news-list .news-item:hover .news-item-content .image img {
    transform: scale(1.05);
}

.news-list .news-item .news-item-content .content {
    width: 50%;
    padding: 50px;
    background: var(--ht-color-white);
    border-top-right-radius: 0.55rem;
    border-bottom-right-radius: 0.55rem;
    position: relative;
    transition: 0.35s ease-in-out;
}

.news-list .news-item.image-right .news-item-content .content {
    order: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 0.55rem;
    border-bottom-left-radius: 0.55rem;
}

.news-list .news-item .news-item-content .content .description {
    margin-bottom: 25px;
}

.news-list .news-item .news-item-content .content .link span {
    color: var(--ht-color-primary);
}

.news-list .news-item:hover .news-item-content .content .link span {
    color: var(--ht-color-dark);
}

.news-list .news-item:hover .news-item-content .heading .title {
    color: var(--ht-color-primary);
}

.news-list .news-swiper .swiper-pagination {
    width: auto;
    line-height: 0;
    right: unset;
    left: 25px;
    bottom: unset;
    top: 25px;
}

/* Detail post */
.detail-post {
    position: relative;
}

.detail-post .img-thumb img {
    border-radius: 0.55rem;
    margin-bottom: 1rem;
}

.detail-post .meta-post {
    font-size: 0.9rem;
}

.detail-post .meta-post .category {
    text-transform: uppercase;
    font-weight: 500;
}

.detail-post .content-post {
    margin-bottom: 2.5rem;
}

.detail-post .btn-social {
    background-color: var(--ht-color-secondary);
    color: #6c757d !important;
    border: 1px #e9ecef solid;
    transition: all .3s;
    border-radius: 50%;
    color: #fff !important;
    display: inline-block;
    height: 32px;
    line-height: 32px;
    text-align: center;
    text-decoration: none;
    transition: background-color .3s;
    webkit-transition: background-color .3s;
    width: 32px;
    font-size: 1rem;
}

.detail-post .btn-social:hover {
    background-color: var(--ht-color-secondary);
}

/* Tags */
.detail-post .tags-box li {
    display: inline-block;
    margin-bottom: 0.35rem;
}

.detail-post .tags-box li a,
.detail-post .tags-box li a:hover,
.detail-post .tags-box li a:focus {
    padding: 0.35rem 1.25rem;
    color: #fff;
}

/* Comments */
.detail-post .comment-list .comment-item {
    margin-bottom: 1.5em;
}

.detail-post .comment-list .comment-item .bi-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: -0.01rem;
    border-radius: 100%;
    height: auto;
    margin-bottom: 1rem;
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    background: #fff;
}

.detail-post .comment-list .comment-item h5 a {
    color: var(--ht-color-dark);
    margin-right: 0.5rem;
}

.detail-post .comment-list .comment-item h5 small {
    color: var(--ht-color-secondary);
    font-size: 0.85rem;
    font-weight: normal;
}

.detail-post .comment-list .comment-item .action {
    font-size: 0.9rem;
}

/* Sidebar */
.detail-post .sidebar-box {
    position: relative;
}

.detail-post .sidebar-box .side-widget {
    margin-bottom: 2.5rem;
}

.detail-post .sidebar-box .side-widget h3 {
    margin-bottom: 1rem;
}

.detail-post .sidebar-box a {
    color: var(--ht-color-dark);
}

.detail-post .sidebar-box a:hover,
.detail-post .sidebar-box a:focus {
    color: var(--ht-color-primary);
}

.detail-post .sidebar-box .menu-sidebar {
    font-weight: 600;
    line-height: 2;
}

.detail-post .blog-right article.post {
    margin-bottom: 1rem;
}

.detail-post .blog-right article.post .post-info {
    display: flex;
}

.detail-post .blog-right article.post .post-info .post-img {
    width: 120px;
    padding-right: 20px;
    margin-bottom: 0.5rem;
}

.detail-post .blog-right article.post .post-info .post-img img {
    border-radius: 0.55rem;
}

.detail-post .blog-right article.post .post-info .post-title {
    width: calc(100% - 120px);
    padding-right: 20px;
}

.detail-post .blog-right article.post .post-info .post-title h3 {
    font-size: 1.25rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
}

.detail-post .blog-right article.post .post-info .post-meta {
    font-size: 0.85rem;
    color: var(--bs-secondary);
    font-weight: 300;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# SERVICES (Other services)
--------------------------------------------------------------*/
.service-list,
.service-list .service-item {
    position: relative;
    display: block;
    color: var(--ht-color-content);
}

.service-list .service-item .news-item-content {
    position: relative;
    display: flex;
    align-items: self-start;
}

.service-list .service-item .news-item-content .image {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 0.55rem;
    border-bottom-left-radius: 0.55rem;
    border-bottom-right-radius: 0.55rem;
    width: 50%;
    transition: 0.35s ease-in-out;
}

.service-list .service-item .news-item-content .image:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(var(--ht-color-dark-rgb), 0.35);
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.service-list .service-item:not(div):hover .news-item-content .image:after {
    opacity: 1;
}

.service-list .service-item .news-item-content .content {
    width: 50%;
    padding: 50px;
    background: var(--ht-color-white);
    border-top-right-radius: 0.55rem;
    border-bottom-right-radius: 0.55rem;
    position: relative;
    transition: all 0.35s ease-in-out;
}

.service-list .service-item .news-item-content .content .description {
    margin-bottom: 25px;
}

.service-list .service-item:not(div):hover .news-item-content .content .title {
    color: var(--ht-color-primary);
}

.service-list .service-item .news-item-content .link {
    color: var(--ht-color-primary);
}

.service-list .service-item:not(div):hover .news-item-content .link {
    color: var(--ht-color-secondary);
}

.service-list .service-swiper .swiper-pagination {
    width: auto;
    line-height: 0;
    right: unset;
    left: 25px;
    bottom: unset;
    top: 25px;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# SPA
--------------------------------------------------------------*/
.spa-wellnes-box .spa-wellnes .spa-wellnes-info {
    width: 68%;
    margin-right: auto;
    padding-right: 50px;
}

.spa-wellnes-box .spa-wellnes {
    display: flex;
    align-items: self-start;
}

.spa-wellnes-box .spa-wellnes-desc,
.spa-wellnes-box .service-packages {
    margin-bottom: 4rem;
}

.spa-wellnes-box .spa-wellnes-desc>.title,
.spa-wellnes-box .service-packages>.title {
    margin-bottom: 2rem;
    font-size: 2.15rem;
}

/* Service packages */
.spa-service .info-box-container .info-box-content .image {
    overflow: hidden;
    max-width: calc(100% - 225px);
}

.spa-service .info-box-container .info-box-content.image-left .content,
.spa-service .info-box-container .info-box-content.image-right .content {
    padding: 35px;
    width: 380px;
    margin-top: 280px;
}

.spa-service .info-box-container .info-box-content.image-left .content {
    margin-left: -200px;
}

.spa-service .info-box-container .info-box-content.image-right .content {
    margin-right: -200px;
}

.spa-service .info-box-container .info-box-content .content .heading {
    margin-bottom: 1rem;
}

.spa-service .info-box-container .info-box-content .content .title {
    font-size: 1.75rem;
}

/* Contact & Booking */
.spa-wellnes-box .spa-wellnes .spa-wellnes-contact {
    width: 32%;
    position: sticky;
    top: 285px;
}

.spa-wellnes-box .spa-wellnes .spa-wellnes-contact .contact-info {
    background: #ffffff;
    padding: 35px;
    border-radius: 0.55rem;
    margin-top: -190px;
    position: relative;
    z-index: 1;
}

.spa-wellnes-box .spa-wellnes .spa-wellnes-contact .contact-info .brand {
    margin-bottom: 30px;
}

.spa-wellnes-box .spa-wellnes .spa-wellnes-contact .contact-info .info {
    margin-bottom: 25px;
    line-height: 1.75rem;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# RESTAURANT & BAR
--------------------------------------------------------------*/
.restaurant-box .restaurant-content {
    display: flex;
    align-items: self-start;
}

.restaurant-box .restaurant-content .restaurant-info {
    width: 68%;
    margin-right: auto;
    padding-right: 50px;
}

.restaurant-box .restaurant-desc,
.restaurant-box .restaurant-menu {
    margin-bottom: 4rem;
}

.restaurant-box .restaurant-desc>.title,
.restaurant-box .restaurant-menu>.title {
    margin-bottom: 2rem;
    font-size: 2.15rem;
}

/* Service packages */
.menu-content .info-box-container .info-box-content {
    flex-direction: column;
}

.menu-content .info-box-container .info-box-content .image {
    overflow: hidden;
    max-width: 100%;
}

.menu-content .info-box-container .info-box-content.image-left .content,
.menu-content .info-box-container .info-box-content.image-right .content {
    padding: 35px;
    width: auto;
    margin-top: -50px;
}

.menu-content .info-box-container .info-box-content.image-left .image {
    padding-right: 100px
}

.menu-content .info-box-container .info-box-content.image-right .image {
    order: unset;
    padding-left: 100px
}

.menu-content .info-box-container .info-box-content.image-left .content {
    margin-left: 100px;
}

.menu-content .info-box-container .info-box-content.image-right .content {
    margin-right: 100px;
    order: unset;
}

.menu-content .info-box-container .info-box-content .content .heading {
    margin-bottom: 1rem;
}

.menu-content .info-box-container .info-box-content .content .title {
    font-size: 1.75rem;
}

/* Contact & Booking */
.restaurant-box .restaurant-content .restaurant-contact {
    width: 32%;
    position: sticky;
    top: 285px;
}

.restaurant-box .restaurant-content .restaurant-contact .contact-info {
    background: #ffffff;
    padding: 35px;
    border-radius: 0.55rem;
    margin-top: -190px;
    position: relative;
    z-index: 1;
}

.restaurant-box .restaurant-content .restaurant-contact .contact-info .brand {
    margin-bottom: 30px;
}

.restaurant-box .restaurant-content .restaurant-contact .contact-info .info {
    margin-bottom: 25px;
    line-height: 1.75rem;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-box {
    position: relative;
}

.gallery-box .photo-list .photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.55rem;
}

.gallery-box .photo-list a .photo-item:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(var(--ht-color-dark-rgb), 0.35);
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.gallery-box .photo-list a:hover .photo-item:after {
    opacity: 1;
}

.gallery-box .photo-list a .photo-item img {
    transition: 0.35s ease-in-out;
}

.gallery-box .photo-list a:hover .photo-item img {
    transform: scale(1.05);
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# CONTACT
--------------------------------------------------------------*/
.contact-content {
    position: relative;
}

.contact-content .contact-title {
    margin-bottom: 25px;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# TEAM
--------------------------------------------------------------*/
.team-list {
    position: relative;
}

.team-list .team-box .team-avatar {
    border-radius: 0.55rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# LOGIN & REGISTER
--------------------------------------------------------------*/
.login-box,
.register-box {
    position: relative;
}

.login-box .login .card,
.register-box .register .card {
    border-radius: 0.55rem;
    border-color: var(--ht-background-light);
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
.footer {
    color: var(--bs-dark);
    line-height: 2rem;
    background-color: var(--ht-color-dark);
    color: rgba(var(--ht-color-white-rgb), 0.55);
}

.footer a {
    color: var(--ht-color-white);
}

.footer a:hover,
.footer a:focus {
    color: var(--ht-color-primary);
}

.footer li,
.footer p {
    margin-bottom: 0.75rem;
}

.footer .footer-top {
    padding-top: 100px;
    margin-bottom: 25px;
}

.footer .footer-bottom {
    border-top: 1px solid rgba(var(--ht-color-white-rgb), 0.15);
    padding-top: 2rem;
    margin-top: 0.5rem;
    padding-bottom: 1rem;
}

.footer .footer-logo {
    margin-bottom: 25px;
}

.footer .footer-widget {
    margin-bottom: 50px;
}

.footer .footer-widget .widget-title {
    color: var(--ht-color-white);
    margin-bottom: 25px;
    font-family: var(--ht-font-default);
    font-weight: 500;
}

.footer .subscribe {
    margin-bottom: 50px;
}

.footer .footer-social .social-title {
    color: var(--ht-color-white);
    font-family: var(--ht-font-default);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.footer .footer-social .social-list a {
    color: rgba(var(--ht-color-white-rgb), 0.35);
}

.footer .footer-social .social-list a:hover {
    color: var(--ht-color-primary);
}

.footer .footer-social .social-list a:not(:last-child) {
    margin-right: 0.75rem;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
HEIGHT & WIDTH
--------------------------------------------------------------*/
.vh-25 {
    height: 50vh !important;
}

.vh-50 {
    height: 50vh !important;
}

.vh-60 {
    height: 60vh !important;
}

.vh-65 {
    height: 65vh !important;
}

.vh-75 {
    height: 75vh !important;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
FONTS
--------------------------------------------------------------*/
/* Font weght */
.fw-bold {
    font-weight: 600 !important;
}

.fw-bold-1 {
    font-weight: 500 !important;
}

.fw-bold-2 {
    font-weight: 600 !important;
}

.fw-bold-3 {
    font-weight: 700 !important;
}

.fw-bold-4 {
    font-weight: 800 !important;
}

/*--------------------------------------------------------------*/

/*--------------------------------------------------------------
SPACING
--------------------------------------------------------------*/
/* Pading page */
.pd-left-95px {
    padding-left: 95px;
}

.pd-right-95px {
    padding-right: 95px;
}

.pd-left-right-95px {
    padding-left: 95px;
    padding-right: 95px;
}

.pd-left-30pc {
    padding-left: calc(30% - 50px);
}

.pd-right-30pc {
    padding-right: calc(30% - 50px);
}

/* Pading top */
.pd-top-010 {
    padding-top: 0.1rem !important;
}

.pd-top-020 {
    padding-top: 0.2rem !important;
}

.pd-top-030 {
    padding-top: 0.3rem !important;
}

.pd-top-040 {
    padding-top: 0.4rem !important;
}

.pd-top-050 {
    padding-top: 0.5rem !important;
}

.pd-top-060 {
    padding-top: 0.6rem !important;
}

.pd-top-070 {
    padding-top: 0.7rem !important;
}

.pd-top-080 {
    padding-top: 0.9rem !important;
}

.pd-top-090 {
    padding-top: 0.9rem !important;
}

.pd-top-100 {
    padding-top: 1rem !important;
}

.pd-top-125 {
    padding-top: 1.25rem !important;
}

.pd-top-150 {
    padding-top: 1.5rem !important;
}

.pd-top-200 {
    padding-top: 2rem !important;
}

.pd-top-225 {
    padding-top: 1.25rem !important;
}

.pd-top-250 {
    padding-top: 2.5rem !important;
}

.pd-top-270 {
    padding-top: 2.75rem !important;
}


.pd-top-300 {
    padding-top: 3rem !important;
}

.pd-top-325 {
    padding-top: 3.25rem !important;
}

.pd-top-300 {
    padding-top: 3.5rem !important;
}

.pd-top-370 {
    padding-top: 3.75rem !important;
}


.pd-top-400 {
    padding-top: 4rem !important;
}

.pd-top-425 {
    padding-top: 4.25rem !important;
}

.pd-top-450 {
    padding-top: 4.5rem !important;
}

.pd-top-470 {
    padding-top: 4.75rem !important;
}

.pd-top-500 {
    padding-top: 5rem !important;
}

.pd-top-525 {
    padding-top: 5.25rem !important;
}

.pd-top-550 {
    padding-top: 5.5rem !important;
}

.pd-top-570 {
    padding-top: 5.75rem !important;
}

.pd-top-600 {
    padding-top: 6rem !important;
}

.pd-top-650 {
    padding-top: 6.5rem !important;
}

.pd-top-700 {
    padding-top: 7rem !important;
}

.pd-top-750 {
    padding-top: 7.5rem !important;
}

.pd-top-800 {
    padding-top: 8rem !important;
}

.pd-top-650 {
    padding-top: 8.5rem !important;
}

.pd-top-900 {
    padding-top: 9rem !important;
}

.pd-top-950 {
    padding-top: 9.5rem !important;
}

.pd-top-1000 {
    padding-top: 10rem !important;
}

/* Pading bottom */
.pd-bottom-010 {
    padding-bottom: 0.1rem !important;
}

.pd-bottom-020 {
    padding-bottom: 0.2rem !important;
}

.pd-bottom-030 {
    padding-bottom: 0.3rem !important;
}

.pd-bottom-040 {
    padding-bottom: 0.4rem !important;
}

.pd-bottom-050 {
    padding-bottom: 0.5rem !important;
}

.pd-bottom-060 {
    padding-bottom: 0.6rem !important;
}

.pd-bottom-070 {
    padding-bottom: 0.7rem !important;
}

.pd-bottom-080 {
    padding-bottom: 0.9rem !important;
}

.pd-bottom-090 {
    padding-bottom: 0.9rem !important;
}

.pd-bottom-100 {
    padding-bottom: 1rem !important;
}

.pd-bottom-125 {
    padding-bottom: 1.25rem !important;
}

.pd-bottom-150 {
    padding-bottom: 1.5rem !important;
}

.pd-bottom-200 {
    padding-bottom: 2rem !important;
}

.pd-bottom-225 {
    padding-bottom: 1.25rem !important;
}

.pd-bottom-250 {
    padding-bottom: 2.5rem !important;
}

.pd-bottom-270 {
    padding-bottom: 2.75rem !important;
}


.pd-bottom-300 {
    padding-bottom: 3rem !important;
}

.pd-bottom-325 {
    padding-bottom: 3.25rem !important;
}

.pd-bottom-300 {
    padding-bottom: 3.5rem !important;
}

.pd-bottom-370 {
    padding-bottom: 3.75rem !important;
}


.pd-bottom-400 {
    padding-bottom: 4rem !important;
}

.pd-bottom-425 {
    padding-bottom: 4.25rem !important;
}

.pd-bottom-450 {
    padding-bottom: 4.5rem !important;
}

.pd-bottom-470 {
    padding-bottom: 4.75rem !important;
}

.pd-bottom-500 {
    padding-bottom: 5rem !important;
}

.pd-bottom-525 {
    padding-bottom: 5.25rem !important;
}

.pd-bottom-550 {
    padding-bottom: 5.5rem !important;
}

.pd-bottom-570 {
    padding-bottom: 5.75rem !important;
}

.pd-bottom-600 {
    padding-bottom: 6rem !important;
}

.pd-bottom-650 {
    padding-bottom: 6.5rem !important;
}

.pd-bottom-700 {
    padding-bottom: 7rem !important;
}

.pd-bottom-750 {
    padding-bottom: 7.5rem !important;
}

.pd-bottom-800 {
    padding-bottom: 8rem !important;
}

.pd-bottom-650 {
    padding-bottom: 8.5rem !important;
}

.pd-bottom-900 {
    padding-bottom: 9rem !important;
}

.pd-bottom-950 {
    padding-bottom: 9.5rem !important;
}

.pd-bottom-1000 {
    padding-bottom: 10rem !important;
}

/* Margin top */
.mg-top-010 {
    margin-top: 0.1rem !important;
}

.mg-top-020 {
    margin-top: 0.2rem !important;
}

.mg-top-030 {
    margin-top: 0.3rem !important;
}

.mg-top-040 {
    margin-top: 0.4rem !important;
}

.mg-top-050 {
    margin-top: 0.5rem !important;
}

.mg-top-060 {
    margin-top: 0.6rem !important;
}

.mg-top-070 {
    margin-top: 0.7rem !important;
}

.mg-top-080 {
    margin-top: 0.9rem !important;
}

.mg-top-090 {
    margin-top: 0.9rem !important;
}

.mg-top-100 {
    margin-top: 1rem !important;
}

.mg-top-125 {
    margin-top: 1.25rem !important;
}

.mg-top-150 {
    margin-top: 1.5rem !important;
}

.mg-top-200 {
    margin-top: 2rem !important;
}

.mg-top-225 {
    margin-top: 1.25rem !important;
}

.mg-top-250 {
    margin-top: 2.5rem !important;
}

.mg-top-270 {
    margin-top: 2.75rem !important;
}


.mg-top-300 {
    margin-top: 3rem !important;
}

.mg-top-325 {
    margin-top: 3.25rem !important;
}

.mg-top-300 {
    margin-top: 3.5rem !important;
}

.mg-top-370 {
    margin-top: 3.75rem !important;
}


.mg-top-400 {
    margin-top: 4rem !important;
}

.mg-top-425 {
    margin-top: 4.25rem !important;
}

.mg-top-450 {
    margin-top: 4.5rem !important;
}

.mg-top-470 {
    margin-top: 4.75rem !important;
}

.mg-top-500 {
    margin-top: 5rem !important;
}

.mg-top-525 {
    margin-top: 5.25rem !important;
}

.mg-top-550 {
    margin-top: 5.5rem !important;
}

.mg-top-570 {
    margin-top: 5.75rem !important;
}

.mg-top-600 {
    margin-top: 6rem !important;
}

.mg-top-650 {
    margin-top: 6.5rem !important;
}

.mg-top-700 {
    margin-top: 7rem !important;
}

.mg-top-750 {
    margin-top: 7.5rem !important;
}

.mg-top-800 {
    margin-top: 8rem !important;
}

.mg-top-650 {
    margin-top: 8.5rem !important;
}

.mg-top-900 {
    margin-top: 9rem !important;
}

.mg-top-950 {
    margin-top: 9.5rem !important;
}

.mg-top-1000 {
    margin-top: 10rem !important;
}

/* Margin bottom */
.mg-bottom-010 {
    margin-bottom: 0.1rem !important;
}

.mg-bottom-020 {
    margin-bottom: 0.2rem !important;
}

.mg-bottom-030 {
    margin-bottom: 0.3rem !important;
}

.mg-bottom-040 {
    margin-bottom: 0.4rem !important;
}

.mg-bottom-050 {
    margin-bottom: 0.5rem !important;
}

.mg-bottom-060 {
    margin-bottom: 0.6rem !important;
}

.mg-bottom-070 {
    margin-bottom: 0.7rem !important;
}

.mg-bottom-080 {
    margin-bottom: 0.9rem !important;
}

.mg-bottom-090 {
    margin-bottom: 0.9rem !important;
}

.mg-bottom-100 {
    margin-bottom: 1rem !important;
}

.mg-bottom-125 {
    margin-bottom: 1.25rem !important;
}

.mg-bottom-150 {
    margin-bottom: 1.5rem !important;
}

.mg-bottom-200 {
    margin-bottom: 2rem !important;
}

.mg-bottom-225 {
    margin-bottom: 1.25rem !important;
}

.mg-bottom-250 {
    margin-bottom: 2.5rem !important;
}

.mg-bottom-270 {
    margin-bottom: 2.75rem !important;
}


.mg-bottom-300 {
    margin-bottom: 3rem !important;
}

.mg-bottom-325 {
    margin-bottom: 3.25rem !important;
}

.mg-bottom-300 {
    margin-bottom: 3.5rem !important;
}

.mg-bottom-370 {
    margin-bottom: 3.75rem !important;
}


.mg-bottom-400 {
    margin-bottom: 4rem !important;
}

.mg-bottom-425 {
    margin-bottom: 4.25rem !important;
}

.mg-bottom-450 {
    margin-bottom: 4.5rem !important;
}

.mg-bottom-470 {
    margin-bottom: 4.75rem !important;
}

.mg-bottom-500 {
    margin-bottom: 5rem !important;
}

.mg-bottom-525 {
    margin-bottom: 5.25rem !important;
}

.mg-bottom-550 {
    margin-bottom: 5.5rem !important;
}

.mg-bottom-570 {
    margin-bottom: 5.75rem !important;
}

.mg-bottom-600 {
    margin-bottom: 6rem !important;
}

.mg-bottom-650 {
    margin-bottom: 6.5rem !important;
}

.mg-bottom-700 {
    margin-bottom: 7rem !important;
}

.mg-bottom-750 {
    margin-bottom: 7.5rem !important;
}

.mg-bottom-800 {
    margin-bottom: 8rem !important;
}

.mg-bottom-650 {
    margin-bottom: 8.5rem !important;
}

.mg-bottom-900 {
    margin-bottom: 9rem !important;
}

.mg-bottom-950 {
    margin-bottom: 9.5rem !important;
}

.mg-bottom-1000 {
    margin-bottom: 10rem !important;
}

.mg-bottom-1700 {
    margin-bottom: 17rem !important;
}

/*--------------------------------------------------------------*/