:root {
    /* Fonts */
    --font-nunito: 'Nunito Sans', sans-serif;
    --font-old-st: 'Old Standard TT', serif;

    /*Colors */
    --black: rgba(0, 0, 0, 80%);
    --white: #ffffff;
    --primary: #CFA670;
    --secondary: #787878;
    --sky-blue: #F8F8F8;

}



/* Default styles start */

*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;

}

body {
    font-family: var(--font-nunito);
    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: 70px;
}

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

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

.h3-small {
    font-size: 28px;
}

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

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

.font-old-st {
    font-family: var(--font-old-st);
}



/* 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: 600;
    font-family: var(--font-primary);
    line-height: 1;
    letter-spacing: 1px;
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid transparent;
    border-radius: 2px;
    padding: 10px 16px;
    width: 152px;
    height: 50px;
    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;
}

.btn-check:focus+.btn,
.btn:focus {
    outline: 0;
    box-shadow: none;
}

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


.prime-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 52px;
    border: 3px solid var(--primary);
    transition: opacity 0.3s, border 0.3s;
}

.prime-btn:hover::before {
    opacity: 0;
}

.prime-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: #e2ad66;
    border-color: transparent;
    border-radius: 50%;
    transform: translate(-10px, -70px) scale(0.1);
    opacity: 0;
    z-index: -1;
    transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}

.prime-btn:hover::after {
    opacity: 1;
    transform-origin: 100px 100px;
    transform: scale(1) translate(-10px, -70px);
}



/* Button Css End */

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

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

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

/* Default styles end */


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

/* Header styles start */

.main-wrapper {
    width: 100%;
}

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

}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1111;
    animation: slideDown 0.50s ease;
    background-color: rgb(0 0 0 / 70%);
    margin-top: 0;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);
    padding: 20px 0;
}

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

    to {
        transform: translateY(0);
    }
}


.header-top-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
}

.header-bottom-wrap {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

header.fixed-header .header-top-wrap {
    display: none;
}


.page-hero-banner header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1111;
    background-color: rgb(0 0 0 / 75%);
    margin-top: 0;
    padding: 20px 0;
}

header.fixed-header .header-bottom-wrap,
.page-hero-banner header .header-bottom-wrap {
    padding-top: 0;
    border-top: none;
}


.page-hero-banner header.fixed-header .header-bottom-wrap {
    padding-top: 0;
    border-top: none;
}

.logo-scroll,
.button-scroll {
    display: none;
}

header.fixed-header .logo-scroll,
header.fixed-header .button-scroll {
    display: block;
}

/* 
header.fixed-header .prime-btn {
   margin-left: 40px;
}
header.fixed-header .navbar-brand {
    width: 100%;
    height: 100%;
    margin-left: 20px;
} */
.navbar-brand.navbar-brand-mobile{
    display: none;
}
.ph-link {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px
}

.ph-link svg {
    font-size: 30px
}

.navbar-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
}

.navbar-brand {
    width: 307px;
    height: 62px;
    padding: 0;
    margin: 0;
    /* z-index: 111; */
}

.mobile-logo {
    display: none;
}

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

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

.nav-link {
    text-transform: capitalize;
    position: relative;
    font-family: var(--font-nunito);
    padding: 0;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 2px;
    width: max-content;
    color: var(--white);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin-right: 50px;
}

.nav-link:after {
    position: absolute;
    content: " ";
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    width: 0%;
    height: 2px;
    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: #ffca85;
    -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 {
    padding: 0;
}

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

/* header.fixed-header .navbar-scroll-visible{
    display: none;
}

header .navbar-scroll-hidden{
    display: none;

}

header.fixed-header .navbar-scroll-hidden{
    display: block;
} */

/* Header styles end */


/* Hero styles start */
.main-wrapper {
    position: relative;
}

.hero-banner {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 920px;
}

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

.hero-banner.hero-one {
    background-image: url(../images/hero-bg-image/index-hero-bg-one.jpg);
}

.hero-banner.hero-two {
    background-image: url(../images/hero-bg-image/index-hero-bg-two.jpg);
}

.hero-banner.hero-three {
    background-image: url(../images/hero-bg-image/index-hero-bg-three.jpg);
}

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

.hero-text {
    color: var(--white);
    max-width: 600px;
    /* text-align: center; */
}



.hero-text h4 {
    letter-spacing: 6px;
    /* text-shadow: 2px 2px 2px var(--black); */
}

.hero-text h1 {
    letter-spacing: 4px;
    margin: 20px 0;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgb(0 0 0 / 60%);
}

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

}

