:root {
    /* Fonts */
    --font-primary: "Poppins", sans-serif;
    --font-eb: "EB Garamond", serif;

    /*Colors */
    --black: #010101;
    --white: #ffffff;
    --primary: #113067;
    --red: #DA3C3C;
    /* #244AB4,#00349B */
    --secondary: #616161;
    --sky-blue: #F2F2EC;

}


/* 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;
    background-color: #0E1720;
}

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

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

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

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

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

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



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

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

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

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

.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-red {
    color: var(--red);
}

.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;
    list-style: none;
}

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

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

/* Button Css Start */
.prime-btn {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--font-primary);
    line-height: 1;
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid transparent;
    border-radius: 0;
    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;
    transition: 0.5s;
}

.prime-btn::before {
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    width: 30px;
    content: "";
    background-color: rgb(34, 34, 34);
    opacity: 0;
    border-top-right-radius: 33px;
    border-bottom-right-radius: 33px;
    z-index: -1;
    border-top-left-radius: 33px;
    transition: 0.5s;
}

.prime-btn:hover {
    color: rgb(255, 255, 255);
}

.prime-btn:hover::before {
    width: 100%;
    opacity: 1;
    border-radius: 0px;
}


.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: 110px 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 ---- */
/* .main-wrapper {
    width: 100%;
} */

header {
    width: 100%;
    /* left: 0;
    right: 0;
    top: 0; */
    position: relative;
    width: 80%;
    margin: 30px auto 10px auto;
    z-index: 1111;
}

.navbar {
    padding: 10px 20px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    background-color: var(--white);
    border-radius: 6px;

}

/* .navbar-wrapper {
    width: 100%;
    background-color: var(--white);
    z-index: 222;
    display: flex;
    align-items: center;
    padding: 10px 30px;
    border-radius: 4px;
} */


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

}

.fixed-header .navbar {
    padding: 10px 200px;
}

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

    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    width: 207px;
    height: 106px;
    padding: 0;
    margin: 0;
    flex: 0 0 auto;
    z-index: 111;
}

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

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

.nav-link {
    font-size: 18px;
    text-transform: uppercase;
    position: relative;
    padding: 0;
    font-family: var(--font-primary);
    font-weight: 400;
    /* letter-spacing: 0.5px; */
    width: max-content;
    color: #010101;
    margin-right: 54px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

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

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


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

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

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

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

/* Header styles end */

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

.hero-wrapper::after,
.page-hero-banner::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    width: 100%;
    height: 76px;
    background-image: url('../images/sec-bg-img/header-vector.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 11;
}

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

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

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

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

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


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

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

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

.hero-ada {
    background-image: url('../images/hero-bg-img/hero-ada.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: 30%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

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

.sec-page-title {
    font-size: 46px;
    text-align: center;
    letter-spacing: 0px;
    margin-bottom: 50px;
}

/* hero-content of all page end */


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

.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: #244AB4;
    color: #fff;
}

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

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* width: 100%; */
    z-index: 111;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-text h1 {
    text-transform: capitalize;
    line-height: 100px;
    width: 926px;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.40);
}


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

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: 1px solid var(--white);
    border-radius: 100%;
    background: transparent;
    color: white;
    padding: 8px;
    font-size: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
    margin: 0;
    transition: all ease-in-out 0.5s;
}

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

.owl-carousel .owl-nav button.owl-prev {
    left: 100px;
}

.owl-carousel .owl-nav button.owl-next {
    right: 100px;
}


/* owl arrow end */

/* Hero styles end */



/* Booking Form style Start */
.booking-form-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 320px;
    background: var(--white);
    z-index: 111;
    padding: 50px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

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



.form-group:last-child {}

.input-label {
    font-family: var(--font-eb);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #122223;
}

.input-group {
    background-color: #E6E6E6;
    /* padding: 15px; */
    border-radius: 2px;
}

.form-control {
    font-size: 16px;
    font-family: var(--font-eb) !important;
    width: 100%;
    border: none;
    border-radius: 0;
    background-color: transparent;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
    color: #122223;
    padding: 15px;
    margin-right: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-family: var(--font-primary);
}

select.form-control option {
    color: #000 !important;
    padding: 4px 10px !important;
}

