:root {
    /* Fonts */
    --font-primary: "Roboto", sans-serif;
    --font-raleway: "Raleway", sans-serif;

    /*Colors */
    --black: #322F2F;
    --white: #ffffff;
    --primary: #6E0000;
    /* #244AB4,#00349B */
    --secondary: #787878;
    --sky-blue: #F5F5F5;

}



/* Default styles start */

*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;

}

body {
    font-family: var(--font-primary);
    line-height: 1.25;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
}

p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    padding: 0;
    color: var(--secondary);
}


/* heading */
.h1,
h1 {
    font-size: 60px;
}

.h2,
h2 {
    font-size: 37px;
}

h3,
.h3 {
    font-size: 30px;
}

h4,
.h4 {
    font-size: 26px;
}


h5,
.h5 {
    font-size: 20px;
}

h6,
.h6 {
    font-size: 18px;
}

.p {
    font-size: 16px;
}

.p-small {
    font-size: 14px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: 0;
}

/* Pseudo default styles start */

::placeholder {
    color: rgba(19, 24, 43, 0.7) !important;
    opacity: 1;
}

::-webkit-input-placeholder {
    color: rgba(19, 24, 43, 0.7) !important;
}

:-ms-input-placeholder {
    color: rgba(19, 24, 43, 0.7) !important;
}

::-ms-input-placeholder {
    color: rgba(19, 24, 43, 0.7) !important;
}

*::-moz-selection {
    background: var(--primary);
    color: white;
}

*::selection {
    background: var(--primary);
    color: white;
}

*::-moz-selection {
    background: var(--primary);
    color: white;
}

*::-webkit-selection {
    background: var(--primary);
    color: white;
}

/* Pseudo default styles end */

.font-roboto {
    font-family: var(--font-primary);
}

.font-raleway {
    font-family: var(--font-raleway);
}



/* COLORS */
.bg-black-color {
    background-color: var(--black);
}

.bg-white-color {
    background-color: var(--white);
}

.bg-primary-color {
    background-color: var(--primary);
}

.bg-secondary-color {
    background-color: var(--secondary);
}

.bg-skyblue-color {
    background-color: var(--sky-blue);
}

.color-black {
    color: var(--black);
}

.color-white {
    color: var(--white);
}

.color-primary {
    color: var(--primary);
}

.color-secondary {
    color: var(--secondary);
}

.color-skyblue {
    color: var(--sky-blue);
}

/* COLORS */

/* font weight */
.fw-700 {
    font-weight: 700;
}

.fw-600 {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500;
}

.fw-400 {
    font-weight: 400;
}

.fw-300 {
    font-weight: 300;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-auto-0 {
    flex: 0 0 auto;
}

img {
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

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

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

/* Button Css Start */
.prime-btn {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-primary);
    line-height: 1;
    letter-spacing: 1px;
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    border-radius: 2px;
    padding: 10px 16px;
    width: 152px;
    height: 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
    box-shadow: none;
}

.prime-btn::after {
    content: "";
    background: var(--white);
    position: absolute;
    z-index: -1;
    padding: 0.85em 0.75em;
    display: block;
    transition: all 0.3s ease;
}

.prime-btn.grow_spin::after {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transform: scale(0, 0) rotate(-180deg);
}

.prime-btn.grow_spin:hover::after {
    transform: scale(1, 1) rotate(0deg);
    transition: all 0.3s ease-out;
}

.prime-btn:hover,
.prime-btn:focus,
.prime-btn:active,
.prime-btn:focus-visible {
    box-shadow: none;
    outline: none;
    color: var(--primary);
}



/* Button Css End */

.sec-spacing {
    padding: 120px 0;
}

.text-upper {
    text-transform: uppercase;
}

.text-decoration {
    text-decoration: underline;
}


/* Spinner Loader Css Start */

.spinner-wrapper {
    width: 100%;
    height: 100%;
    background-color: #f8f6f6;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    position: relative;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
}

.spinner::before,
.spinner:after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.spinner:before {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #83000b 70%, #000000 30%);
    animation: spin .5s infinite linear;
}

.spinner:after {
    width: 90%;
    height: 90%;
    background-color: #f3f0f0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

div#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background-color: #fff;
    background: #fff url("../images/logo.png") no-repeat center center;
}

[data-background] {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}


/* Spinner Loader Css End */

/* Back to top button */
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 5%;
    bottom: 5%;
    z-index: 9999;
    background: var(--primary);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #83000b;
    color: #fff;
}

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

