:root {
    /* Fonts */
    --font-primary: "Open Sans", sans-serif;
    --font-mrc: "Marcellus", serif;
    --font-crt: "Carattere", cursive;

    /*Colors */
    --black: #131313;
    --white: #ffffff;
    --primary: #007EA7;
    --secondary: #686868;
    --sky-blue: #F8F8F8;

}


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

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

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

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

::-ms-input-placeholder {
    color: #565656 !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);
}

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


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

.light-blue {
    background-color: #ECF6FF;
}

.light-orange {
    background-color: #FAF2F2;
}

.light-green {
    background-color: #EEF2F2;
}

.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;
    text-transform: capitalize;
    font-family: var(--font-primary);
    line-height: 1;
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid transparent;
    border-radius: 40px;
    padding: 18px 30px;
    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 img {
    margin-left: 6px;
} */


.description {
    position: relative;
    display: block;
    z-index: 111;
    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: #0a91be;
    transition: 0.6s ease-in;
    transition-delay: 0.1s;
}

.prime-btn:after {
    background: #01536e;
    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: 110px 0;
}

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

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

/* Default styles end */
.preloader {
    background-color: #09526a;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1000;
    overflow: hidden;
}

.preloader .vertical-centered-box {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
}

.preloader .vertical-centered-box:after {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}

.preloader .vertical-centered-box .content {
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    font-size: 0;
}

.preloader * {
    transition: all 0.3s;
}

.preloader .loader-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    margin-left: -60px;
    margin-top: -60px;
}

.preloader .loader-line-mask {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 120px;
    margin-left: -60px;
    margin-top: -60px;
    overflow: hidden;
    transform-origin: 60px 60px;
    -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
    animation: rotate 1.2s infinite linear;
}

.preloader .loader-line-mask .loader-line {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.preloader #particles-background,
.preloader #particles-foreground {
    left: -51%;
    top: -51%;
    width: 202%;
    height: 202%;
    transform: scale3d(0.5, 0.5, 1);
}

.preloader #particles-background {
    background: #2c2d44;
    background-image: linear-gradient(45deg, #3f3251 2%, #002025 100%);
}

.preloader lesshat-selector {
    -lh-property: 0;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.preloader [not-existing] {
    zoom: 1;
}

.preloader lesshat-selector {
    -lh-property: 0;
}

@keyframes fade {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.25;
    }
}

.preloader [not-existing] {
    zoom: 1;
}

.preloader lesshat-selector {
    -lh-property: 0;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.preloader [not-existing] {
    zoom: 1;
}

/* ---- 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: 15px 100px;

}

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

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

.head-top-add {
    margin: 0 40px;
}

.social-icons-wrap {
    position: relative;
}

.social-icons-wrap::before {
    content: '';
    position: absolute;
    right: 110%;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    height: 1px;
    width: 35px;
}

.navbar {
    position: absolute;
    width: 100%;
    padding: 10px 100px;
    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: #000;
    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: 235px;
    height: 89px;
    padding: 0;
    margin: 0;
    /* z-index: 111; */
}

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

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

.nav-link:hover,
.nav-link:focus,
.nav-item.active .nav-link {
    color: var(--white);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

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

.nav-link:hover:after,
.nav-link:focus:after,
.nav-item.active .nav-link:after {
    background: white;
    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;
}

header .prime-btn svg {
    padding-left: 6px;
    font-size: 16px;
    transition: all ease-in-out 0.5s;
}

header .prime-btn:hover svg {
    transform: scaleX(1.08);
}

/* Header styles end */

/* Sidebar style start */

.slide-menu {
    cursor: pointer;
    margin-left: 50px;
    width: 30px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-menu span {
    position: relative;
    background: white;
    width: 30px;
    height: 1px;
    display: block;
    cursor: pointer;
}

.slide-menu span::before,
.slide-menu span::after {
    content: '';
    background: white;
    width: 40px;
    height: 1px;
    position: absolute;
    right: 0;
    top: 50%;
    cursor: pointer;
    transform: translateY(-50%);
}

.slide-menu span::before {
    top: -12px;
}

.slide-menu span::after {
    top: 12px;
}

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

.sidenav .closebtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    line-height: 48px;
    font-size: 26px;
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--white);
    transform: rotate(0deg);
    border-width: 1px;
    border-style: solid;
    border-color: initial;
    border-image: initial;
    padding: 0px;
    border-radius: 50%;
    transition: 0.4s;
    z-index: 111;
}

