:root {
    /* Fonts */
    --font-primary: 'Inter', sans-serif;
    --font-playfair: 'Playfair Display', serif;
    --font-raleway: 'Raleway', sans-serif;
    --font-dancing-script: 'Dancing Script', cursive;

    /*Colors */
    --black: #0F1D2E;
    --white: #ffffff;
    --primary: #E6AD00;
    --secondary: #7B7B7B;
    --sky-blue: #E1F4FF;

}


/* Default styles start */

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

html {
    scroll-behavior: smooth;

}

body {
    font-family: var(--font-primary);
    line-height: 1.25;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
}

p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    padding: 0;
    color: var(--secondary);
}


/* heading */
.h1,
h1 {
    font-size: 56px;
}

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

.h2-small {
    font-size: 32px;
}

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

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

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

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

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

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

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

.font-script {
    font-family: var(--font-dancing-script);
}



/* COLORS */
.bg-black-color {
    background-color: var(--black);
}

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

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

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

.bg-skyblue-color {
    background-color: var(--sky-blue);
}

.color-black {
    color: var(--black);
}

.color-white {
    color: var(--white);
}

.color-primary {
    color: var(--primary);
}

.color-secondary {
    color: var(--secondary);
}

.color-skyblue {
    color: var(--sky-blue);
}

/* COLORS */

/* font weight */
.fw-700 {
    font-weight: 700;
}

.fw-600 {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500;
}

.fw-400 {
    font-weight: 400;
}

.fw-300 {
    font-weight: 300;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-auto-0 {
    flex: 0 0 auto;
}

img {
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--primary);
}

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

/* Button Css Start */
.prime-btn {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-primary);
    line-height: 1;
    letter-spacing: 1px;
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid transparent;
    border-radius: 4px;
    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: #e7b316;
    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;
    padding-top: 54px;

}

.navbar-collapse {
    background-color: var(--white);
    border-radius: 18px;
}

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

.navbar-brand {
    width: 160px;
    height: 80px;
    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-raleway);
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    width: max-content;
    color: #0F1D2E;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-link:after {
    position: absolute;
    content: " ";
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    width: 0%;
    height: 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: var(--primary);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


.nav-link:hover:after,
.nav-link:focus:after,
.nav-item.active .nav-link:after {
    width: 60%;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.navbar {
    padding: 0;
}

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

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    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);
    }
}

/* Header styles end */


/* Hero styles start */
.hero-wrapper {
    position: relative;
    width: 100%;
    padding: 140px 0 150px 0;
}

.hero-section-wrap {
    width: 100%;
    display: flex;
    /* align-items: center;
    justify-content: center; */
}

.hero-section-item-wrap {
    width: 50%;
    flex: 0 0 auto;
}

.hero-image-wrapper {
    position: relative;
    margin-left: 30px;

}

.hero-img1 {
    width: 600px;
    height: 580px;
    border-radius: 10px;
    margin-left: 10%;
    position: relative;
    z-index: 11;
}

.hero-img1 img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    z-index: 111;
    position: relative;
    border-radius: 10px;
}

.hero-img1::after {
    content: '';
    position: absolute;
    right: -30px;
    top: -30px;
    background-color: var(--primary);
    width: 150px;
    height: 150px;
    z-index: 1;
}

.hero-img2 {
    position: absolute;
    left: 0;
    bottom: -8%;
    width: 260px;
    height: 240px;
    z-index: 111;
    border-radius: 10px;
    border: 4px solid var(--sky-blue);
}

.hero-content {
    margin-left: 32%;
    margin-top: 40px;
    /* max-width: 560px; */
    max-width: 590px;
}

