/*==========================================
      MASTER STYLESHEET FOR Bellevue
==========================================*/
/* #FBE946 */
/*==========================================
     ||||| START TABLE OF CONTENT |||||
==========================================

Created by Bellevue Theme

1. Global styles

/*==========================================
    |||||  END TABLE OF CONTENT  |||||
==========================================*/
/*  ==========================================================================
    1. Global Styles
    ========================================================================== */

    body {
      font-family: 'Lato', serif;
      color:#191B18;
      font-size: 18px;
      line-height: 36px;
      overflow-x: hidden;
    }

    p,ul {
      padding: 0;
      margin: 0;
    }
    h1,h2,h3,h4,h5,h6{
      margin:0;
      padding: 0;
      font-weight: 400;
      font-family: 'Spinnaker', sans-serif;
    }
    h1{
      font-size: 54px;
      line-height: 70px;
    }
    h2{
      font-size: 30px;
      line-height: 39px;
    }
    h3{
      font-size: 24px;
      line-height: 31px;
    }
    h4{
      font-size: 22px;
      line-height: 28px;
    }
    h5{
      font-size: 18px;
      line-height: 24px;
    }
    h6{
      font-size: 16px;
      line-height: 20px;
    }

    ul {
      list-style-type: none;
    }
    a {
      color: #191B18;
      text-decoration: none;
      display: inline-block;
      outline: none;
      transition: .5s ease;
    }
    a:hover{
        color: #191B1870;
        text-decoration: none;
        outline: none;
        transition: 0.3s ease;
    }
    p{
        color: #191B18;
        margin-bottom: 10px;
    }
    p.thmv-p-light{
        color: #191B18;
        opacity:0.5;
    }
    .thmv-paragraph p:last-child{
        margin-bottom: 0;
    }
    img {
      max-width: 100%;
      display: inline-block;
    }
    button {
      border:none;
      outline:none;
      box-shadow: none;
      display: block;
      padding: 0;
      background: transparent;
    }
    button:focus,
    input:focus{
      outline: none;
      box-shadow:none !important;
    }
    input,textarea {
      font-family: 'Lato', sans-serif;
      display: block;
      font-size: 16px;
      line-height: 30px;
      outline: none;
      box-shadow: none;
      transition: all 0.3s ease-in-out;
    }
    textarea{
        resize:none;
    }
    input:focus,
    textarea:focus,
    .form-select:focus,
    .form-control:focus{
      outline: none;
      box-shadow: none;
    }
    label {
      display: inline-block;
      max-width: 100%;
      margin-bottom: 0;
      font-weight: 500;
      margin-top: 3px;
      font-size: 16px;
    }
    .clear_fix {
      clear:both;
    }
    .clear_fix:after {
      display: table;
      content: '';
      clear: both;
    }
    .float_left {
      float: left;
    }
    .float_right {
      float: right;
    }
    hr.thmv-separator{
        margin:30px 0px;
    }

    /*====== Read More Button Style ======*/
    .read-more-btn{
      font-size: 18px;
      line-height: 36px;
      font-weight: 400;
      position: relative;
      transition: all 0.3s;
    }
    .read-more-btn:hover{
        opacity:1;
    }
    .read-more-btn::after{
        content:"";
        background-image:url("../images/icons/arrow-right.svg");
        background-size:cover;
        display: inline-block;
        width:20px;
        height:10px;
        position: absolute;
        top: 50%;
        transform:translate(50% , -30%);
        transition: all 0.3s;
    }
    .read-more-btn:hover::after{
        transform:translate(80% , -30%);

    }
    /*====== Button Style ======*/
    .btn-full-filled,
    .btn-full-filled-light{
      font-size: 14px;
      line-height: 16px;
      font-weight: 700;
      text-align: center;
      border:1px solid #191B18;
      min-width: 220px;
      padding: 17px 30px;
      display: inline-block;
      vertical-align: middle;
      text-transform: uppercase;
      position: relative;
      transition: all 0.3s ease 0s;

    }
    .btn-full-filled{
        background:#191B18;
        color:#ffffff;
        border-color:#191B18;
    }
    .btn-full-filled:hover{
        background:transparent;
        color:#191B18;
        border-color:#191B18;
    }
    .btn-full-filled-light{
        background: #FFFFFF;
        color:#191B18;
        border-color:#FFFFFF;
    }
    .btn-full-filled-light:hover{
        background: #191B18;
        color:#FFFFFF;
        border-color:#191B18;
    }
    /* Image Hover Grayscale */
    .thmv-img-gray img,
    .thmv-img-gray-hover img:hover {
        filter: grayscale(100%);
        transition: all 0.3s;
        cursor: pointer;
    }
    .thmv-img-gray img:hover{
        filter: grayscale(0%);
        transition: all 0.3s;
        cursor: pointer;
    }

    /* heading style */
    .thmv-heading-style{
        position: relative;
    }
    .thmv-heading-style::before{
        content:"";
        width:1px;
        height:95px;
        display: inline-block;
        background:#FFFFFF;
        position: absolute;
        bottom: 0;
        left:30%;
        transform: translate(0%, -70%);

    }

    /* slick Slider */

    .slider {
        width: 100%;
        margin: 0px auto;
        padding:0px;
    }
    .slick-slide {
      margin: 0px 10px;
    }
    .slick-dots li button{
        width:12px;
        height: 12px;
    }
    .slick-dots li button::before{
        width:12px;
        height:12px;
        display: inline-block;
        background:transparent;
        border:1px solid #000;
        font-size: 0;
        opacity: 1;
    }
    .slick-dots li.slick-active button:before{
        background:#000;
        opacity: 1;
    }

/*=====================================
    =            theme colors             =
    =====================================*/
    /*----------  theme globel color  ----------*/
        .thmv-dark-color{
            color:#191B18;
        }
        .thmv-dark-bg{
            background:#191B18;
        }
        .thmv-light-color{
            color:#ffffff;
        }
        .thmv-light-bg{
            background:#ffffff;
        }

    /*----------  theme color 1  ----------*/

        /* Theme colors Tundora  " #404040 " */
            .thmv-bg-tundora{
                background-color: #404040;
            }
            .thmv-color-tundora{
                color: #404040;
            }

        /* Theme colors full light gray  " #EAEAEA " */
            .thmv-bg-full-light-gray{
                background-color: #EAEAEA;
            }
            .thmv-color-full-light-gray{
                color: #EAEAEA;
            }

    /*----------  theme color 2  ----------*/

        /* Theme colors Gray Asparagus " #4E524C " */
            .thmv-bg-gray-Asparagus{
                background-color: #4E524C;
            }
            .thmv-color-gray-Asparagus{
                color: #4E524C;
            }

        /* Theme colors sisal " #D8D4C2 " */
            .thmv-bg-sisal{
                background-color: #D8D4C2;
            }
            .thmv-color-sisal{
                color: #D8D4C2;
            }

    /*----------  theme color 3  ----------*/

        /* Theme colors Tiber " #042E28 " */
            .thmv-bg-tiber{
                background-color: #042E28;
            }
            .thmv-color-tiber{
                color: #042E28;
            }

        /* Theme colors sisal " #D8D4C2 " */
            .thmv-bg-sisal{
                background-color: #D8D4C2;
            }
            .thmv-color-sisal{
                color: #D8D4C2;
            }

    /*----------  theme color 4  ----------*/

        /* Theme colors Boston Blue " #3E96B6 " */
            .thmv-bg-boston-blue{
                background-color: #3E96B6;
            }
            .thmv-color-boston-blue{
                color: #3E96B6;
            }

        /* Theme colors Apricot Peach " #FBC9B3 " */
              .thmv-bg-apricot-peach{
                background-color: #FBC9B3;
            }
            .thmv-color-apricot-peach{
                color: #FBC9B3;
            }

    /*----------  theme color 5  ----------*/

        /* Theme colors Governor Bay " #4636AE " */
            .thmv-bg-governor-bay{
                background-color: #4636AE;
            }
            .thmv-color-governor-bay{
                color: #4636AE;
            }

        /* Theme colors Sunglow " #FFD231 " */
            .thmv-bg-sunglow{
                background-color: #FFD231;
            }
            .thmv-color-sunglow{
                color: #FFD231;
            }
/*=====  End of theme colors   ======*/

/*=============================================
    =         Header Section Styles            =
    =============================================*/
    .thmv-top-nav{
        position: sticky;
        top: 0;
        z-index: 10;
    }
    #navbar_top{
        position: relative;
    }
    .thmv-logo a,
    .thmv-logo a:hover{
        color:#404040;
    }
    .thmv-logo h3{
        font-size: 32px;
        line-height: 40px;
        font-weight: 900;
        text-transform: uppercase;
    }
    .thmv-logo img{
        width:100%;
        max-width:170px;
    }
    .thmv-top-nav-fix .thmv-bg-transparent .thmv-logo h3,
    .thmv-top-nav-fix .thmv-navbar-dark.thmv-bg-transparent .thmv-logo h3{
        color:#FFFFFF;
    }
    .thmv-top-nav-fix .thmv-bg-transparent.fixed-top .thmv-logo h3,
    .thmv-top-nav-fix .thmv-navbar-dark.thmv-bg-transparent.fixed-top .thmv-logo h3{
        color:#191B18;
    }
    .navbar-toggler-icon {
        width: auto;
        height: 30px;
    }
    .navbar-toggler-icon i {
        color: #191B18;
        font-size: 30px;
    }

    .thmv-navbar-light,
    .thmv-navbar-dark{
        background: #ffffff;
        border-bottom: 1px solid #EBECEF;
        transition:all 0.3s;
        padding: 0;
    }
    .thmv-navbar-light.thmv-bg-transparent,
    .thmv-navbar-dark.thmv-bg-transparent{
        background:transparent;
        border:none;
    }
    .thmv-navbar-light .nav-link,
    .thmv-navbar-dark .nav-link {
        color: #282828;
        font-size: 16px;
        line-height: 99px;
        font-weight: 400;
        padding: 0;
        padding:0px 20px !important;
        height:99px;
        position: relative;
    }

    .thmv-menu .nav-item:hover .nav-link{
        color: #404040 !important;
    }
    .thmv-menu .nav-item.active .nav-link{
        color: #404040 !important;
    }
    .thmv-menu .nav-link {
        position: relative;
        display: inline-block;
    }
    .thmv-menu .nav-item{
        position: relative;
        transition: all 200ms linear;
    }
    .thmv-menu .nav-item:after{
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 4px;
        content: '';
        background-color: #404040;
        opacity: 0;
        transition: all 200ms linear;
    }
    .thmv-menu .nav-item:hover:after{
        bottom: 0;
        opacity: 1;
    }
    .thmv-menu .nav-item.active:hover:after{
        opacity: 0;
    }
    .thmv-menu .nav-item .dropdown-menu {
        transform: translate3d(0, 10px, 0);
        visibility: hidden;
        opacity: 0;
        max-height: 0;
        display: block;
        padding: 0;
        margin: 0;
        transition: all 200ms linear;
        min-width:250px;
        border:none;
        border-radius:0;
    }
    .thmv-menu .nav-item.show .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 999px;
        transform: translate3d(0, 0px, 0);
    }
    .thmv-menu .dropdown-menu {
        margin: 0;
        font-size: 13px;
        letter-spacing: 1px;
        color: #404040;
        background-color: #EAEAEA;
        border: none;
        transition: all 200ms linear;
    }
    .thmv-menu .dropdown-toggle::after {
        display: none;
    }

    .thmv-menu .dropdown-item {
        padding: 3px 15px;
        color: #404040;
        transition: all 200ms linear;
    }
    .thmv-menu .dropdown-item:hover,
    .thmv-menu .dropdown-item:focus {
        color: #fff;
        background-color: rgba(64, 64, 64, .6);
    }
    .thmv-sub-menu{
        min-width:200px;
        background:#f5f5f5;
        position: absolute;
        top: 100%;
        transform:translate(0% , 15%);
        opacity: 0;
        display: none;
        transition:all 0.3s;
    }
    .thmv-sub-menu li a{
        line-height:24px;
        padding:15px;
        display: block;
    }
    .thmv-sub-menu li a:hover{
        background:#000;
        color:#FFFFFF;
    }
    .thmv-navbar-light .navbar-nav .thmv-menu:hover .thmv-sub-menu,
    .thmv-navbar-dark .navbar-nav .thmv-menu:hover .thmv-sub-menu{
        top: 100%;
        transform:translate(0% , 0%);
        opacity:1;
        display: block;
    }
    .thmv-right-menu .thmv-social{
        display: flex;
        align-items: center;
        justify-content:end;
        width:130px;
        margin-left: 40px;
    }
    .thmv-right-menu .thmv-social li{
        margin-left:10px;
        position: relative;
    }
    .thmv-right-menu .thmv-social li a{
        width:40px;
        height: 40px;
        border-radius:100px;
        background:#ffffff;
        text-align: center;
    }
    .thmv-right-menu .thmv-social li i{
        font-size: 16px;
    }
    .thmv-right-menu .btn-outline{
        margin-left:15px;
    }
    .thmv-navbar-light.fixed-top,
    .thmv-navbar-dark.fixed-top{
        border-bottom:1px solid #cccccc;
    }
    .thmv-navbar-light.fixed-top .navbar-brand,
    .thmv-navbar-dark.fixed-top .navbar-brand{
      color: #191B18;
      text-transform: uppercase;
    }
    .thmv-navbar-light.fixed-top .nav-link,
    .thmv-navbar-dark.fixed-top .nav-link{
      color: #191B18;
    }
    .thmv-navbar-light.fixed-top.thmv-bg-transparent,
    .thmv-navbar-dark.fixed-top.thmv-bg-transparent{
        background:#FFFFFF;
    }
    .navbar-toggler {
        float: right;
        border: none;
        padding-right: 0;
    }
    .navbar-toggler:active,
    .navbar-toggler:focus {
        outline: none;
    }
    .thmv-navbar-light .navbar-toggler-icon,
    .thmv-navbar-dark .navbar-toggler-icon {
        width: 24px;
        height: 17px;
        background-image: none;
        position: relative;
        border-bottom: 3px solid #000;
        transition: all 300ms linear;
    }
    .thmv-navbar-light .navbar-toggler-icon:after,
    .thmv-navbar-light .navbar-toggler-icon:before,
    .thmv-navbar-drak .navbar-toggler-icon:after,
    .thmv-navbar-drak .navbar-toggler-icon:before{
        width: 24px;
        position: absolute;
        height: 3px;
        background-color: #000;
        top: 0;
        left: 0;
        content: '';
        z-index: 2;
        transition: all 300ms linear;
    }
    .thmv-navbar-light .navbar-toggler-icon:after,
    .thmv-navbar-dark .navbar-toggler-icon:after{
        top: 7px;
    }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
        transform: rotate(45deg);
    }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
        transform: translateY(7px) rotate(-45deg);
    }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        border-color: transparent;
    }
