:root {
    /* Fonts */
    --font-primary: "Golos Text", sans-serif;
    --font-cal: "Cal Sans", sans-serif;

    /*Colors */
    --black: #1C1C1D;
    --white: #ffffff;
    --primary: #2C6270;
    --primary-light: #368AA0;
    /* #244AB4,#00349B */
    --secondary: #59585D;
    --sky-blue: #F6F6F6;

}


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

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

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

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

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

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


/* 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-primary-light {
    color: var(--primary-light);
}

.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: 0;
    padding: 18px 24px;
    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;
    flex: 0 0 auto;
}


.prime-btn:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    content: "";
    background-color: var(--primary-light);
    transition: .5s;
    opacity: 0;
    border-top-right-radius: 33px;
    border-bottom-right-radius: 33px;
    z-index: -1;
    border-top-left-radius: 33px;
}

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

.prime-btn:hover:before {
    width: 100%;
    border-radius: 0;
    opacity: 1;
}



/* 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(--black);
    color: var(--white);
    padding: 12px 0;

}

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


.navbar {
    padding: 0px 150px;
    z-index: 222;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    background-color: var(--black);

}


.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: 168px;
    height: 100px;
    padding: 0;
    margin: 8px 0 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: 500;
    width: max-content;
    color: var(--white);
    margin-right: 60px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

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

}

.nav-link:hover,
.nav-link:focus,
.nav-item.active .nav-link {
    color: var(--primary-light);
    -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: 0px;
}

/* Header styles end */

/* Sidebar style start */

.slide-menu {
    cursor: pointer;
    margin-left: 50px;
}

.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-wrapper {
    position: relative;
    background: rgba(44, 98, 112, 0.13);
    overflow-x: hidden;
}

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

.hero-slider {
    position: relative;
    /* margin: 0 300px; */
}

.hero-slider .owl-carousel.owl-drag .owl-item {
    width: 100%;
}

.hero-banner {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.hero-banner,
.page-hero-banner,
.about,
.exclusive-offer,
.footer-wrap,
.contactUs-page-left-wrap {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 595px;
}

.hero-banner::before,
.page-hero-banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 10px 10px 0 0;
    background: linear-gradient(180deg, rgba(4, 6, 24, 0.00) 0%, rgba(4, 6, 24, 0.80) 100%);
}

/* .page-hero-banner::before {
    border-radius: 0;
    background: none;
    background-color: #000000;
    opacity: 0.4;
} */

.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 {
    height: 500px;
}


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

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

.sec-page-title {
    font-size: 38px;
    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: 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: var(--primary-light);
    color: #fff;
}

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

/* Hero styles start */

.hero-text {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 111;
}

.hero-text h1 {
    line-height: 80px;
    text-transform: capitalize;
    max-width: 570px;
    text-align: center;
    letter-spacing: 0.5px;
}

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

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    background: 0;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 0 !important;
    font: inherit;
    position: absolute;
    bottom: -18%;
    background-color: #ffffffb8;
    width: 62px;
    height: 62px;
    border-radius: 100%;
    margin: 0;
}

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

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

.hero-wrapper .owl-carousel .owl-nav button.owl-prev svg {
    transform: rotate(180deg);
    margin-right: -50%;
}

.hero-wrapper .owl-carousel .owl-nav button.owl-next svg {
    margin-left: -50%;
}

.hero-wrapper .owl-carousel .owl-nav button.owl-next svg,
.hero-wrapper .owl-carousel .owl-nav button.owl-prev svg {
    /* font-size: 40px; */
    width: 50px;
    color: var(--primary);
    /* margin-left: -60px; */
    transition: all ease-in 0.3s;
}

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

.hero-wrapper .owl-carousel .owl-nav button.owl-next:hover svg,
.hero-wrapper .owl-carousel .owl-nav button.owl-prev:hover svg {
    color: var(--white);
    /* margin-left: -40px; */
}

/* owl Arrow end */

.left-thumbnails,
.right-thumbnails {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.thumb-img {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    display: block;
}

.thumb-img img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all ease-in-out 0.4s;
    overflow: hidden;
}

.thumb-img:hover .photo-gallery-overlay {
    opacity: 1;
    cursor: pointer;
}

.thumb-img .photo-gallery-overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    border-radius: 10px;
}

