:root {
    /* Fonts */
    --font-primary: "Poppins", serif;
    --font-mrc: "Marcellus", serif;

    /*Colors */
    --black: #1B2B35;
    --white: #ffffff;
    --primary: #AB0000;
    /* #244AB4,#00349B */
    --secondary: #787878;
    --sky-blue: #F2F2F2;

}


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

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

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

.h4-small {
    font-size: 22px;
}

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

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

.p {
    font-size: 16px;
}

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

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

/* Pseudo default styles start */

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

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

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

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



/* 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: 0.5px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 2px;
    padding: 18px 30px;
    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;
}


.description {
    position: relative;
    display: block;
    z-index: 3;
    color: var(--white);
}

.prime-btn:before,
.prime-btn:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
}

.prime-btn:before {
    background: #e31c1c;
    transition: 0.6s ease-in;
    transition-delay: 0.1s;
}

.prime-btn:after {
    background: #AB0000;
    transition: 0.8s ease;
    transition-delay: 0.4s;
}

.prime-btn:hover:before,
.prime-btn:hover:after {
    transform: translate(-50%, -50%) scale(310);
}

.prime-btn:hover,
.prime-btn.active,
.prime-btn .btn-check:focus+.btn,
.prime-btn:focus {
    outline: none;
    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: #231E1A;
    color: var(--white);
    padding: 12px 100px;

}

.header-top a,
.header-top i,
.head-top-add {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.5px;
    transition: all ease-in-out 0.5s;
}

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

.header-top a:hover svg,
.head-top-add:hover svg {
    color: var(--white);
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}

.ht-icon {
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    border-radius: 100%;
    flex: 0 0 auto;
}

.mr-50 {
    margin-right: 50px;
}

.navbar {
    position: fixed;
    width: 100%;
    padding: 6px 100px;
    z-index: 222;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    background-color: rgb(9, 37, 48, 0.6);

}


.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.50s ease;
    background-color: rgb(9, 37, 48, 0.8);
    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: 205px;
    height: 100px;
    padding: 0;
    margin: 0;
    z-index: 1111;
}

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

.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;
    letter-spacing: 0.3px;
    width: max-content;
    color: var(--white);
    margin-right: 60px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}


.nav-link:hover,
.nav-link:focus,
.nav-item.active .nav-link {
    color: #ef0000;
    font-weight: 400;
    -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;
}

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

/* Header styles end */


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

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

.hero-banner::before,
.page-hero-banner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    /* background-image: linear-gradient(to right, black, rgba(0, 0, 0, 0.5)); */
    opacity: .10;
}

.page-hero-banner::before {
    opacity: .40;
}

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


.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;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.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 {
    margin-bottom: 0;
}

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


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

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

/* Hero styles end */

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

}

.owl-carousel button.owl-dot {
    width: 28px;
    height: 8px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.6);
    margin: 0 5px;


}

.owl-theme .owl-dots .owl-dot span {
    display: none;
}

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


/* owl dots end */




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

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

.about-content-wrap .sec-sub-title {
    padding-left: 0;
}

.sec-sub-title {
    margin: 0 0 10px;
    font-size: 18px;
    position: relative;
    letter-spacing: 4px;
    padding-left: 50px;
}

.sec-sub-title::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--primary);
}

.about-content-wrap .sec-sub-title::before {
    display: none;
}

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

.about-content-wrap p {
    text-transform: capitalize;
    letter-spacing: 0.5px;
    line-height: 36px;
    margin-bottom: 16px;
    padding-right: 50px;
}

.read-more-text {
    position: relative;
    /* text-decoration: underline; */
    display: block;
    transition: all ease-in-out 0.3s;
    margin-top: 60px;
    letter-spacing: 0.5px;
    text-decoration: none;
    margin-left: 20px;
}

.read-more-text:hover::after {
    background-color: #fdbfbf;
}

.read-more-text span {
    color: var(--primary);
    z-index: 111;
    position: relative;
    max-width: max-content;
}


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