/*=====  End of Header Section Styles  ======*/

/*----------  home style 1 colors  ----------*/
    .thmv-dark-color{
        color:#191B18;
    }
    .thmv-dark-bg{
        background:#191B18;
    }
    .thmv-home-1 .thmv-wel-text h6,
    .thmv-home-1 .thmv-wel-text .thmv-wel-title,
    .thmv-home-1 .thmv-wel-info,
    .thmv-home-1 .thmv-welcome-box .thmv-pills-blok p,
    .thmv-home-1 .thmv-uniq-offer  .thmv-welcome-box h2,
    .thmv-home-1 .thmv-uniq-offer  .thmv-welcome-box p,
    .thmv-home-1 .thmv-book-room .thmv-welcome-box h2,
    .thmv-home-1 .thmv-book-room .thmv-welcome-box p{
        color:#ffffff;
    }
    .thmv-light-bg,
    .thmv-home-1 .thmv-testimonial-box,
    /* home-v2 */
    .thmv-home-1.thmv-home-v2 .thmv-welcome-sec{
        background:#ffffff;
    }
    .thmv-bg-tundora,
    .thmv-home-1 .thmv-header-sec,
    .thmv-home-1 .thmv-welcome-sec .thmv-welcome-info::after,
    .thmv-home-1 .thmv-welcome-sec .thmv-welcome-info::before,
    .thmv-home-1 .thmv-welcome-box .thmv-pills-blok p,
    .thmv-home-1 .thmv-quote-icon,
    .thmv-home-1 .slick-dots li.slick-active button:before,
    .thmv-home-1 .thmv-uniq-offer .thmv-uniq-box,
    .thmv-home-1 .thmv-book-room,
    .thmv-home-1 .datepick-popup .datepick-cmd-prev:after,
    .thmv-home-1 .datepick-popup  .datepick-cmd-next:after,
    .thmv-home-1 .datepick-popup .datepick-ctrl .datepick-cmd{
        background-color: #404040;
    }
    .thmv-color-tundora,
    .thmv-home-1 .thmvfloor-list-icon .thmv-listing-icon i,
    /* home-v2 */
    .thmv-home-1.thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li .thmv-booklist-icon i{
        color: #404040;
    }
    .thmv-home-1 .slick-dots li button::before{
        border-color:#404040;
    }
    .thmv-bg-full-light-gray,
    .thmv-home-1 .thmv-welcome-sec,
    .thmv-home-1 .thmv-testi,
    .thmv-home-1 .thmv-testi .slick-testimonial-slider::after,
    .thmv-home-1 .thmv-testi .slick-testimonial-slider::before,
    .thmv-home-1 .thmv-booking-sec .thmv-booking-img .thmv-book-price,
    /* home-v2 */
    .thmv-home-1.thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li:hover::after,
    .thmv-home-1.thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li.active::after{
        background-color: #EAEAEA;
    }
    .thmv-color-full-light-gray{
        color: #EAEAEA;
    }
    .thmv-home-1 .btn-full-filled,
    .thmv-home-1 .thmv-uniq-box .btn-full-filled,
    .thmv-home-1 .thmv-book-room .thmv-welcome-box .thmv-availability-check .form-group button{
        background: #ffffff;
        color: #191B18;
        border-color: #ffffff;
    }
    .thmv-home-1 .btn-full-filled:hover,
    .thmv-home-1 .thmv-uniq-box .btn-full-filled:hover,
    .thmv-home-1 .thmv-book-room .thmv-welcome-box .thmv-availability-check .form-group button:hover{
        background: #191B18;
        color: #FFFFFF;
        border-color: #191B18;
    }

/*----------  home style 2 colors  ----------*/
    .thmv-dark-color{
        color:#191B18;
    }
    .thmv-dark-bg{
        background:#191B18;
    }
    .thmv-home-2 .thmv-wel-text h6,
    .thmv-home-2 .thmv-wel-text .thmv-wel-title,
    .thmv-home-2 .thmv-wel-info,
    .thmv-home-2 .thmv-welcome-box .thmv-pills-blok p,
    .thmv-home-2 .thmv-uniq-offer  .thmv-welcome-box h2,
    .thmv-home-2 .thmv-uniq-offer  .thmv-welcome-box p,
    .thmv-home-2 .thmv-book-room .thmv-welcome-box h2,
    .thmv-home-2 .thmv-book-room .thmv-welcome-box p{
        color:#ffffff;
    }
    .thmv-light-bg,
    /* home-v2 */
    .thmv-home-2.thmv-home-v2 .thmv-welcome-sec{
        background:#ffffff;
    }
    .thmv-bg-gray-Asparagus,
    .thmv-home-2 .thmv-header-sec,
    .thmv-home-2 .thmv-welcome-sec .thmv-welcome-info::after,
    .thmv-home-2 .thmv-welcome-sec .thmv-welcome-info::before,
    .thmv-home-2 .thmv-welcome-box .thmv-pills-blok p,
    .thmv-home-2 .thmv-quote-icon,
    .thmv-home-2 .slick-dots li.slick-active button:before,
    .thmv-home-2 .thmv-uniq-offer .thmv-uniq-box,
    .thmv-home-2 .thmv-book-room,
    .thmv-home-2 .datepick-popup .datepick-cmd-prev:after,
    .thmv-home-2 .datepick-popup  .datepick-cmd-next:after,
    .thmv-home-2 .datepick-popup .datepick-ctrl .datepick-cmd{
        background-color: #4E524C;
    }
    .thmv-color-gray-Asparagus,
    .thmv-home-2 .thmv-color-gray-Asparagus,
    .thmv-home-2 .thmvfloor-list-icon .thmv-listing-icon i,
    /* home-v2 */
    .thmv-home-2.thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li .thmv-booklist-icon i{
        color: #4E524C;
    }
    .thmv-border-gray-Asparagus
    .thmv-home-2 .thmv-border-gray-Asparagus,
    .thmv-home-2 .slick-dots li button::before{
        border-color:#4E524C;
    }
    .thmv-bg-sisal,
    .thmv-home-2 .thmv-welcome-sec,
    .thmv-home-2 .thmv-testimonial-box,
    .thmv-home-2 .thmv-testi .slick-testimonial-slider::after,
    .thmv-home-2 .thmv-testi .slick-testimonial-slider::before,
    .thmv-home-2 .thmv-booking-sec .thmv-booking-img .thmv-book-price,
    /* home-v2 */
    .thmv-home-2.thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li:hover::after,
    .thmv-home-2.thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li.active::after{
        background-color: #D8D4C2;
    }
    .thmv-color-sisal{
        color: #D8D4C2;
    }
    .thmv-border-sisal{
        border-color: #D8D4C2;
    }
    .thmv-home-2 .btn-full-filled,
    .thmv-home-2 .thmv-uniq-box .btn-full-filled,
    .thmv-home-2 .thmv-book-room .thmv-welcome-box .thmv-availability-check .form-group button{
        background: #F1E7A9;
        color: #191B18;
        border-color: #F1E7A9;
    }
    .thmv-home-2 .btn-full-filled:hover,
    .thmv-home-2 .thmv-uniq-box .btn-full-filled:hover,
    .thmv-home-2 .thmv-book-room .thmv-welcome-box .thmv-availability-check .form-group button:hover{
        background: #191B18;
        color: #FFFFFF;
        border-color: #191B18;
    }

/*----------  home style 3 colors  ----------*/
    .thmv-dark-color{
        color:#191B18;
    }
    .thmv-dark-bg{
        background:#191B18;
    }
    .thmv-home-3 .thmv-wel-text h6,
    .thmv-home-3 .thmv-wel-text .thmv-wel-title,
    .thmv-home-3 .thmv-wel-info,
    .thmv-home-3 .thmv-welcome-box .thmv-pills-blok p,
    .thmv-home-3 .thmv-uniq-offer  .thmv-welcome-box h2,
    .thmv-home-3 .thmv-uniq-offer  .thmv-welcome-box p,
    .thmv-home-3 .thmv-book-room .thmv-welcome-box h2,
    .thmv-home-3 .thmv-book-room .thmv-welcome-box p{
        color:#ffffff;
    }
    .thmv-light-bg,
    /* home-v2 */
    .thmv-home-3.thmv-home-v2 .thmv-welcome-sec{
        background:#ffffff;
    }
    .thmv-bg-tiber,
    .thmv-home-3 .thmv-header-sec,
    .thmv-home-3 .thmv-welcome-sec .thmv-welcome-info::after,
    .thmv-home-3 .thmv-welcome-sec .thmv-welcome-info::before,
    .thmv-home-3 .thmv-welcome-box .thmv-pills-blok p,
    .thmv-home-3 .thmv-quote-icon,
    .thmv-home-3 .slick-dots li.slick-active button:before,
    .thmv-home-3 .thmv-uniq-offer .thmv-uniq-box,
    .thmv-home-3 .thmv-book-room,
    .thmv-home-3 .datepick-popup .datepick-cmd-prev:after,
    .thmv-home-3 .datepick-popup  .datepick-cmd-next:after,
    .thmv-home-3 .datepick-popup .datepick-ctrl .datepick-cmd{
        background-color: #042E28;
    }
    .thmv-color-tiber
    .thmv-home-3 .thmv-color-tiber,
    .thmv-home-3 .thmvfloor-list-icon .thmv-listing-icon i,
    /* home-v2 */
    .thmv-home-3.thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li .thmv-booklist-icon i{
        color: #042E28;
    }
    .thmv-border-gray-tiber
    .thmv-home-3 .thmv-border-gray-tiber,
    .thmv-home-3 .slick-dots li button::before{
        border-color:#042E28;
    }
    .thmv-bg-sisal,
    .thmv-home-3 .thmv-welcome-sec,
    .thmv-home-3 .thmv-testimonial-box,
    .thmv-home-3 .thmv-testi .slick-testimonial-slider::after,
    .thmv-home-3 .thmv-testi .slick-testimonial-slider::before,
    .thmv-home-3 .thmv-booking-sec .thmv-booking-img .thmv-book-price,
    /* home-v2 */
    .thmv-home-3.thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li:hover::after,
    .thmv-home-3.thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li.active::after{
        background-color: #D8D4C2;
    }
    .thmv-color-sisal{
        color: #D8D4C2;
    }
    .thmv-border-sisal{
        border-color: #D8D4C2;
    }
    .thmv-home-3 .btn-full-filled,
    .thmv-home-3 .thmv-uniq-box .btn-full-filled,
    .thmv-home-3 .thmv-book-room .thmv-welcome-box .thmv-availability-check .form-group button{
        background: #FFFFFF;
        color: #191B18;
        border-color: #FFFFFF;
    }
    .thmv-home-3 .btn-full-filled:hover,
    .thmv-home-3 .thmv-uniq-box .btn-full-filled:hover,
    .thmv-home-3 .thmv-book-room .thmv-welcome-box .thmv-availability-check .form-group button:hover{
        background: #D8D4C2;
        color: #191B18;
        border-color: #D8D4C2;
    }

/*----------  home style 4 colors  ----------*/
    .thmv-dark-color,
    .thmv-home-nav-4 .thmv-right-menu .thmv-social li a:hover{
        color:#191B18;
    }
    .thmv-dark-bg{
        background:#191B18;
    }
    .thmv-light-color,
    .thmv-home-4 .thmv-wel-text h6,
    .thmv-home-4 .thmv-wel-text .thmv-wel-title,
    .thmv-home-4 .thmv-wel-info,
    .thmv-home-4 .thmv-welcome-box .thmv-pills-blok p,
    .thmv-home-4 .thmv-uniq-offer  .thmv-welcome-box h2,
    .thmv-home-4 .thmv-uniq-offer  .thmv-welcome-box p,
    .thmv-home-4 .thmv-book-room .thmv-welcome-box h2,
    .thmv-home-4 .thmv-book-room .thmv-welcome-box p,
    .thmv-home-nav-4 .thmv-right-menu .thmv-social li a{
        color:#ffffff;
    }
    .thmv-light-bg,
    .thmv-home-4 .thmv-welcome-sec .thmv-welcome-info::after,
    .thmv-home-4 .thmv-welcome-sec .thmv-welcome-info::before,
    /* home-v2 */
    .thmv-home-4.thmv-home-v2 .thmv-welcome-sec{
        background:#ffffff;
    }

    .thmv-bg-boston-blue,
    .thmv-home-4 .thmv-header-sec,
    .thmv-home-4 .thmv-welcome-box .thmv-pills-blok p,
    .thmv-home-4 .thmv-quote-icon,
    .thmv-home-4 .slick-dots li.slick-active button:before,
    .thmv-home-4 .thmv-uniq-offer .thmv-uniq-box,
    .thmv-home-4 .thmv-book-room,
    .thmv-home-4 .datepick-popup .datepick-cmd-prev:after,
    .thmv-home-4 .datepick-popup  .datepick-cmd-next:after,
    .thmv-home-4 .datepick-popup .datepick-ctrl .datepick-cmd,
    .thmv-home-nav-4 .thmv-right-menu .thmv-social li a{
        background-color: #3E96B6;
    }
    .thmv-color-boston-blue,
    .thmv-home-4 .thmv-color-tiber,
    .thmv-home-4 .thmvfloor-list-icon .thmv-listing-icon i,
    /* home-v2 */
    .thmv-home-4.thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li .thmv-booklist-icon i{
        color: #3E96B6;
    }
    .thmv-border-boston-blue,
    .thmv-home-4 .thmv-border-gray-tiber,
    .thmv-home-4 .slick-dots li button::before{
        border-color:#3E96B6;
    }
    .thmv-bg-apricot-peach,
    .thmv-home-4 .thmv-welcome-sec,
    .thmv-home-4 .thmv-testimonial-box,
    .thmv-home-4 .thmv-testi .slick-testimonial-slider::after,
    .thmv-home-4 .thmv-testi .slick-testimonial-slider::before,
    .thmv-home-4 .thmv-booking-sec .thmv-booking-img .thmv-book-price,
    .thmv-home-nav-4 .thmv-right-menu .thmv-social li a:hover,
    /* home-v2 */
    .thmv-home-4.thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li:hover::after,
    .thmv-home-4.thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li.active::after{
        background-color: #FBC9B3;
    }
    .thmv-color-apricot-peach{
        color: #FBC9B3;
    }
    .thmv-border-apricot-peach{
        border-color: #FBC9B3;
    }
    .thmv-home-4 .btn-full-filled,
    .thmv-home-4 .thmv-uniq-box .btn-full-filled,
    .thmv-home-4 .thmv-book-room .thmv-welcome-box .thmv-availability-check .form-group button{
        background: #FFFFFF;
        color: #12617E;
        border-color: #FFFFFF;
    }
    .thmv-home-4 .btn-full-filled:hover,
    .thmv-home-4 .thmv-uniq-box .btn-full-filled:hover,
    .thmv-home-4 .thmv-book-room .thmv-welcome-box .thmv-availability-check .form-group button:hover{
        background: #FBC9B3;
        color: #191B18;
        border-color: #191B18;
    }

