:root {
    /* Fonts */
    --font-primary: "Barlow", sans-serif;
    --font-cormorant: "Cormorant Garamond", serif;

    /*Colors */
    --black: #122223;
    --white: #ffffff;
    --primary: #B69121;
    --secondary: #787878;
    --sky-blue: #F8F5F0;

}



/* 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: 68px;
}

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

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

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

.h4-small {
    font-size: 22px;
}

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: #828282 !important;
    opacity: 1;
}

::-webkit-input-placeholder {
    color: #828282 !important;
}

:-ms-input-placeholder {
    color: #828282 !important;
}

::-ms-input-placeholder {
    color: #828282 !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-primary {
    font-family: var(--font-primary);
}

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



/* 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: 500;
    font-family: var(--font-primary);
    line-height: 1;
    letter-spacing: 1px;
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid transparent;
    border-radius: 2px;
    padding: 10px 16px;
    width: 152px;
    height: 52px;
    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:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    z-index: -1;
    background: #000000;
    border-radius: inherit;
    transform: scaleX(0);
    transform-origin: top right;
    transition: transform .5s cubic-bezier(.86, 0, .07, 1);
    transition-timing-function: cubic-bezier(.86, 0, .07, 1), cubic-bezier(.86, 0, .07, 1);
    transition-timing-function: cubic-bezier(.86, 0, .07, 1);
}

.prime-btn:hover {
    background-color: var(--primary);
    border-color: transparent;
}

.prime-btn:hover:before {
    transform: scale(1);
    transform-origin: bottom left;
}


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

.btn:focus-visible {
    outline: none;
}

/* Button Css End */

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

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

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

.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, #3b0000 0%, #BC8C33 100%);
    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);
    }
}

/* Default styles end */


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

/* Header styles start */
.main-wrapper {
    width: 100%;
}

header {
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    position: absolute;
    z-index: 1111;
}

.header-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 24px 0px;
    background-color: transparent;
    color: var(--white);
    font-size: 15px;
    line-height: 1px;
}

.header-top a {
    color: var(--white);
    line-height: 1;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.head-top {
    line-height: 1;
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.header-top i {
    color: var(--white);
}

.page-header .header-top {
    display: none;
}

.page-header .navbar {
    background-color: var(--white);
    width: 100%;
}

.navbar {
    padding: 0px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;

}

.navbar-wrapper {
    width: 100%;
    background-color: var(--white);
    z-index: 222;
    display: flex;
    align-items: center;
    padding: 8px 30px;
    border-radius: 4px;
}


.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.50s ease;
    background-color: var(--white);
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);

}

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

    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    width: 134px;
    height: 84px;
    padding: 0;
    margin: 0;
    flex: 0 0 auto;
    /* z-index: 111; */
}

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

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

