html {
    scroll-behavior: smooth;
}

*, ::after, ::before {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none !important;
    color: var(--colorPrimary);
}

.base_margin {
    min-height: 700px;
    margin-top: 77px;
    background-color: white;
}

.toolbar_root {
    position: fixed;
    top: 0;
    z-index: 9990;
    width: 100%;
    min-height: 60px;
    background: white;
    transition: 0.4s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.toolbar_root #main_logo {
    width: 200px;
    height: 60px;
    margin: 8px 16px;
    transition: 0.4s;
    background: url("../images/regent_grand_logo@2x.png") no-repeat center;
    background-size: contain;
}

.menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    flex: 1 1 auto;
    padding: 0 14px;
}

.menu_item {
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: none;
    align-self: center;
    border: none;
    transition: 0.4s ease;
}

.menu_item span {
    color: #212121;
    padding: 8px 12px;
    font-size: 16px;
    white-space: nowrap;
    text-transform: capitalize;
    font-weight: 500;
    margin: 0 2px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    transition: 0.4s ease;
}

.menu_item:hover > span {
    color: white;
    background: var(--colorAccent);
}

.menu_item.social_icon span {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    transition: 0.4s ease;
}

.drawer_item {
    display: flex;
}

.drawer_item span {
    padding: 10px 10px 10px 30px;
    font-size: 16px;
    transition: 0.4s;
    font-weight: 500;
}

.drawer_item.other_link {
    padding: 8px 20px;
    font-size: 14px;
    font-weight: bold;
}

.drawer_item:hover {
    background-color: #f6f6f6;
}

.drawer_item.other_link:hover {
    color: var(--colorAccent);
    background-color: transparent;
}

.main_content {
    width: 100%;
    padding: 0 12px;
    max-width: 1400px;
}

.home-sideNav-virtual-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.3);
}

