:root {
    /* Fonts */
    --font-primary: "Barlow", sans-serif;
    --font-mrc: "Marcellus", serif;

    /*Colors */
    --black: #010101;
    --white: #ffffff;
    --primary: #000052;
    /* #244AB4,#00349B */
    --secondary: #787878;
    --sky-blue: #F7F7F7;

}



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

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-mrc {
    font-family: var(--font-mrc);
}



/* 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;
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    border-radius: 2px;
    padding: 10px 16px;
    width: 150px;
    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::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-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);
    }
}

/* 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: #1D47AF;
    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;
}

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

}

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

.header-top-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.30);
    margin: 0 40px;
}

.navbar {
    padding: 8px 160px;
    position: fixed;
    width: 100%;
    background-color: var(--sec-bg-color);
    background: rgba(255, 255, 255, 0.70);
    z-index: 222;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;

}


.fixed-header {
    position: fixed;
    width: 100%;
    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: 160px;
    height: 92px;
    padding: 0;
    margin: 0;
    /* z-index: 111; */
    flex: 0 0 auto;
}

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

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

.nav-link {
    text-transform: uppercase;
    position: relative;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    width: max-content;
    color: var(--black);
    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,
.section-bg,
.page-hero-banner,
.footer-wrapper {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 900px;
}

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

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

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

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

.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: 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-banner .breadcrumb-wrap {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -28px;
    text-align: center;
}

.page-hero-banner .breadcrumb {
    position: relative;
    display: inline-block;
    padding: 16px 30px 14px;
    background-color: var(--primary);
    margin-bottom: 0;
}

.page-hero-banner .breadcrumb li {
    font-size: 16px;
    position: relative;
    line-height: 1.2em;
    font-weight: 500;
    display: inline-block;
    color: var(--white);
    border-right: 1px solid #d7c397;
    margin-right: 15px;
    padding-right: 15px;
}

.page-hero-banner .breadcrumb li:last-child {
    border: none;
    margin-right: 0px;
    padding-right: 0px;
    padding-left: 0;
}

.page-hero-banner .breadcrumb li a {
    color: var(--white);
    font-size: 15px;
    font-weight: 400;
}

.page-hero-banner .breadcrumb-item+.breadcrumb-item::before {
    display: none;
}

/* .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 */
/* owl arrow start */
.owl-theme .owl-nav {
    margin-top: 0;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.20);
    color: white;
    border: 1px solid var(--white);
    border-radius: 100%;
    padding: 0px !important;
    font-size: 40px;
    margin: 0;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease-in-out 0.3s;

}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #FFF;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 8%;
}

.owl-carousel .owl-nav button.owl-next {
    right: 8%;
}

/* owl arrow end */

/* Hero styles end */


/* About section start */
.sec-title {
    margin-bottom: 50px;
}

.sec-title h5 {
    text-transform: capitalize;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 16px;
}

.sec-title h2 {
    text-transform: capitalize;
    line-height: 1;
}

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

.about-content-wrap p {
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 16px;
    padding-right: 30px;
    letter-spacing: 0.32px;
}

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

.about-image-wrap {
    width: 100%;
}

.about-small-img-wrap {
    height: 215px;
}

.about-big-img-wrap {
    height: 280px;
}

.about-small-img-wrap,
.about-big-img-wrap {
    width: 100%;
    margin-bottom: 22px;
    border-radius: 8px;
    overflow: hidden;
}

.about-small-img-wrap:hover img,
.about-big-img-wrap:hover img {
    transform: scale(1.08);
}

.about-small-img-wrap img,
.about-big-img-wrap img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all ease-in-out 0.4s;
}

/* 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-mrc);
    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 */

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

.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: 28px;
    line-height: 1;
    margin-bottom: 16px;
}

.exclusive-offer-grid-item-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 26px;
    color: #787878;
    letter-spacing: 0.5px;
}

.read-more {
    color: var(--primary);
    line-height: 1;
    font-size: 15px;
    transition: all ease-in-out 0.5s;
}

.read-more:hover {
    color: #0000ab;
}

.read-more:hover svg {
    transform: rotate(1.2);
}

/* Exclusive Offers section End */

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

.service .sec-title {
    margin-bottom: 40px;
}

.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: #6666ff;
}

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

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

}

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

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


/* Our Rooms section start */
.our-room.sec-spacing {
    padding: 120px 0 240px 0;
}

.our-rooms-slider-item {
    width: 100%;
    display: flex;
    padding: 26px;
    background-color: var(--white);
    margin: 10px;
    border-radius: 10px;
    /* box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06); */
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;

}

.our-rooms-slider-image {
    width: 300px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;

}

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

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


.our-rooms-slider-content {
    width: calc(100% - 300px);
    padding: 20px 0 0 24px;
}

.our-rooms-slider-content h3 {
    font-size: 22px;
}

.icon-wrap {
    margin-bottom: 20px;
    font-size: 14px;
}

.icon-wrap:last-child {
    margin-bottom: 25px;
}

.rooms-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    margin-right: 8px;
}

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

.our-rooms-slider-content h3 {
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: 0;
    margin-bottom: 18px;
    color: #000000;
}

.our-rooms-slider-content p {
    font-size: 15px;
    color: #787878;
    line-height: 1.5;
    margin-bottom: 20px;
}

.icon-wrap {
    display: flex;
    align-items: center;
}

.our-rooms-slider .owl-carousel .owl-nav button.owl-next,
.our-rooms-slider .owl-carousel .owl-nav button.owl-prev {
    top: 115%;
    background: rgba(0, 0, 82, 0.21);
    border: none;
    font-size: 25px;
    width: 50px;
    height: 50px;
    color: var(--primary);
}

