@font-face {
    font-family: 'Gumani';
    src: url('../fonts/Gumani-Medium.woff2') format('woff2'),
        url('../fonts/Gumani-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gumani Med';
    src: url('../fonts/Gumani-Medium.woff2') format('woff2'),
        url('../fonts/Gumani-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


:root {
    /* Fonts */
    --font-primary: "Roboto", sans-serif;
    --font-gumani: "Gumani", sans-serif;

    /*Colors */
    --black: #222222;
    --white: #ffffff;
    --primary: #720026;
    --secondary: #787878;
    --lightyellow: #FFE4AA;
    --sky-blue: #FBF7F5;

}



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

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

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

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


h5,
.h5 {
    font-size: 20px;
}

h6,
.h6 {
    font-size: 18px;
}

.p {
    font-size: 16px;
}

.p-small {
    font-size: 14px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: 0;
}

/* Pseudo default styles start */

::placeholder {
    color: #222222 !important;
    opacity: 1;
}

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

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

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

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



/* 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);
}

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

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

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


/* 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);
}

.ofh {
    overflow: hidden;
}

/* 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 .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: 6rem;
    height: 6rem;
    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%, #720026 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;
    justify-content: flex-end;
    padding: 17px 0;
    background-color: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    line-height: 1px;
}

.header-top a {
    color: var(--white);
    line-height: 1;
    transition: all ease-in-out 0.5s;
}

.header-top a:hover {
    color: #fbc0d4;
}

.header-top svg {
    line-height: 1;
}


.navbar {
    padding: 6px 0;
    /* background-color: var(--sec-bg-color); */
    /* box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.06); */
    z-index: 222;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;

}


.fixed-header {
    position: sticky;
    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: 129px;
    height: 98px;
    padding: 0;
    margin: 0;
    /* z-index: 111; */
}

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

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

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

.nav-link:after {
    position: absolute;
    content: " ";
    left: 0;
    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: #720026;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


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

.navbar-nav {
    margin-left: auto;
    /* margin-right: auto; */
}

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

.nav-item:last-child .nav-link {
    margin-right: 60px;
}

/* Header styles end */


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

.hero-banner,
.service,
.page-hero-banner,
.booking-section-wrapper,
.footer {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 816px;
}

.hero-banner::before,
.page-hero-banner::before,
.booking-section-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(to right, black 40%, rgba(0, 0, 0, 0));
    opacity: 0.65;
}

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

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

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

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

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

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

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

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

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

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

/* Hero section of all page end */

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

.page-hero-content h1 {
    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 */
.page-hero-banner .breadcrumb-wrap {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -28px;
    text-align: center;
}

.page-hero-banner .breadcrumb {
    position: relative;
    display: inline-block;
    padding: 16px 30px 14px;
    background-color: var(--lightyellow);
    margin-bottom: 0;
}

.page-hero-banner .breadcrumb li {
    font-size: 16px;
    position: relative;
    line-height: 1.2em;
    font-weight: 500;
    display: inline-block;
    color: var(--black);
    border-right: 1px solid #d7c397;
    margin-right: 15px;
    padding-right: 15px;
}

.page-hero-banner .breadcrumb li:last-child {
    border: none;
    margin-right: 0px;
    padding-right: 0px;
    padding-left: 0;
}

.page-hero-banner .breadcrumb li a {
    color: var(--black);
    font-size: 15px;
    font-weight: 400;
}

.page-hero-banner .breadcrumb-item+.breadcrumb-item::before {
    display: none;
}

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









/* Hero styles end */
.hero-text-wrapper {
    position: absolute;
    top: 50%;
    left: 16%;
    transform: translateY(-50%);
    z-index: 111;
    max-width: 560px;
}

.hero-text {
    width: 100%;

}

.hero-text h5 {
    font-style: italic;
    letter-spacing: 2px;
    margin-bottom: 16px;
    line-height: 1;
}

.hero-text h1 {
    text-transform: capitalize;
    line-height: 90px;
    margin-bottom: 18px;
    letter-spacing: 3px;

}

.hero-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, .8);
    line-height: 2;
    letter-spacing: 1px;
}

.hero-text .prime-btn {
    margin-top: 30px;
}


/* owl Arrow start */

.owl-theme .owl-nav {
    margin-top: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    background-color: rgba(0, 0, 0, 0.4);
    color: #afafaf;
    border: none;
    padding: 5px 15px !important;
    font-size: 32px;
    margin: 0 6px;
    border-radius: 0;
    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);

}