.thumb-img .search-icon {
    width: 20px;
}

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

.left-thumbnails {
    left: -4%;
    right: auto;
}

.left-thumbnails .thumb-img.image2 {
    margin-left: 90%;
}

.right-thumbnails {
    right: -4%;
    left: auto;
}

.right-thumbnails .thumb-img.image2 {
    margin-left: -90%;
}

.hero-obj-image1,
.hero-obj-image2 {
    position: absolute;

}

.hero-obj-image1 {
    top: 12%;
    left: 4%;
    right: auto;
}

.hero-obj-image2 {
    top: 64%;
    right: 10%;
    left: auto;
}



.hero-slider-thumbnails .vert-move {
    -webkit-animation: mover 3s infinite alternate;
    animation: mover 3s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}


/* hero section style end */

/* Booking Form style Start */
.booking-form-wrapper {
    /* position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 111; */
    /* margin: 0 300px; */
    padding: 50px;
    background-color: var(--white);
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.14);
}

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

.form-group {
    /* padding: 42px 50px; */
    /* background-color: #010101; */
    /* margin-bottom: 20px; */
    display: flex;
    flex-direction: row;
    align-items: center;
}



.input-icon {
    font-size: 28px;
    /* position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%); */
    color: #2C6270;
    margin-right: 24px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-label {
    font-size: 26px;
    letter-spacing: -1px;
    font-weight: 400;
    color: #1C1C1D;
}

.form-control {
    font-size: 18px;
    font-family: var(--font-primary);
    width: 100% !important;
    padding: 8px 0 0 0;
    border: none;
    border-radius: 0;
    border-radius: 0px;
    background-color: transparent;
    font-weight: 400;
    line-height: 1;
    color: var(--black);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

select.form-control option {
    /* color: red !important; */
    padding-left: 8px !important;
}


select {
    padding-left: 8px !important;
}

.form-control:focus,
.form-control:focus-visible {
    color: var(--black);
    background-color: transparent;
    outline: none !important;
    box-shadow: none;
}


.web-res-form .prime-btn {
    width: 100%;
    height: 100%;
    text-transform: uppercase;
    font-size: 18px;
    background-color: var(--primary);
}

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


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

/* Booking Form style End */


/* Service Amenities section start */
.service {
    background: rgba(44, 98, 112, 0.13);
}

.service.sec-spacing {
    padding: 80px 0 70px 0;
}

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

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

.sec-title h2 {
    letter-spacing: 1px;
    /* margin-bottom: 28px; */
    text-transform: capitalize;
}

.sec-sub-title {
    font-size: 14px;
    line-height: 1;
    /* color: #1C1C1D; */
    max-width: max-content;
    /* margin: 0 auto; */
    padding: 14px 20px;
    border-radius: 30px;
    margin-bottom: 24px;
    border: 1px solid rgba(114, 114, 114, 0.18);
}

.sec-sub-title svg {
    font-size: 10px;
    color: var(--primary);
    margin-right: 8px;
}

.sec-description {
    font-size: 16px;
    line-height: 32px;
    text-transform: capitalize;
    color: #59585D;
    margin-top: 28px;
    width: 1050px;
    /* margin: 0 auto; */
}

.service-slider-item {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.09);
    padding: 40px 30px 20px;
    height: 305px;
    position: relative;
    transition: 0.3s ease-in-out;

}

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

.service-slider-item:hover::before {
    height: 100%;
    z-index: 11;
}

.service-slider-item:hover h4 {
    color: var(--white);
    z-index: 11;
}

.service-slider-item:hover .service-slider-item-top .color-primary {
    color: #60a0b0;
    z-index: 11;
}

.service-slider-item:hover p {
    color: #ffffffd1;
    border-color: #e3e3e887;
    z-index: 11;
}

.service-icon img.sa-dark {
    display: block;
    z-index: 11;
    position: relative;

}

.service-icon img.sa-light {
    display: none;
    z-index: 11;
       position: relative;
}

.service-slider-item:hover .service-icon .sa-dark {
    display: none;
    z-index: 11;
}

.service-slider-item:hover .service-icon .sa-light {
    display: block;
    z-index: 11;
}


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


.service-slider-item h4 {
    font-size: 26px;
    letter-spacing: 0.5px;
}

.service-slider-item-top {
    margin-bottom: 30px;
}

.service-slider-item p {
    font-size: 16px;
    text-transform: capitalize;
    line-height: 30px;
    color: #555555;
    padding-top: 30px;
    border-top: 1px solid #E3E3E8;
}

.service-slider .owl-carousel .owl-stage-outer {
    padding: 50px 0;
}

/* Service Amenities section end */

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

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

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

.about .sec-sub-title {
    margin-bottom: 20px;
    padding: 14px 24px;
    border: 1px solid rgba(114, 114, 114, 0.4);
}

.abs-list p {
    font-size: 18px;
    /* margin-bottom: 20px; */
}

.abs-list img {
    margin-right: 8px;
}

.about-content p.about-description {
    font-size: 18px;
    line-height: 36px;
    text-transform: capitalize;
    text-align: justify;
    margin-top: 40px;
}

.about-content .prime-btn {
    margin-top: 40px;
    background-color: transparent;
    border-radius: 100px;
    border: 1px solid rgba(159, 159, 164, 0.64);
    font-weight: 500;
    letter-spacing: -0.2px;
    padding: 16px 24px;
    /* transition: 500ms; */
}

/* .about-content .prime-btn:hover span {
    transform: rotate(0deg);
} */

.about-content .prime-btn span {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: var(--primary);
    transform: rotate(312deg)
}

.about-content .prime-btn svg {
    font-size: 16px;
}

.about-image-wrap {
    width: 90%;
    height: 648px;
    border-radius: 40px;
    overflow: hidden;
    float: inline-end;
}


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

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


/* About section End */


/* Rooms Section Start */

.our-room .rooms-slider-item {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 50px;
    overflow: hidden;
    display: block;

}

.our-room .rooms-slider-item:hover::before {
    opacity: 1;
    height: 100%;
}

.our-room .rooms-slider-item img {
    width: inherit;
    height: inherit;
    object-fit: cover;

}

.rooms-slider-item::before {
    content: '';
    position: absolute;
    border-radius: 50px;
    background: linear-gradient(180deg, rgba(4, 6, 24, 0.00) 0%, rgba(4, 6, 24, 0.90) 100%);
    width: 100%;
    height: 0%;
    left: 0px;
    top: auto;
    bottom: 0px;
    transition: 500ms;
}

#rooms-owl-carousel .owl-item.active.center .rooms-slider-item::before {
    opacity: 1;
    height: 100%;
}