.owl-carousel button.owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50px;
    background: white;
    border: 2px solid var(--primary);
    margin: 0 5px;


}

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

.owl-carousel button.owl-dot.active {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-text-wrapper .prime-btn {
    background: transparent;
    border: 1px solid var(--white);
    text-transform: uppercase;
    width: 172px;
    height: 54px;
    letter-spacing: 1px;
}

.hero-text-wrapper .prime-btn::after {
    display: none;
}

.hero-text-wrapper .prime-btn::before {
    display: none;
}

/* Hero styles end */


/* About section styles Start */
.about-image-wrapper {
    display: flex;
    flex-direction: row;
    gap: 22px;
}

.about-image-one,
.about-image-two {
    width: 100%;
    height: 410px;
    overflow: hidden;
    
}

.about-image-one img,
.about-image-two img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all ease-in-out 0.4s;
}
.about-image-one:hover img,
.about-image-two:hover img {
    transform: scale(1.08);
}
.about-image-two {
    margin-top: 40px;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 542px;
    margin-left: 50px;
}

.about-content h3 {
    margin-bottom: 15px;
    line-height: 1;
    letter-spacing: 1px;
}

.about-content h2 {
    line-height: 1.2;
    letter-spacing: 1px;
    margin-bottom: 22px;

}

.about-content p {
    line-height: 2;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #606060;
}

.read-more-link {
    position: relative;
    margin-top: 40px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--black);
    max-width: max-content;
    transition: all ease-in-out 0.2s;
}

.read-more-link::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 2px;
    background: var(--primary);
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

/* About section styles end */

/* Booking form styles Start */
.section-banner {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;

}

.sec-booking {
    background-image: url(../images/sec-bg-image/booking-form.jpg);
}

.sec-booking-wrapper {
    background-image: url(../images/sec-bg-image/booking-wrapper.jpg);
}



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

.sec-booking-wrapper.section-banner::before {
    opacity: .8;
}



.bookng-form-wrapper {
    background-color: var(--white);
    max-width: 678px;
    z-index: 111;
    position: relative;
    padding: 60px;
    text-align: center;
}

.bookng-form-wrapper::before {
    content: '';
    background: var(--primary);
    position: absolute;
    width: 10px;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
}

.bookng-form-wrapper h3 {
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 50px;
}

.form-label {
    font-size: 20;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 300;
}

.form-control {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #5E5E5E;
    color: #5E5E5E;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background: transparent;
    font-size: 20px;
    padding: 0 0 8px;
}

select.form-control option {
    color: var(--black) !important;
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    color: #5E5E5E;
}

.form-control:focus {
    outline: 0;
    box-shadow: none;
    color: #5E5E5E;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #5E5E5E;
}


.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: 1111 !important;
    position: relative;
}

.booking-form .prime-btn {
    margin-top: 40px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Booking form styles end */

/* Service & Amenities Start */
.sec-title {
    margin-bottom: 55px;
    text-align: center;
}

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

.sec-title h5 {
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.service-amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 20px;
}

.service-amenities-grid-item {
    padding: 30px 20px;
    background-color: var(--white);
    box-shadow: 0px 5px 25px -2px rgb(0 0 0 / 6%);
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    flex-direction: column;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    width: 220px;
    height: 200px;
    transition: all ease-in-out .3s;


}

.service-amenities-grid-item:hover {
    background-color: var(--primary);
    color: var(--white);
    transition: all ease-in-out .3s;
}

.service-amenities-grid-item:hover h5 {
    color: var(--white);
    transition: all ease-in-out .3s;
}

.service-amenities-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    transition: all ease-in-out .3s;
}

.service-amenities-icon img {
    width: inherit;
    height: inherit;
    object-fit: contain;
    transition: all ease-in-out .3s;
}

.service-amenities-grid-item h5 {
    text-align: center;
    line-height: 1.5;
    transition: all ease-in-out .3s;

}

.icon-dark {
    display: block;
}