/* owl Arrow end */


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

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

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

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


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

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

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

.sub-title {
    background-color: #FFE4AA;
    font-size: 15px;
    max-width: max-content;
    text-align: center;
    text-transform: capitalize;
    line-height: 1;
    letter-spacing: 2px;
    padding: 10px 20px;
    margin-bottom: 20px;
}

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

.about-main-wrapper {
    position: relative;
}

.about-image {
    width: 570px;
    height: 638px;
    position: relative;
    margin-left: 20px;
    /* overflow: hidden; */
}

.about-image img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    z-index: 111;
    position: relative;
    border-radius: 285px 285px 0 0;
}

.about-image::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../images/about-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 285px 285px 0 0;
    top: -20px;
    left: -20px;
    z-index: 11;
}

.about-content p {
    color: #787878;
    line-height: 36px;
    letter-spacing: 0.5px;
    font-size: 16px;
    margin-bottom: 40px;
    padding-right: 50px;
    text-transform: capitalize;
}

.about-amenities {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.about-amenities-item {
    position: relative;
}

.check-box {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-right: 15px;
    border-radius: 2px;
    transition: all ease-in-out 0.5s;
}


.about-amenities-item:hover .check-box {
    transform: scale(-1) rotate(180deg);
}

.icon-wrap {
    margin-bottom: 15px;
}

.about-amenities-item span {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}



/* Booking form start */

.form-section {
    padding: 40px 30px;
    width: 94%;
    margin-top: -6%;
    margin-left: 6%;
    position: absolute;
    background-color: var(--white);
    z-index: 111;
    border: 1px solid rgb(0, 0, 0, 0.08);
}

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

.web-res-form-item {
    background-color: #f5f5f5;
    padding: 18px 16px;
}

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

.form-control {
    font-size: 14px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 0px;
    background-color: white;
    font-weight: 300;
    color: var(--black);
    padding: 9px 8px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

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

.form-section .prime-btn {
    max-width: 100%;
    width: 100%;
    height: 100%;
}

.input-group {
    position: relative;
}

.input-icon {
    font-size: 12px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}

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

.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

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

/* Booking form end */

.ui-widget {
    font-size: 1em !important;
}

.ui-datepicker table {
    font-size: .8em !important;
}

.ui-datepicker {
    width: 15em !important;
}

/* About section End */


/* Exclusive Offers section Start */
.exclusive-offer-image-wrap {
    position: relative;
}

.exclusive-offer-image {
    width: 96%;
    height: 300px;
    overflow: hidden;
}

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

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

.exclusive-offer-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.exclusive-offer-content-wrap {
    padding: 40px 30px;
    height: 100%;
}

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

.exclusive-offer-content-icon {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    transition: all ease-in-out 0.4s;
}

.exclusive-offer-content-icon img {
    transition: all ease-in-out 0.4s;
}

.exclusive-offer-content-wrap p {
    font-size: 16px;
    color: #787878;
    line-height: 32px;
    letter-spacing: 0.5px;
}

.read-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    letter-spacing: 2px;
    padding: 12px 15px;
    width: 148px;
    background-color: var(--lightyellow);
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all ease 0.8s;
}

.read-more:hover {
    color: #9d0034;
}

.read-more svg {
    transition: all ease 0.8s;
}

.read-more:hover svg {
    transform: translateX(50%);
    transition: all ease 0.8s;
}

.exclusive-offer-title h4 {
    font-size: 24px;
}

/* Exclusive Offers section End */


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

.service-amenities-wrap {
    height: 180px;
    position: relative;
    padding: 38px 15px;
    border-radius: 2px;
    z-index: 111;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all ease 0.3s;
}

.service-amenities-wrap::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 10px;
    bottom: -10px;
    z-index: 11;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all ease 0.3s;

}

.service-amenities-wrap:hover,
.service-amenities-wrap:hover::after {
    border: 1px solid #FFE4AA;
}

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


.service-amenities-wrap-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

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

.service-amenities-wrap h6 {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
}

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

/* Service Amenities section End */

/* Gallery section Start */
.photo-gallery-wrap {
    width: 100%;
    height: 320px;
    position: relative;
    display: block;
    overflow: hidden;
}

.photo-gallery-wrap.gallery-h-420 {
    height: 420px;
}

.photo-gallery-wrap.gallery-h-220 {
    height: 220px;
}

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

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

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

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

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

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

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

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

/* Gallery section end */