/*----------  home style 5 colors  ----------*/
    .thmv-dark-color,
    .thmv-home-nav-5 .thmv-right-menu .thmv-social li a:hover{
        color:#191B18;
    }
    .thmv-dark-bg{
        background:#191B18;
    }
    .thmv-light-color,
    .thmv-home-5 .thmv-wel-text h6,
    .thmv-home-5 .thmv-wel-text .thmv-wel-title,
    .thmv-home-5 .thmv-wel-info,
    .thmv-home-5 .thmv-welcome-box .thmv-pills-blok p,
    .thmv-home-5 .thmv-uniq-offer  .thmv-welcome-box h2,
    .thmv-home-5 .thmv-uniq-offer  .thmv-welcome-box p,
    .thmv-home-5 .thmv-book-room .thmv-welcome-box h2,
    .thmv-home-5 .thmv-book-room .thmv-welcome-box p,
    .thmv-home-nav-5 .thmv-right-menu .thmv-social li a{
        color:#ffffff;
    }
    .thmv-light-bg,
    .thmv-home-5 .thmv-welcome-sec .thmv-welcome-info::after,
    .thmv-home-5 .thmv-welcome-sec .thmv-welcome-info::before,
    /* home-v2 */
    .thmv-home-5.thmv-home-v2 .thmv-welcome-sec{
        background:#ffffff;
    }
    .thmv-bg-governor-bay,
    .thmv-home-5 .thmv-header-sec,
    .thmv-home-5 .thmv-welcome-box .thmv-pills-blok p,
    .thmv-home-5 .thmv-quote-icon,
    .thmv-home-5 .slick-dots li.slick-active button:before,
    .thmv-home-5 .thmv-uniq-offer .thmv-uniq-box,
    .thmv-home-5 .thmv-book-room,
    .thmv-home-5 .datepick-popup .datepick-cmd-prev:after,
    .thmv-home-5 .datepick-popup  .datepick-cmd-next:after,
    .thmv-home-5 .datepick-popup .datepick-ctrl .datepick-cmd,
    .thmv-home-nav-5 .thmv-right-menu .thmv-social li a{
        background-color: #4636AE;
    }
    .thmv-color-governor-bay,
    .thmv-home-5 .thmv-color-tiber,
    .thmv-home-5 .thmvfloor-list-icon .thmv-listing-icon i,
    /* home-v2 */
    .thmv-home-5.thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li .thmv-booklist-icon i{
        color: #4636AE;
    }
    .thmv-border-governor-bay,
    .thmv-home-5 .thmv-border-gray-tiber,
    .thmv-home-5 .slick-dots li button::before{
        border-color:#4636AE;
    }
    .thmv-bg-sunglow,
    .thmv-home-5 .thmv-welcome-sec,
    .thmv-home-5 .thmv-testimonial-box,
    .thmv-home-5 .thmv-testi .slick-testimonial-slider::after,
    .thmv-home-5 .thmv-testi .slick-testimonial-slider::before,
    .thmv-home-5 .thmv-booking-sec .thmv-booking-img .thmv-book-price,
    .thmv-home-nav-5 .thmv-right-menu .thmv-social li a:hover,
    /* home-v2 */
    .thmv-home-5.thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li:hover::after,
    .thmv-home-5.thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li.active::after{
        background-color: #FFD231;
    }
    .thmv-color-sunglow{
        color: #FFD231;
    }
    .thmv-border-sunglow{
        border-color: #FFD231;
    }
    .thmv-home-5 .btn-full-filled,
    .thmv-home-5 .thmv-uniq-box .btn-full-filled,
    .thmv-home-5 .thmv-book-room .thmv-welcome-box .thmv-availability-check .form-group button{
        background: #FFD231;
        color: #4636AE;
        border-color: #FFD231;
    }
    .thmv-home-5 .btn-full-filled:hover,
    .thmv-home-5 .thmv-uniq-box .btn-full-filled:hover,
    .thmv-home-5 .thmv-book-room .thmv-welcome-box .thmv-availability-check .form-group button:hover{
        background: #FFFFFF;
        color: #191B18;
        border-color: #191B18;
    }