/* Default styles end */


/* ---- Index Page Style start ---- */

/* Header styles start */

header {
    width: 100%;
    left: 0;
    right: 0;
}

.fixed-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1111;
    animation: slideDown 0.50s ease;
    background-color: rgb(0 0 0 / 80%);
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);

}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar {
    padding: 0px;
    overflow: hidden;
}

.navbar-brand {
    width: 174px;
    height: 102px;
    padding: 0;
    margin: 0;
    z-index: 111;
    flex: 0 0 auto;
}

.navbar-brand img {
    width: inherit;
    height: inherit;
    object-fit: contain;
}

.header-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-left: 60px;
}

.header-left-top {
    padding: 18px 0;
    display: flex;
    align-items: center;
}

.header-info {
    margin-left: 50px;
}

.header-info-icon {
    width: 40px;
    height: 40px;
    margin-right: 16px;
    flex: 0 0 auto;
}

.header-info-icon img {
    width: inherit;
    height: inherit;
    object-fit: contain;
}

.header-info-content p {
    font-size: 18px;
    line-height: 1;
    color: #000;
    margin-bottom: 8px;
}

.header-info-content span {
    font-size: 14px;
    line-height: 1;
    color: #505050;
}



.header-left-bottom {
    background-color: #000;
    width: 100%;
    position: relative;
    padding-left: 20px;
}

.header-left-bottom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: #000;
}

.header-left-bottom .prime-btn {
    height: 60px;
    font-weight: 400;
    font-size: 18px;
    margin-left: 5px;
    letter-spacing: 0;
}