.nav-link {
    text-transform: capitalize;
    position: relative;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    /* letter-spacing: 0.5px; */
    width: max-content;
    color: #000000;
    margin-right: 50px;
    -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: var(--primary);
    -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-nav {
    margin-left: auto;
    /* margin-right: auto; */
}

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

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

/* Header styles end */


/* 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: 930px;
}

.hero-banner::before,
.page-hero-banner::before,
.feedback::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(to right, black, rgba(0, 0, 0, 0.5));
    opacity: .5;
}

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

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

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

.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: 62px;
    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 */
.breadcrumb-item {
    font-size: 16px;
}

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

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

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


/* breadcrumb style end */



/* Hero styles end */
.hero-text-wrapper {
    position: absolute;
    top: 56%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 111;
    width: 100%;
}

.hero-text {
    width: 100%;
    text-align: center;

}

.hero-text h4 {
    font-size: 22px;
    font-style: italic;
    letter-spacing: 4px;
    margin-bottom: 15px;
    line-height: 1;
}

.hero-text h1 {
    text-transform: capitalize;
    line-height: 90px;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px #000000;
    /* max-width: 580px; */
}

.hero-info {
    margin-bottom: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.hero-info a,
.hero-info span {
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.5px;
    font-weight: 300;
    font-size: 18px;
}

.hero-info a:hover,
.hero-info span:hover {
    color: #a6bdff;
}

.hero-info svg {
    font-size: 20px;
}

.hero-text .prime-btn {
    border-radius: 30px;
    background-color: var(--white);
    color: var(--black);
    text-transform: uppercase;
    width: 160px;
    transition: all ease-in-out 0.3s;
}

.hero-text .prime-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: #000000;
}



/* owl dots start */
.owl-theme .owl-nav.disabled+.owl-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-carousel button.owl-dot {
    width: 26px;
    height: 8px;
    border-radius: 20px;
    background: rgba(182, 145, 33, 0.5);
    margin: 0 4px;
}

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

.owl-carousel button.owl-dot.active {
    width: 36px;
    height: 8px;
    background-color: #B69121;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* owl dots 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: #d39625;
    color: #fff;
}

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

/*-- About section Start --*/

.sec-title {
    margin-bottom: 55px;
}

.sec-sub-title {
    position: relative;
    font-size: 16px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin: 0 auto 16px auto;
    max-width: max-content;
    display: flex;
    align-items: center;
}

.title-img {
    width: 20px;
    height: 5px;
    display: inline-flex;
}

.title-img img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.sec-sub-title::before,
.sec-sub-title::after {
    content: '';
    background-image: url('../images/icons/title-img.png');
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 8px;
}

.sec-sub-title::before {
    left: -32px;
}

.sec-sub-title::after {
    right: -26px;
}

.sec-title h2 {
    letter-spacing: 1px;
}

.about-content-wrap .sec-sub-title::before {
    display: none;
}

.about-content-wrap .sec-sub-title {
    margin: 0 0 10px;
    font-size: 18px;
}

.about-content-wrap .sec-title {
    margin-bottom: 20px;
}

.about-content-wrap p {
    font-size: 16px;
    color: #666666;
    line-height: 35px;
    text-transform: capitalize;
    margin-bottom: 16px;
    padding-right: 40px;
    letter-spacing: 0.5px;
}

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


.about-image-wrapper {
    height: 100%;
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 24px;
}

.about-image-wrapper img {
    transition: all .3s;
}

.about-image-wrapper .about-image-one {
    grid-row: 1/span 2;
    display: flex;
}

.about-image-wrapper .about-image-one img {
    height: 540px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 100px 0 100px 0;
}

.about-image-wrapper .about-image-one img:hover {
    border-radius: 0 120px 0 120px;
}

.about-image-wrapper .about-image-two {
    grid-column: 2;
    grid-row: 1;
    display: flex;
}

.about-image-wrapper .about-image-two img {
    border-radius: 100px 0 0 0;
}

.about-image-wrapper .about-image-two img:hover {
    border-radius: 0 0 120px 0;
}

.about-image-wrapper .about-image-three {
    grid-column: 2;
    grid-row: 2;
    display: flex;
}

.about-image-wrapper .about-image-three img {
    border-radius: 0 100px 0 0;
}

.about-image-wrapper .about-image-three img:hover {
    border-radius: 0 0 0 120px;
}

/*-- About section End --*/

/*-- Service Amenities section Start --*/
.service-amenities-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 24px;
}

.service-amenities-item {
    position: relative;
    border-radius: 2px;
    border: 1px solid var(--primary);
    padding: 54px 20px 36px 20px;
    background-color: var(--white);
    transition: all .3s;
    height: 222px;
}

.service-amenities-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 10px;
    background: var(--primary);
    transition: all .3s;
}

.service-amenities-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 30px;
    transition: all .3s;
}

.service-amenities-item .h4-small {
    color: var(--black);
    transition: all .3s;
    z-index: 111;
}

.saIcon-dark {
    display: block;
    transition: all .3s;

}

.saIcon-white {
    display: none;
    transition: all .3s;
}

.service-amenities-item:hover {
    background-color: var(--primary);
    border: 1px solid var(--white);
}

.service-amenities-item:hover::before {
    background: var(--white);
}

.service-amenities-item:hover .h4-small {
    color: var(--white);
}

.service-amenities-item:hover .saIcon-dark {
    display: none;
}

.service-amenities-item:hover .saIcon-white {
    display: block;
}

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

/*-- Service Amenities section End --*/

/*-- Exclusive Offers section Start --*/
.feature-row .image-column .inner-column {
    margin-right: -210px;
    position: relative;
    z-index: 9;
}


.exclusive-offer figure {
    margin: 0 0 1rem;
    width: 624px;
    height: 426px;
}

.overlay-anim {
    position: relative;
}

.exclusive-offer figure.image {
    margin-bottom: 0;
}

.feature-row .image-column .image {
    overflow: hidden;
}

.overlay-anim:before {
    background: hsla(0, 0%, 100%, .3);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    opacity: 1;
    z-index: 9;
    pointer-events: none;
}

.overlay-anim:hover:before {
    height: 100%;
    opacity: 0;
    transition: all .4s linear;
}

.feature-row .image-column .image img {
    width: 100%;
    height: 100%;
    transition: all .3s ease;
}

.feature-row .content-column {
    margin-bottom: 50px;
}

.feature-row .content-column .inner-column {
    position: relative;
    background-color: #f8f5f0;
    padding: 90px 0 90px 240px;
    margin-top: 50px;
}

.feature-row .content-column .inner-column:before {
    content: "";
    position: absolute;
    top: 0;
    left: 240px;
    width: 95px;
    height: 11px;
    background-color: var(--primary);
}

.exclusive-offer .sec-title {
    margin-bottom: 24px;
}