/*=======================================
    =            home page style            =
    =======================================*/
    /*----------  navbar style  ----------*/
        .thmv-top-navbar{
            display: flex;
            align-items: center;
        }
        .thmv-top-nav.thmv-top-nav-fix{
            position: fixed;
            width: 100%;
            z-index: 100;
        }
        .thmv-top-navbar .logo{
            width: 20%;
        }
        .thmv-nav-menu {
            width: 80%;
            display: flex;
            justify-content: flex-end;
        }
        .thmv-nav-menu ul{
            display: block;
        }
        .thmv-nav-menu ul li{
            float: left;
        }
        .thmv-nav-menu-list li a {
            padding: 0 20px;
            line-height: 99px;
            font-size: 16px;
        }
        .thmv-nav-menu li.has-sub {
            position: relative;
        }
        .thmv-top-navbar:after,
        .thmv-top-navbar>ul:after {
            content: ".";
            display: block;
            clear: both;
            visibility: hidden;
            line-height: 0;
            height: 0
        }
        .thmv-top-navbar #head-mobile {
            display: none
        }
        .thmv-top-navbar>ul>li {
            float: left
        }
        .thmv-top-navbar>ul>li>a {
            padding: 17px;
            font-size: 16px;
            color: #282828;
        }
        .thmv-top-navbar>ul>li.has-sub>a {
            padding-right: 30px;
            position: relative;
        }
        .thmv-nav-menu>ul>li.has-sub>a:after {
            content: "\f078";
            font-size: 10px;
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            color: #000000;
            position: absolute;
            top: 0%;
            right: 5px;
            transition: all 0.3s;
            transform: translate(0px , 2px);
        }
        .thmv-nav-menu>ul>li.has-sub:hover>a:after {
            top: 0%;
            transform:rotate(180deg);
        }
        .thmv-top-navbar ul ul {
            position: absolute;
            left: -9999px
        }
        .thmv-top-navbar ul ul li {
            -webkit-transition: all .25s ease;
            -ms-transition: all .25s ease;
            background: #404040;
            transition: all .25s ease
        }
        .thmv-top-navbar li:hover>ul {
            left: auto
        }
        .thmv-top-navbar ul ul ul {
            margin-left: 100%;
            top: 0
        }
        .thmv-top-navbar ul ul li a {
            border-bottom: 1px solid rgba(150, 150, 150, 0.15);
            padding: 15px 15px;
            width: 220px;
            font-size: 16px;
            text-decoration: none;
            color: #ddd;
            font-weight: 400;
            line-height: initial;
        }
        .thmv-top-navbar ul ul li:last-child>a,
        .thmv-top-navbar ul ul li.last-item>a {
            border-bottom: 0
        }
        .thmv-top-navbar ul ul li:hover>a,
        .thmv-top-navbar ul ul li a:hover {
            color: #fff
        }
        .thmv-top-navbar ul ul li.has-sub>a:before {
            content: "\f078";
            font-size: 10px;
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            color: #ffffff;
            position: absolute;
            top: 50%;
            right: 10px;
            transition: all 0.3s;
            transform: translate(-0%, -50%);
        }
        .thmv-top-navbar ul ul>li.has-sub:hover>a:before {
            top: 36%;
            transform:rotate(-180deg);
        }
        .thmv-top-navbar ul ul li:hover,
        .thmv-top-navbar ul ul li.has-sub:hover,
        .thmv-top-navbar ul li.has-sub ul li.has-sub ul li:hover {
            background: #363636;
        }
        .thmv-top-navbar ul ul ul li.active a {
            border-left: 1px solid #333
        }
        .thmv-top-navbar>ul>li.has-sub>ul>li.active>a,
        .thmv-top-navbar>ul ul>li.has-sub>ul>li.active>a {
            border-top: 1px solid #333
        }
        .thmv-nav-menu ul .has-sub ul {
            display: block;
        }
        .thmv-top-nav-fix .thmv-right-menu .thmv-social li a{
            background: transparent;
            height:auto;
        }
    /*----------  Datepiker style  ----------*/
       .datepick {
           font-family: 'lato', sans-serif;
           font-size: 14px;
           border: 2px solid rgb(28 23 21 / 20%);
           width: 355px !important;
           border-radius: 0;
       }
       .datepick-nav, .datepick-ctrl {
           background-color: #ffffff;
           display: flex;
           justify-content: space-between;
       }
       .datepick a {
           color: #404040;
           padding: 0;
           background: #ffffff;
           width: 40px;
           height: 40px;
           line-height: 40px;
       }
       .datepick-month {
           border: none;
           width: 100%;
       }
       .datepick-month th, .datepick-month th a {
           background-color: #ffffff;
           color: #404040;
           font-weight: 600;
           border: none;
       }
       .datepick-month-header, .datepick-month-header select, .datepick-month-header input {
           background-color: #ffffff;
           color: #404040;
           height: 34px;
       }
       .datepick-cmd-prev,
       .datepick-cmd-next {
           font-size: 0;
           position: relative;
       }
       .datepick-cmd-prev:after,
       .datepick-cmd-next:after {
           content: "\f053";
           font-family: 'Font Awesome 5 Free';
           font-size: 14px;
           background: #404040;
           color: #ffffff;
           width: 40px;
           height: 40px;
           line-height: 40px;
           display: inline-block;
           text-align: center;
       }
       .datepick-cmd-next:after {
           content: "\f054";
       }
       .datepick-month td {
           background-color: #ffffff;
           border: none;
       }
       .datepick-month td .datepick-weekend {
           background-color: #ffffff;
       }
       .datepick-month td .datepick-selected {
           background-color: #404040;
           color: #FFFFFF;
           border: 1px solid #404040;
           font-weight: 700;
       }
       .datepick-month td .datepick-highlight {
        background-color: rgb(28 23 21 / 20%);
       }
       .datepick-ctrl {
           justify-content: flex-end;
       }
       .datepick-ctrl .datepick-cmd {
           background: #404040;
           color: #ffffff;
           width: auto;
           margin-left: 15px;
           padding: 0 10px;
       }
       .datepick-ctrl .datepick-cmd:hover {
           background-color: rgb(28 23 21 / 20%);
           color: #404040;
       }
       .datepick-popup .datepick-nav .datepick-cmd-today,
       .datepick-popup .datepick-nav .datepick-cmd:hover,
       .datepick-cmd:hover{
        background:transparent;
       }
       .datepick-month td a.thmv-date-selectedClass{
            background:transparent !important;
            color: #404040;
            opacity:0.3;
        }
        .datepick-month td a.thmv-date-selectedClass{
            position: relative;
        }
        .datepick-month td a.thmv-date-selectedClass::before{
            content:"";
            width:100%;
            height:1px;
            background: #000;
            display: block;
            position: absolute;
            top: 50%;
            transform: rotate(140deg);
        }

    /*----------  top banner section style  ----------*/
        .thmv-wel-col{
            max-width:550px;
            margin-left: auto;
            padding: 0;
        }
        .thmv-wel-text{
            max-width:460px;
        }
        .thmv-wel-text h6{
            font-size: 18px;
            line-height: 36px;
            font-weight: 400;
            font-family:"Lato";
            display: inline-block;
        }
        .thmv-wel-text .thmv-wel-title{
            text-transform: uppercase;
            font-weight: 400;
            margin: 15px 0px;
        }
        .thmv-wel-info{
            font-size: 18px;
            line-height: 36px;
            font-weight: 400;
            margin-bottom: 35px;
        }
    /*----------  welcome section style  ----------*/
        .thmv-welcome-sec{
            padding:130px 0px 0px;
            margin-bottom: 170px;
        }
        .thmv-welcome-sec .thmv-welcome-img{
            margin-bottom: -100px;
        }
        .thmv-welcome-sec .thmv-welcome-info,
        .thmv-testi .slick-testimonial-slider{
            position: relative;
        }
        .thmv-welcome-sec .thmv-welcome-info::after,
        .thmv-welcome-sec .thmv-welcome-info::before,
        .thmv-testi .slick-testimonial-slider::after,
        .thmv-testi .slick-testimonial-slider::before{
            content:"";
            display: inline-block;
            height: 2px;
            width:200px;
            position: absolute;
            left: 0px;
            top: -12px;
            transform: translate(-20%, -20%);
            opacity: 0.5;
        }
        .thmv-welcome-sec .thmv-welcome-info::after,
        .thmv-testi .slick-testimonial-slider::after{
            content:"";
            width: 2px;
            height:200px;
        }
        .thmv-welcome-box{
            max-width:560px;
            margin-top: 70px;
            margin-left:auto;
        }
        .thmv-welcome-box .thmv-pills-blok p{
            display: inline-block;
            font-size: 16px;
            line-height: 36px;
            font-weight: 400;
            padding:2px 20px;
            margin-bottom: 0;
        }
        .thmv-welcome-box h2{
            margin:30px 0px;
        }
        .thmv-welcome-box .read-more-btn{
            margin-top: 30px;
        }
    /*----------  photo gallery section  ----------*/
        .thmv-gallery-sec{
            padding:130px 0px 80px;
        }
        .thmv-gallery-sec .thmv-img-box,
        .thmv-what-todo-photos .thmv-img-box{
            overflow: hidden;
        }
        .thmv-gallery-sec .thmv-img-box img,
        .thmv-what-todo-photos .thmv-img-box img{
            transform: scale(1);
            transition: all 0.3s;
        }

        .thmv-img-box:hover img,
        .thmv-what-todo-photos .thmv-img-box:hover img{
            transform: scale(1.1);
            filter: grayscale(100%);
            cursor: pointer;
        }
    /*----------  floor plan  ----------*/
        .thmv-floor-sec{
            padding:100px 0px 70px;
        }
        .thmv-floor-sec .thmv-welcome-box{
            max-width:100%;
            margin-top: 0;
        }
        /* .thmv-floor-sec .thmv-welcome-box .thmv-pills-blok p{
            line-height: 32px;
            padding:0px 20px;
        } */
        .thmv-floor-sec .thmv-floor-img img{
            width:500px;
        }
        .thmvfloor-list-icon{
            margin-top: 40px;
        }
        .thmvfloor-list-icon ul li{
            border-bottom:1px solid rgba(78, 82, 76, 0.1);
            padding:20px 0px;
            display: flex;
            align-items:center;
        }
        .thmvfloor-list-icon ul li:last-child{
            border:none;
        }
        .thmvfloor-list-icon .thmv-listing-icon{
            margin-right: 25px;
            text-align: center;
        }
        .thmvfloor-list-icon .thmv-listing-icon i{
            font-size:26px;
            width: 30px;
            display: block;
        }
        .thmvfloor-list-icon .thmv-listing-info p{
            font-size: 14px;
            line-height: 28px;
            font-weight: 400;
            margin-bottom: 0;
        }
    /*----------  people say section start  ----------*/
        .thmv-testimonial-sec {
            padding:70px 0px;
        }
        .thmv-quote-img{
            padding:30px 10px;
        }
        .thmv-quote-img img{
            margin-right: 15px;
        }
        .thmv-quote-img img:last-child{
            margin-right: 0;
        }
        .thmv-testi{
            padding:95px 0px;
            position: relative;
        }
        .thmv-testi .thmv-welcome-box{
            margin-left: 0;
            margin-top: 0;
            max-width:360px;
        }
        .thmv-testi .slick-testimonial-slider{
            margin-top: -230px;
        }
        .thmv-testimonial-box{
            background: rgba(255, 255, 255, 1);
            padding: 80px 50px
        }
        .thmv-testimonial-box .thmv-testimonial-header{
            position: relative;
        }
        .thmv-testimonial-box .thmv-testimonial-header::before {
            content: "";
            background-image: url("../images/icons/quote-light-home-1.svg");
            background-size: 35px;
            background-repeat: repeat-x;
            display: inline-block;
            position: absolute;
            top: 0;
            right: 0;
            width: 65px;
            height: 70px;
        }
        .thmv-testimonial-box .thmv-testimonial-header .thmv-user-img{
            margin-right:30px;
        }
        .thmv-testimonial-box .thmv-testimonial-header .thmv-user-img img{
            width:77px;
            height:77px;
            display: inline-block;
        }
        .thmv-testimonial-box .thmv-testimonial-header .thmv-user-info ul li{
            display: inline-block;
        }
        .thmv-testimonial-box .thmv-testimonial-header .thmv-user-info ul li i{
            font-size: 16px;
            padding-right:5px;
        }
        .thmv-testimonial-box .thmv-testimonial-header .thmv-user-info ul li:last-child i{
            padding-right: 0;
        }
        .thmv-testimonial-box  .thmv-testimonial-body h3{
            margin-bottom: 15px;
        }
        .thmv-testimonial-box  .thmv-testimonial-body p{
            font-size: 16px;
            line-height:32px;
            font-style:italic;
            color:#4E524C;
        }

        .thmv-testi .slick-testimonial-slider::after,
        .thmv-testi .slick-testimonial-slider::before{
            content:"";
            transform: translate(-30%, -30%);
        }

        .thmv-testi .slick-testimonial-slider .slick-dots{
            display: flex;
            position: absolute;
            bottom:0;
            left: -100%;
            transform: translate(12%, 0px);
        }
    /*----------  unique offer style  ----------*/
        .thmv-uniq-offer{
            padding:100px 0px;
        }
        .thmv-uniq-offer
        .thmv-what-todo .thmv-welcome-box,
        .thmv-uniq-offer .thmv-welcome-box{
            margin: 0 auto;
            text-align:center;
            padding: 60px 0px;
            max-width:700px;
        }
        .thmv-uniq-offer .thmv-uniq-box .thmv-pills-blok p,
        .thmv-welcome-box .thmv-pills-blok p{
            background: #2F2F2F;
            margin: 0;
        }
        .thmv-uniq-offer  .thmv-welcome-box h2 {
            margin: 30px 0px 15px;
        }
        .thmv-uniq-offer  .thmv-welcome-box p{
            margin-bottom: 50px;
        }
    /*----------  booking calender style  ----------*/
        .thmv-booking-sec{
            padding:100px 0px;
            margin:100px 0px;
        }
        .thmv-booking-sec .thmv-booking-img{
            position: relative;
            padding: 0;
            height: 560px;
        }
        .thmv-booking-sec .thmv-booking-img img{
            height: 560px;
            object-fit:cover;
            width:100%;
        }
        .thmv-booking-sec .thmv-booking-img .thmv-book-price{
            position: absolute;
            bottom: 0;
            right: 0;
            padding:25px;
            text-align: center;
        }
        .thmv-booking-sec .thmv-booking-img .thmv-book-price h2{
            font-family:"lato";
            font-size: 40px;
            line-height: 52px;
            font-weight: 700;
        }
        .thmv-booking-sec .thmv-booking-img .thmv-book-price p{
            margin-bottom: 0;
            line-height:23px;
        }
        .thmv-book-room{
            margin:-75px 0px;
            display: flex;
            align-items: center;
        }
        .thmv-book-room .thmv-welcome-box{
            margin:100px 0px 100px 90px;
            max-width:360px;
        }
        .thmv-book-room .thmv-welcome-box .thmv-pills-blok p{
            margin-bottom: 0;
        }
        .thmv-book-room .thmv-welcome-box h2{
            margin: 20px 0px 10px;
        }
        .thmv-book-room .thmv-welcome-box p{
            margin-bottom: 30px;
        }
        /* datepiker style */
        .thmv-home-1.thmv-home-v3 .thmv-wel-text .thmv-availability-check .form-group,
        .thmv-book-room .thmv-welcome-box .thmv-mo-check-form .form-group{
            position: relative;
        }
        .thmv-home-1.thmv-home-v3 .thmv-wel-text .thmv-availability-check .form-group i,
        .thmv-book-room .thmv-welcome-box .thmv-mo-check-form .form-group i{
            position: absolute;
            top: 50%;
            left: 15px;
            transform: translateY(-100%);
            color:#ffffff;
        }
        .thmv-home-1.thmv-home-v3 .thmv-wel-text .thmv-availability-check .form-group input,
        .thmv-book-room .thmv-welcome-box .thmv-mo-check-form .form-group input,
        .thmv-availability-check .thmv-notes textarea{
            background:transparent;
            border-radius:0;
            display: inline-block;
            padding: 12px 50px;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #DDDDDD;
        }
        .thmv-availability-check .thmv-notes textarea{
            padding: 12px 20px;
        }
        .thmv-home-1.thmv-home-v3 .thmv-wel-text .thmv-availability-check .form-group input::placeholder,
        .thmv-book-room .thmv-welcome-box .thmv-mo-check-form .form-group input::placeholder,
        .thmv-availability-check .thmv-notes textarea::placeholder{
            color: #DDDDDD;
        }
        .thmv-home-1.thmv-home-v3 .thmv-wel-text .thmv-availability-check .form-group input{
            padding:12px 50px;
        }
        .thmv-home-1.thmv-home-v3 .thmv-wel-text .thmv-availability-check .form-group button,
        .thmv-book-room .thmv-welcome-box .thmv-mo-check-form .form-group button{
            width:100%;
            margin-top: 10px;
        }
    /*----------  what to do style  ----------*/
        .thmv-what-todo{
            padding:80px 0px 100px;
        }
        .thmv-what-todo .thmv-welcome-box{
            max-width: 950px;
            padding: 0;
            padding-bottom: 50px;
            margin: 0px auto;
            text-align: center;
        }
        .thmv-what-todo .thmv-welcome-box h2{
            margin-bottom: 20px;
        }
        .thmv-what-todo-photos .thmv-img-box{
            position: relative;
            margin-bottom:24px;
        }
        .thmv-content-box{
            position: absolute;
            left:50%;
            bottom:0px;
            transform:translate(-50% , 0%);
            background:#FFFFFF;
            width:calc(100% - 30px);
            padding:15px;
            text-align: center;
            opacity: 0;
            visibility: hidden;
            transition:all 0.3s;
        }
        .thmv-content-box p{
            color: #000;
            font-size: 20px;
            line-height: 26px;
            font-weight: 400;
            margin-bottom:2px;
        }
        .thmv-what-todo-photos .thmv-img-box:hover .thmv-content-box{
            opacity: 1;
            visibility: visible;
            bottom:15px;      }
    /*----------  map style  ----------*/
        .thmv-map{
            padding:100px 0px 0;
            margin-bottom:-130px;
        }
        .thmv-map iframe{
            height:380px;
            display: block;
        }
    /*----------  Footer section stryle  ----------*/
        footer{
            background:#141513;
            padding:200px 0px 0px;
        }
        footer .thmv-footer{
            padding-bottom: 50px;
        }
        footer .thmv-footer .thmv-foot-wedget ul li,
        footer .thmv-footer .thmv-footer-widget-four ul li a{
            margin-bottom:10px;
        }
        footer .thmv-footer .thmv-foot-wedget ul li:last-child,
        footer .thmv-footer .thmv-footer-widget-four ul li a:last-child{
            margin-bottom: 0;
        }
        footer .thmv-footer .thmv-foot-wedget ul li a,
        footer .thmv-footer .thmv-foot-wedget ul li h6,
        .thmv-footer-bottom .thmv-fot-bot-menu ul li a,
        footer .thmv-footer .thmv-foot-wedget ul li address{
            color: #FFFFFF;
            font-size: 16px;
            line-height: 32px;
            font-weight: 400;
            opacity: 0.7;
            transition:all 0.3s;
        }
        footer .thmv-footer .thmv-foot-wedget ul li a:hover,
        .thmv-footer-bottom .thmv-fot-bot-menu ul li a:hover,
        footer .thmv-footer .thmv-foot-wedget ul li address:hover{
            opacity:1;
        }
        /*======= footer bottom style  =======*/
        .thmv-footer-bottom .container{
            border-top:1px solid #FFFFFF30;
            padding:15px 0px;
        }
        .thmv-footer-bottom{
            color:#ffffff;
        }
        .thmv-get-in-touch,
        .thmv-get-in-touch .thmv-social li a i,
        .thmv-payment li a i{
            display: flex;
            flex-flow:row;
            align-items: center;
            justify-content: space-between;
            color: #FFFFFF;
            transition:all 0.3s;
        }
        .thmv-get-in-touch h6{
            width: 700px;
        }
        .thmv-footer-bottom ul li{
            display: inline-block;
            margin-right:20px;
        }
        .thmv-footer-bottom ul li:last-child{
            margin-right: 0;
        }
        .thmv-footer-bottom ul.thmv-social li a{
            opacity: 1;
        }
        .thmv-footer-bottom ul.thmv-social li a i{
            font-size: 18px;
        }
        .thmv-payment li a i{
            font-size: 24px;
            transition:all 0.3s;
        }
        .thmv-social li a:hover i,
        .thmv-payment li a:hover i{
            opacity: 0.7;
        }
/*=====  End of home page style  ======*/

/*====================================
    =            home style 2 start            =
    ====================================*/
    .thmv-home-2 .thmv-testimonial-box .thmv-testimonial-header::before {
        content: "";
        background-image: url("../images/icons/quote-light-home-2.svg");
    }
    .thmv-home-2 .thmv-testi{
        background-color: #D8D4C220;
    }
    .thmv-home-2 .thmv-uniq-offer .thmv-uniq-box .thmv-pills-blok p,
    .thmv-home-2 .thmv-book-room .thmv-welcome-box .thmv-pills-blok p{
        background: #D8D4C2;
        color:#191B18;
    }
/*=====  End of home style 2 end ======*/

/*====================================
    =            home style 3 start            =
    ====================================*/
    .thmv-home-3 .thmv-testimonial-box .thmv-testimonial-header::before {
        content: "";
        background-image: url("../images/icons/quote-light-home-3.svg");
    }
    .thmv-home-3 .thmv-testi{
        background-color: #D8D4C220;
    }
    .thmv-home-3 .thmv-testi .slick-testimonial-slider::after,
    .thmv-home-3 .thmv-testi .slick-testimonial-slider::before{
        opacity: 0.5;
    }
    .thmv-home-3 .thmv-uniq-offer .thmv-uniq-box .thmv-pills-blok p,
    .thmv-home-3 .thmv-book-room .thmv-welcome-box .thmv-pills-blok p{
        background: #F5F3E7;
        color:#042E28;
    }
/*=====  End of home style 3 end ======*/

/*====================================
    =            home style 4 start            =
    ====================================*/
    .thmv-home-nav-4 .thmv-right-menu .thmv-social li a{
        transition: all 0.3s;
    }
    .thmv-home-4 .thmv-testimonial-box .thmv-testimonial-header::before {
        content: "";
        background-image: url("../images/icons/quote-light-home-4.svg");
    }
    .thmv-home-4 .thmv-testi{
        background-color: #FBC9B310;
    }
    .thmv-home-4 .thmv-welcome-box .thmv-pills-blok p{
        background:transparent;
        color: #191B18;
        padding:2px 0px;
    }
    .thmv-home-4 .thmv-uniq-offer .thmv-uniq-box .thmv-pills-blok p,
    .thmv-home-4 .thmv-book-room .thmv-welcome-box .thmv-pills-blok p{
        background: transparent;
        color:#ffffff;
        padding:2px 0px;
    }
    .thmv-home-4 .thmv-testi .slick-testimonial-slider::after,
    .thmv-home-4 .thmv-testi .slick-testimonial-slider::before{
        background:#D8D4C2;
    }
    .thmv-home-4 .thmv-welcome-box .thmv-pills-blok p,
    .thmv-home-4 .thmv-floor-sec .thmv-welcome-box .thmv-pills-blok p,
    .thmv-home-4 .thmv-testi .thmv-welcome-box .thmv-pills-blok p,
    .thmv-home-4 .thmv-uniq-offer .thmv-uniq-box .thmv-pills-blok p,
    .thmv-home-4 .thmv-welcome-sec .thmv-welcome-info::after,
    .thmv-home-4 .thmv-welcome-sec .thmv-welcome-info::before,
    .thmv-home-4 .thmv-testi .slick-testimonial-slider::after,
    .thmv-home-4 .thmv-testi .slick-testimonial-slider::before{
        opacity: 0.5;
    }
    .thmv-home-4 .thmv-book-room .thmv-welcome-box .thmv-pills-blok p,
    .thmv-home-4 .thmv-welcome-info .thmv-welcome-box .thmv-pills-blok p{
        opacity:1;
    }
    .thmv-home-4  .thmv-book-room .thmv-welcome-box .thmv-availability-check .form-group input,
    .thmv-home-5  .thmv-book-room .thmv-welcome-box .thmv-availability-check .form-group input{
        background: #ffffff20;
    }