.navbar-expand-lg .navbar-nav {
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-item {
    width: max-content;
}

.nav-link {
    text-transform: capitalize;
    position: relative;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    width: max-content;
    letter-spacing: 0.5px;
    color: white;
    margin-right: 65px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

/* .nav-link:after {
    position: absolute;
    content: " ";
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    width: 0%;
    height: 1px;
    background-color: var(--primary);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
} */

.nav-link:hover,
.nav-link:focus,
.nav-item.active .nav-link {
    color: #c92130;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


.nav-link:hover:after,
.nav-link:focus:after,
.nav-item.active .nav-link:after {
    width: 60%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 0;
}

.nav-item:last-child .nav-link {
    margin-right: 60px;
}

/* scroll  */



header.fixed-header .header-left-top {
    display: none;
}


header.fixed-header .navbar-brand {
    width: 156px;
    height: 92px;
}

header.fixed-header .header-left-bottom {
    background-color: transparent;
}

header.fixed-header .header-left-bottom::after {
    display: none;
}

header.fixed-header .navbar {
    padding: 8px 0;
}

.header-rates-wrap {
    padding: 12px 0;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 15px;
    text-align: right;
    padding-right: 140px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.header-rates-wrap a {
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.4px;
}

.contact-info-mobile {
    display: none;
    /* visibility: hidden; */
    padding: 12px 0;
    background-color: var(--primary);

}

.contact-info-mobile a,
.contact-info-mobile svg ,
.contact-info-mobile span{
    line-height: 1;
    font-size: 13px;
    line-height: 1;
}

/*  */

/* Sidebar style start */

.slide-menu {
    cursor: pointer;
    margin: 0 60px;
}

.sidenav {
    height: 100vh;
    width: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8392156862745098);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 70px;
    overflow: hidden;

}

.sidenav .closebtn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 36px;
    color: white;
    font-size: 40px;
}

.sidenav-wrapper {
    overflow-y: auto;
    height: 100%;
    padding: 20px 30px;
}

.sidenav-wrapper .navbar-brand {
    width: 140px;
    height: 84px;
    margin-bottom: 30px;
}

.sidenav-wrapper p.text {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.5px;
}

.sidenav-wrapper p.sidebar-amenities {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 10px;
}

.sidenav-wrapper h4 {
    font-size: 20px;
    margin: 40px 0 28px 0;
}

.sidebar-contact-wrap-item {
    position: relative;
    display: flex;
}

.sidebar-contact-wrap-item .icon {
    color: #850000;
    margin-right: 16px;
    font-size: 26px;
}

.sidebar-contact-wrap-item span {
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 2;
}

/* Sidebar menu */


/* Hero styles Start */

.hero-wrapper {
    position: relative;
}

.hero-banner,
.page-hero-banner,
.feedback {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 800px;
}

.hero-banner::before,
.page-hero-banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: .2;
}

.hero-banner.hero-one {
    background-image: url('../images/hero-bg-img/hero-index-one.jpg');
}

.hero-banner.hero-two {
    background-image: url('../images/hero-bg-img/hero-index-two.jpg');
    background-position: top;
}

/* .hero-banner.hero-three {
    background-image: url('../images/hero-bg-img/hero-index-three.jpg');
} */

/* Hero section of all page start */
.page-hero-banner {
    min-height: 650px;
}

.page-hero-banner::before {
    background-color: #000000;
    opacity: .4;
}

.hero-service {
    background-image: url('../images/hero-bg-img/hero-service.jpg');
}

.hero-gallery {
    background-image: url('../images/hero-bg-img/hero-gallery.jpg');
    background-position: bottom;
}

.hero-contact {
    background-image: url('../images/hero-bg-img/hero-contact.jpg');
}

.hero-ada {
    background-image: url('../images/hero-bg-img/hero-ada.jpg');
}

.hero-attraction {
    background-image: url('../images/hero-bg-img/hero-attraction.jpg');
}

/* Hero section of all page end */

/* hero-content of all page start */
.page-hero-content {
    z-index: 11;
    position: absolute;
    bottom: 15%;
    left: 15%;
    text-align: left;
}

.page-hero-content h1 {
    font-size: 56px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.sec-page-title {
    font-size: 36px;
    letter-spacing: 0px;
    margin-bottom: 50px;
}

/* hero-content of all page end */


/* breadcrumb style Start */
.page-hero-content .breadcrumb-item {
    font-size: 16px;
}

.page-hero-content .breadcrumb-item a {
    color: var(--white);
    transition: 0.3s;
    text-shadow: 1px 1px 2px #000000;
}

.page-hero-content .breadcrumb-item a:hover {
    color: var(--primary);
}

.page-hero-content .breadcrumb-item.active,
.page-hero-content .breadcrumb-item+.page-hero-content .breadcrumb-item::before {
    color: #dfdede;
}

.page-hero-content .breadcrumb-item+.breadcrumb-item::before {
    color: var(--white);
}

/* breadcrumb style end */

.hero-text-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 111;
}

.hero-text {
    width: 100%;

}

.hero-text h1 {
    text-transform: capitalize;
    line-height: 80px;
    margin-bottom: 30px;
    letter-spacing: 2px;
    max-width: 638px;
}

.hero-text p {
    font-size: 16px;
    text-transform: capitalize;
    line-height: 34px;
    max-width: 530px;
}

.hero-text .prime-btn {
    margin-top: 40px;
    border-radius: 50px;
}

/* owl dots start */
.owl-theme .owl-dots {
    position: absolute;
    top: 50%;
    right: 90px;
    transform: translateY(-50%);
    margin-top: 0;
    /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; */

}

.owl-carousel button.owl-dot {
    width: 18px;
    height: 18px;
    border-radius: 50px;
    background: white;
    flex: 0 0 auto;
    border: 0;
    margin-bottom: 12px;
}

.owl-carousel button.owl-dot:last-child {
    margin-bottom: 0;
}

.owl-theme .owl-dots .owl-dot span {
    width: 0;
    height: 0;
    margin: 0;
}

.owl-carousel button.owl-dot.active {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 20px;
    height: 20px;
    background-color: var(--primary);
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    right: 110px;
    transform: rotate(90deg) translateY(-50%);
    margin-top: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 40px;
    transition: all ease-in-out 0.3s;
    width: max-content;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
    color: var(--primary);
    text-decoration: none;
}

.owl-carousel .owl-nav button.owl-prev {
    top: 43%;
}

.owl-carousel .owl-nav button.owl-next {
    top: 53%;
}


/* owl dots end */

/* Hero styles end */

/* about section start */
.sec-title {
    position: relative;
    margin-bottom: 35px;
}

.sec-title.centered {
    margin-bottom: 60px;
}

.centered {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.sec-title.centered .separate:after {
    left: 50% !important;
    margin-left: -15px !important;
}

.sec-title h2 {
    position: relative;
    line-height: 1.2;
    padding-bottom: 18px;
}

.sec-title .separate {
    position: relative;
    width: 130px;
    float: left;
}

.sec-title .separate:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 130px;
    height: 2px;
    background-color: #cccccc;
}

.sec-title .separate:after {
    position: absolute;
    content: '';
    left: 0px !important;
    bottom: 0px;
    width: 30px;
    height: 4px;
    background-color: var(--primary);
}

.about-content p {
    font-size: 15px;
    line-height: 34px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-right: 50px;
    /* width: 580px; */
}

.about-content .prime-btn {
    margin-top: 36px;
}

.about-image-wrap {
    width: 100%;
    height: 527px;
    position: relative;
    /* overflow: hidden; */
}

.about-image-wrap img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    z-index: 111;
    position: relative;
    transition: all ease-in-out 0.4s;
}