.room-slider-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 40px 60px;
    width: 100%;
    opacity: 0;
    transition: 500ms;
}

#rooms-owl-carousel .owl-item.active.center .room-slider-content {
    opacity: 1;
}

.our-room .rooms-slider-item:hover .room-slider-content {
    opacity: 1;
}

.room-slider-content span {
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1;
    letter-spacing: 1px;
    color: #42a0b9;
}

.room-slider-content h3 {
    font-size: 40px;
    margin-bottom: 30px;
}

.room-slider-content .room-icons {
    margin-bottom: 30px;
}

.room-slider-content .room-icons img {
    width: 20px;
    height: 20px;
    margin: 0;
    /* padding: 0 25px; */
    /* border-right: 1px solid rgba(255, 255, 255, 0.3); */
}

.icon-divider {
    width: 1px;
    height: 11px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 24px;
}

.room-slider-content-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 35px;
}

.room-slider-content-bottom h6 {
    display: flex;
    align-items: center;
    font-size: 20px;
    text-transform: capitalize;
}

.rooms-slider-item .room-slider-content-bottom h6 img {
    width: 24px;
    margin-right: 14px
}

.star-icons svg {
    font-size: 16px;
    /* color:var(--primary); */
    margin-right: 10px;
}

.m-80 {
    margin-top: 80px;
}

#rooms-owl-carousel .owl-item:nth-child(even) {
    margin-top: 80px;
}

/* Rooms Section End */


/* Exclusive Offers section Start */
.exclusive-offer {
    background-image: url('../images/sec-bg-img/exclusive-offer-bg.jpg');
    height: auto;
}

.exclusive-offer.sec-spacing {
    padding: 110px 0;
}

.exclusive-offer .sec-sub-title {
    border: 1px solid rgba(114, 114, 114, 0.4);
}

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