.hero-content .h2-small {
    font-size: 28px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.hero-content h1 {
    position: relative;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 16px;
    color: #7B7B7B;
    line-height: 1.6;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.hero-content .prime-btn {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    margin-right: 40px;
}

.hero-content .prime-btn::after,
.hero-content .prime-btn::before {
    display: none;
}

.ph-link {
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1;
}

.ph-link svg {
    width: 32px;
    height: 32px;
    transform: rotate(25deg);
}

.hero-ph {
    display: flex;
    align-items: center;
}

/* Hero styles end */



/* Footer start */

.footer {
    position: relative;
    background-image: url("../images/sec-bg-img/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: .85;
}

footer.sec-spacing {
    padding: 110px 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: 200px;
    height: 120px;
    margin-bottom: 34px;
}

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

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

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

.footer-grid-item h3 {
    font-size: 30px;
    padding: 30px 0;
    padding-bottom: 30px;
    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 */
/* Booking form start */

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

}

.booking-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.3);
}

.booking-form-grid-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.booking-form {
    width: 870px;
    padding: 60px 70px;
    background-color: var(--white);
    border-radius: 10px;
    margin-left: 100px;
}

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

.form-label {
    font-size: 24px;
    color: var(--black);
    font-family: var(--font-raleway);
    margin-bottom: 20px;
    font-weight: 500;
}

.form-control {
    height: 52px;
    background-color: var(--sky-blue);
    border-radius: 4px;
    border: 1px solid transparent;
    color: #7E7E7E;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 16px;
    padding: 12px 20px;
}

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

.input-group {
    position: relative;
}

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

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

}

.ui-widget-content {
    z-index: 11 !important;
    position: relative;
}

.ui-widget-header {
    border: 1px solid var(--sky-blue) !important;
    background: var(--sky-blue) !important;
    color: var(--black) !important;
    font-weight: bold;
}

.ui-widget-header a {
    color: var(--black) !important;
}

.booking-form .prime-btn {
    height: 52px;
    text-transform: uppercase;
    margin-top: 40px;
}

/* Booking form end */



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

}

/* About Section Start */
/* .about.sec-spacing{
    padding: 120px 0 120px 0 ;
} */
.about-content {
    padding-top: 40px;
}

.about-content h4 {
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 12px;
}

.about-content h2 {
    line-height: 1.2;
    margin-bottom: 22px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    max-width: 580px;
    color: #4d4d4d;
}

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

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

.about-img1 {
    height: 450px;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.about-img1 img,
.about-img2 img {
    width: inherit;
    height: inherit;
    object-fit: cover;

}

.about-img2 {
    position: absolute;
    width: 390px;
    height: 220px;
    bottom: -25%;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid var(--white);
    overflow: hidden;
    border-radius: 10px;
}

/* About Section End */


/* Service And Amenities start*/
.sec-title {
    margin-bottom: 55px;
}

.sec-title h4 {
    letter-spacing: 1px;
    margin-bottom: 12px;
}


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

.service-amenities-grid-item {
    padding: 40px 20px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 2px 10px 0px rgba(0, 48, 73, 0.25);
}

.service-amenities-icon-wrap {
    width: 100px;
    height: 100px;
    border-radius: 6px;
    padding: 18px;
    margin-bottom: 30px;

}

.service-amenities-icon-wrap img {
    transition: all 0.9s ease;
}

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


.service-amenities-grid-item h5 {
    font-size: 22px;
    line-height: 1.2;
    position: relative;
    max-width: max-content;
    white-space: nowrap;
}

.service-amenities-grid-item h5::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    width: 80%;
    height: 2px;
}

.service-amenities .prime-btn {
    margin-top: 70px;
}

/* Service And Amenities end*/


/* Offers Section Start*/
.offers-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.offer-grid-item {
    width: 100%;
    height: 515px;
    position: relative;
    overflow: hidden;
}

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

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

.offer-grid-content {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.7);
}

.offer-grid-content h4 {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.show-more {
    font-size: 14px;
    position: relative;
    color: var(--white);
    letter-spacing: 1px;
    line-height: 1.5;
}

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

/* Offers Section  end*/

/* gallery Section Start*/
.gallery-wrapper {
    display: flex;
    width: 100%;
}

.gallery-image-wrap {
    width: 20%;
    flex: 0 0 auto;
    height: 550px;
    overflow: hidden;
    position: relative;
    display: block;
}

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

.gallery-image-wrap:hover img {
    transform: scale(1.1);
}

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

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


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

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

/* gallery Section  End*/

/* Feedback Section start */
.feedback.sec-spacing {
    padding: 0 0 80px;
}

.feedback-wrapper {
    max-width: 780px;
    margin: 0 auto;
    margin-bottom: 40px;
    padding: 50px 60px;
    border-radius: 16px;
    border: 0px solid #000;
    background: #FFF;
    box-shadow: 4px 4px 18px 0px rgba(0, 0, 0, 0.15);
}

.feedback-icon {
    margin-bottom: 36px;
    width: 70px;
    height: 70px;
}

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


.feedback-content {
    font-size: 18px;
    font-style: italic;
    color: #868282;
    letter-spacing: 0.5px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.feedback-wrapper span {
    font-size: 18px;
}



.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    border-radius: 100%;
    background: transparent;
    color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.4);
    width: 50px;
    height: 50px;
    font-size: 25px;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    transition: 0.3s all;
    z-index: 1111;
}

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

}

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

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