/*=====  End of home style 4 end ======*/

/*====================================
    =            home style 5 start            =
    ====================================*/
    .thmv-home-5 .thmv-testimonial-box .thmv-testimonial-header::before {
        content: "";
        background-image: url("../images/icons/quote-light-home-5.svg");
    }
    .thmv-home-5 .thmv-testi{
        background-color: #FFD23110;
    }
    .thmv-home-5 .thmv-welcome-box .thmv-pills-blok p{
        background:transparent;
        color: #191B18;
        padding:2px 0px;
    }
    .thmv-home-5 .thmv-uniq-offer .thmv-uniq-box .thmv-pills-blok p,
    .thmv-home-5 .thmv-book-room .thmv-welcome-box .thmv-pills-blok p{
        background: transparent;
        color:#ffffff;
        padding:2px 0px;
    }
    .thmv-home-5 .thmv-testi .slick-testimonial-slider::after,
    .thmv-home-5 .thmv-testi .slick-testimonial-slider::before{
        background:#D8D4C2;
    }
    .thmv-home-5 .thmv-welcome-box .thmv-pills-blok p,
    .thmv-home-5 .thmv-floor-sec .thmv-welcome-box .thmv-pills-blok p,
    .thmv-home-5 .thmv-testi .thmv-welcome-box .thmv-pills-blok p,
    .thmv-home-5 .thmv-uniq-offer .thmv-uniq-box .thmv-pills-blok p,
    .thmv-home-5 .thmv-welcome-sec .thmv-welcome-info::after,
    .thmv-home-5 .thmv-welcome-sec .thmv-welcome-info::before,
    .thmv-home-5 .thmv-testi .slick-testimonial-slider::after,
    .thmv-home-5 .thmv-testi .slick-testimonial-slider::before{
        opacity: 0.5;
    }
    .thmv-home-5 .thmv-book-room .thmv-welcome-box .thmv-pills-blok p,
    .thmv-home-5 .thmv-welcome-info .thmv-welcome-box .thmv-pills-blok p{
        opacity:1;
    }
/*=====  End of home style 5 end ======*/

/*================================================
    =            home page v2 style start            =
    ================================================*/
    .thmv-shap-top img{
        position: absolute;
        top: -4%;
    }
    .thmv-img-top-box img{
        object-fit:contain;
    }
    .thmv-home-v2 .thmv-header-sec-v2 .thmv-wel-text{
        position: relative;
        z-index:10;
        margin-left: auto;
        margin-right: -230px;
        padding-top: 100px;
    }
    .thmv-home-v2 .thmv-welcome-sec{
        padding: 190px 0px 0px;
    }
    .thmv-home-v2 .thmv-booking-sec .thmv-booking-selection{

        margin-right: 60px;
    }
    .thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul{
        display: flex;
        flex-flow:column;
    }
    .thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li:hover::after,
    .thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li.active::after{
        content:"";
        background:#EAEAEA;
        width:100%;
        height:100%;
        position: absolute;
        top:0;
        right: 50px;
        z-index:1;
        opacity:0;
        transition:all 0.3s;
    }
    .thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li.active::after,
    .thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li:hover::after{
        opacity:0.4;
        top:0;
        right:0;
        transition:all 0.3s;
    }
    .thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li{
        padding:30px 0px;
        position: relative;
        transition:all 0.3s;
    }
    .thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li:hover,
    .thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li .thmv-booklist-icon{
        cursor: pointer;
    }
    .thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li .thmv-booklist-box{
        display: flex;
        flex-flow:row;
        max-width: 480px;
        margin-left: auto;

    }
    .thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li .thmv-booklist-icon,
    .thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li .thmv-booklist-info{
        position: relative;
        z-index: 10;

    }
    .thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li .thmv-booklist-icon i{
        font-size:30px;
        margin-right:30px;
    }
    .thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li .thmv-booklist-info h6{
        font-size: 18px;
        line-height:23px;
    }
    .thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li .thmv-booklist-info p,
    .thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li .thmv-booklist-info span{
        font-size: 16px;
        line-height:32px;
        margin-bottom:0;
    }
    .thmv-home-v2 .thmv-booking-sec .thmv-booking-selection ul li .thmv-booklist-info span{
        font-weight: 900;
    }
/*=====  End of home page v2 style end  ======*/

/*================================================
    =            home page v3 style start            =
    ================================================*/
    .thmv-navbar-dark{
        background: #191B18;
        border-bottom: 1px solid #f5f5f5;
    }
    .thmv-top-nav .thmv-navbar-dark .thmv-nav-menu-list li.has-sub>a::after,
    .thmv-top-nav .thmv-navbar-dark .thmv-nav-menu-list li a,
    .thmv-top-nav .thmv-navbar-dark .thmv-right-menu .thmv-social li a,
    .thmv-top-nav .thmv-navbar-dark.fixed-top .thmv-nav-menu-list li.has-sub > ul a{
        color: #ffffff;
    }
    .thmv-top-nav .thmv-navbar-dark.fixed-top .thmv-nav-menu-list li.has-sub>a::after,
    .thmv-top-nav .thmv-navbar-dark.fixed-top .thmv-nav-menu-list li a,
    .thmv-top-nav .thmv-navbar-dark.fixed-top .thmv-right-menu .thmv-social li a{
        color: #191B18;
    }
    .thmv-navbar-dark .navbar-toggler-icon{
        color: #FFFFFF;
    }
    .thmv-navbar-dark.fixed-top .navbar-toggler-icon{
        color: #191B18;
    }
    .thmv-home-1.thmv-home-v3 .thmv-header-sec{
        height:100vh;
        background-image:url("../images/home-v3-header-bg-img.jpg");
        background-repeat:no-repeat;
        background-size:cover;
    }
    .thmv-home-1.thmv-home-v3 .thmv-booking-calendar{
        height:100vh;
    }
    .thmv-home-1.thmv-home-v3 .thmv-wel-col{
        margin:0;
        padding: 15px;
    }
    .thmv-home-1.thmv-home-v3 .thmv-wel-col .thmv-wel-text{
        max-width: 370px;
    }
    .thmv-home-1.thmv-home-v3 .thmv-wel-col .thmv-wel-text .thmv-heading-style{
        font-size: 30px;
        line-height:39px;
    }
    .thmv-home-1.thmv-home-v3 .thmv-wel-col .thmv-wel-text .thmv-wel-info{
        margin:20px 0px;
    }
    .thmv-home-1.thmv-home-v3 .thmv-wel-text .thmv-availability-check .form-group button:hover{
        border-color:#FFFFFF;
    }
    /* datepicker two month style */
    .datepick.datepick-multi{
        width: 700px !important;
        padding:15px;
        font-family:"lato" !important;
    }
    .datepick.datepick-multi .datepick-month-row{
        display: flex;
    }
    .datepick.datepick-multi  .datepick-month-header{
        margin-top: -38px;
        margin-bottom: 40px;
    }
    .datepick.datepick-multi .datepick-month thead th span,
    .datepick.datepick-multi .datepick-month a{
        font-size:14px;
    }
/*=====  End of home page v3 style end  ======*/