.sidenav-wrapper {
    overflow-y: auto;
    height: 100%;
    padding: 50px 30px 30px 40px;
    position: absolute;
    background: white;
    right: 0;
    width: 460px;
    overflow: scroll;
    transition: right 1s;
}

.sidenav-wrapper .navbar-brand {
    /* width: 150px;
    height: 90px; */
    padding: 0;
    margin: 0 0px 40px;
}

.blink {
    transform: perspective(500px) rotateY(42deg);
    -webkit-transform: perspective(500px) rotateY(42deg);
    -moz-transform: perspective(500px) rotateY(42deg);
    -ms-transform: perspective(500px) rotateY(42deg);
    -o-transform: perspective(500px) rotateY(42deg);
    animation-name: rotate-windows;
    animation-iteration-count: infinite;
    animation-duration: 5s;
    animation-fill-mode: forwards;
}

@keyframes rotate-windows {
    0% {
        transform: perspective(500px) rotateY(42deg);
        -webkit-transform: perspective(500px) rotateY(42deg);
        -moz-transform: perspective(500px) rotateY(42deg);
        -ms-transform: perspective(500px) rotateY(42deg);
        -o-transform: perspective(500px) rotateY(42deg);
    }

    50% {
        transform: perspective(500px) rotateY(0deg);
        -webkit-transform: perspective(500px) rotateY(0deg);
        -moz-transform: perspective(500px) rotateY(0deg);
        -ms-transform: perspective(500px) rotateY(0deg);
        -o-transform: perspective(500px) rotateY(0deg);
    }

    100% {
        transform: perspective(500px) rotateY(42deg);
        -webkit-transform: perspective(500px) rotateY(42deg);
        -moz-transform: perspective(500px) rotateY(42deg);
        -ms-transform: perspective(500px) rotateY(42deg);
        -o-transform: perspective(500px) rotateY(42deg);
    }
}



.sidenav-wrapper p {
    font-size: 16px;
    line-height: 32px;
    text-transform: capitalize;
    color: #59585D;
    text-align: justify;
}

.sidebar-info {
    margin-top: 50px;
}

.sidebar-info h3 {
    font-size: 28px;
    letter-spacing: -1px;
    margin-bottom: 40px;
}

.sidebar-info-wrap {
    margin-bottom: 30px;
}

.sd-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: var(--primary);
    margin-right: 16px;
    flex: 0 0 auto;
}

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

.sidebar-info-wrap:hover .sd-info-icon svg {
    transform: rotateY(360deg);
    transition: 0.9s;
}

.sd-info-content {
    font-size: 20px;
    line-height: 1.5;
}

.sd-info-content span {
    font-size: 16px;
    margin-bottom: 4px;
}

/* Sidebar menu */

/* Hero styles Start */
.hero-bg,
.booking-res,
.exclusive-offer-right-card,
.our-room,
.service-amenities-wrap,
.fd-book-wrap,
.feedback {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: auto;
}

.hero-bg {
    margin-top: -1px;
    background-image: url('../images/hero-bg-img/hero-bg.jpg');
    min-height: 860px;
    overflow: hidden;
}



.hero-slider {
    position: absolute;
    right: 0;
    bottom: 0;
    /* width: 50%;
    height: 646px; */
}



.hero-slider-image {
    width: 1276px;
    height: 646px;
    position: relative;
    z-index: 111;
}