.exclusive-offer .sec-sub-title {
    margin: 0 0 12px;
}

.exclusive-offer .sec-title h2 {
    font-size: 38px;
    letter-spacing: 0;
}

.exclusive-offer .sec-sub-title::before {
    display: none;
}

.exclusive-offer .content-box p {
    font-size: 16px;
    color: #787878;
    line-height: 32px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    width: 540px;
    word-break: break-word;
}

.feature-row:nth-child(2n) .content-column .inner-column {
    padding: 80px 250px 100px 80px;
}

.feature-row:nth-child(2n) .image-column .inner-column {
    margin-right: 0;
    margin-left: -210px;
}

.exclusive-offer .prime-btn {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}
.exclusive-offer .prime-btn:hover{
    color: var(--white);
}

/*-- Exclusive Offers section End --*/

/* Gallery section Start */
.photo-gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.photo-gallery-wrap {
    width: 100%;
    height: 425px;
    position: relative;
    display: block;
    overflow: hidden;
}


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

.photo-gallery-wrap:hover img {
    transform: scale(1.08);
}

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

.photo-gallery-wrap:hover .photo-gallery-overlay {
    opacity: 1;
}

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

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

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

/* Gallery section end */

/* Footer section Start */
.footer-wrap {
    padding: 100px 0 0;
}

.ft-info-wrap {
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(182, 145, 33, 0.2);
}

.ft-logo {
    margin-bottom: 50px;
    width: 156px;
    height: 100px;
}

.ft-logo img {
    width: inherit;
    height: inherit;
    object-fit: contain;
}

.ft-info-wrap a,
p {
    font-size: 16px;
    line-height: 1;
    color: var(--black);
    font-weight: 500;
    transition: all ease-in-out 0.3s;
}

.ft-info-wrap a:hover {
    color: var(--primary);
}

.footer-link-wrap {
    padding: 34px 0;
    text-align: center;

}

.footer-link {
    font-size: 16px;
    color: var(--black);
    font-weight: 500;
    transition: all ease-in-out 0.3s;
}

.footer-link:not(:last-child) {
    margin-right: 40px;
}

.footer-bottom-wrap {
    padding: 15px 0;

}

.footer-bottom-wrap p,
.footer-bottom-wrap a {
    font-size: 15px;
    color: var(--white);
}

/* Footer section End */

/* Feedback section Start */

.feedback {
    background-image: url('../images/sec-bg-img/feedback.jpg');
    min-height: auto;
}

.feedback::before {
    background-color: #000000;
    opacity: 0.6;
}

.feedback .sec-title {
    z-index: 111;
    position: relative;
}

.feedback .sec-sub-title {
    margin: 0 0 16px;

}

.feedback .sec-sub-title::before {
    display: none;

}

.feedback .sec-sub-title::after {
    background-image: url('../images/icons/title-img-white.png');
}

.feedback .sec-title h2 {
    font-size: 60px;
}

.feedback-slider {
    padding: 80px 50px 60px;
    background-color: #000000;
    z-index: 111;
    position: relative;
}

.star-wrap {
    margin-bottom: 30px;
}

.feedback-slider p {
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 40px;
    word-wrap: break-word;
}

.feedback-name {
    font-size: 22px;
    line-height: 1.2;
}

.feedback-wrapper-item {
    margin-bottom: 50px;
}

/* owl Arrow start */

.owl-theme .owl-nav {
    margin-top: 0;
    position: absolute;
    right: 0;
    bottom: 0;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    color: #afafaf;
    border: 1px solid white;
    border-radius: 100%;
    padding: 2px 4px !important;
    font-size: 30px;
    margin-right: 20px;
    width: 50px;
    height: 50px;
    transition: all ease-in-out 0.3s;
}

.owl-carousel .owl-nav button.owl-next {
    margin-right: 0;
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
    background: transparent;

}

.owl-carousel .owl-nav button.owl-prev svg {
    margin-left: 22px;
    transition: all ease-in-out 0.3s;
}

.owl-carousel .owl-nav button.owl-prev:hover svg{
    transform: scaleX(1.2);
    transform-origin: right;
}

.owl-carousel .owl-nav button.owl-next svg {
    margin-left: -36px;
    transition: all ease-in-out 0.3s;
    
}
.owl-carousel .owl-nav button.owl-next:hover svg{
    transform: scaleX(1.2);
    transform-origin: left;
}

/* owl Arrow end */


/* Feedback section End */

/* Booking section Start */
.booking-res.sec-spacing {
    padding: 120px 0 80px 0;
}

.booking-res {
    position: relative;
    margin: 240px 0 120px 0;
}

.booking-res:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    background-image: url('../images/sec-bg-img/booking.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.booking-form-column .inner-column {
    padding: 60px;
    position: relative;
    width: 544px;
    float: inline-end;
    margin-top: -36%;
}

