:root {
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-jost: 'Jost', sans-serif;

    /*Colors */
    --black: #13182B;
    --white: #ffffff;
    --primary: #BE0000;
    --secondary: #787878;
    --sec-bg-color: #F5F5F5;

}

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

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

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

h4,
.h4 {
    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: #9C9C9C !important;
    opacity: 1;
}

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

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

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



/* 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-section-color {
    background-color: var(--sec-bg-color);
}

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

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

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

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

/* 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;
    max-width: 152px;
    width: 100%;
    height: 52px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: none;
    box-shadow: none;
}

.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: 170px;
    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: #e21c1c;
    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 {
    position: relative;
}

header {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 111;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.header-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 0px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    height: 46px;
}

.header-top a {
    color: var(--white);
    line-height: 1;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.header-top i {
    color: var(--white);
}

.header-mail {
    border-right: 1px solid var(--white);
    padding-right: 26px;
}

.add-bar {
    line-height: 1;
}

.navbar {
    padding: 10px 0;
    background-color: transparent;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;

}

/* 
.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;

} */

.fixed-header {
    top: 0;
    background-color: var(--white);
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);
    animation: slideDown 0.50s ease;
    z-index: 999;
}

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

    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    width: 180px;
    height: 90px;
    padding: 0;
    margin: 0;
    /* z-index: 111; */
    margin-right: 60px;
}

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

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

.nav-link {
    position: relative;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: max-content;
    color: var(--black);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin-right: 62px;
}

.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-nav {
    margin-left: auto;
    /* margin-right: auto; */
}

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

.navbar .prime-btn {
    margin-left: 60px;
}

/* Header styles end */

/* Hero-section styles Start */
.hero-section-wrap{
    display: flex;
    align-items: center;
    width: 100%;
}
.hero-section-item-wrap{
    width: 50%;
    flex: 0 0 auto;
}
.hero-content {
    max-width: 550px;
}

.hero-content h1 {
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--black);
}

.hero-content p {
    line-height: 1.5;
    margin-bottom: 30px;
}

