/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
** - Utility
** - Common
** - Custom Cursor
** - Animations
** - Cards
** - Navigation
** - Home Showcase
** - Mobile Nav
** - Search Popup
** - Page Header
** - Main Slider
** - About
** - Services
** - ServiceS Details
** - Rooms
** - Room Details
** - Video
** - Funfact
** - Staff
** - Staff Details
** - Contact
** - Testimonial
** - Why Choose
** - Working Process
** - Blog
** - Blog List
** - Blog Standard
** - Blog Details
** - Feature
** - Pricing Plan
** - Faq
** - Gallery
** - History
** - Coming Soon
** - Products
** - Product Details
** - Cart
** - Checkout
** - Wishlist
** - Sign Up
** - Login
** - Privacy Policy
** - Error
** - Footer
** - Google Map
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
    --hotelux-font: "Roboto", sans-serif;
    --hotelux-font-two: "Playfair Display", serif;
    --hotelux-gray: 	#191628;
    --hotelux-gray-rgb: 88, 91, 107;
    --hotelux-base:  #744E41;
    --hotelux-base-rgb: 225, 164, 0;
    --hotelux-primary: #f1f1f1;
    --hotelux-primary-rgb: 241, 241, 241;
    --hotelux-black: 	#040707;
    --hotelux-black-rgb: 25, 22, 40;
    --hotelux-white: #ffffff;
    --hotelux-white-rgb: 255, 255, 255;
  }
  
  .row {
    --bs-gutter-x: 30px;
  }
  
  .gutter-y-30 {
    --bs-gutter-y: 30px;
  }
  
  body {
    font-family: var(--hotelux-font);
    color: var(--hotelux-gray);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
  }
  
  body.locked {
    overflow: hidden;
  }
  
  a {
    color: var(--hotelux-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  a,
  a:hover,
  a:focus,
  a:visited {
    text-decoration: none;
  }
  
  ::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
  }
  
  :-ms-input-placeholder {
    color: inherit;
    opacity: 1;
  }
  
  ::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
  }
  
  ::placeholder {
    color: inherit;
    opacity: 1;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    text-transform: capitalize;
    font-family: var(--hotelux-font-two);
    color: var(--hotelux-black);
    margin: 0;
  }
  
  p {
    margin: 0;
  }
  
  dl,
  ol,
  ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
  }
  
  ::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
  }
  
  :-ms-input-placeholder {
    color: inherit;
    opacity: 1;
  }
  
  ::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
  }
  
  ::placeholder {
    color: inherit;
    opacity: 1;
  }
  
  .page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  
  
  @keyframes wobble-horizontal-hover {
    16.65% {
      transform: translateX(5px);
    }
  
    33.3% {
      transform: translateX(-3px);
    }
  
    49.95% {
      transform: translateX(4px);
    }
  
    66.6% {
      transform: translateX(-2px);
    }
  
    83.25% {
      transform: translateX(1px);
    }
  
    100% {
      transform: translateX(0);
    }
  }
  
  /*=============== scrollbar-Css =============*/
  .xs-sidebar-widget {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  .xs-sidebar-widget::-webkit-scrollbar {
    display: none;
  }
  
  
  .mobile-nav__content {
    max-height: 100vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    -ms-overflow-style: auto;
  }
  
  .mobile-nav__content::-webkit-scrollbar {
    width: 6px;
  }
  
  .mobile-nav__content::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .mobile-nav__content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    backdrop-filter: blur(4px);
    transition: background 0.3s;
  }
  
  .mobile-nav__content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
  }
  
  
  
  
  @media (min-width: 1320px) {
    .container {
      max-width: 1320px;
    }
  }
  
  ::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
  }
  
  :-ms-input-placeholder {
    color: inherit;
    opacity: 1;
  }
  
  ::-ms-input-placeholder {
    color: inherit;
    opacity: 1;
  }
  
  ::placeholder {
    color: inherit;
    opacity: 1;
  }
  
  /*** chat popup ***/
  
  .chat-popup {
    position: fixed;
    left: 0;
    bottom: 0px;
    width: 350px;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    background: var(--hotelux-black);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
    border-radius: 10px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    transform: translateX(-100%);
    transition: background-color 0.4s ease;
    transition: all 0.4s ease;
  }
  
  .chat-popup.popup-visible {
    transform: translateX(0%);
    visibility: visible;
    opacity: 1;
  }
  
  .chat-popup .popup-inner {
    position: relative;
    display: block;
    padding: 40px 35px;
    padding-top: 32px;
  }
  
  .chat-popup .close-chat {
    position: absolute;
    display: flex;
    left: 0px;
    top: -55px;
    width: 60px;
    height: 55px;
    line-height: 44px;
    text-align: center;
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
    background: var(--hotelux-base);
    cursor: pointer;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    align-items: center;
    justify-content: center;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  
  .chat-popup .popup-inner p {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, .70);
  }
  
  .chat-popup .chat-form .form-group {
    position: relative;
    display: block;
    margin-bottom: 20px;
  }
  
  .chat-popup .chat-form .form-group:last-child {
    margin-bottom: 0px;
  }
  
  .chat-popup .chat-form .form-group input[type='text'],
  .chat-popup .chat-form .form-group input[type='email'],
  .chat-popup .chat-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 5px;
    font-size: 13px;
    color: rgba(255, 255, 255, .70);
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, .10);
    transition: all 500ms ease;
  }
  
  .chat-popup .chat-form .form-group textarea {
    height: 120px;
    resize: none;
  }
  
  .chat-popup .chat-form .form-group input:focus,
  .chat-popup .chat-form .form-group textarea:focus {
    outline: none;
  }
  
  .chat-popup .chat-form .form-group button {
    border: none;
  }
  
  .chat-popup .chat-form .form-group .thm-btn::before,
  .chat-popup .chat-form .form-group .thm-btn::after {
    background-color: var(--hotelux-white);
  }
  
  .chat-popup .chat-form .form-group .thm-btn:hover {
    color: var(--hotelux-base);
  }
  
  .chat-popup .chat-form .form-group .thm-btn:hover>span {
    background-color: var(--hotelux-base);
    color: var(--hotelux-white);
  }
  
  
  .chat-icon {
    position: fixed;
    display: inline-block;
    left: 30px;
    bottom: 45px;
    z-index: 99;
  }
  
  .chat-icon button {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 47px;
    text-align: center;
    font-size: 20px;
    color: #fff;
    border-radius: 5px;
    background: var(--hotelux-base);
    z-index: 1;
    border: none;
  }
  
  .chat-icon button:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background-color: rgba(var(--hotelux-base-rgb), .20);
    border-radius: 5px;
    z-index: -1;
  }
  
  
  
  /***
  =============================================
  xs sidebar
  =============================================
  ***/
  .xs-sidebar-group .xs-overlay {
    left: 0;
    top: 0;
    position: fixed;
    height: 100%;
    opacity: 0;
    width: 100%;
    visibility: hidden;
    cursor: url(../images/icon/cross-out.png),
      pointer;
    transform: translateX(-100%);
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: 99999;
  }
  
  .xs-sidebar-group.isActive .xs-overlay {
    opacity: .8;
    visibility: visible;
    transform: translateX(0%);
  }
  
  .xs-sidebar-group .widget-heading {
    position: absolute;
    top: 0;
    right: 0;
    padding: 25px;
  }
  
  .xs-sidebar-group .widget-heading a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .xs-sidebar-group .widget-heading a:hover {
    color: var(--hotelux-base);
    border-color: var(--hotelux-base);
  }
  
  .xs-sidebar-widget {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 360px;
    z-index: 999999;
    overflow: hidden;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    border-right: 5px solid rgba(var(--hotelux-white-rgb), .50);
    transform: translateX(-100%);
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
  }
  
  .xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    transform: translateX(0%);
    background-color: var(--hotelux-black);
  }
  
  .sidebar-textwidget {
    padding: 70px 30px;
  }
  
  .sidebar-widget-container {
    position: relative;
    top: 0px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
  }
  
  .xs-sidebar-group.isActive .sidebar-widget-container {
    transform: translateX(0%);
    visibility: visible;
    opacity: 1;
  }
  
  .xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .8;
    z-index: 0;
  }
  
  .xs-bg-black {
    background-color: #000000;
  }
  
  .xs-sidebar-group .content-inner .logo {
    position: relative;
    max-width: 172px;
    width: 100%;
    margin-bottom: 30px;
  }
  
  .xs-sidebar-group .content-inner h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
  }
  
  .xs-sidebar-group .content-inner .content-box {
    margin-bottom: 30px;
    padding-right: 15px;
  }
  
  .xs-sidebar-group .content-inner .content-box p {
    color: #ffffff;
  }
  
  .xs-sidebar-group .content-inner .form-inner .form-group {
    position: relative;
    margin-bottom: 20px;
  }
  
  .xs-sidebar-group .content-inner .form-inner .form-group:last-child {
    margin-bottom: 0px;
  }
  
  .xs-sidebar-group .content-inner .form-inner .form-group input[type='text'],
  .xs-sidebar-group .content-inner .form-inner .form-group input[type='email'],
  .xs-sidebar-group .content-inner .form-inner .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    font-size: 15px;
    padding: 10px 20px;
    color: rgba(var(--hotelux-white-rgb), 1);
    border: none;
    border-radius: 0;
    outline: none;
    transition: all 500ms ease;
    background-color: rgba(var(--hotelux-white-rgb), .10);
  }
  
  .xs-sidebar-group .content-inner .form-inner .form-group textarea {
    resize: none;
    height: 120px;
  }
  
  .xs-sidebar-group .content-inner .form-inner .form-group input:focus,
  .xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
    border-color: #00224f;
  }
  
  .xs-sidebar-group .content-inner .form-inner .form-group button {
    position: relative;
    border: none;
  }
  
  .xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn::before,
  .xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn::after {
    background-color: var(--hotelux-white);
  }
  
  .xs-sidebar-group .content-inner .form-inner .form-group button.thm-btn:hover {
    color: var(--hotelux-black);
  }
  
  .sidebar-contact-info {
    position: relative;
    display: block;
    padding-top: 43px;
  }
  
  .sidebar-contact-info ul {
    position: relative;
    display: block;
    padding-bottom: 22px;
  }
  
  .sidebar-contact-info ul li {
    position: relative;
    display: block;
    color: var(--hotelux-white);
    line-height: 30px;
  }
  
  .sidebar-contact-info ul li span {
    position: relative;
    display: inline-block;
    width: 25px;
  }
  
  .sidebar-contact-info ul li span:before {
    position: relative;
    display: inline-block;
    color: #ffffff;
  }
  
  .sidebar-contact-info ul li a {
    color: var(--hotelux-white);
  }
  
  .sidebar-contact-info ul li a:hover {
    color: var(--hotelux-base);
  }
  
  .xs-sidebar-group .content-inner .thm-social-link1 {
    overflow: hidden;
  }
  
  .thm-social-link1 {
    position: relative;
    display: block;
  }
  
  .thm-social-link1 ul {
    position: relative;
  }
  
  .thm-social-link1 ul li {
    position: relative;
    display: inline-block;
    margin-right: 6px;
  }
  
  .thm-social-link1 ul li:last-child {
    margin-right: 0;
  }
  
  .thm-social-link1 ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(var(--hotelux-white-rgb), .10);
    border-radius: 50%;
    color: var(--hotelux-white);
    font-size: 15px;
    text-align: center;
    z-index: 1;
    transition: all 500ms ease;
  }
  
  .thm-social-link1 ul li a:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background: var(--hotelux-base);
    border-radius: 50%;
    transition: .5s;
    transform: scale(.5);
    opacity: 0;
    content: '';
    z-index: -1;
  }
  
  .thm-social-link1 ul li a:hover:before {
    transform: scale(1);
    opacity: 1;
  }
  
  .thm-social-link1 ul li a:hover {
    color: var(--hotelux-white);
  }
  
  
  /*=============== scrollbar-Css =============*/
  
  .xs-sidebar-widget::-webkit-scrollbar {
    width: 0px;
  }
  
  
  
  /*--------------------------------------------------------------
  # Custom Cursor
  --------------------------------------------------------------*/
  .custom-cursor__cursor {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 1px solid var(--hotelux-base);
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    -webkit-transform: translate(calc(-50% + 5px), -50%);
    transform: translate(calc(-50% + 5px), -50%);
    z-index: 999991;
  }
  
  .custom-cursor__cursor-two {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--hotelux-base);
    opacity: .3;
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    -webkit-transition: width .3s, height .3s, opacity .3s;
    transition: width .3s, height .3s, opacity .3s;
    z-index: 999991;
  }
  
  .custom-cursor__hover {
    background-color: var(--hotelux-base);
    opacity: 0.4;
  }
  
  .custom-cursor__innerhover {
    width: 25px;
    height: 25px;
    opacity: .4;
  }
  
  
  /*---------------------------------
       Preloader CSS
  -----------------------------------*/
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    z-index: 999999;
  }
  
  .preloader {
    width: 60px;
    height: 60px;
    display: inline-block;
    padding: 0px;
    text-align: left;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -25px;
    margin-top: -25px;
  }
  
  .preloader span {
    position: absolute;
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: var(--hotelux-base);
    -webkit-animation: preloader 1.3s linear infinite;
    animation: preloader 1.3s linear infinite;
  }
  
  .preloader span:last-child {
    animation-delay: -0.9s;
    -webkit-animation-delay: -0.9s;
  }
  
  @keyframes preloader {
    0% {
      transform: scale(0, 0);
      opacity: 0.5;
    }
  
    100% {
      transform: scale(1, 1);
      opacity: 0;
    }
  }
  
  @-webkit-keyframes preloader {
    0% {
      -webkit-transform: scale(0, 0);
      opacity: 0.5;
    }
  
    100% {
      -webkit-transform: scale(1, 1);
      opacity: 0;
    }
  }
  
  /*--- end of preloader ---*/
  
  
  
  
  
  
  
  /* scroll to top */
  .scroll-to-top {
    display: flex;
    align-items: center;
    width: auto;
    height: 35px;
    background: transparent;
    position: fixed;
    bottom: 60px;
    right: -12px;
    z-index: 99;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: rotate(-90deg);
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .scroll-to-top:hover {
    color: var(--hotelux-base);
  }
  
  .scroll-to-top__text {
    display: inline;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-left: 10px;
  }
  
  .scroll-to-top__wrapper {
    display: inline-block;
    width: 30px;
    height: 4px;
    background-color: var(--hotelux-base);
    position: relative;
    overflow: hidden;
  }
  
  .scroll-to-top__inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--hotelux-black);
  }
  
  .scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    bottom: 70px;
  }
  
  
  
  
  
  /*--------------------------------------------------------------
  # Search Popup
  --------------------------------------------------------------*/
  .search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 120px;
    width: 100%;
    z-index: 99999;
    transform: translateY(-100%);
    transition: all 0.5s;
  }
  
  .search-active .search-popup {
    transform: translateY(0%);
  }
  
  .search-popup .color-layer {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 120px;
    width: 100%;
    background-color: var(--hotelux-base);
    transition: all 0.5s;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.05);
  }
  
  .sidenav-bar-visible .search-popup {
    display: none;
  }
  
  .search-popup .close-search {
    position: absolute;
    right: 25px;
    top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0%;
    cursor: pointer;
    color: #ffffff;
    font-size: 30px;
    transition: all 0.5s;
    border: none;
    opacity: 0;
    transform: translateX(100px);
    visibility: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 9999;
  }
  
  .search-popup .close-search:hover {
    color: var(--hotelux-base);
    background-color: rgba(255, 255, 255, 1.0);
  }
  
  .search-active .search-popup .close-search {
    opacity: 1;
    transform: translateX(0px);
    visibility: visible;
  }
  
  
  
  
  .search-popup form {
    position: absolute;
    max-width: 700px;
    top: 25px;
    left: 0px;
    right: 0px;
    margin: 0px auto 0;
    opacity: 0;
    transition: all 0.5s;
    z-index: 999;
  }
  
  .search-active .search-popup form {
    opacity: 1;
  }
  
  .search-popup .form-group {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
  }
  
  .search-popup .form-group input[type="text"],
  .search-popup .form-group input[type="search"] {
    position: relative;
    display: block;
    background-color: rgba(255, 255, 255, 1.0);
    font-size: 18px;
    color: var(--hotelux-black);
    height: 70px;
    width: 100%;
    padding: 10px 30px 10px 75px;
    font-weight: 500;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    text-transform: capitalize;
    border: 0px solid rgba(0, 0, 0, 0.10)
  }
  
  .search-popup .form-group input[type="text"],
  .search-popup .form-group input[type="search"]:focus {
    outline: none;
  }
  
  .search-popup .form-group input[type="submit"],
  .search-popup .form-group button {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 70px;
    background: var(--hotelux-black);
    text-align: center;
    font-size: 20px;
    color: var(--hotelux-white);
    padding: 0;
    cursor: pointer;
    border: none;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    width: 60px;
  }
  
  .search-popup .form-group button i {
    font-style: normal;
  }
  
  .search-popup .form-group input[type="submit"]:hover,
  .search-popup .form-group button:hover {
    background-color: var(--hotelux-primary);
    color: var(--hotelux-black);
  }
  
  .search-popup input::placeholder {
    color: var(--hotelux-black);
  }
  
  
  
  /* Section Title Css */
  .section-title {
    position: relative;
    display: block;
    margin-top: -7px;
    margin-bottom: 52px;
    z-index: 1;
  }
  
  .section-title__tagline-box {
    position: relative;
    display: block;
  }
  
  .section-title__tagline {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 18px;
    color: var(--hotelux-base);
    font-weight: 400;
    text-transform: uppercase;
  }
  
  .section-title__tagline:before {
    content: "";
    height: 2px;
    background-color: var(--hotelux-base);
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
  }
  
  .section-title__tagline::after {
    position: absolute;
    left: 0;
    bottom: -6px;
    right: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    content: "";
    animation: l-r-zump 2s linear infinite;
    background: var(--hotelux-white);
    border-radius: 50%;
  }
  
  @keyframes l-r-zump {
  
    0%,
    100% {
      transform: translateX(0);
    }
  
    25%,
    75% {
      transform: translateX(10px);
    }
  
    50% {
      transform: translateX(-10px);
    }
  }
  
  .section-title__title {
     color: var(--hotelux-black);
    font-size: 31px;
    line-height: 35px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 5px 0 0;

  }
  .about-one__main-tab-img2 img{
        height: 463px;
    object-fit: cover;
  }
  .section-title__title span {
    color: var(--hotelux-base);
  }
  
  .section-title__title .split-line {
    text-transform: none;
  }
  
  
  
  
  /* Thm Btn Css */
  .thm-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    -webkit-appearance: none;
    outline: none !important;
    background-color: var(--hotelux-base);
    color: var(--hotelux-white);
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    padding: 17px 35px 17px;
    overflow: hidden;
    transition: all 0.5s linear;
    text-transform: capitalize;
    z-index: 1;
  }
  
  .thm-btn::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 50%;
    height: 0;
    visibility: hidden;
    background-color: var(--hotelux-black);
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease-in-out;
  }
  
  .thm-btn:hover:before {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
  }
  
  .thm-btn::after {
    position: absolute;
    background-color: var(--hotelux-black);
    bottom: 0;
    right: 0;
    content: "";
    width: 50%;
    height: 0;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition: all 0.4s ease-in-out;
  }
  
  .thm-btn:hover::after {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
  }
  
  .thm-btn:hover {
    color: var(--hotelux-white);
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  /*--------------------------------------------------------------
  # Navigations One
  --------------------------------------------------------------*/
  .main-header {
    position: relative;
    display: block;
    width: 100%;
    background: transparent;
    transition: all 500ms ease;
    z-index: 999;
  }
  
  .main-menu__top {
    position: relative;
    display: block;
    z-index: 1;
  }
  
  .main-menu__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 5px 55px 5px;
    background-color: var(--hotelux-black);
    z-index: 1;
  }
  
  .main-menu__top-inner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 45%;
    right: 0;
    bottom: 0;
    background-color: var(--hotelux-base);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 2% 100%);
    z-index: -1;
  }
  
  .main-menu__contact-list {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .main-menu__contact-list li {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .main-menu__contact-list li+li {
    margin-left: 46px;
  }
  
  .main-menu__contact-list li:before {
    content: "";
    position: absolute;
    top: -3px;
    bottom: 2px;
    left: -23px;
    width: 1px;
    background-color: rgba(var(--hotelux-white-rgb), .30);
  }
  
  .main-menu__contact-list li:first-child:before {
    display: none;
  }
  
  .main-menu__contact-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .main-menu__contact-list li .icon i {
    font-size: 16px;
    color: var(--hotelux-white);
    position: relative;
    display: inline-block;
  }
  
  .main-menu__contact-list li .text {
    margin-left: 10px;
  }
  
  .main-menu__contact-list li .text p {
    font-size: 16px;
    font-weight: 400;
    color: var(--hotelux-white);
    line-height: 16px;
  }
  
  .main-menu__contact-list li .text p a {
    color: var(--hotelux-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu__contact-list li .text p a:hover {
    color: var(--hotelux-base);
  }
  
  .main-menu__top-welcome-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--hotelux-white);
    text-transform: capitalize;
    font-family: var(--hotelux-font-two);
    line-height: 18px;
  }
  
  .main-menu__top-right {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .main-menu__top-time {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .main-menu__top-time-icon {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .main-menu__top-time-icon span {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--hotelux-white);
  }
  
  .main-menu__top-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--hotelux-white);
    line-height: 16px;
    margin-left: 10px;
  }
  
  .main-menu__social {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 40px;
  }
  
  .main-menu__social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border: 1px solid rgba(var(--hotelux-white-rgb), .40);
    border-radius: 5px;
    font-size: 15px;
    color: var(--hotelux-white);
    background-color: transparent;
    overflow: hidden;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    z-index: 1;
  }
  
  .main-menu__social a:hover {
    color: var(--hotelux-base);
    border: 1px solid var(--hotelux-white);
  }
  
  .main-menu__social a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--hotelux-white);
    transform: scale(0.5);
    border-radius: 5px;
    opacity: 0;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    z-index: -1;
  }
  
  .main-menu__social a:hover::before {
    transform: scale(1.0);
    opacity: 1;
  }
  
  .main-menu__social a+a {
    margin-left: 5px;
  }
  
  .main-menu {
    position: relative;
    display: block;
  }
  
  .main-menu__wrapper {
    position: relative;
    display: block;
  }
  
  .main-menu__wrapper-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 55px;
    z-index: 1;
  }
  
  .main-menu__left {
    position: relative;
    display: block;
  }
  
  /* .main-menu__left::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -8px;
    background-color: var(--hotelux-base);
    opacity: .60;
    z-index: -1;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
  }
  
  .main-menu__left::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--hotelux-base);
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    z-index: -1;
  }
   */
  .main-menu__logo {
    position: relative;
    display: block;
    padding: 25px 0;
    padding-left: 60px;
    z-index: 1;
  }
  .main-menu__logo img{
    width: 28px;
    scale: 3;
  }
  
  /* .main-menu__logo::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1000000px;
    right: 100%;
    background-color: var(--hotelux-base);
    z-index: -1;
  } */
  
  .main-menu__main-menu-box {
    display: block;
  }
  
  .main-menu__right {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 25px 0;
  }
  
  .main-menu__call {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .main-menu__call-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: var(--hotelux-base);
    border-radius: 50%;
    color: var(--hotelux-white);
    font-size: 18px;
    top: 3px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu__call-icon:hover {
    background-color: var(--hotelux-black);
    color: var(--hotelux-white);
  }
  
  .main-menu__call-content {
    position: relative;
    display: block;
    top: 3px;
    margin-left: 10px;
  }
  
  .main-menu__call-sub-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--hotelux-gray);
    line-height: 16px;
    font-family: var(--hotelux-font-two);
    text-transform: capitalize;
  }
  
  .main-menu__call-number {
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
    margin-top: 6px;
  }
  
  .main-menu__call-number a {
    color: var(--hotelux-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu__call-number a:hover {
    color: var(--hotelux-base);
  }
  
  .main-menu__search-cart-box {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .main-menu__search-box {
    position: relative;
    display: block;
  }
  
  .main-menu__search {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: var(--hotelux-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu__search:hover {
    color: var(--hotelux-base);
  }
  
  .main-menu__cart-box {
    position: relative;
    display: block;
    margin-left: 20px;
  }
  
  .main-menu__cart {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: var(--hotelux-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu__cart-count {
    position: absolute;
    top: -15px;
    right: -15px;
    height: 20px;
    width: 20px;
    font-size: 10px;
    line-height: 10px;
    font-weight: 500;
    background-color: var(--hotelux-base);
    color: var(--hotelux-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu__cart:hover {
    color: var(--hotelux-base);
  }
  
  .main-menu__nav-sidebar-icon {
    position: relative;
    display: block;
  }
  
  .main-menu__nav-sidebar-icon .navSidebar-button {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    padding-right: 11px;
    height: 45px;
    width: 45px;
    background-color: var(--hotelux-base);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .icon-dots-menu-one {
    position: relative;
    display: block;
    width: 15px;
    height: 3px;
    background-color: var(--hotelux-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-one {
    width: 22px;
  }
  
  .icon-dots-menu-two {
    position: relative;
    display: block;
    width: 22px;
    height: 3px;
    background-color: var(--hotelux-white);
    margin-top: 5px;
    margin-bottom: 5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .icon-dots-menu-three {
    position: relative;
    display: block;
    width: 18px;
    height: 3px;
    background-color: var(--hotelux-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-three {
    width: 22px;
  }
  
  
  
  
  .stricky-header.main-menu {
    background-color: var(--hotelux-white);
  }
  
  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
  }
  
  
  
  @media (min-width: 1200px) {
  
    .main-menu .main-menu__list,
    .main-menu .main-menu__list>li>ul,
    .main-menu .main-menu__list>li>ul>li>ul,
    .stricky-header .main-menu__list,
    .stricky-header .main-menu__list>li>ul,
    .stricky-header .main-menu__list>li>ul>li>ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
  }
  
  .main-menu .main-menu__list>li,
  .stricky-header .main-menu__list>li {
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
  }
  
  .main-menu .main-menu__list>li+li,
  .stricky-header .main-menu__list>li+li {
    margin-left: 30px;
  }
  
  .main-menu .main-menu__list>li>a,
  .stricky-header .main-menu__list>li>a {
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--hotelux-black);
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 20px;
    font-family: var(--hotelux-font-two);
  }
  
  .main-menu .main-menu__list>li.current>a,
  .main-menu .main-menu__list>li:hover>a,
  .stricky-header .main-menu__list>li.current>a,
  .stricky-header .main-menu__list>li:hover>a {
    color: var(--hotelux-base);
  }
  
  .main-menu .main-menu__list>li>a::before,
  .stricky-header .main-menu__list>li>a::before {
    content: "";
    height: 2px;
    border-radius: 0px;
    background-color: var(--hotelux-base);
    position: absolute;
    bottom: -3px;
    left: 0px;
    right: 0px;
    transition: transform 500ms ease;
    transform: scale(0, 1);
    transform-origin: left center;
    z-index: 1;
  }
  
  .main-menu .main-menu__list>li.current>a::before,
  .main-menu .main-menu__list>li:hover>a::before,
  .stricky-header .main-menu__list>li.current>a::before,
  .stricky-header .main-menu__list>li:hover>a::before {
    transform: scale(1, 1);
    transform-origin: right center;
  }
  
  .main-menu .main-menu__list>li.dropdown>a {
    padding-right: 15px;
  }
  
  .main-menu .main-menu__list>li.dropdown>a:after {
    position: absolute;
    top: 56%;
    right: 0;
    font-family: "Font Awesome 5 Pro";
    content: "\f107";
    font-size: 14px;
    color: var(--hotelux-black);
    transform: translateY(-50%);
    font-weight: 400;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
  }
  
  .main-menu .main-menu__list>li.current>a::after,
  .main-menu .main-menu__list>li:hover>a::after,
  .stricky-header .main-menu__list>li.current>a::after,
  .stricky-header .main-menu__list>li:hover>a::after {
    color: var(--hotelux-base);
  }
  
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--hotelux-white);
    min-width: 290px;
    padding: 25px 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    transform: perspective(500px) rotatex(-20deg);
    transform-origin: 50% 0%;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
  }
  
  .shadow-box {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  }
  
  .main-menu .main-menu__list>li>ul>li>ul>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul>li>ul {
    display: none;
  }
  
  .main-menu .main-menu__list>li:hover>ul,
  .main-menu .main-menu__list>li>ul>li:hover>ul,
  .stricky-header .main-menu__list>li:hover>ul,
  .stricky-header .main-menu__list>li>ul>li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: perspective(500px) rotatex(0);
  }
  
  .main-menu .main-menu__list>li>ul>li,
  .main-menu .main-menu__list>li>ul>li>ul>li,
  .stricky-header .main-menu__list>li>ul>li,
  .stricky-header .main-menu__list>li>ul>li>ul>li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
    position: relative;
  }
  
  .main-menu .main-menu__list>li>ul>li+li,
  .main-menu .main-menu__list>li>ul>li>ul>li+li,
  .stricky-header .main-menu__list>li>ul>li+li,
  .stricky-header .main-menu__list>li>ul>li>ul>li+li {
    border-top: 1px solid rgba(var(--hotelux-black-rgb), 0.10);
    margin-top: 0px;
  }
  
  .main-menu .main-menu__list>li>ul>li>a,
  .main-menu .main-menu__list>li>ul>li>ul>li>a,
  .stricky-header .main-menu__list>li>ul>li>a,
  .stricky-header .main-menu__list>li>ul>li>ul>li>a {
    position: relative;
    display: flex;
    align-items: center;
    color: rgba(var(--hotelux-black-rgb), 1);
    font-size: 17px;
    line-height: 17px;
    font-weight: 600;
    font-family: var(--hotelux-font-two);
    text-transform: capitalize;
    padding: 16px 0px 16px;
    -webkit-transition: all 200ms linear 0ms;
    -khtml-transition: all 200ms linear 0ms;
    -moz-transition: all 200ms linear 0ms;
    -ms-transition: all 200ms linear 0ms;
    -o-transition: all 200ms linear 0ms;
    transition: all 200ms linear 0ms;
  }
  
  .main-menu .main-menu__list>li>ul>li:hover>a,
  .main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
  .stricky-header .main-menu__list>li>ul>li:hover>a,
  .stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
    color: rgba(var(--hotelux-base-rgb), 1.0);
    padding-left: 5px;
  }
  
  .main-menu .main-menu__list>li>ul>li>a::before,
  .main-menu .main-menu__list>li>ul>li>ul>li>a::before,
  .stricky-header .main-menu__list>li>ul>li>a::before,
  .stricky-header .main-menu__list>li>ul>li>ul>li>a::before {
    position: absolute;
    top: 50%;
    right: 20px;
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    content: "\f105";
    font-size: 14px;
    color: var(--hotelux-base);
    transform: translateY(-50%) scale(0);
    -webkit-transition: 500ms;
    transition: 500ms;
  }
  
  .main-menu .main-menu__list>li>ul>li:hover>a::before,
  .main-menu .main-menu__list>li>ul>li>ul>li:hover>a::before,
  .stricky-header .main-menu__list>li>ul>li:hover>a::before,
  .stricky-header .main-menu__list>li>ul>li>ul>li:hover>a::before {
    transform: translateY(-50%) scale(1);
  }
  
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    top: 0;
    left: 100%;
    margin-left: 30px;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  }
  
  .main-menu .main-menu__list li ul li>ul.right-align,
  .stricky-header .main-menu__list li ul li>ul.right-align {
    top: 0;
    left: auto;
    right: 100%;
  }
  
  .main-menu-four__main-menu-box .main-menu__list>.megamenu,
  .main-menu-three__main-menu-box .main-menu__list>.megamenu,
  .main-menu-two__main-menu-box .main-menu__list>.megamenu,
  .main-menu__wrapper .main-menu__list>.megamenu {
    position: static;
  }
  
  .main-menu-four__main-menu-box .main-menu__list>.megamenu>ul,
  .main-menu-three__main-menu-box .main-menu__list>.megamenu>ul,
  .main-menu-two__main-menu-box .main-menu__list>.megamenu>ul,
  .main-menu__wrapper .main-menu__list>.megamenu>ul {
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background-color: transparent;
  }
  
  .main-menu-three__main-menu-box .main-menu__list>.megamenu>ul>li,
  .main-menu-two__main-menu-box .main-menu__list>.megamenu>ul>li,
  .main-menu__wrapper .main-menu__list>.megamenu>ul>li {
    padding: 0 !important;
  }
  
  .stricky-header {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    visibility: hidden;
    -webkit-transform: translateY(-120%);
    transform: translateY(-120%);
    -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
    -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  }
  
  @media (max-width: 1199px) {
    .stricky-header {
      display: none !important;
    }
  }
  
  .stricky-header.stricky-fixed {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
  }
  
  .stricky-header .main-menu__inner {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-right: 0;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
  }
  
  .mobile-nav__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: 10px;
  }
  
  @media (min-width: 1200px) {
    .mobile-nav__buttons {
      display: none;
    }
  }
  
  .mobile-nav__buttons a {
    font-size: 20px;
    color: var(--hotelux-base);
    cursor: pointer;
  }
  
  .mobile-nav__buttons a+a {
    margin-left: 10px;
  }
  
  .mobile-nav__buttons a:hover {
    color: var(--hotelux-base);
  }
  
  .main-menu .mobile-nav__toggler {
    font-size: 20px;
    color: var(--hotelux-base);
    cursor: pointer;
    -webkit-transition: 500ms;
    transition: 500ms;
  }
  
  .main-menu .mobile-nav__toggler:hover {
    color: var(--hotelux-black);
  }
  
  @media (min-width: 1200px) {
    .main-menu .mobile-nav__toggler {
      display: none;
    }
  }
  
  /*--------------------------------------------------------------
  # Mobile Nav
  --------------------------------------------------------------*/
  .mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    visibility: hidden;
  }
  
  .mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
  }
  
  .mobile-nav__wrapper.expanded {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    visibility: visible;
    -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  }
  
  .mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.5;
    cursor: pointer;
  }
  
  .mobile-nav__content {
    width: 300px;
    background-color: var(--hotelux-black);
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  }
  
  .mobile-nav__wrapper.expanded .mobile-nav__content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  }
  
  .mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: var(--hotelux-white);
    cursor: pointer;
  }
  
  .mobile-nav__content .main-menu__list,
  .mobile-nav__content .main-menu__list>li>ul,
  .mobile-nav__content .main-menu__list>li>ul>li>ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  
  .mobile-nav__content .main-menu__list>li>ul,
  .mobile-nav__content .main-menu__list>li>ul>li>ul {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 0.5em;
  }
  
  .mobile-nav__content .main-menu__list>li:not(:last-child),
  .mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
  .mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .mobile-nav__content .main-menu__list>li>a>.main-menu-border {
    display: none !important;
  }
  
  .mobile-nav__content .main-menu__list>li>a,
  .mobile-nav__content .main-menu__list>li>ul>li>a,
  .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    line-height: 30px;
    color: #ffffff;
    font-size: 14px;
    font-family: var(--hotelux-font, "Rubik", sans-serif);
    font-weight: 500;
    height: 46px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 500ms;
    transition: 500ms;
  }
  
  .mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
    color: var(--hotelux-base);
  }
  
  .mobile-nav__content .main-menu__list li a.expanded {
    color: var(--hotelux-base);
  }
  
  .mobile-nav__content .main-menu__list>li>a>button,
  .mobile-nav__content .main-menu__list>li>ul>li>a>button,
  .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
    width: 30px;
    height: 30px;
    background-color: var(--hotelux-base);
    border: none;
    outline: none;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: -webkit-transform 500ms ease;
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
    padding: 0;
  }
  
  .mobile-nav__content .main-menu__list>li>a>button.expanded,
  .mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
  .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    background-color: #fff;
    color: var(--hotelux-base);
  }
  
  /* no menu after 2rd level dropdown */
  .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
  .mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
    display: none !important;
  }
  
  .mobile-nav__content .main-menu__list li.cart-btn span {
    position: relative;
    top: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  
  .mobile-nav__content .main-menu__list li.cart-btn i {
    font-size: 16px;
  }
  
  .mobile-nav__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  
  .mobile-nav__top .main-menu__login a {
    color: var(--hotelux-text-dark);
  }
  
  .mobile-nav__container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .mobile-nav__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .mobile-nav__social a {
    font-size: 16px;
    color: var(--hotelux-white);
    -webkit-transition: 500ms;
    transition: 500ms;
  }
  
  .mobile-nav__social a+a {
    margin-left: 30px;
  }
  
  .mobile-nav__social a:hover {
    color: var(--hotelux-base);
  }
  
  .mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .mobile-nav__contact li {
    color: var(--hotelux-text-dark);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .mobile-nav__contact li+li {
    margin-top: 15px;
  }
  
  .mobile-nav__contact li a {
    color: #ffffff;
    -webkit-transition: 500ms;
    transition: 500ms;
  }
  
  .mobile-nav__contact li a:hover {
    color: var(--hotelux-base);
  }
  
  .mobile-nav__contact li>i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--hotelux-base);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    font-size: 12px;
    margin-right: 10px;
    color: #fff;
  }
  
  .mobile-nav__container .main-logo,
  .mobile-nav__container .topbar__buttons,
  .mobile-nav__container .main-menu__language,
  .mobile-nav__container .main-menu__login {
    display: none;
  }
  
  
  
  /*--------------------------------------------------------------
  # Home Showcase
  --------------------------------------------------------------*/
  .home-showcase {
    margin-top: -25px;
    margin-bottom: -25px;
  }
  
  .home-showcase__inner {
    padding: 40px 42px 30px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  
  .home-showcase .row {
    --bs-gutter-x: 42px;
    --bs-gutter-y: 20px;
  }
  
  .home-showcase__item {
    position: relative;
    display: block;
    margin-bottom: 7px;
  }
  
  .home-showcase__image {
    position: relative;
    overflow: hidden;
    background-color: rgb(0, 0, 0, 0.10);
    padding: 1px;
    border-radius: 0;
  }
  
  .home-showcase__image>img {
    width: 100%;
    transition: filter 500ms ease;
    filter: blur(0px);
  }
  
  .home-showcase__image:hover>img {
    filter: blur(2px);
  }
  
  .home-showcase__buttons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: scale(1, 0);
    transition: transform 800ms ease, opacity 600ms linear;
    transform-origin: bottom center;
    opacity: 0.70;
    z-index: 1;
  }
  
  .home-showcase__image:hover .home-showcase__buttons {
    transform: scale(1, 1);
    opacity: 1.0;
    transform-origin: top center;
  }
  
  .home-showcase__buttons::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: -ms-linear-gradient(left, #222222 0%, #222222 100%);
    background-image: -moz-linear-gradient(left, #222222 0%, #222222 100%);
    background-image: -o-linear-gradient(left, #222222 0%, #222222 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #222222), color-stop(100, #222222));
    background-image: -webkit-linear-gradient(left, #222222 0%, #222222 100%);
    background-image: linear-gradient(to right, #222222 0%, #222222 100%);
  
    opacity: 1;
    transform: perspective(500px) rotatex(-20deg);
    transform-origin: 50% 0%;
    -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
    -khtml-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
    -moz-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
    -ms-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
    -o-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    z-index: -1;
  }
  
  .home-showcase__image:hover .home-showcase__buttons::before {
    opacity: 0.90;
    visibility: visible;
    transform: perspective(500px) rotatex(0);
  }
  
  .home-showcase__buttons__item {
    padding: 17px 20px 17px;
    width: 175px;
    justify-content: center;
    text-align: center;
    color: var(--hotelux-white);
  }
  
  .home-showcase__buttons__item::before,
  .home-showcase__buttons__item::after {
    background-color: var(--hotelux-white);
  }
  
  .home-showcase__buttons__item:hover {
    color: var(--hotelux-black);
  }
  
  .home-showcase__buttons__item+.home-showcase__buttons__item {
    margin-top: 10px;
  }
  
  .home-showcase__title {
    margin: 0;
    text-align: center;
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
    color: var(--hotelux-black);
    margin-top: 18px;
    text-transform: capitalize;
  }
  
  .mobile-nav__wrapper .home-showcase .row [class*=col-] {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  
  .mobile-nav__wrapper .home-showcase__inner {
    padding: 15px 0px;
    background-color: rgba(0, 0, 0, 0);
  }
  
  .mobile-nav__wrapper .home-showcase__title {
    color: var(--hotelux-white, #ffffff);
  }
  
  .mobile-nav__content .home-showcase {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  /*--------------------------------------------------------------
  # Navigations Two
  --------------------------------------------------------------*/
  .main-header-two {
    position: relative;
    display: block;
    width: 100%;
    background: transparent;
    transition: all 500ms ease;
    z-index: 999;
  }
  
  .main-menu-two__top {
    position: relative;
    display: block;
    z-index: 1;
  }
  
  .main-menu-two__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 5px 55px 5px;
    background-color: var(--hotelux-black);
    z-index: 1;
  }
  
  .main-menu-two__top-inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 50%;
    bottom: 0;
    background-color: var(--hotelux-base);
    clip-path: polygon(100% 0, 97% 50%, 100% 100%, 0 100%, 0 0);
    z-index: -1;
  }
  
  .main-menu-two__top-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 49%;
    bottom: 0;
    background-color: rgba(var(--hotelux-base-rgb), .80);
    clip-path: polygon(100% 0, 97% 50%, 100% 100%, 0 100%, 0 0);
    z-index: -1;
  }
  
  .main-menu-two__contact-list {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .main-menu-two__contact-list li {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .main-menu-two__contact-list li+li {
    margin-left: 46px;
  }
  
  .main-menu-two__contact-list li:before {
    content: "";
    position: absolute;
    top: -3px;
    bottom: 2px;
    left: -23px;
    width: 1px;
    background-color: rgba(var(--hotelux-white-rgb), .30);
  }
  
  .main-menu-two__contact-list li:first-child:before {
    display: none;
  }
  
  .main-menu-two__contact-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .main-menu-two__contact-list li .icon i {
    font-size: 16px;
    color: var(--hotelux-white);
    position: relative;
    display: inline-block;
  }
  
  .main-menu-two__contact-list li .text {
    margin-left: 10px;
  }
  
  .main-menu-two__contact-list li .text p {
    font-size: 16px;
    font-weight: 400;
    color: var(--hotelux-white);
    line-height: 16px;
  }
  
  .main-menu-two__contact-list li .text p a {
    color: var(--hotelux-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu-two__contact-list li .text p a:hover {
    color: var(--hotelux-black);
  }
  
  .main-menu-two__top-right {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .main-menu-two__top-time {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .main-menu-two__top-time-icon {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .main-menu-two__top-time-icon span {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--hotelux-white);
  }
  
  .main-menu-two__top-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--hotelux-white);
    line-height: 16px;
    margin-left: 10px;
  }
  
  .main-menu-two__social {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 40px;
  }
  
  .main-menu-two__social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border: 1px solid rgba(var(--hotelux-white-rgb), .40);
    border-radius: 5px;
    font-size: 15px;
    color: var(--hotelux-white);
    background-color: transparent;
    overflow: hidden;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    z-index: 1;
  }
  
  .main-menu-two__social a:hover {
    color: var(--hotelux-base);
    border: 1px solid var(--hotelux-white);
  }
  
  .main-menu-two__social a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--hotelux-white);
    transform: scale(0.5);
    border-radius: 5px;
    opacity: 0;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    z-index: -1;
  }
  
  .main-menu-two__social a:hover::before {
    transform: scale(1.0);
    opacity: 1;
  }
  
  .main-menu-two__social a+a {
    margin-left: 5px;
  }
  
  .main-menu-two__wrapper {
    position: relative;
    display: block;
  }
  
  .main-menu-two__wrapper-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 55px;
  }
  
  .main-menu-two__left {
    display: block;
  }
  
  .main-menu-two__logo {
    display: block;
    padding: 25px 0;
    z-index: 1;
  }
  
  
  
  .main-menu-two__main-menu-box {
    display: block;
  }
  
  .main-menu-two__right {
    position: relative;
    display: block;
    z-index: 1;
  }
  
  .main-menu-two__right:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    right: -10000000px;
    background-color: var(--hotelux-base);
    z-index: -1;
  }
  
  .main-menu-two__right-content {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 25px 0 25px;
    padding-left: 20px;
    background-color: var(--hotelux-base);
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    z-index: 1;
  }
  
  .main-menu-two__right-content:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: -10px;
    background-color: rgba(var(--hotelux-base-rgb), .70);
    z-index: -1;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
  }
  
  .main-menu-two__call {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .main-menu-two__call-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: var(--hotelux-black);
    border-radius: 50%;
    color: var(--hotelux-white);
    font-size: 18px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu-two__call-icon:hover {
    background-color: var(--hotelux-white);
    color: var(--hotelux-base);
  }
  
  .main-menu-two__call-content {
    position: relative;
    display: block;
    margin-left: 10px;
  }
  
  .main-menu-two__call-sub-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--hotelux-white);
    line-height: 16px;
    font-family: var(--hotelux-font-two);
    text-transform: capitalize;
  }
  
  .main-menu-two__call-number {
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
    margin-top: 6px;
  }
  
  .main-menu-two__call-number a {
    color: var(--hotelux-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu-two__call-number a:hover {
    color: var(--hotelux-black);
  }
  
  .main-menu-two__search-cart-box {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .main-menu-two__search-box {
    position: relative;
    display: block;
  }
  
  .main-menu-two__search {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: var(--hotelux-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu-two__search:hover {
    color: var(--hotelux-black);
  }
  
  .main-menu-two__cart-box {
    position: relative;
    display: block;
    margin-left: 20px;
  }
  
  .main-menu-two__cart {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: var(--hotelux-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu-two__cart-count {
    position: absolute;
    top: -15px;
    right: -15px;
    height: 20px;
    width: 20px;
    font-size: 10px;
    line-height: 10px;
    font-weight: 500;
    background-color: var(--hotelux-black);
    color: var(--hotelux-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu-two__cart:hover {
    color: var(--hotelux-black);
  }
  
  .main-menu-two__nav-sidebar-icon {
    position: relative;
    display: block;
  }
  
  .main-menu-two__nav-sidebar-icon .navSidebar-button {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
    padding-right: 11px;
    height: 45px;
    width: 45px;
    background-color: var(--hotelux-black);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu-two__nav-sidebar-icon .icon-dots-menu-one {
    position: relative;
    display: block;
    width: 15px;
    height: 3px;
    background-color: var(--hotelux-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu-two__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-one {
    width: 22px;
  }
  
  .main-menu-two__nav-sidebar-icon .icon-dots-menu-two {
    position: relative;
    display: block;
    width: 22px;
    height: 3px;
    background-color: var(--hotelux-white);
    margin-top: 5px;
    margin-bottom: 5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu-two__nav-sidebar-icon .icon-dots-menu-three {
    position: relative;
    display: block;
    width: 18px;
    height: 3px;
    background-color: var(--hotelux-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu-two__nav-sidebar-icon .navSidebar-button:hover .icon-dots-menu-three {
    width: 22px;
  }
  
  .main-menu-two__btn-box {
    position: relative;
    display: block;
  }
  
  .main-menu-two__btn-box .thm-btn {
    background-color: var(--hotelux-black);
  }
  
  .main-menu-two__btn-box .thm-btn>span {
    background-color: var(--hotelux-base);
  }
  
  .main-menu-two__btn-box .thm-btn::before,
  .main-menu-two__btn-box .thm-btn::after {
    background-color: var(--hotelux-white);
  }
  
  .main-menu-two__btn-box .thm-btn:hover {
    color: var(--hotelux-base);
  }
  
  .main-menu-two__btn-box .thm-btn:hover>span {
    background-color: var(--hotelux-black);
    color: var(--hotelux-white);
  }
  
  
  
  
  
  .stricky-header.main-menu-two {
    background-color: var(--hotelux-white);
  }
  
  
  /*--------------------------------------------------------------
  # Navigations three
  --------------------------------------------------------------*/
  .main-header-three {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    transition: all 500ms ease;
    z-index: 999;
  }
  
  .main-menu-three__top {
    position: relative;
    display: block;
    background-color: var(--hotelux-base);
    margin-bottom: 10px;
    z-index: 5;
  }
  
  .main-menu-three__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 7.5px 0px 7.5px;
    z-index: 1;
  }
  
  .main-menu-three__top-inner:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    right: 0;
    bottom: 0;
    background-color: var(--hotelux-black);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 5% 100%);
    z-index: -1;
  }
  
  .main-menu-three__top-inner:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 99%;
    right: -10000000px;
    background-color: var(--hotelux-black);
    z-index: -1;
  }
  
  .main-menu-three__contact-list {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .main-menu-three__contact-list li {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .main-menu-three__top-menu li:before {
    content: "";
    position: absolute;
    top: 6px;
    left: -10px;
    bottom: 6px;
    width: 1px;
    background-color: var(--hotelux-white);
    transform: rotate(15deg);
  }
  
  .main-menu-three__top-menu li:first-child:before {
    display: none;
  }
  
  .main-menu-three__contact-list li+li {
    margin-left: 46px;
  }
  
  .main-menu-three__contact-list li:before {
    content: "";
    position: absolute;
    top: 7px;
    bottom: 7px;
    left: -23px;
    width: 1px;
    background-color: rgba(var(--hotelux-white-rgb), .40);
  }
  
  .main-menu-three__contact-list li:first-child:before {
    display: none;
  }
  
  .main-menu-three__contact-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .main-menu-three__contact-list li .icon i {
    font-size: 16px;
    color: var(--hotelux-white);
  }
  
  .main-menu-three__contact-list li .text {
    margin-left: 10px;
  }
  
  .main-menu-three__contact-list li .text p {
    font-size: 16px;
    color: var(--hotelux-white);
  }
  
  .main-menu-three__contact-list li .text p a {
    color: var(--hotelux-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu-three__contact-list li .text p a:hover {
    color: var(--hotelux-black);
  }
  
  .main-menu-three__top-text {
    color: var(--hotelux-white);
  }
  
  .main-menu-three__top-right {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .main-menu-three__language-switcher {
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 19px;
    margin-right: 12px;
  }
  
  .main-menu-three__language-switcher::before {
    position: absolute;
    top: 7px;
    right: 0;
    bottom: 8px;
    width: 1px;
    background: var(--hotelux-white);
    content: "";
    opacity: .30;
  }
  
  .main-menu-three__language-switcher .icon {
    position: relative;
    display: block;
    margin-right: 12px;
  }
  
  .main-menu-three__language-switcher .icon span {
    position: relative;
    display: inline-block;
    color: var(--hotelux-white);
    font-size: 18px;
    line-height: 18px;
  }
  
  .main-menu-three__language-switcher .language-switcher {
    position: relative;
    display: block;
  }
  
  .main-menu-three__language-switcher .language-switcher form {
    position: relative;
    display: block;
    width: 48px;
  }
  
  .main-menu-three__language-switcher .language-switcher form .select-box {
    position: relative;
    display: block;
  }
  
  .main-menu-three__language-switcher .nice-select {
    background-color: var(--hotelux-black);
    border-radius: 0px;
    color: var(--hotelux-white);
    font-size: 16px;
    font-weight: 600;
    height: 30px;
    line-height: 30px;
    outline: none;
    padding-left: 0px;
    padding-right: 0px;
    width: 100%;
    font-family: var(--hotelux-font);
  }
  
  .main-menu-three__language-switcher .nice-select:after {
    right: 0px;
    margin-top: -6px;
    border-bottom: 1px solid var(--hotelux-white);
    border-right: 1px solid var(--hotelux-white);
  }
  
  .main-menu-three__language-switcher .nice-select .list {
    width: 65px;
    background-color: var(--hotelux-base);
  }
  
  .main-menu-three__social {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 40px;
  }
  
  .main-menu-three__social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    border: 1px solid rgba(var(--hotelux-white-rgb), .20);
    border-radius: 5px;
    font-size: 14px;
    color: var(--hotelux-white);
    background-color: transparent;
    overflow: hidden;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    z-index: 1;
  }
  
  .main-menu-three__social a:hover {
    color: var(--hotelux-base);
    border: 1px solid var(--hotelux-white);
  }
  
  .main-menu-three__social a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--hotelux-white);
    transform: scale(0.5);
    border-radius: 5px;
    opacity: 0;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    z-index: -1;
  }
  
  .main-menu-three__social a:hover::before {
    transform: scale(1.0);
    opacity: 1;
  }
  
  .main-menu-three__social a+a {
    margin-left: 10px;
  }
  
  .main-menu-three__wrapper {
    position: relative;
    display: block;
  }
  
  .main-menu-three__wrapper-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: rgba(var(--hotelux-black-rgb), .30);
  }
  
  .main-menu-three__left {
    position: relative;
    display: block;
    z-index: 1;
  }
  
  .main-menu-three__left:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -10000000px;
    right: 99%;
    background-color: var(--hotelux-base);
    z-index: -1;
  }
  
  .main-menu-three__logo {
    position: relative;
    display: block;
    padding: 25px 0;
    padding-right: 20px;
    background-color: var(--hotelux-base);
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    z-index: 1;
  }
  
  .main-menu-three__logo:before {
    content: "";
    position: absolute;
    top: 0;
    right: -10px;
    left: 0;
    bottom: 0;
    background-color: rgba(var(--hotelux-base-rgb), .70);
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    z-index: -1;
  }
  
  .main-menu-three__main-menu-box {
    display: block;
  }
  
  .main-menu-three__right {
    position: relative;
    display: block;
    z-index: 1;
  }
  
  .main-menu-three__right:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 99%;
    right: -10000000px;
    background-color: var(--hotelux-base);
    z-index: -1;
  }
  
  .main-menu-three__right-content {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 25px 0 25px;
    padding-left: 20px;
    background-color: var(--hotelux-base);
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    z-index: 1;
  }
  
  .main-menu-three__right-content:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -10px;
    right: 0;
    background-color: rgba(var(--hotelux-base-rgb), .80);
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    z-index: -1;
  }
  
  .main-menu-three__search-cart-box {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .main-menu-three__search-box {
    position: relative;
    display: block;
  }
  
  .main-menu-three__search {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: var(--hotelux-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu-three__search:hover {
    color: var(--hotelux-black);
  }
  
  .main-menu-three__cart-box {
    position: relative;
    display: block;
    margin-left: 20px;
  }
  
  .main-menu-three__cart {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: var(--hotelux-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu-three__cart-count {
    position: absolute;
    top: -15px;
    right: -15px;
    height: 20px;
    width: 20px;
    font-size: 10px;
    line-height: 10px;
    font-weight: 500;
    background-color: var(--hotelux-black);
    color: var(--hotelux-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu-three__cart:hover {
    color: var(--hotelux-black);
  }
  
  
  .main-menu-three__btn-box {
    position: relative;
    display: block;
  }
  
  .main-menu-three__btn-box .thm-btn {
    background-color: var(--hotelux-black);
  }
  
  .main-menu-three__btn-box .thm-btn>span {
    background-color: var(--hotelux-base);
  }
  
  .main-menu-three__btn-box .thm-btn::before,
  .main-menu-three__btn-box .thm-btn::after {
    background-color: var(--hotelux-white);
  }
  
  .main-menu-three__btn-box .thm-btn:hover {
    color: var(--hotelux-base);
  }
  
  .main-menu-three__btn-box .thm-btn:hover>span {
    background-color: var(--hotelux-black);
    color: var(--hotelux-white);
  }
  
  .main-menu-three .main-menu__list>li>a,
  .stricky-header.main-menu-three .main-menu__list>li>a {
    color: var(--hotelux-white);
  }
  
  .main-menu-three .main-menu__list>li.dropdown>a:after {
    color: var(--hotelux-white);
  }
  
  .main-menu-three .main-menu__list>li.current>a,
  .main-menu-three .main-menu__list>li:hover>a,
  .stricky-header.main-menu-three .main-menu__list>li.current>a,
  .stricky-header.main-menu-three .main-menu__list>li:hover>a {
    color: var(--hotelux-base);
  }
  
  .main-menu-three .main-menu__list>li.current>a::after,
  .main-menu-three .main-menu__list>li:hover>a::after,
  .stricky-header.main-menu-three .main-menu__list>li.current>a::after,
  .stricky-header.main-menu-three .main-menu__list>li:hover>a::after {
    color: var(--hotelux-base);
  }
  
  
  
  .stricky-header.main-menu-three {
    background-color: var(--hotelux-black);
  }
  
  /*--------------------------------------------------------------
  # Navigation End
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  # Main Slider
  --------------------------------------------------------------*/
  .main-slider {
    position: relative;
    display: block;
    background-color: var(--hotelux-black);
    z-index: 91;
  }
  
  .main-slider .swiper-slide {
    position: relative;
    background-color: var(--hotelux-black);
  }
  
  .main-slider__bg-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
  }
  
  .main-slider__bg-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #191628;
    background: linear-gradient(90deg, rgba(25, 22, 40, 0.9) 10%, rgba(25, 22, 40, 0.53) 100%);
    z-index: 1;
  }
  
  .main-slider__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 1000ms ease-in, -webkit-transform 7000ms ease;
    transition: opacity 1000ms ease-in, -webkit-transform 7000ms ease;
    transition: transform 7000ms ease, opacity 1000ms ease-in;
    transition: transform 7000ms ease, opacity 1000ms ease-in, -webkit-transform 7000ms ease;
  }
  
  .main-slider .swiper-slide-active .main-slider__bg {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  
  .main-slider__shape-1 {
    position: absolute;
    bottom: -200px;
    right: 300px;
    top: -200px;
    width: 400px;
    background-color: var(--hotelux-base);
    z-index: -1;
    opacity: 0;
    -webkit-transform: perspective(400px) rotate(18deg) translateX(-100px);
    -ms-transform: perspective(400px) rotate(18deg) translateX(-100px);
    transform: perspective(400px) rotate(18deg) translateX(-100px);
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
  }
  
  .main-slider .swiper-slide-active .main-slider__shape-1 {
    opacity: .05;
    -webkit-transform: perspective(400px) rotate(18deg) translateX(0px);
    -ms-transform: perspective(400px) rotate(18deg) translateX(0px);
    transform: perspective(400px) rotate(18deg) translateX(0px);
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
    transition-delay: 2000ms;
  }
  
  .main-slider__shape-2 {
    position: absolute;
    bottom: -200px;
    left: 200px;
    top: -200px;
    width: 400px;
    background-color: var(--hotelux-base);
    z-index: -1;
    transform: rotate(18deg);
    opacity: 0;
    -webkit-transform: perspective(400px) rotate(18deg) translateX(-100px);
    -ms-transform: perspective(400px) rotate(18deg) translateX(-100px);
    transform: perspective(400px) rotate(18deg) translateX(-100px);
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    transform-origin: right;
    -webkit-transition: all 1800ms ease;
    -moz-transition: all 1800ms ease;
    -ms-transition: all 1800ms ease;
    -o-transition: all 1800ms ease;
    transition: all 1800ms ease;
  }
  
  .main-slider .swiper-slide-active .main-slider__shape-2 {
    opacity: .05;
    -webkit-transform: perspective(400px) rotate(18deg) translateX(0px);
    -ms-transform: perspective(400px) rotate(18deg) translateX(0px);
    transform: perspective(400px) rotate(18deg) translateX(0px);
    -webkit-transition-delay: 2500ms;
    -moz-transition-delay: 2500ms;
    -ms-transition-delay: 2500ms;
    -o-transition-delay: 2500ms;
    transition-delay: 2500ms;
  }
  
  .main-slider .container {
    position: relative;
    z-index: 30;
  }
  
  .main-slider__content {
    position: relative;
    display: block;
    padding-top: 146px;
    padding-bottom: 215px;
    z-index: 15;
  }
  
  .main-slider__sub-title {
    position: relative;
    display: block;
    font-size: 20px;
    color: var(--hotelux-white);
    font-weight: 500;
    line-height: 1em;
    font-family: var(--hotelux-font-two);
    text-transform: capitalize;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
  }
  
  .main-slider .swiper-slide-active .main-slider__sub-title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
  }
  
  .main-slider__title {
    position: relative;
    font-size: 30px;
    color: var(--hotelux-white);
    font-weight: 600;
    line-height: 1.2em;
    text-transform: capitalize;
    margin-top: 18px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-80px);
    transform: perspective(400px) rotateY(0deg) translateY(-80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
  }
  
  .main-slider__title span {
    color: var(--hotelux-primary);
  }
  
  .main-slider .swiper-slide-active .main-slider__title {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 900ms;
    -moz-transition-delay: 900ms;
    -ms-transition-delay: 900ms;
    -o-transition-delay: 900ms;
    transition-delay: 900ms;
  }
  
  .main-slider__text {
    position: relative;
    display: block;
    font-size: 18px;
    color: rgba(var(--hotelux-white-rgb), .80);
    font-weight: 400;
    margin-top: 22px;
    margin-bottom: 43px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: 1;
  }
  
  .main-slider .swiper-slide-active .main-slider__text {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 1400ms;
    -moz-transition-delay: 1400ms;
    -ms-transition-delay: 1400ms;
    -o-transition-delay: 1400ms;
    transition-delay: 1400ms;
  }
  
  .main-slider__btn-and-review-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
  }
  
  .main-slider .swiper-slide-active .main-slider__btn-and-review-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    -webkit-transition-delay: 2000ms;
    -moz-transition-delay: 2000ms;
    -ms-transition-delay: 2000ms;
    -o-transition-delay: 2000ms;
    transition-delay: 2000ms;
  }
  
  .main-slider__btn-box {
    position: relative;
    display: block;
  }
  
  .main-slider__btn-box .thm-btn::before,
  .main-slider__btn-box .thm-btn::after {
    background-color: var(--hotelux-white);
  }
  
  .main-slider__btn-box .thm-btn:hover {
    color: var(--hotelux-base);
  }
  
  .main-slider__review-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .main-slider__review {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
  }
  
  .main-slider__review span {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--hotelux-base);
  }
  
  .main-slider__review-text-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
  }
  
  .main-slider__review-count {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
  }
  
  .main-slider__review-count h3 {
    font-size: 20px;
    color: var(--hotelux-white);
    line-height: 1em !important;
    font-family: var(--hotelux-font) !important;
    font-weight: 400;
  }
  
  .main-slider__review-count span {
    font-size: 20px;
    color: var(--hotelux-white);
    line-height: 1em;
    font-family: var(--hotelux-font);
    font-weight: 400;
  }
  
  .main-slider__review-text {
    font-size: 20px;
    color: var(--hotelux-white);
    line-height: 1em;
    font-family: var(--hotelux-font);
    font-weight: 400;
  }
  
  .main-slider__video-link {
    position: absolute;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    z-index: 3;
    top: 50%;
    right: 0;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-50%) translateX(100px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-50%) translateX(100px);
    transform: perspective(400px) rotateY(0deg) translateY(-50%) translateX(100px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
  }
  
  .main-slider .swiper-slide-active .main-slider__video-link {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(-50%) translateX(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(-50%) translateX(0px);
    transform: perspective(400px) rotateY(0deg) translateY(-50%) translateX(0px);
    -webkit-transition-delay: 2200ms;
    -moz-transition-delay: 2200ms;
    -ms-transition-delay: 2200ms;
    -o-transition-delay: 2200ms;
    transition-delay: 2200ms;
  }
  
  .main-slider__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    font-size: 25px;
    color: var(--hotelux-black);
    background-color: rgba(var(--hotelux-white-rgb), 1);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
  }
  
  .main-slider__video-icon:hover {
    background-color: var(--hotelux-base);
    color: var(--hotelux-white);
  }
  
  .main-slider__video-link .ripple,
  .main-slider__video-icon .ripple:before,
  .main-slider__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--hotelux-white-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--hotelux-white-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--hotelux-white-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--hotelux-white-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
  }
  
  .main-slider__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
  }
  
  .main-slider__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
  }
  
  .main-slider__video-title {
    font-size: 25px;
    font-weight: 600;
    line-height: 25px;
    color: var(--hotelux-white);
  }
  
  .main-slider__shape-arrow {
    position: absolute;
    top: 380px;
    left: 530px;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0%) translateX(-100px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0%) translateX(-100px);
    transform: perspective(400px) rotateY(0deg) translateY(0%) translateX(-100px);
    -webkit-transform-origin: bottom;
    -ms-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    z-index: -1;
  }
  
  .main-slider .swiper-slide-active .main-slider__shape-arrow {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(0deg) translateY(0%) translateX(0px);
    -ms-transform: perspective(400px) rotateY(0deg) translateY(0%) translateX(0px);
    transform: perspective(400px) rotateY(0deg) translateY(0%) translateX(0px);
    -webkit-transition-delay: 2200ms;
    -moz-transition-delay: 2500ms;
    -ms-transition-delay: 2500ms;
    -o-transition-delay: 2500ms;
    transition-delay: 2500ms;
  }
  
  .main-slider__shape-arrow img {
    width: auto;
    animation: leftRight 4s ease-in-out infinite;
  }
  
  #main-slider-pagination {
    position: absolute;
    left: auto;
    right: 60px;
    top: 50%;
    bottom: 0;
    transform: translateY(-50%);
    padding: 0;
    margin: 0;
    height: 80px;
    width: auto;
    z-index: 100;
  }
  
  #main-slider-pagination::before {
    position: absolute;
    top: -105px;
    left: 50%;
    width: 4px;
    height: 85px;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 14%, rgba(255, 255, 255, 0.7595413165266106) 35%, rgba(255, 255, 255, 0.5746673669467788) 57%, rgba(255, 255, 255, 0.19371498599439774) 95%);
    transform: translateX(-50%);
    opacity: 0.3;
    content: "";
  }
  
  #main-slider-pagination::after {
    position: absolute;
    bottom: -105px;
    left: 50%;
    width: 4px;
    height: 85px;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 14%, rgba(255, 255, 255, 0.7595413165266106) 35%, rgba(255, 255, 255, 0.5746673669467788) 57%, rgba(255, 255, 255, 0.19371498599439774) 95%);
    transform: translateX(-50%);
    opacity: 0.3;
    content: "";
  }
  
  #main-slider-pagination .swiper-pagination-bullet {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    padding: 0;
    margin: 0;
    background: rgba(var(--hotelux-white-rgb), 0.4);
    border-radius: 50%;
    opacity: 1;
    transition: all 200ms linear;
    transition-delay: 0.1s;
  }
  
  #main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: rgba(var(--hotelux-white-rgb), 1);
  }
  
  #main-slider-pagination .swiper-pagination-bullet::before {
    position: absolute;
    top: -8px;
    left: -8px;
    bottom: -8px;
    right: -8px;
    border: 1px solid rgba(var(--hotelux-white-rgb), 0.4);
    border-radius: 50%;
    transform: scaleX(0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    content: "";
  }
  
  #main-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before,
  #main-slider-pagination .swiper-pagination-bullet:hover {
    transform: scaleX(1.0);
    border: 1px solid rgba(var(--hotelux-white-rgb), 1.0);
  }
  
  #main-slider-pagination .swiper-pagination-bullet+.swiper-pagination-bullet {
    margin-top: 25px;
  }
  
  
  /*==============================================
      Banner One
  ===============================================*/
  .banner-one {
    position: relative;
    display: block;
    padding: 176px 0 180px;
    overflow: hidden;
    z-index: 5;
  }
  
  .banner-one__shape-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.05;
    z-index: -1;
    background-color: var(--hotelux-base);
  }
  
  .banner-one__inner {
    position: relative;
    display: block;
    margin-left: -100px;
  }
  
  .banner-one__content-box {
    position: relative;
    display: block;
    z-index: 10;
  }
  
  .banner-one__sub-title {
    position: relative;
    display: block;
    font-size: 20px;
    color: var(--hotelux-base);
    font-weight: 500;
    line-height: 1em;
    font-family: var(--hotelux-font-two);
    text-transform: capitalize;
    letter-spacing: 0.01em;
  }
  
  .banner-one__title {
    font-size: 55px;
    color: var(--hotelux-black);
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1.2em;
    margin-top: 26px;
    margin-bottom: 33px;
  }
  
  .banner-one__title span {
    color: var(--hotelux-base);
  }
  
  .banner-one__text {
    font-size: 18px;
    font-weight: 400;
  }
  
  .banner-one__btn-and-review-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 53px;
  }
  
  .banner-one__btn-box {
    position: relative;
    display: block;
  }
  
  .banner-one__review-box {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .banner-one__review-box ul {
    position: relative;
    display: block;
  }
  
  .banner-one__review-box ul li {
    position: relative;
    display: block;
    float: left;
  }
  
  .banner-one__review-box ul li+li {
    margin-left: -20px;
  }
  
  .banner-one__review-box ul li .img-box {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--hotelux-base);
  }
  
  .banner-one__review-box ul li .img-box img {
    width: 100%;
  }
  
  .banner-one__review-box .text-box {
    position: relative;
    display: block;
    margin-left: 10px;
    flex: 1;
  }
  
  .banner-one__review-box .text-box h2 {
    color: var(--hotelux-black);
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
  }
  
  .banner-one__review-box .text-box p {
    color: var(--hotelux-base);
    font-size: 16px;
    line-height: 22px;
    font-weight: 500;
  }
  
  .banner-one__slider-outer {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    height: 815px;
    max-width: 1050px;
    width: 100%;
  }
  
  .banner-one__slider {
    position: relative;
    display: block;
    height: 815px;
    max-width: 1050px;
    width: 100%;
    margin-left: auto;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 30% 100%);
    z-index: 2;
  }
  
  .banner-one__slider .slider-bg-slide {
    width: 100%;
    height: 100% !important;
    margin: 0 auto 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
  }
  
  .banner-one__shape-box {
    position: absolute;
    bottom: -45px;
    left: 480px;
    border-bottom: 300px solid rgba(var(--hotelux-primary-rgb), 1);
    border-left: 565px solid transparent;
    border-right: 120px solid transparent;
    z-index: 2;
  }
  
  .banner-one__video-link {
    position: absolute;
    top: 115px;
    left: -125px;
  }
  
  .banner-one__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    font-size: 18px;
    color: var(--hotelux-white);
    background-color: rgba(var(--hotelux-base-rgb), 1);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
  }
  
  .banner-one__video-icon:hover {
    background-color: var(--hotelux-black);
    color: var(--hotelux-white);
  }
  
  .banner-one__video-link .ripple,
  .banner-one__video-icon .ripple:before,
  .banner-one__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--hotelux-base-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--hotelux-base-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--hotelux-base-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--hotelux-base-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
  }
  
  .banner-one__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
  }
  
  .banner-one__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
  }
  
  .banner-one__shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: .10;
    z-index: -1;
  }
  
  .banner-one__shape-1 img {
    width: auto;
    animation: topBottom 3s ease-in-out infinite;
  }
  
  .banner-one__shape-2 {
    position: absolute;
    top: -85px;
    left: -85px;
    opacity: .05;
    transform: rotate(-45deg);
  }
  
  .banner-one__shape-2 img {
    width: auto;
  }
  
  /*==============================================
      Banner Two
  ===============================================*/
  .banner-two {
    position: relative;
    display: block;
    background-color: var(--hotelux-black);
    padding: 291px 0 135px;
    z-index: 1;
  }
  
  .banner-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
  }
  
  .banner-two__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #191628;
    background: linear-gradient(90deg, rgba(25, 22, 40, 0.9) 10%, rgba(25, 22, 40, 0.53) 100%);
    z-index: 1;
  }
  
  .banner-two__left {
    position: relative;
    display: block;
    margin-right: 50px;
  }
  
  .banner-two__sub-title {
    position: relative;
    display: block;
    font-size: 20px;
    color: var(--hotelux-base);
    font-weight: 500;
    line-height: 1em;
    font-family: var(--hotelux-font-two);
    text-transform: capitalize;
    letter-spacing: 0.01em;
  }
  
  .banner-two__title {
    position: relative;
    font-size: 65px;
    color: var(--hotelux-white);
    font-weight: 600;
    line-height: 1.2em;
    text-transform: capitalize;
    margin-top: 18px;
    margin-bottom: 20px;
  }
  
  .banner-two__title span {
    color: var(--hotelux-base);
  }
  
  .banner-two__text {
    position: relative;
    display: block;
    font-size: 18px;
    color: rgba(var(--hotelux-white-rgb), .80);
    font-weight: 400;
  }
  
  .banner-two__search-box {
    position: relative;
    display: block;
    margin-top: 34px;
  }
  
  .banner-two__search-form-box {
    position: relative;
    display: block;
  }
  
  .banner-two__search-title {
    font-size: 55px;
    color: var(--hotelux-white);
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1em;
    margin-bottom: 31px;
  }
  
  .banner-two__search-form {
    position: relative;
    display: block;
  }
  
  .banner-two__search-form-input-box {
    position: relative;
    display: block;
  }
  
  .banner-two__search-form-input-box input[type="search"] {
    color: var(--hotelux-white);
    font-size: 16px;
    font-weight: 400;
    height: 60px;
    width: 100%;
    background-color: transparent;
    outline: none;
    border: 1px solid var(--hotelux-base);
    border-radius: 0;
    padding-right: 80px;
    padding-left: 20px;
  }
  
  .banner-two__search-form-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    border: none;
    width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--hotelux-white);
    background-color: var(--hotelux-base);
    border-radius: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .banner-two__search-form-btn span {
    position: relative;
    display: inline-block;
    font-weight: 700;
  }
  
  .banner-two__search-form-btn:hover {
    color: var(--hotelux-base);
    background-color: var(--hotelux-white);
  }
  
  
  .banner-two__right {
    position: relative;
    display: block;
    margin-top: 4px;
    margin-left: 20px;
  }
  
  .banner-two__form-box {
    position: relative;
    display: block;
    background: rgba(var(--hotelux-black-rgb), .70);
    padding: 45px 40px 50px;
    z-index: 2;
  }
  
  .banner-two__form-title {
    font-size: 30px;
    color: var(--hotelux-white);
    font-weight: 6;
    text-transform: capitalize;
    line-height: 1em;
    margin-bottom: 27px;
  }
  
  .banner-two__form {
    position: relative;
    display: block;
  }
  
  .banner-two__form .input-box {
    position: relative;
    display: block;
    margin-bottom: 24px;
  }
  
  .banner-two__form .input-box input[type="text"],
  .banner-two__form .input-box input[type="email"] {
    position: relative;
    display: block;
    height: 50px;
    width: 100%;
    background-color: rgba(var(--hotelux-white-rgb), .10);
    border: 1px solid rgba(var(--hotelux-white-rgb), .03);
    padding-left: 20px;
    padding-right: 40px;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: rgba(var(--hotelux-white-rgb), 1);
    border-radius: 0;
    font-family: var(--hotelux-font);
  }
  
  .banner-two__form .input-box .select-box {
    width: 100%;
  }
  
  .banner-two__form .input-box .nice-select {
    position: relative;
    display: block;
    height: 50px;
    width: 100%;
    background-color: rgba(var(--hotelux-white-rgb), .10);
    border: 1px solid rgba(var(--hotelux-white-rgb), .03);
    padding-left: 20px;
    padding-right: 40px;
    outline: none;
    font-size: 14px;
    line-height: 50px;
    font-weight: 400;
    color: rgba(var(--hotelux-white-rgb), 1);
    border-radius: 0;
    font-family: var(--hotelux-font);
    float: none;
  }
  
  .banner-two__form .input-box .nice-select:after {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 7px;
    height: 7px;
    border-bottom: 2px solid var(--hotelux-white);
    border-right: 2px solid var(--hotelux-white);
    margin-top: 0px;
    z-index: 10;
  }
  
  .banner-two__form .input-box .nice-select .option {
    color: var(--hotelux-white);
  }
  
  .banner-two__form .input-box .nice-select .option.selected {
    font-weight: 500;
  }
  
  .banner-two__form .input-box .nice-select .list {
    background-color: var(--hotelux-base);
    border-radius: 0;
    z-index: 20;
  }
  
  .banner-two__form .input-box .nice-select .option:hover,
  .banner-two__form .input-box .nice-select .option.focus,
  .banner-two__form .input-box .nice-select .option.selected.focus {
    color: var(--hotelux-white);
  }
  
  .banner-two__form-btn {
    position: relative;
    display: block;
    margin-top: 6px;
  }
  
  .banner-two__form-btn .thm-btn {
    border: none;
  }
  
  
  /***
  =============================================
  Cta One
  =============================================
  ***/
  .cta-one {
    position: relative;
    display: block;
    padding: 195px 0 120px;
    z-index: 1;
  }
  
  .cta-one::before {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 350px;
    background: var(--hotelux-primary);
    content: "";
    z-index: -1;
  }
  
  .cta-one__inner {
    position: relative;
    display: block;
    background: var(--hotelux-black);
    border-radius: 20px;
    z-index: 1;
  }
  
  .cta-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    opacity: .20;
    z-index: -1;
  }
  
  .cta-one__bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    mix-blend-mode: luminosity;
    opacity: .15;
    z-index: -1;
  }
  
  .cta-one__img {
    position: absolute;
    right: 100px;
    bottom: 0;
    animation: leftRight 4s ease-in-out infinite;
    z-index: 2;
  }
  
  .cta-one__shape-1 {
    position: absolute;
    bottom: 26px;
    left: 480px;
    z-index: -1;
  }
  
  .cta-one__shape-1 img {
    width: auto;
  }
  
  .cta-one__content {
    position: relative;
    display: block;
    padding: 64px 60px 80px;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
  }
  
  .cta-one__content h2 {
    color: var(--hotelux-white);
    font-size: 45px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 25px;
  }
  
  .cta-one__content h2 span {
    color: var(--hotelux-base);
  }
  
  .cta-one__content p {
    color: var(--hotelux-white);
  }
  
  .cta-one__btn-box {
    position: relative;
    display: block;
    margin-top: 37px;
  }
  
  .cta-one__btn-box .thm-btn::before,
  .cta-one__btn-box .thm-btn::after {
    background-color: var(--hotelux-white);
  }
  
  .cta-one__btn-box .thm-btn:hover {
    color: var(--hotelux-base);
  }
  
  
  /*==============================================
    Download App One
  ===============================================*/
  .download-app-one {
    position: relative;
    display: block;
    padding: 152px 0 0px;
    z-index: 1;
  }
  
  .download-app-one .container {
    max-width: 1600px;
  }
  
  .download-app-one__inner {
    position: relative;
    display: block;
    background-color: var(--hotelux-black);
    border-radius: 5px;
    padding: 120px 100px 120px;
    z-index: 1;
  }
  
  .download-app-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .20;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  
  .download-app-one__img-1 {
    position: absolute;
    bottom: 0;
    right: 189px;
    z-index: 1;
  }
  
  .download-app-one__img-1 img {
    width: auto;
  }
  
  .download-app-one__inner .section-title {
    margin-bottom: 32px;
  }
  
  .download-app-one__inner .section-title__tagline::after {
    background: var(--hotelux-black);
  }
  
  .download-app-one__inner .section-title__title {
    color: var(--hotelux-white);
  }
  
  .download-app-one__text {
    color: rgba(var(--hotelux-white-rgb), .70);
  }
  
  .download-app-one__google-and-app-store {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 42px;
  }
  
  .download-app-one__google-and-app-store a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--hotelux-base);
    padding: 15px 30px 15px;
  }
  
  
  /***
  =============================================
  Error Page
  =============================================
  ***/
  .error-page {
    position: relative;
    display: block;
    background: var(--hotelux-white);
    padding: 120px 0px 120px;
    z-index: 1;
  }
  
  .error-page__inner {
    position: relative;
    display: block;
  }
  
  .error-page__img {
    position: relative;
    display: block;
  }
  
  .error-page__img img {
    width: auto;
  }
  
  .error-page__content {
    position: relative;
    display: block;
  }
  
  .error-page__content h2 {
    color: var(--hotelux-base);
    font-size: 45px;
    line-height: 1.5em;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 7px;
  }
  
  .error-page__content .btn-box {
    position: relative;
    display: block;
    margin-top: 21px;
  }
  
  
  /*==============================================
     Event One
  ===============================================*/
  .event-one {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 120px 0 120px;
    z-index: 1;
  }
  
  .event-one__bg-color {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(241, 241, 241, 0) 24%, rgba(241, 241, 241, 1) 100%);
    z-index: -1;
  }
  
  .event-one__inner {
    position: relative;
    display: block;
  }
  
  .event-one__main-tab-box {
    position: relative;
    display: block;
  }
  
  .event-one__tab-buttons-box-one {
    position: relative;
    display: block;
    margin-bottom: 10px;
  }
  
  .event-one__tab-buttons-box-two {
    position: relative;
    display: block;
    margin-left: 30px;
    margin-bottom: 30px;
  }
  
  .event-one__main-tab-box .tab-buttons {
    position: relative;
    display: block;
  }
  
  .event-one__main-tab-box .tab-buttons .tab-btn {
    position: relative;
    display: block;
  }
  
  .event-one__main-tab-box .tab-buttons .tab-btn+.tab-btn {
    margin-top: 15px;
  }
  
  .event-one__buttons {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--hotelux-white);
    box-shadow: 0px 0px 48.51px 0.49px rgba(0, 0, 0, 0.1);
    padding: 20px 20px 20px;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
  }
  
  .event-one__buttons::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--hotelux-base);
    transform: scaleX(0.7) rotateX(20deg);
    opacity: 0;
    transition: all 0.4s linear;
    z-index: -1;
  }
  
  .event-one__main-tab-box .tab-buttons .tab-btn.active-btn .event-one__buttons:before {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
  }
  
  .event-one__buttons-img {
    position: relative;
    display: block;
    max-width: 80px;
    width: 100%;
  }
  
  .event-one__buttons-img img {
    width: 100%;
  }
  
  .event-one__buttons-content {
    position: relative;
    display: block;
  }
  
  .event-one__buttons-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 5px;
    text-transform: capitalize;
  }
  
  .event-one__main-tab-box .tab-buttons .tab-btn.active-btn .event-one__buttons-title {
    color: var(--hotelux-white);
  }
  
  .event-one__main-tab-box .tab-buttons .tab-btn.active-btn .event-one__buttons-time {
    color: var(--hotelux-white);
  }
  
  .event-one__main-tab-box .tabs-content {
    position: relative;
    display: block;
  }
  
  .event-one__main-tab-box .tabs-content .tab {
    position: relative;
    display: none;
    -webkit-transform: translateX(35px);
    -ms-transform: translateX(35px);
    transform: translateX(35px);
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
  }
  
  .event-one__main-tab-box .tabs-content .tab.active-tab {
    display: block;
    margin-top: 0px;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
  
  .event-one__tabs-content-outer {
    position: relative;
    display: block;
    background-color: var(--hotelux-white);
    box-shadow: 0px 0px 48.51px 0.49px rgba(0, 0, 0, 0.1);
    padding: 40px 35px 40px;
  }
  
  .event-one__tabs-content-box {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 30px;
  }
  
  .event-one__img-box {
    position: relative;
    display: block;
  }
  
  .event-one__img {
    position: relative;
    display: block;
    max-width: 410px;
    width: 100%;
    z-index: 1;
  }
  
  .event-one__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #191628;
    background: linear-gradient(180deg, rgba(25, 22, 40, 0) 75%, rgba(25, 22, 40, 1) 100%);
    z-index: 1;
  }
  
  .event-one__img img {
    width: 100%;
  }
  
  .event-one__content {
    position: relative;
    display: block;
    flex: 1;
  }
  
  .event-one__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
  }
  
  .event-one__sub-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--hotelux-black);
    margin-top: 8px;
  }
  
  .event-one__text {
    margin: 20px 0 21px;
  }
  
  .event-one__points {
    position: relative;
    display: block;
    margin: 20px 0 20px;
  }
  
  .event-one__points li+li {
    margin-top: 5px;
  }
  
  .event-one__points li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .event-one__points li .icon {
    position: relative;
    display: inline-block;
  }
  
  .event-one__points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--hotelux-base);
  }
  
  .event-one__date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--hotelux-base);
    z-index: 2;
    padding: 20px 25px 20px;
    z-index: 2;
  }
  
  .event-one__date:before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border: 1px solid rgba(var(--hotelux-white-rgb), .40);
  }
  
  .event-one__date::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid rgba(var(--hotelux-white-rgb), .40);
  }
  
  .event-one__date p {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    color: var(--hotelux-black);
  }
  
  .event-one__date p span {
    font-size: 20px;
    line-height: 20px;
    color: var(--hotelux-white);
  }
  
  .event-one__post {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 2;
  }
  
  .event-one__post {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
  }
  
  .event-one__post>p {
    color: rgba(var(--hotelux-white-rgb), 1);
  }
  
  .event-one__post>p>span {
    font-weight: 700;
    color: var(--hotelux-base);
  }
  
  .event-one__post>span {
    color: rgba(var(--hotelux-white-rgb), 1);
  }
  
  .event-one__btn-box {
    position: relative;
    display: block;
    text-align: center;
    margin-top: 15px;
  }
  
  .event-one__btn-box .thm-btn {
    padding: 11px 35px 11px;
    width: 100%;
    text-align: center;
    justify-content: center;
    background-color: transparent;
    color: var(--hotelux-black);
    border: 1px solid rgba(var(--hotelux-black-rgb), .10);
  }
  
  /*==============================================
      Event Two
  ===============================================*/
  .event-two {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 1;
  }
  
  .event-two__carousel {
    position: relative;
    display: block;
  }
  
  .event-two__single {
    position: relative;
    display: block;
  }
  
  .event-two__img-box {
    position: relative;
    display: block;
    overflow: hidden;
  }
  
  .event-two__img {
    position: relative;
    display: block;
    overflow: hidden;
  }
  
  .event-two__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--hotelux-black-rgb), .85);
    border-radius: var(--hotelux-bdr-radius);
    opacity: 0;
    transform: translateY(50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: 1;
  }
  
  .event-two__single:hover .event-two__img::before {
    opacity: 1;
    transform: translateY(0px);
  }
  
  .event-two__img img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
  }
  
  .event-two__single:hover .event-two__img img {
    transform: scale(1.05) rotate(0deg);
  }
  
  .event-two__date {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0;
    transform: translatex(-50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: 2;
  }
  
  .event-two__single:hover .event-two__date {
    opacity: 1;
    transform: translatex(0%);
    transition-delay: 200ms;
  }
  
  .event-two__date span {
    position: relative;
    display: block;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--hotelux-base);
  }
  
  .event-two__content {
    position: absolute;
    bottom: 33px;
    left: 40px;
    right: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
  }
  
  .event-two__title-box {
    position: relative;
    display: block;
    opacity: 0;
    transform: translateX(-60px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
  }
  
  .event-two__single:hover .event-two__title-box {
    opacity: 1;
    transform: translateX(0%);
    transition-delay: 200ms;
  }
  
  .event-two__sub-title {
    color: var(--hotelux-primary);
  }
  
  .event-two__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    opacity: 0;
    transform: translateX(-60px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
  }
  
  .event-two__single:hover .event-two__title {
    opacity: 1;
    transform: translateX(0%);
    transition-delay: 400ms;
  }
  
  .event-two__title a {
    color: var(--hotelux-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .event-two__title a:hover {
    color: var(--hotelux-base);
  }
  
  .event-two__arrow {
    position: relative;
    display: block;
    opacity: 0;
    transform: translateX(60px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
  }
  
  .event-two__single:hover .event-two__arrow {
    opacity: 1;
    transform: translateX(0%);
    transition-delay: 600ms;
  }
  
  .event-two__arrow a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: var(--hotelux-base);
    font-size: 16px;
    color: var(--hotelux-white);
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .event-two__arrow a:hover {
    background-color: var(--hotelux-white);
    color: var(--hotelux-base);
  }
  
  
  /*==============================================
     Event Three
  ===============================================*/
  .event-three {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 49px 0 50px;
    z-index: 1;
  }
  
  .event-three__wrap {
    position: relative;
    display: block;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
  }
  
  .event-three__wrap .swiper-container {
    position: relative;
  }
  
  .event-three__wrap .swiper {
    position: relative;
    display: block;
  }
  
  .event-three__wrap .swiper-slide {
    position: relative;
    display: block;
  }
  
  .event-three__wrap .swiper-slide-active .event-three__content {
    opacity: 1;
    transform: translateY(0px);
    transition-delay: 500ms;
  }
  
  /* .event-three__wrap .swiper-slide-active .event-three__single .event-three__img:before {
    opacity: 0.60;
  }
   */
  
  
  
  
  .event-three__wrap .swiper-button-prev {
    background: white;
    top: 47%;
    left: 30px;
    width: 40px;
    height: 40px;
    box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.17);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .event-three__wrap .swiper-button-prev::after {
    font-size: 20px;
    content: "";
  }
  
  .event-three__wrap .swiper-button-prev svg {
    width: 25px;
    color: var(--hotelux-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .event-three__wrap .swiper-button-next {
    background: white;
    top: 47%;
    right: 30px;
    width: 40px;
    height: 40px;
    box-shadow: 0px 2px 11px rgba(0, 0, 0, 0.17);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .event-three__wrap .swiper-button-next::after {
    font-size: 20px;
    content: "";
  }
  
  .event-three__wrap .swiper-button-next svg {
    width: 25px;
    color: var(--hotelux-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .event-three__wrap .swiper-button-prev,
  .event-three__wrap .swiper-button-next {
    display: none;
  }
  
  .event-three__wrap .swiper-button-prev:hover,
  .event-three__wrap .swiper-button-next:hover {
    background-color: var(--hotelux-base);
  }
  
  .event-three__wrap .swiper-button-prev:hover svg,
  .event-three__wrap .swiper-button-next:hover svg {
    color: var(--hotelux-white);
  }
  
  @media (min-width: 760px) {
  
    .event-three__wrap .swiper-button-prev,
    .event-three__wrap .swiper-button-next {
      display: flex;
    }
  }
  
  
  
  
  
  
  
  
  .event-three__single {
    position: relative;
    display: block;
  }
  
  .event-three__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
  }
  
  .event-three__img::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--hotelux-black);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
  }
  
  .event-three__img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transform: scale(1.0);
    transition: all 1500ms ease;
  }
  
  .event-three__single:hover .event-three__img img {
    transform: scale(1.05) rotate(0deg);
  }
  
  .event-three__content {
    position: absolute;
    bottom: 30px;
    left: 25px;
    right: 25px;
    background-color: rgba(var(--hotelux-black-rgb), .70);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 13px 8px 21px;
    border-radius: 16px;
    opacity: 0;
    transform: translateY(50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: 2;
  }
  
  
  .event-three__title-box {
    position: relative;
    display: block;
  }
  
  .event-three__meta {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
  }
  
  .event-three__meta li {
    position: relative;
    display: block;
  }
  
  .event-three__meta li a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--hotelux-white);
    font-weight: 500;
    line-height: 20px;
  }
  
  .event-three__title {
    font-size: 22px;
    line-height: 24px;
    text-transform: capitalize;
    font-weight: 600;
    margin-top: 6px;
  }
  
  .event-three__title a {
    color: var(--hotelux-white);
  }
  
  .event-three__title a:hover {
    color: var(--hotelux-base);
  }
  
  .event-three__btn-box {
    position: relative;
    display: block;
  }
  
  .event-three__btn-box .thm-btn:hover {
    color: var(--hotelux-black);
  }
  
  .event-three__btn-box .thm-btn::before,
  .event-three__btn-box .thm-btn::after {
    background-color: var(--hotelux-white);
  }
  
  .event-three__carousel.owl-carousel .owl-dots {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px !important;
  }
  
  .event-three__carousel.owl-carousel .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--hotelux-black);
    margin: 0px;
    padding: 0px;
    transition: all 100ms linear;
    transition-delay: 0.1s;
  }
  
  .event-three__carousel.owl-carousel .owl-dots .owl-dot+.owl-dot {
    margin-left: 10px;
  }
  
  .event-three__carousel.owl-carousel .owl-dot.active {
    background-color: var(--hotelux-black);
  }
  
  .event-three__carousel.owl-carousel .owl-dots .owl-dot:before {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    content: "";
    border: 1px solid var(--hotelux-black);
    border-radius: 50%;
    transform: scale(0);
    transition: all 100ms linear;
    transition-delay: 0.1s;
  }
  
  .event-three__carousel.owl-carousel .owl-dot.active:before {
    transform: scale(1);
  }
  
  .event-three__carousel.owl-carousel .owl-dot:focus {
    outline: none;
  }
  
  .event-three__carousel.owl-carousel .owl-dots .owl-dot span {
    display: none;
  }
  
  /*==============================================
      Event Page
  ===============================================*/
  .event-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
  }
  
  .event-page .event-two__single {
    margin-bottom: 30px;
  }
  
  /*--------------------------------------------------------------
  # Project Details
  --------------------------------------------------------------*/
  .event-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
  }
  
  .event-details__left {
    position: relative;
    display: block;
  }
  
  .event-details__img {
    position: relative;
    display: block;
  }
  
  .event-details__img img {
    width: 100%;
  }
  
  .event-details__title-1 {
    font-size: 35px;
    font-weight: 600;
    line-height: 45px;
    text-transform: capitalize;
    margin-top: 31px;
    margin-bottom: 19px;
  }
  
  .event-details__title-2 {
    font-size: 35px;
    font-weight: 600;
    line-height: 45px;
    text-transform: capitalize;
    margin-top: 52px;
    margin-bottom: 19px;
  }
  
  .event-details__text-and-img {
    position: relative;
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 31px;
    margin-bottom: 61px;
  }
  
  .event-details__text-img {
    position: relative;
    display: block;
  }
  
  .event-details__text-img img {
    width: auto;
  }
  
  .event-details__title-3 {
    font-size: 35px;
    font-weight: 600;
    line-height: 45px;
    text-transform: capitalize;
  }
  
  .event-details__text-4 {
    margin-top: 29px;
    margin-bottom: 31px;
  }
  
  .event-details__img-and-points {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .event-details__points-img {
    position: relative;
    display: block;
    max-width: 400px;
    width: 100%;
  }
  
  .event-details__points-img img {
    width: 100%;
  }
  
  .event-details__points {
    position: relative;
    display: block;
  }
  
  .event-details__points li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  
  .event-details__points li+li {
    margin-top: 16px;
  }
  
  .event-details__points li .icon {
    position: relative;
    display: inline-block;
  }
  
  .event-details__points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--hotelux-base);
  }
  
  .event-details__points li p {
    color: var(--hotelux-black);
  }
  
  .event-details__sidebar {
    position: relative;
    display: block;
  }
  
  .event-details__information {
    position: relative;
    display: block;
    background-color: var(--hotelux-primary);
    padding: 40px 40px 40px;
    margin-bottom: 30px;
  }
  
  .event-details__information-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 30px;
  }
  
  .event-details__information-list {
    position: relative;
    display: block;
  }
  
  .event-details__information-list li {
    position: relative;
    display: block;
    background-color: var(--hotelux-white);
    padding: 18px 30px 19px;
  }
  
  .event-details__information-list li+li {
    margin-top: 12px;
  }
  
  .event-details__information-list li h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    text-transform: capitalize;
    color: var(--hotelux-black);
    margin-bottom: 4px;
  }
  
  .event-details__get-started {
    position: relative;
    display: block;
    background-color: var(--hotelux-primary);
    padding: 40px 40px 40px;
  }
  
  .event-details__get-started-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
  }
  
  .event-details__get-started-text {
    margin-top: 18px;
    margin-bottom: 29px;
  }
  
  .event-details__get-started-points {
    position: relative;
    display: block;
  }
  
  .event-details__get-started-points li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }
  
  .event-details__get-started-points li+li {
    margin-top: 11px;
  }
  
  .event-details__get-started-points li .icon {
    position: relative;
    display: inline-block;
    top: 3px;
  }
  
  .event-details__get-started-points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--hotelux-base);
  }
  
  .event-details__get-started-points li p {
    color: var(--hotelux-black);
  }
  
  .event-details__get-started-points li p a {
    color: var(--hotelux-black);
  }
  
  .event-details__get-started-points li p a:hover {
    color: var(--hotelux-base);
  }
  
  .event-details__get-started-btn-box {
    position: relative;
    display: block;
    margin-top: 30px;
  }
  
  .event-details__previous-next {
    position: relative;
    display: block;
    margin-top: 60px;
  }
  
  .event-details__previous-next ul {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid rgba(var(--hotelux-black-rgb), .15);
    padding: 15px 20px 15px;
  }
  
  .event-details__previous-next ul li {
    position: relative;
    display: flex;
    align-items: center;
    width: 50%;
  }
  
  .event-details__previous-next ul li::before {
    position: absolute;
    top: -16px;
    right: 0;
    bottom: -16px;
    width: 1px;
    background-color: rgba(var(--hotelux-black-rgb), .15);
    content: "";
  }
  
  .event-details__previous-next ul li:last-child:before {
    display: none;
  }
  
  .event-details__previous-next ul li:nth-child(2) {
    float: right;
    text-align: right;
  }
  
  .event-details__previous-next ul li:nth-child(2) .text-box {
    margin-left: 0px;
    margin-right: 20px;
  }
  
  .event-details__previous-next ul li:nth-child(2) .icon a {
    clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
  }
  
  .event-details__previous-next ul li .icon {
    position: relative;
    display: block;
  }
  
  .event-details__previous-next ul li .icon a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 40px;
    background: var(--hotelux-base);
    color: var(--hotelux-white);
    clip-path: polygon(0 0, 79% 0, 100% 100%, 0 100%);
  }
  
  .event-details__previous-next ul li .icon a:hover {
    background: var(--hotelux-black);
  }
  
  .event-details__previous-next ul li .icon a span {
    position: relative;
    display: inline-block;
    font-size: 12px;
    line-height: 15px;
    font-weight: 700;
  }
  
  .event-details__previous-next ul li .text-box {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 20px;
  }
  
  .event-details__previous-next ul li .text-box a {
    color: var(--hotelux-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    text-transform: capitalize;
  }
  
  .event-details__previous-next ul li .text-box a:hover {
    color: var(--hotelux-base);
  }
  
  
  /*==============================================
     FAQ Page
  ===============================================*/
  .faq-page {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
  }
  
  .faq-page__single .faq-one-accrodion .accrodion {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--hotelux-black-rgb), .15);
    background: var(--hotelux-white);
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .faq-page__single .faq-one-accrodion .accrodion.active {
    border: 1px solid rgba(var(--hotelux-black-rgb), .15);
    background: var(--hotelux-white);
  }
  
  .faq-page__single .faq-one-accrodion .accrodion-title {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 23px 25px 23px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
  }
  
  .faq-page__single .faq-one-accrodion .accrodion-title h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: var(--hotelux-black);
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .faq-page__single .faq-one-accrodion .accrodion+.accrodion {
    margin-top: 20px;
  }
  
  .faq-page__single .faq-one-accrodion .accrodion-title h4::before {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    font-weight: 700;
    font-size: 17px;
    color: var(--hotelux-white);
    position: absolute;
    top: 50%;
    right: 0;
    line-height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    text-align: center;
    width: 40px;
    height: 40px;
    background-color: rgba(var(--hotelux-base-rgb), 1);
  }
  
  .faq-page__single .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
    content: "\f107";
    color: var(--hotelux-white);
    background-color: var(--hotelux-black);
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .faq-page__single .faq-one-accrodion .accrodion-content {
    position: relative;
    padding-bottom: 28px;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 20px;
  }
  
  .faq-page__single .faq-one-accrodion .accrodion-content p {
    margin: 0;
  }
  
  
  
  /*==============================================
      Site Footer
  ===============================================*/
  .site-footer {
    position: relative;
    display: block;
    background-color: var(--hotelux-gray);
    overflow: hidden;
    z-index: 1;
  }
  
  .site-footer__shape-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .03;
    mix-blend-mode: luminosity;
    animation: topBottom 3s ease-in-out infinite;
    z-index: -1;
  }
  
  .site-footer__top {
    position: relative;
    display: block;
  }
  
  .footer-widget__newsletter {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 110px 0px 73px;
  }
  
  .footer-widget__newsletter-title {
    font-size: 35px;
    font-weight: 600;
    line-height: 1.3em;
    color: var(--hotelux-white);
  }
  
  .footer-widget__newsletter-form {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 550px;
    width: 100%;
  }
  
  .footer-widget__newsletter-form-input-box {
    position: relative;
    display: block;
    max-width: 389px;
    width: 100%;
  }
  
  .footer-widget__newsletter-form-input-box input[type="email"] {
    font-size: 16px;
    height: 50px;
    width: 100%;
    background-color: rgba(var(--hotelux-white-rgb), .10);
    outline: none;
    border: none;
    color: rgba(var(--hotelux-white-rgb), .70);
    font-weight: 400;
    padding-right: 20px;
    padding-left: 20px;
  }
  
  .footer-widget__newsletter-form .thm-btn {
    border: none;
  }
  
  .footer-widget__newsletter-form .thm-btn::before,
  .footer-widget__newsletter-form .thm-btn::after {
    background-color: var(--hotelux-white);
  }
  
  .footer-widget__newsletter-form .thm-btn:hover {
    color: var(--hotelux-base);
  }
  
  .footer-widget__newsletter-form .thm-btn:hover>span {
    background-color: var(--hotelux-base);
    color: var(--hotelux-white);
  }
  
  .site-footer__middle {
    position: relative;
    display: block;
    padding: 40px 0;
  }
  
  .footer-widget__about {
    position: relative;
    display: block;
    margin-top: 5px;
  }
  
  .footer-widget__logo {
    position: relative;
    display: block;
  }
  .footer-widget__logo img{
    width: auto;
    height: 100px;
  }
  .footer-widget__about-text {
    color: rgba(var(--hotelux-white-rgb), .70);
    margin-top: 20px;
    margin-bottom: 22px;
  }
  
  .site-footer__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
    border-top: 1px dashed rgba(var(--hotelux-white-rgb), .20);
    padding-top: 20px;
  }
  
  .site-footer__social a {
    position: relative;
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--hotelux-white);
    background-color: rgba(var(--hotelux-white-rgb), .15);
    font-size: 16px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
  }
  
  .site-footer__social a:hover {
    color: var(--hotelux-white);
    background-color: var(--hotelux-base);
  }
  
  .site-footer__social a:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--hotelux-base);
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: all;
    transition-property: all;
    opacity: 1;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
  }
  
  .site-footer__social a:hover:after {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  
  .site-footer__social a+a {
    margin-left: 10px;
  }
  
  .footer-widget__title-box {
    position: relative;
    display: block;
    margin-bottom: 25px;
  }
  
  .footer-widget__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    color: var(--hotelux-white);
    text-transform: capitalize;
  }
  
  .footer-widget__right-bottom {
    position: relative;
    display: block;
    margin-left: 75px;
  }
  
  .footer-widget__usefull-link {
    position: relative;
    display: block;
    margin-left: 80px;
  }
  
  .footer-widget__link-box {
    position: relative;
    display: block;
  }
  
  .footer-widget__link {
    position: relative;
    display: block;
  }
  
  .footer-widget__link li {
    position: relative;
    display: block;
  }
  
  .footer-widget__link li+li {
    margin-top: 12px;
  }
  
  .footer-widget__link li a {
    color: rgba(var(--hotelux-white-rgb), .70);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .footer-widget__link li a:hover {
    color: var(--hotelux-base);
  }
  
  .footer-widget__link-2 {
    margin-left: 55px;
  }
  
  .footer-widget__services {
    position: relative;
    display: block;
    margin-left: 70px;
  }
  
  .footer-widget__contact-box {
    position: relative;
    display: block;
    margin-left: 70px;
  }
  
  .footer-widget__contact {
    position: relative;
    display: block;
  }
  
  .footer-widget__contact li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
  }
  
  .footer-widget__contact li+li {
    margin-top: 14px;
  }
  
  .footer-widget__contact li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(var(--hotelux-white-rgb), .15);
    border-radius: 5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .footer-widget__contact li:hover .icon {
    background-color: var(--hotelux-base);
  }
  
  .footer-widget__contact li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--hotelux-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .footer-widget__contact li:hover .icon span {
    color: var(--hotelux-white);
  }
  
  .footer-widget__contact li .content {
    position: relative;
    display: block;
    flex: 1;
  }
  
  .footer-widget__contact li .content h3 {
    font-size: 15px;
    font-weight: 700;
    line-height: 25px;
    text-transform: uppercase;
    color: var(--hotelux-white);
  }
  
  .footer-widget__contact li .content p {
    color: rgba(var(--hotelux-white-rgb), .70)
  }
  
  .footer-widget__contact li .content p a {
    color: rgba(var(--hotelux-white-rgb), .70)
  }
  
  .footer-widget__contact li .content p a:hover {
    color: var(--hotelux-base);
  }
  
  .site-footer__bottom {
    position: relative;
    display: block;
    border-top: 1px dashed rgba(var(--hotelux-white-rgb), .20);
  }
  
  .site-footer__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 26px 0 25px;
  }
  
  .site-footer__bottom-text {
    color: rgba(var(--hotelux-white-rgb), .70);
  }
  
  .site-footer__bottom-text a {
    color: var(--hotelux-base);
    font-weight: 600;
  }
  
  .site-footer__bottom-text a:hover {
    color: var(--hotelux-white);
  }
  
  .site-footer__bottom-menu {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .site-footer__bottom-menu li {
    position: relative;
    display: block;
  }
  
  .site-footer__bottom-menu li+li {
    margin-left: 30px;
  }
  
  .site-footer__bottom-menu li a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: rgba(var(--hotelux-white-rgb), .70);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .site-footer__bottom-menu li a:hover {
    color: var(--hotelux-base);
  }
  
  /*--------------------------------------------------------------
  # Site Footer Two
  --------------------------------------------------------------*/
  .site-footer-two {
    position: relative;
    display: block;
    background-color: var(--hotelux-black);
    overflow: hidden;
    margin-top: -100px;
    z-index: 1;
  }
  
  .site-footer-two__bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.02;
    mix-blend-mode: luminosity;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  
  .site-footer-two__top {
    position: relative;
    display: block;
    padding: 212px 0 112px;
  }
  
  .footer-widget-two__about {
    position: relative;
    display: block;
    margin-top: 8px;
  }
  
  .footer-widget-two__logo {
    position: relative;
    display: block;
  }
  
  .footer-widget-two__about-text {
    margin-top: 25px;
    margin-bottom: 36px;
    color: rgba(var(--hotelux-white-rgb), .80);
  }
  
  .site-footer-two__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .site-footer-two__social a {
    position: relative;
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--hotelux-white);
    background-color: rgba(var(--hotelux-white-rgb), .20);
    font-size: 14px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
  }
  
  .site-footer-two__social a:hover {
    color: var(--hotelux-white);
    background-color: var(--hotelux-base);
  }
  
  .site-footer-two__social a:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--hotelux-base);
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: all;
    transition-property: all;
    opacity: 1;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
  }
  
  .site-footer-two__social a:hover:after {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  
  .site-footer-two__social a+a {
    margin-left: 10px;
  }
  
  .footer-widget-two__title-box {
    position: relative;
    display: block;
    margin-bottom: 25px;
  }
  
  .footer-widget-two__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 35px;
    color: var(--hotelux-white);
    text-transform: capitalize;
  }
  
  .footer-widget-two__usefull-link {
    position: relative;
    display: block;
    margin-left: 70px;
  }
  
  .footer-widget-two__link-box {
    position: relative;
    display: flex;
  }
  
  .footer-widget-two__link {
    position: relative;
    display: block;
  }
  
  .footer-widget-two__link li {
    position: relative;
    display: block;
  }
  
  .footer-widget-two__link li+li {
    margin-top: 10px;
  }
  
  .footer-widget-two__link li a {
    color: rgba(var(--hotelux-white-rgb), .80);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .footer-widget-two__link li a:hover {
    color: var(--hotelux-base);
  }
  
  .footer-widget-two__link-2 {
    margin-left: 55px;
  }
  
  .footer-widget-two__services {
    position: relative;
    display: block;
    margin-left: -30px;
  }
  
  .footer-widget-two__instagram {
    position: relative;
    display: block;
  }
  
  .footer-widget-two__instagram-list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
    padding-top: 5px;
  }
  
  .footer-widget-two__instagram-list li {
    position: relative;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
  }
  
  .footer-widget-two__instagram-img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 2px;
    z-index: 1;
  }
  
  .footer-widget-two__instagram-img:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: rgba(var(--hotelux-black-rgb), .50);
    transition: all 700ms ease;
    transform: translateY(-100%);
    z-index: 1;
  }
  
  .footer-widget-two__instagram-list li:hover .footer-widget-two__instagram-img:before {
    transform: translateY(0%);
  }
  
  .footer-widget-two__instagram-img img {
    width: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
  }
  
  .footer-widget-two__instagram-list li:hover .footer-widget-two__instagram-img img {
    transform: scale(1.1) rotate(2deg);
  }
  
  .footer-widget-two__instagram-img a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--hotelux-white);
    transform: translateY(100px);
    opacity: 0;
    transition: all 700ms ease;
    z-index: 2;
  }
  
  .footer-widget-two__instagram-list li:hover .footer-widget-two__instagram-img a {
    transform: translateY(0px);
    opacity: 1;
    transition-delay: 0.3s;
  }
  
  .footer-widget-two__instagram-list li .footer-widget-two__instagram-img a:hover {
    color: var(--hotelux-white);
  }
  
  .site-footer-two__bottom {
    position: relative;
    display: block;
    border-top: 1px solid rgba(var(--hotelux-white-rgb), .10);
  }
  
  .site-footer-two__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px 0 29px;
  }
  
  .site-footer-two__bottom-text {
    color: rgba(var(--hotelux-white-rgb), .80);
  }
  
  .site-footer-two__bottom-text a {
    font-weight: 500;
    color: var(--hotelux-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .site-footer-two__bottom-text a:hover {
    color: var(--hotelux-white);
  }
  
  .site-footer-two__bottom-menu {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .site-footer-two__bottom-menu li {
    position: relative;
    display: block;
  }
  
  .site-footer-two__bottom-menu li:before {
    content: "";
    position: absolute;
    top: 6px;
    bottom: 7px;
    left: -8px;
    width: 1px;
    background-color: var(--hotelux-gray);
  }
  
  .site-footer-two__bottom-menu li:first-child:before {
    display: none;
  }
  
  .site-footer-two__bottom-menu li+li {
    margin-left: 16px;
  }
  
  .site-footer-two__bottom-menu li a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: rgba(var(--hotelux-white-rgb), .80);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .site-footer-two__bottom-menu li a:hover {
    color: var(--hotelux-base);
  }
  
  /*==============================================
      Site Footer
  ===============================================*/
  .site-footer-three {
    position: relative;
    display: block;
    background-color: var(--hotelux-black);
    overflow: hidden;
    z-index: 1;
  }
  
  .site-footer-three__bg-color {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: calc((100% - 580px) / 2);
    background-color: rgba(var(--hotelux-white-rgb), 0.03);
    z-index: -1;
  }
  
  .site-footer-three__bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    mix-blend-mode: luminosity;
    animation: topBottom 3s ease-in-out infinite;
    z-index: -1;
  }
  
  .site-footer-three__top {
    position: relative;
    display: block;
  }
  
  .footer-widget-three__about {
    position: relative;
    display: block;
    padding-top: 120px;
  }
  
  .footer-widget-three__logo {
    position: relative;
    display: block;
  }
  
  .footer-widget-three__about-text {
    color: rgba(var(--hotelux-white-rgb), .80);
    margin-top: 20px;
    margin-bottom: 22px;
  }
  
  .footer-widget-three__working-box {
    position: relative;
    display: block;
  }
  
  .footer-widget-three__working-title {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    color: var(--hotelux-white);
    margin-bottom: 15px;
  }
  
  .footer-widget-three__working-hour {
    position: relative;
    display: block;
  }
  
  .footer-widget-three__working-hour li {
    position: relative;
    display: block;
  }
  
  .footer-widget-three__working-hour li+li {
    margin-top: 18px;
    border-top: 1px dashed rgba(var(--hotelux-white-rgb), .30);
    padding-top: 18px;
  }
  
  .footer-widget-three__working-hour li p {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(var(--hotelux-white-rgb), .80);
  }
  
  .footer-widget-three__right {
    position: relative;
    display: block;
  }
  
  .footer-widget-three__title-box {
    position: relative;
    display: block;
    margin-bottom: 25px;
  }
  
  .footer-widget-three__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    color: var(--hotelux-white);
    text-transform: capitalize;
  }
  
  .footer-widget-three__right-bottom {
    position: relative;
    display: block;
    margin-left: 75px;
    border-top: 1px dashed rgba(var(--hotelux-white-rgb), .20);
    padding-top: 50px;
  }
  
  .footer-widget-three__usefull-link {
    position: relative;
    display: block;
  }
  
  .footer-widget-three__link-box {
    position: relative;
    display: block;
  }
  
  .footer-widget-three__link {
    position: relative;
    display: block;
  }
  
  .footer-widget-three__link li {
    position: relative;
    display: block;
  }
  
  .footer-widget-three__link li+li {
    margin-top: 12px;
  }
  
  .footer-widget-three__link li a {
    color: rgba(var(--hotelux-white-rgb), .80);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .footer-widget-three__link li a:hover {
    color: var(--hotelux-base);
  }
  
  .footer-widget-three__link-2 {
    margin-left: 55px;
  }
  
  .footer-widget-three__services {
    position: relative;
    display: block;
  }
  
  .footer-widget-three__newsletter {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 65px 75px 0px;
    padding-right: 0;
    margin-bottom: 53px;
  }
  
  .footer-widget-three__newsletter-title {
    font-size: 25px;
    font-weight: 600;
    line-height: 35px;
    color: var(--hotelux-white);
  }
  
  .footer-widget-three__newsletter-form {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 450px;
    width: 100%;
  }
  
  .footer-widget-three__newsletter-form-input-box {
    position: relative;
    display: block;
    max-width: 296px;
    width: 100%;
  }
  
  .footer-widget-three__newsletter-form-input-box input[type="email"] {
    font-size: 16px;
    height: 54px;
    width: 100%;
    background-color: rgba(var(--hotelux-white-rgb), .10);
    outline: none;
    border: none;
    color: rgba(var(--hotelux-white-rgb), .80);
    font-weight: 400;
    border-radius: 0;
    padding-right: 20px;
    padding-left: 20px;
  }
  
  .footer-widget-three__newsletter-form .thm-btn {
    border: none;
    padding: 19px 35px 19px;
  }
  
  .footer-widget-three__newsletter-form .thm-btn:hover {
    color: var(--hotelux-base);
  }
  
  .footer-widget-three__newsletter-form .thm-btn::before {
    background-color: var(--hotelux-white);
  }
  
  .footer-widget-three__newsletter-form .thm-btn::after {
    background-color: var(--hotelux-white);
  }
  
  .footer-widget-three__contact {
    position: relative;
    display: block;
  }
  
  .footer-widget-three__contact li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
  }
  
  .footer-widget-three__contact li+li {
    margin-top: 14px;
  }
  
  .footer-widget-three__contact li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(var(--hotelux-white-rgb), .15);
    border-radius: 5px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .footer-widget-three__contact li:hover .icon {
    background-color: var(--hotelux-base);
  }
  
  .footer-widget-three__contact li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--hotelux-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .footer-widget-three__contact li:hover .icon span {
    color: var(--hotelux-white);
  }
  
  .footer-widget-three__contact li .content {
    position: relative;
    display: block;
    flex: 1;
  }
  
  .footer-widget-three__contact li .content h3 {
    font-size: 15px;
    font-weight: 700;
    line-height: 25px;
    text-transform: uppercase;
    color: var(--hotelux-white);
  }
  
  .footer-widget-three__contact li .content p {
    color: rgba(var(--hotelux-white-rgb), .80)
  }
  
  .footer-widget-three__contact li .content p a {
    color: rgba(var(--hotelux-white-rgb), .80)
  }
  
  .footer-widget-three__contact li .content p a:hover {
    color: var(--hotelux-base);
  }
  
  .site-footer-three__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    border-top: 1px dashed rgba(var(--hotelux-white-rgb), .20);
    padding-top: 30px;
    padding-bottom: 30px;
  }
  
  .site-footer-three__social a {
    position: relative;
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--hotelux-white);
    background-color: rgba(var(--hotelux-white-rgb), .15);
    font-size: 16px;
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
  }
  
  .site-footer-three__social a:hover {
    color: var(--hotelux-white);
    background-color: var(--hotelux-base);
  }
  
  .site-footer-three__social a:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--hotelux-base);
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: all;
    transition-property: all;
    opacity: 1;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: -1;
  }
  
  .site-footer-three__social a:hover:after {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  
  .site-footer-three__social a+a {
    margin-left: 10px;
  }
  
  .site-footer-three__bottom {
    position: relative;
    display: block;
    background-color: rgba(var(--hotelux-white-rgb), 0.05);
  }
  
  .site-footer-three__bottom-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 26px 0 25px;
  }
  
  .site-footer-three__bottom-text {
    color: rgba(var(--hotelux-white-rgb), .80);
  }
  
  .site-footer-three__bottom-text a {
    color: var(--hotelux-base);
  }
  
  .site-footer-three__bottom-text a:hover {
    color: var(--hotelux-white);
  }
  
  .site-footer-three__bottom-menu {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .site-footer-three__bottom-menu li {
    position: relative;
    display: block;
  }
  
  .site-footer-three__bottom-menu li+li {
    margin-left: 30px;
  }
  
  .site-footer-three__bottom-menu li a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: rgba(var(--hotelux-white-rgb), .80);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .site-footer-three__bottom-menu li a:hover {
    color: var(--hotelux-base);
  }
  
  
  /*==============================================
      Gallery One
  ===============================================*/
  .gallery-one {
    position: relative;
    display: block;
  }
  
  .gallery-one__carousel {
    position: relative;
    display: block;
  }
  
  .gallery-one__single {
    position: relative;
    display: block;
  }
  
  .gallery-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
  }
  
  .gallery-one__img:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: rgba(var(--hotelux-black-rgb), .85);
    opacity: 0;
    transform: translateY(50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: 1;
  }
  
  .gallery-one__single:hover .gallery-one__img:before {
    opacity: 1;
    transform: translateY(0px);
  }
  
  .gallery-one__img img {
    width: 100%;
    height:200px;
    object-fit:cover;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
  }
  
  .gallery-one__single:hover .gallery-one__img img {
    transform: scale(1.1) rotate(2deg);
  }
  
  .gallery-one__img a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--hotelux-white);
    opacity: 0;
    transform: translateY(100px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: 2;
  }
  
  .gallery-one__single:hover .gallery-one__img a {
    opacity: 1;
    transform: translateY(0%);
    transition-delay: 500ms;
  }
  
  .gallery-one__img a:hover {
    color: var(--hotelux-base);
  }
  
  
  /*--------------------------------------------------------------
  #  gallery Two
  --------------------------------------------------------------*/
  .gallery-two {
    position: relative;
    display: block;
    padding: 120px 0 0px;
    z-index: 1;
  }
  
  .gallery-filter.style1 {
    position: relative;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
  }
  
  .gallery-filter.style1 li {
    position: relative;
    display: block;
  }
  
  .gallery-filter.style1 li .filter-text {
    position: relative;
    color: var(--hotelux-white);
    font-size: 16px;
    font-weight: 500;
    display: block;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    background-color: var(--hotelux-base);
    padding: 4px 15px 3px;
    z-index: 1;
  }
  
  .gallery-filter.style1 li .filter-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--hotelux-black);
    transform: scaleX(0.7) rotateX(20deg);
    opacity: 0;
    transition: all 0.4s linear;
    z-index: -1;
  }
  
  .gallery-filter.style1 li:hover .filter-text::before,
  .gallery-filter.style1 li.active .filter-text::before {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
  }
  
  .gallery-filter.style1 li:hover .filter-text,
  .gallery-filter.style1 li.active .filter-text {
    color: var(--hotelux-base);
  }
  
  .gallery-filter.style1 li .count {
    color: var(--hotelux-base);
    font-size: 12px;
    line-height: 26px;
    font-weight: 600;
    display: inline-block;
    padding: 0 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: relative;
    top: -8px;
  }
  
  .gallery-filter.style1 li:hover .count,
  .gallery-filter.style1 li.active .count {
    opacity: 1;
  }
  
  .gallery-two__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
  }
  
  .gallery-two__image {
    position: relative;
    display: block;
    overflow: hidden;
  }
  
  .gallery-two__image:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: rgba(var(--hotelux-black-rgb), .80);
    transform: scaleX(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .gallery-two__single:hover .gallery-two__image:before {
    transform: scaleX(1);
  }
  
  .gallery-two__image img {
    width: 100%;
  }
  
  .gallery-two__icon {
    position: absolute;
    top: 20px;
    right: 20px;
    transform: scale(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .gallery-two__single:hover .gallery-two__icon {
    transform: scale(1);
  }
  
  .gallery-two__icon a {
    position: relative;
    height: 40px;
    width: 40px;
    color: var(--hotelux-white);
    font-size: 18px;
    font-weight: 700;
    background: var(--hotelux-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .gallery-two__icon:hover a {
    color: var(--hotelux-black);
    background: var(--hotelux-white);
  }
  
  .gallery-two__text {
    position: absolute;
    left: 25px;
    bottom: 20px;
    transform: translate3d(0px, 118px, 0px);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .gallery-two__single:hover .gallery-two__text {
    transform: translate3d(0px, 0px, 0px);
  }
  
  .gallery-two__text h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
  }
  
  .gallery-two__text h3 a {
    color: var(--hotelux-base);
  }
  
  .gallery-two__text h3 a:hover {
    color: var(--hotelux-white);
  }
  
  /*==============================================
      Gallery Three
  ===============================================*/
  .gallery-three {
    padding: 0 0 120px;
  }
  
  .gallery-three .container {
    max-width: 1000px;
  }
  
  .gallery-three__top-title-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
  }
  
  .gallery-three__top-title-box::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(var(--hotelux-black-rgb), .15);
  }
  
  .gallery-three__top-title {
    position: relative;
    font-size: 24px;
    font-weight: 500;
    text-transform: capitalize;
    text-align: center;
    color: var(--hotelux-black);
    background-color: var(--hotelux-white);
    width: 220px;
    margin: 0 auto;
  }
  
  /*==============================================
      Gallery Page
  ===============================================*/
  .gallery-page {
    padding: 120px 0 90px;
  }
  
  
  /***
  =============================================
  History Page
  =============================================
  ***/
  .history-page {
    position: relative;
    display: block;
    padding: 120px 0px 42px;
    z-index: 1;
  }
  
  .history-page__line {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 119px;
    width: 1px;
    background-color: rgba(var(--hotelux-black-rgb), .15);
  }
  
  .history-page__single {
    position: relative;
    display: block;
    margin-bottom: 70px;
  }
  
  .history-page__single .year-box {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--hotelux-base);
    border-radius: 50%;
    color: var(--hotelux-white);
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
  }
  
  .history-page__single .year-box::before {
    position: absolute;
    top: -5px;
    left: -5px;
    bottom: -5px;
    right: -5px;
    border: 1px solid var(--hotelux-base);
    border-radius: 50%;
    content: "";
  }
  
  .history-page__single-img {
    position: relative;
    display: block;
    padding-right: 85px;
  }
  
  .history-page__single-img-inner {
    position: relative;
    display: block;
    overflow: hidden;
  }
  
  .history-page__single-img-inner img {
    width: 100%;
  }
  
  .history-page__single-content {
    position: relative;
    display: block;
    padding-left: 85px;
    margin-top: -8px;
  }
  
  .history-page__single.style2 .history-page__single-content {
    padding-left: 0px;
    padding-right: 85px;
    text-align: right;
  }
  
  .history-page__single.style2 .history-page__single-img {
    padding-right: 0px;
    padding-left: 85px;
  }
  
  .history-page__single-content h2 {
    font-size: 32px;
    line-height: 44px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 23px;
  }
  
  .history-page__single-content p {
    margin: 0;
  }
  
  /* --- offer.css --- */
  /*==============================================
    Offer One 
  ===============================================*/
  .offer-one {
    position: relative;
    display: block;
    padding: 50px 0 30px;
    z-index: 1;
  }
  
  .offer-one__single {
    position: relative;
    display: block;
    margin-bottom: 22px;
  }
  
  .offer-one__img-box {
    position: relative;
    display: block;
  }
  
  .offer-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
  }
  
  .offer-one__img::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    background: rgba(var(--hotelux-black-rgb), 0.6);
    opacity: 0;
    z-index: 1;
    content: "";
  }
  
  .offer-one__single:hover .offer-one__img::before {
    opacity: 1;
  }
  
  .offer-one__img img {
    width: 100%;
    height:300px;
    transition: .5s ease;
    transform: scale(1.05);
  }
  
  .offer-one__single:hover .offer-one__img img {
    transform: scale(1);
  }
  
  .offer-one__price {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--hotelux-white);
    padding: 5px 10px 5px;
    z-index: 2;
  }
  
  .offer-one__price p span {
    font-weight: 700;
    color: var(--hotelux-black);
  }
  
  .offer-one__offer {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    text-align: center;
    background-color: #fd7e14;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='100' height='100' viewBox='0 0 100 100'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='100' height='100'/%3E%3C/svg%3E");
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='100' height='100' viewBox='0 0 100 100'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='100' height='100'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    z-index: 2;
  }
  
  .offer-one__offer span {
    font-weight: 600;
    color: var(--hotelux-white);
    font-size: 13px;
    line-height: 19px;
    text-transform: capitalize;
  }
  
  .offer-one__content {
    position: relative;
    display: block;
    text-align: center;
    padding: 20px 10px 0px;
  }
  
  .offer-one__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 5px;
  }
  
  .offer-one__title a {
    color: var(--hotelux-black);
  }
  
  .offer-one__title a:hover {
    color: var(--hotelux-base);
  }
  
  .offer-one__text {
    font-weight: 500;
    color: var(--hotelux-base);
  }
  
  
  /*==============================================
     Offer Two
  ===============================================*/
  .offer-two {
    position: relative;
    display: block;
    padding: 120px 0 0px;
    z-index: 1;
  }
  
  .offer-two__bg-color {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -150px;
    clip-path: polygon(0 0, 100% 0%, 13% 92%, 0 79%);
    z-index: -1;
    background: linear-gradient(180deg, rgba(185, 156, 135, 0) 0%, rgba(185, 156, 135, .10) 100%);
  }
  
  .offer-two__single {
    position: relative;
    display: block;
    background-color: rgba(var(--hotelux-base-rgb), .40);
    padding: 56px 40px 60px;
    margin-bottom: 30px;
    z-index: 1;
  }
  
  .offer-two__single-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='630' height='290' viewBox='0 0 630 290'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='630' height='290'/%3E%3C/svg%3E");
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='630' height='290' viewBox='0 0 630 290'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='630' height='290'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    z-index: -1;
  }
  
  .offer-two__sub-title {
    font-size: 20px;
    font-family: var(--hotelux-font-two);
    font-style: italic;
    font-weight: 600;
    color: var(--hotelux-black);
  }
  
  .offer-two__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    margin: 5px 0 35px;
  }
  
  .offer-two__title a {
    color: var(--hotelux-black);
  }
  
  .offer-two__title a:hover {
    color: var(--hotelux-white);
  }
  
  .offer-two__btn-box {
    position: relative;
    display: block;
  }
  
  .offer-two__btn-box .thm-btn {
    padding: 12px 30px 12px;
  }
  
  .offer-two__price-box {
    position: absolute;
    top: 14px;
    left: 200px;
  }
  
  .offer-two__price-box p {
    font-weight: 500;
    text-transform: capitalize;
  }
  
  .offer-two__price-box p span {
    font-weight: 700;
    color: var(--hotelux-black);
  }
  
  
  /*==============================================
      Offer Page
  ===============================================*/
  .offer-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
  }
  
  /***
  =============================================
  Our Location
  =============================================
  ***/
  .our-location {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
  }
  
  .our-location__inner {
    position: relative;
    display: block;
  }
  
  .google-map__two {
    position: relative;
    display: block;
    border: none;
    height: 520px;
    width: 100%;
    border-radius: 0px;
  }
  
  /*==============================================
     Our Rooms
  ===============================================*/
  .our-rooms {
    position: relative;
    display: block;
    padding: 55px 0px 0px;
    z-index: 1;
  }
  
  .our-rooms__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 52px;
  }
  
  .our-rooms__top .section-title {
    margin-bottom: 0px;
  }
  
  .our-rooms__top-left {
    position: relative;
    display: block;
  }
  
  .our-rooms__top-right {
    position: relative;
    display: block;
  }
  
  .our-rooms__btn-box {
    position: relative;
    display: block;
  }
  
  .our-rooms__carousel {
    position: relative;
    display: block;
  }
  
  .our-rooms__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
  }
  
  .our-rooms__img-box {
    position: relative;
    display: block;
    margin-left: 20px;
    margin-right: 20px;
  }
  
  .our-rooms__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
  }
  
  .our-rooms__img::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    background: rgba(var(--hotelux-black-rgb), 0.6);
    opacity: 0;
    z-index: 1;
    content: "";
  }
  
  .our-rooms__single:hover .our-rooms__img::before {
    opacity: 1;
  }
  
  .our-rooms__img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: .5s ease;
    transform: scale(1.05);
  }
  
  .our-rooms__single:hover .our-rooms__img img {
    transform: scale(1);
  }
  
  .our-rooms__price {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 3px 10px 3px;
    background-color: var(--hotelux-white);
    z-index: 2;
  }
  
  .our-rooms__price span {
    font-weight: 700;
    color: var(--hotelux-black);
  }
  
  .our-rooms__content {
    position: relative;
    display: block;
    border: 2px solid rgba(var(--hotelux-black-rgb), .10);
    text-align: center;
    margin-top: -50px;
    padding: 68px 30px 24px;
  }
  
  .our-rooms__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 8px;
  }
  
  .our-rooms__title a {
    color: var(--hotelux-black);
  }
  
  .our-rooms__title a:hover {
    color: var(--hotelux-base);
  }
  
  .our-rooms__service {
    position: absolute;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    flex-direction: column;
    bottom: 10px;
    right: 10px;
    z-index: 2;
  }
  
  .our-rooms__service li {
    position: relative;
    display: block;
  }
  
  .our-rooms__service-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 30px;
    background-color: var(--hotelux-white);
    cursor: pointer;
    gap: 10px;
  }
  
  .our-rooms__service-icon i {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--hotelux-black);
  }
  
  .our-rooms__extra-service {
    position: absolute;
    left: -95px;
    bottom: 0;
    opacity: 0;
    transform: translatex(50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
  }
  
  .our-rooms__extra-service span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 10px 0;
    width: 85px;
    height: 30px;
    background-color: var(--hotelux-white);
  }
  
  .our-rooms__service li:hover .our-rooms__extra-service {
    opacity: 1;
    transform: translatex(0%);
    transition-delay: 200ms;
  }
  
  .our-rooms__details-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  
  .our-rooms__details-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
  }
  
  .our-rooms__details-list li .icon {
    position: relative;
    display: inline-block;
  }
  
  .our-rooms__details-list li .icon>span {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--hotelux-black);
  }
  
  .our-rooms__details-list li p {
    font-size: 15px;
    font-weight: 500;
    color: var(--hotelux-black);
    text-transform: capitalize;
  }
  
  .our-rooms__details-list li>p>span {
    font-weight: 400;
  }
  
  .our-rooms__nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
  }
  
  .our-rooms__nav .swiper-button-prev1,
  .our-rooms__nav .swiper-button-next1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 0;
    color: var(--hotelux-white);
    background-color: var(--hotelux-base);
    font-size: 16px;
    margin: 0px 0px;
    text-align: center;
    transition: all 500ms ease;
    z-index: 100;
  }
  
  .our-rooms__nav .swiper-button-prev1:hover,
  .our-rooms__nav .swiper-button-next1:hover {
    color: var(--hotelux-white);
    background-color: var(--hotelux-black);
  }
  
  .our-rooms__nav .swiper-button-next1 {
    margin-right: 10px;
  }
  
  /*==============================================
      Our Rooms Two
  ===============================================*/
  .our-rooms-two {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
  }
  
  .our-rooms-two__bg-color {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: linear-gradient(0deg, rgba(34, 193, 195, 0) 0%, rgba(241, 241, 241, 1) 100%);
    z-index: -1;
  }
  
  .our-rooms-two__carousel {
    position: relative;
    display: block;
  }
  
  .our-rooms-two__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
  }
  
  .our-rooms-two__img-box {
    position: relative;
    display: block;
  }
  
  .our-rooms-two__img {
    position: relative;
    display: block;
    overflow: hidden;
  }
  
  .our-rooms-two__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #191628;
    background: linear-gradient(180deg, rgba(25, 22, 40, 0) 15%, rgba(25, 22, 40, 1) 100%);
    z-index: 1;
  }
  
  .our-rooms-two__img img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
  }
  
  .our-rooms-two__single:hover .our-rooms-two__img img {
    transform: scale(1.05) rotate(0deg);
  }
  
  .our-rooms-two__price {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 3px 10px 3px;
    background-color: var(--hotelux-white);
    z-index: 2;
  }
  
  .our-rooms-two__price span {
    font-weight: 700;
    color: var(--hotelux-black);
  }
  
  .our-rooms-two__content {
    position: absolute;
    bottom: 15px;
    left: 20px;
    right: 20px;
    text-align: center;
    z-index: 2;
  }
  
  .our-rooms-two__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 6px;
  }
  
  .our-rooms-two__title a {
    color: var(--hotelux-white);
  }
  
  .our-rooms-two__title a:hover {
    color: var(--hotelux-base);
  }
  
  .our-rooms-two__details-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  
  .our-rooms-two__details-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
  }
  
  .our-rooms-two__details-list li .icon {
    position: relative;
    display: inline-block;
  }
  
  .our-rooms-two__details-list li .icon>span {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--hotelux-white);
  }
  
  .our-rooms-two__details-list li p {
    font-size: 15px;
    font-weight: 500;
    color: var(--hotelux-white);
    text-transform: capitalize;
  }
  
  .our-rooms-two__details-list li>p>span {
    font-weight: 400;
  }
  
  .our-rooms-two__service {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 5px;
  }
  
  .our-rooms-two__service li {
    position: relative;
    display: block;
  }
  
  .our-rooms-two__service li .our-rooms-two__service-icon {
    position: relative;
    display: inline-block;
  }
  
  .our-rooms-two__service li .our-rooms-two__service-icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--hotelux-base);
  }
  
  .our-rooms-two__btn-box {
    position: relative;
    display: block;
    text-align: center;
  }
  
  .our-rooms-two__btn-box a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--hotelux-base);
    padding: 10px 30px 10px;
    color: var(--hotelux-base);
  }
  
  .our-rooms-two__btn-box a:hover {
    color: var(--hotelux-white);
    background-color: var(--hotelux-base);
  }
  
  
  /*==============================================
      Our Rooms Three
  ===============================================*/
  .our-rooms-three {
    padding: 120px 0 0px;
  }
  
  .our-rooms-three .swiper-container {
    overflow: visible;
  }
  
  
  /*==============================================
      Room Page
  ===============================================*/
  .room-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
  }
  
  /*==============================================
     Room Details
  ===============================================*/
  .room-details {
    position: relative;
    display: block;
    padding: 120px 0 111px;
    z-index: 1;
  }
  
  .room-details__inner {
    position: relative;
    display: block;
  }
  
  .room-details__main-tab-box {
    position: relative;
    display: block;
  }
  
  .room-details__main-tab-box .tab-buttons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .room-details__main-tab-box .tab-buttons .tab-btn {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .room-details__main-tab-box .tab-buttons .tab-btn .room-details__main-tab-img {
    position: relative;
    display: block;
    max-width: 215px;
    width: 100%;
    cursor: pointer;
    z-index: 15;
  }
  
  .room-details__main-tab-box .tab-buttons .tab-btn .room-details__main-tab-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #191628;
    background: linear-gradient(180deg, rgba(25, 22, 40, 0) 24%, rgba(25, 22, 40, 1) 100%);
  }
  
  .room-details__main-tab-box .tab-buttons .tab-btn .room-details__main-tab-img img {
    width: 100%;
  }
  
  .room-details__main-tab-tag {
    position: absolute;
    bottom: 12px;
    left: 10px;
    right: 10px;
    text-align: center;
    z-index: 2;
  }
  
  .room-details__main-tab-tag span {
    font-weight: 600;
    font-family: var(--hotelux-font-two);
    color: var(--hotelux-white);
  }
  
  .room-details__main-tab-box .tabs-content {
    position: relative;
    display: block;
    margin-bottom: 50px;
  }
  
  .room-details__main-tab-box .tabs-content .tab {
    position: relative;
    display: none;
    -webkit-transform: translateX(35px);
    -ms-transform: translateX(35px);
    transform: translateX(35px);
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
  }
  
  .room-details__main-tab-box .tabs-content .tab.active-tab {
    display: block;
    margin-top: 0px;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
  
  .room-details__single {
    position: relative;
    display: flex;
    align-items: flex-start;
    border: 1px solid rgba(var(--hotelux-black-rgb), .15);
    padding: 50px 50px 50px;
    gap: 30px;
  }
  
  .room-details__img-box {
    position: relative;
    display: block;
  }
  
  .room-details__img {
    position: relative;
    display: block;
    max-width: 735px;
    width: 100%;
  }
  
  .room-details__img img {
    width: 100%;
  }
  
  .room-details__content {
    position: relative;
    display: block;
    flex: 1;
  }
  
  .room-details__title {
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 10px;
  }
  
  .room-details__price {
    font-size: 35px;
    font-weight: 600;
    line-height: 35px;
    font-style: italic;
    color: var(--hotelux-base);
  }
  
  .room-details__price span {
    font-family: var(--hotelux-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--hotelux-black);
    font-style: normal;
  }
  
  .room-details__ratting-and-text {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 2px 0 20px;
  }
  
  .room-details__ratting {
    position: relative;
    display: flex;
    align-items: center;
    gap: 3px;
  }
  
  .room-details__ratting span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--hotelux-base);
  }
  
  .room-details__points-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 50px;
  }
  
  .room-details__points-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 8px;
  }
  
  .room-details__points-list {
    position: relative;
    display: block;
  }
  
  .room-details__points-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .room-details__points-list li .icon {
    position: relative;
    display: inline-block;
  }
  
  .room-details__points-list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--hotelux-base);
  }
  
  .room-details__points-list li+li {
    margin-top: 7px;
  }
  
  .room-details__text-2 {
    margin: 20px 0 45px;
  }
  
  .room-details__extra-services {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .room-details__services-1 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .room-details__services-1>span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 30px;
    border: 1px solid rgba(var(--hotelux-black-rgb), .30);
    font-size: 18px;
    color: var(--hotelux-base);
  }
  
  .room-details__extra-services-text {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .room-details__extra-services-text>span {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid rgba(var(--hotelux-black-rgb), .30);
    padding: 2px 10px 2px;
    font-size: 14px;
    line-height: 24px;
  }
  
  .room-details__title-2 {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
  }
  
  .room-details__size {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 7px 0 14px;
  }
  
  .room-details__size .icon {
    position: relative;
    display: inline-block;
  }
  
  .room-details__size .icon>span {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--hotelux-base);
  }
  
  .room-details__size>p {
    font-size: 16px;
    font-weight: 600;
    color: var(--hotelux-black);
  }
  
  .room-details__size>p>span {
    font-size: 16px;
    color: var(--hotelux-gray);
    font-weight: 400;
  }
  
  .room-details__bottom {
    position: relative;
    display: block;
    margin-top: 47px;
  }
  
  .room-details__bottom-text-2 {
    margin: 20px 0 35px;
  }
  
  .room-details__review-title {
    position: relative;
    display: block;
  }
  
  .room-details__review-title h3 {
    font-size: 35px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 35px;
  }
  
  .room-details__progress-box {
    position: relative;
    display: block;
    margin-top: 24px;
    margin-bottom: 50px;
    margin-right: 60px;
  }
  
  .room-details__progress-box .progress-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .room-details__progress-box .progress-box+.progress-box {
    margin-top: 20px;
  }
  
  .room-details__review-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    max-width: 100px;
    width: 100%;
  }
  
  .room-details__review-icon span {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--hotelux-base);
  }
  
  .room-details__progress-box .progress-box .bar {
    position: relative;
    width: 100%;
    height: 10px;
    background-color: rgba(var(--hotelux-black-rgb), .10);
  }
  
  .room-details__progress-box .progress-box .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 10px;
    background: rgba(var(--hotelux-base-rgb), .50);
    -webkit-transition: all 1500ms ease;
    transition: all 1500ms ease;
  }
  
  .room-details__progress-box .progress-box .count-box {
    position: absolute;
    right: 0px;
    bottom: 7px;
    color: var(--hotelux-base);
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    font-family: var(--hotelux-font);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .room-details__progress-box .progress-box .counted .count-box {
    opacity: 1;
  }
  
  .room-details__bottom-right {
    position: relative;
    display: block;
    padding-top: 50px;
  }
  
  .room-details__room-book {
    position: relative;
    display: block;
    background-color: var(--hotelux-primary);
    padding: 40px 40px 40px;
  }
  
  .room-details__room-book-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    text-transform: capitalize;
    margin-bottom: 20px;
  }
  
  .room-details__form {
    position: relative;
    display: block;
  }
  
  .room-details__input-box {
    position: relative;
    display: block;
    margin-bottom: 15px;
  }
  
  .room-details__input-box input[type="text"],
  .room-details__input-box input[type="email"] {
    height: 50px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(var(--hotelux-black-rgb), .15);
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 50px;
    color: var(--hotelux-gray);
    display: block;
  }
  
  .room-details__input-box .select-box {
    width: 100%;
  }
  
  .room-details__input-box .nice-select {
    height: 50px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(var(--hotelux-black-rgb), .15);
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    color: var(--hotelux-gray);
    font-weight: 400;
    line-height: 50px;
    display: block;
    float: none;
  }
  
  .room-details__input-box .nice-select:after {
    position: absolute;
    top: 22px;
    right: 20px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid rgba(var(--hotelux-black-rgb), .30);
    border-right: 2px solid rgba(var(--hotelux-black-rgb), .30);
    margin-top: 0px;
    z-index: 10;
  }
  
  .room-details__input-box .nice-select .option {
    color: var(--hotelux-black);
  }
  
  .room-details__input-box .nice-select .option.selected {
    font-weight: 500;
  }
  
  .room-details__input-box .nice-select .option:hover,
  .room-details__input-box .nice-select .option.focus,
  .room-details__input-box .nice-select .option.selected.focus {
    color: var(--hotelux-white);
  }
  
  .room-details__btn-box {
    position: relative;
    display: block;
  }
  
  .room-details__btn-box .thm-btn {
    border: none;
  }
  
  .room-details__bottom-text-4 {
    margin: 23px 0 40px;
  }
  
  .room-details__comment-title {
    font-size: 25px;
    font-weight: 600;
    line-height: 35px;
    margin-bottom: 20px;
  }
  
  .room-details__google-map {
    position: relative;
    display: block;
  }
  
  .room-details__google-map-1 {
    position: relative;
    display: block;
    border: none;
    height: 341px;
    width: 100%;
    border-radius: 0px;
  }
  
  /*==============================================
      Smiller Room
  ===============================================*/
  .smiller-room {
    position: relative;
    display: block;
    padding: 0 0 90px;
    z-index: 1;
  }
  
  .smiller-room__title {
    font-size: 50px;
    line-height: 50px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 46px;
  }
  
  /*==============================================
      Room List
  ===============================================*/
  .room-list {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
  }
  
  .room-list__single {
    position: relative;
    display: flex;
    align-items: flex-start;
    border: 1px solid rgba(var(--hotelux-black-rgb), .15);
    padding: 40px 40px 40px;
    gap: 40px;
    margin-bottom: 30px;
  }
  
  .room-list__img-box {
    position: relative;
    display: block;
  }
  
  .room-list__img {
    position: relative;
    display: block;
    max-width: 735px;
    width: 100%;
  }
  
  .room-list__img img {
    width: 100%;
  }
  
  .room-list__content {
    position: relative;
    display: block;
    flex: 1;
  }
  
  .room-list__title {
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 10px;
  }
  
  .room-list__title a {
    color: var(--hotelux-black);
  }
  
  .room-list__title a:hover {
    color: var(--hotelux-base);
  }
  
  .room-list__price {
    font-size: 35px;
    font-weight: 600;
    line-height: 35px;
    font-style: italic;
    color: var(--hotelux-base);
  }
  
  .room-list__price span {
    font-family: var(--hotelux-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--hotelux-black);
    font-style: normal;
  }
  
  .room-list__ratting-and-text {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 2px 0 18px;
  }
  
  .room-list__ratting {
    position: relative;
    display: flex;
    align-items: center;
    gap: 3px;
  }
  
  .room-list__ratting span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--hotelux-base);
  }
  
  .room-list__title-2 {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
  }
  
  .room-list__size {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 7px 0 14px;
  }
  
  .room-list__size .icon {
    position: relative;
    display: inline-block;
  }
  
  .room-list__size .icon>span {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--hotelux-base);
  }
  
  .room-list__size>p {
    font-size: 16px;
    font-weight: 600;
    color: var(--hotelux-black);
  }
  
  .room-list__size>p>span {
    font-size: 16px;
    color: var(--hotelux-gray);
    font-weight: 400;
  }
  
  .room-list__extra-services {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .room-list__services-1 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .room-list__services-1>span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 30px;
    border: 1px solid rgba(var(--hotelux-black-rgb), .30);
    font-size: 18px;
    color: var(--hotelux-base);
  }
  
  .room-list__extra-services-text {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .room-list__extra-services-text>span {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid rgba(var(--hotelux-black-rgb), .30);
    padding: 2px 10px 2px;
    font-size: 14px;
    line-height: 24px;
  }
  
  .room-list__view-details {
    position: absolute;
    top: 40px;
    right: 40px;
  }
  
  .room-list__view-details .thm-btn {
    padding: 10px 15px 10px;
  }
  
  .room-list .blog-list__pagination {
    margin-top: 30px;
  }
  
  
  /*--------------------------------------------------------------
  # Page Header
  --------------------------------------------------------------*/
  .page-header {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: var(--hotelux-gray);
    z-index: 1;
  }
  
  .page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .25;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  
  .page-header__inner {
    position: relative;
    display: block;
    padding: 96px 0 91px;
    text-align: center;
    z-index: 15;
  }
  
  .page-header__img-1 {
    position: absolute;
    bottom: 0;
    right: 0px;
  }
  
  .page-header__inner h3 {
    font-size: 45px;
    color: var(--hotelux-white);
    line-height: 1em;
    font-weight: 600;
    margin-bottom: 14px;
  }
  
  .thm-breadcrumb__inner {
    position: relative;
    display: block;
  }
  
  .thm-breadcrumb {
    position: relative;
    display: block;
  }
  
  .thm-breadcrumb li {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    color: var(--hotelux-white);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .thm-breadcrumb li+li {
    margin-left: 5px;
  }
  
  .thm-breadcrumb li a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    color: var(--hotelux-white);
    text-transform: capitalize;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .thm-breadcrumb li:hover a {
    color: var(--hotelux-base);
    opacity: 1;
  }
  
  .thm-breadcrumb li span {
    font-size: 16px;
    color: var(--hotelux-base);
    font-weight: 700;
    position: relative;
    top: 1px;
  }
  
  /* --- place.css --- */
  /*==============================================
    Place One
  ===============================================*/
  .place-one {
    position: relative;
    display: block;
  }
  
  .place-one__left {
    position: relative;
    display: block;
    margin-bottom: 30px;
  }
  
  .place-one__left .section-title {
    margin-bottom: 35px;
  }
  
  .place-one__right {
    position: relative;
    display: block;
  }
  
  .place-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
  }
  
  .place-one__img-box {
    position: relative;
    display: block;
  }
  
  .place-one__img {
    position: relative;
    display: block;
    overflow: hidden;
  }
  
  .place-one__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--hotelux-black-rgb), .85);
    border-radius: var(--hotelux-bdr-radius);
    opacity: 0;
    transform: translateY(50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: 1;
  }
  
  .place-one__single:hover .place-one__img::before {
    opacity: 1;
    transform: translateY(0px);
  }
  
  
  .place-one__img img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
  }
  
  .place-one__single:hover .place-one__img img {
    transform: scale(1.05) rotate(0deg);
  }
  
  .place-one__btn-box {
    position: relative;
    display: block;
  }
  
  .place-one__text {
    position: absolute;
    bottom: 10px;
    left: 0;
    padding: 4px 20px 5px;
    background-color: var(--hotelux-white);
    opacity: 0;
    transform: translatex(-50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: 2;
  }
  
  .place-one__single:hover .place-one__text {
    opacity: 1;
    transform: translatex(0%);
    transition-delay: 200ms;
  }
  
  .place-one__text span {
    position: relative;
    display: block;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--hotelux-font-two);
    color: var(--hotelux-black);
  }
  
  
  /*==============================================
      Place Page
  ===============================================*/
  .place-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
  }
  
  .place-page .place-one__text span {
    font-family: var(--hotelux-font);
  }
  
  /*==============================================
      Places Details
  ===============================================*/
  .places-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
  }
  
  .places-details__inner {
    position: relative;
    display: block;
  }
  
  .places-details__img {
    position: relative;
    display: block;
  }
  
  .places-details__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #191628;
    background: linear-gradient(180deg, rgba(25, 22, 40, 0) 54%, rgba(25, 22, 40, 1) 100%);
    z-index: 1;
  }
  
  .places-details__img img {
    width: 100%;
  }
  
  .places-details__img-text-1 {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 1;
  }
  
  .places-details__title-1 {
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    margin-top: 30px;
    margin-bottom: 25px;
  }
  
  .places-details__img-text-1 span {
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    font-family: var(--hotelux-font-two);
    color: var(--hotelux-white);
  }
  
  .places-details__video-link {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 5;
  }
  
  .places-details__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-size: 20px;
    color: var(--hotelux-white);
    background-color: rgba(var(--hotelux-base-rgb), 1);
    border-radius: 50%;
    margin: 0 auto 0;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
  }
  
  .places-details__video-icon:hover {
    background-color: var(--hotelux-white);
    color: var(--hotelux-base);
  }
  
  .places-details__video-link .ripple,
  .places-details__video-icon .ripple:before,
  .places-details__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--hotelux-base-rgb), 0.8);
    -o-box-shadow: 0 0 0 0 rgba(var(--hotelux-base-rgb), 0.8);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--hotelux-base-rgb), 0.8);
    box-shadow: 0 0 0 0 rgba(var(--hotelux-base-rgb), 0.8);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
  }
  
  .places-details__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
  }
  
  .places-details__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
  }
  
  .places-details__text-1 {
    margin: 50px 0 35px;
  }
  
  .places-details__img-list {
    position: relative;
    display: block;
  }
  
  .places-details__img-list-img {
    position: relative;
    display: block;
    margin-bottom: 30px;
    overflow: hidden;
  }
  
  .places-details__img-list-img img {
    width: 100%;
  }
  
  .places-details__img-text {
    position: absolute;
    bottom: 20px;
    left: 0;
    padding: 4px 20px 5px;
    background-color: var(--hotelux-white);
    opacity: 0;
    transform: translatex(-50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: 2;
  }
  
  .places-details__img-list-img:hover .places-details__img-text {
    opacity: 1;
    transform: translatex(0%);
    transition-delay: 200ms;
  }
  
  .places-details__img-text span {
    position: relative;
    display: block;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--hotelux-font-two);
    color: var(--hotelux-black);
  }
  
  
  /*==============================================
      Pricing One
  ===============================================*/
  .pricing-one {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 1;
  }
  
  .pricing-one__single {
    position: relative;
    display: block;
    background-color: var(--hotelux-black);
    padding: 40px 40px 40px;
    overflow: hidden;
    margin-bottom: 30px;
    z-index: 1;
  }
  
  .pricing-one__single-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    mix-blend-mode: luminosity;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  
  .pricing-one__top-inner {
    position: relative;
    display: block;
    text-align: center;
  }
  
  .pricing-one__sub-title {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--hotelux-font-two);
    color: var(--hotelux-base);
    text-transform: uppercase;
    position: relative;
    display: block;
  }
  
  .pricing-one__price {
    font-size: 50px;
    font-weight: 400;
    line-height: 50px;
    color: var(--hotelux-white);
    margin: 9px 0 16px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
  }
  
  .pricing-one__price span {
    font-size: 16px;
    font-family: var(--hotelux-font);
    font-weight: 400;
    line-height: 19px;
    color: rgba(var(--hotelux-white-rgb), .80);
  }
  
  .pricing-one__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-transform: capitalize;
    color: rgba(var(--hotelux-white-rgb), .80);
  }
  
  .pricing-one__bdr {
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    background-color: rgba(var(--hotelux-base-rgb), .30);
    margin-top: 30px;
    margin-bottom: 30px;
  }
  
  .pricing-one__bdr::after {
    position: absolute;
    left: 0;
    bottom: -2px;
    right: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    content: "";
    animation: l-r-zump 2s linear infinite;
    background: var(--hotelux-base);
    border-radius: 50%;
  }
  
  .pricing-one__btn-box {
    position: relative;
    display: block;
  }
  
  .pricing-one__btn-box .thm-btn {
    width: 100%;
    justify-content: center;
  }
  
  .pricing-one__btn-box .thm-btn:hover {
    color: var(--hotelux-base);
  }
  
  .pricing-one__btn-box .thm-btn::before {
    background-color: var(--hotelux-white);
  }
  
  .pricing-one__btn-box .thm-btn::after {
    background-color: var(--hotelux-white);
  }
  
  .pricing-one__points-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    color: var(--hotelux-white);
  }
  
  .pricing-one__points {
    position: relative;
    display: block;
    margin: 23px 0 25px;
  }
  
  .pricing-one__points li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .pricing-one__points li+li {
    margin-top: 13px;
  }
  
  .pricing-one__points li .icon {
    position: relative;
    display: inline-block;
  }
  
  .pricing-one__points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--hotelux-base);
  }
  
  .pricing-one__points li p {
    color: rgba(var(--hotelux-white-rgb), .70);
  }
  
  .pricing-one__unlimited-offer {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    margin-top: 24px;
    color: rgba(var(--hotelux-white-rgb), .70);
  }
  
  
  /*==============================================
      Pricing Page
  ===============================================*/
  .pricing-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
  }
  
  /*==============================================
     About One
  ===============================================*/
  .restaurant-one {
    position: relative;
    display: block;
    padding: 120px 0 0px;
    z-index: 1;
  }
  
  .restaurant-one__bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.07;
    filter: sepia(1);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  
  .restaurant-one__menu-list-box {
    position: relative;
    display: block;
  }
  
  .restaurant-one__menu-list-box .row {
    --bs-gutter-x: 20px;
  }
  
  .restaurant-one__menu-list {
    position: relative;
    display: block;
  }
  
  .restaurant-one__menu-list li {
    position: relative;
    display: block;
    margin-bottom: 20px;
  }
  
  .restaurant-one__menu-single {
    position: relative;
    display: block;
    background-color: var(--hotelux-white);
    box-shadow: 0px 0px 48.51px 0.49px rgba(0, 0, 0, 0.1);
    padding: 20px 20px 20px;
    border: 1px solid rgba(var(--hotelux-base-rgb), .20);
  }
  
  .restaurant-one__menu-img-and-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .restaurant-one__menu-img {
    position: relative;
    display: block;
    max-width: 130px;
    width: 100%;
    overflow: hidden;
    border-radius: 3px;
    z-index: 1;
  }
  
  .restaurant-one__menu-img:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(var(--hotelux-black-rgb), 1);
    opacity: 0;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
  }
  
  .restaurant-one__menu-list li:hover .restaurant-one__menu-img:before {
    opacity: .50;
  }
  
  .restaurant-one__menu-img img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
    border-radius: 3px;
  }
  
  .restaurant-one__menu-list li:hover .restaurant-one__menu-img img {
    transform: scale(1.05) rotate(0deg);
  }
  
  .restaurant-one__menu-content {
    position: relative;
    display: block;
    flex: 1;
  }
  
  .restaurant-one__menu-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 25px;
  }
  
  .restaurant-one__menu-price {
    position: relative;
    display: block;
    margin: 0 0 10px;
    border-bottom: 1px dashed rgba(var(--hotelux-base-rgb), .50);
    padding-bottom: 8px;
  }
  
  .restaurant-one__menu-price p {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 18px;
    color: var(--hotelux-black);
  }
  
  .restaurant-one__menu-price span {
    font-family: var(--hotelux-font-two);
    font-weight: 600;
    color: var(--hotelux-base);
    font-size: 18px;
    font-style: italic;
    position: relative;
    top: -1px;
  }
  
  .restaurant-one__inner {
    position: relative;
    display: block;
    padding-bottom: 100px;
  }
  
  .restaurant-one__img {
    position: absolute;
    bottom: 0;
    right: -190px;
  }
  
  .restaurant-one__img img {
    width: auto;
  }
  
  .restaurant-one__btn {
    position: absolute;
    top: 35px;
    right: 20px;
  }
  
  .restaurant-one__btn .thm-btn {
    background-color: transparent;
    border: 1px solid rgba(var(--hotelux-base-rgb), .50);
    color: var(--hotelux-base);
    padding: 7px 10px 7px;
    font-size: 15px;
    line-height: 15px;
  }
  
  
  /*==============================================
      Our Restaurant
  ===============================================*/
  .our-restaurant {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
  }
  
  .our-restaurant__top {
    position: relative;
    display: block;
  }
  
  .our-restaurant__img-1 {
    position: relative;
    display: block;
    max-width: 1050px;
    width: 100%;
    margin: 0 auto;
  }
  
  .our-restaurant__img-1 img {
    width: 100%;
  }
  
  .our-restaurant__text {
    margin: 40px 0 50px;
  }
  
  .our-restaurant__menu {
    position: relative;
    display: block;
    margin-bottom: 30px;
  }
  
  .our-restaurant__menu span {
    font-size: 25px;
    font-weight: 600;
    line-height: 35px;
    font-family: var(--hotelux-font-two);
    color: var(--hotelux-black);
  }
  
  .our-restaurant__text-2 {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .our-restaurant__staff {
    position: relative;
    display: block;
  }
  
  .our-restaurant__staff-title {
    font-size: 25px;
    font-weight: 600;
    line-height: 35px;
    margin-bottom: 43px;
  }
  
  
  /*==============================================
     Services One
  ===============================================*/
  .services-one {
    position: relative;
    display: block;
    padding: 55px 0px 65px;
    z-index: 1;
  }
  
  .services-one__bg-color {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 331px;
    background-color: var(--hotelux-primary);
    z-index: -1;
  }
  
  .services-one__carousel {
    position: relative;
    display: block;
  }
  
  .services-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
  }
  
  .services-one__img-box {
    position: relative;
    display: block;
    z-index: 1;
  }
  
  .services-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
  }
  
  .services-one__img::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    background: rgba(var(--hotelux-black-rgb), 0.6);
    opacity: 0;
    z-index: 1;
    content: "";
  }
  
  .services-one__single:hover .services-one__img::before {
    opacity: 1;
  }
  
  .services-one__img img {
    width: 100%;
        height: 200px;
    object-fit: cover;
    transition: .5s ease;
    transform: scale(1.05);
  }
  
  .services-one__single:hover .services-one__img img {
    transform: scale(1);
  }
  
  .services-one__content {
    position: relative;
    display: block;
    text-align: center;
    background-color: var(--hotelux-white);
    padding: 0px 20px 30px;
    margin-top: -35px;
  }
  
  .services-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--hotelux-white);
    margin: 0 auto;
    z-index: 2;
    border-radius: 50%;
  }
  
  .services-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 45px;
    color: var(--hotelux-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
  }
  
  .services-one__single:hover .services-one__icon span {
    -webkit-animation-name: wobble-horizontal-hover;
    animation-name: wobble-horizontal-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
  }
  
  .services-one__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    margin: 0px 0 8px;
  }
  
  .services-one__title a {
    color: var(--hotelux-black);
  }
  
  .services-one__title a:hover {
    color: var(--hotelux-base);
  }
  
  .services-one__btn-box {
    position: relative;
    display: block;
    margin-top: 12px;
  }
  
  .services-one__btn-box .thm-btn {
    padding: 7px 15px 7px;
  }
  
  /*==============================================
      Services Two
  ===============================================*/
  .services-two {
    position: relative;
    display: block;
    padding: 120px 0 0px;
    z-index: 1;
  }
  
  .services-two__left {
    position: relative;
    display: block;
    margin-bottom: 30px;
  }
  
  .services-two__left .section-title {
    margin-right: -100px;
    margin-bottom: 19px;
  }
  
  .services-two__single {
    position: relative;
    display: block;
    background-color: var(--hotelux-primary);
    padding: 50px 20px 48px;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .services-two__icon {
    position: relative;
    display: inline-block;
  }
  
  .services-two__icon span {
    position: relative;
    display: inline-block;
    font-size: 62px;
    color: var(--hotelux-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
  }
  
  .services-two__single:hover .services-two__icon span {
    -webkit-animation-name: wobble-horizontal-hover;
    animation-name: wobble-horizontal-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
  }
  
  .services-two__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    margin-top: 15px;
  }
  
  .services-two__title a {
    color: var(--hotelux-black);
  }
  
  .services-two__title a:hover {
    color: var(--hotelux-base);
  }
  
  .services-two__explore {
    position: relative;
    display: block;
    background-color: var(--hotelux-primary);
    padding: 45px 20px 39px;
    text-align: center;
    margin-bottom: 30px;
    cursor: pointer;
  }
  
  .services-two__explore-icon {
    position: relative;
    display: block;
  }
  
  .services-two__explore-icon a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--hotelux-black);
    width: 80px;
    height: 80px;
    border: 1px solid rgba(var(--hotelux-black-rgb), .30);
    border-radius: 50%;
    margin: 0 auto;
  }
  
  .services-two__explore:hover .services-two__explore-icon a {
    color: var(--hotelux-base);
    border: 1px solid rgba(var(--hotelux-black-rgb), .30);
    background-color: var(--hotelux-black);
  }
  
  .services-two__explore-btn {
    position: relative;
    display: inline-block;
  }
  
  .services-two__explore-btn a {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--hotelux-black);
    margin-top: 19px;
    position: relative;
    display: inline-block;
  }
  
  .services-two__explore-btn a:hover {
    color: var(--hotelux-base);
  }
  
  /*--------------------------------------------------------------
  # Services Three
  --------------------------------------------------------------*/
  .services-three {
    position: relative;
    display: block;
    counter-reset: count;
    padding: 120px 0 0px;
    z-index: 2;
  }
  
  .services-three__bg-color {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 580px;
    background-color: var(--hotelux-primary);
    z-index: -1;
  }
  
  .services-three__inner {
    position: relative;
    display: block;
  }
  
  .services-three__services-list {
    position: relative;
    display: block;
  }
  
  .services-three__services-list li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--hotelux-white);
    box-shadow: 0px 0px 48.51px 0.49px rgba(0, 0, 0, 0.1);
    padding: 20px 20px 20px;
    margin-bottom: 20px;
  }
  
  .services-three__icon-and-title-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 70px;
    max-width: 480px;
    width: 100%;
  }
  
  .services-three__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--hotelux-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .services-three__services-list li:hover .services-three__icon {
    background-color: var(--hotelux-black);
  }
  
  .services-three__icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: var(--hotelux-white);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
  }
  
  .services-three__services-list li:hover .services-three__icon span {
    transform: scale(0.9);
    color: var(--hotelux-white);
  }
  
  .services-three__title-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
  }
  
  .services-three__count {
    position: relative;
    display: inline-block;
  }
  
  .services-three__count::before {
    position: relative;
    display: inline-block;
    font-size: 24px;
    font-weight: 600;
    color: var(--hotelux-base);
    font-family: var(--hotelux-font-two);
    counter-increment: count;
    content: "0"counter(count);
    transition: all 200ms linear;
    transition-delay: 0.1s;
  }
  
  .services-three__count::after {
    content: "";
    position: absolute;
    top: 8px;
    right: -6px;
    width: 2px;
    height: 17px;
    background-color: var(--hotelux-base);
    transform: rotate(14deg);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .services-three__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
  }
  
  .services-three__title a {
    color: var(--hotelux-black);
  }
  
  .services-three__services-list li:hover .services-three__title a {
    color: var(--hotelux-base);
  }
  
  .services-three__text-and-btn-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 645px;
    width: 100%;
  }
  
  .services-three__text {
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .services-three__services-list li:hover .services-three__text {
    color: var(--hotelux-black);
  }
  
  .services-three__btn-box {
    position: relative;
    display: block;
  }
  
  .services-three__btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--hotelux-gray);
    border: 1px solid rgba(var(--hotelux-black-rgb), .10);
    padding: 10px 18px 10px;
    overflow: hidden;
    transition: 0.5s ease-in-out;
    z-index: 1;
  }
  
  .services-three__btn-box a:hover {
    color: var(--hotelux-white);
    border: 1px solid transparent;
  }
  
  .services-three__btn-box a::after {
    content: "";
    background-color: var(--hotelux-base);
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: circle(0% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
    z-index: -1;
  }
  
  .services-three__btn-box a:hover:after {
    clip-path: circle(100% at 50% 50%);
    transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
  }
  
  .services-three__btn-box a span {
    font-size: 14px;
    color: var(--hotelux-base);
    transition: 0.5s ease-in-out;
  }
  
  .services-three__btn-box a:hover span {
    color: var(--hotelux-white);
  }
  
  /* hover image */
  .services-three__services-list .hover-item__box {
    position: absolute;
    width: 300px;
    height: 250px;
    top: 15%;
    right: 0;
    pointer-events: none;
    transform: translate(-100%, -50%);
    overflow: hidden;
    opacity: 0;
    transform: scale(0.8) rotate(22deg) !important;
    transition: all 0.5s ease-out;
    z-index: 10;
  }
  
  .services-three__services-list .hover-item__box-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-out;
  }
  
  
  
  /*==============================================
      Services Page
  ===============================================*/
  .services-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
  }
  
  .services-page .services-one__content {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 48.51px 0.49px;
  }
  
  /*--------------------------------------------------------------
  # Service Details
  --------------------------------------------------------------*/
  .service-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
  }
  
  .service-details__left {
    position: relative;
    display: block;
  }
  
  .service-details__img {
    position: relative;
    display: block;
  }
  
  .service-details__img img {
    width: 100%;
  }
  
  .service-details__title-1 {
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
    margin-top: 25px;
    margin-bottom: 25px;
  }
  
  .service-details__text-1 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: var(--hotelux-black);
  }
  
  .service-details__text-2 {
    margin-top: 20px;
    margin-bottom: 41px;
  }
  
  .service-details__points-list {
    position: relative;
    display: block;
  }
  
  .service-details__points-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .service-details__points-list li+li {
    margin-top: 16px;
  }
  
  .service-details__points-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .service-details__points-list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: var(--hotelux-base);
  }
  
  .service-details__points-list li p {
    color: var(--hotelux-black);
  }
  
  .service-details__img-box {
    position: relative;
    display: block;
    margin-top: 60px;
    margin-bottom: 31px;
  }
  
  .service-details__img-box-single {
    position: relative;
    display: block;
    margin-bottom: 21px;
  }
  
  .service-details__img-box-img {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 30px;
    z-index: 1;
  }
  
  .service-details__img-box-img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background: rgb(0, 0, 0);
    transition: all 0.5s ease;
    z-index: 1;
  }
  
  .service-details__img-box-img:hover:before {
    opacity: 0.2;
  }
  
  .service-details__img-box-img img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
  }
  
  .service-details__img-box-img:hover img {
    transform: scale(1.06) rotate(0deg);
  }
  
  .service-details__img-box-content-single {
    position: relative;
    display: block;
    margin-bottom: 21px;
  }
  
  .service-details__img-box-content-icon-and-title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .service-details__img-box-content-icon {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .service-details__img-box-content-icon span {
    position: relative;
    display: inline-block;
    font-size: 36px;
    color: var(--hotelux-base);
  }
  
  .service-details__img-box-content-title {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
  }
  
  .service-details__img-box-content-text {
    margin-top: 17px;
  }
  
  .service-details__faq-box {
    position: relative;
    display: block;
    margin-top: 30px;
  }
  
  .service-details__sidebar {
    position: relative;
    display: block;
  }
  
  .service-details__services-box {
    position: relative;
    display: block;
    padding: 31px 35px 40px;
    background-color: var(--hotelux-primary);
  }
  
  .service-details__services-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 28px;
  }
  
  .service-details__services-list {
    position: relative;
    display: block;
  }
  
  .service-details__services-list li {
    position: relative;
    display: block;
  }
  
  .service-details__services-list li+li {
    margin-top: 12px;
  }
  
  .service-details__services-list li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--hotelux-white);
    padding: 13px 20px 14px;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--hotelux-gray);
    overflow: hidden;
    z-index: 1;
  }
  
  .service-details__services-list li:hover a {
    color: var(--hotelux-white);
  }
  
  .service-details__services-list li.active a {
    color: var(--hotelux-white);
  }
  
  .service-details__services-list li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--hotelux-base);
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    transform-origin: bottom right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    z-index: -1;
  }
  
  .service-details__services-list li:hover a::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
  }
  
  .service-details__services-list li.active a::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: top center;
  }
  
  .service-details__services-list li a span {
    color: var(--hotelux-gray);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-size: 14px;
  }
  
  .service-details__services-list li:hover a span {
    color: var(--hotelux-white);
  }
  
  .service-details__services-list li.active a span {
    color: var(--hotelux-white);
  }
  
  .service-details__sidebar-contact {
    position: relative;
    display: block;
    padding-top: 18px;
    padding-bottom: 47px;
    background: var(--hotelux-primary);
    text-align: center;
    margin: 30px 0 30px;
    overflow: hidden;
    z-index: 1;
  }
  
  .service-details__sidebar-contact::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--hotelux-base);
    height: 305px;
    clip-path: polygon(0 0, 100% 0%, 100% 82%, 0% 100%);
    content: "";
    z-index: -2;
  }
  
  .service-details__sidebar-contact::after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--hotelux-black);
    height: 295px;
    clip-path: polygon(0 0, 100% 0%, 100% 82%, 0% 100%);
    content: "";
    z-index: -1;
  }
  
  .service-details__sidebar-contact-img {
    position: relative;
    display: block;
    clip-path: polygon(0 0, 100% 0%, 100% 82%, 0% 100%);
    z-index: 1;
  }
  
  .service-details__sidebar-contact-img .inner {
    position: relative;
    display: block;
  }
  
  .service-details__sidebar-contact-img .inner img {
    width: auto;
  }
  
  .service-details__sidebar-contact-content {
    position: relative;
    display: block;
    margin-top: -65px;
    z-index: 2;
  }
  
  .service-details__sidebar-contact-content .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: var(--hotelux-black);
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
  }
  
  .service-details__sidebar-contact-content .icon span {
    position: relative;
    display: inline-block;
    color: var(--hotelux-white);
    font-size: 20px;
    line-height: 20px;
  }
  
  .service-details__sidebar-contact-content h2 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--hotelux-font);
  }
  
  .service-details__sidebar-contact-content h2 a {
    color: var(--hotelux-black);
  }
  
  .service-details__sidebar-contact-content h2 a:hover {
    color: var(--hotelux-base);
  }
  
  .service-details__sidebar-contact-content p {
    font-weight: 500;
    text-transform: capitalize;
  }
  
  .service-details__sidebar-download-box {
    position: relative;
    display: block;
    padding: 31px 35px 40px;
    background-color: var(--hotelux-primary);
  }
  
  .service-details__sidebar-single-download {
    position: relative;
    display: block;
  }
  
  .service-details__sidebar-single-download ul {
    position: relative;
    display: block;
  }
  
  .service-details__sidebar-single-download ul li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(var(--hotelux-black-rgb), .10);
    padding: 14px 0px 14px;
    line-height: 0;
  }
  
  .service-details__sidebar-single-download ul li:first-child {
    padding-top: 0px;
  }
  
  .service-details__sidebar-single-download ul li:last-child {
    padding-bottom: 0px;
    border-bottom: none;
  }
  
  .service-details__sidebar-single-download ul li .content-box {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .service-details__sidebar-single-download ul li .content-box .icon {
    position: relative;
    display: block;
  }
  
  .service-details__sidebar-single-download ul li .content-box .icon span {
    position: relative;
    display: inline-block;
    color: var(--hotelux-black);
    font-size: 45px;
    line-height: 45px;
  }
  
  .service-details__sidebar-single-download ul li .content-box .text-box {
    position: relative;
    display: block;
    margin-left: 17px;
    flex: 1;
  }
  
  .service-details__sidebar-single-download ul li .content-box .text-box h2 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
  }
  
  .service-details__sidebar-single-download ul li .content-box .text-box h2 a {
    color: var(--hotelux-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
  }
  
  .service-details__sidebar-single-download ul li .content-box .text-box h2 a:hover {
    color: var(--hotelux-base);
  }
  
  .service-details__sidebar-single-download ul li .content-box .text-box p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    text-transform: capitalize;
  }
  
  .service-details__sidebar-single-download ul li .content-box .text-box p a {
    color: var(--hotelux-gray);
  }
  
  .service-details__sidebar-single-download ul li .content-box .text-box p a:hover {
    color: var(--hotelux-base);
  }
  
  .service-details__sidebar-single-download ul li .btn-box {
    position: relative;
    display: block;
  }
  
  .service-details__sidebar-single-download ul li .btn-box a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--hotelux-base);
    border-radius: 2px;
    overflow: hidden;
  }
  
  .service-details__sidebar-single-download ul li .btn-box a:hover {
    background: var(--hotelux-black);
  }
  
  .service-details__sidebar-single-download ul li .btn-box a span::before {
    position: relative;
    display: inline-block;
    color: var(--hotelux-white);
    font-size: 20px;
    line-height: 20px;
  }
  
  
  /***
  =============================================
  Product
  =============================================
  ***/
  .product {
    position: relative;
    display: block;
    padding: 120px 0 120px;
  }
  
  .product__sidebar {
    position: relative;
    display: block;
  }
  
  .product__sidebar-single+.product__sidebar-single {
    margin-top: 30px;
  }
  
  .product__sidebar-title {
    position: relative;
    display: block;
    font-size: 22px;
    font-weight: 600;
    line-height: 22px;
    margin: 0;
    margin-bottom: 22px;
    padding-left: 27px;
  }
  
  .product__sidebar-title::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 0;
    width: 17px;
    height: 17px;
    background-color: var(--hotelux-base);
    clip-path: polygon(0 0, 0 100%, 100% 50%);
  }
  
  .shop-search {
    position: relative;
    display: block;
    background-color: var(--hotelux-primary);
    padding: 30px 30px 30px;
  }
  
  .shop-search form {
    position: relative;
  }
  
  .shop-search form input[type=search],
  .shop-search form input[type=text] {
    width: 100%;
    height: 60px;
    background-color: var(--hotelux-white);
    padding-left: 30px;
    padding-right: 60px;
    font-size: 16px;
    color: var(--hotelux-gray);
    font-family: var(--hotelux-font);
    border: none;
    outline: none;
    font-weight: 500;
  }
  
  .shop-search form ::placeholder {
    color: inherit;
    opacity: 1;
  }
  
  .shop-search form button[type="submit"] {
    background-color: var(--hotelux-base);
    color: var(--hotelux-white);
    font-size: 18px;
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    width: 50px;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 3px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .shop-search form button:hover[type="submit"] {
    background-color: var(--hotelux-black);
    color: var(--hotelux-white);
  }
  
  .product__price-ranger {
    position: relative;
    padding: 27px 30px 30px;
    margin: 0;
    background-color: var(--hotelux-primary);
  }
  
  .product__price-ranger.price-ranger {
    margin-top: 7px;
    margin-bottom: 0px;
  }
  
  .product__price-ranger .price-ranger .ui-widget-content {
    background: var(--hotelux-white);
    border: none;
    height: 5px;
  }
  
  .product__price-ranger .price-ranger .ui-slider-handle {
    position: absolute;
    top: -5px;
    background: var(--hotelux-base);
    border: 0;
    height: 14px;
    width: 14px !important;
    border-radius: 50%;
    margin-left: -2px;
    outline: medium none;
    cursor: pointer;
    z-index: 2;
  }
  
  .product__price-ranger .price-ranger .ui-slider .ui-slider-range {
    background: var(--hotelux-base);
  }
  
  .product__price-ranger .price-ranger #slider-range {
    margin-left: 3px;
    margin-right: 0;
    margin-top: 0;
  }
  
  .product__price-ranger .price-ranger .ranger-min-max-block {
    position: relative;
    display: block;
    margin-top: 17px;
  }
  
  .product__price-ranger .price-ranger .ranger-min-max-block input {
    display: inline-block;
  }
  
  .product__price-ranger .price-ranger .ranger-min-max-block input[type="submit"] {
    position: relative;
    display: block;
    background: var(--hotelux-black);
    float: right;
    text-align: center;
    border: none;
    color: var(--hotelux-white);
    font-size: 12px;
    font-weight: 700;
    margin-top: 0;
    text-transform: uppercase;
    cursor: pointer;
    padding: 5px 20px;
    border-radius: 20px;
    letter-spacing: 0.1em;
  }
  
  .product__price-ranger .price-ranger .ranger-min-max-block input[type="text"] {
    position: relative;
    display: inline-block;
    color: var(--hotelux-gray);
    font-size: 14px;
    font-weight: 400;
    width: 40px;
    line-height: 30px;
    border: none;
    padding: 0;
    text-align: center;
    background-color: transparent;
  }
  
  .product__price-ranger .price-ranger .ranger-min-max-block span {
    position: relative;
    display: inline-block;
    color: var(--hotelux-gray);
    font-size: 14px;
    font-weight: 400;
    line-height: 40px;
    left: -2px;
  }
  
  
  .shop-category {
    position: relative;
    display: block;
    background-color: var(--hotelux-primary);
    padding: 29px 30px 30px;
  }
  
  .shop-category ul {
    position: relative;
    display: block;
  }
  
  .shop-category ul li {
    position: relative;
    line-height: 24px;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--hotelux-gray);
    margin-bottom: 15px;
  }
  
  .shop-category ul li:last-child {
    margin-bottom: 0;
  }
  
  .shop-category ul li a {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 24px;
    font-size: 16px;
    text-transform: capitalize;
    color: var(--hotelux-gray);
    font-weight: 500;
    background-color: var(--hotelux-white);
    padding: 13px 15px 13px;
    transition: all 0.3s ease;
    z-index: 1;
  }
  
  .shop-category ul li:hover a {
    color: var(--hotelux-base);
  }
  
  .shop-category ul li a:after {
    position: absolute;
    right: 5px;
    top: 10px;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    background-color: var(--hotelux-base);
    font-family: 'icomoon' !important;
    content: "\e93d";
    opacity: 1;
    font-size: 12px;
    color: var(--hotelux-white);
    line-height: 30px;
    border-radius: 5px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
  }
  
  .shop-product-tags {
    position: relative;
    display: block;
    background: var(--hotelux-primary);
    padding: 25px 30px 30px;
    overflow: hidden;
    z-index: 1;
  }
  
  .shop-product__tags-list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .shop-product__tags-list a {
    font-size: 12px;
    color: var(--hotelux-black);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: var(--hotelux-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 20px 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  
  .shop-product__tags-list a:hover {
    color: var(--hotelux-white);
    background: var(--hotelux-base);
  }
  
  
  .sidebar-rating-box {
    position: relative;
    display: block;
  }
  
  .sidebar-rating-box ul {
    position: relative;
    display: block;
    overflow: hidden;
  }
  
  .sidebar-rating-box ul li {
    position: relative;
    display: block;
  }
  
  .sidebar-rating-box ul li+li {
    margin-top: 30px;
  }
  
  .sidebar-rating-box ul li input[type=radio] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  
  .sidebar-rating-box ul li label {
    position: relative;
    display: block;
    padding-left: 30px;
    color: #ffc009;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
  }
  
  .sidebar-rating-box ul li label span.gray {
    color: #dddbdb;
  }
  
  .sidebar-rating-box ul li input[type=radio]+label i {
    position: absolute;
    top: 1px;
    left: 0;
    width: 15px;
    height: 15px;
    overflow: hidden;
    border: 1px solid var(--hotelux-gray);
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
  }
  
  .sidebar-rating-box ul li label i::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    transform: scale(0);
    background-color: var(--hotelux-base);
    border-radius: 0%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
  }
  
  .sidebar-rating-box ul li input[type=radio]:checked+label i {
    border-color: var(--hotelux-base);
  }
  
  .sidebar-rating-box ul li input[type=radio]:checked+label i::before {
    transform: scale(1.0);
  }
  
  .shop-product-recent-products {
    position: relative;
    display: block;
    background-color: var(--hotelux-primary);
    padding: 29px 30px 27px;
  }
  
  .shop-product-recent-products ul {
    position: relative;
    display: block;
  }
  
  .shop-product-recent-products ul li {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dddbdb;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  
  .shop-product-recent-products ul li:last-child {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
  
  .shop-product-recent-products ul li .img {
    position: relative;
    display: block;
    overflow: hidden;
  }
  
  .shop-product-recent-products ul li .img::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    background: rgba(var(--hotelux-black-rgb), 0.5);
    opacity: 0;
    z-index: 1;
    content: "";
  }
  
  .shop-product-recent-products ul li:hover .img::before {
    opacity: 1;
  }
  
  .shop-product-recent-products ul li .img img {
    width: 100%;
    transition: .5s ease;
    transform: scale(1.05);
  }
  
  .shop-product-recent-products ul li:hover .img img {
    transform: scale(1);
  }
  
  .shop-product-recent-products ul li .img a {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hotelux-white);
    font-size: 16px;
    line-height: 0;
    transform: translateY(10px) scale(0);
    z-index: 5;
  }
  
  .shop-product-recent-products ul li:hover .img a {
    transform: translateY(0) scale(1);
  }
  
  .shop-product-recent-products ul li .img a:hover {
    color: var(--hotelux-base);
    transform: translateY(0) scale(1);
  }
  
  .shop-product-recent-products ul li .content {
    position: relative;
    display: block;
    flex: 1;
    margin-left: 20px;
  }
  
  .shop-product-recent-products ul li .content .title {
    position: relative;
    display: block;
  }
  
  .shop-product-recent-products ul li .content .title h5 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    text-transform: capitalize;
  }
  
  .shop-product-recent-products ul li .content .title h5 a {
    color: var(--hotelux-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
  }
  
  .shop-product-recent-products ul li .content .title h5 a:hover {
    color: var(--hotelux-base);
  }
  
  .shop-product-recent-products ul li .content .price {
    position: relative;
    display: block;
    padding: 5px 0px 5px;
  }
  
  .shop-product-recent-products ul li .content .price p {
    color: var(--hotelux-base);
  }
  
  .shop-product-recent-products ul li .content .review {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .shop-product-recent-products ul li .content .review i {
    color: #ffc009;
    font-size: 12px;
  }
  
  .shop-product-recent-products ul li .content .review i.color {
    color: #dddbdb;
  }
  
  .shop-product-recent-products ul li .content .review i+i {
    margin-left: 5px;
  }
  
  .product__items {
    position: relative;
    display: block;
  }
  
  .product__showing-result {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-right: 130px;
  }
  
  .product__showing-text-box {
    position: relative;
    display: block;
  }
  
  .product__showing-text {
    font-size: 16px;
    font-weight: 400;
  }
  
  .product__showing-sort {
    position: relative;
    display: block;
    max-width: 340px;
    width: 100%;
  }
  
  .product__showing-sort .select-box .nice-select {
    background-color: var(--hotelux-primary);
    color: var(--hotelux-gray);
    font-size: 16px;
    font-weight: 400;
    height: 70px;
    line-height: 70px;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
    margin-bottom: 0px;
  }
  
  .product__showing-sort .select-box .nice-select:after {
    position: absolute;
    right: 30px;
  }
  
  .product__all {
    position: relative;
    display: block;
  }
  
  .product__all-tab {
    position: relative;
    display: block;
  }
  
  .product__all-tab-button {
    position: absolute;
    top: -100px;
    right: 0;
    z-index: 5;
  }
  
  .product__all-tab-button ul {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--hotelux-primary);
    padding: 15px 15px 15px;
  }
  
  .product__all-tab-button ul li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 3px;
    background-color: var(--hotelux-white);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
  }
  
  .product__all-tab-button ul li:hover,
  .product__all-tab-button ul li.active-btn-item {
    background-color: var(--hotelux-base);
  }
  
  .product__all-tab-button ul li+li {
    margin-left: 10px;
  }
  
  .product__all-tab-button-icon {
    position: relative;
    display: block;
    color: var(--hotelux-base);
    font-size: 18px;
    line-height: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
  }
  
  .product__all-tab-button-icon.one {
    transform: rotate(90deg);
  }
  
  .product__all-tab-button ul li:hover .product__all-tab-button-icon,
  .product__all-tab-button ul li.active-btn-item .product__all-tab-button-icon {
    color: var(--hotelux-white);
  }
  
  .product__all-tab .tabs-content-box {
    position: relative;
    display: block;
  }
  
  .product__all-tab .tab-content-box-item {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: auto;
    visibility: hidden;
  }
  
  .product__all-tab .tab-content-box-item.tab-content-box-item-active {
    position: relative;
    visibility: visible;
    z-index: 5;
  }
  
  .product__all-tab .tab-content-box-item .product__all-tab-content-box-item {
    transition: all 0.7s ease;
    opacity: 0;
    transform: translateY(5px);
    transform-origin: top bottom;
  }
  
  .product__all-tab .tab-content-box-item.tab-content-box-item-active .product__all-tab-content-box-item {
    opacity: 1.0;
    transform: translateY(0px);
    transform-origin: bottom top;
  }
  
  .product__all-tab-single {
    position: relative;
    display: block;
  }
  
  .single-product-style1 {
    position: relative;
    display: block;
    margin-bottom: 30px;
    border: 1px solid rgba(var(--hotelux-black-rgb), .10);
    background-color: var(--hotelux-white);
    padding: 0 0 30px;
    transition: all 500ms ease;
    z-index: 1;
  }
  
  .single-product-style1:hover {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  }
  
  .single-product-style1__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-bottom: 1px solid rgba(var(--hotelux-black-rgb), .10);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 1;
  }
  
  .single-product-style1__img img:first-child {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    -webkit-transform: translatex(50%) scalex(2);
    transform: translatex(50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
  }
  
  .single-product-style1:hover .single-product-style1__img img:first-child {
    -webkit-transform: translatex(0) scalex(1);
    transform: translatex(0) scalex(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
  
  .single-product-style1:hover .single-product-style1__img img:nth-child(2) {
    -webkit-transform: translatex(-50%) scalex(2);
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
  }
  
  .single-product-style1__img img {
    position: relative;
    width: 100%;
    display: block;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .single-product-style1__overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
  }
  
  .single-product-style1__overlay li {
    position: relative;
    display: block;
  }
  
  .single-product-style1__overlay li+li {
    margin-top: 8px;
  }
  
  .single-product-style1__overlay li p {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    background-color: var(--hotelux-white);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
    color: var(--hotelux-base);
    line-height: 35px;
    font-weight: 600;
  }
  
  .single-product-style1__info {
    position: absolute;
    left: 0;
    bottom: 20px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.4s linear 0s;
    z-index: 5;
  }
  
  .single-product-style1:hover .single-product-style1__info {
    opacity: 1;
    transform: translateY(0);
  }
  
  .single-product-style1__info li {
    position: relative;
    display: block;
  }
  
  .single-product-style1__info li+li {
    margin-left: 8px;
  }
  
  .single-product-style1__info li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--hotelux-white);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
    color: var(--hotelux-base);
    font-size: 15px;
    line-height: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
  }
  
  .single-product-style1__info li a:hover {
    color: var(--hotelux-white);
    background-color: var(--hotelux-base);
  }
  
  .single-product-style1__content {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 23px 15px 0px;
  }
  
  .single-product-style1__content-left {
    position: relative;
    display: block;
  }
  
  .single-product-style1__content-left h4 {
    font-size: 17px;
    font-weight: 600;
    line-height: 20px;
    margin-top: 12px;
  }
  
  .single-product-style1__content-left h4 a {
    color: var(--hotelux-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .single-product-style1__content-left h4 a:hover {
    color: var(--hotelux-base);
  }
  
  .single-product-style1__content-left p {
    font-size: 16px;
    font-weight: 500;
    color: var(--hotelux-gray);
    margin-top: 4px;
  }
  
  .single-product-style1__content-left p del {
    color: var(--hotelux-base);
    margin-right: 5px;
  }
  
  .single-product-style1__content-right {
    position: relative;
    display: block;
  }
  
  .single-product-style1__review {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--hotelux-primary);
    padding: 3.5px 5px 3.5px;
    top: -9px;
  }
  
  .single-product-style1__review i {
    color: var(--hotelux-base);
    font-size: 14px;
    margin-right: 5px;
  }
  
  .single-product-style1__review p {
    color: var(--hotelux-black);
    font-weight: 500;
  }
  
  
  .single-product-style2 {
    position: relative;
    display: block;
    margin-bottom: 30px;
    border: 1px solid rgba(var(--hotelux-black-rgb), .10);
    background-color: var(--hotelux-white);
    transition: all 500ms ease;
    z-index: 1;
  }
  
  .single-product-style2:hover {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  }
  
  .single-product-style2 .row {
    --bs-gutter-x: 0px;
    align-items: center;
  }
  
  .single-product-style2__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-right: 1px solid rgba(var(--hotelux-black-rgb), .10);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    z-index: 1;
  }
  
  .single-product-style2__img img:first-child {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    -webkit-transform: translatex(50%) scalex(2);
    transform: translatex(50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
  }
  
  .single-product-style2:hover .single-product-style2__img img:first-child {
    -webkit-transform: translatex(0) scalex(1);
    transform: translatex(0) scalex(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
  
  .single-product-style2:hover .single-product-style2__img img:nth-child(2) {
    -webkit-transform: translatex(-50%) scalex(2);
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    -webkit-filter: blur(10px);
    filter: blur(10px);
  }
  
  .single-product-style2__img img {
    position: relative;
    width: 100%;
    display: block;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .single-product-style2__content {
    position: relative;
    display: block;
    padding: 0px 15px 0px;
  }
  
  .single-product-style2__review {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .single-product-style2__review i {
    color: var(--hotelux-base);
    font-size: 16px;
  }
  
  .single-product-style2__review i+i {
    margin-left: 5px;
  }
  
  .single-product-style2__text {
    position: relative;
    display: block;
    padding-top: 17px;
  }
  
  .single-product-style2__text h4 {
    font-size: 17px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 1px;
  }
  
  .single-product-style2__text h4 a {
    color: var(--hotelux-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .single-product-style2__text h4 a:hover {
    color: var(--hotelux-base);
  }
  
  .single-product-style2__text p {
    font-size: 16px;
    font-weight: 500;
    color: var(--hotelux-gray);
    margin-top: 4px;
  }
  
  .single-product-style2__text p del {
    color: var(--hotelux-base);
    margin-right: 5px;
  }
  
  .single-product-style2__info {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 16px;
    padding-left: 0;
  }
  
  .single-product-style2__info li {
    position: relative;
    display: block;
  }
  
  .single-product-style2__info li+li {
    margin-left: 8px;
  }
  
  .single-product-style2__info li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--hotelux-white);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, .2);
    color: var(--hotelux-base);
    font-size: 15px;
    line-height: 0;
    transition: all 200ms linear;
    transition-delay: 0.1s;
  }
  
  .single-product-style2__info li a:hover {
    color: var(--hotelux-white);
    background-color: var(--hotelux-base);
  }
  
  
  
  /***
  =============================================
     Styled Pagination
  =============================================
  ***/
  .styled-pagination {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-top: 30px;
  }
  
  .styled-pagination li {
    position: relative;
    display: inline-block;
    margin-right: 11px;
  }
  
  .styled-pagination li:last-child {
    margin-right: 0;
  }
  
  .styled-pagination li a {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    color: rgba(var(--hotelux-gray-rgb), .50);
    font-size: 16px;
    line-height: 40px;
    font-weight: 600;
    border: 1px solid rgba(var(--hotelux-gray-rgb), .50);
    text-align: center;
    transition: all 500ms ease;
    font-family: var(--hotelux-font);
    z-index: 1;
  }
  
  .styled-pagination li:hover a,
  .styled-pagination li.active a {
    color: var(--hotelux-white);
    background: var(--hotelux-base);
    border-color: var(--hotelux-base);
  }
  
  .styled-pagination li.prev a,
  .styled-pagination li.next a {
    border-radius: 50%;
    color: rgba(var(--hotelux-gray-rgb), .50);
  }
  
  .styled-pagination li.prev a:hover,
  .styled-pagination li.next a:hover {
    color: var(--hotelux-white);
  }
  
  .styled-pagination li a span:before {
    position: relative;
    top: 0px;
    color: rgba(var(--hotelux-gray-rgb), .50);
    font-size: 14px;
    font-weight: 700;
    transition: all 200ms linear;
    transition-delay: 0.1s;
  }
  
  .styled-pagination li a:hover span:before,
  .styled-pagination li.active a span:before {
    color: var(--hotelux-white);
  }
  
  
  
  
  /***
  =============================================
  Product Details
  =============================================
  ***/
  .product-details {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    z-index: 1;
  }
  
  
  .product-details__left {
    position: relative;
    display: block;
    margin-right: 80px;
  }
  
  .product-details__left-inner {
    position: relative;
    display: block;
  }
  
  .product-details__thumb-box {
    position: relative;
    display: block;
    max-width: 400px;
    margin-top: 20px;
  }
  
  #shop-details-one__thumb {
    z-index: 10;
  }
  
  .product-details__thumb-img {
    position: relative;
    display: block;
    width: 125px !important;
    cursor: pointer;
    overflow: hidden;
    border-radius: 0px;
    border: 1px solid rgba(var(--hotelux-black-rgb), .10);
  }
  
  .product-details__thumb-img img {
    width: 100%;
    border-radius: 0px;
  }
  
  .product-details__thumb-img:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--hotelux-base);
    opacity: 0;
    transition: all 500ms ease;
  }
  
  
  #shop-details-one__thumb .swiper-slide-thumb-active .product-details__thumb-img:before {
    opacity: 1;
  }
  
  .product-details__content-box {
    position: relative;
    display: block;
  }
  
  .product-details__img {
    position: relative;
    display: block;
  }
  
  .product-details__img img {
    width: 100%;
    border: 1px solid rgba(var(--hotelux-black-rgb), .10);
  }
  
  
  .product-details__nav {
    position: absolute;
    top: 50%;
    left: 5px;
    right: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 100;
  }
  
  .product-details__nav .swiper-button-next,
  .product-details__nav .swiper-button-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    color: var(--hotelux-black);
    background-color: var(--hotelux-primary);
    border-radius: 50%;
    margin: 0;
    text-align: center;
    opacity: 1;
    transition: all 500ms ease;
    z-index: 100;
  }
  
  
  .product-details__nav .swiper-button-next:hover,
  .product-details__nav .swiper-button-prev:hover {
    color: var(--hotelux-white);
    background-color: var(--hotelux-base);
  }
  
  .product-details__nav .swiper-button-next {
    margin-top: 0px;
  }
  
  .product-details__nav .swiper-button-next i,
  .product-details__nav .swiper-button-prev i {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .product-details__nav .swiper-button-next::after,
  .product-details__nav .swiper-button-prev::after {
    display: none;
  }
  
  
  .product-details__right {
    position: relative;
    display: block;
    margin-top: -9px;
  }
  
  .product-details__top {
    position: relative;
    display: block;
  }
  
  .product-details__title {
    font-size: 34px;
    line-height: 44px;
    font-weight: 600;
    margin: 0;
  }
  
  .product-details__title span {
    position: relative;
    display: inline-block;
    color: var(--hotelux-base);
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    margin-left: 25px;
    letter-spacing: 0;
  }
  
  .product-details__reveiw {
    display: flex;
    align-items: center;
    margin-top: 26px;
    padding-bottom: 37px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(var(--hotelux-black-rgb), .10);
  }
  
  .product-details__reveiw i {
    font-size: 16px;
    color: var(--hotelux-base);
  }
  
  .product-details__reveiw i+i {
    margin-left: 4px;
  }
  
  .product-details__reveiw span {
    position: relative;
    top: 1px;
    line-height: 1;
    font-size: 16px;
    color: var(--hotelux-gray);
    margin-left: 18px;
  }
  
  .product-details__content {
    position: relative;
    display: block;
  }
  
  .product-details__content-text1 {
    font-size: 16px;
    line-height: 30px;
    margin: 0;
    margin-bottom: 31px;
  }
  
  .product-details__content-text2 {
    font-size: 16px;
    line-height: 30px;
    margin: 0;
  }
  
  .product-details__select {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  
  .product-details__select-size {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .product-details__select-size h3 {
    font-size: 20px;
    line-height: 30px;
    margin-right: 15px;
    font-weight: 600;
  }
  
  .product-details__select-size ul {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
  }
  
  .product-details__select-size ul li {
    position: relative;
    display: block;
    width: 45px;
    height: 35px;
  }
  
  .product-details__select-size ul li input[type=radio] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  
  .product-details__select-size ul li label {
    position: relative;
    width: 45px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hotelux-black);
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
  }
  
  .product-details__select-size ul li input[type=radio]:checked+label {
    color: var(--hotelux-white);
    font-weight: 500;
  }
  
  .product-details__select-size ul li input[type=radio]+label i {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 0;
    width: 45px;
    height: 35px;
    overflow: hidden;
    border: 1px solid var(--hotelux-gray);
    border-radius: 5px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: -1;
  }
  
  .product-details__select-size ul li label i::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    transform: scale(0.3);
    opacity: 0;
    background-color: var(--hotelux-base);
    border-radius: 5px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
  }
  
  .product-details__select-size ul li input[type=radio]:checked+label i {
    border-color: var(--hotelux-base);
  }
  
  .product-details__select-size ul li input[type=radio]:checked+label i::before {
    transform: scale(1.0);
    opacity: 1;
  }
  
  
  .product-details__inner {
    position: relative;
    display: block;
    margin-top: 30px;
    margin-bottom: 25px;
  }
  
  .product-details__quantity {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .product-details__quantity-title {
    margin: 0;
    color: var(--hotelux-black);
    font-size: 18px;
    line-height: 30px;
    font-weight: 600;
    margin-right: 20px;
  }
  
  .product-details__quantity .quantity-box {
    position: relative;
    width: 98px;
    border-radius: 0px;
    height: 50px;
  }
  
  .product-details__quantity .quantity-box input {
    width: 98px;
    height: 50px;
    border: 1px solid rgba(var(--hotelux-black-rgb), .10);
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    font-family: var(--hotelux-font);
    padding-left: 30px;
    outline: none;
    font-size: 18px;
    font-weight: 700;
    color: var(--hotelux-gray);
  }
  
  .product-details__quantity .quantity-box button {
    width: 24px;
    height: 24px;
    background-color: transparent;
    color: var(--hotelux-gray);
    font-size: 8px;
    position: absolute;
    top: 1px;
    right: 1px;
    background-color: #fff;
    border: none;
    border-left: 1px solid rgba(var(--hotelux-black-rgb), .10);
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
  }
  
  .product-details__quantity .quantity-box button.sub {
    bottom: 1px;
    top: auto;
    border-top: 1px solid rgba(var(--hotelux-black-rgb), .10);
    border-top-right-radius: 0px;
    border-bottom-right-radius: 10px;
  }
  
  .product-details__buttons-boxes {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
  }
  
  .product-details__buttons-1 {
    position: relative;
    display: block;
  }
  
  .product-details__buttons-2 {
    position: relative;
    display: block;
  }
  
  .product-details__social {
    position: relative;
    display: block;
  }
  
  .product-details__social .title {
    position: relative;
    display: block;
  }
  
  .product-details__social .title h3 {
    color: var(--hotelux-black);
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
  }
  
  .product-details__social-link {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 20px;
  }
  
  .product-details__social-link a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hotelux-white);
    font-size: 15px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    background-color: var(--hotelux-black);
    border-radius: 50%;
    height: 45px;
    width: 45px;
  }
  
  .product-details__social-link a+a {
    margin-left: 10px;
  }
  
  .product-details__social-link a:hover {
    color: var(--hotelux-white);
    background-color: var(--hotelux-base);
  }
  
  /***
  =============================================
  Product Description
  =====***/
  .product-description {
    position: relative;
    display: block;
    padding: 0 0 110px;
    z-index: 1;
  }
  
  .product-details__description {
    position: relative;
    display: block;
  }
  
  .product-details__main-tab-box {
    position: relative;
    display: block;
  }
  
  .product-details__main-tab-box .tab-buttons {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    line-height: 0;
  }
  
  .product-details__main-tab-box .tab-buttons .tab-btn {
    position: relative;
    display: inline-block;
  }
  
  .product-details__main-tab-box .tab-buttons .tab-btn span {
    position: relative;
    display: block;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    font-size: 18px;
    line-height: 18px;
    color: var(--hotelux-black);
    background-color: var(--hotelux-primary);
    padding: 16px 25px 16px;
    text-transform: capitalize;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
  }
  
  .product-details__main-tab-box .tab-buttons .tab-btn.active-btn span {
    color: var(--hotelux-white);
  }
  
  .product-details__main-tab-box .tab-buttons .tab-btn span:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0%;
    content: "";
    background-color: var(--hotelux-base);
    transition: all 0.3s ease;
    z-index: -1;
  }
  
  .product-details__main-tab-box .tab-buttons .tab-btn.active-btn span:before {
    height: 100%;
  }
  
  .product-details__main-tab-box .tabs-content {
    position: relative;
    display: block;
  }
  
  .product-details__main-tab-box .tabs-content .tab {
    position: relative;
    display: none;
    -webkit-transform: translateY(35px);
    -ms-transform: translateY(35px);
    transform: translateY(35px);
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
  }
  
  .product-details__main-tab-box .tabs-content .tab.active-tab {
    display: block;
    margin-top: 0px;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }
  
  .product-details__tab-content-inner {
    position: relative;
    display: block;
    padding: 40px 40px 50px;
    border: 1px solid rgba(var(--hotelux-black-rgb), .10);
  }
  
  .product-details__description-content {
    position: relative;
    display: block;
  }
  
  .product-description__list {
    position: relative;
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  
  .product-description__list ul {
    position: relative;
    display: block;
  }
  
  .product-description__list ul li {
    position: relative;
    display: block;
    margin-bottom: 2px;
  }
  
  .product-description__list ul li:last-child {
    margin-bottom: 0px;
  }
  
  .product-description__list ul li p {
    color: var(--hotelux-black);
    margin: 0;
    font-weight: 500;
  }
  
  .product-description__list ul li p span:before {
    position: relative;
    display: inline-block;
    color: var(--hotelux-base);
    font-size: 17px;
    line-height: 17px;
    margin-right: 11px;
    top: 2px;
    font-weight: 700;
  }
  
  .product-details__additional-information-content {
    position: relative;
    display: block;
  }
  
  .product-details__additional-information-text-1 {
    padding-bottom: 24px;
  }
  
  /*--------------------------------------------------------------
    # Review One
    --------------------------------------------------------------*/
  .review-one {
    position: relative;
    display: block;
  }
  
  .comments-area {
    position: relative;
    display: block;
  }
  
  .review-one__title {
    position: relative;
    display: block;
    margin-bottom: 36px;
  }
  
  .review-one__title h3 {
    font-size: 30px;
    line-height: 30px;
    font-weight: 600;
    margin: 0;
    text-transform: capitalize;
  }
  
  .comments-area .comment-box {
    position: relative;
    display: block;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(var(--hotelux-black-rgb), .10);
  }
  
  .comments-area .comment {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .comments-area .comment-box .author-thumb {
    position: relative;
    display: block;
    width: 165px;
    height: 165px;
    border-radius: 50%;
    overflow: hidden;
  }
  
  .comments-area .comment-box .author-thumb img {
    width: 100%;
  }
  
  .comments-area .comment-box .author-thumb figure {
    margin: 0;
  }
  
  .review-one__content {
    position: relative;
    display: block;
    padding-left: 45px;
    flex: 1;
  }
  
  .review-one__content-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  .review-one__content-top .info {
    position: relative;
    display: block;
  }
  
  .review-one__content-top .info h2 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
  }
  
  .review-one__content-top .info h2 span {
    color: var(--hotelux-base);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: capitalize;
    font-family: var(--hotelux-font);
  }
  
  .review-one__content-top .reply-btn {
    position: relative;
    display: block;
  }
  
  .review-one__content-top .reply-btn i:before {
    color: var(--hotelux-base);
    font-size: 15px;
  }
  
  .review-one__content-bottom {
    position: relative;
    display: block;
  }
  
  .review-one__content-bottom p {
    font-size: 16px;
    line-height: 30px;
    margin: 0px;
  }
  
  /*--------------------------------------------------------------
    # Review Form One
    --------------------------------------------------------------*/
  .review-form-one {
    position: relative;
    display: block;
    padding: 16px 0px 0px;
  }
  
  .review-form-one__inner {
    position: relative;
    display: block;
  }
  
  .review-form-one__title {
    font-size: 30px;
    font-weight: 600;
    line-height: 30px;
    text-transform: capitalize;
  }
  
  .review-form-one__rate-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 17px;
    margin-bottom: 37px;
  }
  
  .review-form-one__rate-text {
    font-size: 18px;
    font-weight: 400;
  }
  
  .review-form-one__rate {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 17px;
  }
  
  .review-form-one__rate i {
    font-size: 16px;
    color: var(--hotelux-base);
  }
  
  .review-form-one__rate i+i {
    margin-left: 5px;
  }
  
  .review-form-one__form {
    position: relative;
    display: block;
  }
  
  .review-form-one__form .row {
    --bs-gutter-x: 20px;
  }
  
  .review-form-one__input-box textarea {
    font-size: 14px;
    color: var(--hotelux-gray);
    height: 160px;
    width: 100%;
    background-color: var(--hotelux-white);
    padding: 20px 30px 30px;
    border: 1px solid rgba(var(--hotelux-black-rgb), .10);
    outline: none;
    margin-bottom: 0px;
    font-weight: 500;
  }
  
  .review-form-one__input-box.text-message-box {
    height: 160px;
  }
  
  .review-form-one__input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
  }
  
  .review-form-one__input-box input[type="text"],
  .review-form-one__input-box input[type="email"] {
    height: 50px;
    width: 100%;
    border: 1px solid rgba(var(--hotelux-black-rgb), .10);
    background-color: var(--hotelux-white);
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 14px;
    color: var(--hotelux-gray);
    display: block;
    font-weight: 500;
  }
  
  .review-form-one__form .thm-btn {
    border: none;
  }
  
  
  /*--------------------------------------------------------------
    # Related Products
    --------------------------------------------------------------*/
  .related-products {
    position: relative;
    display: block;
    padding: 0px 0px 120px;
  }
  
  .related-products__title {
    position: relative;
    display: block;
    padding-bottom: 52px;
  }
  
  .related-products__title h3 {
    font-size: 40px;
    line-height: 1.0em;
    margin-bottom: 16px;
    font-weight: 600;
    text-transform: capitalize;
  }
  
  .related-products__title p {
    margin: 0;
  }
  
  .single-product-style1.instyle--2 {
    margin-bottom: 0px;
  }
  
  
  /*--------------------------------------------------------------
    # Cart Page
    --------------------------------------------------------------*/
  .cart-page {
    position: relative;
    display: block;
    background: var(--hotelux-white);
    padding: 112px 0px 112px;
  }
  
  .cart-page .table-responsive {
    position: relative;
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  @media(max-width: 1199px) {
    .cart-table {
      min-width: 1170px;
    }
  }
  
  .cart-table {
    margin-bottom: 0px;
  }
  
  .cart-table thead th {
    color: var(--hotelux-black);
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    padding: 0;
    border: none;
    padding-bottom: 22px;
    font-family: var(--hotelux-font-two);
  }
  
  .cart-table thead th:last-child {
    text-align: right;
  }
  
  .cart-table tbody tr {
    vertical-align: middle;
  }
  
  .cart-table tbody tr:last-child {
    border-bottom: 1px solid rgba(var(--hotelux-black-rgb), .10);
  }
  
  .cart-table tbody td {
    font-size: 18px;
    color: var(--hotelux-gray);
    vertical-align: middle;
    border-top: 1px solid rgba(var(--hotelux-black-rgb), .10);
    border-bottom: 1px solid rgba(var(--hotelux-black-rgb), .10);
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
  }
  
  .cart-table tbody td:last-child {
    text-align: right;
  }
  
  .cart-table .product-box {
    display: flex;
    align-items: center;
  }
  
  .cart-table .product-box .img-box {
    position: relative;
    display: block;
    width: 120px;
    border-radius: 0;
    overflow: hidden;
    margin-right: 35px;
  }
  
  .cart-table .product-box .img-box img {
    width: 100%;
    border: 1px solid rgba(var(--hotelux-black-rgb), .10);
  }
  
  .cart-table h3 {
    color: var(--hotelux-black);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
  }
  
  .cart-table h3 a {
    color: var(--hotelux-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
  }
  
  .cart-table h3 a:hover {
    color: var(--hotelux-base);
  }
  
  .cart-table .quantity-box {
    position: relative;
    width: 98px;
    border-radius: 0px;
    height: 50px;
  }
  
  .cart-table .quantity-box input {
    width: 98px;
    height: 50px;
    border: 1px solid rgba(var(--hotelux-black-rgb), .10);
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    font-family: var(--hotelux-font);
    padding-left: 30px;
    outline: none;
    font-size: 18px;
    color: var(--hotelux-gray);
    font-weight: 700;
  }
  
  .cart-table .quantity-box button {
    width: 24px;
    height: 24px;
    background-color: transparent;
    color: var(--thm-black);
    font-size: 8px;
    position: absolute;
    top: 1px;
    right: 1px;
    background-color: #fff;
    border-top-right-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: none;
    border-left: 1px solid rgba(var(--hotelux-black-rgb), .10);
  }
  
  .cart-table .quantity-box button.sub {
    bottom: 1px;
    top: auto;
    border-top: 1px solid rgba(var(--hotelux-black-rgb), .10);
    border-top-right-radius: 0px;
    border-bottom-right-radius: 10px;
  }
  
  .cart-table .cross-icon {
    position: relative;
    display: block;
  }
  
  .cart-table .cross-icon i:before {
    position: relative;
    display: inline-block;
    color: var(--hotelux-black);
    font-size: 16px;
  }
  
  .cart-page__right {
    position: relative;
    display: block;
    margin-left: 20px;
  }
  
  .cart-page__sidebar {
    position: relative;
    display: block;
    padding: 28px 20px 30px;
    background-color: var(--hotelux-white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  }
  
  .cart-page__shipping {
    position: relative;
    display: block;
  }
  
  .cart-page__shipping-title {
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 24px;
    margin-bottom: 20px;
  }
  
  .cart-page__shipping-form {
    position: relative;
    display: block;
  }
  
  .cart-page__shipping-form .row {
    --bs-gutter-x: 20px;
  }
  
  .cart-page__shipping-input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
  }
  
  .cart-page__shipping-input-box .select-box .nice-select {
    background-color: var(--hotelux-primary);
    color: var(--hotelux-gray);
    font-size: 16px;
    font-weight: 400;
    height: 50px;
    line-height: 50px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    margin-bottom: 0px;
  }
  
  .cart-page__shipping-input-box .select-box .nice-select:after {
    position: absolute;
    right: 20px;
  }
  
  .cart-page__shipping-input-box input[type=email],
  .cart-page__shipping-input-box input[type=text] {
    width: 100%;
    height: 50px;
    background-color: var(--hotelux-primary);
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
    color: var(--hotelux-gray);
    font-family: var(--hotelux-font);
    border: none;
    outline: none;
    font-weight: 400;
  }
  
  .cart-page__btn-box {
    position: relative;
    display: block;
  }
  
  .cart-page__btn-box .thm-btn {
    width: 100%;
    border: none;
    justify-content: center;
  }
  
  .cart-page__coupon-code {
    position: relative;
    display: block;
    border-top: 1px solid rgba(var(--hotelux-black-rgb), .10);
    border-bottom: 1px solid rgba(var(--hotelux-black-rgb), .10);
    margin-top: 30px;
    margin-bottom: 20px;
    padding-top: 23px;
    padding-bottom: 30px;
  }
  
  .cart-page__coupon-code-title {
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 24px;
    margin-bottom: 20px;
  }
  
  .cart-page__coupon-code-text {
    margin-bottom: 16px;
  }
  
  .cart-page__coupon-code-form {
    position: relative;
    display: block;
  }
  
  .cart-page__coupon-code-form input[type=email],
  .cart-page__coupon-code-form input[type=text] {
    width: 100%;
    height: 50px;
    background-color: var(--hotelux-primary);
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
    color: var(--hotelux-gray);
    font-family: var(--hotelux-font);
    border: none;
    outline: none;
    font-weight: 400;
  }
  
  .cart-page__coupon-code-form .thm-btn {
    width: 100%;
    border: none;
    justify-content: center;
    margin-top: 20px;
  }
  
  .cart-total {
    position: relative;
    display: block;
    margin-bottom: 20px;
  }
  
  .cart-total li {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: var(--hotelux-gray);
    font-size: 18px;
    font-weight: 500;
  }
  
  .cart-total li+li {
    margin-top: 15px;
  }
  
  .cart-total li span:first-child {
    display: block;
    color: var(--hotelux-black);
    font-size: 18px;
    margin-right: 60px;
    font-weight: 700;
    width: 140px;
    text-align: right;
  }
  
  .cart-total-amount {
    color: var(--hotelux-base);
  }
  
  .cart-page__buttons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
  }
  
  .cart-page__buttons-1 {
    position: relative;
    display: block;
  }
  
  .cart-page__buttons-1 .thm-btn {
    padding: 10px 25px 10px;
  }
  
  .cart-page__buttons-2 {
    position: relative;
    display: block;
  }
  
  .cart-page__buttons-2 .thm-btn {
    padding: 10px 25px 10px;
  }
  
  
  /*--------------------------------------------------------------
    # Checkout
    --------------------------------------------------------------*/
  .checkout-page {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
  }
  
  .checkout-page .billing_details {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--hotelux-black-rgb), .10);
    padding: 53px 50px 60px;
  }
  
  .billing_title {
    position: relative;
    display: block;
    margin-bottom: 45px;
  }
  
  .billing_title p {
    font-size: 16px;
    margin: 0;
  }
  
  .billing_title a {
    color: var(--hotelux-base);
  }
  
  .billing_title h2 {
    font-size: 30px;
    line-height: 30px;
    margin: 0;
    font-weight: 600;
    margin-top: 16px;
  }
  
  .billing_details_form {
    position: relative;
    display: block;
  }
  
  .billing_details_form .bs-gutter-x-20 {
    --bs-gutter-x: 20px;
  }
  
  .billing_details_form .btn-light {
    border: none;
  }
  
  .billing_details_form .btn-light:hover {
    border: none;
  }
  
  .billing_input_box {
    position: relative;
    display: block;
    margin-bottom: 20px;
  }
  
  .billing_input_box input[type="text"],
  .billing_input_box input[type="email"],
  .billing_input_box input[type="tel"] {
    height: 60px;
    width: 100%;
    border: 1px solid rgba(var(--hotelux-black-rgb), .10);
    background-color: var(--hotelux-white);
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 16px;
    color: var(--hotelux-gray);
    display: block;
    font-weight: 400;
  }
  
  .billing_input_box textarea {
    display: block;
    color: var(--hotelux-gray);
    font-size: 16px;
    font-weight: 400;
    height: 140px;
    width: 100%;
    border: 1px solid rgba(var(--hotelux-black-rgb), .10);
    background-color: var(--hotelux-white);
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 13px;
    outline: none;
    resize: none;
  }
  
  .billing_input_box textarea:focus {
    border: 1px solid rgba(var(--hotelux-black-rgb), .10);
  }
  
  .billing_details .checked-box {
    position: relative;
    display: block;
    margin-top: 17px;
  }
  
  .billing_details .checked-box label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--hotelux-gray);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    text-transform: none;
    cursor: pointer;
    font-family: var(--hotelux-font);
  }
  
  .billing_details .checked-box input[type="checkbox"] {
    display: none;
  }
  
  .billing_details .checked-box input[type="checkbox"]+label span {
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    vertical-align: middle;
    background-color: transparent;
    background: var(--hotelux-base);
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border: 0;
  }
  
  .billing_details .checked-box label span:before {
    position: absolute;
    top: 4px;
    left: 6px;
    display: block;
    border-bottom: 2px solid var(--hotelux-white);
    border-right: 2px solid var(--hotelux-white);
    content: '';
    width: 6px;
    height: 9px;
    pointer-events: none;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    opacity: 0;
  }
  
  .billing_details.checked-box input[type="checkbox"]:checked+label span {
    border-color: var(--hotelux-white);
  }
  
  .billing_details .checked-box input[type="checkbox"]:checked+label span:before {
    opacity: 1;
  }
  
  .billing_details_form .select-box .nice-select {
    border: 1px solid rgba(var(--hotelux-black-rgb), .10);
    background-color: var(--hotelux-white);
    color: var(--hotelux-gray);
    font-size: 16px;
    font-weight: 400;
    height: 60px;
    line-height: 60px;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
    margin-bottom: 20px;
  }
  
  .billing_details_form .select-box .nice-select:after {
    position: absolute;
    right: 30px;
  }
  
  .billing_details_form-btns {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 36px;
  }
  
  .billing_details_form-btn-1 {
    position: relative;
    display: block;
  }
  
  .billing_details_form-btn-1 .thm-btn {
    border: none;
  }
  
  .billing_details_form-btn-2 {
    position: relative;
    display: block;
  }
  
  .billing_details_form-btn-2 .thm-btn {
    border: none;
  }
  
  
  .sidebar-order-summary {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--hotelux-black-rgb), .10);
    padding: 37px 30px 45px;
    z-index: 1;
  }
  
  .sidebar-order-summary .title-box {
    position: relative;
    display: block;
    padding-bottom: 3px;
    margin-bottom: 35px;
  }
  
  .sidebar-order-summary .title-box::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--hotelux-base);
    content: "";
  }
  
  .sidebar-order-summary .title-box::after {
    position: absolute;
    left: 37px;
    bottom: 0;
    width: 3px;
    height: 2px;
    background: var(--hotelux-white);
    content: "";
  }
  
  .sidebar-order-summary .title-box h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    text-transform: capitalize;
  }
  
  
  .sidebar-order-summary__list {
    position: relative;
    display: block;
  }
  
  .sidebar-order-summary__list>li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(var(--hotelux-black-rgb), .10);
    padding: 13px 0px 12px;
  }
  
  .sidebar-order-summary__list>li:last-child {
    border-bottom: 1px solid rgba(var(--hotelux-black-rgb), .10);
  }
  
  .sidebar-order-summary__list>li>.left-text {
    position: relative;
    display: block;
  }
  
  .sidebar-order-summary__list>li>.left-text p {
    font-size: 18px;
    margin: 0px;
  }
  
  .sidebar-order-summary__list>li>.right-text {
    position: relative;
    display: block;
  }
  
  .sidebar-order-summary__list>li>.right-text p {
    font-size: 18px;
    margin: 0px;
  }
  
  
  .sidebar-order-summary__list>li>.right-text>ul {
    position: relative;
    display: block;
  }
  
  .sidebar-order-summary__list>li>.right-text>ul>li {
    position: relative;
    display: block;
  }
  
  .sidebar-order-summary__list>li>.right-text>ul>li+li {
    margin-top: 5px;
  }
  
  .sidebar-order-summary__list>li>.right-text>ul>li input[type=radio] {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
  }
  
  .sidebar-order-summary__list>li>.right-text>ul>li label {
    position: relative;
    display: block;
    padding-right: 24px;
    font-size: 18px;
    font-weight: 400;
    text-align: right;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
  }
  
  .sidebar-order-summary__list>li>.right-text>ul>li input[type=radio]+label i {
    position: absolute;
    top: 6px;
    right: 0;
    width: 15px;
    height: 15px;
    overflow: hidden;
    border: 1px solid var(--hotelux-gray);
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
  }
  
  .sidebar-order-summary__list>li>.right-text>ul>li label i::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    transform: scale(0);
    background-color: var(--hotelux-base);
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
  }
  
  .sidebar-order-summary__list>li>.right-text>ul>li input[type=radio]:checked+label i {
    border-color: var(--hotelux-base);
  }
  
  .sidebar-order-summary__list>li>.right-text>ul>li input[type=radio]:checked+label i::before {
    transform: scale(1.0);
  }
  
  
  .sidebar-order-summary__Payment {
    position: relative;
    display: block;
    margin-top: 37px;
  }
  
  .checkout__payment {
    position: relative;
    margin-bottom: 30px;
  }
  
  .checkout__payment__item+.checkout__payment__item {
    margin-top: 23px;
  }
  
  .checkout__payment__title {
    display: flex;
    color: var(--hotelux-black);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    align-items: center;
    cursor: pointer;
  }
  
  .checkout__payment__title::before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: var(--hotelux-white);
    border: 2px solid rgba(var(--hotelux-black-rgb), .10);
    border-radius: 50%;
    margin-right: 10px;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
    font-size: 10px;
    color: var(--hotelux-white);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    position: relative;
    top: 0px;
    transition: all 500ms ease;
  }
  
  .checkout__payment__item--active .checkout__payment__title::before {
    background-color: var(--hotelux-base);
    border-color: var(--hotelux-base);
    content: '\f00c';
  }
  
  .checkout__payment__content {
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 30px;
    color: var(--hotelux-gray);
    font-weight: 400;
    margin-top: 15px;
  }
  
  .sidebar-order-summary__bottom {
    position: relative;
    display: block;
  }
  
  .sidebar-order-summary__bottom .text1 {
    margin-bottom: 0;
  }
  
  .sidebar-order-summary__bottom .text1 a {
    color: var(--hotelux-base);
    text-decoration: underline;
  }
  
  
  
  
  
  
  
  .sidebar-order-summary__checked {
    position: relative;
    display: block;
    margin-top: 20px;
    ;
  }
  
  .sidebar-order-summary__checked label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--hotelux-gray);
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    text-transform: none;
    cursor: pointer;
    font-family: var(--hotelux-font);
  }
  
  .sidebar-order-summary__checked label a {
    color: var(--hotelux-base);
  }
  
  .sidebar-order-summary__checked input[type="checkbox"] {
    display: none;
  }
  
  .sidebar-order-summary__checked input[type="checkbox"]+label span {
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    vertical-align: middle;
    background-color: transparent;
    background: var(--hotelux-base);
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border: 0;
  }
  
  .sidebar-order-summary__checked label span:before {
    position: absolute;
    top: 4px;
    left: 6px;
    display: block;
    border-bottom: 2px solid var(--hotelux-white);
    border-right: 2px solid var(--hotelux-white);
    content: '';
    width: 6px;
    height: 9px;
    pointer-events: none;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    opacity: 0;
  }
  
  .sidebar-order-summary__checked input[type="checkbox"]:checked+label span {
    border-color: var(--hotelux-white);
  }
  
  .sidebar-order-summary__checked input[type="checkbox"]:checked+label span:before {
    opacity: 1;
  }
  
  .sidebar-order-summary__btn {
    position: relative;
    display: block;
    margin-top: 27px;
    line-height: 0px;
  }
  
  
  
  /*--------------------------------------------------------------
  # Wishlist Page
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
    # Cart Page
    --------------------------------------------------------------*/
  .wishlist-page {
    position: relative;
    display: block;
    background: var(--hotelux-white);
    padding: 120px 0px 120px;
  }
  
  .wishlist-page .table-responsive {
    position: relative;
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  @media(max-width: 1199px) {
    .wishlist-table {
      min-width: 1170px;
    }
  }
  
  .wishlist-table {
    margin-bottom: 0px;
  }
  
  .wishlist-table thead th {
    color: var(--hotelux-black);
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    padding: 0;
    border: none;
    border-top: 1px solid rgba(var(--hotelux-black-rgb), .10);
    padding-top: 22px;
    padding-bottom: 22px;
    font-family: var(--hotelux-font-two);
    text-align: center;
  }
  
  .wishlist-table tbody tr {
    vertical-align: middle;
  }
  
  .wishlist-table tbody tr:last-child {
    border-bottom: 1px solid rgba(var(--hotelux-black-rgb), .10);
  }
  
  .wishlist-table tbody td {
    font-size: 18px;
    color: var(--hotelux-gray);
    vertical-align: middle;
    border-top: 1px solid rgba(var(--hotelux-black-rgb), .10);
    border-bottom: 1px solid rgba(var(--hotelux-black-rgb), .10);
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
  }
  
  .wishlist-table .product-box {
    display: flex;
    align-items: center;
  }
  
  .wishlist-table .cross-icon {
    position: relative;
    display: block;
  }
  
  .wishlist-table .cross-icon i:before {
    position: relative;
    display: inline-block;
    color: var(--hotelux-black);
    font-size: 16px;
  }
  
  .wishlist-table .product-box .img-box {
    position: relative;
    display: block;
    width: 120px;
    border-radius: 0;
    overflow: hidden;
    margin-left: 35px;
    margin-right: 35px;
  }
  
  .wishlist-table .product-box .img-box img {
    width: 100%;
    border: 1px solid rgba(var(--hotelux-black-rgb), .10);
  }
  
  .wishlist-table h3 {
    color: var(--hotelux-black);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
  }
  
  .wishlist-table h3 a {
    color: var(--hotelux-black);
    transition: all 200ms linear;
    transition-delay: 0.1s;
  }
  
  .wishlist-table h3 a:hover {
    color: var(--hotelux-base);
  }
  
  
  .product-details__social.two {
    margin-top: 42px;
  }
  
  /*--------------------------------------------------------------
  # Sign Up One
  --------------------------------------------------------------*/
  .sign-up-one {
    position: relative;
    display: block;
    background-color: var(--hotelux-white);
    padding: 111px 0px 120px;
    z-index: 1;
  }
  
  .sign-up-one .container {
    max-width: 620px;
  }
  
  .sign-up-one__form {
    position: relative;
    display: block;
  }
  
  .sign-up-one__form .inner-title {
    position: relative;
    display: block;
    padding-bottom: 60px;
  }
  
  .sign-up-one__form .inner-title h2 {
    font-size: 60px;
    line-height: 1.0em;
    font-weight: 600;
    text-transform: capitalize;
  }
  
  .sign-up-one__form form {
    position: relative;
    display: block;
    background-color: var(--hotelux-white);
    box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.06);
    padding: 60px 50px 52px;
  }
  
  .sign-up-one__form form .form-group {
    position: relative;
    display: block;
    margin-bottom: 20px;
  }
  
  .sign-up-one__form form .input-box {
    position: relative;
    display: block;
  }
  
  .sign-up-one__form form input[type="text"],
  .sign-up-one__form form input[type="email"] {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--hotelux-black-rgb), .10);
    background-color: var(--hotelux-primary);
    width: 100%;
    height: 60px;
    color: var(--hotelux-black);
    font-size: 16px;
    font-family: var(--hotelux-font);
    font-weight: 400;
    font-style: normal;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    transition: all 500ms ease;
  }
  
  .sign-up-one__form form input[type="text"]:focus,
  .sign-up-one__form form input[type="email"]:focus {
    border-color: var(--hotelux-base);
    background-color: var(--hotelux-white);
  }
  
  .sign-up-one__form form input[type="text"]::-webkit-input-placeholder {
    color: var(--hotelux-gray);
  }
  
  .sign-up-one__form form input[type="text"]:-moz-placeholder {
    color: var(--hotelux-gray);
  }
  
  .sign-up-one__form form input[type="text"]::-moz-placeholder {
    color: var(--hotelux-gray);
  }
  
  .sign-up-one__form form input[type="text"]:-ms-input-placeholder {
    color: var(--hotelux-gray);
  }
  
  .sign-up-one__form form input[type="email"]::-webkit-input-placeholder {
    color: var(--hotelux-gray);
  }
  
  .sign-up-one__form form input[type="email"]:-moz-placeholder {
    color: var(--hotelux-gray);
  }
  
  .sign-up-one__form form input[type="email"]::-moz-placeholder {
    color: var(--hotelux-gray);
  }
  
  .sign-up-one__form form input[type="email"]:-ms-input-placeholder {
    color: var(--hotelux-gray);
  }
  
  .sign-up-one__form form .thm-btn {
    width: 100%;
    justify-content: center;
    border: none;
  }
  
  .sign-up-one__form form .google-facebook {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 10px;
  }
  
  .sign-up-one__form form .google-facebook a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--hotelux-gray);
    background-color: var(--hotelux-white);
    color: var(--hotelux-black);
    font-size: 16px;
    line-height: 28px;
    font-family: var(--hotelux-font);
    font-weight: 500;
    padding: 10px 10px 10px;
    letter-spacing: -0.01em;
    transition: all 200ms linear;
    transition-delay: 0.1s;
  }
  
  .sign-up-one__form form .google-facebook a:hover {
    border: 1px solid var(--hotelux-base);
    background-color: var(--hotelux-white);
  }
  
  .sign-up-one__form form .google-facebook a+a {
    margin-left: 14px;
  }
  
  .sign-up-one__form form .google-facebook a .icon {
    position: relative;
    display: block;
    line-height: 0;
    margin-right: 10px;
  }
  
  .sign-up-one__form form .create-account {
    position: relative;
    display: block;
    padding-top: 22px;
  }
  
  .sign-up-one__form form .create-account p {
    margin: 0;
  }
  
  .sign-up-one__form form .create-account p a {
    font-weight: 500;
  }
  
  .sign-up-one__form form .create-account p a:hover {
    color: var(--hotelux-base);
  }
  
  
  
  /*--------------------------------------------------------------
  # Login One
  --------------------------------------------------------------*/
  .login-one {
    position: relative;
    display: block;
    background-color: var(--hotelux-white);
    padding: 112px 0px 120px;
    z-index: 1;
  }
  
  .login-one .container {
    max-width: 620px;
  }
  
  .login-one__form {
    position: relative;
    display: block;
  }
  
  .login-one__form .inner-title {
    position: relative;
    display: block;
    padding-bottom: 60px;
  }
  
  .login-one__form .inner-title h2 {
    font-size: 60px;
    line-height: 1.0em;
    font-weight: 600;
    text-transform: capitalize;
  }
  
  .login-one__form form {
    position: relative;
    display: block;
    background-color: var(--hotelux-white);
    box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.06);
    padding: 60px 50px 52px;
  }
  
  .login-one__form form .form-group {
    position: relative;
    display: block;
    margin-bottom: 20px;
  }
  
  .login-one__form form .input-box {
    position: relative;
    display: block;
  }
  
  .login-one__form form input[type="text"],
  .login-one__form form input[type="email"] {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--hotelux-black-rgb), .10);
    background-color: var(--hotelux-primary);
    width: 100%;
    height: 60px;
    color: var(--hotelux-black);
    font-size: 16px;
    font-family: var(--hotelux-font);
    font-weight: 400;
    font-style: normal;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    transition: all 500ms ease;
  }
  
  .login-one__form form input[type="text"]:focus,
  .login-one__form form input[type="email"]:focus {
    border-color: var(--hotelux-base);
    background-color: var(--hotelux-white);
  }
  
  .login-one__form form input[type="text"]::-webkit-input-placeholder {
    color: var(--hotelux-gray);
  }
  
  .login-one__form form input[type="text"]:-moz-placeholder {
    color: var(--hotelux-gray);
  }
  
  .login-one__form form input[type="text"]::-moz-placeholder {
    color: var(--hotelux-gray);
  }
  
  .login-one__form form input[type="text"]:-ms-input-placeholder {
    color: var(--hotelux-gray);
  }
  
  .login-one__form form input[type="email"]::-webkit-input-placeholder {
    color: var(--hotelux-gray);
  }
  
  .login-one__form form input[type="email"]:-moz-placeholder {
    color: var(--hotelux-gray);
  }
  
  .login-one__form form input[type="email"]::-moz-placeholder {
    color: var(--hotelux-gray);
  }
  
  .login-one__form form input[type="email"]:-ms-input-placeholder {
    color: var(--hotelux-gray);
  }
  
  .login-one__form form .thm-btn {
    width: 100%;
    justify-content: center;
    border: none;
  }
  
  .login-one__form form .remember-forget {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
  }
  
  
  .login-one__form form .checked-box1 {
    position: relative;
    display: block;
    min-height: 26px;
  }
  
  .login-one__form form .checked-box1 input[type="checkbox"] {
    display: none;
  }
  
  .login-one__form form .checked-box1 label {
    position: relative;
    display: inline-block;
    padding-left: 25px;
    color: var(--hotelux-gray);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    cursor: pointer;
    font-family: var(--hotelux-font);
  }
  
  .login-one__form form .checked-box1 input[type="checkbox"]+label span {
    position: absolute;
    display: block;
    top: 5px;
    left: 0;
    width: 16px;
    height: 16px;
    background-color: transparent;
    border: 1px solid #e3e4ea;
    cursor: pointer;
    border-radius: 4px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  
  .login-one__form form .checked-box1 label span:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 0;
    content: "";
    width: 8px;
    height: 8px;
    background: var(--hotelux-base);
    border-radius: 2px;
    margin: 3px auto 0px;
    transform: scale(0);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  
  .login-one__form form .checked-box1 input[type="checkbox"]:checked+label span {
    border-color: var(--hotelux-base);
  }
  
  .login-one__form form .checked-box1 input[type="checkbox"]:checked+label span:before {
    transform: scale(1.0);
  }
  
  
  .login-one__form form .forget {
    position: relative;
    display: block;
  }
  
  .login-one__form form .forget a {
    color: var(--hotelux-black);
    font-size: 16px;
    line-height: 26px;
    font-family: var(--hotelux-font);
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
  }
  
  .login-one__form form .forget a:hover {
    color: var(--hotelux-base);
  }
  
  .login-one__form form .create-account {
    position: relative;
    display: block;
    padding-top: 25px;
  }
  
  .login-one__form form .create-account p {
    color: var(--hotelux-black);
  }
  
  .login-one__form form .create-account p a {
    color: var(--hotelux-base);
    font-weight: 500;
  }
  
  
  /*==============================================
      Sliding Text
  ===============================================*/
  .sliding-text {
    position: relative;
    display: block;
    padding: 20px 0 50px;
    z-index: 3;
  }
  
  .sliding-text__inner {
    position: relative;
    display: block;
    background-color: var(--hotelux-black);
    padding: 35px 0 35px;
    z-index: 1;
  }
  
  .sliding-text__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .20;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  
  .sliding-text__list {
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    flex-wrap: nowrap;
  }
  
  .sliding-text__list li {
    position: relative;
    display: flex;
    align-items: center;
    float: left;
    gap: 20px;
  }
  
  .sliding-text__list li+li {
    margin-left: 20px;
  }
  
  .sliding-text__list li .icon {
    position: relative;
    display: block;
    top: 4px;
  }
  
  .sliding-text__list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 24px;
    color: var(--hotelux-white);
  }
  
  .sliding-text__list li>p {
    font-size: 30px;
    font-weight: 600;
    line-height: 30px;
    color: var(--hotelux-white);
    font-family: var(--hotelux-font-two);
    text-transform: capitalize;
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  /*==============================================
     Our Spa
  ===============================================*/
  .our-spa {
    position: relative;
    display: block;
    padding: 120px 0 112px;
    z-index: 1;
  }
  
  .our-spa__inner {
    position: relative;
    display: block;
  }
  
  .our-spa__main-tab-box {
    position: relative;
    display: block;
  }
  
  .our-spa__main-tab-box .tab-buttons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .our-spa__main-tab-box .tab-buttons .tab-btn {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .our-spa__main-tab-box .tab-buttons .tab-btn .our-spa__main-tab-img {
    position: relative;
    display: block;
    max-width: 215px;
    width: 100%;
    cursor: pointer;
    z-index: 15;
  }
  
  .our-spa__main-tab-box .tab-buttons .tab-btn .our-spa__main-tab-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #191628;
    background: linear-gradient(180deg, rgba(25, 22, 40, 0) 24%, rgba(25, 22, 40, 1) 100%);
  }
  
  .our-spa__main-tab-box .tab-buttons .tab-btn .our-spa__main-tab-img img {
    width: 100%;
  }
  
  .our-spa__main-tab-tag {
    position: absolute;
    bottom: 12px;
    left: 10px;
    right: 10px;
    text-align: center;
    z-index: 2;
  }
  
  .our-spa__main-tab-tag span {
    font-weight: 600;
    font-family: var(--hotelux-font-two);
    color: var(--hotelux-white);
  }
  
  .our-spa__main-tab-box .tabs-content {
    position: relative;
    display: block;
    margin-bottom: 50px;
  }
  
  .our-spa__main-tab-box .tabs-content .tab {
    position: relative;
    display: none;
    -webkit-transform: translateX(35px);
    -ms-transform: translateX(35px);
    transform: translateX(35px);
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
  }
  
  .our-spa__main-tab-box .tabs-content .tab.active-tab {
    display: block;
    margin-top: 0px;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
  
  .our-spa__single {
    position: relative;
    display: flex;
    align-items: flex-start;
    border: 1px solid rgba(var(--hotelux-black-rgb), .15);
    padding: 50px 50px 50px;
    gap: 30px;
  }
  
  .our-spa__img-box {
    position: relative;
    display: block;
  }
  
  .our-spa__img {
    position: relative;
    display: block;
    max-width: 735px;
    width: 100%;
  }
  
  .our-spa__img img {
    width: 100%;
  }
  
  .our-spa__content {
    position: relative;
    display: block;
    flex: 1;
  }
  
  .our-spa__title {
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
  }
  
  .our-spa__title a {
    color: var(--hotelux-black);
  }
  
  .our-spa__text {
    margin: 20px 0 20px;
  }
  
  .our-spa__time {
    font-weight: 500;
  }
  
  .our-spa__time span {
    font-weight: 600;
    color: var(--hotelux-black);
  }
  
  .our-spa__points {
    position: relative;
    display: block;
    margin-bottom: 20px;
  }
  
  .our-spa__points li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .our-spa__points li+li {
    margin-top: 7px;
  }
  
  .our-spa__points li .icon {
    position: relative;
    display: inline-block;
  }
  
  .our-spa__points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--hotelux-base);
  }
  
  .our-spa__call {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
  }
  
  .our-spa__call a {
    font-weight: 500;
    color: var(--hotelux-gray);
  }
  
  .our-spa__call a:hover {
    color: var(--hotelux-base);
  }
  
  .our-spa__call span {
    font-weight: 600;
    color: var(--hotelux-black);
  }
  
  .our-spa__bottom {
    position: relative;
    display: block;
    border-top: 1px solid rgba(var(--hotelux-black-rgb), .10);
    padding-top: 50px;
    margin-top: 80px;
  }
  
  .our-spa__bottom-left {
    position: relative;
    display: block;
  }
  
  .our-spa__bottom-text-2 {
    margin: 30px 0 35px;
  }
  
  .our-spa__bottom-right {
    position: relative;
    display: block;
    margin-left: 70px;
  }
  
  .our-spa__bottom-img {
    position: relative;
    display: block;
  }
  
  .our-spa__bottom-img img {
    width: 100%;
  }
  
  /*==============================================
     Team One
  ===============================================*/
  .team-one {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
  }
  
  .team-three__bg-color {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    clip-path: polygon(83% 7%, 100% 15%, 100% 100%, 0% 100%);
    background: linear-gradient(0deg, rgba(185, 156, 135, 0) 24%, rgba(185, 156, 135, .10) 100%);
  }
  
  .team-three__shape-1 {
    position: absolute;
    bottom: 0;
    left: -45px;
    transform: rotate(45deg);
    opacity: 0.05;
    z-index: -1;
  }
  
  .team-three__shape-1 img {
    width: auto;
  }
  
  .team-one__single {
    position: relative;
    display: block;
    margin-bottom: 22px;
  }
  
  .team-one__img-box {
    position: relative;
    display: block;
  }
  
  .team-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
  }
  
  .team-one__img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--hotelux-black-rgb), .80);
    opacity: 0;
    transform: translateY(-50%);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
  }
  
  .team-one__single:hover .team-one__img::after {
    opacity: 1;
    transform: translateY(0%);
  }
  
  .team-one__img img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
  }
  
  .team-one__single:hover .team-one__img img {
    transform: scale(1.05) rotate(0deg);
  }
  
  .team-one__content {
    position: relative;
    display: block;
    text-align: center;
    padding: 20px 0 0;
  }
  
  .team-one__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 4px;
  }
  
  .team-one__title a {
    color: var(--hotelux-black);
  }
  
  .team-one__title a:hover {
    color: var(--hotelux-base);
  }
  
  .team-one__social {
    position: absolute;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    justify-content: center;
    bottom: 20px;
    left: 0;
    right: 0;
    opacity: 0;
    gap: 10px;
    transform: translateY(50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: 2;
  }
  
  .team-one__single:hover .team-one__social {
    opacity: 1;
    transform: translateY(0px);
    transition-delay: 300ms;
  }
  
  .team-one__social a {
    position: relative;
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--hotelux-base);
    font-size: 15px;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid var(--hotelux-base);
    z-index: 1;
  }
  
  .team-one__social a:hover {
    color: var(--hotelux-white);
    background-color: var(--hotelux-base);
  }
  
  .team-one__social a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--hotelux-base);
    border-radius: 0%;
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
  }
  
  .team-one__social a:hover:before {
    transform: scaleX(1);
  }
  
  /*==============================================
      Team Two
  ===============================================*/
  .team-two {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
  }
  
  .team-two__bg-shape-1 {
    position: absolute;
    top: -100px;
    right: 100px;
    opacity: 0.03;
    z-index: -1;
  }
  
  .team-two__bg-shape-1 img {
    width: auto;
  }
  
  .team-two__single {
    position: relative;
    display: block;
    background-color: var(--hotelux-white);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 8%);
    margin-bottom: 30px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .team-two__single:hover {
    transform: translateY(-10px);
  }
  
  .team-two__img-box {
    position: relative;
    display: block;
  }
  
  .team-two__img {
    position: relative;
    display: block;
    overflow: hidden;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='300' height='320' viewBox='0 0 300 320'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='300' height='320'/%3E%3C/svg%3E");
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='300' height='320' viewBox='0 0 300 320'%3E%3Cimage xlink:href='data:image/png;base64,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' x='0' y='0' width='300' height='320'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-size: cover;
    mask-size: cover;
    z-index: 1;
  }
  
  .team-two__img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(34, 34, 34, .85);
    opacity: 0;
    transform: translateY(-50%);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
  }
  
  .team-two__single:hover .team-two__img::after {
    opacity: 1;
    transform: translateY(0%);
  }
  
  .team-two__img img {
    width: 100%;
    transition: all 500ms ease;
  }
  
  .team-two__single:hover .team-two__img img {
    transform: scaleX(1.05);
    transition-delay: 700ms;
  }
  
  .team-two__social {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    bottom: 20px;
    left: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: 2;
  }
  
  .team-two__single:hover .team-two__social {
    opacity: 1;
    transform: translateY(0px);
    transition-delay: 700ms;
  }
  
  .team-two__social a {
    position: relative;
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--hotelux-white);
    font-size: 15px;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid rgba(var(--hotelux-white-rgb), .50);
    z-index: 1;
  }
  
  .team-two__social a:hover {
    color: var(--hotelux-white);
    border: 1px solid var(--hotelux-base);
  }
  
  .team-two__social a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--hotelux-base);
    border-radius: 0%;
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
  }
  
  .team-two__social a:hover:before {
    transform: scaleX(1);
  }
  
  .team-two__social a+a {
    margin-top: 15px;
  }
  
  .team-two__content {
    position: relative;
    display: block;
    text-align: center;
    padding: 30px 20px 30px;
    border-bottom: 5px solid var(--hotelux-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .team-two__single:hover .team-two__content {
    border-bottom: 5px solid var(--hotelux-black);
  }
  
  .team-two__name {
    font-size: 24px;
    line-height: 1em;
    font-weight: 600;
    margin-bottom: 5px;
  }
  
  .team-two__name a {
    color: var(--hotelux-black);
  }
  
  .team-two__name a:hover {
    color: var(--hotelux-base);
  }
  
  
  /*--------------------------------------------------------------
  # Team Three
  --------------------------------------------------------------*/
  .team-three {
    position: relative;
    display: block;
    padding: 90px 0 0px;
    z-index: 1;
  }
  
  .team-three__carousel {
    position: relative;
    display: block;
  }
  
  .team-three__single {
    position: relative;
    display: block;
    background: linear-gradient(180deg, #FFFFFF 0%, #f1f1f1 100%);
    border: 1px solid rgba(var(--hotelux-black-rgb), 0.05);
    padding: 70px 30px 20px;
    margin-bottom: 30px;
    overflow: hidden;
    z-index: 1;
  }
  
  .team-three__img-1 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
  }
  
  .team-three__img-1 img {
    width: auto;
  }
  
  .team-three__content {
    position: relative;
    display: block;
    margin-bottom: 264px;
    z-index: 3;
  }
  
  .team-three__sub-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    font-family: var(--hotelux-font-two);
    font-style: italic;
  }
  
  .team-three__name {
    font-size: 30px;
    font-weight: 600;
    line-height: 35px;
    margin-top: 9px;
  }
  
  .team-three__name span {
    font-weight: 400;
  }
  
  .team-three__name a {
    color: var(--hotelux-black);
  }
  
  .team-three__name a:hover {
    color: var(--hotelux-base);
  }
  
  .team-three__social-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .team-three__plus {
    position: relative;
    display: block;
  }
  
  .team-three__plus span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--hotelux-base);
    font-size: 16px;
    color: var(--hotelux-white);
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .team-three__plus span:hover {
    background-color: var(--hotelux-black);
  }
  
  .team-three__social-list {
    position: absolute;
    display: flex;
    align-items: center;
    flex-direction: column;
    top: -180px;
    left: 0;
    gap: 5px;
    z-index: 2;
  }
  
  .team-three__social-list a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 16px;
    color: var(--hotelux-white);
    background-color: var(--hotelux-base);
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  
  .team-three__plus:hover .team-three__social-list a {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  
  .team-three__plus:hover .team-three__social-list a:nth-child(1) {
    -webkit-transition-delay: 400ms;
    transition-delay: 400ms;
  }
  
  .team-three__plus:hover .team-three__social-list a:nth-child(2) {
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
  }
  
  .team-three__plus:hover .team-three__social-list a:nth-child(3) {
    -webkit-transition-delay: 200ms;
    transition-delay: 200ms;
  }
  
  .team-three__plus:hover .team-three__social-list a:nth-child(4) {
    -webkit-transition-delay: 100ms;
    transition-delay: 100ms;
  }
  
  .team-three__social-list a:hover {
    background-color: var(--hotelux-black);
    color: var(--hotelux-base);
  }
  
  
  /*==============================================
      Team Page
  ===============================================*/
  .team-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
  }
  
  /*--------------------------------------------------------------
  # Team Details
  --------------------------------------------------------------*/
  .team-details {
    position: relative;
    display: block;
    padding: 120px 0 108px;
    z-index: 1;
  }
  
  .team-details__top {
    position: relative;
    display: block;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(var(--hotelux-black-rgb), .10);
    margin-bottom: 37px;
  }
  
  .team-details__top-left {
    position: relative;
    display: block;
  }
  
  .team-details__img-1 {
    position: relative;
    display: block;
  }
  
  .team-details__img-1 img {
    width: 100%;
    border-radius: 20px;
  }
  
  .team-details__top-right {
    position: relative;
    display: block;
    margin-left: 30px;
    margin-top: -12px;
  }
  
  .team-details__client-box {
    position: relative;
    display: block;
  }
  
  .team-details__client-name {
    font-size: 32px;
    font-weight: 600;
    line-height: 42px;
    text-transform: capitalize;
  }
  
  .team-details__client-sub-title {
    position: relative;
    display: block;
    margin-top: 3px;
  }
  
  .team-details__social {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 19px;
    margin-bottom: 30px;
  }
  
  .team-details__social a {
    position: relative;
    height: 40px;
    width: 40px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: var(--hotelux-base);
    font-size: 16px;
    border-radius: var(--hotelux-bdr-radius);
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: 1px solid var(--hotelux-base);
    z-index: 1;
  }
  
  .team-details__social a:hover {
    color: var(--hotelux-white);
    border: 1px solid var(--hotelux-base);
  }
  
  .team-details__social a:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: var(--hotelux-base);
    border-radius: 0%;
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
  }
  
  .team-details__social a:hover:before {
    transform: scaleX(1);
  }
  
  .team-details__social a+a {
    margin-left: 10px;
  }
  
  .team-details__client-address {
    position: relative;
    display: block;
    border-top: 1px solid var(--hotelux-bdr-color);
    margin-top: 20px;
    padding-top: 20px;
  }
  
  .team-details__client-address li {
    position: relative;
    display: block;
  }
  
  .team-details__client-address li+li {
    margin-top: 16px;
  }
  
  .team-details__client-address li p {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--hotelux-black);
  }
  
  .team-details__client-address li p span {
    color: var(--hotelux-base);
  }
  
  .team-details__client-address li h5 {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    margin-top: 5px;
    font-family: var(--hotelux-font);
  }
  
  .team-details__client-address li h5 a {
    color: var(--hotelux-black);
  }
  
  .team-details__client-address li h5 a:hover {
    color: var(--hotelux-base);
  }
  
  .team-details__bottom {
    position: relative;
    display: block;
  }
  
  .team-details__bottom-left {
    position: relative;
    display: block;
  }
  
  .team-details__bottom-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 42px;
    margin-bottom: 13px;
  }
  
  .team-details__practice-area {
    position: relative;
    display: block;
    margin-top: 15px;
  }
  
  .team-details__practice-area-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
  }
  
  .team-details__practice-area-list-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
  }
  
  .team-details__practice-area-list {
    position: relative;
    display: block;
  }
  
  .team-details__practice-area-list li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .team-details__practice-area-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 6px;
    width: 6px;
    background-color: var(--hotelux-base);
  }
  
  .team-details__practice-area-list li .text {
    position: relative;
    display: block;
    flex: 1;
  }
  
  .team-details__practice-area-list li .text p {
    font-weight: 500;
    color: var(--hotelux-base);
  }
  
  
  .team-details__bottom-right {
    position: relative;
    display: block;
  }
  
  .team-details__progress-title-1 {
    font-size: 32px;
    font-weight: 600;
    line-height: 42px;
    margin-bottom: 23px;
  }
  
  .team-details__progress-list {
    position: relative;
    display: block;
  }
  
  .team-details__progress-list li {
    position: relative;
    display: block;
  }
  
  .team-details__progress-list li+li {
    margin-top: 20px;
  }
  
  .team-details__progress {
    position: relative;
    display: block;
  }
  
  .team-details__progress-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: var(--hotelux-black);
    margin-bottom: 11px;
  }
  
  .team-details__progress .bar {
    position: relative;
    width: 100%;
    height: 10px;
    background-color: var(--hotelux-primary);
  }
  
  .team-details__progress .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 10px;
    background-color: var(--hotelux-base);
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
  }
  
  .team-details__progress .count-text {
    position: absolute;
    right: -18px;
    bottom: 22px;
    color: var(--hotelux-black);
    line-height: 26px;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    font-family: var(--hotelux-font);
    opacity: 0;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .team-details__progress .bar-inner.counted .count-text {
    opacity: 1;
  }
  
  .team-details__progress .bar.marb-0 {
    margin-bottom: 0;
  }
  
  /*--------------------------------------------------------------
  # Team Details Contact
  --------------------------------------------------------------*/
  .team-details-contact {
    position: relative;
    display: block;
    padding: 0px 0 120px;
    z-index: 1;
  }
  
  .team-details-contact .container {
    max-width: 830px;
  }
  
  .team-details-contact__inner {
    position: relative;
    display: block;
    text-align: center;
  }
  
  .team-details-contact__form {
    position: relative;
    display: block;
  }
  
  .team-details-contact__input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
  }
  
  .team-details-contact__input-box input[type="text"],
  .team-details-contact__input-box input[type="email"] {
    height: 60px;
    width: 100%;
    background-color: transparent;
    border: 1px solid Rgba(var(--hotelux-black-rgb), .15);
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: var(--hotelux-gray);
    display: block;
  }
  
  .team-details-contact__input-box textarea {
    height: 200px;
    width: 100%;
    background-color: transparent;
    border: 1px solid Rgba(var(--hotelux-black-rgb), .15);
    padding: 15px 30px 30px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: var(--hotelux-gray);
    position: relative;
    display: block;
  }
  
  .team-details-contact__input-box.text-message-box {
    height: 200px;
  }
  
  .team-details-contact__btn-box {
    position: relative;
    display: block;
  }
  
  .team-details-contact__btn-box .thm-btn {
    border: none;
  }
  
  /*==============================================
    Testimonial One
  ===============================================*/
  .testimonial-one {
    position: relative;
    display: block;
    padding: 90px 0 120px;
    z-index: 1;
  }
  
  .testimonial-one__wrap {
    position: relative;
    display: block;
  }
  
  .testimonial-one__carousel {
    position: relative;
    display: block;
  }
  
  .testimonial-one__single {
    position: relative;
    display: block;
    background-color: var(--hotelux-primary);
    padding: 30px 30px 32px;
    border: 1px solid rgba(var(--hotelux-base-rgb), .10);
    z-index: 1;
  }
  
  .testimonial-one__single-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .50;
    mix-blend-mode: plus-lighter;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  
  .testimonial-one__img-and-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .testimonial-one__img {
    position: relative;
    display: block;
    max-width: 100px;
    width: 100%;
  }
  
  .testimonial-one__img img {
    width: 100%;
  }
  
  .testimonial-one__content {
    position: relative;
    display: block;
    flex: 1;
  }
  
  .testimonial-one__name {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
  }
  
  .testimonial-one__name a {
    color: var(--hotelux-black);
  }
  
  .testimonial-one__name a:hover {
    color: var(--hotelux-base);
  }
  
  .testimonial-one__sub-title {
    margin: 2px 0 7px;
    position: relative;
    display: inline-block;
  }
  
  .testimonial-one__ratting {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .testimonial-one__ratting span {
    font-size: 16px;
    color: var(--hotelux-base);
  }
  
  .testimonial-one__text {
    margin-top: 20px;
  }
  
  .testimonial-one__quote {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 2;
  }
  
  .testimonial-one__quote span {
    position: relative;
    display: inline-block;
    font-size: 50px;
    color: rgba(var(--hotelux-base-rgb), .30);
  }
  
  .testimonial-one__nav {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 75px;
    right: 0;
  }
  
  .testimonial-one__nav .swiper-button-prev1,
  .testimonial-one__nav .swiper-button-next1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 0;
    color: var(--hotelux-white);
    background-color: var(--hotelux-base);
    font-size: 16px;
    margin: 0px 0px;
    text-align: center;
    transition: all 500ms ease;
    z-index: 100;
  }
  
  .testimonial-one__nav .swiper-button-prev1:hover,
  .testimonial-one__nav .swiper-button-next1:hover {
    color: var(--hotelux-white);
    background-color: var(--hotelux-black);
  }
  
  .testimonial-one__nav .swiper-button-next1 {
    margin-right: 10px;
  }
  
  /*==============================================
      Testimonial Two
  ===============================================*/
  .testimonial-two {
    position: relative;
    display: block;
    padding: 120px 0 0;
    z-index: 1;
  }
  
  .testimonial-two__shape-1 {
    position: absolute;
    left: 0;
    top: -50px;
    border-top: 400px solid transparent;
    border-left: 300px solid var(--hotelux-primary);
    border-bottom: 200px solid transparent;
    opacity: .80;
  }
  
  .testimonial-two__shape-1::before {
    content: "";
    position: absolute;
    left: -300px;
    top: -440px;
    border-top: 550px solid transparent;
    border-left: 536px solid var(--hotelux-primary);
    border-bottom: 371px solid transparent;
    opacity: .50;
    z-index: -1;
  }
  
  .testimonial-two__carousel {
    position: relative;
    display: block;
    background-color: var(--hotelux-primary);
  }
  
  .testimonial-two__single {
    position: relative;
    display: block;
    padding: 50px 50px 50px;
  }
  
  .testimonial-two__img-and-ratting {
    opacity: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(var(--hotelux-base-rgb), .50);
    padding-bottom: 20px;
    margin-bottom: 20px;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-transition: 1s cubic-bezier(0.61, -0.63, 0.46, 1.48);
    transition: 1s cubic-bezier(0.61, -0.63, 0.46, 1.48);
  }
  
  .swiper-slide-active .testimonial-two__img-and-ratting {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  
  .testimonial-two__img-and-name {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .testimonial-two__ratting {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .testimonial-two__ratting span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--hotelux-base);
  }
  
  .testimonial-two__img {
    position: relative;
    display: block;
    max-width: 80px;
    width: 100%;
  }
  
  .testimonial-two__img img {
    width: 100%;
    border-radius: 50%;
    border: 1px solid rgba(var(--hotelux-base-rgb), .30);
  }
  
  .testimonial-two__name-box {
    position: relative;
    display: block;
    flex: 1;
  }
  
  .testimonial-two__name {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
  }
  
  .testimonial-two__name a {
    color: var(--hotelux-black);
  }
  
  .testimonial-two__name a:hover {
    color: var(--hotelux-base);
  }
  
  .testimonial-two__sub-title {
    margin-top: 3px;
  }
  
  .testimonial-two__text {
    opacity: 0;
    -webkit-transform: translatex(80px);
    transform: translatex(80px);
    -webkit-transition: 1s cubic-bezier(0.61, -0.63, 0.46, 1.48);
    transition: 1s cubic-bezier(0.61, -0.63, 0.46, 1.48);
  }
  
  .swiper-slide-active .testimonial-two__text {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translatex(0px);
    transform: translatex(0px);
  }
  
  .testimonial-two__nav {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .testimonial-two__nav .swiper-button-prev1,
  .testimonial-two__nav .swiper-button-next1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 0;
    color: var(--hotelux-white);
    background-color: var(--hotelux-base);
    font-size: 16px;
    margin: 0px 0px;
    text-align: center;
    transition: all 500ms ease;
    z-index: 100;
  }
  
  .testimonial-two__nav .swiper-button-prev1:hover,
  .testimonial-two__nav .swiper-button-next1:hover {
    color: var(--hotelux-white);
    background-color: var(--hotelux-black);
  }
  
  .testimonial-two__nav .swiper-button-next1 {
    margin-right: 10px;
  }
  
  .testimonial-two__quote {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
  
  .testimonial-two__quote span {
    position: relative;
    display: inline-block;
    font-size: 80px;
    color: rgba(var(--hotelux-base-rgb), 0.05);
  }
  
  
  /*==============================================
      Testimonial Three
  ===============================================*/
  .testimonial-three {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    background-color: var(--hotelux-black);
    z-index: 1;
  }
  
  .testimonial-three__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .25;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  
  .testimonial-three__shape-1 {
    position: absolute;
    top: 0;
    left: 30%;
    width: 1000px;
    height: 1200px;
    clip-path: polygon(50% 0%, 100% 0, 16% 40%, 0 0);
    background-color: rgba(var(--hotelux-black-rgb), 0.02);
    z-index: -1;
  }
  
  .testimonial-three__inner {
    position: relative;
    display: block;
  }
  
  .testimonial-three__carousel {
    position: relative;
    display: block;
  }
  
  .testimonial-three__single {
    position: relative;
    display: block;
    text-align: center;
  }
  
  .testimonial-three__quote {
    position: absolute;
    bottom: 30px;
    right: 30px;
  }
  
  .testimonial-three__quote i {
    position: relative;
    display: inline-block;
    font-size: 50px;
    color: var(--hotelux-primary);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .testimonial-three__ratting {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .testimonial-three__ratting span+span {
    margin-left: 5px;
  }
  
  .testimonial-three__ratting span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--hotelux-base);
  }
  
  .testimonial-three__text {
    color: rgba(var(--hotelux-white-rgb), .80);
    max-width: 800px;
    margin: 20px auto 20px;
  }
  
  .testimonial-three__single:hover .testimonial-three__text {
    color: var(--hotelux-white);
  }
  
  .testimonial-three__client-info {
    position: relative;
    display: block;
  }
  
  .testimonial-three__client-img {
    position: relative;
    display: block;
    max-width: 150px;
    width: 100%;
    margin: 0 auto;
  }
  
  .testimonial-three__client-img img {
    width: 100%;
    border-radius: 50%;
  }
  
  .testimonial-three__client-content {
    position: relative;
    display: block;
  }
  
  .testimonial-three__client-content h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 3px;
    margin-top: 10px;
  }
  
  .testimonial-three__client-content h3 a {
    color: var(--hotelux-white);
  }
  
  .testimonial-three__client-content h3 a:hover {
    color: var(--hotelux-base);
  }
  
  .testimonial-three__client-content p {
    color: rgba(var(--hotelux-white-rgb), .80);
  }
  
  .testimonial-three__nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
  }
  
  .testimonial-three__nav .swiper-button-prev1,
  .testimonial-three__nav .swiper-button-next1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 0;
    color: var(--hotelux-white);
    background-color: var(--hotelux-base);
    font-size: 16px;
    margin: 0px 0px;
    text-align: center;
    transition: all 500ms ease;
    z-index: 100;
  }
  
  .testimonial-three__nav .swiper-button-prev1:hover,
  .testimonial-three__nav .swiper-button-next1:hover {
    color: var(--hotelux-base);
    background-color: var(--hotelux-white);
  }
  
  .testimonial-three__nav .swiper-button-next1 {
    margin-right: 10px;
  }
  
  
  /*==============================================
      Testimonials Page
  ===============================================*/
  .testimonial-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
  }
  
  .testimonial-page .testimonial-one__single {
    margin-bottom: 30px;
  }
  
  /*==============================================
      Testimonials Page Two
  ===============================================*/
  .testimonial-page-two {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
  }
  
  .testimonial-page-two .testimonial-two__single {
    padding: 50px 50px 50px;
    background-color: var(--hotelux-primary);
    margin-bottom: 30px;
  }
  
  .testimonial-page-two .testimonial-two__img-and-ratting {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  
  .testimonial-page-two .testimonial-two__text {
    opacity: 1;
    -webkit-transform: translatex(0px);
    transform: translatex(0px);
  }
  
  /*==============================================
      Testimonial Page Three
  ===============================================*/
  .testimonial-page-three {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
  }
  
  .testimonial-page-three .testimonial-three__single {
    background-color: var(--hotelux-primary);
    padding: 30px 30px 30px;
    margin-bottom: 30px;
  }
  
  .testimonial-page-three .testimonial-three__client-content h3 a {
    color: var(--hotelux-black);
  }
  
  .testimonial-page-three .testimonial-three__client-content p {
    color: var(--hotelux-gray);
  }
  
  .testimonial-page-three .testimonial-three__text {
    color: var(--hotelux-gray);
  }
  
  .testimonial-page-three .testimonial-three__single:hover .testimonial-three__text {
    color: var(--hotelux-gray);
  }
  
  .testimonial-page-three .testimonial-three__client-img {
    max-width: 100px;
  }
  
  
  /*==============================================
      Video One  
  ===============================================*/
  .video-one {
    position: relative;
    display: block;
    overflow: hidden;
    background-color: rgba(0, 0, 0, .7);
    z-index: 1;
  }
  
  .video-one__inner {
    position: relative;
    display: block;
    text-align: center;
    padding: 120px 0 120px;
  }
  
  .video-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .30;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  
  .video-one__video-link {
    position: relative;
    display: block;
  }
  
  .video-one__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    font-size: 20px;
    color: var(--hotelux-base);
    background-color: var(--hotelux-white);
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    margin: 0 auto;
    z-index: 1;
  }
  
  .video-one__video-icon:hover {
    background-color: var(--hotelux-base);
    color: var(--hotelux-white);
  }
  
  .video-one__video-icon:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 5px solid rgba(var(--hotelux-white-rgb), .30);
    border-radius: 50%;
    z-index: -1;
  }
  
  .video-one__video-link .ripple,
  .video-one__video-icon .ripple:before,
  .video-one__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--hotelux-white-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--hotelux-white-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--hotelux-white-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--hotelux-white-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
  }
  
  .video-one__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
  }
  
  .video-one__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
  }
  
  .video-one__title {
    font-size: 35px;
    color: var(--hotelux-white);
    line-height: 45px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 35px 0 20px;
  }
  
  .video-one__btn-box {
    position: relative;
    display: block;
  }
  
  .video-one__btn-box .thm-btn:hover {
    color: var(--hotelux-black);
  }
  
  .video-one__btn-box .thm-btn::before,
  .video-one__btn-box .thm-btn::after {
    background-color: var(--hotelux-white);
  }
  
  
  /*==============================================
      Video Two 
  ===============================================*/
  .video-two {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
  }
  
  .video-two__inner {
    position: relative;
    display: block;
    text-align: center;
    padding: 120px 0 120px;
    overflow: hidden;
    background-color: var(--hotelux-black);
    border-radius: 5px;
    z-index: 1;
  }
  
  .video-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .30;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  
  .video-two__video-link {
    position: relative;
    display: block;
    margin-bottom: 45px;
  }
  
  .video-two__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    font-size: 20px;
    color: var(--hotelux-base);
    background-color: var(--hotelux-white);
    border-radius: 50%;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    margin: 0 auto;
    z-index: 1;
  }
  
  .video-two__video-icon:hover {
    background-color: var(--hotelux-base);
    color: var(--hotelux-white);
  }
  
  .video-two__video-icon:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 5px solid rgba(var(--hotelux-white-rgb), .30);
    border-radius: 50%;
    z-index: -1;
  }
  
  .video-two__video-link .ripple,
  .video-two__video-icon .ripple:before,
  .video-two__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--hotelux-white-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--hotelux-white-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--hotelux-white-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--hotelux-white-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
  }
  
  .video-two__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
  }
  
  .video-two__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
  }
  
  .video-two__sub-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--hotelux-base);
    text-transform: uppercase;
  }
  
  .video-two__title {
    font-size: 35px;
    color: var(--hotelux-white);
    line-height: 45px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 4px 0 30px;
  }
  
  .video-two__btn-box {
    position: relative;
    display: block;
  }
  
  .video-two__btn-box .thm-btn:hover {
    color: var(--hotelux-black);
  }
  
  .video-two__btn-box .thm-btn::before,
  .video-two__btn-box .thm-btn::after {
    background-color: var(--hotelux-white);
  }
  
  .video-two__shape-1 {
    position: absolute;
    bottom: 70px;
    left: 485px;
    animation: swing-x 1s ease-in-out 1s forwards infinite alternate;
  }
  
  .video-two__shape-1 img {
    width: auto;
  }
  
  
  /*==============================================
     Why Choose One
  ===============================================*/
  .why-choose-one {
    position: relative;
    display: block;
    padding: 120px 0 0px;
    z-index: 1;
  }
  
  .why-choose-one__left {
    position: relative;
    display: block;
  }
  
  .why-choose-one__left .section-title {
    margin-bottom: 28px;
  }
  
  .why-choose-one__text {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--hotelux-base);
  }
  
  .why-choose-one__list {
    position: relative;
    display: block;
    margin: 25px 0 27px;
  }
  
  .why-choose-one__list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .why-choose-one__list li+li {
    margin-top: 20px;
  }
  
  .why-choose-one__list li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--hotelux-primary);
    border: 1px solid rgba(var(--hotelux-base-rgb), .20);
    border-radius: 50%;
  }
  
  .why-choose-one__list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 45px;
    color: var(--hotelux-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
  }
  
  .why-choose-one__list li:hover .icon span {
    -webkit-animation-name: wobble-horizontal-hover;
    animation-name: wobble-horizontal-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
  }
  
  .why-choose-one__list li .content {
    position: relative;
    display: block;
    flex: 1;
  }
  
  .why-choose-one__list li .content h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 8px;
  }
  
  .why-choose-one__points {
    position: relative;
    display: block;
  }
  
  .why-choose-one__points li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .why-choose-one__points li+li {
    margin-top: 8px;
  }
  
  .why-choose-one__points li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: var(--hotelux-base);
    border-radius: 50%;
  }
  
  .why-choose-one__points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 10px;
    color: var(--hotelux-white);
  }
  
  .why-choose-one__points li p {
    font-size: 18px;
    color: var(--hotelux-black);
    font-weight: 500;
  }
  
  .why-choose-one__btn-box {
    position: relative;
    display: block;
    margin-top: 30px;
  }
  
  .why-choose-one__right {
    position: relative;
    display: block;
    margin-left: 230px;
  }
  
  .why-choose-one__img {
    position: relative;
    display: block;
    border-left: 10px solid var(--hotelux-white);
    border-bottom: 10px solid var(--hotelux-white);
  }
  
  .why-choose-one__img img {
    width: 100%;
  }
  
  .why-choose-one__img-2 {
    position: absolute;
    bottom: -147px;
    left: -250px;
    z-index: -1;
  }
  
  .why-choose-one__img-2 img {
    width: auto;
  }
  
  .why-choose-one__hotel-info {
    position: absolute;
    top: 15px;
    left: -203px;
    background-color: rgba(var(--hotelux-base-rgb), .20);
    text-align: center;
    padding: 30px 50px 30px;
  }
  
  .why-choose-one__hotel-name {
    font-size: 30px;
    font-weight: 600;
    color: var(--hotelux-black);
  }
  
  .why-choose-one__hotel-ratting {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 5px 0 5px;
  }
  
  .why-choose-one__hotel-ratting span {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--hotelux-base);
  }
  
  .why-choose-one__sub-title {
    font-weight: 500;
  }
  
  .why-choose-one__video-link {
    position: absolute;
    left: 80px;
    bottom: -46px;
  }
  
  .why-choose-one__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-size: 25px;
    color: var(--hotelux-white);
    background-color: rgba(var(--hotelux-base-rgb), 1);
    border-radius: 50%;
    margin: 0 auto 0;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
  }
  
  .why-choose-one__video-icon:hover {
    background-color: var(--hotelux-black);
    color: var(--hotelux-base);
  }
  
  .why-choose-one__video-link .ripple,
  .why-choose-one__video-icon .ripple:before,
  .why-choose-one__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--hotelux-base-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--hotelux-base-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--hotelux-base-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--hotelux-base-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
  }
  
  .why-choose-one__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
  }
  
  .why-choose-one__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
  }
  
  .why-choose-one__shape-1 {
    position: absolute;
    top: 172px;
    right: 105px;
    width: 400px;
    height: 400px;
    border: 3px dashed var(--hotelux-base);
    border-radius: 50%;
    z-index: -1;
  }
  
  
  /*--------------------------------------------------------------
  # Why Choose Two
  --------------------------------------------------------------*/
  .why-choose-two {
    position: relative;
    display: block;
    background-color: var(--hotelux-white);
    box-shadow: 0px 0px 48.51px 0.49px rgba(0, 0, 0, 0.02);
    padding: 120px 0 0;
    z-index: 1;
  }
  
  .why-choose-two__bg-shape {
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .25;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  
  .why-choose-two__bg-box {
    position: absolute;
    top: 120px;
    left: 0;
    bottom: 0;
    width: calc((100% - 250px) / 2);
    background-color: var(--hotelux-black);
    z-index: -1;
  }
  
  .why-choose-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .15;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  
  .why-choose-two__left {
    position: relative;
    display: block;
    padding: 80px 0 80px;
  }
  
  .why-choose-two__left .section-title__tagline {
    color: var(--hotelux-white);
  }
  
  .why-choose-two__left .section-title__title {
    color: var(--hotelux-white);
  }
  
  .why-choose-two__left .section-title__tagline::after {
    background: var(--hotelux-black);
  }
  
  .why-choose-two__left .section-title {
    margin-bottom: 38px;
    margin-right: -80px;
  }
  
  .why-choose-two__client-box-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--hotelux-white);
    padding: 17px 20px 20px;
  }
  
  .why-choose-two__client-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .why-choose-two__client-list {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .why-choose-two__client-list li {
    position: relative;
    display: block;
  }
  
  .why-choose-two__client-list li+li {
    margin-left: -15px;
  }
  
  .why-choose-two__client-img {
    position: relative;
    display: block;
    max-width: 45px;
    width: 100%;
  }
  
  .why-choose-two__client-img img {
    width: 100%;
    border: 2px solid var(--hotelux-white);
    border-radius: 50%;
  }
  
  .why-choose-two__counter-box {
    position: relative;
    display: block;
  }
  
  .why-choose-two__count-box {
    position: relative;
    display: inline-flex;
  }
  
  .why-choose-two__count-box p {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px !important;
    font-family: var(--hotelux-font-two) !important;
    color: var(--hotelux-black);
    top: -1px;
  }
  
  .why-choose-two__count-box span {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px !important;
    font-family: var(--hotelux-font-two) !important;
    color: var(--hotelux-black);
  }
  
  .why-choose-two__count-text {
    font-weight: 500;
  }
  
  .why-choose-two__client-ratting {
    position: relative;
    display: block;
  }
  
  .why-choose-two__client-title {
    font-size: 44px;
    font-weight: 600;
    line-height: 44px;
  }
  
  .why-choose-two__client-title span {
    position: relative;
    display: inline-block;
  }
  
  .why-choose-two__client-title span::before {
    content: "";
    position: absolute;
    top: 59%;
    left: 53%;
    width: 7px;
    height: 7px;
    background-color: var(--hotelux-base);
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
  
  .why-choose-two__ratting-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .why-choose-two__ratting {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .why-choose-two__ratting span {
    position: relative;
    display: inline-block;
    font-size: 14px;
    color: var(--hotelux-base);
  }
  
  .why-choose-two__ratting-text {
    font-weight: 500;
  }
  
  .why-choose-two__text {
    color: rgba(var(--hotelux-white-rgb), .80);
    margin-top: 28px;
  }
  
  .why-choose-two__img-1 {
    position: relative;
    display: block;
    margin-left: -30px;
    margin-right: -54px;
    overflow: hidden;
  }
  
  .why-choose-two__img-1 img {
    width: 100%;
  }
  
  .why-choose-two__sliding-text-list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-wrap: nowrap;
    width: fit-content;
    padding: 17.5px 0 15.5px;
    background-color: var(--hotelux-base);
    z-index: 1;
  }
  
  .why-choose-two__sliding-text-list li {
    position: relative;
    display: block;
    float: left;
    margin-right: 15px;
  }
  
  .why-choose-two__sliding-text-title {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--hotelux-black);
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  
  .why-choose-two__sliding-text-title span {
    margin-left: 15px;
    position: relative;
    animation: textRotate 10s linear 0s forwards infinite alternate;
  }
  
  .why-choose-two__right {
    position: relative;
    display: block;
    margin-top: 36px;
    counter-reset: count;
  }
  
  .why-choose-two__right li {
    position: relative;
    display: block;
  }
  
  .why-choose-two__right li::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 2px;
    background-color: rgba(var(--hotelux-black-rgb), .10);
    left: 50%;
    bottom: -43px;
    transform: translateX(-50%);
  }
  
  .why-choose-two__right li:nth-child(2)::before {
    display: none;
  }
  
  .why-choose-two__right li+li {
    margin-top: 72px;
  }
  
  .why-choose-two__single {
    position: relative;
    display: block;
    text-align: center;
  }
  
  .why-choose-two__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(var(--hotelux-black-rgb), .50);
    border-radius: 50%;
    margin: 0 auto;
  }
  
  .why-choose-two__icon span {
    position: relative;
    display: inline-block;
    font-size: 38px;
    color: var(--hotelux-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
  }
  
  .why-choose-two__single:hover .why-choose-two__icon span {
    transform: scale(0.9);
  }
  
  .why-choose-two__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    margin: 23px 0 7px;
  }
  
  .why-choose-two__title a {
    color: var(--hotelux-black);
  }
  
  .why-choose-two__title a:hover {
    color: var(--hotelux-base);
  }
  
  .why-choose-two__count {
    position: absolute;
    right: -14px;
    bottom: 24px;
    width: 32px;
    height: 32px;
    background-color: var(--hotelux-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .why-choose-two__count:before {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    color: var(--hotelux-white);
    font-family: var(--hotelux-font-two);
    counter-increment: count;
    content: "0"counter(count);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  
  /*==============================================
     About One
  ===============================================*/
  .about-one {
    position: relative;
    display: block;
    padding: 50px 0 0px;
    z-index: 1;
  }
  
  .about-one__left {
    position: relative;
    display: block;
  }
  
  .about-one__right {
    position: relative;
    display: block;
  }
  
  .about-one__right .section-title {
    margin-bottom: 32px;
  }
  
  .about-one__points-box {
    position: relative;
    /* display: flex; */
    align-items: center;
    gap: 50px;
    margin: 25px 0 40px;
  }
  
  .about-one__points-list {
    position: relative;
    display: block;
  }
  
  .about-one__points-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .about-one__points-list li+li {
    margin-top: 15px;
  }
  
  .about-one__points-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 35px;
    border: 1px solid var(--hotelux-base);
  }
  
  .about-one__points-list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: var(--hotelux-base);
  }
  
  .about-one__points-list li p {
    font-size: 18px;
    font-weight: 600;
    color: var(--hotelux-black);
    position: relative;
    display: block;
    flex: 1;
  }
  
  .about-one__main-tab-box {
    position: relative;
    display: block;
    margin-left: -365px;
  }
  
  .about-one__main-tab-box .tab-buttons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .about-one__main-tab-box .tab-buttons::before {
    content: "";
  }
  
  .about-one__main-tab-box .tab-buttons .tab-btn {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .about-one__main-tab-box .tab-buttons .tab-btn+.tab-btn {
    margin-left: 10px;
  }
  
  .about-one__main-tab-box .tab-buttons .tab-btn .about-one__main-tab-img {
    position: relative;
    display: block;
    max-width: 190px;
    width: 100%;
    cursor: pointer;
    z-index: 15;
  }
  
  .about-one__main-tab-box .tab-buttons .tab-btn .about-one__main-tab-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #191628;
    background: linear-gradient(180deg, rgba(25, 22, 40, 0) 24%, rgba(25, 22, 40, 1) 100%);
  }
  
  .about-one__main-tab-box .tab-buttons .tab-btn .about-one__main-tab-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .about-one__main-tab-tag {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
  }
  
  .about-one__main-tab-tag span {
    font-weight: 600;
    font-family: var(--hotelux-font-two);
    color: var(--hotelux-white);
  }
  
  .about-one__main-tab-box .tabs-content {
    position: relative;
    display: block;
  }
  
  .about-one__main-tab-box .tabs-content .tab {
    position: relative;
    display: none;
    -webkit-transform: translateX(35px);
    -ms-transform: translateX(35px);
    transform: translateX(35px);
    -webkit-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
  }
  
  .about-one__main-tab-box .tabs-content .tab.active-tab {
    display: block;
    margin-top: 0px;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
  
  .about-one__img-box {
    position: absolute;
    top: -577px;
    left: -220px;
    z-index: -1;
  }
  
  .about-one__img {
    position: relative;
    display: block;
  }
  
  .about-one__img:before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    bottom: 295px;
    width: 250px;
    background-color: rgba(var(--hotelux-base-rgb), 10);
    z-index: -1;
  }
  
  .about-one__img img {
     width: 100%;
    object-fit: cover;
    height: 529px;
  }
  
  /*==============================================
      About Two
  ===============================================*/
  .about-two {
    position: relative;
    display: block;
    padding: 90px 0 120px;
    z-index: 2;
  }
  
  .about-two__left {
    position: relative;
    display: block;
    margin-right: 80px;
  }
  
  .about-two__img-box {
    position: relative;
    display: block;
  }
  
  .about-two__img {
    position: relative;
    display: block;
  }
  
  .about-two__img img {
    width: 100%;
  }
  
  .about-two__experience {
    position: absolute;
    top: 50px;
    right: -50px;
    background-color: var(--hotelux-base);
    text-align: center;
    padding: 18px 30px 22px;
  }
  
  .about-two__experience:before {
    content: "";
    position: absolute;
    bottom: -50px;
    right: 0;
    border-top: 25px solid var(--hotelux-base);
    border-left: 25px solid var(--hotelux-base);
    border-bottom: 25px solid transparent;
    border-right: 25px solid transparent;
  }
  
  .about-two__experience-count-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .about-two__experience-count-box h3 {
    font-size: 48px;
    font-weight: 600;
    line-height: 48px !important;
    font-family: var(--hotelux-font-two) !important;
    color: var(--hotelux-white);
  }
  
  .about-two__experience-count-box span {
    font-size: 48px;
    font-weight: 600;
    line-height: 48px !important;
    font-family: var(--hotelux-font-two) !important;
    color: var(--hotelux-white);
  }
  
  .about-two__experience-count-text {
    color: var(--hotelux-white);
    position: relative;
    margin-top: 9px;
    line-height: 24px;
  }
  
  .about-two__right {
    position: relative;
    display: block;
  }
  
  .about-two__right .section-title {
    margin-bottom: 32px;
  }
  
  .about-two__points-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px 0 50px;
  }
  
  .about-two__points {
    position: relative;
    display: block;
  }
  
  .about-two__points li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .about-two__points li+li {
    margin-top: 21px;
  }
  
  .about-two__points li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--hotelux-primary);
  }
  
  .about-two__points li .icon span {
    position: relative;
    display: inline-block;
    font-size: 35px;
    color: var(--hotelux-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
  }
  
  .about-two__points li:hover .icon span {
    -webkit-animation-name: wobble-horizontal-hover;
    animation-name: wobble-horizontal-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
  }
  
  .about-two__points li .content {
    position: relative;
    display: block;
    flex: 1;
  }
  
  .about-two__points li .content h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 7px;
  }
  
  .about-two__booking {
    position: relative;
    display: block;
    background-color: var(--hotelux-white);
    box-shadow: 0px 0px 48.51px 0.49px rgba(0, 0, 0, 0.1);
    padding: 29px 30px 30px;
    margin-left: -350px;
  }
  
  .about-two-booking__left {
    position: relative;
    display: block;
  }
  
  .about-two-booking__right {
    position: relative;
    display: block;
  }
  
  .about-two-booking__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
  }
  
  .about-two-booking__form {
    position: relative;
    display: block;
  }
  
  .about-two-booking__form .row {
    --bs-gutter-x: 10px;
  }
  
  .about-two-booking__input-box {
    position: relative;
    display: block;
  }
  
  .about-two-booking__input-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--hotelux-black);
    margin-bottom: 6px;
  }
  
  .about-two-booking__input-box input[type="text"],
  .about-two-booking__input-box input[type="email"] {
    height: 40px;
    width: 100%;
    background-color: var(--hotelux-white);
    border: 1px solid rgba(var(--hotelux-black-rgb), .15);
    border-radius: 0;
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    line-height: 40px;
    font-weight: 400;
    color: var(--hotelux-gray);
    display: block;
  }
  
  .about-two-booking__input-box .select-box {
    width: 100%;
  }
  
  .about-two-booking__input-box .nice-select {
    height: 40px;
    width: 100%;
    background-color: var(--hotelux-white);
    border: 1px solid rgba(var(--hotelux-black-rgb), .15);
    outline: none;
    font-size: 16px;
    color: var(--hotelux-gray);
    font-weight: 400;
    border-radius: 0;
    line-height: 40px;
    padding-left: 20px;
    padding-right: 20px;
    display: block;
    float: none;
  }
  
  .about-two-booking__input-box .nice-select:after {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 7px;
    height: 7px;
    border-bottom: 2px solid var(--hotelux-gray);
    border-right: 2px solid var(--hotelux-gray);
    margin-top: 0px;
    z-index: 10;
  }
  
  .about-two-booking__input-box .nice-select .option {
    color: var(--hotelux-white);
  }
  
  .about-two-booking__input-box .nice-select .option.selected {
    font-weight: 500;
  }
  
  .about-two-booking__input-box .nice-select .list {
    background-color: var(--hotelux-base);
    border-radius: 0;
  }
  
  .about-two-booking__input-box .nice-select .option:hover,
  .about-two-booking__input-box .nice-select .option.focus,
  .about-two-booking__input-box .nice-select .option.selected.focus {
    color: var(--hotelux-white);
  }
  
  #ui-datepicker-div.ui-widget-content {
    background: #fff none repeat scroll 0 0;
    border: 1px solid var(--hotelux-black);
    color: #252525;
    font-size: 14px;
    border-radius: 0px;
    width: 270px;
    padding: 5px;
  }
  
  #ui-datepicker-div.ui-datepicker .ui-datepicker-header {
    background: var(--hotelux-base) none repeat scroll 0 0;
    border: 2px solid var(--hotelux-base);
    border-radius: 0;
    color: var(--hotelux-white);
    font-weight: 700;
    padding: 5px 0;
    position: relative;
  }
  
  .ui-datepicker td a {
    color: var(--hotelux-black) !important;
    text-align: center;
    background-image: none !important;
    background: #f5f5f5 !important;
    border: 1px solid #f9f9f9 !important;
  }
  
  .ui-state-highlight,
  .ui-widget-content .ui-state-highlight,
  .ui-widget-header .ui-state-highlight {
    border: 1px solid var(--hotelux-black) !important;
    background: var(--hotelux-black) !important;
    color: var(--hotelux-white) !important;
  }
  
  .ui-datepicker .ui-datepicker-prev {
    left: 5px;
  }
  
  .ui-datepicker .ui-datepicker-prev,
  .ui-datepicker .ui-datepicker-next {
    border-radius: 30%;
    height: 20px;
    position: absolute;
    top: 7px;
    width: 20px;
    transition: all 500ms ease;
    cursor: pointer;
  }
  
  .ui-datepicker .ui-datepicker-next {
    right: 5px;
  }
  
  .ui-datepicker .ui-datepicker-prev:hover,
  .ui-datepicker .ui-datepicker-next:hover {
    top: 7px;
    background: var(--hotelux-white);
    border: none;
  }
  
  .ui-datepicker table {
    border-collapse: collapse;
    font-size: 13px;
    margin: 0 0 0.4em;
    width: 100%;
  }
  
  .ui-datepicker th {
    border: medium none;
    font-weight: 600;
    padding: 2px 3px;
    text-align: center;
  }
  
  .ui-datepicker-calendar .ui-state-default:hover,
  .ui-datepicker-calendar .ui-state-default:active {
    background: var(--hotelux-black);
    color: var(--hotelux-white);
    border-color: var(--hotelux-black);
  }
  
  #ui-datepicker-div.ui-widget {
    font-family: var(--hotelux-font);
  }
  
  .about-two-booking__btn-box {
    position: relative;
    display: block;
    margin-top: 32px;
  }
  
  .about-two-booking__btn-box .thm-btn {
    border: none;
    padding: 12px 22px 12px;
  }
  
  
  /*==============================================
     About Three
  ===============================================*/
  .about-three {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
  }
  
  .about-three__bg-color {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(241, 241, 241, 0) 0%, rgba(241, 241, 241, 1) 100%);
    z-index: -1;
  }
  
  .about-three__left {
    position: relative;
    display: block;
  }
  
  .about-three__left .section-title {
    margin-bottom: 32px;
  }
  
  .about-three__points-box {
    position: relative;
    display: block;
    margin: 25px 0 37px;
  }
  
  .about-three__points-box li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .about-three__points-box li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border: 1px solid var(--hotelux-base);
    border-radius: 50%;
  }
  
  .about-three__points-box li .icon span {
    position: relative;
    display: inline-block;
    font-size: 35px;
    color: var(--hotelux-base);
    transition: all 500ms ease;
  }
  
  .about-three__points-box li:hover .icon span {
    -webkit-animation-name: wobble-horizontal-hover;
    animation-name: wobble-horizontal-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
  }
  
  .about-three__points-box li .content {
    position: relative;
    display: block;
    flex: 1;
  }
  
  .about-three__points-box li .content h3 {
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .about-three__points-box li+li {
    margin-top: 23px;
  }
  
  .about-three__btn-and-video {
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
  }
  
  .about-three__btn-box {
    position: relative;
    display: block;
  }
  
  .about-three__video-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .about-three__video-link {
    position: relative;
    display: block;
  }
  
  .about-three__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 20px;
    color: var(--hotelux-base);
    background-color: var(--hotelux-black);
    border-radius: 50%;
    margin: 0 auto 0;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
  }
  
  .about-three__video-icon:hover {
    background-color: var(--hotelux-base);
    color: var(--hotelux-white);
  }
  
  .about-three__video-link .ripple,
  .about-three__video-icon .ripple:before,
  .about-three__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--hotelux-black-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--hotelux-black-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--hotelux-black-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--hotelux-black-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
  }
  
  .about-three__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
  }
  
  .about-three__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
  }
  
  .about-three__video-text {
    font-weight: 700;
    color: var(--hotelux-base);
  }
  
  .about-three__right {
    position: relative;
    display: block;
    margin-right: 195px;
  }
  
  .about-three__img-box {
    position: relative;
    display: block;
  }
  
  .about-three__img {
    position: relative;
    display: block;
  }
  
  .about-three__img img {
    width: 100%;
  }
  
  .about-three__img-2 {
    position: absolute;
    bottom: -70px;
    right: -196px;
    border-left: 10px solid var(--hotelux-white);
    border-top: 10px solid var(--hotelux-white);
  }
  
  .about-three__img-2 img {
    width: auto;
  }
  
  .about-three__experience {
    position: absolute;
    top: 4px;
    right: -161px;
    background-color: var(--hotelux-base);
    text-align: center;
    padding: 18px 35px 22px;
  }
  
  .about-three__experience-count-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .about-three__experience-count-box h3 {
    font-size: 48px;
    font-weight: 600;
    line-height: 48px !important;
    font-family: var(--hotelux-font-two) !important;
    color: var(--hotelux-white);
  }
  
  .about-three__experience-count-box span {
    font-size: 48px;
    font-weight: 600;
    line-height: 48px !important;
    font-family: var(--hotelux-font-two) !important;
    color: var(--hotelux-white);
  }
  
  .about-three__experience-count-text {
    color: var(--hotelux-white);
    position: relative;
    margin-top: 9px;
    line-height: 24px;
  }
  
  .about-two__shape-1 {
    position: absolute;
    bottom: -112px;
    left: 50px;
    opacity: .30;
    z-index: -1;
  }
  
  .about-two__shape-1 img {
    width: auto;
  }
  
  /*==============================================
     Blog One
  ===============================================*/
  .blog-one {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
  }
  
  .blog-one__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
  }
  
  .blog-one__img-box {
    position: relative;
    display: block;
  }
  
  .blog-one__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
  }
  
  .blog-one__img:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(var(--hotelux-black-rgb), .50);
    opacity: 0;
    transform: translateY(50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: 1;
  }
  
  .blog-one__single:hover .blog-one__img:before {
    opacity: 1;
    transform: translateY(0px);
  }
  
  .blog-one__img img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
  }
  
  .blog-one__single:hover .blog-one__img img {
    transform: scale(1.05) rotate(0deg);
  }
  
  .blog-one__content {
    position: relative;
    display: block;
    border: 1px solid rgba(var(--hotelux-black-rgb), .10);
    padding: 30px 30px 30px;
    border-top: 0;
  }
  
  .blog-one__list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .blog-one__list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .blog-one__list li .icon {
    position: relative;
    display: inline-block;
  }
  
  .blog-one__list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--hotelux-base);
  }
  
  .blog-one__list li p {
    text-transform: capitalize;
  }
  
  .blog-one__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    text-transform: capitalize;
    margin: 5px 0 8px;
  }
  
  .blog-one__title a {
    color: var(--hotelux-black);
  }
  
  .blog-one__title a:hover {
    color: var(--hotelux-base);
  }
  
  .blog-one__date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--hotelux-white);
    padding: 5px 15px 5px;
    z-index: 2;
  }
  
  .blog-one__date span {
    font-weight: 500;
  }
  
  .blog-one__read-more {
    position: relative;
    display: inline-block;
  }
  
  .blog-one__read-more a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--hotelux-black);
  }
  
  .blog-one__read-more a:hover {
    color: var(--hotelux-base);
  }
  
  .blog-one__read-more a>span {
    font-size: 14px;
    color: var(--hotelux-base);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  /*==============================================
      Blog Two
  ===============================================*/
  .blog-two {
    position: relative;
    display: block;
    padding: 90px 0 0px;
    z-index: 1;
  }
  
  .blog-two__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
  }
  
  .blog-two__img-box {
    position: relative;
    display: block;
  }
  
  .blog-two__img {
    position: relative;
    display: block;
    overflow: hidden;
  }
  
  .blog-two__img:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(var(--hotelux-black-rgb), 1);
    opacity: 0;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
  }
  
  .blog-two__single:hover .blog-two__img:before {
    opacity: .50;
  }
  
  .blog-two__img img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
  }
  
  .blog-two__single:hover .blog-two__img img {
    transform: scale(1.05) rotate(0deg);
  }
  
  .blog-two__content {
    position: relative;
    display: block;
    background-color: var(--hotelux-white);
    box-shadow: 0px 0px 48.51px 0.49px rgba(0, 0, 0, 0.1);
    padding: 30px 30px 30px;
  }
  
  .blog-two__list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
  }
  
  .blog-two__list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .blog-two__list li .icon {
    position: relative;
    display: inline-block;
  }
  
  .blog-two__list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--hotelux-base);
  }
  
  .blog-two__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    text-transform: capitalize;
    border-bottom: 1px dashed var(--hotelux-base);
    padding-bottom: 16px;
    margin-bottom: 20px;
    margin-top: 5px;
  }
  
  .blog-two__title a {
    color: var(--hotelux-black);
  }
  
  .blog-two__title a:hover {
    color: var(--hotelux-base);
  }
  
  .blog-two__author-and-read-more {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .blog-two__author-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .blog-two__author-img {
    position: relative;
    display: block;
    max-width: 60px;
    width: 100%;
  }
  
  .blog-two__author-img>img {
    width: 100%;
    border-radius: 50%;
  }
  
  .blog-two__author-content {
    position: relative;
    display: block;
    flex: 1;
  }
  
  .blog-two__author-name {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 2px;
  }
  
  .blog-two__read-more {
    position: relative;
    display: block;
  }
  
  .blog-two__read-more a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--hotelux-base);
  }
  
  .blog-two__read-more a:hover {
    color: var(--hotelux-black);
  }
  
  .blog-two__read-more a span {
    font-size: 14px;
  }
  
  /*==============================================
     Blog Three
  ===============================================*/
  .blog-three {
    position: relative;
    display: block;
    padding: 120px 0 87px;
    z-index: 1;
  }
  
  .blog-three__single {
    position: relative;
    display: block;
    margin-bottom: 30px;
  }
  
  .blog-three__img-box {
    position: relative;
    display: block;
  }
  
  .blog-three__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
  }
  
  .blog-three__img:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(var(--hotelux-black-rgb), .50);
    opacity: 0;
    transform: translateY(50px);
    transition: background-color 0.7s ease;
    transition: all 0.7s ease;
    z-index: 1;
  }
  
  .blog-three__single:hover .blog-three__img:before {
    opacity: 1;
    transform: translateY(0px);
  }
  
  .blog-three__img img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
  }
  
  .blog-three__single:hover .blog-three__img img {
    transform: scale(1.05) rotate(0deg);
  }
  
  .blog-three__content {
    position: relative;
    display: block;
    padding: 30px 30px 30px;
    background-color: var(--hotelux-white);
    box-shadow: 0px 0px 48.51px 0.49px rgba(0, 0, 0, 0.1);
  }
  
  .blog-three__list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .blog-three__list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .blog-three__list li .icon {
    position: relative;
    display: inline-block;
  }
  
  .blog-three__list li .icon span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--hotelux-base);
  }
  
  .blog-three__list li p {
    text-transform: capitalize;
  }
  
  .blog-three__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    text-transform: capitalize;
    margin: 5px 0 8px;
  }
  
  .blog-three__title a {
    color: var(--hotelux-black);
  }
  
  .blog-three__title a:hover {
    color: var(--hotelux-base);
  }
  
  .blog-three__date {
    position: absolute;
    bottom: -35px;
    right: 20px;
    background-color: var(--hotelux-base);
    height: 65px;
    width: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
  }
  
  .blog-three__date p {
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-size: 28px;
    font-family: var(--hotelux-font-two);
    color: var(--hotelux-white);
  }
  
  .blog-three__date p span {
    font-size: 16px;
    font-family: var(--hotelux-font);
    color: var(--hotelux-white);
    line-height: 28px;
    position: relative;
  }
  
  .blog-three__read-more {
    position: relative;
    display: inline-block;
  }
  
  .blog-three__read-more a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--hotelux-black);
  }
  
  .blog-three__read-more a:hover {
    color: var(--hotelux-base);
  }
  
  .blog-three__read-more a>span {
    font-size: 14px;
    color: var(--hotelux-base);
  }
  
  /*==============================================
      Blog Page
  ===============================================*/
  .blog-page {
    position: relative;
    display: block;
    padding: 120px 0 90px;
    z-index: 1;
  }
  
  /*--------------------------------------------------------------
  # Blog List
  --------------------------------------------------------------*/
  .blog-list {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
  }
  
  .blog-list__inner {
    position: relative;
    display: block;
    max-width: 1050px;
    margin: 0 auto 0;
  }
  
  .blog-list__left {
    position: relative;
    display: block;
  }
  
  .blog-list__single {
    position: relative;
    display: block;
    margin-bottom: 50px;
  }
  
  .blog-list__img-box {
    position: relative;
    display: block;
  }
  
  .blog-list__img {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
  }
  
  .blog-list__img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background: rgb(0, 0, 0);
    transition: all 0.5s ease;
    z-index: 1;
  }
  
  .blog-list__single:hover .blog-list__img:before {
    opacity: 0.2;
  }
  
  .blog-list__img img {
    width: 100%;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
  }
  
  .blog-list__single:hover .blog-list__img img {
    transform: scale(1.06) rotate(0deg);
  }
  
  .blog-list__date {
    position: absolute;
    bottom: -33px;
    right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 75px;
    background-color: var(--hotelux-base);
    text-align: center;
    z-index: 2;
  }
  
  .blog-list__date p {
    font-size: 35px;
    font-weight: 600;
    font-family: var(--hotelux-font-two);
    color: var(--hotelux-white);
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
  }
  
  .blog-list__date p span {
    font-family: var(--hotelux-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--hotelux-white);
  }
  
  .blog-list__content {
    position: relative;
    display: block;
    margin-top: 30px;
  }
  
  .blog-list__user-and-meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .blog-list__user {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 31px;
    background-color: var(--hotelux-base);
    border-radius: 16px;
  }
  
  .blog-list__user p {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--hotelux-font-two);
    color: var(--hotelux-white);
  }
  
  .blog-list__meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .blog-list__meta li {
    position: relative;
    display: block;
  }
  
  .blog-list__meta li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--hotelux-gray);
  }
  
  .blog-list__meta li a:hover {
    color: var(--hotelux-base);
  }
  
  .blog-list__meta li a span {
    color: var(--hotelux-base);
  }
  
  .blog-list__title {
    font-size: 35px;
    font-weight: 600;
    margin-top: 30px;
    line-height: 1.3em;
    margin-bottom: 19px;
  }
  
  .blog-list__title a {
    color: var(--hotelux-black);
  }
  
  .blog-list__title a:hover {
    color: var(--hotelux-base);
  }
  
  .blog-list__btn-box {
    position: relative;
    display: block;
    margin-top: 25px;
  }
  
  .blog-list__pagination {
    position: relative;
    display: block;
    text-align: center;
  }
  
  .blog-list__pagination .pg-pagination li {
    display: inline-block;
    margin-right: 10px;
  }
  
  .blog-list__pagination .pg-pagination li a {
    height: 45px;
    width: 45px;
    text-align: center;
    display: flex;
    color: var(--hotelux-black);
    font-weight: 500;
    font-size: 20px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(var(--hotelux-black-rgb), .20);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    align-items: center;
    justify-content: center;
  }
  
  .blog-list__pagination .pg-pagination li:hover a,
  .blog-list__pagination .pg-pagination li.active a {
    border: 1px solid var(--hotelux-base);
    color: var(--hotelux-white);
    background-color: var(--hotelux-base);
  }
  
  /***
  =====================================================
      Sidebar
  =====================================================
  ***/
  .sidebar {
    position: relative;
    display: block;
  }
  
  .sidebar__single+.sidebar__single {
    margin-top: 30px;
  }
  
  .sidebar__title {
    position: relative;
    margin: 0;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 30px;
    padding-left: 40px;
  }
  
  .sidebar__title::before {
    position: absolute;
    left: 0;
    bottom: 10px;
    height: 2px;
    width: 30px;
    background: var(--hotelux-base);
    content: "";
  }
  
  .sidebar__search {
    position: relative;
    display: block;
    background-color: var(--hotelux-primary);
    padding: 50px 30px 50px;
  }
  
  .sidebar__search-form {
    position: relative;
  }
  
  .sidebar__search-form input[type="search"] {
    display: block;
    border: none;
    outline: none;
    background-color: var(--hotelux-white);
    color: var(--hotelux-gray);
    font-size: 14px;
    font-weight: 500;
    padding-left: 20px;
    height: 60px;
    width: 100%;
    padding-right: 60px;
    border-radius: 0px;
    border: 1px solid rgba(var(--hotelux-black-rgb), .10);
  }
  
  .sidebar__search-form ::-webkit-input-placeholder {
    color: var(--hotelux-gray);
    opacity: 1;
  }
  
  .sidebar__search-form ::-moz-placeholder {
    color: var(--hotelux-gray);
    opacity: 1;
  }
  
  .sidebar__search-form :-ms-input-placeholder {
    color: var(--hotelux-gray);
    opacity: 1;
  }
  
  .sidebar__search-form ::-ms-input-placeholder {
    color: var(--hotelux-gray);
    opacity: 1;
  }
  
  .sidebar__search-form ::placeholder {
    color: var(--hotelux-gray);
    opacity: 1;
  }
  
  .sidebar__search-form :-ms-input-placeholder {
    color: var(--hotelux-gray);
  }
  
  .sidebar__search-form ::-ms-input-placeholder {
    color: var(--hotelux-gray);
  }
  
  .sidebar__search-form button[type="submit"] {
    background-color: var(--hotelux-base);
    color: var(--hotelux-white);
    font-size: 18px;
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    width: 50px;
    outline: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 0px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .sidebar__search-form:hover button[type="submit"] {
    background-color: var(--hotelux-black);
    color: var(--hotelux-white);
  }
  
  .sidebar__category {
    position: relative;
    display: block;
    background-color: var(--hotelux-primary);
    padding: 42px 30px 50px;
  }
  
  .sidebar__category-list {
    position: relative;
    display: block;
    margin: 0;
  }
  
  .sidebar__category-list li+li {
    position: relative;
    margin-top: 15px;
  }
  
  .sidebar__category-list li a {
    position: relative;
    display: block;
    color: var(--hotelux-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    padding: 15px 25px 16px;
    background-color: var(--hotelux-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    overflow: hidden;
    z-index: 1;
  }
  
  .sidebar__category-list li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: var(--hotelux-base);
    z-index: -1;
    transform: scaleY(0.0);
    transform-origin: left;
    transform-style: preserve-3d;
    transition: all 200ms linear;
    transition-delay: 0.1s;
  }
  
  .sidebar__category-list li a:hover:before {
    transform: scaleY(1.0);
  }
  
  .sidebar__category-list li a:hover {
    color: var(--hotelux-white);
  }
  
  .sidebar__category-list li.active a {
    background-color: var(--hotelux-base);
    color: var(--hotelux-white);
  }
  
  .sidebar__category-list li a span {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    right: 0;
    color: var(--hotelux-black);
    font-size: 16px;
    font-weight: 600;
    background-color: rgba(var(--hotelux-black-rgb), .10);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-family: var(--hotelux-font);
    z-index: 1;
  }
  
  .sidebar__category-list li a:hover span,
  .sidebar__category-list li.active a span {
    background: rgba(255, 255, 255, 0.1);
    color: var(--hotelux-white);
  }
  
  .sidebar__post {
    position: relative;
    display: block;
    padding: 42px 30px 42px;
    background-color: var(--hotelux-primary);
  }
  
  .sidebar__post-box {
    position: relative;
    display: block;
  }
  
  .sidebar__post-single {
    position: relative;
    display: block;
  }
  
  .sidebar__post-single+.sidebar__post-single {
    margin-top: 27px;
  }
  
  .sidebar-post__img {
    position: relative;
    display: block;
    background: var(--hotelux-black);
    overflow: hidden;
  }
  
  .sidebar-post__img::before {
    content: '';
    position: absolute;
    top: 0%;
    right: 0%;
    width: 0;
    height: 100%;
    background-color: rgba(var(--hotelux-base-rgb), .80);
    border-radius: 2px;
    -webkit-transform: translateX(90%, 90%);
    transform: translateX(90%, 90%);
    opacity: 0.70;
    z-index: 1;
  }
  
  .sidebar__post-single:hover .sidebar-post__img::before {
    -webkit-animation: circle .95s;
    animation: circle .95s;
    opacity: 1.0;
  }
  
  .sidebar-post__img img {
    width: 100%;
    transform: scale(1.0);
    transition: all 0.3s ease-in-out 0.1s opacity .2s ease-in;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
  }
  
  .sidebar__post-single:hover .sidebar-post__img img {
    opacity: 0.70;
    transform: scale(1.1) rotate(1deg);
  }
  
  .sidebar__post-content-box {
    position: relative;
    margin-top: 18px;
  }
  
  .sidebar__post-content-box h3 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
  }
  
  .sidebar__post-content-box h3 a {
    color: var(--hotelux-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .sidebar__post-single:hover .sidebar__post-content-box h3 a {
    color: var(--hotelux-base);
  }
  
  .sidebar__tags {
    position: relative;
    display: block;
    background-color: var(--hotelux-primary);
    padding: 41px 30px 40px;
    overflow: hidden;
  }
  
  .sidebar__tags-list {
    position: relative;
    display: block;
    margin-left: -5px;
    margin-right: -5px;
  }
  
  .sidebar__tags-list li {
    position: relative;
    display: inline-block;
    float: left;
    padding: 0px 5px 0px;
    margin-bottom: 10px;
  }
  
  .sidebar__tags-list li a {
    position: relative;
    display: block;
    color: var(--hotelux-gray);
    font-size: 16px;
    font-weight: 400;
    background: var(--hotelux-white);
    padding: 6px 24px;
    text-transform: capitalize;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  
  .sidebar__tags-list li a:hover {
    color: var(--hotelux-white);
    background: var(--hotelux-base);
  }
  
  /*--------------------------------------------------------------
  # Blog Details
  --------------------------------------------------------------*/
  .blog-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
  }
  
  .blog-details__inner {
    position: relative;
    display: block;
    max-width: 1050px;
    margin: 0 auto 0;
  }
  
  .blog-details__left {
    position: relative;
    display: block;
  }
  
  .blog-details__img-box-1 {
    position: relative;
    display: block;
  }
  
  .blog-details__img {
    position: relative;
    display: block;
  }
  
  .blog-details__img img {
    width: 100%;
  }
  
  .blog-details__date {
    position: absolute;
    bottom: -33px;
    right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 75px;
    background-color: var(--hotelux-base);
    text-align: center;
    z-index: 2;
  }
  
  .blog-details__date p {
    font-size: 35px;
    font-weight: 600;
    font-family: var(--hotelux-font-two);
    color: var(--hotelux-white);
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
  }
  
  .blog-details__date p span {
    font-family: var(--hotelux-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--hotelux-white);
  }
  
  
  .blog-details__content {
    position: relative;
    display: block;
    margin-top: 30px;
  }
  
  .blog-details__user-and-meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .blog-details__user {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 31px;
    background-color: var(--hotelux-base);
    border-radius: 16px;
  }
  
  .blog-details__user p {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--hotelux-font-two);
    color: var(--hotelux-white);
  }
  
  .blog-details__meta {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
  }
  
  .blog-details__meta li {
    position: relative;
    display: block;
  }
  
  .blog-details__meta li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--hotelux-gray);
  }
  
  .blog-details__meta li a:hover {
    color: var(--hotelux-base);
  }
  
  .blog-details__meta li a span {
    color: var(--hotelux-base);
  }
  
  .blog-details__title {
    font-size: 35px;
    font-weight: 600;
    margin-top: 30px;
    line-height: 1.3em;
    margin-bottom: 19px;
  }
  
  .blog-details__text-2 {
    margin-top: 21px;
    margin-bottom: 40px;
  }
  
  .blog-details__author-box {
    position: relative;
    display: block;
    background-color: rgba(var(--hotelux-base-rgb), .15);
    padding: 40px 40px 37px;
  }
  
  .blog-details__author-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: var(--hotelux-black);
    margin-bottom: 30px;
  }
  
  .blog-details__author-name {
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    text-align: right;
    color: var(--hotelux-black);
    font-family: var(--hotelux-font-two);
  }
  
  .blog-details__author-name span {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--hotelux-font);
  }
  
  .blog-details__title-2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 40px;
    margin-top: 41px;
    margin-bottom: 19px;
  }
  
  .blog-details__img-box {
    position: relative;
    display: block;
    margin-top: 29px;
  }
  
  .blog-details__img-box-img {
    position: relative;
    display: block;
    margin-bottom: 30px;
  }
  
  .blog-details__img-box-img img {
    width: 100%;
  }
  
  .blog-details__tag-and-share {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--hotelux-primary);
    padding: 30px 30px 30px;
    margin-top: 30px;
    margin-bottom: 60px;
  }
  
  .blog-details__tag {
    position: relative;
    display: flex;
    align-items: center;
    gap: 17px;
  }
  
  .blog-details__tag-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 34px;
  }
  
  .blog-details__tag-list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .blog-details__tag-list li {
    position: relative;
    display: block;
  }
  
  .blog-details__tag-list li a {
    position: relative;
    background-color: var(--hotelux-white);
    color: var(--hotelux-gray);
    padding: 10px 15px 10px;
    text-transform: capitalize;
  }
  
  .blog-details__tag-list li a:hover {
    background-color: var(--hotelux-base);
    color: var(--hotelux-white);
  }
  
  .blog-details__share-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 17px;
  }
  
  .blog-details__share-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 34px;
  }
  
  .blog-details__share {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .blog-details__share a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 16px;
    color: var(--hotelux-black);
    background-color: var(--hotelux-white);
    border-radius: 50%;
  }
  
  .blog-details__share a:hover {
    background-color: var(--hotelux-base);
    color: var(--hotelux-white);
  }
  
  .comment-one {
    position: relative;
    display: block;
    background-color: var(--hotelux-primary);
    padding: 40px 40px 40px;
  }
  
  .comment-one__single {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--hotelux-white);
    padding: 29px 29px 30px;
  }
  
  .comment-one__single+.comment-one__single {
    margin-top: 30px;
  }
  
  .comment-one__image {
    position: relative;
    display: block;
    max-width: 70px;
    width: 100%;
  }
  
  .comment-one__image img {
    width: 100%;
    border-radius: 50%;
  }
  
  .comment-one__content {
    position: relative;
    display: block;
  }
  
  .comment-one__content h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: var(--hotelux-black);
    margin-bottom: 3px;
  }
  
  .comment-one__content p {
    margin-top: 14px;
  }
  
  .comment-one__btn-box {
    position: absolute;
    top: 0px;
    right: 0px;
  }
  
  .comment-one__btn {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    text-transform: capitalize;
    color: var(--hotelux-black);
  }
  
  .comment-one__btn span {
    font-size: 11px;
    color: var(--hotelux-base);
  }
  
  .comment-one__btn:hover {
    color: var(--hotelux-base);
  }
  
  .comment-form {
    position: relative;
    display: block;
    background-color: var(--hotelux-primary);
    padding: 40px 40px 40px;
    margin-top: 60px;
  }
  
  .comment-form__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
  }
  
  .comment-form__text {
    margin-top: 10px;
    margin-bottom: 30px;
  }
  
  .comment-one__form {
    position: relative;
    display: block;
  }
  
  .comment-form__input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
  }
  
  .comment-form__input-box input[type="text"],
  .comment-form__input-box input[type="email"] {
    height: 60px;
    width: 100%;
    background-color: var(--hotelux-white);
    border: none;
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: var(--hotelux-gray);
    display: block;
  }
  
  .comment-form__input-box textarea {
    font-size: 16px;
    color: var(--hotelux-gray);
    height: 140px;
    width: 100%;
    background-color: var(--hotelux-white);
    border: none;
    padding: 20px 20px 30px;
    outline: none;
    font-weight: 400;
  }
  
  .comment-form__input-box.text-message-box {
    height: 140px;
  }
  
  .comment-form__btn-box {
    position: relative;
    display: block;
  }
  
  .comment-form__btn-box .thm-btn {
    border: none;
  }
  
  /*--------------------------------------------------------------
  # Blog Left Sidebar
  --------------------------------------------------------------*/
  .blog-left-sidebar {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
  }
  
  .blog-left-sidebar .blog-list__pagination {
    padding-top: 30px;
  }
  
  /*--------------------------------------------------------------
  # Blog Left Sidebar
  --------------------------------------------------------------*/
  .blog-right-sidebar {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
  }
  
  .blog-right-sidebar .blog-list__pagination {
    padding-top: 30px;
  }
  
  
  /*==============================================
     Booking One
  ===============================================*/
  .booking-one {
    position: relative;
    display: block;
    margin-top: -65px;
    z-index: 93;
  }
  
  .booking-one__wrap {
    position: relative;
    display: block;
    background-color: var(--hotelux-base);
    padding: 29px 30px 30px;
  }
  
  .booking-one__left {
    position: relative;
    display: block;
  }
  
  .booking-one__right {
    position: relative;
    display: block;
  }
  
  .booking-one__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
  }
  
  .booking-one__form {
    position: relative;
    display: block;
  }
  
  .booking-one__input-box {
    position: relative;
    display: block;
  }
  
  .booking-one__form .row {
    --bs-gutter-x: 10px;
  }
  
  .booking-one__input-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--hotelux-white);
    margin-bottom: 6px;
  }
  
  .booking-one__input-box input[type="text"],
  .booking-one__input-box input[type="email"] {
    height: 40px;
    width: 100%;
    border: none;
    background-color: var(--hotelux-white);
    border-radius: 0;
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    line-height: 40px;
    font-weight: 400;
    color: var(--hotelux-gray);
    display: block;
  }
  
  .booking-one__input-box .select-box {
    width: 100%;
  }
  
  .booking-one__input-box .nice-select {
    height: 40px;
    width: 100%;
    background-color: var(--hotelux-white);
    border: none;
    outline: none;
    font-size: 16px;
    color: var(--hotelux-gray);
    font-weight: 400;
    border-radius: 0;
    line-height: 40px;
    padding-left: 20px;
    padding-right: 20px;
    display: block;
    float: none;
  }
  
  .booking-one__input-box .nice-select:after {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 7px;
    height: 7px;
    border-bottom: 2px solid var(--hotelux-gray);
    border-right: 2px solid var(--hotelux-gray);
    margin-top: 0px;
    z-index: 10;
  }
  
  .booking-one__input-box .nice-select .option {
    color: var(--hotelux-white);
  }
  
  .booking-one__input-box .nice-select .option.selected {
    font-weight: 500;
  }
  
  .booking-one__input-box .nice-select .list {
    background-color: var(--hotelux-base);
    border-radius: 0;
  }
  
  .booking-one__input-box .nice-select .option:hover,
  .booking-one__input-box .nice-select .option.focus,
  .booking-one__input-box .nice-select .option.selected.focus {
    color: var(--hotelux-white);
  }
  
  #ui-datepicker-div.ui-widget-content {
    background: #fff none repeat scroll 0 0;
    border: 1px solid var(--hotelux-black);
    color: #252525;
    font-size: 14px;
    border-radius: 0px;
    width: 270px;
    padding: 5px;
  }
  
  #ui-datepicker-div.ui-datepicker .ui-datepicker-header {
    background: var(--hotelux-base) none repeat scroll 0 0;
    border: 2px solid var(--hotelux-base);
    border-radius: 0;
    color: var(--hotelux-white);
    font-weight: 700;
    padding: 5px 0;
    position: relative;
  }
  
  .ui-datepicker td a {
    color: var(--hotelux-black) !important;
    text-align: center;
    background-image: none !important;
    background: #f5f5f5 !important;
    border: 1px solid #f9f9f9 !important;
  }
  
  .ui-state-highlight,
  .ui-widget-content .ui-state-highlight,
  .ui-widget-header .ui-state-highlight {
    border: 1px solid var(--hotelux-black) !important;
    background: var(--hotelux-black) !important;
    color: var(--hotelux-white) !important;
  }
  
  .ui-datepicker .ui-datepicker-prev {
    left: 5px;
  }
  
  .ui-datepicker .ui-datepicker-prev,
  .ui-datepicker .ui-datepicker-next {
    border-radius: 30%;
    height: 20px;
    position: absolute;
    top: 7px;
    width: 20px;
    transition: all 500ms ease;
    cursor: pointer;
  }
  
  .ui-datepicker .ui-datepicker-next {
    right: 5px;
  }
  
  .ui-datepicker .ui-datepicker-prev:hover,
  .ui-datepicker .ui-datepicker-next:hover {
    top: 7px;
    background: var(--hotelux-white);
    border: none;
  }
  
  .ui-datepicker table {
    border-collapse: collapse;
    font-size: 13px;
    margin: 0 0 0.4em;
    width: 100%;
  }
  
  .ui-datepicker th {
    border: medium none;
    font-weight: 600;
    padding: 2px 3px;
    text-align: center;
  }
  
  .ui-datepicker-calendar .ui-state-default:hover,
  .ui-datepicker-calendar .ui-state-default:active {
    background: var(--hotelux-black);
    color: var(--hotelux-white);
    border-color: var(--hotelux-black);
  }
  
  #ui-datepicker-div.ui-widget {
    font-family: var(--hotelux-font);
  }
  
  .booking-one__btn-box {
    position: relative;
    display: block;
    margin-top: 32px;
  }
  
  .booking-one__btn-box .thm-btn {
    border: none;
    background-color: var(--hotelux-black);
    padding: 12px 35px 12px;
  }
  
  .booking-one__btn-box .thm-btn:hover {
    color: var(--hotelux-black);
  }
  
  .booking-one__btn-box .thm-btn::before,
  .booking-one__btn-box .thm-btn::after {
    background-color: var(--hotelux-white);
  }
  
  
  /*--------------------------------------------------------------
  # Coming Soon Page
  --------------------------------------------------------------*/
  .coming-soon-page {
    position: relative;
    display: block;
    overflow: hidden;
    border-top: 30px dashed rgba(var(--hotelux-black-rgb), .70);
    border-bottom: 30px dashed rgba(var(--hotelux-black-rgb), .70);
    border-left: 50px solid rgba(var(--hotelux-base-rgb), .10);
    border-right: 50px solid rgba(var(--hotelux-base-rgb), .10);
    z-index: 10;
  }
  
  .coming-soon-page__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: var(--hotelux-black);
    z-index: -1;
  }
  
  .coming-soon-page__bg:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(0deg, #000000 5%, rgba(0, 0, 0, 0.5) 100%);
  }
  
  .coming-soon-page__content {
    position: relative;
    display: block;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .coming-soon-page__content .inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
  }
  
  .coming-soon-page__content .big-title {
    position: relative;
    display: inline-block;
    color: var(--hotelux-white);
    font-size: 85px;
    line-height: 1em;
    font-weight: 600;
    text-transform: capitalize;
    word-spacing: 15px;
    font-family: var(--hotelux-font-two);
  }
  
  .coming-soon-page .timer-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 57px 0 42px;
    z-index: 2;
  }
  
  .coming-soon-page .timer-box .countdown-timer li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    width: 170px;
    height: 170px;
    margin: 0px 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: transparent;
    border-radius: 50%;
  }
  
  .coming-soon-page .timer-box .countdown-timer li span.days,
  .coming-soon-page .timer-box .countdown-timer li span.hours,
  .coming-soon-page .timer-box .countdown-timer li span.minutes,
  .coming-soon-page .timer-box .countdown-timer li span.seconds {
    color: #ffffff;
    font-size: 55px;
    line-height: 60px;
    font-weight: 700;
    font-family: var(--hotelux-font);
  }
  
  .coming-soon-page .timer-box .countdown-timer li span.timeRef {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    text-transform: capitalize;
    margin-top: 11px;
  }
  
  .coming-soon-page__content .inner .text {
    position: relative;
    display: block;
    padding-bottom: 60px;
  }
  
  .coming-soon-page__content .inner .text p {
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
  }
  
  .coming-soon-page__subscribe-box {
    position: relative;
    display: block;
    max-width: 770px;
    width: 100%;
    margin: 0 auto;
  }
  
  .coming-soon-page__subscribe-box form {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
  }
  
  .coming-soon-page__subscribe-box form input[type="email"] {
    position: relative;
    display: block;
    max-width: 490px;
    width: 100%;
    height: 60px;
    border-radius: 0;
    background: rgba(var(--hotelux-white-rgb), .10);
    border: none;
    color: var(--hotelux-white);
    font-size: 16px;
    font-weight: 400;
    padding-left: 30px;
    padding-right: 30px;
    transition: all 500ms ease 0s;
    font-family: var(--hotelux-font);
    outline: none;
  }
  
  .coming-soon-page__subscribe-box form .thm-btn {
    border: none;
    padding: 22px 35px 22px;
  }
  
  .coming-soon-page__subscribe-box form .thm-btn:hover {
    color: var(--hotelux-black);
  }
  
  .coming-soon-page__subscribe-box form .thm-btn::before,
  .coming-soon-page__subscribe-box form .thm-btn::after {
    background-color: var(--hotelux-white);
  }
  
  /*--------------------------------------------------------------
  # Contact One
  --------------------------------------------------------------*/
  .contact-one {
    position: relative;
    display: block;
    background-color: var(--hotelux-black);
    overflow: hidden;
    z-index: 1;
  }
  
  .contact-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .10;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  
  .contact-one__inner {
    position: relative;
    display: block;
    padding: 120px 0 120px;
  }
  
  .contact-one__img {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  
  .contact-one__img img {
    width: auto;
  }
  
  .contact-one__left {
    position: relative;
    display: block;
  }
  
  .contact-one__left .section-title__title {
    color: var(--hotelux-white);
  }
  
  .contact-one__left .section-title__tagline::after {
    background: var(--hotelux-black);
  }
  
  .contact-one__form {
    position: relative;
    display: block;
  }
  
  .contact-one__input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
  }
  
  .contact-one__input-box input[type="text"],
  .contact-one__input-box input[type="email"] {
    height: 55px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(var(--hotelux-white-rgb), .20);
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 55px;
    color: rgba(var(--hotelux-white-rgb), .70);
    display: block;
  }
  
  .contact-one__input-box .select-box {
    width: 100%;
  }
  
  .contact-one__input-box .nice-select {
    height: 55px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(var(--hotelux-white-rgb), .20);
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    color: rgba(var(--hotelux-white-rgb), .70);
    font-weight: 400;
    line-height: 55px;
    display: block;
    float: none;
  }
  
  .contact-one__input-box .nice-select:after {
    position: absolute;
    top: 22px;
    right: 20px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid rgba(var(--hotelux-white-rgb), .70);
    border-right: 2px solid rgba(var(--hotelux-white-rgb), .70);
    margin-top: 0px;
    z-index: 10;
  }
  
  .contact-one__input-box .nice-select .option {
    color: var(--hotelux-black);
  }
  
  .contact-one__input-box .nice-select .option.selected {
    font-weight: 500;
  }
  
  .contact-one__input-box .nice-select .option:hover,
  .contact-one__input-box .nice-select .option.focus,
  .contact-one__input-box .nice-select .option.selected.focus {
    color: var(--hotelux-white);
  }
  
  .contact-one__input-box textarea {
    height: 150px;
    width: 100%;
    background-color: transparent;
    border: 1px solid rgba(var(--hotelux-white-rgb), .20);
    padding: 15px 20px 30px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: rgba(var(--hotelux-white-rgb), .70);
    position: relative;
    display: block;
  }
  
  .contact-one__input-box.text-message-box {
    height: 150px;
  }
  
  .contact-one__btn-box {
    position: relative;
    display: block;
  }
  
  .contact-one__btn-box .thm-btn {
    border: none;
  }
  
  .contact-one__btn-box .thm-btn:hover {
    color: var(--hotelux-black);
  }
  
  .contact-one__btn-box .thm-btn::before,
  .contact-one__btn-box .thm-btn::after {
    background-color: var(--hotelux-white);
  }
  
  .contact-one__call-box {
    position: absolute;
    bottom: 0;
    right: 370px;
    border: 1px solid rgba(var(--hotelux-white-rgb), .20);
    padding: 25px 30px 25px;
    border-bottom: 0;
  }
  
  .contact-one__call-list {
    position: relative;
    display: flex;
    align-items: center;
    gap: 50px;
  }
  
  .contact-one__call-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 17px;
  }
  
  .contact-one__call-list li:first-child::before {
    display: none;
  }
  
  .contact-one__call-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background-color: var(--hotelux-base);
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .contact-one__call-icon:hover {
    background-color: var(--hotelux-white);
  }
  
  .contact-one__call-icon span {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: var(--hotelux-white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .contact-one__call-icon:hover span {
    color: var(--hotelux-black);
  }
  
  .contact-one__call-contact {
    position: relative;
    display: block;
  }
  
  .contact-one__call-contact p {
    font-weight: 500;
    color: rgba(var(--hotelux-white-rgb), .70);
  }
  
  .contact-one__call-contact h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    margin-top: 2px;
  }
  
  .contact-one__call-contact h4 a {
    color: var(--hotelux-white);
  }
  
  .contact-one__call-contact h4 a:hover {
    color: var(--hotelux-base);
  }
  
  
  /*==============================================
      Contact Two
  ===============================================*/
  .contact-two {
    position: relative;
    display: block;
    padding: 133px 0 0;
    z-index: 2;
  }
  
  .contact-two__inner {
    position: relative;
    display: block;
    background-color: var(--hotelux-black);
    padding: 80px 80px 80px;
    z-index: 1;
  }
  
  .contact-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .25;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  
  .contact-two__bg-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .10;
    mix-blend-mode: luminosity;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  
  
  .contact-two__inner .section-title__tagline::after {
    background: var(--hotelux-black);
  }
  
  .contact-two__inner .section-title__title {
    color: var(--hotelux-white);
  }
  
  .contact-two__img-1 {
    position: absolute;
    bottom: 0;
    right: 80px;
    z-index: -1;
  }
  
  .contact-two__img-1 img {
    width: auto;
  }
  
  .contact-two__btn-box {
    position: relative;
    display: inline-block;
  }
  
  /*--------------------------------------------------------------
  # Contact Info
  --------------------------------------------------------------*/
  .contact-info {
    position: relative;
    display: block;
    padding: 47px 0 57px;
    z-index: 1;
  }
  
  .contact-info__single {
    position: relative;
    display: block;
    background-color: var(--hotelux-primary);
    text-align: center;
    padding: 40px 40px 41px;
    margin-bottom: 30px;
        height: 100%;
  }
  
  .contact-info__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--hotelux-white);
    border-radius: 50%;
    margin: 0 auto;
    z-index: 1;
  }
  
  .contact-info__icon:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    border-radius: 50%;
    background-color: var(--hotelux-base);
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
  }
  
  .contact-info__single:hover .contact-info__icon:before {
    transform: scaleX(1);
  }
  
  .contact-info__icon span {
    position: relative;
    display: inline-block;
    font-size: 32px;
    color: var(--hotelux-black);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
  }
  
  .contact-info__single:hover .contact-info__icon span {
    transform: scale(0.9);
    color: var(--hotelux-white);
  }
  
  
  .contact-info__single p {
    margin-top: 20px;
    margin-bottom: 5px;
  }
  
  .contact-info__single h5 {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: var(--hotelux-black);
    font-family: var(--hotelux-font);
  }
  
  .contact-info__single h5 a {
    color: var(--hotelux-black);
  }
  
  .contact-info__single h5 a:hover {
    color: var(--hotelux-base)
  }
  
  
  /*--------------------------------------------------------------
  # Contact Page
  --------------------------------------------------------------*/
  .contact-page {
    position: relative;
    display: block;
    padding: 0 0 50px;
    z-index: 1;
  }
  
  .contact-page__inner {
    position: relative;
    display: block;
    background-color: var(--hotelux-black);
    border-radius: 20px;
    padding: 60px 0 60px;
  }
  
  .contact-page__left {
    position: relative;
    display: block;
    margin-left: 60px;
    margin-right: 10px;
  }
  
  .google-map__one {
    position: relative;
    display: block;
    border: none;
    height: 523px;
    width: 100%;
    border-radius: 20px;
  }
  
  .contact-page__right {
    position: relative;
    display: block;
    margin-left: 20px;
    margin-right: 40px;
  }
  
  .contact-page__form-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2em;
    color: var(--hotelux-white);
    margin-bottom: 26px;
  }
  
  .contact-page__form {
    position: relative;
    display: block;
  }
  
  .contact-page__input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
  }
  
  .contact-page__input-box input[type="text"],
  .contact-page__input-box input[type="email"],
  .contact-page__input-box input[type="number"] {
    height: 60px;
    width: 100%;
    background-color: rgba(var(--hotelux-white-rgb), 0.06);
    border: none;
    padding-left: 20px;
    padding-right: 20px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    color: rgba(var(--hotelux-white-rgb), .70);
    display: block;
  }
  
  .contact-page__input-box textarea {
    font-size: 16px;
    font-weight: 400;
    color: rgba(var(--hotelux-white-rgb), .70);
    height: 175px;
    width: 100%;
    background-color: rgba(var(--hotelux-white-rgb), 0.06);
    border: none;
    padding: 15px 20px 30px;
    outline: none;
    position: relative;
    display: block;
  }
  
  .contact-page__input-box.text-message-box {
    height: 175px;
  }
  
  
  .contact-page__btn-box {
    position: relative;
    display: block;
  }
  
  .contact-page__btn-box .thm-btn {
    border: none;
  }
  
  .contact-page__btn-box .thm-btn:hover {
    color: var(--hotelux-base);
  }
  
  .contact-page__btn-box .thm-btn::before,
  .contact-page__btn-box .thm-btn::after {
    background-color: var(--hotelux-white);
  }
  
  /*==============================================
      Counter One     
  ===============================================*/
  .counter-one {
    position: relative;
    display: block;
    padding: 108px 0 90px;
    background-color: var(--hotelux-black);
    z-index: 1;
  }
  
  .counter-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.50;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  
  .counter-one__inner {
    position: relative;
    display: block;
  }
  
  .counter-one__count-list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .counter-one__count-list li {
    position: relative;
    text-align: center;
    flex: 0 0 25%;
    max-width: 25%;
    width: 100%;
  }
  
  .counter-one__single {
    position: relative;
    display: flex;
    margin-bottom: 22px;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
  
  .counter-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background-color: var(--hotelux-base);
    border-radius: 50%;
  }
  
  .counter-one__icon::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid rgba(var(--hotelux-white-rgb), .50);
    border-radius: 50%;
  }
  
  .counter-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: var(--hotelux-white);
    transition: all 500ms linear;
    transition-delay: 0.1s;
  }
  
  .counter-one__single:hover .counter-one__icon span {
    -webkit-animation-name: wobble-horizontal-hover;
    animation-name: wobble-horizontal-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
  }
  
  .counter-one__content {
    position: relative;
    display: block;
  }
  
  .counter-one__count {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2px;
  }
  
  .counter-one__count h3 {
    font-size: 45px;
    font-weight: 600;
    line-height: 45px !important;
    text-transform: uppercase;
    margin: 0 0 5px;
    font-family: var(--hotelux-font-two) !important;
    letter-spacing: 0.03em;
    color: var(--hotelux-white);
  }
  
  .counter-one__count span {
    font-size: 45px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 45px !important;
    font-family: var(--hotelux-font-two) !important;
    color: var(--hotelux-white);
    letter-spacing: 0.03em;
  }
  
  .counter-one__text {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: var(--hotelux-white);
  }
  
  
  
  
  
  
  /* Floating Box */
.float-box{
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 9999;
}

/* Button base */
.f-btn{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 18px;
    background-color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: 0.35s ease;
    animation: floatUpDown 3s infinite ease-in-out;
}
.f-btn span{
  color: #000000;
}
/* Icon box */
.f-icon{
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    transition: 0.4s ease;
    animation: glowPulse 2s infinite ease-in-out;
}

/* Specific colors */
.call-btn .f-icon{
    background: linear-gradient(135deg,#007bff,#004cbd);
}
.wa-btn .f-icon{
    background: linear-gradient(135deg,#25D366,#128C7E);
}

/* Hover animation */
.f-btn:hover{
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.45);
}

.f-btn:hover .f-icon{
    transform: rotate(12deg) scale(1.15);
}

/* Floating up-down animation */
@keyframes floatUpDown{
    0%, 100%{ transform: translateY(0); }
    50%{ transform: translateY(-8px); }
}

/* Glow pulse effect */
@keyframes glowPulse{
    0%, 100%{
        box-shadow: 0 0 0px rgba(255,255,255,0.4);
    }
    50%{
        box-shadow: 0 0 15px rgba(255,255,255,0.7);
    }
}

/* MOBILE – Icon only */
@media(max-width: 480px){
    .f-btn span{
        display: none;
    }
    .f-btn{
        padding: 12px;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }
}

  /*==============================================
      End
  ===============================================*/