:root {
    /* Fonts */
    --font-primary: "Inter", sans-serif;
    --font-fraunces: "Fraunces", serif;

    /*Colors */
    --black: #212121;
    --white: #ffffff;
    --primary: #AB0000;
    --secondary: #787878;
    --sky-blue: #F8F8F8;

}



/* Default styles start */

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

html {
    scroll-behavior: smooth;

}

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

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

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

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

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

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

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

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



/* 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: 400;
    font-family: var(--font-primary);
    line-height: 1;
    letter-spacing: 1px;
    background-color: var(--primary);
    color: var(--white);
    border: 0px 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;

}

.prime-btn:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.2, 1);
    transform: scale(0.2, 1);
    background-color: #000000;
}

.prime-btn:hover::before {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

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

.prime-btn .pbtn-txt {
    position: relative;
    z-index: 1;
}

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

/* Button Css End */

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

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

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

.spinner-wrapper {
    width: 100%;
    height: 100%;
    background-color: #f8f6f6;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    position: relative;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
}

.spinner::before,
.spinner:after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.spinner:before {
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #3b0000 0%, #BC8C33 100%);
    animation: spin .5s infinite linear;
}

.spinner:after {
    width: 90%;
    height: 90%;
    background-color: #f3f0f0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Default styles end */


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

/* Header styles start */
header {
    width: 100%;
    left: 0;
    right: 0;
}

.header-top {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: var(--black);
    color: var(--white);
    padding: 14px 0;

}

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


.navbar {
    padding: 8px 0;
    z-index: 22222;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;

}


.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.50s ease;
    background-color: var(--white);
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06);

}

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

    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    width: 182px;
    height: 90px;
    padding: 0;
    margin: 0;
    z-index: 111;
    flex: 0 0 auto;
    animation: move 3s linear forwards infinite;
}



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



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







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

.nav-link {
    text-transform: uppercase;
    position: relative;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    width: max-content;
    color: #000;
    margin-right: 50px;
    -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: 1px;
    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;
}

/* Header styles end */


/* Hero styles Start */
.hero-wrapper {
    position: relative;
}

.hero-banner,
.booking-res,
.page-hero-banner,
.footer,
.booking-rooms {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 820px;
}

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

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

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

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

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

/* Hero section of all page start */
.page-hero-banner {
    min-height: 650px;
}

.page-hero-banner::before {
    background-color: #000000;
    opacity: .4;
}

.hero-service {
    background-image: url('../images/hero-bg-img/hero-service.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.jpeg');
}

/* Hero section of all page end */

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

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

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

/* hero-content of all page end */


/* breadcrumb style Start */
.breadcrumb-item {
    font-size: 16px;
}

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

/* Back to top button Start */
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 5%;
    bottom: 5%;
    z-index: 9999;
    background: var(--primary);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #e20000;
    color: #fff;
}

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

/* Back to top button End */

/* Hero Section Start */

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

}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    background: rgba(255, 255, 255, 10%) !important;
    color: rgba(255, 255, 255, 60%) !important;
    border: 1px solid #EEEEEE;
    border-radius: 100%;
    width: 65px;
    height: 65px;
    font-size: 40px;
    margin: 0 !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease-in-out 0.3s;
}

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


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

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



/* owl arrow End */

/* Hero Section End */
/* booking-form start */
.booking-form {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 80px;
    z-index: 111;
    width: 100%;
}