.about-image-wrap:hover img {
    transform: scale(1.08);
}

.about-img-bg {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 210px;
    height: 200px;
    z-index: 11;
}



/* Exclusive Offers section Start  */
.exclusive-offer-wrap {
    position: relative;
    border: 2px solid var(--primary);
}

.exclusive-offer-image {
    width: 100%;
    height: 470px;


}

.exclusive-offer-image img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    position: relative;
}

.exclusive-offer-wrap .lower-box {
    position: relative;
    text-align: center;
    padding: 25px 15px 25px;
    background-color: #ffffff;
    /* border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary); */
}

.exclusive-offer-wrap .lower-box:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    right: 0px;
    height: 2px;
    background-color: var(--primary);
    transition: all 600ms ease;
}

.exclusive-offer-wrap .lower-box h3 {
    position: relative;
    font-size: 22px;
    font-weight: 400;
}

.exclusive-offer-wrap .lower-box h3 a {
    position: relative;
    color: #322f2f;
    transition: all 0.3s ease;
}

.exclusive-offer-wrap:hover .lower-box h3 a {
    color: #ffffff;
}

.exclusive-offer-wrap:hover .lower-box:before {
    height: 100%;
}


.exclusive-offer-image .overlay-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    color: #ffffff;
    background-color: #F5F5F5;
    opacity: 1;
    text-align: center;
    /* background: rgba(0, 0, 0, 0.8); */
    /* transition: all 900ms ease;
    transform: perspective(400px) rotateX(-90deg);
    transform-origin: top;
    transition: all 0.5s; */
}

.exclusive-offer-wrap.exc-rooms .overlay-box {
    opacity: 0;
    background: rgba(0, 0, 0, 0.8);
    transition: all 900ms ease;
    transform: perspective(400px) rotateX(-90deg);
    transform-origin: top;
    transition: all 0.5s;
}

.exclusive-offer-wrap:hover .exclusive-offer-image .overlay-box {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -moz-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    -o-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
}

.exclusive-offer-wrap.exc-rooms:hover .exclusive-offer-image .overlay-box .text {
    color: var(--white);
}

.exclusive-offer-image .overlay-box .overlay-inner {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: table;
    vertical-align: middle;
    padding: 10px 30px;
}

.exclusive-offer-image .overlay-box .overlay-inner .content {
    position: relative;
    display: table-cell;
    vertical-align: middle;
}

.exclusive-offer-image .overlay-box .icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.exclusive-offer-image .overlay-box .icon img {
    width: inherit;
    height: inherit;
    object-fit: contain;
}