.home-sideNav {
    position: fixed;
    top: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    display: flex;
    flex-direction: row;
    z-index: 9999;
    right: -100%;
    overflow: hidden;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.side_navigation {
    position: relative;
    background-color: white;
    z-index: 1;
    width: 100%;
    overflow-y: scroll;
}

.side_navigation::-webkit-scrollbar {
    display: none;
}

.side_navigation_content_wrapper {
    overflow-y: auto;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px 20px 20px;
}

.side_navigation_content {
    overflow-y: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.accent_button {
    background-color: var(--colorAccent);
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    outline: none;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    transition: 0.4s;
}

.accent_button:hover {
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
    transition: 0.6s;
    transform: translateY(-5px);
}

.accent_button.bordered {
    background-color: transparent;
    border: 2px solid var(--colorAccent);
    color: var(--colorAccent);
}

.heading_tag {
    border: 2px solid #999999;
    color: #999999;
    padding: 10px 16px;
    border-radius: 8px;
    align-self: center;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 8px 8px 16px;
    line-height: 1;
    text-align: center;
}

.page_heading {
    color: #212121;
    font-size: 35px;
    padding: 8px 8px;
    font-weight: 500;
    text-align: center;
    margin: 4px 0;
    text-transform: uppercase;
    line-height: 1.2;
    font-family: "Amiri", serif;
    position: relative;
}

.page_sub_heading {
    color: #212121;
    font-size: 16px;
    padding: 0 8px 8px;
    text-align: center;
    line-height: 1.3;
}

.section_wrapper {
    padding: 40px 0;
}

.founder_message_section {
    background-image: url("../images/founder_message_bg@2x-100.jpg");
    background-size: cover;
    padding: 80px 0;
    background-position: center center;
}

.form_wrapper {
    width: 100%;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.7);
    padding: 24px;
}

.form_wrapper .title {
    text-align: center;
    font-size: 32px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: white;
    font-family: 'Amiri', sans-serif;
}

.form_wrapper p {
    margin: 0;
    padding: 0;
}

.form_wrapper label {
    font-size: 14px;
    padding: 8px 0;
    font-family: 'Montserrat', sans-serif;
}

.form_wrapper input, .form_wrapper select, .input_field {
    padding: 12px 16px;
    width: 100%;
    font-size: 14px;
    margin-bottom: 12px;
    background: white;
    font-family: "Montserrat", sans-serif;
    outline: none;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: all 0.4s;
}

.form_wrapper textarea {
    min-height: 100px;
    resize: vertical;
}

.form_wrapper input:focus, .form_wrapper select:focus, .form_wrapper textarea:focus, .input_field:focus {
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

.multi-select-menuitem {
    padding: 0.6em 1em 0.6em 38px !important;
}

.footer_wrapper {
    padding: 40px 0;
    background: #fbede0;
}

.footer_logo {
    width: 70%;
    min-width: 100px;
}

.footer_container {
    flex: 1 1 auto;
    padding: 20px;
    margin: 8px;
    max-width: 400px;
}

.footer_social_link {
    font-weight: 500;
    font-size: 15px;
    padding-top: 5px;
    width: 32px;
    height: 32px;
    text-align: center;
    color: var(--colorAccent);
    margin: 8px 4px;
    border-radius: 50%;
    border: 2px solid var(--colorAccent);
    transition: 0.4s ease;
}

.footer_social_link:hover {
    background-color: var(--colorAccent);
    color: white;
    border: 2px solid var(--colorAccent);
}

.footer_heading {
    color: #212121;
    font-weight: bold;
    margin: 8px;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
}

.footer_link {
    color: #212121;
    font-size: 14px;
    margin: 8px;
    line-height: 1.4;
}

.footer_link i {
    width: 20px;
    text-align: center;
    font-size: 18px;
    margin-top: 2px;
    margin-right: 16px;
}

.footer_link i {
    color: #212121;
}

#dialog-background {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    display: none;
}

.dialog-container {
    display: none;
    position: fixed;
    width: 90%;
    max-width: 500px;
    top: 50%;
    left: 50%;
    padding: 12px;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

.close-icon {
    position: absolute;
    width: 24px;
    height: 24px;
    text-align: center;
    top: 0;
    right: 0;
    margin: 16px;
    border-radius: 50%;
    font-size: 16px;
    padding: 4px;
    color: white;
    z-index: 9999;
    background-color: var(--colorAccent);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.content_page_sub_heading_content {
    color: #212121;
    font-size: 14px;
    margin: 0 16px;
    padding-bottom: 8px;
    font-family: "Montserrat", sans-serif;

}

.gallery_image {
    margin: 8px;
    width: calc(100% - 16px);
    object-fit: cover;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.4s ease;
}

.gallery_image.large {
    height: 500px;
}

.gallery_image.small {
    height: 300px;
}

.gallery_image:hover {
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}


.gallery_dialog_container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999;
    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.85);
}


.seminar_gallery_slide {
    position: relative;
}

.seminar_gallery_slide img {
    height: 100%;
    /*height: 500px !important;*/
    padding: 0 8px;
    object-fit: contain;
    object-position: center;
}


.seminar_gallery_thumbnail img {
    border: 2px solid var(--divider);
    height: 80px;
    object-fit: cover;
}

.seminar_gallery_thumbnail .current img {
    border: 2px solid var(--colorAccent)
}


.slide_nav {
    padding: 8px 12px;
    background: white;
    color: var(--colorAccent);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-theme .owl-nav {
    margin-top: 0 !important;
}

.slide_nav#gallery_left {
    left: 10px;
}


.slide_nav#gallery_right {
    right: 10px;
}

.testimonial_section_wrapper {
    background-image: url("../images/testimonials_bg@2x-100.jpg");
    background-size: cover;
    background-position: center center;
}

.testimonial_wrapper img {
    border-radius: 18px;
    height: 250px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 12px;
}

.testimonial_content_wrapper {
    border-radius: 18px;
    margin-bottom: 12px;
    background: white;
    padding: 16px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}

.testimonial_content_wrapper i {
    margin-right: 4px;
    color: var(--yellowColor);
}

.testimonial_content_wrapper p {
    margin-bottom: 24px;
}

.testimonial_content_wrapper span {
    font-weight: 500;
    color: #212121;
    font-size: 14px;
    line-height: 1.5;
}


