:root {
    /* Fonts */
    --font-primary: "Barlow", sans-serif;
    --font-playfair: "Playfair Display", serif;

    /*Colors */
    --black: #222222;
    --white: #ffffff;
    --primary: #6B232F;
    /* #244AB4,#00349B */
    --secondary: #525252;
    --sky-blue: #F2F2EC;

}


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

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

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

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

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

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

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

::-ms-input-placeholder {
    color: #5E5E5E !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-play {
    font-family: var(--font-playfair);
}


/* 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;
    text-transform: uppercase;
    font-family: var(--font-primary);
    line-height: 1;
    /* letter-spacing: 1px; */
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid transparent;
    border-radius: 0px;
    padding: 18px 36px;
    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;
}

.description {
    position: relative;
    display: block;
    z-index: 3;
    color: var(--white);
}

.prime-btn:before,
.prime-btn:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
}

.prime-btn:before {
    background: #a21a1a;
    transition: 0.6s ease-in;
    transition-delay: 0.1s;
}

.prime-btn:after {
    background: #a30202;
    transition: 0.8s ease;
    transition-delay: 0.4s;
}

.prime-btn:hover:before,
.prime-btn:hover:after {
    transform: translate(-50%, -50%) scale(310);
}

.prime-btn:hover,
.prime-btn.active,
.prime-btn .btn-check:focus+.btn,
.prime-btn:focus {
    outline: none;
    box-shadow: 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 */
header {
    width: 100%;
    left: 0;
    right: 0;
}

.header-top {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: var(--primary);
    color: var(--white);
    padding: 0 200px;

}

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

.header-top a:hover svg,
.head-top-add:hover svg {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}

.header-top span {
    height: 52px;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 30px;
}



.navbar {
    padding: 4px 200px;
    z-index: 222;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;

}


.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: 186px;
    height: 104px;
    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: 500;
    width: max-content;
    color: var(--black);
    margin-right: 50px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    left: 2px;
    bottom: -2px;
    background: var(--primary);
}

.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,
.footer-wrap {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 750px;
}

.hero-banner::before,
.page-hero-banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    /* 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: 520px;
}

.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;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 12px;
}

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

.sec-page-title {
    text-align: center;
    font-size: 40px;
    letter-spacing: 0px;
    margin-bottom: 50px;
}

/* hero-content of all page end */


/* breadcrumb style Start */
.breadcrumb-item {
    font-size: 24px;
}

.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 */


/* 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: #3b0000;
    color: #fff;
}

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

/* Hero styles end */
.hero-text-wrapper {
    position: absolute;
    top: 60%;
    left: 12%;
    transform: translateY(-50%);
    z-index: 111;
}

.hero-text {
    width: 715px;

}


.hero-text h1 {
    text-transform: capitalize;
    line-height: 90px;
    margin-bottom: 30px;
    letter-spacing: -2px;
    /* max-width: 732px; */
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.37);
}

.hero-text p {
    font-size: 18px;
    text-transform: capitalize;
    line-height: 32px;
    margin-bottom: 50px;

}

.hero-text .prime-btn {
    text-transform: capitalize;
    font-weight: 400;
    letter-spacing: 0px;
    padding: 18px 34px;
}

/* owl arrow start */
.owl-theme .owl-nav {
    margin-top: 0px;
    position: absolute;
    bottom: 60px;
    right: 100px;
    display: flex;
    align-items: center;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    background: rgba(0, 0, 0, 0.4);
    color: rgba(255, 255, 255, 0.6);
    border: none;
    padding: 10px;
    border-radius: 100%;
    font: inherit;
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-carousel .owl-nav button.owl-next:hover,
.owl-carousel .owl-nav button.owl-prev:hover {
    background: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.8);
}

.owl-carousel .owl-nav button.owl-next svg,
.owl-carousel .owl-nav button.owl-prev svg {
    font-size: 30px;
}

/* owl arrow end */

/* About Section start */
.about-content h2 {
    line-height: 67px;
    width: 488px;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 18px;
    line-height: 34px;
    text-transform: capitalize;
    color: #525252;
    margin-bottom: 40px;
}

.other-perks {
    width: 390px;
    margin-bottom: 38px;
}

.other-perks h6 {
    font-size: 20px;
    margin-bottom: 30px;
}

.other-perks li {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 15px;
    color: #525252;
    margin-left: 20px;
}

a.read-more {
    position: relative;
    max-width: max-content;
    font-size: 18px;
}

a.read-more::after {
    content: '';
    position: absolute;
    font-size: 18px;
    width: 50%;
    height: 1px;
    background: var(--primary);
    bottom: -5px;
    right: 0;
    transition: all ease-in-out 0.5s;
}

a.read-more:hover::after {
    width: 90%;
}

.about-image-wrap {
    position: relative;
}