.exclusive-offer .sec-description {
    font-size: 16px;
    color: var(--white);
    line-height: 34px;
    text-transform: capitalize;
    width: auto;
    margin-top: 0;
    padding-right: 10px;
}

.exclusive-offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 0 90px;
    padding-top: 70px;
}

.exclusive-offer-grid-item {
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.10);
    padding: 24px 24px 30px;
    height: 596px;
}

.exclusive-offer-grid-image {
    width: 100%;
    height: 280px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 38px;
}

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

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

.exclusive-offer-grid-item h4 {
    font-size: 30px;
    margin-bottom: 18px;
}

.exclusive-offer-grid-item p {
    font-size: 16px;
    line-height: 30px;
    color: #59585D;
    margin-bottom: 30px;
    text-transform: capitalize;
    text-align: justify;
}

.att-view-more {
    position: relative;
    display: block;
    font-size: 14px;
    color: var(--primary);
}

.att-view-more::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 60%;
    height: 1px;
    background: var(--primary);
    transition: all ease-in-out 0.5s;

}

.att-view-more:hover::after {
    width: 90%;
}

.m-30 {
    margin-top: 30px;
}

.m-60 {
    margin-top: 60px;
}

.m-90 {
    margin-top: 90px;
}

/* Exclusive Offers section end */


/* Feedback section start */
.feedback-image-wrapper {
    width: 100%;
    height: 100%;
    /* height: 460px; */
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.feedback-image-wrapper::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0%;
    left: 0px;
    bottom: 0px;
    border-radius: 20px;
    z-index: 11;
    background: linear-gradient(180deg, rgba(4, 6, 24, 0.00) 0%, rgba(4, 6, 24, 0.70) 100%);
    transition: 500ms;
}

.feedback-image-wrapper:hover::before {
    height: 100%;
}

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

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

.feedback-content-wrap {
    position: relative;
    height: 100%;
    padding: 50px 40px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 2px 40px 2px rgba(0, 0, 0, 0.11);
}


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

.star-wrap svg {
    color: var(--primary);
    font-size: 20px;
    margin-right: 8px;
}

.feedback-content-item p {
    text-transform: capitalize;
    text-align: justify;
    font-size: 20px;
    line-height: 42px;
    color: #787878;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.feedback-bottom-wrap {
    padding-top: 30px;
    position: relative;
}

.fb-icon {
    width: 80px;
    height: 80px;
    margin-right: 30px;
}

.feedback-bottom-wrap h5 {
    font-size: 20px;
}

.feedback-icon {
    position: absolute;
    bottom: 10px;
    right: 30px;
}


/* Feedback section end */

/* Gallery Section start */
.gallery.sec-spacing {
    padding: 30px 0 110px 0;
}

.gallery .owl-carousel.owl-drag .owl-item {
    width: auto !important;
}

.gallery .gallery-slider-one .owl-stage {
    display: flex;
    flex-direction: row;
    align-items: end;
}

a.gallery-slider-img {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}


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

a.gallery-slider-img:hover img {
    transform: scale(1.08);
}

.gallery-img-480 {
    width: 480px;
    height: 280px;
}

.gallery-img-380 {
    width: 380px;
    height: 200px;
}

.gallery-img-680 {
    width: 680px;
    height: 360px;
}

.gallery-slider-two {
    margin-top: 30px;
}



.photo-gallery-overlay {
    position: absolute;
    background-color: rgba(0 0 0 / 60%);
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    opacity: 0;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
    border-radius: 8px;
}

.gallery-slider-img:hover .photo-gallery-overlay {
    opacity: 1;
    cursor: pointer;
}


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

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



/* Gallery Section end */


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

.footer-top-wrap {
    position: relative;
    padding: 90px 0;
}

.footer-top-wrap::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 1px;
    background: rgba(255, 255, 255, 16%);
    left: 50%;
    transform: translateX(-50%);
    top: 37%;
}

.ft-info {
    margin-bottom: 80px;
    margin-top: 50px;
}


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

.ft-info-icon svg {
    font-size: 22px;
    color: var(--white);
}

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

.ft-info-content {
    font-size: 22px;
    letter-spacing: 1px;
    transition: all ease-in-out 0.5s;
}

.ft-info-content:hover {
    color: var(--primary-light);
}

.ft-info-content span {
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    line-height: 1;
}

.ft-link {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--white);
    text-transform: capitalize;
}