.about-image-wrap {
    width: 704px;
    height: auto;
}

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


/* About Section End */


/* Service Amenities Section Start */

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

.service-amenities-grid {
    margin: 0 200px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-amenities-grid-item {
    padding: 32px 20px 32px 32px;
    border: 1px solid #CCCCCC;
}

.service-amenities-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    flex: 0 0 auto;
    margin-right: 22px;
}

.service-amenities-grid-item:hover img {
    color: var(--white);
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}


/* .service-amenities-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
} */

.service-amenities-content h4 {
    line-height: 24px;
    color: #1B2B35;
    margin-bottom: 12px;
}

.service-amenities-content p {
    font-size: 14px;
    line-height: 24px;
    text-transform: capitalize;
    color: #686868;
}

.sa-view-all {
    font-size: 22px;
    position: relative;
    margin-right: 10%;
    margin-top: 70px;
}

.sa-view-all::after {
    content: '';
    position: absolute;
    background-image: url('../images/icons/sa-arrow.png');
    left: 0;
    bottom: -20px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 15px;
}

/* Service Amenities Section End */

/* Booking reservation section Start */
.booking-res-wrapper {
    width: 100%;
    display: flex;
    background-color: #092530;
}

.booking-res-left {
    width: 50%;
}

.booking-res-right {
    width: 70%;
    position: relative;
    background-color: #EFEFEF;
    display: flex;
    /* align-items: center; */
    justify-content: center;
}

.booking-res-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-image: url('../images/gallery/ot-2.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.booking-res-left-inner-wrap {
    background-color: var(--white);
    padding: 40px 40px 40px 0;
    width: 1060px;
    margin: 120px 0;
    position: relative;
    z-index: 111;
}

.booking-res-left-image {
    width: 618px;
    height: 570px;
    overflow: hidden;
}

.booking-res-left-image img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all ease-in-out 0.3s;
}

.booking-res-left-image:hover img {
    transform: scale(1.08);
}

.booking-res-left-content {
    position: relative;
    padding: 26px;
    width: calc(1060px - 618px);
}

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

.b-hotel-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
    position: relative;
    z-index: 111;
}

.booking-res-left-content:hover img {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}

.booking-res-left-content h3 {
    font-size: 28px;
    line-height: 44px;
    color: #092530;
    position: relative;
    z-index: 111;
    text-align: center;
}

.booking-res-left-content a {
    margin-top: 36px;
}


/* Booking Form style Start */


.booking-res-right form {
    width: 470px;
    background-color: #092530;
    position: relative;
    z-index: 111;
    padding: 60px;
    margin: 100px auto;

}

.web-res-form {
    display: flex;
    flex-direction: column;
}

.web-res-form h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
}


.form-label {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
    color: white;
    font-family: var(--font-mrc);
    line-height: 23px;
}

.form-control {
    font-size: 14px;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 0px;
    background-color: var(--white);
    font-weight: 400;
    height: 50px;
    line-height: 1;
    color: var(--black);
    padding: 14px 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-family: var(--font-primary);
}

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

.input-group {
    position: relative;
}

.input-icon {
    font-size: 14px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #787878;
}

.web-res-form .prime-btn {
    width: 100%;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 6px;
    background-color: var(--primary);
    margin-top: 10px;
}

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

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


/* Booking Form style End */
/* Booking reservation section End */


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

.exclusive-offer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 510px;
    background-color: #092530;
}

.exclusive-offer-header {
    position: relative;
    z-index: 111;
    width: 100%;
    margin-bottom: 60px;
}

.exclusive-offer-header .sec-title {
    margin-bottom: 0;
}

.exclusive-offer-header h2 {
    font-size: 40px;
}

.exclusive-offer-header p {
    font-size: 16px;
    line-height: 30px;
    text-transform: capitalize;
    text-align: justify;
}

.exclusive-offer-content-wrapper {
    position: relative;
}

.exclusive-offer-card {
    height: 100%;
    background-color: var(--white);
    padding: 40px 20px 30px 20px;
    border-top: 3px solid var(--primary);
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.20);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}