.exclusive-offer-image .overlay-box .text {
    position: relative;
    line-height: 30px;
    font-size: 16px;
    letter-spacing: 0.5px;
    font-weight: 400;
    margin: 24px 0;
    color: var(--secondary);
}

.exclusive-offer-image .overlay-box .prime-btn {
    font-size: 14px;
    width: 120px;
    height: 40px;
    border-radius: 50px;
}

/* Exclusive Offers section End */

/* Boking form section start */
.booking-form {
    display: flex;
    width: 100%;
    margin-top: -10%;
}

.booking-form-image-wrap,
.booking-form-content-wrap {
    width: 50%;
}

.booking-form-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-form-content-wrap form {
    margin-left: 12%;
    margin-top: 18%;
    margin-bottom: 10%;
}

/* Booking Form */
.web-res-form {
    width: 460px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 111;
    position: relative;
    padding-left: 12px;
    padding-right: 12px;
}

.web-res-form h2 {
    text-align: center;
    line-height: 1;
    margin-bottom: 38px;
}

.form-group {
    margin-bottom: 40px;
}

.form-label {
    font-size: 20px;
    color: var(--black);
    font-family: var(--font-raleway);
    margin-bottom: 16px;
    font-weight: 500;
}

.form-control {
    font-size: 16px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 2px;
    background-color: white;
    font-weight: 300;
    line-height: 1;
    color: var(--black);
    padding: 14px 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-family: var(--font-primary);
}

.form-control:focus {
    border: 1px solid transparent;
    outline: 0;
    box-shadow: none;
}

.form-section .prime-btn {
    max-width: 100%;
    width: 100%;
    height: 100%;
}

.input-group {
    position: relative;
}

.input-icon {
    font-size: 14px;
    position: absolute;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    color: rgb(0 0 0 / 30%);
}

.web-res-form .prime-btn {
    width: 100%;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 4px;
    background-color: var(--primary);
    /* border: none; */
    margin-top: 10px;
}



.ui-widget-header {
    border: 1px solid var(--primary) !important;
    background: var(--primary) !important;
    color: #fff;
    font-weight: bold;
}

.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.ui-widget.ui-widget-content {
    z-index: 111 !important;
}

/* Booking form end */

/* Boking form section end */

/* Service Amenities section Start */
.service-amenities-wrap {
    display: flex;
    width: 100%;
}

.service-amenities-image {
    width: 444px;
    height: auto;
    overflow: hidden;
}

.service-amenities-image img {
    width: inherit;
    height: 100%;
    object-fit: cover;
    transition: all ease-in-out 0.4s;
}

.service-amenities-image:hover img {
    transform: scale(1.08);
}

.service-amenities-content {
    width: calc(100% - 444px);
    box-shadow: 0 1px 50px 2px rgba(0, 0, 0, 0.06);

}

.service-amenities-content h2 {
    font-size: 30px;
    line-height: 1;
    padding: 15px 0;
    width: 100%;
}

.service-amenities-details-wrap {
    padding: 60px 55px 55px;
}

.service-amenities-details {
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.1);
    padding: 22px 54px;
    margin-bottom: 40px;

}

.service-amenities-icon-wrap {
    width: 90px;
    height: 90px;
    border: 1px solid var(--primary);
    border-radius: 100%;
    padding: 16px;
    flex: 0 0 auto;
    margin-right: 40px;
}

.service-amenities-details:hover .service-amenities-icon-wrap img {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}


.service-amenities-content-wrap h5 {
    line-height: 1.4;
    margin-bottom: 12px;
}

.service-amenities-content-wrap p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.service-amenities .prime-btn {
    width: 100%;
    letter-spacing: 20px;
    height: 52px;
}

/* Service Amenities section End */


/* Gallery Section Start */
.gallery.sec-spacing {
    padding: 120px 0 220px 0;
}

.photo-gallery-wrap {
    width: 100%;
    display: flex;
    gap: 24px;
}

.photo-gallery-wrap-item {
    position: relative;
}

