:root {

    /* Fonts */
    --font-primary: "Nunito", sans-serif;
    --font-marcellus: "Marcellus", serif;
    --herr-von: "Herr Von Muellerhoff", cursive;

    /*Colors */
    --black: #13182B;
    --white: #ffffff;
    --primary: #AB0000;
    --secondary: #5A5A5A;
    --sky-blue: #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: 66px;
}

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

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

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

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

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

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

.font-herr-von {
    font-family: var(--herr-von)
}



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

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

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

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

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

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

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

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

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

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

/* COLORS */

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

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

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

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

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

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

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

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

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

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

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

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

.prime-btn::after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .363);
    width: 170px;
    height: 60px;
    transform: translate3d(-90%, 15px, 0) rotate3d(0, 0, 1, 45deg);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.prime-btn:hover::after {
    background-color: rgba(255, 255, 255, .363);
    left: 100%;
    transform: translate3d(-10%, -30px, 0) rotate3d(0, 0, 1, 70deg);
    z-index: 0;
}

.prime-btn:hover,
.prime-btn:focus,
.prime-btn:active,
.prime-btn:focus-visible {
    box-shadow: none;
    outline: none;
    color: var(--white);
}



/* Button Css End */

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

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

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

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

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

/* Back to top button end*/


/* Default styles end */


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

.main-wrapper {
    width: 100%;
}

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

}

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

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

    to {
        transform: translateY(0);
    }
}

.navbar-main-wrapper {
    width: 100%;
    background-color: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 40px;

}

.fixed-header .navbar-main-wrapper {
    border-radius: 0;
}

.navbar-item-wrap {
    width: 33.3%;
}

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

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

.info-wrap {
    margin-left: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.info-wrap.contact {
    margin-left: 0;
    margin-right: 50px;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50px;
    background-color: var(--primary);
}

.info-icon svg {
    font-size: 20px;
    color: var(--white);
}

.info-content {
    margin-left: 12px;
}

.info-content p {
    font-size: 16px;
    line-height: 1;
    margin-bottom: 4px;
}

.info-content a {
    color: rgb(19, 24, 43);
    font-size: 15px;
    line-height: 1;
    transition: all ease-in-out 0.3s;
}

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

.desktop-navbar {
    display: block;
}

.mobile-navbar {
    display: none;
}

/* Header styles end */


/* Sidebar style start */
.slide-menu {
    width: 40px;
    height: 22px;
    cursor: pointer;
}

.slide-menu span {
    position: relative;
    width: 100%;
    height: 2px;
    background-color: rgb(0, 0, 0, 70%);
    display: block;
    background-image: none !important;
    margin-bottom: 8px;

}

.slide-menu span:last-child {
    margin-bottom: 0px;
}

.sidenav {
    height: 100vh;
    width: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8392156862745098);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 70px;
}

.sidenav .closebtn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 36px;
    color: white;
    font-size: 40px;
}