.exo-image {
    width: 50px;
    height: 50px;
    background-color: #FFEBD4;
    border-radius: 5px;
    margin-right: 20px;
    flex: 0 0 auto;
}

.exclusive-offer-content:hover .exo-image img {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}


.exclusive-offer-content-head {
    margin-bottom: 16px;
}

.exclusive-offer-content p {
    font-size: 15px;
    line-height: 28px;
    color: #989898;
}

.exclusive-offer-image {
    width: 100%;
    height: 220px;
    margin-top: 60px;
    position: relative;
    border-radius: 5px;
    /* overflow: hidden; */
}

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

}

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

.exo-arrow {
    position: absolute;
    top: -30px;
    right: 10px;
    width: 56px;
    height: 56px;
    background-color: var(--primary);
    border-radius: 50%;
    transform: rotate(45deg);
    transition: all ease-in-out 0.3s;
}

.exo-arrow svg {
    color: var(--white);
    font-size: 25px;
    transition: all ease-in-out 0.3s;
}

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

.exo-arrow:hover svg {
    transform: scale(1.2);
}

/* Exclusive Offers section End */

/* our rooms section Start */
.our-room.sec-spacing {
    padding: 0;
}

.swiper-pagination-bullet {
    font-family: var(--font-mrc);
    text-align: center;
    line-height: 1;
    font-size: 30px;
    color: #000;
    opacity: 1;
    background: transparent;
    margin: 0 20px;
}

.swiper-pagination-bullet-active {
    color: var(--primary);
}


.our-room-image-wrap {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.our-room-image-wrap img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    transition: all ease-in-out 0.3s;
}

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

.our-room-content-wrap {
    position: absolute;
    width: 90%;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    background-color: #092530;
    padding: 40px 50px;
    border-radius: 2px;

}

.our-room-content-wrap h4 {
    font-size: 26px;
    line-height: 40px;
    text-align: left;
}

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

.our-room-content-wrap:hover .room-icon svg {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}


.room-icon p {
    font-size: 18px;
}

.our-room-content-wrap .prime-btn {
    background-color: transparent;
    border: 1px solid white;
    color: var(--white);
}

.our-room-content-wrap .prime-btn:before,
.our-room-content-wrap .prime-btn:after {
    display: none;
}

.our-room-swiper {
    padding-bottom: 12%;
}

.swiper-pagination {
    margin-top: 70px;
    left: 50%;
    transform: translateX(-50%);
}

/* our rooms section End */


/* Gallery section Start */
.gallery.sec-spacing {
    padding: 0 0 120px;
}

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

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

.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;
    padding: 18px 40px;
}

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

/* Feedback section Start */

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

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

.feedback-grid-item {
    padding: 50px 26px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.18);
    /* margin-bottom: 20px; */
    height: 360px;
}


.feedback-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 30px;
}

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

.feedback-grid-item p {
    font-size: 22px;
    margin-bottom: 30px;
}

.feedback-grid-item span {
    font-size: 16px;
    font-style: italic;
    color: #787878;
    line-height: 30px;
}

/* .feedback .owl-theme .owl-nav {
    bottom: 106%;
} */

.feedback .owl-stage-outer {
    padding: 60px 0;
}

.feedback .owl-carousel .owl-nav button.owl-next,
.feedback .owl-carousel .owl-nav button.owl-prev {
    color: var(--primary);
    border: 1px solid var(--primary);
    background-color: transparent;
    width: 46px;
    height: 46px;
    border-radius: 100%;
    font-size: 22px;
    top: -14%;
    position: absolute;
    right: 0;
    transition: all ease-in-out 0.3s;
    margin: 0;
}

.feedback .owl-carousel .owl-nav button.owl-prev {
    right: 60px;
}

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



/* Feedback section end */

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

.footer-top-wrap {
    padding: 120px 0 60px 0;
}

.ft-logo {
    width: 205px;
    height: 100px;
    flex: 0 0 auto;
    cursor: pointer;
}

.ft-divider-wrap {
    position: relative;
}