.photo-gallery-wrap-item:nth-child(1),
.photo-gallery-wrap-item:nth-child(4) {
    width: 22%;
}

.photo-gallery-wrap-item:nth-child(2),
.photo-gallery-wrap-item:nth-child(3) {
    width: 28%;
}

.photo-gallery-wrap-item img {
    width: 100%;
    height: 624px;
    object-fit: cover;
}

.ph-inner-image {
    width: 100%;
    height: 300px;
    margin-bottom: 24px;
    position: relative;
}

.ph-inner-image img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.gallery .prime-btn {
    margin-top: 70px;
}


.photo-gallery-overlay {
    position: absolute;
    background-color: rgb(0 0 0 / 50%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}

.ph-inner-image:hover .photo-gallery-overlay,
.overlay-effect:hover .photo-gallery-overlay {
    opacity: 1;
}

.search-icon {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.search-icon svg {
    width: inherit;
    height: inherit;
    object-fit: contain;
}

/* Gallery Section End */

/* Our Room Section Start */
.our-room.sec-spacing {
    padding: 120px 0 200px 0;
}

.our-room-wrap {
    position: relative;
    height: 550px;
    width: 100%;
    overflow: hidden;
}

.our-room-wrap img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all ease-in-out 0.4s;
}

.our-room-wrap:hover img {
    transform: scale(1.08);
}

.our-room-content-wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 80%;
    transform: translateX(-50%);
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.8);
}

.our-room-content-wrap h4 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 18px;
}

.our-room-content-wrap p {
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0.5px;
}

.our-room-slider-item .prime-btn {
    position: absolute;
    top: 0;
    right: 0;
}

/* arrow */
.owl-theme .owl-nav {
    margin-top: 0;
}

.our-room-slider .owl-carousel .owl-nav button.owl-next,
.our-room-slider .owl-carousel .owl-nav button.owl-prev {
    top: 110%;
    right: 50%;
    left: 50%;
    margin-top: 0;
    transform: unset;
    color: var(--primary);
}

.our-room-slider .owl-carousel .owl-nav button.owl-next {
    right: 40%;
}

.our-room-slider .owl-carousel .owl-nav button.owl-prev {
    left: 42%;
}

.our-room-slider .owl-theme .owl-dots {
    top: 112%;
    right: 50%;
    transform: unset;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    flex-direction: row;
}


.our-room-slider .owl-carousel button.owl-dot {
    margin-bottom: 0;
    margin: 0 8px;
}

/*  */
.feedback {
    position: relative;
    min-height: 500px;
    background-image: url('../images/sec-bg-img/feedback.jpg');
}

.feedback-content-wrap {
    width: 548px;
    position: absolute;
    top: -20%;
    left: 10%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.9);
}

.feedback-content-wrap .owl-carousel .item {
    padding: 50px;
}

.feedback-content-wrap .sec-title {
    margin-bottom: 40px;
}

.feedback-content-wrap .sec-title h2 {
    font-size: 30px;
}

.feedback-content-wrap p {
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
}

.avatar-image {
    width: 70px;
    height: 70px;
    flex: 0 0 auto;
    margin-right: 16px;
}

.fd-icon {
    position: absolute;
    right: 40px;
    bottom: 30px;
}

/* Feedback Section End */

/* Footer start */
.footer-top-wrap {
    padding: 100px 0 70px 0;
    background-color: #F5F5F5;
}

.footer-bottom-wrap {
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    padding: 15px 0;
}


.footer-top-wrap h3 {
    margin: 40px 0 32px 0;
}

.footer-top-wrap a,
.footer-top-wrap p {
    font-size: 16px;
    line-height: 2;
    font-weight: 400;
    color: var(--black);
}

.footer-top-wrap svg {
    font-size: 18px;
    line-height: 1;
    margin-right: 12px;

}

.footer-top-wrap .contact-info {
    margin: 30px 0;
}


.footer-link {
    color: var(--white);
    font-size: 16px;
    line-height: 1.5;
    transition: all ease-in-out 0.3s;
}

.footer-link:hover {
    color: #ab0000;
}

.footer-link:not(:last-child) {
    margin-bottom: 10px;
}