.marquee_container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee_content_wrapper {

}

.marquee_content {
    flex: 0 0 auto;
}

.home_banner_section {
    background-image: url("../images/home_banner@2x-100.jpg");
    background-size: cover;
    background-position: left center;
    padding: 80px 0;
}

.home_banner_section_2 {
    background-image: url("../images/contact_page_banner@2x-100.jpg");
    background-size: cover;
    background-position: left center;
    padding: 80px 0;
}

.home_banner_section .title {
    color: white;
    font-weight: bold;
    font-size: 46px;
    text-transform: capitalize;
    line-height: 1.2;
    font-family: 'Amiri', sans-serif;
}

.home_banner_section .subtitle {
    color: white;
    font-size: 24px;
    line-height: 1.2;
    margin-top: 24px;
    text-transform: capitalize;
}

.text_content {
    color: #212121;
    font-size: 14px;
    padding: 0 8px 8px;
    text-align: center;
    line-height: 1.5;
}

.feature_item_wrapper {
    width: calc(100% / 5);
    padding: 16px;
}

.about_features_wrapper .feature_item_wrapper {
    width: calc(100% / 3);
}

.feature_item_wrapper img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    align-self: center;
    object-position: center;
}

.feature_item_wrapper span {
    color: #212121;
    font-weight: bold;
    margin-top: 12px;
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
    font-family: 'Amiri', sans-serif;
    line-height: 1;
}

.feature_item_wrapper span b {
    font-weight: normal;
    text-transform: capitalize;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
}

.about_features_wrapper .feature_item_wrapper img {
    width: 60px;
    height: 60px;
    align-self: flex-start;
}

.about_features_wrapper .feature_item_wrapper span {
    text-align: start;
    font-size: 20px;
}

.about_features_wrapper .feature_item_wrapper span b {
    font-size: 14px;
}

.room_item_container {
    padding: 8px;
    margin: 16px 0;
    max-width: 1200px;
    align-self: center;
}

.room_item_container .room_image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.room_item_container .content {
    margin: 0 16px;
    padding: 16px;
    border-bottom: 2px solid #999999;
    border-left: 2px solid #999999;
    border-right: 2px solid #999999;
}

.room_item_container .title {
    color: #212121;
    font-weight: 500;
    font-size: 20px;
    font-family: 'Google Sans Flex', sans-serif;
}

.room_item_container .description {
    color: #212121;
    font-size: 15px;
    line-height: 1.5;
    margin: 4px 0 0;
}

.room_item_container .occupancy {
    color: #212121;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    font-family: 'Google Sans Flex', sans-serif;
}

.room_item_container .divider {
    height: 1px;
    background: #999999;
    margin: 10px 0;
}

.room_item_container .amenities_icons {
    margin: 10px 0 24px;
}


.room_item_container.large {
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    border: 2px solid #999999;
}

.room_item_container.large .room_image {
    border-bottom-right-radius: 24px;
    border-top-right-radius: 24px;
    height: 100%;
    max-height: 400px;
}


.room_item_container.large .content {
    margin: 0;
    padding: 24px;
    border-bottom: none;
    border-left: none;
    border-right: none;
    align-self: center;
}

.room_item_container.large .title {
    font-size: 24px;
    margin-bottom: 4px;
}

.room_item_container.large .occupancy {
    font-size: 16px;
}

.reserve_table_feature > div {
    margin: 8px 0;
}

.reserve_table_feature span {
    font-family: "Google Sans Flex", sans-serif;
    font-size: 16px;
    margin: 4px;
}

.facility_icon_wrapper {
    width: calc(100% / 5);
    padding: 8px;
}

.facility_icon_wrapper img {
    width: 80px;
    height: 60px;
    object-fit: contain;
    align-self: center;
}

.facility_icon_wrapper span {
    font-size: 20px;
    margin-top: 18px;
    align-self: center;
    line-height: 1.2;
    text-align: center;
    max-width: 160px;
}

.facility_icon_wrapper span b {
    color: #999999;
    font-weight: normal;
    font-size: 12px;
}

.celebrity_item_wrapper {
    margin: 8px;
    border-radius: 12px;
    padding: 8px;
    background: white;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    transform: rotate(3deg);
}