/*==========================================
    =            home page-v4 style start            =
    ==========================================*/
    /*----------- Booking Popup Style -----------*/
        .thmv-mo-check-form input::placeholder {
          color: #DDDDDD;
        }
        .thmv-mo-check-form input:-ms-input-placeholder {
          color: #DDDDDD;
        }
        .thmv-mo-check-form input::-ms-input-placeholder {
          color: #DDDDDD;
        }
        .thmv-mo-check-form .form-group {
            position: relative;
        }
        .thmv-mo-check-form input {
            background: transparent;
            border: 1px solid #FFFFFF30;
            border-radius: 0;
            color: #DDDDDD;
            height: 50px;
            position: relative;
            margin-bottom: 20px;
        }
        .thmv-mo-check-form .form-group i {
            color: #fff;
            position: absolute;
            top: 50%;
            left:12px;
            transform: translate(0, -100%);
            font-size: 18px;
            pointer-events: none;
        }
        .thmv-mo-guest-col .form-content {
            border: 1px solid #FFFFFF30;
            color: #DDDDDD;
        }
        .thmv-mo-guest-col .dropdown-toggle::after{
            display: none;
        }
        .thmv-mo-guest-col .form-content{
            font-size: 16px;
            line-height: 32px;
            border: 1px solid #FFFFFF30;
            color: #DDDDDD;
            line-height: 36px;
            padding: 6px 45px;
            position: relative;
            margin-bottom: 20px;
        }
        .thmv-mo-guest-col .form-content .thmv-mo-peoples-icon {
            position: absolute;
            font-size: 18px;
            top: 50%;
            left:8px;
            transform: translate(0px, -50%);
        }
        .btn_mo_search {
            background: #FFFFFF;
            line-height: 50px;
            text-transform: uppercase;
            font-weight: 700;
            margin-top: 20px;
        }
    /*----------  Guests Dropdown Design   ----------*/
        .form-select-guests .dropdown-menu {
            min-width: 228px;
            z-index: 2;
            padding: 10px;
            border: 1px solid #191B1850;
            border-radius: 0;
            margin-left: 0px;
            transform: translate3d(0px, 50px, 0px) !important;
        }
        .form-select-guests .dropdown-item-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        .form-select-guests .dropdown-item-row .label {
            color: #191B18;
            font-weight: 500;
        }
        .form-select-guests .btn-add,
        .form-select-guests .btn-minus {
            font-size: 12px;
            width: 30px;
            height: 30px;
            display: inline-block;
            line-height: 30px;
            background: #eef1f7;
            border-radius: 4px;
            text-align: center;
            cursor: pointer;
            position: relative;
        }
        .form-select-guests .count-display {
            width: 30px;
            font-weight: 500;
            display: inline-block;
            text-align: center;
        }

    .thmv-home-v4 .thmv-wel-col{
        background: #4D4D4D;
        max-width:460px;
        padding:50px;
        margin-right: 90px;
    }
    .thmv-home-v4 .thmv-wel-col .thmv-wel-text .thmv-heading-style::before{
        display: none;
    }
    .thmv-home-v4 .thmv-wel-col .thmv-wel-text .thmv-heading-style{
        font-family: 'Spinnaker', sans-serif;
        font-size: 30px;
        line-height: 39px;
        font-weight: 400;
        margin-bottom: 20px;
    }
    .thmv-home-v4 .thmv-availability-check .thmv-mo-check-form,
    .thmv-booking-text-sec .thmv-book-room .thmv-mo-check-form{
        display: flex;
        justify-content: space-between;
    }
    .thmv-home-v4 .thmv-mo-check-form input,
    .thmv-booking-text-sec .thmv-book-room .thmv-mo-check-form input{
        font-size: 16px;
        max-width:170px;
        text-align: center;
        color:#DDDDDD;
        border-color:#FFFFFF30;
    }
    .thmv-home-v4 .thmv-mo-check-form input:focus{
        background:transparent;
        outline:none;
        color:#DDDDDD;
        border-color:#FFFFFF30;
    }
    .thmv-mo-guest-col .form-content i.fa-chevron-down{
        font-size: 12px;
        position: absolute;
        top:50%;
        right:10px;
        transform: translate(0% , -50%);
    }
    #location{width: 100% !important;padding: 7px 45px;}
    select::-ms-expand {display: none;}
    select{
        -webkit-appearance: none;
        appearance: none;
    }
    #location:focus-visible{
        outline:0;
    }
    .thmv-availability-check .thmv-location{
        border: 1px solid #FFFFFF30;
        margin-bottom: 20px;
    }
    .thmv-availability-check .thmv-location select{
        font-size: 16px;
        line-height: 32px;
        border:none;
        color: #DDDDDD;
        background:transparent;
        line-height: 36px;
        padding: 14px 45px;
        width:100%;
         border-radius:0;
    }
    .thmv-availability-check .thmv-location select option{
        color: #191B18;
    }
    .thmv-availability-check .thmv-location{
        position: relative;
    }
    .thmv-availability-check .thmv-location i{
        position: absolute;
        top:50%;
        left: 10px;
        color:#FFFFFF;
        transform: translate(0%, -50%);
    }
    .thmv-availability-check .thmv-location i.fa-chevron-down{
        font-size: 12px;
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translate(0% , -50%);
        left: auto;
    }
    /*----------  video modul  ----------*/
        .thmv-video-modal img{
          width: 100%;
        }
        .thmv-video-modal{
          position: relative;
        }
        .thmv-video-modal .embed-container {
          position: relative;
          padding-bottom: 56.25%;
          height: 0;
          overflow: hidden;
          max-width: 100%;
        }
        .thmv-video-modal .embed-container iframe,
        .thmv-video-modal .embed-container object,
        .thmv-video-modal .embed-container embed {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
        }
        .thmv-video-sec .thmv-play-btn{
          background:#FFFFFF;
          border:none;
          border-radius: 100px;
          width: 90px;
          height: 90px;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          transition: all 0.3s ease 0s;
        }
        .thmv-video-sec .thmv-button-back{
            content:"";
            width:120px;
            height:120px;
            background:#ffffff10;
            border-radius: 100px;
            display: inline-block;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0px 4px 54px rgba(0, 0, 0, 0.35);
             transition: all 0.3s ease 0s;
        }
        .thmv-video-sec .thmv-play-btn i{
          color: #191B18;
          font-size: 32px;
          line-height:52px;
          transition: all 0.3s ease 0s;
        }
        /* .thmv-video-sec .thmv-play-btn:hover, */
        .thmv-video-modal .modal-body .btn-close:hover,
        .thmv-video-sec .thmv-button-back:hover,
        .thmv-video-sec .thmv-button-back:hover .thmv-play-btn{
          background:#191B18;
          cursor: pointer;
        }
        .thmv-video-sec .thmv-play-btn:hover i,
        .thmv-video-modal .modal-body .btn-close:hover i,
        .thmv-video-sec .thmv-button-back:hover .thmv-play-btn i{
          color: #FFFFFF;
        }
        .thmv-video-modal .modal-content{
          border-radius:0;
        }
        .thmv-video-modal .modal-body{
          position: relative;
        }
        .thmv-video-modal .modal-body .btn-close{
          position: absolute;
          right: 0px;
          z-index: 1;
          width: 30px;
          height: 30px;
          background: #000;
          border: none;
          border-radius: 0;
          line-height: 30px;
          opacity:1;
          transition: all 0.3s ease 0s;
        }
        .thmv-video-modal .modal-body .btn-close i{
          color: #FFFFFF;
          font-size: 14px;
          transition: all 0.3s ease 0s;
        }
        .thmv-video-modal .modal-dialog video{
          width:100%;
          height:100%;
          display: block;
        }
        .thmv-video-text h2{
          margin-bottom:20px;
        }

    .thmv-home-v4 .thmv-welcome-sec{
        padding: 180px 0px;
        margin: 0;
    }
    .thmv-home-v4 .thmv-welcome-sec .thmv-welcome-box{
        max-width: 450px;
        margin-top: 30px;
    }
    .thmv-home-v4 .thmv-welcome-box h2,
    .thmv-amenities-sec .thmv-welcome-box h2,
    .thmv-about-wel-sec .thmv-welcome-box h2{
        margin: 10px 0px 20px;
    }
    .thmv-home-v4 .thmv-welcome-box .thmv-pills-blok p,
    .thmv-amenities-sec .thmv-welcome-box .thmv-pills-blok p,
    .thmv-about-wel-sec .thmv-welcome-info .thmv-pills-blok p{
        background:transparent;
        color:#191B1850;
        padding: 0;
    }
    .thmv-home-v4  .thmv-book-room .thmv-welcome-box .thmv-pills-blok p,
    .thmv-home-v4 .thmv-uniq-offer .thmv-pills-blok p{
        color: rgba(255, 255, 255, 0.4);

    }
    .thmv-home-v4 .thmv-welcome-sec .thmv-welcome-box .read-more-btn {
        margin-top: 10px;
    }
    /*----------  appartments-tab sectino start  ----------*/
        .thmv-appartments-sec .thmv-filter-tabs{
            border-bottom:1px solid rgba(84, 84, 84, 0.3);
            display: flex;
            justify-content: space-between;
            margin-bottom: 50px;
            overflow: hidden;
        }
        .thmv-filter-button{
            font-family: Spinnaker;
            font-size: 16px;
            font-weight: 400;
            line-height: 21px;
            letter-spacing: 0em;
            text-align: center;
            color: #191B18;
            padding:20px 30px;

        }
        .thmv-filter-tabs li{
            position: relative;
        }
        .thmv-filter-tabs li button::after{
            content:"";
            width:100%;
            height:5px;
            display: inline-block;
            background: #000;
            position: absolute;
            left: 0;
            bottom:-5px;
            transition:all 0.3s;
        }
        .thmv-filter-tabs li button:hover::after,
        .thmv-filter-tabs li.active button::after{
            bottom:0px;
        }

        .thmv-filter-box{
            margin-bottom: 30px;
        }

    .thmv-appartments-sec{
        padding:180px 0px 0px;
    }
    .thmv-wel-title-sec{
        overflow: hidden;
        margin-bottom: 50px;
    }
    .thmv-wel-title-sec .thmv-sub-title{
        font-family: Lato;
        position: relative;
        color: rgba(25, 27, 24, 0.4);
    }
    .thmv-wel-title-sec .thmv-sub-title::before,
    .thmv-wel-title-sec .thmv-sub-title::after{
        content:"";
        width:50%;
        height:1px;
        background:rgba(64, 64, 64, 0.1);
        display: inline-block;
        position: absolute;
        right: -100px;
        top:50%;
    }
    .thmv-wel-title-sec .thmv-sub-title::before{
        left: -100px;
    }
    .thmv-wel-title-sec .thmv-title{
        font-size: 30px;
        font-style: normal;
        font-weight: 400;
        line-height: 39px;
        letter-spacing: 0em;
        text-align: center;
        margin-bottom: 20px;
    }
    .thmv-appartments-sec .thmv-appartments-img{
        position: relative;
    }
    .thmv-appartments-sec .thmv-appartments-img .thmv-book-price{
        position: absolute;
        background-color: #EAEAEA;
        bottom: 0;
        right: 0;
        padding: 25px;
        text-align: center;
        padding: 15px 25px;
    }
    .thmv-appartments-sec .thmv-appartments-img .thmv-book-price h4{
        font-size: 22px;
        line-height: 28px;
        font-weight: 600;
        margin-bottom: 5px;
    }
    .thmv-appartments-sec .thmv-appartments-img .thmv-book-price p{
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 0;
    }
    .thmv-appartments-sec .thmv-filter-box .thmv-appartments-info{
        padding:15px 5px;
    }
    .thmv-appartments-sec .thmv-filter-box .thmv-appartments-info h5{
        font-size:20px;
        line-height:26px;
    }
    .thmv-appartments-sec .thmv-filter-box .thmv-appartments-info p{
        font-size: 16px;
        line-height: 32px;
        color:rgba(25, 27, 24, 0.4);
    }
    .thmv-home-v4 .thmv-floor-sec .thmv-welcome-box,
    .thmv-home-v4 .thmv-floor-sec .thmvfloor-list-icon,
    .thmv-floor-slider.thmv-floor-sec .thmv-user-info,
    .thmv-floor-slider.thmv-floor-sec .thmvfloor-list-icon{
        max-width:600px;
        margin-left: auto;
        margin-right:100px;
    }
    .thmv-home-v4 .thmv-floor-sec .thmvfloor-list-icon{
        margin-top: 10px;
    }
    .thmv-floor-sec .thmv-floor-plan-slider .slick-slide.slick-active{
        opacity:0.1;
    }
    .thmv-floor-sec .thmv-floor-plan-slider .slick-slide.slick-current.slick-active{
        opacity: 1;
    }
    .thmv-floor-sec .thmv-floor-plan-slider .slick-dots{
        bottom:-40px;
        display: flex;
        left:20%;
    }
    .thmv-choose-option{
        padding:40px 0px;
    }
    .thmv-booking-row{
        align-items: center;
    }
    .thmv-choose-option .thmv-choose-room li{
        padding:30px 0px;
    }
    .thmv-choose-option .thmv-choose-room li:hover,
    .thmv-choose-option .thmv-choose-room li.active{
        background: #EAEAEA;
        cursor: pointer;
    }
    .thmv-choose-option .thmv-booking-row .thmv-room-info{
        display: flex;
        justify-content:center;
    }
    .thmv-choose-option .thmv-booking-row .thmv-room-info .thmv-icon i{
        color: rgba(78, 82, 76, 1);
        font-size: 32px;
        margin-right:30px;
    }
    .thmv-choose-option .thmv-booking-row .thmv-room-info .thmv-booking-details h5{
        font-size: 20px;
        font-weight: 400;
        line-height: 26px;
    }
    .thmv-choose-option .thmv-booking-row .thmv-room-info .thmv-booking-details p{
        color: rgba(25, 27, 24, 0.4);
        font-size: 18px;
        font-weight: 400;
        line-height: 36px;
        margin-bottom: 0;
    }
    .thmv-choose-option .thmv-booking-row .thmv-booking-price{
        background: rgba(234, 234, 234, 1);
        display: inline-block;
        padding:10px 18px;
    }
    .thmv-choose-option .thmv-choose-room li.active .thmv-booking-price,
    .thmv-choose-option .thmv-choose-room li:hover .thmv-booking-price{
        background: #FFFFFF;
    }
    .thmv-choose-option .thmv-booking-row .thmv-booking-price h5{
        font-family: Lato;
        font-size: 22px;
        font-weight: 700;
        line-height: 29px;
    }
    .thmv-choose-option .thmv-booking-row .thmv-booking-price p{
        font-size: 16px;
        line-height: 21px;
        margin-bottom: 0;
    }
    .thmv-choose-option .thmv-booking-row .thmv-check-out a,
    .thmv-home-1.thmv-home-v4 .thmv-more-blog a,
    .thmv-more-blog a,
    .thmv-packages .thmv-appartments-info .btn-full-filled,
    .thmv-contact-top .thmv-header-title a{
        background: #404040;
        color:#FFFFFF;
        min-width:250px;
    }
    .thmv-choose-option .thmv-booking-row .thmv-check-out a:hover,
    .thmv-home-1.thmv-home-v4 .thmv-more-blog a:hover,
    .thmv-more-blog a:hover,
    .thmv-packages .thmv-appartments-info .btn-full-filled:hover,
    .thmv-contact-top .thmv-header-title a:hover{
        background:transparent;
        color: #404040;
    }

    .thmv-our-bolg{
        padding:80px 0 50px;
    }
    .thmv-blog-info{
        margin-top:15px;
    }
    .thmv-blog-info h6{
        font-family: Lato;
        font-size: 14px;
        line-height: 28px;
        color:rgba(25, 27, 24, 0.6);
        padding-bottom:15px;
        margin-bottom:15px;
        border-bottom: 1px solid rgba(25, 27, 24, 0.1)
    }
    .thmv-blog-info h3{
        margin-bottom:15px;
    }
    .thmv-blog-info p{
        font-size: 16px;
        line-height: 32px;
        color: rgba(25, 27, 24, 0.6);
    }
    .thmv-blog-info a{
        font-size: 18px;
        line-height: 36px;
    }
    .thmv-more-blog{
        margin-top:50px;
    }
/*=====  End of home page-v4 style end  ======*/

/*=============================================
    =            home inside page style            =
    =============================================*/
    .thmv-home-1.thmv-home-inner .thmv-header-sec{
        background:#FFFFFF;
    }
    .thmv-home-inner .thmv-page-title{
        margin: 30px 0;
    }
    .thmv-home-inner .thmv-page-title p,
    .thmv-home-inner .thmv-page-rating p,
    .thmv-home-inner .thmv-location p{
        margin-bottom: 0;
        font-size: 16px;
        color: rgba(25, 27, 24, 0.4);
    }
    .thmv-home-inner .thmv-page-rating ul li,
    .thmv-packages .thmv-appart-meta .thmv-page-rating ul li{
        font-size: 14px;
        padding-right:5px;
        color: rgba(255, 200, 4, 1)
    }
    .thmv-home-inner .thmv-page-rating p,
    .thmv-packages .thmv-appart-meta .thmv-page-rating p{
        font-size: 18px;
        line-height: 36px;
        margin-left:10px;
    }
    .thmv-home-inner .thmv-location,
    .thmv-packages .thmv-location{
        font-size: 16px;
        line-height: 32px;
    }
    .thmv-home-inner .thmv-location i,
    .thmv-packages .thmv-location i{
        margin-right:10px;
    }
    .thmv-home-inner .thmv-show-btn a,
    .thmv-reviews-sec .thmv-show-btn a,
    .thmv-user-review .thmv-show-btn a{
        border-color:rgba(64, 64, 64, 1)
    }

    .thmv-photo-gallery{
        margin-top: 30px;
    }
    .thmv-photo-gallery .thmv-img-gray-hover{
        overflow: hidden;
        margin-bottom: 25px;
    }
    .thmv-photo-gallery .thmv-img-gray-hover:hover img{
        transform: scale(1.1);
        transition: all 0.3s;
    }
    .thmv-photo-gallery .thmv-img-gray-hover img{
        transform: scale(1);
        transition: all 0.3s;
    }
    .thmv-photo-gallery .thmv-img-gray-hover:last-child{
        margin-bottom:0;
    }

    .thmv-floor-sec.thmv-floor-slider{
        padding:150px 0px;
    }
    .thmv-floor-sec .thmv-user-info{
        display: flex;
        align-items: center;
    }
    .thmv-user-info .thmv-user-img img{
        max-width:77px;
        width:100%;
        margin-right: 20px;
    }
    .thmv-user-info .thmv-user-meta h3{
        font-size: 22px;
        line-height: 28px;
    }
    .thmv-user-info .thmv-user-meta p{
        margin-bottom: 0;
        color: rgba(25, 27, 24, 0.4);
    }
    .thmv-floor-sec.thmv-floor-slider .thmvfloor-list-icon {
        margin-top: 20px;
    }
    /* booking section style */
        .thmv-booking-text-sec{
            background: #EAEAEA;
        }
        .thmv-booking-text-sec .thmv-booking-text{
            max-width:500px;
            margin-left: auto;
            margin-right: 40px;
            padding:100px 0px;
        }
        .thmv-booking-text-sec .thmv-book-room .thmv-heading-style::before {
            left: 10%;
        }
        .thmv-booking-text-sec .thmv-book-room{
            margin: 0;
        }
        .thmv-booking-text-sec .thmv-booking-text h2{
            margin-bottom: 20px;
        }
        .thmv-booking-text-sec .thmv-book-room .thmv-mo-guest-col .form-content{
            padding: 6px 50px;
        }
        .thmv-booking-text-sec .thmv-book-room .thmv-mo-guest-col .thmv-mo-peoples-icon{
            left:15px;
        }
        .thmv-booking-text-sec .thmv-book-room .thmv-mo-check-form .form-group input{
            padding-right:10px;
            padding-left: 20px;
        }

    /* book form style 2 */
        .thmv-booking-text-sec .thmv-book-form-style-2 .thmv-heading-style::before{
            display: none;
        }
        .thmv-booking-text-sec .thmv-book-form-style-2 .thmv-welcome-box{
            margin: 0px 0px 0px 100px;
        }
    /* amenities section style  */
        .thmv-amenities-sec{
            padding: 100px 0px 70px;
        }
        .thmv-amenities-sec .thmvfloor-list-icon ul li{
            align-items:start;
        }
        .thmv-amenities-sec  .thmvfloor-list-icon .thmv-listing-icon i{
            margin-top: 5px;
            font-size: 30px;
        }
        .thmv-amenities-sec  .thmv-listing-info h4{
            margin-bottom: 10px;
        }
        .thmv-amenities-sec  .thmv-listing-info p{
            font-size: 16px;
            line-height: 32px;
            color: rgba(25, 27, 24, 0.8);
        }
        .thmv-amenities-sec .thmvfloor-list-icon .thmv-show-btn{
            margin-left: 55px;
            margin-top: 15px;
        }
    /* reviews section style */
        .thmv-reviews-sec {
            padding:100px 0px;
        }
        .thmv-reviews-sec .thmv-user-review .thmv-testimonial-box{
            padding:15px;
            background:transparent;
        }
        .thmv-reviews-sec .thmv-testimonial-box .thmv-user-img{
            margin-right: 20px;
        }
        .thmv-reviews-sec .thmv-testimonial-box .thmv-user-img img{
            width:54px;
            height:54px;
        }
        .thmv-reviews-sec .thmv-testimonial-header::before {
            display: none;
        }
        .thmv-one-user-sec .thmv-testimonial-header .thmv-user-info h4,
        .thmv-reviews-sec .thmv-testimonial-box .thmv-user-info h4{
            font-size: 18px;
            line-height: 28px;
        }
        .thmv-reviews-sec .thmv-testimonial-box .thmv-user-info ul,
        .thmv-reviews-sec .thmv-testimonial-box .thmv-user-info ul li{
            line-height:20px;
        }
        .thmv-reviews-sec .thmv-testimonial-box .thmv-user-info ul li i {
            font-size:14px;
            color:#FFC804;
            padding-right: 0;
        }
        .thmv-reviews-sec .thmv-testimonial-body{
            margin-top: 20px;
        }
    /* map style 2 section start */
        .thmv-map-style-2 {
            padding:50px 0px;
            margin-bottom:-240px;
        }
    /* booking section style */
        .thmv-bottom-booking{
            padding:300px 0px 0px;
        }
        .thmv-bottom-booking .thmv-booking-img,
        .thmv-bottom-booking .thmv-booking-img img {
            height:660px;
        }
        .thmv-bottom-booking .thmv-booking-img{
            object-fit:cover;
        }
         .thmv-bottom-booking .thmv-book-room .thmv-welcome-box{
            margin: 150px 0px 100px 100px;
         }
        .thmv-one-user-sec{
            padding: 150px 0px;
        }
        .thmv-one-user-sec .thmv-testimonial-header .thmv-user-info{
            padding-top: 10px;
        }
        .thmv-one-user-sec .thmv-testimonial-header .thmv-user-img img{
            margin-right:20px;
            width:77px;
            height:77px;
        }
        .thmv-one-user-sec .thmv-testimonial-header .thmv-user-info h4{
            font-size: 22px;
            line-height:28px;
        }
        .thmv-one-user-sec .thmv-testimonial-header .thmv-user-info p{
            font-size: 18px;
            line-height: 36px;
            margin-bottom: 0;
            color:rgba(25, 27, 24, 0.4);
        }
        .thmv-one-user-sec .thmv-testi-user-box .thmv-show-btn{
            margin-left: 100px;
        }
        .thmv-things .thmv-things-list h5{
            font-size: 22px;
            line-height:28px;
            margin-bottom: 20px;
        }
        .thmv-things .thmv-things-list ul li{
            padding-bottom: 10px;
            font-size: 16px;
            line-height:32px;
            color: rgba(25, 27, 24, 0.8);
            display: flex;
            align-items:start;
        }
        .thmv-things .thmv-things-list ul li:last-child{
            padding-bottom:0px;
        }
        .thmv-things .thmv-things-list ul li i{
            font-size: 24px;
            margin-right:15px;
            margin-top: 4px;
        }
        .thmv-appartments-bottom{
            padding:150px 0px 100px;
        }
        .thmv-foot-small{
            padding: 100px 0px 0px;
        }