.booking-form-grid-wrap {
    background-color: white;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.booking-form-grid-item:not(:last-child) {
    border-right: 1px solid rgba(171, 0, 0, 20%);
    padding: 38px 30px;
}

.form-group {
    position: relative;
}

.form-group::after {
    content: '';
    position: absolute;
    width: 76%;
    right: 0;
    bottom: -10px;
    border-bottom: 1px solid rgba(0, 0, 0, 10%);
}

.form-control {
    font-family: var(--font-fraunces);
    background-color: white;
    border: none;
    border-radius: 0;
    color: #000;
    font-size: 18px;
    font-weight: 300;
    padding: 0 0 0 46px;
}

select.form-control option {
    color: #000 !important;
}


.input-icon {
    position: absolute;
    left: 0;
    top: 70%;
    transform: translateY(-50%);
    color: var(--primary);
    width: 30px;
    height: 30px;
}

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

.form-control:focus {
    outline: 0;
    box-shadow: none;
    border: none;
}

.booking-form .prime-btn {
    border-radius: 0;
    width: 100%;
    height: 100%;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0;
    background-image: none;
    background-color: var(--primary);
    color: white;
    transition: all ease-in-out 0.3s;
}

.booking-form .prime-btn:hover {
    color: white;
    background-color: #bd0000;
}

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

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

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

/* booking-form end */

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

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

.sec-title h6 {
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 10px;
    margin-bottom: 14px;
}

.sec-title h2 {
    line-height: 1.2;
}

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

.about-content .sec-title h2 {
    font-size: 40px;
}

.overflow-h {
    overflow: hidden;
}

.about-image {
    position: relative;
    z-index: 111;
}

.about-image img {
    width: 100%;
    height: 546px;
    object-fit: cover;
    position: relative;
    z-index: 111;
    transition: all ease-in-out 0.4s;
}

.about-image::after {
    content: '';
    position: absolute;
    background-image: url('../images/sec-bg-img/about-shape.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 350px;
    height: 350px;
    left: -30px;
    bottom: -30px;
    z-index: 11;
}

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

.about-content-image {
    width: 262px;
    height: 294px;
    overflow: hidden;

}

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

}

.about-content-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.about-content {
    padding: 0 34px 0 10px;
    width: calc(100% - 262px);
}


.about-content p {
    text-transform: capitalize;
    text-align: center;
    font-size: 15px;
    color: #787878;
    line-height: 2.2;
    margin-bottom: 50px;
    letter-spacing: 0.5px;

}

.read-more-text {
    position: relative;
    text-decoration: underline;
    display: block;
    transition: all ease-in-out 0.3s;
}


.read-more-text::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 100%;
    color: var(--primary);
    background: rgba(171, 0, 0, 30%);
    transition: all ease-in-out 0.3s;
}

.read-more-text:hover {
    color: #fd0017;
}

.read-more-text:hover::after {
    background: rgba(171, 0, 0, 40%);
}

/* About Section End */

/* Booking res Section Start */

/* Booking res Section End */

/* Exclusive Offers section start */
.exclusive-offer-wrap {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 2px;
    overflow: hidden;
}

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

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

.exclusive-offer-title {
    position: absolute;
    bottom: 50px;
    right: 0;
    padding: 14px 40px;
    color: var(--white);
    background-color: var(--primary);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 12% 100%, 0 52%);
    transition: all ease-in-out 0.4s;
}

.exclusive-offer-wrap:hover .exclusive-offer-title {
    background-color: var(--white);
    color: var(--primary);
}

.exclusive-offer-title h6 {
    letter-spacing: 1px;
    line-height: 1.2;

}

.exclusive-offer-read-more-wrap {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 10px 12px;
}

.exclusive-offer-read-more {
    color: white;
    font-size: 14px;
    font-family: var(--font-fraunces);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all ease-in-out 0.3s;
}

.exclusive-offer-read-more::before,
.exclusive-offer-read-more::after {
    content: '';
    position: absolute;
    background: transparent;
    z-index: 2;
    width: 60%;
    height: 60%;
    transition: all ease-in-out 0.3s;

}

.exclusive-offer-read-more::before {
    top: 0;
    left: 0;
    border-left: 1px solid var(--white);
    border-top: 1px solid var(--white);
}

.exclusive-offer-read-more::after {
    bottom: 0;
    right: 0;
    border-right: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
}

.exclusive-offer-read-more:hover::before,
.exclusive-offer-read-more:hover::after {
    width: 99%;
    height: 98%;
    border-color: var(--primary);
}

/* Exclusive Offers section End */

/* Service Amenities section Start */
.service-amenities-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
}

.service-amenities-wrap {
    background-color: var(--white);
    padding: 40px 60px;
    box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 10%);
    border-radius: 2px;
    margin-right: 30px;
    transition: all ease 0.3s;
}

.service-amenities-icon {
    width: 70px;
    height: 70px;
    margin-right: 42px;
    flex: 0 0 auto;
}

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

.service-amenities-content h5 {
    color: #203030;
    line-height: 1.2;
    margin-bottom: 10px;
}

.service-amenities-content p {
    font-size: 14px;
    color: #787878;
    line-height: 28px;
    max-width: 316px;
}

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

.service-amenities-wrap:hover .service-amenities-icon img {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}

/* Service Amenities section End */

/* gallery Section Start */
.photo-gallery-wrapper {
    padding: 0 15px;
    margin: 0 auto;
}

.photo-gallery-wrap {
    box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 7%);
    background: var(--white);
    display: block;
    height: 100%;
}