.about-image {
    float: right;
    width: 88%;
    height: 580px;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.20);
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    overflow: hidden;
}

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

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

.about-subimg {
    position: absolute;
    width: 284px;
    height: 315px;
    top: 50%;
    transform: translateY(50%);
    left: 0;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.20);
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    overflow: hidden;
}

.about-subimg img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all ease-in-out 0.5s;
}

/* About Section end */


/* Booking Reservation Section Start */


.booking-res.sec-spacing {
    padding: 72px 0;
}

/* Booking form start */

.form-label {
    font-size: 24px;
    font-family: var(--font-playfair);
    line-height: 1;
    color: white;
    margin-bottom: 20px;
    font-weight: 400;
}

.form-control {
    height: 50px;
    font-size: 18px;
    line-height: 1;
    border: 1px solid transparent;
    border-radius: 2px;
    background-color: var(--white);
    color: var(--black);
    padding: 15px 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.form-control:focus {
    color: var(--black);
    border: 1px solid transparent;
    outline: 0;
    box-shadow: none;
}

.booking-res .prime-btn {
    max-width: 100%;
    width: 100%;
    height: 50px;
    border: 1px solid var(--white);
    background-color: transparent;
    color: white;
}

.booking-res .prime-btn:hover {
    color: var(--primary);
}

.input-group {
    position: relative;
}

.input-icon {
    font-size: 16px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #7E7E7E;
}

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

/* Booking form end */

/* Exclusive Offers section Start */
.sec-title {
    margin-bottom: 55px;
}

.sec-title span {
    font-size: 18px;
    margin-bottom: 10px;
    color: #010101;
    line-height: 1;
    letter-spacing: 4px;
}



.exclusive-offer-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.exclusive-offer-grid-item-image,
.exclusive-offer-grid-item-content {
    height: 300px;
    overflow: hidden;
}

.exclusive-offer-grid-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-in-out 0.4s;
}

.exclusive-offer-grid-item-image:hover img,
.exclusive-offer-grid-item:hover img {
    transform: scale(1.08);
}

.exclusive-offer-grid-item-content {
    padding: 50px 22px;
    background-color: rgba(248, 248, 248, 0.6);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.exclusive-offer-grid-item-content h3 {
    font-size: 26px;
    line-height: 1;
    margin-bottom: 20px;
    color: #13182B;
}

.exclusive-offer-grid-item-content p {
    font-size: 18px;
    line-height: 34px;
    margin-bottom: 26px;
    color: #787878;
    text-transform: capitalize;
}

.exclusive-offer-grid-item-content a.read-more::after {
    display: none;
}


/* Exclusive Offers section End */


/* Service Amenities section Start */
.service.sec-spacing {
    padding: 80px 0;
}


.view-all-link {
    position: relative;
    color: var(--white);
    transition: all ease-in-out 0.3s;
}

.view-all-link::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    width: 90%;
    height: 1px;
    background: var(--white);
    transition: all ease-in-out 0.3s;
}

.view-all-link:hover {
    color: #ffb6c2;
}

.view-all-link:hover::after {
    background: #ffb6c2;
}

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

.service-amenities-grid-item {
    position: relative;
    padding: 38px 10px;
    background-color: var(--white);
    border-radius: 2px;
    width: 100%;
    height: 100%;
    /* transition: all ease-in-out 0.5s; */

}

.service-amenities-grid-item::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid var(--primary);
}

/* .service-amenities-grid-item:hover {
    background-color: var(--primary);
    transition: all ease-in-out 0.3s;
    border: 1px solid #ffffff2e;
}

.service-amenities-grid-item:hover h6 {
    color: var(--white)
}

.service-amenities-grid-item:hover::after {
    border: 1px solid #ffffff91;
} */


.service-amenities-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-amenities-icon img {
    width: inherit;
    height: inherit;
    object-fit: contain;
}

.service-amenities-grid-item h6 {
    line-height: 1.5;
}

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

.service-amenities-grid-item h6 {
    font-size: 18px;
    text-transform: capitalize;
    color: #010101;
}

/* .icon-dark {
    display: block;
}

.icon-white {
    display: none;
}

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

.service-amenities-grid-item:hover .icon-dark {
    display: none;
} */
/* Service Amenities section End */


/* our rooms section Strat */
.our-room .sec-title {
    margin-bottom: 30px;
}

.our-rooms-wrapper {
    position: relative;
}