/* Feedback Section end */

/* Our Rooms Section Start */
.our-rooms-wrapper {
    margin: 0 100px;
}

.our-rooms-wrapper .owl-stage-outer {
    padding: 40px 0 140px;
}

.our-rooms-item-wrap {
    position: relative;
    transition: all ease-out 0.5s;
}

.our-rooms-wrapper .owl-item.active.center .our-rooms-item-wrap {
    transform: scale(1.1);
}

.our-rooms-image-wrap {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
}

.our-rooms-image-wrap img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.our-rooms-content-wrap {
    position: absolute;
    left: 50%;
    bottom: -20%;
    transform: translateX(-50%);
    width: 90%;
    border-radius: 10px;
    padding: 30px 20px;
    background-color: var(--primary);
}

.our-rooms-content-wrap h5 {
    font-size: 20px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.rooms-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;

}

.rooms-list p {
    position: relative;
    font-size: 13px;
    line-height: 1;
    font-weight: 300;
    width: max-content;
    margin-bottom: 8px;
    color: var(--white);

}

.rooms-list p::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgb(255 255 255 / 80%);
    border-radius: 50px;
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
}

.rooms-list p:not(:last-child) {
    margin-right: 30px;
}

.icons-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icons-wrap svg {
    width: 20px;
    height: 20px;
    margin-right: 20px;
    color: var(--white);
}

.our-rooms-wrapper .owl-theme .owl-nav {
    margin-top: 100px;
}


.our-rooms-wrapper .owl-carousel .owl-nav button.owl-next,
.our-rooms-wrapper .owl-carousel .owl-nav button.owl-prev {
    top: 112%;
}

.our-rooms-wrapper .owl-carousel .owl-nav button.owl-prev {
    left: 46%;
}

.our-rooms-wrapper .owl-carousel .owl-nav button.owl-next {
    right: 46%;
}

/* Our Rooms Section end */

/* Booking Wrapper start */
.booking-sec-background {
    position: relative;
    background-image: url("../images/sec-bg-img/book-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;

}

.booking-sec-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url('../images/sec-bg-img/gradiant.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;

}

.booking-wrapper-icon {
    width: 112px;
    height: 112px;
    margin-bottom: 20px;
}

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

.booking-wrapper-content {
    float: inline-end;
    width: 710px;
    position: relative;
    z-index: 111;
    margin-right: 10%;
}

.booking-wrapper-content h3 {
    margin-bottom: 30px;
}

.booking-wrapper-content p {
    font-size: 18px;
    color: #455258;
    letter-spacing: 0.5px;
    line-height: 1.8;
    margin-bottom: 20px;
    padding: 0 40px;
}

.booking-wrapper-content a {
    color: #455258;
    margin-top: 30px;
    line-height: 1;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* Booking Wrapper start */
/* 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: rgb(249, 202, 61);
    color: #fff;
}

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

/* 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-img/service-hero.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');
}

.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 .service-amenities-grid-wrap {
    gap: 100px 40px;
    margin-top: 100px;
}

.service-page .service-amenities-grid-item {
    position: relative;
    padding: 0 10px;
    width: 100%;
    min-height: 150px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.service-page .service-amenities-absolute {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-page .service-amenities-icon-wrap {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}

/**/
.gallery-page .gallery-image-wrap {
    width: 100%;
    height: 380px;
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-page .gallery-image-wrap img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

/* -- // Contact-us Page Styles Start // -- */

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

}

.info-wrapper {
    padding: 40px 36px;
    background-color: #E1F4FF;
    box-shadow: 1px 1px 6px 0 rgba(6, 22, 58, 0.2);
}

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

.info-wrapper h5 {
    margin-bottom: 20px;
    letter-spacing: 1px;
}

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

}

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

/* -- // Contact-us Page Styles 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 // -- */

/* attraction page start*/
/* .attraction-main-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 60px;
}

.attraction-image-wrapper {
    width: 680px;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
}

.attraction-image-wrapper img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.attraction-content-wrapper {
    width: 640px;
    z-index: 111;
    background: var(--sky-blue);
    border-bottom: 1px solid var(--primary);
    border-top: 5px solid var(--primary);
    padding: 30px;
    border-radius: 12px;

}

.attraction-content-wrapper.one {
    margin-left: -5%;
}

.attraction-content-wrapper.two {
    margin-right: -5%;
}


.attraction-content-wrapper h4 {
    margin-bottom: 20px;
    letter-spacing: 1px;
}

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

.att-content-text-left {
    width: 70%;
}

.att-content-text-right {
    width: 30%;
    text-align: end;
} */

/**/



/**/

.add-charge {
    font-size: 17px;
    font-weight: 400;
    margin-top: 30px;
    position: relative;
    color: #121212;
    padding-left: 20px;
}

.add-charge::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50px;
    background: #121212;
}