.hero-content .prime-btn {
    max-width: 180px;
    height: 52px;
    text-transform: uppercase;
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

.hero-image-slider {
    position: relative;
}

.hero-banner-image {
    width: 100%;
    height: 900px;
}

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

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

/* Booking form styles start */
.booking-form-wrapper {
    position: absolute;
    left: 0;
    bottom: -18%;
    width: 1100px;
    z-index: 11;
}

.booking-form {
    width: 100%;
    background-color: var(--primary);
    border-radius: 2px;
    padding: 50px;
}


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

.form-control {
    height: 48px;
    background-color: var(--white);
    border-radius: 2px;
    border: 1px solid transparent;
    color: #9C9C9C;
    -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: #9C9C9C;
}

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

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

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

.booking-form .prime-btn {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    max-width: 160px;
    height: 50px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    transition: 0.5s all;
    margin-top: 20px;
}


/* Booking form styles end */

/* About Section Start */
.about-us {
    position: relative;
    background-image: url("../images/sec-bg-img/about.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;

}

.about-us.sec-spacing {
    padding: 270px 0 240px 0;
}

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

.about-image-one {
    width: 520px;
    height: 470px;
    float: right;
    border-radius: 10px;
    overflow: hidden;

}

.about-image-one img,
.about-image-two img {
    width: inherit;
    height: inherit;
    object-fit: cover;


}

.about-image-two {
    position: absolute;
    left: 0;
    bottom: -30%;
    width: 430px;
    height: 280px;
    border: 15px solid var(--white);
    border-radius: 10px;
    overflow: hidden;
}

.clearfix {
    overflow: auto;
}

.about-us-content-wrap {
    padding: 40px 0 0 40px;
}

.about-us-content-wrap h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-us-content-wrap h5 {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 10px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.about-us-content-wrap p {
    font-size: 16px;
    color: #818181;
    line-height: 1.6;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.about-us-content-wrap .prime-btn {
    margin-top: 40px;
}

/* About Section Start */

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

.sec-title h5 {
    margin-bottom: 22px;
    line-height: 1;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.sec-title h2 {
    letter-spacing: 1px;
    line-height: 1.2;
}

.exclusive-offers-wrapper {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 30px;
    width: 100%;

}

.exclusive-offers-wrap-item {
    position: relative;
    width: 33.3%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.exclusive-offers-wrap-item::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.exclusive-offers-image-wrap {
    width: 100%;
    height: 600px;
}

.exclusive-offers-image-wrap img {
    width: inherit;
    height: inherit;
    object-fit: cover;
}

.exclusive-offers-content {
    z-index: 111;
    position: absolute;
    right: 0;
    bottom: 40px;
    padding: 18px 25px;
    width: 90%;
    background-color: rgba(166, 3, 27, 0.8);
}

.exclusive-offers-content h3 {
    font-size: 28px;
    letter-spacing: 1px;
    line-height: 1;
}

.see-more-wrap {
    display: inline-block;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

.see-more-wrap:hover {
    color: #b3a0a0;
}

/* exclusive-offers Section End */

/* Service/amenities  Section Start */
.service-amenities-wrapper {
    display: flex;
    width: 100%;
    /* gap: 40px; */
}

.service-amenities-wrap-item {
    width: 50%;
    flex: 0 0 auto;

}

.service-amenities-wrap-item img {
    width: 100%;
    height: 652px;
    object-fit: cover;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.amenities-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    border: 1px solid var(--primary);
    padding: 12px;
    flex: 0 0 auto;
    margin-right: 30px;
}

.amenities-name {
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 1px;
}

.amenities-space {
    padding-top: 40px;
    margin-left: 80px;
    max-width: 720px;
}

.service-amenities-wrap-item .col-sm-6 {
    margin-bottom: 40px;
}

.amenities-contact-wrap {
    margin-top: 20px;
}

.amenities-contact-wrap .prime-btn {
    margin-right: 40px;
}

.ph-wrap {
    font-size: 20px;
}

.ph-wrap svg {
    font-size: 32px;
}

/* Service/amenities  Section End */


/* Photo Gallery Section Start */
.photo-gallery-wrap {
    width: 100%;
    height: 360px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: block;
}

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

.photo-gallery .prime-btn {
    margin-top: 70px;
}


.photo-gallery-overlay {
    position: absolute;
    background-color: rgb(26 41 132 / 50%);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}

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


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

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

/* Photo Gallery Section End */
.our-room-slider-item {
    border-radius: 10px;
    height: 636px;
    box-shadow: 0px 2px 10px 4px rgba(0, 0, 0, 0.07);
}

.our-room-slider-img {
    width: 100%;
    height: 410px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    overflow: hidden;
}

.our-room-slider-img img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all 0.3s;
}


.our-room-slider-img img:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}


.our-room-slider-content {
    position: relative;
    padding: 40px;
    text-align: center;
    background-color: var(--white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;

}

.our-room-slider-content h4 {
    line-height: 1.2;
    margin-bottom: 20px;
}

.our-room-slider-content p {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.icons-wrap svg {
    width: 20px;
    height: 20px;
    margin-right: 30px;
    flex: 0 0 auto;
    color: var(--primary);
}

.our-room-slider .owl-stage-outer {
    padding-bottom: 70px;
}

.our-room-slider-content .prime-btn {
    position: absolute;
    display: block;
    top: 50%;
    right: -5%;
    transform: translateY(-50%) rotate(270deg);
    width: 100px;
    height: 40px;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
}

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

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    width: 52px;
    height: 52px;
    background-color: rgba(190, 0, 0, 0.3);
    color: var(--primary);
    border-radius: 50px;
    font-size: 28px;
    margin: 0 10px;
    transition: all ease 0.3s;
}

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

/* OUR Rooms end */

/* Feedback Start */
.feedback-slider {
    overflow: hidden;
}

.feedback-slider-item {
    position: relative;
    padding: 40px;
    border-radius: 10px;
    background: #FFF;
    /* transition: all 0.2s ease; */
    /* box-shadow: 0px 2px 12px 0px rgba(190, 0, 0, 0.2); */
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
    height: 340px;
}
.feedback-slider .owl-item.active.center .feedback-slider-item {
    height: 410px;
}
.avtar-wrap {
    width: 76px;
    height: 76px;
    margin-bottom: 28px;
}

.feedback-slider .owl-item.active.center .avtar-wrap {
    width: 100px;
    height: 100px;
    margin-bottom: 32px;
}

.feedback-name {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 28px;
}

.feedback-slider .owl-item.active.center .feedback-name {
    font-size: 20px;
    margin-bottom: 32px;
}

.feedback-content {
    font-size: 14px;
    font-style: italic;
    line-height: 1.5;
    color: #525252;
}

.feedback-slider .owl-item.active.center .feedback-content {
    font-size: 16px;
}


.feedback-slider .owl-item.active.center {
    transform: scale(1.1);
    z-index: 111;
    position: relative;
    transition: all 0.8s ease;
    transition-delay: 0.5s;

}

.feedback-slider .owl-stage-outer {
    padding-top: 50px;
    padding-bottom: 80px;
    overflow: visible;
}

.feedback-slider .owl-carousel .owl-stage {
    display: flex;
    align-items: center;
}

/* Feedback 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: .8;
}

footer.sec-spacing {
    padding: 80px 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: 100px;
    margin-bottom: 40px;
}

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

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

.footer-grid-item h3 {
    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 */


/* ---- 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: .2;
}

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

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

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

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

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

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

.page-hero-content {
    padding-top: 8%;
}

.page-hero-content h1 {
    margin-bottom: 16px;
    /* text-shadow: 1px 1px 2px #000000; */
    letter-spacing: 4px;
}

.page-hero-content {
    z-index: 11;
}

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


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


.service-amenities-item {
    padding: 40px 20px;
    background-color: var(--white);
    border-radius: 10px;
    /* box-shadow: 0px 2px 12px 0px rgba(190, 0, 0, 0.2); */
    box-shadow:  rgba(0, 0, 0, 0.16) 0px 1px 4px;
   
}

.service-amenities-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 30px;
    transition: all 0.9s ease;
}

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

.service-amenities-item h4 {
    color: #6b6b6b;
}

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




/* //-- Photo-gallery Style start --// */
.photo-gallery-wrapper .photo-gallery-wrap {
    border-radius: 10px;
}

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

.photo-gallery-wrapper .nav-pills .nav-link {
    padding: 10px 16px;
    font-size: 16px;
    margin-right: 20px;
}

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


/* ADA Feature start*/

.ada-feature-wrap {
    background: #ffb7b733;
    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 {
    max-width: 1200px;
    line-height: 1.5;
    letter-spacing: 1px;
}

/* ADA Feature end*/

/* -- // Contact-us Page Styles Start // -- */
.contact-us-content-wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px 24px;
    padding-left: 20px;
}

.contact-us-content-items {
    /* box-shadow: 0px 2px 12px 0px rgba(190, 0, 0, 0.2); */
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    padding: 30px;
    border-radius: 6px;
}

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

.contact-play-icons {
    margin-right: 10px;
}
.contact-us-content-items a,.contact-us-content-items p{
    color: #6b6b6b;
}
.contact-us-iframe{
    width: 100%;
    height: 574px;
}

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

/* -- // Local Attraction Page Styles End // -- */
.hotel-surrounding-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
}

.hotel-surrounding-wrap {
    display: flex;
    flex-direction: column;
    /* border: 1px solid #cac8c8; */
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0px 2px 12px 0px rgba(190, 0, 0, 0.2); */
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.hotel-surrounding-image {
    position: relative;
    width: 100%;
    height: 360px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.hotel-surrounding-image img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

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

.hotel-surrounding-title {
    margin-bottom: 20px;
    padding: 0 30px;

}


.hotel-surrounding-content {
    padding: 0 30px 30px;
}

.item-list {
    margin-bottom: 10px;
}

.item-list p {
    font-size: 16px;
    line-height: 1.5;
}

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

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