.our-rooms-wrapper::after {
    content: '';
    position: absolute;
    display: block;
    background-image: url('../images/sec-bg-img/room-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 60%;
    height: 134%;
    top: -50px;
    left: -10px;
    z-index: -1;
}

.our-room-main-img {
    width: 574px;
    height: 460px;
    margin-left: 40px;
    overflow: hidden;
}


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


.our-rooms-wrapper:hover img {
    transform: scale(1.08);
}


.our-room-sub-img {
    position: absolute;
    right: 10px;
    bottom: -60px;
    width: 336px;
    height: 252px;
    transition: all ease-in-out 0.5s;
    overflow: hidden;
}

.our-room-sub-img img {
    transition: all ease-in-out 0.5s;

}

.our-room-content-wrap {
    padding-left: 40px;
}

.sub-sec-title {
    margin-bottom: 30px;
}

.sub-sec-title span {
    color: #010101;
    font-size: 16px;
    margin-bottom: 4px;
    line-height: 20px;
    letter-spacing: 3px;
}

.sub-sec-title h2 {
    font-size: 42px;
    line-height: 56px;
    color: #010101;
}

.price-tag-wrap {
    font-size: 20px;
    line-height: 1;
}

.price-tag-wrap span {
    font-size: 46px;
}

.room-service-list {
    margin: 40px 0;
    padding-right: 80px;
}

.room-service-list p {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 20px;
    color: #424242;
}

.room-service-list p svg {
    font-size: 14px;
    margin-right: 8px;
}

.room-des {
    font-size: 16px;
    line-height: 32px;
    text-transform: capitalize;
    color: #424242;
    margin-bottom: 30px;
}

.room-icon {
    font-size: 18px;
    color: #000000;
    margin-right: 40px;
}

.our-room .prime-btn {
    margin-top: 38px;
    background-color: transparent;
    border-color: var(--primary);
    /* color: var(--primary); */
    padding: 12px 30px;
}

.our-room .prime-btn .description {
    color: var(--primary);
}

.our-room .prime-btn:hover .description {
    color: var(--white);
}

.our-room .owl-carousel .owl-stage-outer {
    padding: 100px 0;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 40px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 30px;
    height: 8px;
    margin: 0 4px;
    background: #AAAAAA;
}

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

/* our rooms section End */



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

.booking-wrapper {
    z-index: 111;
    position: relative;
    color: white;
    max-width: 1114px;
    margin: 0 auto;
}


.booking-hotel-icon {
    margin-bottom: 30px;
}

.booking-wrapper h2 {
    line-height: 70px;
    margin-bottom: 30px;
}

.divider {
    height: 20px;
    width: 1px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 30px;
}

.book-link-wrap {
    width: 100%;
    position: relative;
    padding-left: 70px;
}

.book-link-wrap a {
    color: var(--white);
    font-size: 16px;
    /* margin-bottom: 10px; */
    letter-spacing: 1px;
}

.book-link-wrap a:hover {
    color: #ffd8de;
}

.booking-wrapper .prime-btn {
    background-color: transparent;
    border-color: var(--white);
    border-radius: 50px;
    margin-top: 50px;
}

/* Booking section end */

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

.gallery-photo-wrapper {
    margin: 0 80px;
}

.photo-gallery-wrap {
    display: block;
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    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);
}

.photo-gallery-overlay {
    position: absolute;
    background-color: rgba(0 0 0 / 60%);
    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;
}

/* Photo Gallery Section End */


/* Feedback Section Start */

.feedback-wrapper {
    position: relative;
    padding: 70px 32px 50px;
    background: var(--white);
    height: 260px;
    border: 1px solid rgba(0, 0, 0, 0.10);
}

.feedback-wrapper::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(170, 132, 83, 0.10);
    right: -20px;
    top: 20px;
    z-index: -1;
}

.feedback-wrapper p {
    font-size: 18px;
    text-transform: capitalize;
    line-height: 32px;
    color: #666;
    letter-spacing: -0.5px;
    text-align: justify;
}

.feedback-icon {
    position: absolute;
    top: -40px;
    left: 32px;
    width: 80px;
    height: 80px;
    background: var(--primary);
    padding: 16px;
}



.fdUser-name {
    margin-top: 60px;
}

.fdUser-icon {
    width: 70px;
    height: 70px;
    margin-right: 16px;
}

.fdUser-name h6 {
    font-size: 20px;
    color: #000;

}

.feedback .owl-carousel .owl-stage-outer {
    padding: 60px 0 0;
}

.feedback .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 60px;
}

/* Feedback Section End */


/* Footer start */
.footer-wrap {
    background-image: url('../images/sec-bg-img/footer-bg.png');
    min-height: auto;
}

footer.sec-spacing {
    padding: 100px 0 0;
}

.ft-logo {
    width: 190px;
    /* height: 100; */
    margin-bottom: 32px;
}

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

.footer-grid-item {
    margin-bottom: 60px;
    z-index: 111;
    position: relative;
}

.footer-grid-item p {
    font-size: 18px;
    line-height: 40px;
    color: white;
    margin-bottom: 40px;
    text-transform: capitalize;
    text-align: justify;
}

.footer-grid-item.footer-about {
    padding-right: 20px;
}