/*=====  End of home inner page style  ======*/

/*================================================
    =            home inside pages v2 style start            =
    ================================================*/
    .thmv-floor-form.thmv-floor-sec .thmv-user-info,
    .thmv-floor-form.thmv-floor-sec .thmvfloor-list-icon{
        max-width:540px;
        margin-left:auto;
        margin-top:15px;
    }
    .thmv-floor-form .thmv-booking-text-sec{
        background:transparent;
        padding: 0;
    }
    .thmv-floor-form .thmv-booking-text-sec .thmv-book-form-style-2 .thmv-welcome-box {
        margin: 100px 0px 100px 100px;
    }
    .thmv-floor-form .thmv-booking-text-sec .thmv-book-room{
        margin-left: 50px;
    }
    .thmv-booking-home,
    .thmv-booking-home .thmv-booking-text{
        background:transparent;
        padding: 20px 0px;
    }
    .thmv-booking-home .thmv-booking-text .thmv-sub-title{
        font-size: 16px;
        line-height: 32px;
        color: rgba(25, 27, 24, 0.4);
        margin-bottom: 15px;
    }
    .thmv-amenities-home{
        padding: 30px 0px 80px;
    }
    .thmv-amenities-home .thmv-floor-img{
        width:450px;
    }
    .thmv-map-home{
        padding: 50px 0px 0px;
    }
    .thmv-map-home .thmv-map-sec{
        background:#EAEAEA;
        margin: 250px 0px 150px;
        padding-bottom: 150px;
    }
    .thmv-map-home .thmv-map-sec iframe{
        margin-top: -200px;
    }
    /*-------- Right Side Floting Buttons Section Style --------*/
        .datepick-popup{
            z-index:1060;
        }
        .thmv-home-side{
            position: fixed;
            top: 50%;
            right: 20px;
            transform: translate(-20%, -50%);
            z-index: 999;
            display: flex;
            flex-flow:column;
            justify-content:center;
            align-items:center;
            text-align: center;
            opacity: 0;
            z-index:-10;
            transition:all 0.3s ease-in-out 0.3s;
        }
        .thmv-home-side-show{
            opacity: 1;
            z-index: 10;
        }
        .thmv-home-side-show #home-top,
        #home-top{
            display: flex !important;
        }
        #home-top,
        #home-top:hover,
        #home-top:active,
        #home-top:visited{
            color: #000;
        }
        .thmv-calendar-sticky{
            margin-bottom: 30px;
        }

        .thmv-calendar-sticky{
            background: #404040;
            color: #fff;
            width: 83px;
            height: 83px;
            border-radius: 100%;
            font-size: 32px;
            box-shadow: 0px 14px 20px rgba(118, 118, 118, 0.35);
        }
    /*-------- End of Right Side Floting Buttons Section Style ------*/
    /*-------- Booking Popup Style --------*/
        .book_popup .modal-content {
            background: #191B18;
            border: none;
        }
        .book_popup.modal {
            background: #191B18;
        }
        .book_popup .modal-header {
            border-bottom: none;
        }
        .modal_form_title h4 {
            color: #fff;
            text-transform: inherit;
            font-weight: 400;
            font-size: 30px;
            text-align: center;
            line-height: 39px;
            margin-bottom: 22px;
        }
        .book_popup  .btn-close {
            box-sizing: content-box;
            width: 1.5em;
            height: 1.5em;
            padding: .25em .25em;
            color: #000;
            background: transparent url("../images/model-close-icon.png");
            border: 0;
            border-radius: .25rem;
            opacity: 1;
            background-size: cover;
        }
        .book_popup .thmv-mo-check-form input {
            background: transparent;
            border: 1px solid #333;
            border-radius: 0;
            color: #fff;
            height: 50px;
        }
        .book_popup .thmv-mo-check-form input::placeholder {
          color: #ffffff;
        }
        .book_popup .thmv-mo-check-form input:-ms-input-placeholder {
          color: #ffffff;
        }
        .book_popup .thmv-mo-check-form input::-ms-input-placeholder {
          color: #ffffff;
        }
        .book_popup .thmv-mo-check-form .form-group {
            position: relative;
        }
        .book_popup .thmv-mo-check-form input {
            background: transparent;
            border: 1px solid #333;
            border-radius: 0;
            color: #fff;
            height: 50px;
            position: relative;
            margin-bottom: 20px;
            padding-left:50px;
        }
        .book_popup .thmv-mo-check-form .form-group i {
            color: #fff;
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translate(10px, -50%);
            font-size: 20px;
            pointer-events: none;
        }
        .book_popup .thmv-mo-guest-col .form-content .thmv-mo-peoples-icon{
            transform: translate(10px, -50%);
        }
        .book_popup .thmv-mo-guest-col .form-content {
            border: 1px solid #333;
            color: #fff;
        }
        .book_popup .thmv-mo-guest-col .dropdown-toggle::after{
            display: none;
        }
        .book_popup .thmv-mo-guest-col .form-content {
            border: 1px solid #333;
            color: #fff;
            line-height: 36px;
            padding: 6px 12px;
            position: relative;
            padding-left: 50px;
        }
        .book_popup .thmv-mo-peoples-icon {
            position: absolute;
            font-size: 18px;
            top: 50%;
            right: 15px;
            transform: translate(0px, -50%);
        }
        .btn_mo_search {
            background: #fff;
            line-height: 50px;
            text-transform: uppercase;
            font-weight: 700;
            margin-top: 20px;
            min-width:100%  ;
        }

        .thmv-room_head_title {
            background: #191B18;
            min-height: 320px;
            position: relative;
            z-index: 1;
        }
        .thmv-room_head_title:after {
            content: "room";
            font-size: 278px;
            line-height: 290px;
            right: 0;
            position: absolute;
            color: #322E2C;
            letter-spacing: -0.02em;
            z-index: -1;
            top: 0;
        }
        .thmv-subpage-title h2 {
            font-size: 44px;
            color: #fff;
            line-height: 57px;
            padding:80px 0px 20px;
            display: inline-block;
            border-bottom: 1px solid;
        }
    /*------- End Of Booking Popup Style -------*/
/*=====  End of home inside pages v2 style   ======*/

/*=================================================
    =            home inside v3 page style start            =
    =================================================*/
    .thmv-fix-component{
        padding:120px 0px;
    }
    .thmv-fix-component .thmv-booking-text,
    .thmv-fix-component .thmv-floor-slider .thmv-user-info,
    .thmv-fix-component .thmv-floor-slider .thmvfloor-list-icon,
    .thmv-fix-component .thmv-amenities-sec,
    .thmv-fix-component .thmv-amenities-sec .thmv-welcome-box{
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding:0px;
    }
    .thmv-fix-component .thmv-floor-slider{
        padding: 0;
        margin: 70px 0px 130px;
    }
    .thmv-fix-component .thmv-booking-text-sec{
        background:transparent;
    }
    .thmv-fix-component .thmv-component-text{
        max-width: 570px;
        margin-left: auto;
    }
    .thmv-fix-component .thmv-booking-text-sec .thmv-sub-title{
        font-size: 16px;
        line-height:32px;
        color:rgba(25, 27, 24, 0.4);
        margin-bottom: 20px;
    }
    .thmv-fix-component .thmv-booking-text-sec .thmv-floor-img{
        margin:100px 0 30px;
    }
    .thmv-fix-component .thmv-booking-text-sec .thmv-floor-img img{
        width: 400px;
    }
    .thmv-fix-component .thmv-component-text .thmv-floor-sec{
        padding: 40px 0px 70px;
    }
    .thmv-fix-component .thmvfloor-list-icon .thmv-listing-info p{
        color: #191B18;
    }
    .thmv-amenities-home .thmv-floor-img{
        padding-top:60px;
    }
    /* Form sticky */
    .thmv-component-form{
        padding-left: 80px;
        --offset:6rem;
        align-self: start;
        position: sticky;
        top: var(--offset);
    }
    .thmv-fix-component .thmv-book-form-style-2 .thmv-welcome-box{
        padding: 80px 0px 90px 0px;
        margin-left:100px;
    }


/*=====  End of home inside v3 page style  ======*/


/*=============================================
    =            home inside v4 pages style start            =
    =============================================*/
    .thmv-ame-h4 .thmvfloor-list-icon ul li{
        align-items: center;
        padding:15px 0px;
    }
    .thmv-ame-h4 .thmvfloor-list-icon .thmv-listing-icon img{
        width:26px;
        height:auto;
    }
    .thmv-ame-h4 .thmvfloor-list-icon .thmv-listing-icon img.thmv-parking{
        width: 20px;
    }
    .thmv-ame-h4 .thmvfloor-list-icon .thmv-listing-info h4{
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 0;
    }
    .thmv-ame-h4 .thmvfloor-list-icon .thmv-show-btn{
        margin-left: 0;
    }
    .thmv-ame-h4 .thmvfloor-list-icon ul li:last-child{
        border-bottom: 1px solid rgba(78, 82, 76, 0.1)
    }
    .thmv-amenities-home .thmvfloor-list-icon ul li:last-child{
        border:none;
    }
/*=====  End of home inside v3 pages style  ======*/

