:root {
    --theme_blue_dark_1: #0B0B4F;
    --theme_blue_dark_2: #1A0F5E;
    --theme_blue_dark_3: #101260;
    --theme_blue_dark_4: #1d217b;

    --theme_btn_color: #0d6efd;

    --theme_blk_custom: #272727;

    --theme_blue_avg_1: #1E2A8A;
    --theme_blue_avg_2: #0c63e4;
    --white_color: #fff;

    --grey_color: #555555;
    --grey_color2: #616161;
    --grey_color3: #f8f6f3;

    --theme_blk_dark_1: #353535;
    --theme-gold: #c19d68;
    --theme-gold2: #b79a65;
    --theme-gold3: #c29d68;

    --theme_light_wt: #ffffff8a;
}


.align_items_center {
    align-items: center;
}

* {
    font-family: "Open Sans", sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.gold_heading {
    color: var(--theme-gold) !important;
    font-size: 18px;
    text-transform: uppercase;
}

.family_system_ui {
    font-family: system-ui !important;
}



.ibanner_btn {
    position: relative;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;

    background: linear-gradient(135deg, #0B0B4F, #1E2A8A, #1A0F5E);
    border: 1px solid var(--theme-gold) !important;

    padding: 15px 28px;
    font-size: 19px;
    color: #fff;
    margin-top: 1.2rem;
    font-family: lora;
    border-radius: 8px;
}

.ibanner_btn2 {
    position: relative;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;

    background: linear-gradient(135deg, #0B0B4F, #1E2A8A, #1A0F5E);
    border: 1px solid var(--theme-gold) !important;

    padding: 8px 28px;
    font-size: 19px;
    color: #fff;
    margin-top: 0.5rem;
    font-family: lora;
    border-radius: 8px;
}

/* background layer */
.ibanner_btn2 ::before,
.ibanner_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    /* border: 1px solid var(--theme-gold); */
    color: var(--theme-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
    z-index: -1;
}

/* hover */
.ibanner_btn2:hover::before,
.ibanner_btn:hover::before {
    transform: scaleX(1);
}

/* text color change */
.ibanner_btn2:hover,
.ibanner_btn:hover {
    color: var(--theme-gold);
    border: 1px solid var(--theme-gold) !important;
}

.gold_span {
    color: var(--theme-gold);
}

a {
    text-decoration: none;
    color: #000;
}



/* welcome to stay royal section start  */
.greypara {
    font-size: 19px;
    color: var(--grey_color);
    margin-bottom: 3rem;
}

.flex_icons {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0;
    gap: 15px;
    min-height: 102px;
}

.flex_icons ul {
    display: flex;
    flex-wrap: wrap;
    padding-left: 12px;
    /* #gap: 15px; */
    /* #list-style-type: none; */
    margin-bottom: 0;
}

.flex_icons ul li {
    font-size: 13px;
    margin-right: 27px;
}

.flex_icons ul li img {
    width: 20px;
}

.room_review_span {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    background-color: #fff;
    padding: 7px 15px;
    border-radius: 10px;
    font-size: 14px;
}

.room_rating_span {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    background-color: #fff;
    padding: 7px 15px;
    border-radius: 10px;
    font-size: 14px;
}

.room_price_span {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 3px;
}

.roompricespanlink {
    padding: 10px;
    font-size: 15px;
    border-radius: 5px;
    border: 1px solid;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.room_rating_span i,
.best_rated_span i {
    color: #f7b00a;
}

.best_rated_span {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 1;
    background-color: #fff;
    padding: 7px 15px;
    border-radius: 10px;
    font-size: 14px;
}

#vmh_btn_div {
    /* #border: 1px solid; */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}



.wtsr_card {
    margin-bottom: 0.5rem;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.view_details_span {
    position: absolute;
    bottom: 0px;
    /* adjust */
    left: -160px;
    /* hidden */
    transition: all 0.4s ease;
    background: linear-gradient(135deg, #0B0B4F, #1E2A8A, #1A0F5E);
    color: #fff;
    padding: 12px 25px;
}

.wtsr_card:hover .view_details_span {
    left: 0px;
    /* visible position */
}


.wtsr_card_mid span {
    color: var(--grey_color);
    font-size: 14px;
}

.wtsr_card_mid span i {
    margin-right: 5px;
}

.flex_icons span {
    font-size: 15px;
}

.flex_icons span img {
    width: 20px;
}

.wtsr_card_mid {
    background-color: #fff;
    padding: 20px 9px 0px 10px;
}

.wtsr_card_mid h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    color: var(--theme-gold);
}

.wtsr_card_mid p {
    font-family: "Cormorant Garamond";
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
}

.wtsr_card_mid p span {
    font-size: 13px;
}


.wtsr_section {
    /* #background-color: var(--grey_color3); */
    padding: 3rem 0 1rem;
}

.wtsr_card_top {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.wtsr_card_top img {
    width: 100%;
    border-radius: 15px 15px 0 0;
}

.wtsr_card_top .package_span {
    background: linear-gradient(135deg, #0B0B4F, #1E2A8A, #1A0F5E);
    color: #fff;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: Lora;
    padding: 7px 25px 6px;
    border-radius: 7px;
}

.wtsr_card_bot {
    padding: 5px 10px;
    /* border-top: 1px solid rgba(30, 30, 30, .1);*/
    background-color: #c29d6836;
    border-radius: 0 0 15px 15px;
}

.wtsr_card_bot_in {
    border: 1px solid #00000057;
    padding: 5px 15px;
    border-radius: 10px;
}

.flex_wtsr_bot {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    /* gap: 15px; */
    margin: 6px 0;
    align-items: center;
}

.flex_wtsr_bot span img {
    width: 23px;
}

.flex_wtsr_bot p:nth-last-child(1) {
    font-size: 12px;
    margin-bottom: 5px;
}

.wcb_flex {
    display: flex;
    justify-content: space-between;
}

.justify_flex_end {
    justify-content: flex-end;
}

.wcb_flex_left ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

.wcb_flex_left i {
    font-size: 12px;
    color: #f7b00a;
}

.wcb_flex_right p {
    margin-bottom: 5px;
    font-size: 19px;
    color: var(--grey_color);
}

.status_available {
    color: green !important;
}

.wtsr_status {
    margin-bottom: 1rem;
    font-family: lora;
    color: var(--grey_color2);
}

/* welcome to stay royal section end  */


/* ettr_section start */

.ettr_section {
    /* # background: linear-gradient(135deg, var(--theme_blue_dark_1), var(--theme_blue_avg_1), var(--theme_blue_dark_2)); */
    /* border: 2px solid red; */
    /* height: 100vh; */
    padding: 0rem 0 0;
}

.ettr_section h2 {
    /* # color: var(--white_color); */
    text-align: center;
    margin-bottom: 1.2rem;
    margin-top: 1.2rem;
    font-size: 35px;
    font-weight: 700;
}

.ettr_section p {
    /* #color: var(--white_color); */
    text-align: center;
    font-size: 14px;
}

.ettr_section .shd_p1 {
    font-size: 19px;
}

.ettr_card {
    /* border: 1px solid #fff; */
    padding: 20px 5px;
    height: 155px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 1rem;
    border-radius: 20px;
    justify-items: center;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}

.ettr_card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--theme_blue_avg_2);
    z-index: -1;
    transition: width 0.4s ease;
}

.ettr_card:hover::before {
    width: 100%;
    color: #fff;
}

.ettr_card:hover p {
    color: #fff;
}

.esd_flex_card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 15px 0;

}

.ettr_ctop {
    text-align: center;
    /* border: 1px solid; */
    /* height: 16vh; */
    position: relative;
    margin-bottom: 15px;
    height: auto;
    width: fit-content;
    padding: 15px;
    background-color: bisque;
    border-radius: 100%;
}

.ettr_card::after {
    content: "";
    width: 20%;
    height: 3px;
    background: var(--theme-gold);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
}

.ettr_ctop img {
    filter: brightness(0);
    max-width: 35px
}

.section_heading_div {
    margin-bottom: 3rem;
}

/* ettr_section end */



/* testimonials section start */
.mySlider {
    padding: 30px 0 10px;
}

.swiper-slide {
    /* background: #fff; */
    /* text-align: center; */
    /* border-radius: 10px; */
    /* border: 2px solid red; */
}

.swiper_card_in {
    background: transparent;
    cursor: pointer;
    /* overflow: hidden; */
    z-index: 1;

    padding: 20px;
    border-radius: 13px;
    position: relative;
    background-color: #fff;
}


/* background layer */
.swiper_card_in::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: #fff; */
    background: linear-gradient(135deg, #0B0B4F, #1E2A8A, #1A0F5E);
    border: none;
    color: #fff;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
    z-index: -1;
    border-radius: 10px;
}

/* hover */
.swiper_card_in:hover::before {
    transform: scaleX(1);
}

/* text */
.swiper_card_in:hover p {
    color: #fff;
}

.swiper_card_in:hover h5 {
    color: #fff;
}

/* stars icon */
.swiper_card_in:hover .flxstarimgL i {
    color: #fff;
}

.swiper_card_in:hover .flxstarimgR {
    color: #fff;
}

.swiper_card_in:hover .diamond_div {
    background-color: var(--theme-gold3);
}





.swiper_card_bt {
    /* border: 2px solid red; */
    padding: 40px 0 0;
}

.swiper_card_bt .white_p_ts {
    color: #fff;
    font-size: 18px;
    margin-bottom: 0px;
}

.swiper_card_bt .gold_p_ts {
    color: var(--theme-gold);
    font-size: 18px;
}

.swiper_card_in p {
    font-style: italic;
    font-size: 17px;
    color: var(--grey_color);
}

.swiper_card_in .diamond_div {
    width: 30px;
    height: 30px;
    background-color: #fff;
    transform: rotate(45deg);
    position: absolute;
    bottom: -15px;
    border-radius: 5px 0;
}


.tsms_btns {
    position: relative;
    display: flex;
    gap: 15px;
    height: stretch;
    justify-content: flex-end;
    align-items: flex-end;
    padding-bottom: 50px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    /* background: #fff; */
    width: 57px;
    height: 57px;
    position: unset;
    border-radius: 10px;
    border: 1px solid var(--theme_light_wt);
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); */
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
}

.testimonials_section_in {
    /* height: 100vh; */
    padding: 90px 0 90px;
    background-image: url(../images/index/2-slider.webp);
    position: relative;
    z-index: 1;
}

.testimonials_section_in::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.tsms_content {
    padding: 10px 10px 10px 0;
}



.tsms_content h2 {
    color: #fff;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.tsms_content .tsms_wp {
    color: #fff;
    font-size: 19px;
}

.border_bottom_testimonils {
    border-bottom: 1px solid var(--theme_light_wt);
    ;
}

.flxstarimg {
    display: flex;
    justify-content: flex-end;
}

.flxstarimgL i {
    color: var(--theme-gold);
}

.flxstarimgR {}

/* testimonials section end */



/* faq_section start */
#faq_section {
    /* border: 1px solid; */
    padding: 4rem 0;
}

.faq_img_div {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    border-radius: 11px;
    height: 100%;
}

.faq_img_div img {
    width: 100%;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    height: 100%;
    object-fit: cover;
}

.accordion-button::after {
    display: none;
}

/* Default (closed) → + */
.accordion-button .faq_icon::before {
    content: "";
}

.accordion-button:not(.collapsed) {
    /* background-color: var(--white_color); */
    color: var(--theme_blue_avg_2);
}

/* Open state → - */
.accordion-button:not(.collapsed) .faq_icon::before {
    content: "";
    display: block;
    width: 15px;
    height: 3px;
    background-color: var(--theme-gold);
}

.faq_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 19px;
    font-weight: 600;
    padding: 18px 20px;
}