.ft-adaLink {
    font-size: 18px;
    color: var(--white);
    position: relative;
}

.ft-adaLink svg {
    color: var(--primary);
}

.ft-adaLink::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    width: 90%;
    height: 1px;
}

.footer-grid-item h3 {
    font-size: 34px;
    padding: 50px 0 50px 0;
}

.footer-link-wrapper {
    padding-left: 90px;
}

.footer-link {
    position: relative;
    font-size: 18px;
    color: white;
    line-height: 1.5;
    margin-bottom: 28px;
    max-width: max-content;
    transition: all ease-in-out 0.5s;
}

.footer-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: all ease-in-out 0.5s;
}

.footer-link:hover::after {
    width: 50%;
}

.ft-add,
.footer-add a {
    font-size: 18px;
    line-height: 32px;
    color: var(--white);
    margin-bottom: 36px;
    transition: all ease-in-out 0.5s;
    word-wrap: break-word;
    letter-spacing: 0.3px;
}

.ft-add svg,
.footer-add a svg {
    font-size: 20px;
    color: var(--primary);
    transition: all ease-in-out 0.4s;
}

.footer-link:hover,
.footer-add a:hover {
    color: var(--primary);
}


.footer-bottom-wrap {
    z-index: 111;
    position: relative;
    border-top: 1px solid rgb(255, 255, 255, 0.3);
    padding: 30px 10px;

}

.footer-bottom-wrap p {
    font-size: 15px;
    color: white;
}

/* Footer 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: 16px;
    line-height: 1.5;
    padding: 0 0 10px;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    border-bottom: 1px solid #f2f2f2;
}

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

.ada-feature-item:last-child {
    border-bottom: none;
}

.ada-feature-image-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.note {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

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

/* Service Amenities Page Start */
.service-page .service-amenities-grid-wrap {
    grid-template-columns: repeat(4, 1fr);

}

.service-page .service-page-grid-item {
    background-color: rgb(170, 132, 83, 0.10);
    border-radius: 4px;
    padding: 50px 10px;
    position: relative;
}

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

.service-page .service-page-grid-item::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: solid 1px var(--primary);
    border-left: solid 1px var(--primary);
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    border-radius: 4px;
}

.service-page .service-page-grid-item::after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom: solid 1px var(--primary);
    border-right: solid 1px var(--primary);
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    border-radius: 4px;
}

.service-page .service-page-grid-item:hover::before {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.service-page .service-page-grid-item:hover::after {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
}


.service-page .service-page-grid-item h6 {
    font-size: 22px;
    letter-spacing: -0.5px;
}

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


/* ===== */
.mt-80 {
    margin-top: 80px;
}

.hotel-policy-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    padding: 50px 20px 20px;
    border-radius: 8px;
    min-height: 340px;
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}

.h-policy-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 40px;
}

.h-policy-icon img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.hotel-policy-wrap:hover img {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}

.hotel-policy-wrap h5 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.hotel-policy-wrap p {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
}

.general-other-policies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.general-other-policies-wrap {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    width: 100%;
    height: 100%;
}



.policies-content-wrap {
    position: relative;
    text-transform: capitalize;
    width: 100%;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 16px;
    padding-left: 20px;
}


.policies-content-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: var(--primary);

}


.service-gp-image-wrap {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

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


/* Service Amenities Page End */

/* Gallery Page Start */
.gallery-page .photo-gallery-wrap {
    border-radius: 8px;
}

/* Gallery Page End */



/* -- // Contact-us Page Styles Start // -- */
.contact-page.sec-spacing {
    padding: 120px 0 0;
}

.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: 20px;
    line-height: 1;
    color: var(--black);
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-play-icons {
    font-size: 22px;
    margin-right: 10px;
    color: var(--primary);
}

.contact-us-content-items a,
.contact-us-content-items p {
    color: #787878;
    font-size: 18px;
    line-height: 1.5;
}


.contact-us-iframe {
    width: 100%;
    height: 570px;
    margin-top: 80px;
}


.contact-us-image-wrapper {
    width: 100%;
    height: 570px;
    overflow: hidden;
}

.contact-us-image-wrapper img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all ease-in-out 0.4s;
}

.contact-us-image-wrapper:hover img {
    transform: scale(1.08);
}


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


/* -- // Attraction Page Styles Start // -- */
.attraction-main-wrap {
    position: relative;
}

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

.att-images {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

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

.attraction-title {
    font-size: 30px;
    margin-bottom: 30px;

}

.attraction-content-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 80%;
    margin: 0 40px;
    padding: 20px 30px;
    background-color: var(--white);
    border-radius: 10px;
    z-index: 11;
    box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.08);

}

.att-content-text {
    font-size: 16px;
    color: #626262;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.att-content-text:not(:last-child) {
    margin-bottom: 12px;
}

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

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

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