/*==============================================
    =            about page style start            =
    ==============================================*/
        .thmv-top-header {
            background: #EAEAEA;
            height:460px;
        }
        .thmv-page-header-box {
            max-width: 460px;
            margin-left: auto;
            padding-top: 30px;
            margin-right: 80px;
        }
        .thmv-breadcurb-list ul {
            display: flex;
        }
        .thmv-breadcurb-list ul li {
            font-size: 16px;
            color: #191B18;
            margin-right: 7px;
            padding-right: 15px;
            position: relative;
        }
        .thmv-breadcurb-list ul li a{
            color: rgba(25, 27, 24, 0.4);
        }
        .thmv-breadcurb-list ul li:not(:last-child):after {
            content: "";
            background: rgba(25, 27, 24, 0.4);
            width: 6px;
            height: 1px;
            right: 0;
            top: 55%;
            position: absolute;
            transform: translate(0% , 0%);
        }
        .thmv-header-title h2 {
            font-size: 54px;
            line-height:70px;
            letter-spacing: -0.02em;
            text-transform: uppercase;
            padding-top: 100px;
            padding-bottom: 10px;
            position: relative;
        }
        .thmv-header-title h2:after {
            content: "";
            width: 1px;
            height: 50px;
            display: inline-block;
            background: #191B18;
            position: absolute;
            top: 30px;
            left: 40px;
        }
        .thmv-header-title p {
            font-size: 18px;
            color: rgba(25, 27, 24, 0.7);
        }
        .thmv-header-top-img,
        .thmv-header-top-img img{
            height: 460px;
        }
        .thmv-header-top-img img{
            object-fit:cover;
        }
        .thmv-about-sec .thmv-about-wel-sec{
            background-color:transparent;
            margin: 0;
            padding: 150px 0px 150px;
        }
        .thmv-about-wel-sec .thmv-welcome-img{
            margin: 0;
        }
        .thmv-about-wel-sec .thmv-wel-about{
            margin-bottom: 150px;
        }
        .thmv-about-wel-sec .thmv-wel-about:last-child{
            margin-bottom: 0;
        }
        .thmv-ab-slider .thmv-ab-img-slider .slick-slide{
            margin: 0px 5px;
        }
        .thmv-ab-slider .thmv-ab-img-slider .slick-list{
            padding: 0px 400px !important;
        }
        .thmv-meet-team{
            padding:150px 0 0px;
        }
        .thmv-team-member{
            margin-bottom: 25px;
        }
        .thmv-user-info .thmv-user-title h6{
            font-size: 20px;
            font-weight: 400;
            line-height: 26px;
            margin-bottom: 10px;
        }
        .thmv-user-info .thmv-user-text p,
        .thmv-listing-info p,
        .thmv-contact-info a,
        .thmv-form-heading p{
            font-size: 16px;
            line-height: 32px;
            color: rgba(25, 27, 24, 0.4);
        }
        .thmv-getin-touch{
            padding-top:50px;
        }
        .thmv-about-sec .thmv-contact-info .thmv-pills-blok p{
            background-color:transparent;
            color:rgba(25, 27, 24, 0.4);
            padding: 0;
        }
        .thmv-about-sec .thmv-contact-info h2 {
            margin: 10px 0px 15px;
        }
        .thmvfloor-list-icon ul li{
            align-items: flex-start;
        }
        .thmv-contact-info .thmv-welcome-box{
            margin-top: 0;
        }
        .thmv-contact-info .thmv-contact-list{
            margin-top: 20px;
        }
        .thmv-contact-info {
            max-width: 470px;
            margin-left: auto;
            margin-right: 70px;
        }
        .thmv-contact-info .thmv-contact-list .thmv-listing-icon i{
            font-size: 30px;
            line-height:39px;
            color:#404040;
        }
        .thmv-listing-info h6{
            font-size: 22px;
            line-height:28px;
            margin-bottom: 10px;
        }
        .thmv-contact-info p{
            color: rgba(25, 27, 24, 0.8);
        }
        .thmv-contact-info a{
            color: #191B18;
            margin-top: 10px;
        }
        .thmv-contact-col{
            background:#404040;
        }
        .thmv-contact-form{
            padding: 100px 0px 100px 100px;
        }
        .thmv-form-heading{
            padding-bottom: 50px;
        }
        .thmv-form-heading h2,
        .thmv-form-heading p{
            color: #FFFFFF;
        }
        .thmv-form-heading h2{
            font-size: 30px;
            font-weight: 400;
            line-height: 39px;
            margin-bottom: 15px;
        }
        .thmv-contact-form{
            max-width:510px;
        }
        .thmv-contact-form .thmv-input-box{
            position: relative;
            margin: 0;
            margin-bottom: 20px;
        }
        .thmv-contact-form form input:focus,
        .thmv-contact-form form textarea:focus,
        .thmv-packages-join form input:focus{
            background:transparent;
            border-color:#FFFFFF;
            color: #FFFFFF;
        }
        .thmv-contact-form form input,
        .thmv-contact-form form textarea,
        .thmv-packages-join form input{
            background: transparent;
            border-radius: 0;
            display: inline-block;
            padding: 10px 50px 12px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #FFFFFF;
        }
        .thmv-contact-form form textarea{
            padding:10px 15px 12px;
            height:150px;
        }
        .thmv-contact-form form input::placeholder,
        .thmv-contact-form form textarea::placeholder,
        .thmv-packages-join form input::placeholder{
            color: #FFFFFF;
        }
        .thmv-contact-form .thmv-input-box i{
            color: #FFFFFF;
            position: absolute;
            left: 0;
            top: 50%;
            transform:translate(25px , -50%);
        }
/*=====  End of about page style  ======*/

/*========================================
    =            about page v2 style start            =
    ========================================*/
    .thmv-about-style-2 .thmv-wel-about .thmv-welcome-info::after,
    .thmv-about-style-2 .thmv-wel-about .thmv-welcome-info::before{
        display: none;
    }
    .thmv-about-style-2 .thmv-wel-about .thmv-welcome-img{
        position: relative;
        margin-right:60px;
    }
    .thmv-about-style-2 .thmv-wel-about .thmv-welcome-img img{
        position: relative;
        z-index:5;
    }
    .thmv-about-style-2 .thmv-wel-about .thmv-welcome-img::after{
        content: "";
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        right: -40px;
        top: 40px;
        transform: translate(0%, 0%);
        opacity: 0.5;
        background: #EAEAEA;
    }
    .thmv-about-style-2 .thmv-wel-about{
        margin-bottom: 60px;
    }
/*=====  End of about page v2 style  ======*/

/*===========================================
    =            packages page style            =
    ===========================================*/
    .thmv-appartments-sec .thmv-packages .thmv-appartments-info p{
        color: rgba(25, 27, 24, 0.6);
    }
    .thmv-packages .thmv-appartments-info a{
        margin-top: 15px;
    }
    .thmv-packages-sec {
        padding: 150px 0px 0px;
    }
    .thmv-packages-sec .thmv-filter-box .thmv-appartments-info{
        padding: 20px 5px;
    }
    .thmv-packages-sec .thmv-filter-box .thmv-appartments-info h5{
        padding-bottom: 10px;
    }
    .thmv-Specials-packages{
        padding: 100px 0px 0px;
    }
    .thmv-packages-sec .thmv-packages .thmv-appartments-info p,
    .thmv-packages-sec .thmv-packages .thmv-appartments-info p,
    .thmv-Specials-packages .thmv-packages .thmv-appartments-info p{
        color: rgba(25, 27, 24, 0.4);
    }
    .thmv-last-deals{
        margin: 60px auto;
        padding: 110px 0px 50px;
        background: #EAEAEA;
    }
    .thmv-faqs{
        padding:60px 10px 50px;
    }
    .thmv-faqs .accordion-header{
        display: flex;
        align-items:center;
        justify-content:center;
    }
    .thmv-faqs .thmv-accordion-number{
        width: 50px;
        height: 46px;
        line-height: 46px;
        font-size: 20px;
        display: inline-block;
        text-align: center;
        background: #404040;
        color: #fff;
    }
    .thmv-faqs .accordion-item {
        border:0;
        position: relative;
        border-bottom: 1px solid rgba(64, 64, 64, 0.1);
        padding:15px 0px;
    }
    .thmv-faqs .accordion-item:last-child{
        border:none;
    }
    .thmv-faqs .accordion-item:first-child::before{
        display: none;
    }
    .thmv-faqs .accordion-item .accordion-button{
        background:transparent;
        border:0;
        box-shadow:none;
    }
    .thmv-faqs .accordion-item .accordion-button h5{
        font-size: 18px;
        line-height:32px;
        max-width:620px;
    }
    .thmv-faqs .accordion-item .accordion-button {
        font-family: 'Spinnaker', sans-serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 32px;
    }
    .thmv-faqs .accordion-item .accordion-body p{
        font-size: 16px;
        line-height: 32px;
        color: rgba(25, 27, 24, 0.8);
    }
    .thmv-faqs .accordion-item .accordion-collapse{
        margin-left: 45px;
    }
    .thmv-faqs .accordion-button:not(.collapsed),
    .thmv-faqs .accordion-button:not(.collapsed),
    .accordion-button:not(.collapsed)::after{
        color: #171818;
    }
    .accordion-button::after {
        content: "\f078";
        font-family: 'Font Awesome 5 Free';
        color: #000000;
        font-weight: 600;
        font-size: 16px;
        width: auto;
        height: auto;
        background-image:none;
        transition: transform .2s ease-in-out;
    }
    .accordion-button:not(.collapsed)::after{
        background-image:none;
    }
    .thmv-faqs .accordion-item .accordion-button{
        padding: 10px 0px;
        margin-left: 20px;
    }
    .thmv-faqs .accordion-item .accordion-collapse .accordion-body{
        padding:0px 0px 10px;
        margin-left: 20px;
    }
    .thmv-packages-join{
        padding: 100px 0px 150px;
    }
    .thmv-packages-join .thmv-uniq-box .thmv-pills-blok p{
        background:transparent;
        color: rgba(255, 255, 255, 0.4);
    }
    .thmv-packages-join .thmv-welcome-box{
        max-width:800px;
    }
    .thmv-packages-join .thmv-welcome-box h2 {
        margin: 10px 0px 15px;
    }
    .thmv-packages-join .thmv-welcome-box p{
        margin-bottom: 20px;
    }
    .thmv-packages-join .thmv-welcome-box form{
        max-width: 400px;
        margin:0 auto;
    }
    .thmv-packages-join form .input-group input{
        position: relative;
    }
    .thmv-packages-join form .input-group i{
        color: #FFFFFF;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translate(25px , -50%);
    }
    .thmv-packages-join .thmv-welcome-box form button{
        min-width:120px;
    }
/*=====  End of packages page style  ======*/

/*===============================================
    =            packages v2 page style             =
    ===============================================*/
    .thmv-appartments-info .thmvfloor-list-icon{
        margin: 0;
    }
    .thmv-appartments-info .thmvfloor-list-icon ul li {
        align-items: center;
    }
    .thmv-appartments-info .thmv-listing-icon{
        margin-right:15px;
    }
    .thmv-appartments-info .thmvfloor-list-icon .thmv-listing-icon img{
        width: 26px;
        height: 26px;
    }
    .thmv-appartments-info .thmvfloor-list-icon .thmv-listing-info h4{
        font-size: 16px;
        line-height: 20px;
    }
/*=====  End of packages v2 page style   ======*/

/*=================================================
    =          experience section style start          =
    =================================================*/
    .thmv-review-sec{
        padding:100px 0px;
    }
    .thmv-review-sec .slick-review-slider .slick-list{
        padding-left: 0 !important;
        padding-right:350px !important;
    }
    .slick-prev::before,
    .slick-next::before {
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        font-size: 14px;
        line-height: 40px;
        color: #000000;
        transition: all 0.3s ease 0s;
        opacity: 1;
    }
    .slick-prev::before{
        content:"\f053";
    }
    .slick-next::before{
        content:"\f054";
    }
    .slick-slider .slick-prev,
    .slick-slider .slick-next {
        width: 45px;
        height: 45px;
        display: inline-block;
        background: #FFFFFF;
        position: absolute;
        z-index: 1;
        transition: all 0.3s ease 0s;
    }
    .slick-review-slider{
        position: relative;
    }
    .slick-slider .slick-prev:hover,
    .slick-slider .slick-next:hover{
        background: #000000;
    }
    .slick-prev:hover::before,
    .slick-next:hover::before{
        color: #FFFFFF;
    }
    .slick-review-slider .slick-prev,
    .slick-review-slider .slick-next{
        position: absolute;
    }
    .slick-review-slider.slick-slider .slick-prev{
        left: 0%;
        top: 100%;
        transform: translate(0% , -50%);
        margin: -32px 0px 0px 20px;
    }
    .slick-review-slider.slick-slider .slick-next{
        right: 100%;
        top: 100%;
        transform: translate(0% , -50%);
        margin: -32px -120px 0px 0px;
    }
    .thmv-user-review{
        max-width: 540px;
        margin-left: auto;
    }
    .thmv-user-review .thmv-sub-title{
        font-size: 16px;
        line-height:32px;
        color: rgba(25, 27, 24, 0.4);
    }
    .thmv-user-review h2{
        margin-bottom: 25px;
    }
    .thmv-user-review h3{
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 15px;
    }
    .thmv-user-review p{
        font-size: 18px;
        line-height: 36px;
        color: #191B18;
        margin-bottom: 30px;
    }
    .thmv-review-sec .slick-review-slider .slick-list {
        padding-left: 0 !important;
        padding-right: 250px !important;
    }
/*=====  End of experience section style   ======*/

/*================================================
    =            contact us section style            =
    ================================================*/
    .thmv-contact-map{
        padding:150px 0px 50px;
    }
    .thmv-contact-top .thmv-header-title a{
        margin-top: 15px;
    }
    .thmv-contact-sec {
        padding:100px 0px;
    }
    .thmv-contact-faq{
        padding:60px 0px 100px;
    }
/*=====  End of contact us section style  ======*/

/*========================================
    =            gallery fancybox            =
    ========================================*/

    a[data-fancybox] img {
      cursor: zoom-in;
    }
    .fancybox__backdrop::after {
      content: "";
      position: absolute;
      width: 10%;
      height: 10%;
      filter: blur(2px);
      left: 50%;
      top: 50%;
      transform: scale(11);
      opacity: 0.3;
      background-image: var(--bg-image);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
    }
    .fancybox__container {
      --fancybox-bg: #000;

      --fancybox-thumbs-width: 48px;
      --fancybox-thumbs-ratio: 1;

      --carousel-button-bg: rgb(91 78 76 / 74%);

      --carousel-button-svg-width: 24px;
      --carousel-button-svg-height: 24px;

      --carousel-button-svg-stroke-width: 2.5;
    }
    .fancybox__nav {
      --carousel-button-svg-width: 24px;
      --carousel-button-svg-height: 24px;
    }
    .fancybox__nav .carousel__button.is-prev {
      left: 20px;
    }
    .fancybox__nav .carousel__button.is-next {
      right: 20px;
    }
    .carousel__button.is-close {
      right: 20px;
      top: 20px;
      left:auto;
    }
    .carousel__button.is-close,
    .fancybox__nav .carousel__button{
        background:#191B18;
        color:#FFFFFF;
        transition: all 0.3s;
    }
    .carousel__button.is-close:hover,
    .fancybox__nav .carousel__button:hover{
        background:#FFFFFF;
        color:#191B18;
    }
    .fancybox__slide {
      padding: 8px 88px;
    }
    /* Thumbnails */
    .fancybox__thumbs{
        display: none;
    }
/*=====  End of gallery fancybox  ======*/