.ft-logo {
    width: 184px;
    height: 110px;
    margin-bottom: 72px;
}

.footer-grid-item p {
    font-size: 18px;
    line-height: 40px;
    text-transform: capitalize;
    text-align: center;
    padding: 0 60px;
}

.footer-add {
    padding-left: 30px;
}

.ft-add {
    font-size: 18px;
    line-height: 38px;
    /* margin-bottom: 50px; */
    padding-left: 30px;
}

.ft-add svg,
.ada-link svg {
    font-size: 20px;
}

.ada-link {
    display: block;
    max-width: max-content;
    font-size: 18px;
    position: relative;
    margin-left: 30px;

}

.ada-link::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: var(--white);
}

.footer-bottom-wrap {
    padding: 16px 10px;
}

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

/* Footer end */


/* Service Amenities Page Start */
.service-page {
    background-image: url('../images/sec-bg-img/service-page-bg.png');
    height: auto;
}

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

.service-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 280px 40px;
}

.service-page-item {
    position: relative;
    padding: 0 30px;
}

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

.service-page-item::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    /* bottom: 0; */
    left: 50%;
    /* right: 0; */
    /* height: 100%; */
    /* width: 100%; */
    border: 1px solid #cfcfcf;
    /* border: 1px solid var(--primary); */
    /* transform: rotate(-45deg); */
    width: 280px;
    height: 280px;
}

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

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

.service-page-item h4 {
    font-size: 26px;
}

.service-page-book {
    padding: 80px 40px;
    margin-top: 200px;
    border-radius: 30px;
    background: var(--primary);
}

.service-page-book-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
}

.service-page-book h2 {
    font-size: 44px;
    padding: 0 100px;
    line-height: 1.4;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.service-page-book .prime-btn {
    border-color: var(--white);
    border-radius: 50px;
    padding: 18px 32px;
}

/* Service Amenities Page End */


/* //-- Photo-gallery Page Style start --// */
.photo-gallery-wrapper .gallery-slider-img {
    border-radius: 8px;
    display: block;
    height: 400px;
    overflow: hidden;
}

.photo-gallery-wrapper .gallery-slider-img img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.photo-gallery-wrapper .nav-pills {
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-gallery-wrapper .nav-pills .nav-link {
    padding: 12px 20px;
    font-size: 16px;
    margin-right: 20px;
    color: var(--black);
    border-radius: 4px;
    margin-bottom: 0;
}

.photo-gallery-wrapper .nav-pills .nav-link.active,
.photo-gallery-wrapper .nav-pills .show>.nav-link {
    color: #fff;
    background-color: var(--primary);
}

button:focus-visible {
    outline: none;
}

.photo-gallery-wrapper .nav-link:hover:after,
.photo-gallery-wrapper .nav-link:focus:after,
.photo-gallery-wrapper .nav-item.active .nav-link:after {
    width: 0;
}

/* //-- Photo-gallery Page Style 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*/


/* Contact Us Page Start */
.contactUs-page-wrapper {
    width: 100%;
    display: flex;
}

.contactUs-page-left-wrap,
.contactUs-page-right-wrap {
    width: 50%;
}

.contactUs-page-left-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #151719;
    height: auto;
    padding: 100px 200px;
    margin-bottom: 70px;
    background-image: url('../images/sec-bg-img/bg.png');
}

.contactUs-page-left-wrap h2 {
    font-size: 46px;
    margin-bottom: 60px;
}

.contactUs-page-info {
    margin-bottom: 40px;
}

.contactUs-page-info-icon {
    width: 80px;
    height: 80px;
    border: 1px solid #FFFFFFB2;
    background-color: transparent;
    border-radius: 10px;
    margin-right: 20px;
    flex: 0 0 auto;
}

.contactUs-page-info-icon svg {
    font-size: 40px;
    color: #FFFFFFB2;
}

.contactUs-page-info p {
    font-size: 22px;
    color: #FFFFFFB2;
    line-height: 1.5;

}


.contactUs-page-right-img-wrap {
    position: relative;
    height: 650px;
    width: 100%;
}

.contactUs-page-right-img-wrap img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.contactUs-page-map {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

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

/* Contact Us Page End */



/* -- // Attraction Page Styles Start // -- */
.attraction-main-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    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 // -- */