.ft-divider-wrap::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -50px;
    width: 90%;
    height: 1px;
    background: rgba(255, 255, 255, 0.30);
}

.footer-info-wrap {
    margin-right: 70px;
}

.footer-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    margin-right: 12px;
}

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

}

.footer-info-icon:hover svg {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}

.footer-info-content span {
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    line-height: 1;
}

.footer-info-content a {
    font-size: 22px;
    letter-spacing: 1px;
    line-height: 1;
}

.ft-title {
    font-size: 34px;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.ft-about-wrap p {
    font-size: 16px;
    line-height: 40px;
    letter-spacing: 0.5px;
    text-align: justify;
    text-transform: capitalize;
    padding-right: 50px;
}

.ft-contact-us {
    padding-left: 10px;
}

.ft-contact-us p {
    font-size: 16px;
    line-height: 34px;
    letter-spacing: 0.5px;
}

.ft-contact-us svg {
    font-size: 20px;
}

.ft-contact-us:hover svg {
    transform: rotateY(360deg);
    transition: all 0.9s ease;
}

a.ft-link {
    display: flex;
    color: var(--white);
    font-size: 16px;
    margin-bottom: 38px;
    letter-spacing: 0.5px;
    transition: all ease-in-out 0.5s;
}

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

.mt-60 {
    margin-top: 60px;
}

.calendar-icon {
    z-index: 111;
    position: relative;
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    margin-right: 12px;
}

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

.checkIn-checkOut {
    margin-top: 40px;
}

.checkIn-checkOut-text span {
    display: block;
    font-size: 16px;
    line-height: 1.2;
    z-index: 111;
    position: relative;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.checkIn-checkOut-text p {
    font-size: 18px;
}

.ada-link {
    position: relative;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: var(--white);
    margin-top: 50px;
    max-width: max-content;
}

.ada-link::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background: var(--primary);
    left: 0;
    bottom: -6px;
}

.footer-bottom-wrap {
    padding: 14px 10px;
}

.footer-bottom-wrap p {
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Footer section end */


/* ---- Service Page Style start ---- */

.service-page .service-amenities-img-wrap {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
}

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

.service-page .service-amenities-img-wrap:hover img {
    transform: scale(1.08);
}

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

.service-page .service-amenities-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-page .service-icon-wrap {
    width: 40px;
    margin-right: 18px;
}

.service-page .service-item-wrap {
    width: 100%;
    padding: 20px 30px;
    border-radius: 8px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.service-page .service-item-wrap h4 {
    font-size: 20px;
    line-height: 1;
}

/* ---- Service Page Style End ---- */


/* ---- Gallery Page Style Start ---- */
.gallery-page .photo-gallery-wrap {
    height: 420px;

}

/* ---- Gallery Page Style 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,
.attraction-content-wrapper {
    width: 50%;
}


.attraction-image-wrapper {
    /* width: 680px; */
    height: 480px;
    overflow: hidden;
    z-index: 111;
}

.attraction-image-wrapper img {
    width: 100%;
    height: 100%;
    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 {
    z-index: 111;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    margin-top: 4%;
    z-index: 11;
    border-radius: 8px;

}

.attraction-content-wrapper.pedding-left {
    padding: 50px 40px 50px 100px;
    margin-left: -5%;
}

.attraction-content-wrapper.pedding-right {
    padding: 50px 100px 50px 50px;
    margin-right: -5%;
}


.attraction-content-wrapper h5 {
    font-size: 34px;
    margin-bottom: 30px;
    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;
    letter-spacing: 0.3px;
    background-color: var(--primary);
    padding: 12px 20px;
    color: white;
}

.att-content-text:last-child {
    margin-bottom: 0;
}


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


/* ---- Contact-us page start---- */

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

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

}

.info-wrapper {
    padding: 50px 20px;
    background-color: var(--sec-bg-color);
    box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}

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

.info-wrapper h5 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: var(--font-mrc);
    color: #000;
}

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

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

/* ---- Contact-us page end---- */