/*  Accessible Room Note style ria */
.ada-note-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 10px;
    background-color: #e1f4ff;
}

.ada-note-text {
    font-family: var(--font-raleway);
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
    text-transform: capitalize;
    color: #0F1D2E;
    margin-bottom: 0px;
    letter-spacing: 0;
}

.ada-icon-wrap {
    display: block;
    margin-bottom: 30px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: #ffffff;
}


.ada-icon-wrap img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

@media (max-width: 1599px) {
    .ada-note-text {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .ada-note-text {
        font-size: 20px;
        line-height: 1.5;
    }

    .ada-icon-wrap img {
        width: 30px;
        height: 30px;
    }

}

@media (max-width: 480px) {
    .ada-icon-wrap {
        margin-bottom: 16px;
    }

    .ada-icon-wrap img {
        width: 22px;
        height: 22px;
    }

    .ada-note-text {
        font-size: 16px;
    }
}


/* thins-to-do section start */

.things-to-do-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
}

.things-to-do-grid-item {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    padding: 30px;
    background-color: #e1f4ff;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px; */
}

.things-to-do-grid-image {
    position: relative;
    width: 100%;
    height: 360px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.things-to-do-grid-image img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.things-to-do-grid-image img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.things-to-do-grid-title {
    margin-bottom: 20px;

}


.things-to-do-grid-content {
    background-color: var(--white);
    padding: 20px;
    line-height: 1;
    border-radius: 4px;
}

.things-to-do-grid-content p {
    font-size: 16px;
    line-height: 2.2;
    text-align: center;
}

@media (max-width: 991px) {
    .things-to-do-grid-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 575px) {
    .things-to-do-grid-title {
        font-size: 24px;
    }

    .things-to-do-grid-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .things-to-do-grid-title {
        font-size: 22px;
    }

    .things-to-do-grid-item {
        padding: 20px 10px;
    }

    .things-to-do-grid-content {
        padding: 20px 10px;

    }

    .things-to-do-grid-content p {
        font-size: 14px;
        line-height: 2;
    }
}

/* thins-to-do section end */

/* Virtual Tour Section Start */

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

.virtual-tour-wrap {
    width: 100%;
    height: 600px;
    margin: 0 auto;
}


@media (max-width: 1599px) {
    .virtual-tour-wrap {
        height: 540px;

    }
}

/* Virtual Tour Section End */

/* Popup Start */
.popup {
    display: none;
    position: fixed;
    z-index: 1111;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
    position: relative;
    margin: 10% auto;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    background-color: white;
    border-radius: 10px;
    text-align: center;
}

.popup-content img {
    width: 800px;
    height: 400px;
    border-radius: 10px;
}

.popup-content .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #aaa;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1111;
}

.popup-content .close:hover,
.popup-content .close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}


.promo-offer-card-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 40px 30px;
    border-radius: 10px;
    background-color: var(--black);
}

.promo-offer-card-left-wrap,
.promo-offer-card-right-wrap {
    width: 50%;
}

.promo-offer-card-left-wrap {
    padding: 20px 20px 20px 0;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.promo-offer-card-left-wrap h3 {
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.2;
}


.promo-offer-card-left-wrap p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 4px;
}