.celebrity_item_wrapper img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.celebrity_item_wrapper span {
    color: #212121;
    font-weight: bold;
    font-size: 16px;
    margin: 8px 0;
    text-align: center;
}


.banner_heading_section {
    width: 100%;
    position: relative;
    padding: 180px 12px;
}

.banner_heading_section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner_heading_section span {
    font-weight: 500;
    font-size: 42px;
    color: white;
    text-align: center;
    line-height: 0.8;
    align-self: center;
    max-width: 600px;
    font-family: 'Amiri', sans-serif;
    text-transform: uppercase;
    z-index: 1;
}

.banner_heading_section span b {
    font-size: 20px;
    color: white;
    font-weight: normal;
    text-align: center;
    text-transform: capitalize;
    font-family: "Montserrat", sans-serif;
    z-index: 1;
}

.contact_details_wrapper {
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.contact_details_wrapper i {
    width: 36px;
    height: 36px;
    text-align: center;
    flex: 0 0 auto;
    line-height: 36px;
    border-radius: 50%;
    color: var(--colorAccent);
    background: rgba(230, 45, 43, 0.14);
    font-size: 18px;
    margin-right: 12px;
}

.contact_details_wrapper > div {
    margin: 8px 0;
}

.contact_details_wrapper span b {
    font-weight: 500;
    font-size: 18px;
}

.contact_details_wrapper span {
    color: #212121;
    line-height: 1.4;
    font-size: 14px;
    font-weight: normal;
}

.contact_details_wrapper p {
    color: #212121;
    line-height: 1.4;
}

.contact_form_wrapper p b {
    font-weight: 500;
}

.about_item_wrapper {
    width: calc(100% / 3);
    padding: 32px 8px;
}

.about_item_wrapper:nth-child(even) {
    background: rgba(245, 243, 238, 0.83);
}

.about_item_wrapper .image_wrapper {
    width: 100px;
    height: 100px;
    padding: 24px;
    border-radius: 50%;
    background: white;
    margin-bottom: 16px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.about_item_wrapper span {
    font-size: 28px;
    font-weight: 500;
    font-family: 'Amiri', sans-serif;
    line-height: 1;
}

.about_item_wrapper p {
    color: #212121;
    font-size: 16px;
    max-width: 300px;
    line-height: 1.5;
    text-align: center;
}

@media only screen and (max-width: 1000px) {
    .feature_item_wrapper, .about_features_wrapper .feature_item_wrapper {
        width: calc(100% / 2);
        padding: 16px;
    }

    .home_main_grid_item span {
        padding: 24px;
        font-size: 20px;
    }

    .logo_container {
        display: flex;
        flex: 1 1 auto;
    }

    .toolbar_root #main_logo {
        height: 46px;
        width: 160px;
        margin: 4px;
    }

    .page_heading {
        font-size: 26px;
    }

    .section_wrapper {
        padding: 30px 0;
    }

    .footer_container {
        margin: 0;
        padding: 24px 12px;
        width: calc(100%);
    }

    .base_margin {
        margin-top: 60px;
    }

    .room_item_container.large .room_image {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
        height: 100%;
        max-height: 400px;
    }

    .home_banner_section .title {
        font-size: 30px;
        text-align: center;
    }

    .home_banner_section .subtitle {
        font-size: 16px;
        margin-top: 16px;
        text-align: center;
    }

    .heading_tag {
        font-size: 14px;
    }


    .feature_item_wrapper img {
        width: 60px;
        height: 60px;
    }

    .feature_item_wrapper span {
        font-size: 20px;
    }

    .feature_item_wrapper span b {
        font-size: 14px;
    }

    .facility_icon_wrapper {
        width: calc(100% / 2);
        padding: 8px;
    }

    .facility_icon_wrapper span {
        font-size: 18px;
    }


    .celebrity_item_wrapper img {
        height: 250px;
    }

    .banner_heading_section {
        padding: 140px 12px;
    }


    .about_item_wrapper {
        width: calc(100%);
        padding: 32px 8px;
    }
}