.photo-gallery-image {
    height: 360px;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

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

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

.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-image: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 .prime-btn {
    margin-top: 70px;
}

/* gallery Section End*/

/* Feedback Section start */

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

.feedback-slider-item {
    background-color: var(--white);
    border-radius: 16px;
    padding: 50px;
    /* height: 283px; */
    margin: 0 10px;
    border: 1px solid #EEEEEE;
}

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

}

.feedback-slider-icon {
    width: 70px;
    height: 70px;
    margin-right: 20px;
    flex: 0 0 auto;
}

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

.feedback-name {
    font-size: 20px;
    line-height: 1;
    font-weight: 400;
}

.feedback-content {
    font-size: 16px;
    color: #787878;
    line-height: 32px;
    letter-spacing: 1px;
    font-weight: 300;
}

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

.owl-carousel button.owl-dot {
    width: 26px;
    height: 8px;
    border-radius: 20px;
    background: rgba(188, 140, 51, 0.3);
    margin: 0 4px;
}

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

.owl-carousel button.owl-dot.active {
    width: 36px;
    height: 8px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* owl dots end */

/* Feedback Section end */

/* Footer start */
.footer {
    background-image: url("../images/sec-bg-img/footer.jpeg");
    min-height: auto;
}

.footer::before {
    background: #000000;
    opacity: .85;
}

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

.footer-grid-item {
    margin-bottom: 60px;
    z-index: 111;
    position: relative;
}

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

.ada-link {
    position: relative;
}

.ada-link::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 1px;
    bottom: -10px;
    right: 0;
    background: #ffffff94;
}

.ft-logo {
    width: 182px;
    height: 90px;
    margin-bottom: 32px;
}

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

.footer-grid-item h3 {
    font-size: 30px;
    padding: 40px 0 36px 0;
}

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

.footer-link {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 26px;
    transition: all ease-in-out 0.5s;
}

.footer-grid-item svg {
    color: var(--primary)
}

.footer-link:hover,
.footer-add a:hover {
    color: var(--primary);
}


.ft-add,
.footer-add a {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 26px;
    transition: all ease-in-out 0.5s;
    word-wrap: break-word;
}

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

}

/* Footer end */

/* Booking-Map section start */
.booking-res.sec-spacing {
    padding: 120px 0 100px 0;
}

.booking-res {
    background-image: url('../images/sec-bg-img/booking-res.jpeg');
    min-height: auto;
}

.booking-res::before {
    background: #000000;
    opacity: .8;
}

.general-policies-details-wrap {
    position: relative;
    z-index: 111;
}

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

.star-img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.general-policies-details-text {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.general-policies-details-text span {
    font-size: 16px;
}

.br-info-wrap {
    margin-top: 40px;
}

.br-info-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    flex: 0 0 auto;
}

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

.br-info-content-title,
.br-info-content-text {
    line-height: 1;
    letter-spacing: 0.5px;
}

.br-info-content-title {
    font-size: 16px;
    margin-bottom: 12px;
}

.br-info-content-text {
    font-size: 18px;
}

.map-view-wrap {
    width: 100%;
    height: 620px;
    position: relative;
    z-index: 111;
    margin-top: -46%;
    border: 8px solid var(--primary);
}

.map-view-wrap iframe {
    width: 100%;
    height: 100%;
}

/* Booking-Map section end */

.booking-rooms {
    padding: 100px 0;
    min-height: auto;
    background-image: url('../images/sec-bg-img/booking-rooms.jpeg');
}

.booking-rooms-wrapper-box {
    background-color: rgba(0, 0, 0, 85%);
    padding: 80px;
    position: relative;
    z-index: 111;
    width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brs-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 26px;
}

.booking-rooms-wrapper-box h2 {
    font-size: 34px;
    line-height: 56px;
    text-align: center;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
}

.info-wrap {
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    font-weight: 300;
}

.info-wrap a {
    color: var(--white);
    transition: all ease-in-out 0.3s;
}

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

.booking-rooms-wrapper-box .prime-btn {
    background-color: var(--white);
    color: var(--black);
    border-radius: 50px;
    height: 50px;
    background-image: none;
    border-color: white;
    transition: all ease-in-out 0.4s;
}

.booking-rooms-wrapper-box .prime-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}



/* Rooms section Start */
/* .our-room.sec-spacing {
    padding: 120px 0 80px 0;
} */

/* .our-room-slider .owl-carousel .owl-stage-outer {
    padding: 70px 10px;
} */

.our-room-content {
    width: 630px;
    padding: 52px;
    border-radius: 2px;
    z-index: 1111;
    position: relative;
    margin-left: 10px;
    box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 10%);

}