.promo-code {
    border: 1px solid var(--primary);
    border-radius: 2px;
    padding: 10px 20px;
    font-size: 16px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 20px;
}

.promo-offer-card-left-wrap h4 {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.promo-offer-card-left-wrap h6 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.popup-info a {
    font-size: 16px;
    margin-bottom: 16px;
}

.popup-info {
    display: flex;
    flex-direction: column;
}

.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: 3s;
    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);
    }
}

.promo-offer-card-right-wrap {
    position: relative;
}

.promo-offer-card-image {
    width: 100%;
    height: 100%;
}

.promo-offer-card-image img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.promo-offer-card-right-content {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.promo-offer-card-right-content p {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 10px;
    color: white;
}

.promo-offer-card-right-content span {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    color: var(--primary);
}

@media (max-width: 1599px) {
    .popup-info a {
        font-size: 14px;
        margin-bottom: 14px;
    }
}

@media (max-width: 991px) {
    .popup-content {
        padding: 16px;
        width: 90%;
        max-width: 100%;
        border-radius: 8px;
    }

    .promo-offer-card-wrapper {
        padding: 20px 10px;
        border-radius: 6px;
    }

    .promo-offer-card-left-wrap h3 {
        font-size: 26px;
    }

    .promo-offer-card-left-wrap {
        padding: 20px 10px 20px 0;
    }

    .promo-offer-card-left-wrap p {
        font-size: 14px;
    }

    .promo-code {
        padding: 8px 16px;
        font-size: 14px;

    }

    .promo-offer-card-left-wrap h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .promo-offer-card-left-wrap h6 {
        font-size: 12px;
    }

    .popup-info a {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .promo-offer-card-right-content p {
        font-size: 12px;
    }

    .promo-offer-card-right-content span {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .popup-content .close {
        top: 12px;
        right: 20px;
        font-size: 20px;
    }

    .popup-content {
        margin: 28% auto;

    }

    .popup-content {
        padding: 10px;
    }

    .promo-offer-card-left-wrap {
        padding: 10px 10px 10px 0;
    }

    .promo-offer-card-left-wrap h3 {
        font-size: 22px;
        line-height: 1.5;
    }

    .promo-offer-card-left-wrap p {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .promo-code {
        font-size: 12px;
    }

    .promo-offer-card-left-wrap h4 {
        font-size: 14px;
    }

    .promo-offer-card-left-wrap h6 {
        font-size: 11px;
        line-height: 2;
        margin-bottom: 0;
    }

    .popup-info {
        display: none;
    }

    .promo-offer-card-right-content {
        padding: 15px 10px;
    }

    .promo-offer-card-right-content p {
        font-size: 10px;
    }

    .promo-offer-card-right-content span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .popup-content {
        width: 96%;
        max-width: 100%;
        border-radius: 4px;
    }

    .promo-offer-card-wrapper {
        padding: 10px 6px;
        border-radius: 4px;
    }

    .promo-offer-card-left-wrap {
        padding: 10px 6px 10px 0;
    }

    .promo-offer-card-left-wrap h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .promo-offer-card-left-wrap p {
        font-size: 10px;
    }

    .promo-offer-card-left-wrap h4 {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .promo-offer-card-left-wrap h6 {
        font-size: 10px;
    }
}

/* popup end */


/* FAQ Accordion start */

/* .our-faq.sec-spacing {
    padding: 0 0 120px 0;
} */

.faq-accordion .accordion-button {
    color: #000;
    font-weight: 500;
    padding: 24px 20px;
    font-size: 18px;
    line-height: 1.5;
    border-top: 1px solid rgba(0,0,0,.125);
}

.faq-accordion .accordion-item {
    margin-bottom: 20px;
}

.faq-accordion .accordion-item:last-child {
    margin-bottom: 0px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #000;
    font-weight: 600;
    background-color: #E1F4FF;
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

.faq-accordion .accordion-body {
    color: #4d4d4d;
}

@media (max-width: 1599px) {
    .faq-accordion .accordion-button {
        padding: 20px 20px;
    }
}

@media (max-width: 480px) {
    .faq-accordion .accordion-button {
        padding: 20px 15px;
    }

}