.hero-slider-image img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.hero-slider-image::after {
    content: '';
    position: absolute;
    background-image: url('../images/hero-bg-img/hero-slider-vector.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 1278px;
    height: 662px;
    top: -20px;
    right: 6px;
    z-index: -1;
}


.hero-text-wrapper {
    position: absolute;
    top: 52%;
    left: 140px;
    transform: translateY(-50%);
    z-index: 111;
    max-width: 730px;
}

.hero-text-wrapper h1 {
    text-transform: capitalize;
    line-height: 108px;
    margin-bottom: 30px;


}

.hero-text-wrapper p {
    font-size: 18px;
    line-height: 34px;
    text-transform: capitalize;
    margin-bottom: 38px;
    padding-right: 10px;

}

.hero-text-wrapper .prime-btn {
    width: 180px;
    height: 58px;
    padding: 16px 20px;
    background: transparent;
    border: 2px solid var(--primary);
    text-align: left;
}

.hero-text-wrapper .prime-btn svg {
    color: var(--primary);
}

.hero-text-wrapper .prime-btn:hover svg {
    color: var(--white);
}

.hero-slider .owl-carousel,
.hero-slider .owl-carousel .owl-stage-outer {
    height: 100%;
}

/* Hero Section End */




/* All Pages Hero Section Start */
.page-hero-banner {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 600px;
    text-align: center;
}

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

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


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

.page-hero-content h1 {
    font-size: 70px;

}

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

/* All Pages Hero Section Start 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: 20px 40px;
    background-color: var(--primary);
    margin-bottom: 0;
}

.page-hero-banner .breadcrumb li {
    font-size: 20px;
    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: 20px;
    font-weight: 400;
}

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


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

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



/* About Section Start */
.sec-title {
    margin-bottom: 55px;
}

.sec-title h4 {
    margin-bottom: 10px;

}

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


h2.great-vibes {
    position: relative;
    padding-left: 155px;
}

h2.great-vibes::after {
    content: '';
    position: absolute;
    left: 0;
    width: 142px;
    height: 1px;
    background: #003366;
    top: 50%;
    transform: translateY(-50%);
}

p.about-content {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--secondary);
    line-height: 28px;
    margin-bottom: 30px;
    padding-left: 140px;
}

.about-left-img1,
.about-left-img2 {
    width: 100%;
    height: 442px;
    border-radius: 20px;
    overflow: hidden;
}

.about-right-img {
    width: 100%;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
}

.about-left-img1 img,
.about-left-img2 img,
.about-right-img img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all ease-in-out 0.4s;
}

.about-left-img1:hover img,
.about-left-img2:hover img,
.about-right-img:hover img {
    transform: scale(1.08);
}

.about-right {
    padding-left: 40px;
    margin-bottom: 50px;
}

.about-right .prime-btn {
    margin-bottom: 38px;
}

.about-right p {
    font-size: 16px;
    line-height: 26px;
    text-transform: capitalize;
}

.avatar-wrap {
    margin-top: 38px;
}

.avatar-img {
    margin-right: 20px;
}

.avatar-name {
    font-size: 22px;
}

.avatar-name span {
    font-size: 16px;
    margin-top: 8px;
}


/* About Section End */

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

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

.booking-res h2 {
    margin-bottom: 50px;
}

.web-res-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* .form-group {
    margin-bottom: 20px;
} */

.form-label {
    font-family: var(--font-mrc);
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
    line-height: 30px;
}

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

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

select.form-control {
    padding: 18px 20px;
}

.input-group {
    position: relative;
}

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

.booking-res .prime-btn {
    width: 100%;
    font-size: 16px;
    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: 30px;
    border-bottom-right-radius: 30px;
}

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

.booking-res-bg-vector {
    margin-top: 50px;
}

/* Booking Form style End */


/* Exclusive Offers section Start */
.prime-btn.exc-title {
    background: transparent;
    border-color: rgba(21, 21, 21, 0.21);
    color: #686868;

}

.prime-btn.exc-title .description {
    color: #686868;
}

.prime-btn.exc-title:hover .description {
    color: white;
}

.exclusive-offer .sec-title {
    padding-bottom: 50px;
    border-bottom: 2px solid rgba(97, 97, 97, 0.09);
    margin-bottom: 50px;
}

.exclusive-offer-card-wrapper {
    width: 86%;
    display: flex;
    flex-wrap: nowrap;
    /* align-items: center; */
    /* justify-content: flex-start; */
    gap: 24px;
    height: 450px;
}

.exclusive-offer-left-card {
    width: 60%;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}

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

.exclusive-offer-left-card:hover img {
    transform: scale(1.08);
}

.exclusive-offer-right-card {
    width: 40%;
    padding: 70px 60px 60px;
    border-radius: 20px;
    background-image: url('../images/attraction/res-bg.jpg');
}

.exclusive-offer-right-card h4 {
    font-size: 26px;
    margin-bottom: 12px;
}

.exclusive-offer-right-card h2 {
    font-size: 40px;
}

.exclusive-offer-right-card span {
    margin: 20px 0;
    width: 1px;
    height: 30px;
    background-color: #fff;
}

.exclusive-offer-right-card p {
    font-size: 16px;
    line-height: 30px;
    text-transform: capitalize;
    margin-bottom: 40px;
}

.arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    border: 1px solid #fff;
    transition: all ease-in-out 0.3s;
}

.arrow-icon svg {
    font-size: 20px;
    transform: rotate(-45deg);
    color: var(--white);
    transition: all ease-in-out 0.3s;
}

.arrow-icon:hover {
    border-color: var(--primary);
}

.arrow-icon:hover svg {
    color: var(--primary);
}

/* Exclusive Offers section End */


/* .our-room section Start */
.our-room.sec-spacing {
    padding: 110px 0 30px;
}

.our-room {
    background-image: url('../images/sec-bg-img/room-bg.jpg');
}

.our-room .sec-title {
    margin-bottom: 0;
}

.our-room-slider {
    padding-left: 15%;
}

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

.room-item-card {
    height: 580px;
    border-radius: 30px;
    background-color: var(--white);
    padding: 20px 20px 30px;
    filter: drop-shadow(-2px 2px 50px rgba(0, 0, 0, 0.10));
}

.room-image {
    width: 100%;
    height: 275px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 38px;
}

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

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

.room-item-card h3 {
    font-size: 26px;
    line-height: 33px;
    margin-bottom: 30px;

}

.rooms-icons-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 10px;
    border-top: 1px solid #D8DDE1;
    border-bottom: 1px solid #D8DDE1;
    margin-bottom: 30px;
}

.rooms-icons-wrap p {
    font-size: 14px;
    text-transform: capitalize;

}

.room-price {
    font-size: 24px;
    color: #131313;
}

.room-price span {
    font-size: 16px;
    color: #161921;
}

.room-item-card .prime-btn {
    font-size: 14px;
    background-color: transparent;
    border-color: var(--primary);
    color: var(--black);
    padding: 13px 26px;
}

.room-item-card .prime-btn .description {
    color: var(--black);
}

.room-item-card .prime-btn svg {
    transform: rotate(-29.258deg);
}

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

.owl-theme .owl-nav {
    margin-top: 0px;
}


.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border-radius: 100%;
    color: #ffffff;
    border: 1px solid white;
    padding: 12px !important;
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.owl-carousel .owl-nav button.owl-prev {
    right: 140px;
}

.owl-carousel .owl-nav button.owl-next {
    right: 70px;
}

.owl-carousel .owl-nav button.owl-next svg,
.owl-carousel .owl-nav button.owl-prev svg {
    font-size: 26px;
    color: #ffffff;
}

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

/* .our-room section End */


/* Service Amenities section  Start */

.service-amenities-wrap {
    background-image: url('../images/sec-bg-img/hero-bg.jpg');
    padding: 80px 90px;
    border-radius: 40px;
    margin: 0 auto;
    width: 1520px;

}

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

.service-amenities-item {
    position: relative;
    width: 100%;
    height: 202px;
    border-radius: 4px;
    /* border-bottom: 8px solid var(--primary); */
    background-color: #F8F8F8;
}

.service-amenities-item:before {
    content: '';
    position: absolute;
    background: var(--primary);
    width: 100%;
    height: 8px;
    left: 0px;
    top: auto;
    bottom: 0px;
    transition: 500ms;
}

.service-amenities-item:hover::before {
    height: 100%;
    /* top: 0; */
}


.sa-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 30px;
    z-index: 11;
}

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

.service-amenities-item h5 {
    font-size: 22px;
    color: var(--black);
    z-index: 11;
    transition: 500ms;
}

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

.mt-70 {
    margin-top: 70px;
}

.service .prime-btn {
    margin-top: 60px;
    background-color: transparent;
    border-color: var(--primary);
    padding: 18px 34px;
}

.service .prime-btn svg {
    color: var(--primary);
}

.sa-icon-dark {
    display: block;
}

.sa-icon-white {
    display: none;
}

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

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

/* Service Amenities section  End */


/* Gallery section  Start */
.gallery.sec-spacing {
    padding: 0 0 240px;
}

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

.photo-gallery-wrap.h-430 {
    height: 430px;
}

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

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



.search-icon svg {
    font-size: 50px;
    color: var(--white);
}

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

/* Gallery section  End */


/* feedback testimonial section Start */
.fd-book-wrap {
    background-image: url('../images/sec-bg-img/hero-bg.jpg');
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    padding: 70px 60px;
    margin-top: -18%;
}

.fd-book-wrap h2 {
    font-size: 50px;
    line-height: 64px;

}