.icon-white {
    display: none;
}

.service-amenities-grid-item:hover .icon-dark {
    display: none;
    transition: all ease-in-out .3s;
}

.service-amenities-grid-item:hover .icon-white {
    display: block;
    transition: all ease-in-out .3s;
}
.service-amenities .prime-btn{
    margin-top: 70px;
}
/* Service & Amenities end */


/* offers start */
.offers-wrapper-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offers-wrapper-grid-item {
    position: relative;
    height: 515px;
    /* overflow: hidden; */
}

.offers-wrapper-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-in-out 0.3s;
}

.offers-wrapper-grid-item:hover img {
    transform: scale(1.08);
}


.offers-wrapper-grid-item-content-wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 65%);
    border: 2px solid var(--primary);
    padding: 32px 20px;
    z-index: 111;
    width: 90%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 250px;
}

.offers-wrapper-grid-item-content-wrap h4 {
    margin: 24px 0 20px 0;
    line-height: 1.2;
    letter-spacing: 1px;
}

.offers-wrapper-grid-item-content-wrap p {
    color: var(--white);
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    line-height: 1.8;
}

.offers-wrapper-grid-item .prime-btn {
    position: absolute;
    z-index: 111;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
}

.divider-wrap {
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 92px;
    height: 2px;
    background: var(--primary);
    margin-bottom: 26px;
    z-index: 111;
}

/* offers end */

/* booking start*/
.booking-wrapper.sec-spacing {
    padding: 100px 0;
}

.booking-content-wrapper {
    max-width: 820px;
    margin: 0 auto;
    z-index: 111;
    position: relative;
    text-align: center;
}

.booking-content-wrapper h2 {
    margin-bottom: 26px;
    line-height: 1.5;
    letter-spacing: 1px;
}

.booking-wrapper-link {
    color: white;
    font-size: 18px;
    letter-spacing: 2px;
    font-style: italic;
    text-align: center;
}

.booking-content-wrapper .prime-btn {
    margin-top: 30px;
}

/* booking end */

/* rooms start */
.our-rooms-slider-image {
    width: 100%;
    height: 355px;
    overflow: hidden;
}

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


.our-rooms-slider-content {
    padding: 40px 20px;
}

.our-rooms-slider-content h4 {
    margin-bottom: 20px;
}

.our-rooms-slider-content p {
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

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

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(207, 166, 112, 0.5);
    color: var(--primary);
    border-radius: 50px;
    font-size: 25px;
    transition: all ease 0.3s;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    margin: 0;
}

.owl-carousel .owl-nav button.owl-prev {
    right: 108%;
}

.owl-carousel .owl-nav button.owl-next {
    left: 108%;
}

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

/* rooms end */


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

.photo-gallery-wrap.mh-465 {
    height: 465px;
}


.photo-gallery-wrap img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all ease-in-out 0.4s;
}
.photo-gallery-wrap:hover img {
    transform: scale(1.08);
}


.photo-gallery .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 end */

/* feedback start */
.feedback-slider-item {
    width: 540px;
    margin: 0 auto;
}

.feedback-slider-icon {
    width: 40px;
    height: 40px;
}

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

/* .feedback-slider-icon{
    width: inherit;
    height: inherit;
    object-fit: cover;
} */
.feedback-content {
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 1.5px;
    color: #838383;
    margin: 30px 0 50px;
    font-style: italic;
}

.feedback-name {
    font-size: 20px;
    line-height: 1.2;
    color: #525252;
}

.feedback-slider .owl-carousel .owl-nav button.owl-prev {
    right: 86%;
}

.feedback-slider .owl-carousel .owl-nav button.owl-next {
    left: 86%;
}

.feedback-slider .owl-carousel .owl-nav button.owl-next,
.feedback-slider .owl-carousel .owl-nav button.owl-prev {
    background-color: var(--white);
    border: 1px solid #EBEBEB;
    color: #a7a7a7;
    transition: all ease-in-out 0.3s;
}


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

/* feedback end */


/* Footer start */

.footer {
    position: relative;
    background-image: url("../images/sec-bg-image/footer.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}

.footer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: .8;
}

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

.footer-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    z-index: 111;
    position: relative;
    margin-bottom: 60px;
}