.faq_icon {
    font-size: 20px;
    font-weight: bold;
    transition: 0.3s;
}

.accordion-body {
    border-left: 3px solid var(--theme-gold);
    font-size: 19px;
    color: var(--grey_color);
}

.accordion-item {
    border: none;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.faq_section_heading h2 {
    color: var(--theme-gold2);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    font-size: 35px;
}

/* faq_section end */


.index_card_slider {
    position: relative;
    overflow: hidden;
    min-height: 530px
}

.index_card_track {
    display: flex;
    transition: transform 0.5s ease;
}


.index_card_item {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 10px;
    box-sizing: border-box;
}

/* buttons */
.slider_btn {
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    background: #00000091;
    color: #fff;
    border: none;
    padding: 10px 12px;
    cursor: pointer;
    z-index: 2;
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.slider_prev {
    left: 10px;
}

.slider_next {
    right: 10px;
}

.location_flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.locations_tabs {
    border: 1px solid lightgrey;
    border-radius: 10px;
    padding: 10px 15px;
    background-color: #fff;
}

.locations_tabs.active {
    color: #fff;
    background-color: var(--theme-gold);

}

.index_card_track {
    position: relative;
}

/* overlay */
.index_card_track.loading::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 605px;
    height: 100%;
    background: rgb(217 217 217 / 10%);
    /* overlay color */
    z-index: 5;
}

/* loader text */
.index_card_track.loading::before {
    content: "Loading...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*color: #fff;*/
    font-size: 18px;
    z-index: 6;
}

.tsi_strip_flex {
    display: flex;
    background-color: #fff;

    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 15px;
    flex-wrap: wrap;
    /* 🔥 important */
}

.tsi_strip_card {
    width: 25%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    position: relative;
}

/* border */
.tsi_strip_card:not(:last-child) {
    border-right: 1px solid #eee;
}

.tsi_icons {
    width: 50px;
    height: 50px;
    background-color: #c8a96a;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tsi_icons i {
    font-size: 18px;
    color: #fff;
}

.tsi_strip_card h5 {
    margin: 0;
}

.tsi_strip_card p {
    margin: 2px 0 0;
    color: #777;
    text-align: left;
}

.swiper_cart_top {
    display: flex;
    gap: 20px;
}


/* logo left right line */
.section_heading_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.section_heading_logo::before,
.section_heading_logo::after {
    content: "";
    width: 100px;
    height: 1px;
    background: #ccc;
}

.section_heading_logo::before {
    margin-right: 15px;
}

.section_heading_logo::after {
    margin-left: 15px;
}

.section_heading_logo img {
    border-radius: 50%;
    display: block;
}

/* logo left right line */

/* header */
.nav-item .nav-link {
    font-size: 21px;
    font-weight: 400;
    font-family: system-ui;
}

.booking_online_link {
    border: 1px solid;
    text-decoration: none;
    color: var(--theme_blk_custom);
    font-family: lora;
    padding: 17px 10px;
    font-size: 18px;
    border-radius: 7px;
}

.sign_in_link {
    font-size: 17px;
    padding-left: 1rem;
    text-decoration: none;
    color: var(--theme_blk_custom);
    font-family: system-ui;
}

header nav {
    padding: 10px 0 !important;
}

.submenu {
    display: none;
    position: absolute;
    background: #192987;
    padding: 0;
    list-style: none;
    border-radius: 10px;
    min-width: 300px;
    z-index: 1000;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.submenu .nav-link {
    font-size: 16px !important;
    color: #fff;
    text-align: left;
}

.has-sub:hover>.submenu {
    display: block;
}

.sec-menu .nav-link {
    border-bottom: 1px solid #7a7a7a66;
    padding: 13px;
}

.submenu .has-sub {
    position: relative;
    border-bottom: 1px solid #7a7a7a66;
    padding: 10px;
}

.submenu .has-sub:last-child {
    border-bottom: none;
}

.submenu.sec-menu {
    top: 58px;
    left: 70%;
}

.nav-item.has-sub {
    position: relative;
}

.submenu {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.has-sub:hover>.submenu {
    opacity: 1;
    visibility: visible;
}

.custom_header {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 999;
}

.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    padding: 10px;
}

.header_logo img {
    width: 80px;
}

.desktop_menu ul {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop_menu ul li {
    position: relative;
    /* background-color: #fff; */
    padding: 10px;
    border-radius: 3px;
}

.desktop_menu ul li a {
    /* color: #fff; */
}

.submenu_parent {
    padding: 15px 22px 13px !important;
    border-bottom: 1px solid #d3d3d326;
}

.desktop_menu ul li .dm_a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    font-size: 20px;
}

.header_right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sign_btn {
    text-decoration: none;
    font-size: 20px;
    color: #111;
    font-weight: 500;
}

.menu_toggle {
    display: none;
    border: none;
    background: none;
    font-size: 26px;
}

.mega_menu {
    position: absolute;
    top: 100%;
    left: 0;
    gap: 0px !important;
    min-width: 230px;
    /* background: #192987; */
    background: #fff;
    align-items: normal !important;
    /* padding: 20px !important; */
    display: none !important;
    flex-direction: column !important;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08); */
    box-shadow: 0 9px 12px rgba(0, 0, 0, .5);
    border-radius: 3px;
}

.submenu_parent:hover {
    background: #192987;
    color: #fff;
    border-radius: 0;
}

.submenu_parent>a {
    color: black;
}

.submenu_parent:hover>a {
    color: #fff;
}



.mega_parent:hover .mega_menu {
    display: flex !important;
}

.submenu_parent {
    position: relative;
}

.submenu_inner {
    display: none !important;
    position: absolute;
    top: 0;
    left: 100%;
    gap: 0px !important;
    min-width: 230px;
    background: #fff;
    /* background: #192987; */
    /* padding: 15px !important; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, .5);
    z-index: 99;
    border-radius: 3px;
    border-bottom: 1px solid #d3d3d326;
}

.submenu_inner li {
    position: relative;
    /* background-color: #fff; */
    padding: 15px 22px 13px !important;
    /* border-radius: 3px; */
    width: 100%;
    border-bottom: 1px solid #d3d3d326;
}

.submenu_inner .active_link {
    background-color: #192987;
}

.submenu_inner .active_link a {
    color: #fff;
}

.submenu_inner li:hover {
    background-color: #192987;
}

.submenu_inner li:hover>a {
    color: #fff;
}

/* hover pe show */
.submenu_parent:hover .submenu_inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px;
}