select {
    /* padding: 0 8px 4px !important; */
    line-height: 1.5 !important;
}

.form-control:focus,
.form-control:focus-visible {
    color: #122223;
    background-color: transparent;
    border: none;
    outline: none !important;
    box-shadow: none;
}


.input-group {
    position: relative;
}

.input-icon {
    font-size: 14px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(18, 34, 35, 0.4);
}

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

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


/* About section style Start */
.about-image-wrap {
    width: 100%;
    height: 614px;
    position: relative;
    overflow: hidden;
}

.about-image-wrap img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    padding-right: 60px;
    transition: all ease-in-out 0.5s;
}

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

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

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

.sec-title span {
    font-size: 16px;
    margin-bottom: 8px;
    letter-spacing: 3px;
    line-height: 1;
    position: relative;
    padding-left: 40px;

}

.sec-title span::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 1px;
    background: var(--red);
}

.about-content-wrap {
    padding-left: 30px;
}

.about-content-wrap p {
    text-align: justify;
    font-size: 16px;
    text-transform: capitalize;
    line-height: 32px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

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

.about-image-content {
    text-transform: capitalize;
    text-align: center;
    font-size: 22px;
    line-height: 44px;
    padding: 40px 23px;
    background-color: var(--primary);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 300px;
}

/* About section style End */


/* Rooms Service Section start */
.our-room {
    margin-bottom: 150px;
}

.room-service-box {
    margin: 0 80px;
    background-color: #f1f3f6;
    border-radius: 10px;
}

.rooms-image-wrap {
    width: 100%;
    height: 400px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
}

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

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


.rooms-content-wrap {
    box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.20);
    padding: 40px 28px;
}

.rooms-content-wrap p {
    font-size: 20px;
    margin: 30px 0;
    text-transform: capitalize;
}

.room-icon {
    display: flex;
    align-items: center;
}

.room-icon svg {
    font-size: 16px;
    margin-right: 6px;
}

.room-icon li {
    font-size: 14px;
    margin-right: 40px;
}

.our-room .owl-carousel .owl-stage-outer {
    padding: 30px 0;
}










.rooms-content-wrap .prime-btn {
    margin-top: 38px;
}

.our-room .owl-carousel .owl-nav button.owl-next,
.our-room .owl-carousel .owl-nav button.owl-prev {
    top: -10%;
    color: #A8A8A8;
    border-color: #A8A8A8;
    border-radius: 6px;
    width: 54px;
    height: 54px;
    font-size: 28px;
    margin: 0;
}

.our-room .owl-carousel .owl-nav button.owl-next {
    right: 20px;
}

.our-room .owl-carousel .owl-nav button.owl-prev {
    left: auto;
    right: 100px;
}

/* Rooms Service Section End */

/* service amenities section start */
.service-amenities-wrapper {
    margin: 80px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
}

.service-amenities-grid-item {
    border-radius: 5px;
    border: 0px solid #000;
    background-color: white;
    padding: 30px;
    box-shadow: 1px 2px 8px 0px rgba(0, 0, 0, 0.2);
}

.service-amenities-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 26px;
    background: var(--primary);
    border-radius: 100%;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

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

.service-amenities-grid-item h4 {
    font-size: 22px;
    line-height: 24px;
    color: #010101;
    margin-bottom: 16px;
}

.service-amenities-grid-item p {
    font-size: 15px;
    color: #686868;
    line-height: 24px;
    letter-spacing: 0.2px;
}

.view-all-link {
    float: inline-end;
    font-size: 22px;
    font-family: var(--font-eb);
    transition: all ease-in-out 0.5s;
    color: var(--red);
}

.view-all-link:hover {
    transform: scale(1.05);
    color: red;
}

/* service amenities section End */

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

.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: 14px;
    color: #787878;
    line-height: 30px;
}

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

.read-more:hover {
    color: #DA3C3C;
}

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



/* Feedback Section start */
/* .feedback {
    background-color: #17191F;
} */

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

.feedback-icon {
    width: 240px;
    height: 240px;
    border: 1px solid white;
    border-radius: 100%;
    flex: 0 0 auto;
    margin-right: 50px;
}

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