.our-room-content h3 {
    margin-bottom: 15px;
    line-height: 1.4;
}

.our-room-content p {
    font-size: 16px;
    line-height: 34px;
    letter-spacing: 0.5px;
    color: #818181;
    margin-bottom: 30px;
}

.icon-box {
    width: 18px;
    height: 18px;
}

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

.our-room-image {
    width: 100%;
    /* height: 680px; */
    height: auto;
    /* margin-left: 30px; */
    position: relative;
    z-index: 111;
    border: 10px solid white;
    /* box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 10%); */


}

.our-room-image img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    z-index: 111;
    position: relative;
    transition: all ease-in-out 0.4s;
}

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

/* .our-room-image::after {
    content: '';
    position: absolute;
    background: url('../images/sec-bg-img/about-shape.png') no-repeat center;
    background-size: contain;
    top: 50%;
    right: -11%;
    height: 513px;
    width: 500px;
    z-index: 11;
    transform: translateY(-50%);
} */

.rooms-icons-devider {
    width: 1px;
    height: 16px;
    margin: 0 12px;
    background: rgba(0, 0, 0, 21%);
}

.our-room-content .prime-btn {
    margin-top: 36px;
}


.our-room-slider .owl-theme .owl-nav {
    margin-top: 0;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: unset;
    bottom: 30px;
    transform: unset;
}

.our-room-slider .owl-carousel .owl-nav button.owl-prev {
    left: 11%;
}

.our-room-slider .owl-carousel .owl-nav button.owl-next {
    right: 78%;
}

.our-room-slider .owl-carousel .owl-nav button.owl-next,
.our-room-slider .owl-carousel .owl-nav button.owl-prev {
    background: transparent !important;
    color: rgba(0, 0, 0, 60%) !important;
    border: 1px solid #DDDDDD;
    border-radius: 100%;
    width: 60px;
    height: 60px;
    font-size: 34px;
}

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

/* Rooms section End */


/* Service page Start /-- */

.service-page .service-amenities-icon-wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 60px 30px;
    z-index: 111;
}

.service-page .service-amenities-icon-item {
    padding: 30px 8px;
    border-radius: 8px;
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}

.service-page .service-amenities-icon {
    width: 84px;
    height: 84px;
    border: 1px solid var(--primary);
    border-radius: 6px;
    padding: 18px;
    margin-bottom: 30px;
    margin-right: 0;
}

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

.service-page .service-amenities-icon-item h5 {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

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

.general-other-policies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.general-other-policies-wrap {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    width: 100%;
    height: 100%;
}

.general-other-policies-wrap p {
    font-size: 16px;
    margin-bottom: 20px;
}

.policies-content-wrap {
    margin-bottom: 15px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
}

.policies-content {
    font-size: 14px;
    color: #656565;
    font-weight: 400;
    line-height: 2;
    /* margin-bottom: 20px; */
}

.service-gp-image-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

/* Service page End /-- */


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

.gallery-page .photo-gallery-wrapper .nav-pills .nav-link {
    padding: 10px 16px;
    font-size: 16px;
    margin-right: 20px;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 0px;
    text-transform: capitalize;
}

.gallery-page .photo-gallery-wrapper .nav-link:after {
    display: none;
}

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

button:focus-visible {
    outline: none;
}

.gallery-page .photo-gallery-image {
    height: 360px;
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
    display: block;
}

/* //-- Photo-gallery page Style 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: 20px;
    line-height: 1;
    color: var(--black);
    margin-bottom: 10px;
    font-family: var(--font-fraunces);
    font-weight: 400;
}

.contact-play-icons {
    margin-right: 10px;
}

.contact-us-content-items a,
.contact-us-content-items p {
    color: #6b6b6b;
    font-size: 15px;
}


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

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


/* ADA Feature start*/

.ada-feature-wrap {
    background: var(--sky-blue);
    border-bottom: 1px solid var(--primary);
    border-top: 10px solid var(--primary);
    padding-bottom: 30px;
    padding-left: 30px;
    text-align: left;
    margin-bottom: 50px;
}

.ada-feature-wrap h3 {
    margin: 30px 0;
}

.ada-feature-item {
    font-size: 18px;
    line-height: 1.5;
    display: flex;
    align-items: center;

}

.ada-feature-item:not(:last-child) {
    margin-bottom: 28px;

}

.ada-feature-note {
    max-width: 1200px;
    line-height: 1.5;
    letter-spacing: 1px;
}

/* ADA Feature 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: 2.2;
}

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