.desktop_menu ul li .dm_a.active_link {
    color: #0d6efd;
    font-weight: 600;
}

/* mobile */

.mobile_sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    padding: 25px;
    transition: 0.4s;
}

.mobile_sidebar.active {
    left: 0;
}

.mobile_sidebar ul {
    list-style: none;
    padding: 7px 0;
    /* margin-top: 40px; */
}

.mobile_sidebar ul li {
    margin-bottom: 12px;
}

.mobile_sidebar ul li .dm_a {
    text-decoration: none;
    color: #111;
    font-size: 18px;
}

.close_menu {
    border: none;
    background: none;
    font-size: 26px;
}

.menu_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 9998;
}

.menu_overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile_dropdown_btn,
.mobile_submenu_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    /* padding: 10px 0; */
}

.mobile_submenu,
.mobile_inner_submenu {
    display: none;
    padding-left: 15px;
}

.mobile_submenu.active,
.mobile_inner_submenu.active {
    display: block;
    /* color: #fff; */
    /* background: #0d6efd; */
    padding: 8px 10px;
    font-weight: 600;
}

.mobile_inner_submenu li {
    margin-bottom: 10px;
}

.mobile_inner_submenu li a {
    color: #111;
    text-decoration: none;
    font-size: 15px;
}

/* active menu */
.mobile_sidebar ul li a.active_link,
.mobile_sidebar ul li.active_link>.mobile_dropdown_btn,
.mobile_sidebar ul li.active_link>.mobile_submenu_btn {
    color: #0d6efd;
    background: #f1f7ff;
    padding: 8px 10px;
    font-weight: 600;
}