.feedback-grid-item p {
    text-transform: capitalize;
    font-size: 24px;
    line-height: 48px;
    color: #DAD6D6;
    margin-bottom: 40px;
    width: 740px;
    letter-spacing: 0.5px;
}

.feedback-grid-item span {
    font-size: 30px;
    position: relative;
    padding-left: 80px;
}

.feedback-grid-item span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 1px;
    background: white;
}

.feedback-slider .owl-carousel .owl-nav button.owl-next,
.feedback-slider .owl-carousel .owl-nav button.owl-prev {
    font-size: 16px;
    width: 40px;
    height: 40px;
    right: 10%;
    left: auto;
    background-color: transparent;
}

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


.feedback-slider .owl-carousel .owl-nav button.owl-prev {
    top: 30%;
}

.feedback-slider .owl-carousel .owl-nav button.owl-next {
    top: 50%;
}

.feedback-slider #feedback-owl-carousel {
    overflow: hidden;
}

/* Feedback Section end */


/* Photo gallery section start */
.gallery.sec-spacing {
    padding: 0 0 110px 0;
}

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

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

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

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

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


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

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


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

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

/* Photo gallery section end */

/* Footer start */
.footer-wrap {
    background-color: var(--white);
    margin: 0 80px 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

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

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

.ft-logo {
    width: 196px;
    height: 100px;
    margin-bottom: 32px;
}

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

.footer-grid-item p {
    font-size: 16px;
    line-height: 38px;
    color: #626262;
    margin-bottom: 40px;
    /* width: 500px; */
    text-transform: capitalize;
    text-align: justify;
}


.footer-grid-item h3 {
    font-size: 34px;
    padding: 56px 0 32px 0;
}

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

.footer-link {
    font-size: 16px;
    color: #626262;
    line-height: 1.5;
    margin-bottom: 28px;
    transition: all ease-in-out 0.5s;
}


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

.ft-add {
    line-height: 2;
}

.footer-add a {
    line-height: 1;
}

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

.ft-add svg,
.footer-add a svg {
    font-size: 18px;
    color: var(--primary);
    transition: all ease-in-out 0.4s;
}

.footer-bottom-wrap {
    z-index: 111;
    position: relative;
    border-top: 1px solid rgb(1, 1, 1, 0.2);
    padding: 30px 10px;

}

.footer-bottom-wrap p {
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #626262;
}

/* Footer end */



/*-- Service Amenities section Start --*/

.service-page .service-amenities-icon-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
    z-index: 111;
    margin-bottom: 100px;
}

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

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

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

.service-page .service-amenities-icon-item h5 {
    font-size: 20px;
    line-height: 1.5;
}

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

.hotel-policy-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    padding: 50px 20px 20px;
    border-radius: 8px;
    min-height: 340px;
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}

.h-policy-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 40px;
}

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

.hotel-policy-wrap h5 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.hotel-policy-wrap p {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
}


/*-- Service Amenities section End --*/

/* Gallery Pgae start */
.gallery-page .photo-gallery-image {
    height: 420px;
}

/* Gallery Pgae end */


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

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

.ada-feature-item {
    font-size: 16px;
    line-height: 1.5;
    padding: 0 0 20px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #ffffff2b;
}

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

.ada-feature-item:last-child {
    border-bottom: none;
}

.ada-feature-image-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.ada-feature-image-wrap:hover img {
    transform: scale(1.08);
}

.note {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

/* -- // Ada feature Page Styles End // -- */



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

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

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

}

.info-wrapper {
    padding: 30px 20px;
    border-radius: 8px;
    background-color: var(--white);
    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: 26px;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: var(--font-eb);
    color: #000;
}

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

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

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



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

.attraction-section-wrap {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    padding: 40px 30px;
    background-color: var(--sky-blue);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

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

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

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

.hotel-surrounding-title {
    margin-bottom: 30px;
    font-size: 30px;
}

.item-list {
    margin-bottom: 10px;
    background-color: var(--white);
    color: var(--secondary);
    padding: 10px 18px;
    line-height: 1;
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
    transition: all ease-in-out 0.3s;
}

.item-list p {
    font-size: 18px;
    line-height: 2.2;
    transition: all ease-in-out 0.3s;
}

.item-list:hover {
    background-color: var(--primary);
}

.item-list:hover P {
    color: var(--white);
}

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