.footer-bottom-wrap {
    padding: 16px 0;
    position: relative;
    z-index: 111;
}

.footer-bottom-wrap p {
    font-size: 16px;
}

.ref-content {
    font-size: 16px;
    line-height: 1.6;
    max-width: 480px;
    margin: 34px auto 0 auto;
}

.footer-pl {
    padding-left: 60px;
}

.footer-top-wrap .ada-link {
    margin-top: 40px;
    position: relative;
    width: max-content;
}

.footer-top-wrap .ada-link::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: #6E0000;
}

.footer-logo {
    margin: 0 auto;
    width: 152px;
    height: 90px;
}

.footer-about {
    position: relative;
}

.footer-about::after,
.footer-about::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background: rgba(110, 0, 0, 0.1);
}

.footer-about::after {
    right: 4%;
}

.footer-about::before {
    left: 4%;
}

.footer-ls-contact {
    display: -webkit-flex !important;
}

/* Footer End */

/* Service Page start */

.service-page .amenities-icons-grid-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 24px;
}

.service-page .amenities-icons-grid-item {
    height: 194px;
    background-color: var(--white);
    border-radius: 4px;
    padding: 40px 10px;
    text-align: center;
    border: 1px solid var(--primary);
}

.service-page .amenities-icons-grid-item:last-child {
    grid-column: 2 / span 2;
}

.service-page .amenities-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 30px;
}

.service-page .amenities-icons-grid-item:hover .amenities-icon img {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}

.service-page .amenities-icons-grid-item h6 {
    color: #010101;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.service-page .amenities-icons-grid-item p {
    font-family: var(--font-raleway);
    color: #2d2d2d;
    line-height: 2;
    letter-spacing: 0.5px;
    padding: 0px 20px;
    font-size: 16px;
}

/* Service Amenities page end */

/* Gallery page start */
.gallery-page .photo-gallery-wrap-item {
    display: block;
    height: 360px;
    width: 100%;
}

/* ---- Contact-us page start---- */

.contact-page.sec-spacing {
    padding: 120px 0 80px 0;
}

.info-wrapper-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

}

.info-wrapper {
    padding: 40px 20px;
    background-color: var(--sec-bg-color);
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

.info-wrapper svg {
    font-size: 34px;
    margin-bottom: 30px;
}

.info-wrapper h5 {
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.info-wrapper p,
.info-wrapper a {
    font-size: 16px;
    line-height: 1.5;
    word-break: break-word;
    letter-spacing: 0.5px;

}

.contact-us-iframe {
    width: 100%;
    height: 450px;
}

/* ---- Contact-us page end---- */


/* -- // Ada feature Page Styles Start // -- */
.ada-feature-wrap:not(:last-child) {
    margin-bottom: 50px;
}

.ada-feature-wrap h3 {
    margin-bottom: 20px;
}

.ada-feature-item {
    font-size: 18px;
    line-height: 1.5;
    padding: 16px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px 0px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;

}

.ada-feature-note {
    margin-top: 40px;
}


/* -- // Ada feature Page Styles End // -- */


/* -- // Attraction Page Styles Start // -- */
.attraction-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.attraction-grid-item-wrap {
    padding: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;

}

.attraction-item-title {
    margin-bottom: 20px;

}


.item-list {
    margin-bottom: 10px;
}

.item-list p {
    font-size: 16px;
    line-height: 2.2;
}



/* .attraction-main-wrapper {
    width: 100%;
}

.attraction-image-wrap {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.attraction-image-wrap img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all 0.5s ease;
}

.attraction-image-wrap img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.attraction-title {
    font-size: 30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.attraction-content-wrap {
    margin: -100px 0 0 50px;
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 8px 0 8px 8px;
    z-index: 11;
    position: relative;
    box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.08);

}

.att-content-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    padding-bottom: 10px;

}

.att-content-text:not(:last-child) {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.local-restaurants-wrap {
    margin-top: 180px;
}

.local-restaurants-wrap-one {
    margin-top: 80px;
} */

/* -- // Attraction Page Styles End // -- */