.fd-book-wrap p,
.fd-book-wrap a {
    font-size: 22px;
    line-height: 30px;
    color: var(--white);
    transition: all ease-in-out 0.3s;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 12px;
    padding-left: 16px;

}

.fd-book-wrap a:hover {
    color: var(--primary);
}

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

.feedback-testimonial-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 100px;
    padding-left: 15%;
}

.feedback-testimonial-content {
    width: 30%;
}

.feedback-testimonial {
    width: 70%;
}

.feedback-testimonial-card {
    border-radius: 12px;
    padding: 30px 30px 50px;
}

.feedback-testimonial-card p {
    font-size: 16px;
    font-style: italic;
    line-height: 32px;
    color: #686868;
    text-transform: capitalize;
}

.fd-name {
    font-size: 18px;
    position: relative;
    margin-top: 30px;
    padding-left: 50px;
}

.fd-name::after {
    content: '';
    width: 40px;
    height: 1px;
    background: #686868;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.fd-icon {
    position: absolute;
    width: 46px;
    height: 34px;
    bottom: 10%;
    right: 10%;
}

.feedback-testimonial.owl-theme .owl-dots {
    /* margin-top: 70px; */
    position: absolute;
    right: 24%;
    bottom: -10px;
}

.feedback-testimonial.owl-theme .owl-dots .owl-dot span {
    width: 30px;
    height: 8px;
    margin: 0 8px;
    background: #e6e6e6;
    transition: unset;
    border-radius: 60px;
}

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

.feedback-testimonial.owl-carousel .owl-nav button.owl-next,
.feedback-testimonial.owl-carousel .owl-nav button.owl-prev {
    top: 94%;
    right: 100px;
    background-color: #e6e6e6;
    border-radius: 4px;
    color: #000000;
    border: none;
    width: 40px;
    height: 40px;
    margin: 0;
}

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

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

.feedback-testimonial.owl-carousel .owl-nav button.owl-prev {
    right: 34%;
}

.feedback-testimonial.owl-carousel .owl-nav button.owl-next {
    right: 20%;
}

.feedback-testimonial.owl-carousel .owl-stage-outer {
    margin-bottom: 80px;
}

/* feedback testimonial section End */


/* Footer Start */
.footer-wrap {
    background-color: #0B202A;
    padding-top: 70px;
}

.ft-logo {
    width: 211px;
    height: 80px;
    margin-bottom: 40px;
}

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

p.ft-description {
    text-transform: capitalize;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 40px;
    padding-right: 10px;
}

.footer-wrap a.ada-feature {
    position: relative;
    font-size: 18px;
    color: white;
    display: block;
    max-width: max-content;
    padding-left: 0;
    margin-bottom: 0;
    line-height: 1;
}

.footer-wrap a.ada-feature::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -8px;
    width: 80px;
    height: 1px;
    background: var(--primary);
}

.footer-wrap a.ft-social-icon {
    width: 35px;
    height: 35px;
    border: 1px solid #848484;
    border-radius: 100%;
    flex: 0 0 auto;
    margin-right: 22px;
    margin-top: 50px;
    padding-left: 0;
    margin-bottom: 0;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all ease-in-out 0.3s;

}

.footer-wrap a.ft-social-icon svg {
    color: var(--white);
    font-size: 16px;
    transition: all ease-in-out 0.3s;
}

.footer-wrap a.ft-social-icon:hover {
    border-color: var(--primary);
}

.footer-wrap a.ft-social-icon:hover svg {
    color: var(--primary);
}

.footer-wrap h4 {
    margin-top: 50px;
    margin-bottom: 40px;
    font-size: 24px;

}

.footer-wrap a.ft-link {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 22px;
    padding-left: 0;
    transition: all ease-in-out 0.3s;
}

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

.ft-photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.ft-img {
    width: 90px;
    height: 90px;
}

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

.footer-wrap span,
.footer-wrap a {
    font-size: 18px;
    color: var(--white);
    display: block;
    margin-bottom: 30px;
    line-height: 28px;
    padding-left: 30px;
    transition: all ease-in-out 0.3s;
}

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


.footer-wrap span:hover svg,
.footer-wrap a svg {
    transform: rotateY(360deg);
    transition: 0.9s;
}


.pl-30 {
    padding-left: 30px;
}

p.ft-bootom {
    font-size: 16px;
    padding: 40px 0;
}

/* Footer End */


/* Service Amenities Page Start */