.booking-section-wrapper {
    background-image: url('../images/sec-bg-img/gallery20.jpg');
    min-height: auto;
}

.booking-section-wrapper::before {
    background: #000000;
    opacity: 0.8;
}

.booking-wrapper {
    z-index: 111;
    position: relative;
    color: white;
    max-width: 962px;
    margin: 0 auto;
}

.booking-hotel-icon {
    margin-bottom: 30px;
}

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

.calender-icon {
    margin-right: 12px;
}

.calender-content p {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.divider {
    height: 37px;
    width: 1px;
    background: rgba(255, 255, 255, 0.4);
    margin: 0 20px;
}

.book-right a {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.booking-wrapper .prime-btn {
    margin-top: 40px;
    background-color: var(--white);
    border-radius: 50px;
    color: black;
    transition: all ease-in-out 0.3s;
}

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

/* Booking-wrap section End */

/* Feedback Testimonial section start*/
/* owl dots start */
.owl-theme .owl-nav.disabled+.owl-dots {
    position: absolute;
    bottom: -50px;
    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 .sec-title {
    margin-bottom: 5px;
}

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

.star-icon {
    display: inline-flex !important;
    width: 14px !important;
    height: 14px;
    margin-right: 6px;
}

.feedback-slider-top-wrap {
    position: relative;
    padding: 60px 50px;
    height: 404px;
}

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

}

.feedback-content-wrap {
    position: relative;
    z-index: 111;
}

.feedback-slider-bottom-wrap {
    margin-left: 20px;
    margin-top: 10px;
}

.feedback-slider-icon {
    width: 80px;
    height: 80px;
    margin-right: 16px;
}

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

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

.feedback-content {
    text-transform: capitalize;
    font-size: 16px;
    color: #525252;
    line-height: 36px;
    letter-spacing: 0.5px;
    font-weight: 300;
    font-style: italic;
    text-align: justify;
}

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

.feedback-slider .owl-theme .owl-nav.disabled+.owl-dots {
    bottom: -70px;
}

/* Feedback Testimonial section end */

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


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

.footer-grid-item {
    margin-bottom: 72px;
}

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

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

.footer-grid-item .prime-btn svg {
    position: relative;
    z-index: 11;
    color: var(--white) !important;
}

.footer-grid-item h3 {
    font-size: 34px;
    padding: 16px 0 30px 0;
    letter-spacing: 1px;
}

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

.footer-link {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 26px;
    letter-spacing: 1px;
    transition: all ease-in-out 0.5s;
}
.footer-grid-item svg{
    color: #a90139;
}
.footer-link:hover,
.footer-add a:hover {
    color: #c90043;
}


.ft-add,
.footer-add a {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 26px;
    letter-spacing: 1px;
    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: 14px;
    padding: 24px 0;

}

/* Footer end */

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

.our-room .sec-title {
    margin-bottom: 0px;
}

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

.our-room-content {
    background-color: var(--white);
    padding: 52px;
    border-radius: 2px;
    box-shadow: 0 6px 40px 0 rgba(0, 0, 0, 0.08);

}

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

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

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

.our-room-image {
    width: 600px;
    height: 100%;
    margin-left: 30px;
    position: relative;

}

.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/rooms-bg.png') no-repeat center;
    background-size: cover;
    top: 50%;
    right: -10%;
    height: 590px;
    width: 300px;
    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: 30px;
}

.our-room-slider .owl-theme .owl-nav {
    margin-top: 0;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: 50%;
    bottom: 50%;
    transform: translateY(-50%);
}

.our-room-slider .owl-carousel .owl-nav button.owl-next,
.our-room-slider .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    width: 65px;
    height: 65px;
    border-radius: 100%;
    background-color: white;
    border: 1px solid #EEEEEE;
    color: rgba(0, 0, 0, 0.6);
    font-size: 40px;
    margin: 0;
    transition: all ease-in-out 0.5s;
}

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

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

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

/* Rooms section End */


/* Service page Start /-- */

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

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

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

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

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

.service-amenities-icon-item:hover .service-amenities-icon 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 page 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;
    font-family: var(--font-gumani);
}

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

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

/* 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: 620px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.attraction-image-wrapper img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all ease-in-out 0.4s;
}
.attraction-image-wrapper:hover img, 
.attraction-main-wrapper:hover img {
    transform: scale(1.08);
}

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

}

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

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


.attraction-content-wrapper h4 {
    /* font-size: 22px; */
    margin-bottom: 20px;

}

.att-content-text {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

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

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

/* attraction page end */