.ft-logo {
    width: 220px;
    height: 54px;
    margin-bottom: 30px;
}

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

.footer-grid-item p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.footer-grid-item .prime-btn {
    width: 180px;
    height: 56px;
}

.footer-grid-item h3 {
    padding: 16px 0 30px 0;
    letter-spacing: 0.5px;
}

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

.footer-link {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 26px;
    letter-spacing: 1px;
}

.ft-add,
.footer-add a {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 26px;
    letter-spacing: 1px;
}

.footer-bottom-wrap {
    z-index: 111;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 14px;
    padding: 24px 0;

}

/* Footer end */

/* breadcrumb start */

.breadcrumb-item {
    font-size: 20px;
}

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

/* ---- Service page Style Start ---- */
.page-hero-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 700px;
    position: relative;
    overflow: hidden;
}

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

.hero-service {
    background-image: url('../images/hero-bg-image/service-hero.jpg');
}

.hero-gallery {
    background-image: url('../images/hero-bg-image/hero-gallery.jpg');
}

.hero-contact {
    background-image: url('../images/hero-bg-image/hero-contact.jpg');
}

.hero-ada {
    background-image: url('../images/hero-bg-image/hero-ada.jpg');
}

.hero-attraction {
    background-image: url('../images/hero-bg-image/hero-attraction.jpg');
}

.header-bg-white {
    background-color: var(--white);
}

.page-hero-content {
    z-index: 11;
    position: absolute;
    bottom: 15%;
    left: 15%;
    text-align: left;
}

.page-hero-content h1 {
    margin-bottom: 16px;
    letter-spacing: 4px;
}

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

.service-page-booking-wrapper.sec-spacing {
    padding: 80px 0;
}

.service-page-book-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 40px;
}
.service-page-book-inner-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.service-page-book-icon img,
.service-page-book-inner-wrap-left-icon img {
    width: inherit;
    height: inherit;
    object-fit: contain;
}

.service-page-booking-wrapper .booking-wrapper-link {
    color: var(--black);
    margin-bottom: 40px;
}

.service-page-book-inner-wrap-left {
    margin-right: 20px;
}

.service-page-book-inner-wrap-right {
    margin-left: 20px;
}

.service-page-book-inner-wrap-left-icon {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

.service-page-book-inner-wrap-left P {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 1px;
}

.service-page-booking-wrapper h3 {
    font-size: 50px;
    text-transform: capitalize;
    margin-bottom: 30px;
    text-align: center;
}



/* //-- Photo-gallery Style start --// */
.photo-gallery-wrapper .nav-pills {
    margin-bottom: 30px;
}

.photo-gallery-wrapper .nav-pills .nav-link {
    padding: 10px 16px;
    font-size: 16px;
    margin-right: 20px;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0px;
}
.photo-gallery-wrapper .nav-link:after{
    display: none;
}
.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 Style end --// */


/* -- // ADA-Feature Page Styles Start // -- */
.ada-feature-wrap {
    border-bottom: 1px 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 Page Styles End // -- */


/* -- // Contact-us Page Styles Start // -- */
.contact-us-content-wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 26px 20px;
    background-color: var(--white);
    box-shadow: 0 4px 10px 0 rgb(207 166 112 / 20%);
    padding: 40px 30px;
    width: 100%;
}

.contact-title-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 18px;
    color: var(--black);
    margin-bottom: 10px;
}

.contact-us-content-items p,
.contact-us-content-items a {
    font-size: 14px;
    line-height: 1.5;
}

.contact-us-content-items p {
    word-wrap: break-word;
    color: var(--secondary);
}

.contact-us-content-items a {
    color: var(--secondary);
}

.contact-play-icons {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    color: var(--primary);
}

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

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


/* -- // Attraction Page Styles Start // -- */
.attraction-main-wrapper {
    width: 100%;
}

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

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

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

.attraction-title {
    font-size: 30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.attraction-content-wrap {
    margin: -100px 0 0 50px;
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 8px 0 8px 8px;
    z-index: 11;
    position: relative;
    box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.08);

}

.att-content-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    padding-bottom: 10px;

}

.att-content-text:not(:last-child) {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

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

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

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






















































/* Back to top button */
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 5%;
    bottom: 5%;
    z-index: 999;
    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: #d6ab29;
    color: #fff;
}

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