.navbar-nav {
    padding-top: 60px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.nav-link:after {
    position: absolute;
    content: " ";
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    width: 0%;
    height: 2px;
    background-color: var(--primary);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link:focus,
.nav-item.active .nav-link {
    color: var(--white);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


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

.navbar {
    padding: 0;
}

.sidenav .prime-btn {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    font-size: 15px;
}


/* Sidebar style end*/
/* Hero styles Start */
.hero-wrapper {
    position: relative;
    background: #790303;
    min-height: 900px;
}

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

.hero-banner::before,
.page-hero-banner::before,
.booking::before,
.footer-wrap::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.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: 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: 20px;
}

.breadcrumb-item a {
    color: var(--white);
    transition: 0.3s;
    text-shadow: 1px 1px 2px #000000;
}

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

.breadcrumb-item.active,
.breadcrumb-item+.breadcrumb-item::before {
    color: #dfdede;
}


/* breadcrumb style end */




/* Hero styles end */
.hero-text-wrapper {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 111;
    width: 100%;
}

.hero-text {
    width: 100%;
    text-align: center;

}

.hero-text h4 {
    font-style: italic;
    letter-spacing: 4px;
    margin-bottom: 15px;
    line-height: 1;
    text-shadow: 1px 1px 7px rgb(0 0 0 / 52%);
}

.hero-text h1 {
    text-transform: capitalize;
    line-height: 90px;
    margin-bottom: 28px;
    letter-spacing: 3px;
    text-shadow: 1px 1px 7px rgb(0 0 0 / 40%);

}

.hero-text .prime-btn {
    width: 152px;
    height: 50px;
    background: var(--white);
    letter-spacing: 0.5px;
    border-radius: 50px;
    color: #13182B;
}

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

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

.hero-text-logo {
    /* width: 160px; */
    width: 200px;
    /* height: 100px; */
    height: 120px;
    margin: 0 auto 24px auto;

}

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

/* owl dots start */
.owl-theme .owl-nav.disabled+.owl-dots {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg);
}

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

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

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

.booking-form-grid-wrap {
    background-color: white;
}

.form-control {
    height: 60px;
    font-family: var(--font-marcellus);
    background-color: white;
    border-radius: 0px;
    border: none;
    border-right: 1px solid rgba(171, 0, 0, 0.2);
    color: #010101;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 16px;
    padding: 12px 20px;
    font-weight: 500;
}

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

/* select.form-control option:hover{
    color: var(--primary) !important;
} */
.form-group {
    position: relative;
}

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

.form-control:focus {
    outline: 0;
    box-shadow: none;
    border: none;
    border-right: 1px solid rgba(171, 0, 0, 0.2);
}

.booking-form .prime-btn {
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.ui-widget-content {
    z-index: 11 !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 {
    background-image: url('../images/sec-bg-img/about-bg.jpg');
    min-height: auto;
}

.about-image-wrap {
    position: relative;
    float: right;
}

.about-image-wrap img {
    width: 572px;
    height: 590px;
    object-fit: cover;
}

.about-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.title-wrap {
    position: relative;
}

.title-bg {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 130px;
    color: rgba(231, 231, 231, 0.3);
}

.about-content .title-bg {
    color: rgba(231, 231, 231, 0.6);
}

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

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

.sec-title h6 {
    margin-bottom: 10px;
    line-height: 1;
    position: relative;
    z-index: 11;
}

.sec-title h2 {
    font-size: 42px;
    line-height: 1.2;
    z-index: 11;
    position: relative;
    text-transform: capitalize;
}

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

}

.about-content p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    max-width: 560px;
}

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

/* About section end */

/* Exclusive offer section Start */
.exclusive-offer.sec-spacing {
    padding: 160px 0 120px 0;
}

.exclusive-offer-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.exclusive-offer-grid-item-image,
.exclusive-offer-grid-item-content {
    height: 300px;
    overflow: hidden;
}

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

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

.exclusive-offer-grid-item-content {
    padding: 50px 22px;
    background-color: rgba(248, 248, 248, 0.6);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.exclusive-offer-grid-item-content h3 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.exclusive-offer-grid-item-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 26px;
    color: #787878;
    letter-spacing: 1px;
}

.read-more {
    line-height: 1;
    font-size: 15px;
}

/* .read-more:hover svg{
    transform: scaleX(1.1);
} */
/* Exclusive offer section End */


/* Service Amenities section Start */
.service .sec-title {
    margin-bottom: 0px;
    margin-top: 60px;
}

.service .title-wrap {
    margin-bottom: 22px;
}

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

.service .title-bg {
    left: 36%;
}

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

.amenities-icons-grid-item {
    height: 194px;
    background-color: var(--white);
    border-radius: 2px;
    padding: 40px 10px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 30px;
}

.amenities-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 30px;
}

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