.service-page .service-amenities-grid-wrap {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    z-index: 111;
    position: relative;
    gap: 40px 24px;
}

.service-page .service-amenities-item {
    position: relative;
    width: 100%;
    height: 200px;
    border-bottom: 3px solid var(--primary);
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    transition: 0.3s ease-in-out;
    padding: 40px 10px 30px;
    z-index: -1;
}

.service-page .service-amenities-item h5 {
    font-size: 22px;
    text-align: center;
}

/* .service-page .service-amenities-grid-item:nth-child(13) {
    grid-column: 1 / span 2;
}

.service-page .service-amenities-grid-item:nth-child(14) {
    grid-column: 3 / span 2;
} */

.service-page .service-amenities-item::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0%;
    left: 0px;
    top: auto;
    bottom: 0px;
    z-index: -1;
    background: var(--primary);
    transition: 500ms;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}


.sa-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 30px;
    transition: 0.3s ease-in-out;
}

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


.service-page .service-amenities-item:hover::before {
    height: 100%;
}


/* Service Amenities Page End */

/* Gallery Page start */
.gallery-page .photo-gallery-wrap {
    height: 400px;
    border-radius: 10px;
}

/* Gallery Page End */


/* -- // Attraction Page Styles Start // -- */
.attraction-main-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    margin-bottom: 60px;
}

.attraction-image-wrapper,
.attraction-content-wrapper {
    width: 50%;
}


.attraction-image-wrapper {
    width: 680px;
    height: 480px;
    overflow: hidden;
    z-index: 111;
    border-radius: 6px;
}

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

.attraction-content-wrapper:hover .attraction-image-wrapper img,
.attraction-image-wrapper:hover img {
    transform: scale(1.08);
}

.attraction-content-wrapper {
    z-index: 111;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    margin-top: 4%;
    z-index: 11;
    border-radius: 8px;

}

.attraction-content-wrapper.pedding-left {
    padding: 50px 40px 50px 100px;
    margin-left: -5%;
}

.attraction-content-wrapper.pedding-right {
    padding: 50px 100px 50px 50px;
    margin-right: -5%;
}


.attraction-content-wrapper h5 {
    font-size: 34px;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.att-content-text {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
    letter-spacing: 0.3px;
    background-color: var(--primary);
    padding: 12px 20px;
    color: white;
}

.att-content-text:last-child {
    margin-bottom: 0;
}


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

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

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

}

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

.info-wrapper svg {
    color: var(--primary);
    font-size: 30px;
    margin-bottom: 30px;
}

.info-wrapper:hover svg {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}


.info-wrapper h5 {
    font-size: 24px;
    margin-bottom: 20px;

}

.info-wrapper p,
.info-wrapper a {
    font-size: 16px;
    line-height: 1.8;
    word-break: break-word;
}

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

/* ---- Contact-us page 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 {
    line-height: 1.5;

}

/* ADA Feature end*/



/* CONTENT FEATURES START  */
.content-feature-wrap.sec-spacing {
    padding: 100px 0 80px 0;
}

.content-feature-grid {
    margin-bottom: 30px;
}

.content-feature-grid h3 {
    margin-bottom: 16px;
    font-size: 30px;
}

.content-dec {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    color: var(--secondary);
    text-transform: capitalize;
}

.content-feature-grid h4 {
    color: #5a5a5a;
    font-size: 18px;
    margin: 20px 0;
}

.content-feature-grid-list {
    padding-left: 50px;
}

.content-feature-grid-list li {
    font-size: 16px;
    margin-bottom: 14px;
}

.faqs {
    margin: 0 70px;
}

.faqs .accordion-button:not(.collapsed) {
    color: var(--black);
    background-color: #f8f8f8;
    box-shadow: none;
}

.faqs .accordion-button {
    padding: 18px 20px;
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    text-align: left;
    background-color: #f8f8f8;
}

.faqs .accordion-item {
    background-color: #fff;
    border: none;
    margin-bottom: 18px;
}

.faqs .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.faqs .accordion-body {
    font-size: 16px;
    line-height: 32px;
    text-transform: capitalize;
    padding: 12px 20px 20px;
    color: #484848;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.10);
}

.content-feature-grid.mt-70 {
    margin-top: 70px;
}

.cf-logo {
    width: 200px;
    height: 76px;
    margin-bottom: 20px;
}

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

/* CONTENT FEATURES END */