.our-rooms-slider .owl-carousel .owl-nav button.owl-prev {
    left: 48%;
    right: auto;
}

.our-rooms-slider .owl-carousel .owl-nav button.owl-next {
    right: 42%;
    left: auto;
}

.our-rooms-slider .owl-carousel .owl-nav button.owl-next:hover,
.our-rooms-slider .owl-carousel .owl-nav button.owl-prev:hover {
    background: var(--primary);
    color: var(--white);
}

/* Our Rooms section end */




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

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

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

.booking-wrapper h3 {
    line-height: 1.5;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.calender-icon {
    margin-right: 12px;
}

.calender-content p {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

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

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

.booking-wrapper .prime-btn {
    margin-top: 40px;
    background-color: transparent;
    border-radius: 50px;
    transition: all ease-in-out 0.3s;
    border: 1px solid white;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-wrapper .prime-btn:hover {
    color: var(--primary);
    font-weight: 500;
}

/* Booking section end */


/* Photo Gallery Section Start */

.gallery-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.photo-gallery-wrap {
    width: 100%;
    height: 540px;
    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;
}

/* Photo Gallery Section End */



/* Feedback-Testimonials section start*/
.feedback.sec-spacing {
    padding: 120px 0 160px 0;
}

.feedback {
    position: relative;
}


.feedback .sec-title {
    margin-bottom: 10px;
}

.feedback-testimonials-item-box {
    padding: 50px 70px;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    margin: 0 15px;
    transition: transform 0.5s linear;
    height: 355px;
    border-radius: 4px;
}

.feedback-icon {
    margin-bottom: 40px;
}

.feedback-content {
    font-size: 16px;
    color: #787878;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 30px;
    letter-spacing: 0.3px;
    text-align: center;
}

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

.feedback-testimonials {
    padding-left: 15%;
}

.feedback-name {
    font-size: 20px;
    color: #000000;
    font-weight: 500;
}

.slick-cloned {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.feedback .owl-theme .owl-nav.disabled+.owl-dots {
    position: absolute;
    top: 108%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;

}

.feedback .owl-theme .owl-dots .owl-dot span {
    display: none;
}

.feedback .owl-carousel button.owl-dot {
    width: 30px;
    height: 10px;
    border-radius: 100px;
    margin: 0 8px;
    background: rgba(0, 0, 0, 0.1);
}

.feedback .owl-carousel button.owl-dot.active {
    width: 40px;
    height: 10px;
    background: var(--primary);
}

/* Feedback-Testimonials section end */


/* Footer start*/
.footer-wrapper {
    background-image: url("../images/sec-bg-img/footer-bg.jpg");
    min-height: auto;
}

.footer-wrapper::before {
    background-color: #000000;
    opacity: .8;
}

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

.footer-wrapper h3,
.footer-wrapper p {
    z-index: 111;
    position: relative;
}

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

.footer-bottom p {
    font-size: 15px;
    letter-spacing: 0.5px;
    line-height: 1;
}

.footer-link-wrap {
    padding: 38px 0;
    margin-top: 40px;
    z-index: 111;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-link-wrap::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.footer-link {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    margin-right: 50px;
    transition: all ease-in-out 0.3s;
}

.footer-link:hover {
    color: #7e7eff;
}

.ft-about-us h3,
.ft-contact-us h3 {
    font-size: 30px;
    line-height: 26px;
    margin-bottom: 26px;
    letter-spacing: 0.3px;
}

.ft-about-us {
    /* max-width: 520px; */
    z-index: 111;
    position: relative;
    padding-right: 40px;
}

.ft-about-us p {
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.3px;
    margin-bottom: 30px;
    color: var(--white);
    z-index: 111;
    position: relative;
}

.ft-contact-us p,
.ft-contact-us a {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.5px;
    color: var(--white);
    z-index: 111;
    position: relative;
    font-weight: 300;
    margin-bottom: 20px;
    word-break: break-word;
}

.ft-contact-us {
    position: relative;
    padding-left: 80px;
    padding-right: 100px;
}



.ft-contact-us::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);

}

.ft-contact-us a {
    display: block;

}

.checkIn-checkOut-text span {
    display: block;
    font-size: 16px;
    line-height: 1.2;
    z-index: 111;
    position: relative;
    margin-bottom: 8px;

}

.footer-wrapper .prime-btn {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);

}

.footer-wrapper .prime-btn:hover {
    color: var(--primary);
}

.calendar-icon {
    z-index: 111;
    position: relative;
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    margin-right: 12px;
}

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

/* Footer End*/

/* ---- Index Page Style End ---- */


/* ---- Service Page Style start ---- */

.service-amenities-img-wrap {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
}

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

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

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

.service-amenities-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-icon-wrap {
    width: 40px;
    margin-right: 18px;
}

.service-item-wrap {
    width: 100%;
    padding: 20px 30px;
    border-radius: 8px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.service-item-wrap h4 {
    font-size: 20px;
    line-height: 1;
}

/* ---- Service Page Style End ---- */


/* ---- Gallery Page Style End ---- */
.gallery-page .photo-gallery-wrap {
    height: 400px;
}

/* ---- Gallery Page Style 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 {
    padding: 16px 30px;
    background-color: #000052;
    color: white;
}

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



/* -- // 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-family: var(--font-fraunces);
    font-weight: 400;
}

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

.contact-us-content-items a,
.contact-us-content-items p {
    color: #6b6b6b;
    font-size: 15px;
}


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


.contact-us-image-wrapper{
    width: 100%;
    height: 100%;
    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 // -- */

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