.booking-form-column .inner-column:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f8f5f0;
    z-index: 9;
    height: 100%;
}

.booking-form-column .inner-column:after {
    content: "";
    position: absolute;
    top: 10%;
    left: -16%;
    width: 100%;
    height: 100%;
    background-image: url('../images/sec-bg-img/form-bg.png');
    background-repeat: no-repeat;
}


.booking-res .sec-sub-title {
    margin: 0 0 16px;

}

.booking-res .sec-sub-title::before {
    display: none;

}

.booking-res .sec-title {
    margin-bottom: 40px;
    z-index: 111;
    position: relative;
}


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

.form-control {
    font-size: 18px;
    width: 100%;
    border: 1px solid #9A9A9A;
    border-radius: 0px !important;
    background-color: white;
    font-weight: 400;
    color: var(--black);
    padding: 10px 26px;
    height: 70px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

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

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

.input-group {
    position: relative;
}

.input-icon {
    font-size: 20px;
    position: absolute;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    color: #122223;
}

.web-res-form .prime-btn {
    width: 100%;
    height: 70px;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 4px;
    background-color: var(--black);
    border: none;
}
.web-res-form .prime-btn:before{
    background-color: var(--primary);
}

.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 */
.booking-content-column {
    position: relative;
    z-index: 111;
    padding-left: 60px;
}

.booking-content-column .sec-title {
    margin-bottom: 24px;
}

.booking-content-column p {
    text-transform: capitalize;
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 20px;
    color: #ABABAB;
    max-width: 586px;
    letter-spacing: 0.5px;
}

.booking-info-section {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.booking-info-grid-item-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    margin-right: 12px;
}

.booking-info-grid-item p {
    font-size: 20px;
    margin-bottom: 6px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    color: var(--white);
}

.booking-info-grid-item span {
    font-size: 24px;
    line-height: 1.2;
}

/* Booking section End */


/* OUR Rooms section Start */

.our-room-slider-item {
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}

.our-room-slider-img {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.our-room-slider-img::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96%;
    height: 96%;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);

}

.room-book {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 100%;
    color: white;
    font-size: 20px;
    letter-spacing: 1px;
    background-color: rgba(0, 0, 0, 0.3);
}

.our-room-slider-img img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all 0.3s;
}


.our-room-slider-img img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}


.our-room-slider-content {
    height: 220px;
    position: relative;
    padding: 30px;
    background-color: var(--white);
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;

}

.our-room-slider-content h4 {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.our-room-slider-content p {
    color: #838383;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 26px;
}

.icons-wrap svg {
    width: 20px;
    height: 20px;
    margin-right: 30px;
    flex: 0 0 auto;
    color: var(--primary);
}

.our-room-slider .owl-stage-outer {
    padding-bottom: 80px;
}

.our-room-slider .owl-theme .owl-nav.disabled+.owl-dots {
    bottom: 0;
}


/* OUR Rooms section end */

.gallery-page .photo-gallery-wrap {
    height: 320px;
}

/* -- // Contact-us Page Styles Start // -- */
.contact-us-content-wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px 24px;
    padding-left: 20px;
}

.contact-us-content-items {
    /* box-shadow: 0px 2px 12px 0px rgba(190, 0, 0, 0.2); */
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    padding: 30px;
    border-radius: 6px;
}

.contact-title-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 22px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--font-cormorant);
}

.contact-play-icons {
    margin-right: 10px;
}

.contact-us-content-items a,
.contact-us-content-items p {
    color: var(--secondary);
    line-height: 1.5;
}

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

/* -- // Contact-us Page Styles End // -- */

/* ADA Feature start*/

.ada-feature-wrap {
    background: var(--sky-blue);
    border-bottom: 1px solid var(--primary);
    border-top: 10px solid var(--primary);
    padding-bottom: 30px;
    padding-left: 30px;
    text-align: left;
    margin-bottom: 50px;
}

.ada-feature-wrap h3 {
    margin: 30px 0;
}

.ada-feature-item {
    font-size: 18px;
    line-height: 1.5;
    display: flex;
    align-items: center;

}

.ada-feature-item:not(:last-child) {
    margin-bottom: 28px;

}

.ada-feature-note {
    max-width: 1200px;
    line-height: 1.5;
    letter-spacing: 1px;
}

/* ADA Feature end*/

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

.hotel-surrounding-wrap {
    display: flex;
    flex-direction: column;
    /* border: 1px solid #cac8c8; */
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0px 2px 12px 0px rgba(190, 0, 0, 0.2); */
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.hotel-surrounding-image {
    position: relative;
    width: 100%;
    height: 360px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.hotel-surrounding-image img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

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

.hotel-surrounding-title {
    margin-bottom: 20px;
    padding: 0 30px;

}


.hotel-surrounding-content {
    padding: 0 30px 30px;
}

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

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

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