.mobile_sidebar ul li a.active_link {
    background: #f1f7ff;
    padding: 8px 10px;
    border-radius: 0px;
    display: inline-block;
    width: 100%;
}


/* header */


/* ype_section start */
.ype_section {
    /* border: 1px solid; */
    padding: 4rem 0 4rem;
}

.ype_content {
    padding: 0 30px;
}

.ype_content h2 {
    margin-bottom: 1.2rem;
}

.ype_content p {
    font-size: 19px;
    text-align: justify;
}

/* .ype_content button {
    background: linear-gradient(135deg, #0B0B4F, #1E2A8A, #1A0F5E);
    border: 1px solid var(--theme-gold);
    padding: 15px 28px;
    font-size: 19px;
    color: #fff;
    margin-top: 1.2rem;
} */

.ype_video {
    padding: 20px 20px 0 0;
    width: 100%;
    /* border: 2px solid red; */
}

.ype_video video {
    height: 580px;
}

/* ype_section end */

/* esd_section start */
.esd_section {
    background: linear-gradient(135deg, var(--theme_blue_dark_1), var(--theme_blue_avg_1), var(--theme_blue_dark_2));
    /*padding: 3rem 0 3.5rem;*/
    padding: 20px 0;
}

.esd_heading_div {
    font-size: 25px;
    letter-spacing: 2px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(90deg, #f3d98b, #c9a24d, #9f7725);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.esd_card_white {
    /* background-color: var(--white_color); */
    padding: 20px;
    border: 1px solid lightgrey;
    text-align: center;
    border-radius: 15px;
    transition: transform 0.4s ease;
    /* box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px; */
    display: flex;
    align-items: center;
    width: 49%;
    margin-bottom: 5px;
    justify-content: center;
    height: 140px;
}

.esd_card_white>div>i {
    font-size: 30px;
    margin-right: 1rem;
    color: #fff;
}


.esd_card_gold {
    padding: 20px;
    border: 1px solid var(--theme-gold);
    text-align: center;
    border-radius: 15px;
    /* background: linear-gradient(180deg, #e9c56a, #b98a2e); */
    /* color: #ffffff; */
    transition: transform 0.4s ease;
    /* box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px; */
}

.esd_card_gold h3,
.esd_card_white h3 {
    font-size: 21px;
    /* margin-top: 1.1rem; */
    color: #fff;
}

.esd_card_gold p,
.esd_card_white p {
    color: #fff;
    margin-bottom: 10px;
}

.esd_card_white .esdc_num,
.esd_card_gold .esdc_num {
    width: 45px;
    height: 45px;
    /* background: linear-gradient(180deg, #f3d98b, #c9a24d); */
    color: #3a2a12;
    border: 1px solid var(--theme-gold);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.esd_card_white button {
    background: linear-gradient(135deg, #0B0B4F, #1E2A8A, #1A0F5E);
    border: 1px solid var(--theme-gold);
    padding: 9px 16px;
    font-size: 16px;
    border-radius: 8px;
    color: #fff;
}

.esd_card_gold button {
    background: linear-gradient(135deg, #0B0B4F, #1E2A8A, #1A0F5E);
    border: 1px solid var(--theme-gold);
    padding: 9px 16px;
    /* background-color: #fff; */
    font-size: 16px;
    border-radius: 8px;
    color: #fff;
}

.esd_card_gold:hover,
.esd_card_white:hover {
    transform: translateY(-5px);
}

/* esd_section end */

/* our gallery section start */

.our_gallery_section {
    padding: 4rem 0 0;
}

.ogs_heading_div h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.ogs_one {
    /* border: 2px solid red; */
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}

.ogs_one img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.ogs_one:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
}

.ogs_one:hover .overlay {
    opacity: 1;
}

.zoom_icon {
    color: #fff;
    font-size: 40px;
    /* border: 2px solid #fff; */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.ogs_one:hover .zoom_icon {
    transform: scale(1.1);
}

/* our gallery section end */




/* alies section start */
.custom_slider {
    position: relative;
    overflow: hidden;
}

.slider_view {
    overflow: hidden;
    width: 100%;
}

.slider_track {
    display: flex;
    transition: transform 0.5s ease;
}

.card_box {
    min-width: calc(100% / 6);
    padding: 10px;
    box-sizing: border-box;
    text-align: -webkit-center;
}

.card_box>div {
    /* background: #eee; */
    /* padding: 40px; */
    height: 70px;
    width: 170px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid grey;
    align-content: center;
}

.card_box>div>img {
    /* width: 100%; */
    /* height: 100%; */

}

/* Buttons */
.prev_btn,
.next_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 2;
}

.prev_btn {
    left: 10px;
}

.next_btn {
    right: 10px;
}

.my_alies_section {
    background-color: #f9f9f9;
    padding: 3rem 0;
}

/* alies section end */



/* index banner section */
.banner_section {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.banner_slider {
    overflow: hidden;
}

.banner_track {
    display: flex;
    transition: transform 0.8s ease;
    height: 600px;
}

.banner_slide {
    min-width: 100%;
    position: relative;
}

/* Image */
.banner_slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* Overlay */
.banner_slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* Content */
.banner_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 2;
    text-align: center;
    width: 90%;
    /* border: 2px solid red; */
}

.banner_content h1 {
    font-size: 65px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    margin: 1rem 0;
}

.banner_content p {
    margin-bottom: 15px;
    font-size: 23px;
    margin-top: 1rem;
}

.banner_content button {
    padding: 17px 25px;
    background: linear-gradient(135deg, #0B0B4F, #1E2A8A, #1A0F5E);
    border: 1px solid var(--theme-gold);
    cursor: pointer;
    font-family: lora;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
}

.banner_prev,
.banner_next {
    position: absolute;
    /* top: 50%; */
    /* transform: translateY(-50%); */
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: 1px solid;
    padding: 10px 20px;
    cursor: pointer;
    bottom: 6rem;
    z-index: 3;
    font-size: 18px;
    border-radius: 7px;
}

.banner_prev,
.banner_next {
    position: static;
}

.banner_buttons {
    position: absolute;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 3;
}

.banner_stars i {
    color: var(--theme-gold);
    margin: 0 5px;
}

/* index banner section */

/* sfbb_section */
.sfbb_section {
    min-height: 23.5vh;
    padding: 0 2rem;
}

.sfbb_section .container {
    position: relative;
    width: 100%;
}

.sfbb_container_in {
    border-top: 3px solid var(--theme-gold);
    padding: 50px 70px;
    background: linear-gradient(135deg, #0B0B4F, #1E2A8A, #1A0F5E);
    border-radius: 20px;
    margin-top: -2rem;
    left: 0;
    width: 100%;
    position: absolute;
}

.sfbb_form label {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

.sfbb_form input,
.sfbb_form select {
    padding: 13px 15px;
}

.sfbb_form button {
    background-color: var(--theme-gold);
    color: #fff;
    text-transform: uppercase;
    padding: 13px 15px;
    border: 1px solid var(--theme-gold);
    width: 100%;
    margin-top: 1rem;
    border-radius: 7px;
}

.align_self_end {
    align-self: end;
}

/* sfbb_section */


/* Wrapper */
.guest-toggle {
    border: 1px solid #ddd;
    padding: 13px 12px 12px;
    border-radius: 6px;
    cursor: pointer;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Dropdown box */
.guest-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-top: 5px;
    padding: 12px;
    display: none;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Show dropdown */
.guest-dropdown.show {
    display: block;
}

/* Row layout */
.guest-row-index {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* Buttons */
.guest-control-style button {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    background: #fff;
    color: grey;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1;
}

.guest-control-style button:hover {
    background: #c19d68;
    color: #fff;
    border-color: #c19d68;
}

/* Count number */
.guest-control-style span {
    min-width: 20px;
    text-align: center;
    font-weight: 500;
}

.guest-row-index {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e8e7e7;
    padding-bottom: 12px;
}

.guest-row-index:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.guest-row-index button {
    width: 40px;
    height: 40px;
    border: 1px solid lightgray;
    background: #fff;
    margin: 0 10px;
}


footer {
    /* border: 1px solid green; */
    padding: 3rem 0 3rem 0;
    /* height: 118vh; */
    background-color: #c29d6836;
}

footer .fs_h3 {
    font-size: 18px;
    font-weight: 100;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
}

footer .fs_h3::after {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background-color: var(--theme-gold3);
    margin-top: 5px;
}

.use_links {
    padding: 0;
}

.use_links li {
    list-style-type: none;
    margin: 15px 0;
}

.use_links li a {
    font-family: Lora;
    font-size: 18px;
    text-decoration: none;
    color: #000;
}

.fc_details ul {
    list-style-type: none;
    padding: 0;
}

.fc_details ul li {
    font-size: 18px;
    margin: 20px 0;
}

.fc_details ul li i {
    color: var(--theme_blue_dark_3);
}

.fc_rel_div {
    position: relative;
    /*padding: 2rem 1.5rem 2rem;*/
}

.fc_abs_div {
    /* position: static; */
    /*position: absolute;*/
    padding: 20px 0px 0px;
    /* margin-top: -13.5rem; */
    top: -13.5rem;
    left: 0;
    z-index: 3;
    border-radius: 10px;
    /* border: 1px solid gray; */
    /*background-color: #fff;*/
}


.fc_abstop {
    display: flex;
    align-items: center;
}

.fc_abstop h2 {
    font-size: 22px;
    font-weight: 500;
    font-style: normal;
    margin-bottom: 0rem;
}

.fs_gallery {
    display: flex;
    flex-wrap: wrap;
}

.fs_gallery .fsg1 {
    /* border: 1px solid; */
    width: 100%;
    padding: 10px;
}

.fs_gallery .fsg1 img {
    width: 100%;
    border-radius: 10px;
}

.fs_form .fc_h4 {
    font-size: 19px;
    font-weight: normal;
    color: var(--grey_color2);
}

.fc_form input {
    padding: 20px;
    width: 100%;
    margin-top: 14px;
    border-radius: 10px;
}

.fc_form input::placeholder {
    text-align: center;
    font-size: 18px;
}

.fc_form button {
    padding: 20px;
    width: 100%;
    background-color: var(--theme_blue_dark_3);
    font-family: "Cormorant Garamond";
    border: transparent;
    margin-top: 16px;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
}

.fc_social_icons i {
    background-color: var(--theme_blue_dark_3);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 100%;
    text-align: center;
    align-content: center;
    font-size: 18px;
    margin-right: 0.5rem;
}

.fbs {
    background: linear-gradient(135deg, #0B0B4F, #1E2A8A, #1A0F5E);
    padding: 22px 0;
}

.fbs p {
    text-align: center;
    font-family: lora;
    color: #fff;
    margin-bottom: 0;
    font-size: 18px;
}


.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
}

/* Overlay hidden by default */
.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: 0.3s ease;
}

/* Icon style */
.gallery-item .overlay i {
    color: #fff;
    font-size: 30px;
}

/* Show overlay on hover */
.gallery-item:hover .overlay {
    opacity: 1;
}



    #filteronmobile {
        display: none;
    }

    .align-items-center {
        align-items: center;
    }

    .section_heading_div h2 {
        font-size: 35px;
        font-weight: 700;
    }

    .ype_content h2 {
        font-size: 35px;
        font-weight: 700;
    }

    .ogs_heading_div h2 {
        font-size: 35px;
        font-weight: 700;
    }

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

    .flxstarimgL i {
        font-size: 13px;
    }

    .swiper_cart_top h5 {
        font-size: 17px;
        margin-bottom: 0px;
    }

    .swiper_cart_top {
        align-items: center;
    }

    @media(max-width:991.9px) {
        #filteronmobile {
            display: flex;
            justify-content: space-between;
            border: 1px solid lightgray;
            padding: 10px;
            align-items: center;
        }

        .location_flex {
            display: none;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            padding: 10px 10px;
            background-color: beige;
            margin-bottom: 1.5rem;
        }

        .locations_tabs {
            margin: 6px 0;
        }
    }