.amenities-icons-grid-item h6 {
    color: #010101;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

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

/* Service Amenities section End */

/* our rooms section Start */
.our-rooms-wrapper-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.our-rooms-wrapper-grid-item {
    position: relative;
    height: 520px;
    /* overflow: hidden; */
}

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

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


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

.our-rooms-wrapper-grid-item-content-wrap h4 {
    font-size: 22px;
    margin: 22px 0 10px 0;
    line-height: 1.5;
    letter-spacing: 1px;
}


.our-rooms-wrapper-grid-item .prime-btn {
    width: 140px;
    height: 48px;
    font-size: 20px;
    position: absolute;
    z-index: 111;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 0;
    border-radius: 0;
}

.divider-wrap {
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 92px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    z-index: 111;
}

/* our rooms section End */

/* Booking-wrap section Start */
.booking.sec-spacing {
    padding: 100px 0;
}

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

.booking::before {
    background: #1B0404;
    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 */

/* photo gallery start*/
.gallery.sec-spacing {
    padding: 150px 0 120px 0;
}

.gallery-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

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


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

/* photo gallery end */

/* Feedback-Testimonials section start*/
.feedback {
    position: relative;
}

.feedback.sec-spacing {
    padding: 150px 0 260px 0;
}

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

.feedback-testimonials-item-box {
    padding: 50px 70px;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    transition: transform 0.5s linear;
    height: 355px;
    border-radius: 4px;
}

.feedback-icon {
    margin-bottom: 40px;
}

.feedback-content {
    font-size: 18px;
    color: #787878;
    margin-bottom: 30px;
    line-height: 1.8;
    letter-spacing: 1px;
    text-align: center;
}

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

.feedback-testimonials {
    padding-left: 15%;
}

.feedback-name {
    font-size: 20px;
}

.slick-cloned {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.feedback .owl-theme .owl-nav.disabled+.owl-dots {
    position: absolute;
    top: 108%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);

}

.feedback .owl-carousel button.owl-dot {
    width: 30px;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
}

.feedback .owl-carousel button.owl-dot.active {
    width: 40px;
    height: 10px;
    background: var(--primary);
}

/* Feedback-Testimonials section end */


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

.footer-wrap::before {
    background: #000000;
    opacity: .75;
}

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

.footer-bottom-wrap {
    padding: 15px 0;
}

.footer-bottom-wrap p {
    font-size: 15px;
    line-height: 1.2;
}

.footer-top-wrap {
    position: relative;
    z-index: 111;
}

.ft-logo {
    width: 140px;
    height: 100px;
    margin-bottom: 40px;
}

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

.ft-title {
    line-height: 26px;
    position: relative;
    max-width: max-content;
    margin-bottom: 40px;
}

.ft-title::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 2px;
    background: var(--primary);
    bottom: -12px;
    left: 0;
}

.ft-contact-us {
    background-color: #000;
    padding: 60px 40px;
    margin-top: -48%;
}

.ft-contact-us p,
.ft-contact-us a {
    letter-spacing: 0.5px;
    font-size: 16px;
    margin-bottom: 24px;
}

.ft-contact-us p {
    line-height: 34px;
}

.ft-contact-us a {
    color: var(--white);
    line-height: 26px;
}

.footer-link {
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    letter-spacing: 1px;
    display: block;
    color: white;
    font-weight: 300;
    padding-left: 18px;
}

.footer-link::before {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    border-radius: 50px;
}

.ft-about p {
    letter-spacing: 1px;
    line-height: 30px;
    font-size: 16px;
    margin-bottom: 30px;
}

.ft-about .prime-btn {
    width: 180px;
    padding: 8px;
}

/* Footer section end */


/*-- Service page Start --*/

.footer-page-space {
    margin-top: 120px;
}

.service-page .amenities-icons-grid-item {
    border-radius: 8px;
    box-shadow: none;
    border: 1px solid var(--primary);

}

/*-- Service page End --*/

/*-- Gallery page Start --*/

.gallery-page .photo-gallery-wrap {
    height: 320px;
}

/*-- Gallery page End --*/

/* -- // Ada feature Page Styles Start // -- */
.ada-feature-wrap:not(:last-child) {
    margin-bottom: 50px;
}

.ada-feature-wrap h3 {
    margin-bottom: 20px;
}

.ada-feature-item {
    font-size: 18px;
    line-height: 1.5;
    padding: 16px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px 0px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;

}

.ada-feature-note {
    margin-top: 40px;
}


/* -- // Ada feature Page Styles 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-marcellus);
}

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

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

.attraction-image-wrapper {
    width: 680px;
    height: 420px;
    overflow: hidden;
}

.attraction-image-wrapper img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all ease-in-out 0.4s;
}
.attraction-content-wrapper:hover .attraction-image-wrapper img,
.attraction-image-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: 12px;

}

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

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


.attraction-content-wrapper h5 {
    font-size: 24px;
    margin-bottom: 26px;
    letter-spacing: 0.5px;
}

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

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

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

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


.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%,#AB0000 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);
  }
}
