/**###########################################
#START


--------#####--------
Template Name: Omni Residency
Template URI: 
Description: This is HTML5 template
Author: Md Ridoy Khan
Author URI: https://github.com/mdridoykhan138
Support: ridoykhan.cse.web@gmail.com
Version: 1.0.0
--------#####--------

===========================
CSS INDEX
===========================

1) home
    1.1) others css area here
    1.2) header area here
    1.3) hero section area here
    1.4) hotel highlights area here
    1.5) about us area here
    1.6) facility area here
    1.7) amenities area here
    1.8) dining area here
    1.9) meetings area here
    1.10) offer section area here
    1.11) reviews section area here
    1.12) contact section area here
    1.13) main footer area here
    1.14) top up button area here
    1.15) welcome popup area here

2) rooms
    2.1) inner banner area here
    2.2) rooms area here

3) restaurant
    3.1) restaurant area here

4) meeting-and-event
    4.1) meeting and event area here

5) offer
    5.1) offer area here

6) gallery
    6.1) gallery area here

7) contact-us
    7.1) contact us area here
    7.2) google map area here

8) book-form
    8.1) book form area here


#theEND
###########################################**/

/*########################
1) home ---------------[########################]
########################*/


/*===========================
1.1) others css area here
===========================*/
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}
.row {
    margin-right: 0px;
    margin-left: 0px;
}
.col-md-12 {
    min-height: auto;
}
/* main button area here */
.main_btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white) !important;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    border: none;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(244, 127, 31, 0.3);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.main_btn:hover {
    color: var(--white) !important;
    background: #d96f1b;
    box-shadow: 0 6px 16px rgba(244, 127, 31, 0.4);
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
}
.main_btn:active {
  color: var(--white);
  background: #b85f17;
  transform: translateY(1px);
  box-shadow: 0 3px 10px rgba(244, 127, 31, 0.3);
}
.main_btn:focus {
  color: var(--white);
  outline: none;
  box-shadow: 0 0 0 4px rgba(244, 127, 31, 0.4);
}
/*---------------------------
1.1) others css area ends here
---------------------------*/


/*===========================
1.2) header area here
===========================*/
.header {
    position: fixed !important;
    top: 0;
    box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.1);
}
/* .sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: auto;
    padding: 0px 0;
    background: var(--primary);
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    z-index: 999;
    animation: 600ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-animation: 600ms ease-in-out 0s normal none 1 running fadeInDown;
} */
 .header,
.header .booking_header {
    transition: all 0.3s ease-in-out !important;
    -webkit-transition: all 0.3s ease-in-out !important;
    -moz-transition: all 0.3s ease-in-out !important;
    -ms-transition: all 0.3s ease-in-out !important;
    -o-transition: all 0.3s ease-in-out !important;
}

.sticky-header,
.sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: 600ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-animation: 600ms ease-in-out 0s normal none 1 running fadeInDown;
}
.sticky-header.show,
.sticky.show {
    opacity: 1;
}
@keyframes fadeInDown {
    from {
        opacity: 1;
}
    to {
        opacity: 1;
    }
}
.header .menu_header {
    border-bottom: 1px solid #e9ecef;
}
.header .navbar {
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0px 14px;
    margin: 0;
    overflow: hidden;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}
.sticky .navbar {
    border-bottom: none;
}
.header .navbar::after,
.header .navbar::before {
    display: none;
}
.header .desktop_menu ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.header .desktop_menu ul li a {
    font-size: 18px !important;
    line-height: 28px;
    font-weight: 400;
    color: var(--dark-color);
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}
.header.sticky .desktop_menu ul li a:hover {
    color: var(--primary-color) !important;
}
.header .desktop_menu ul li a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    left: -110%;
    bottom: 0px;
    background-color: var(--primary-color);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}
.header .desktop_menu ul li a:hover::after {
    left: 0%;
}
.sticky .desktop_menu ul li a:hover::after {
    background: var(--primary-color);
}
.header .navbar .menu-icon {
    position: inherit;
    display: none;
    background: var(--primary-color);
    width: 24px;
}
.company_logo .logo {
    position: absolute;
    top: 100px;
    left: 50%;
    margin: 0px !important;
    z-index: 1111;
    transform: translate(-40px, 0px);
    -webkit-transform: translate(-40px, 0px);
    -moz-transform: translate(-40px, 0px);
    -ms-transform: translate(-40px, 0px);
    -o-transform: translate(-40px, 0px);
}
.company_logo .logo a {
    display: inline-block;
}
.company_logo .logo a img {
    width: 80px;
}
/* .header .top-banner .container-fluid {
    background: inherit;
    box-shadow: inherit;
}
.header .top-banner .header-links a {
    margin: 0;
}
.header .top-banner .header-links a:not(:last-child) {
    margin-right: 10px;
} */
.header .container-fluid {
    padding: 0px 40px;
    box-shadow: none !important;
}
.header > .container-fluid {
    border-bottom: 1px solid #e9ecef;
}
/* .header .booking_header .container-fluid {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
} */
.header .booking_header .container-fluid:first-child {
    border-bottom: 1px solid #e9ecef;
}
/* .header .top-banner {
    background: var(--primary-color);
    color: white;
    padding: 8px 0;
    position: relative;
    z-index: 1001;
} */
.header .banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    line-height: 100%;
    gap: 24px;
}
.header .banner-content .header-links {
    line-height: 100%;
}
.header .header-links a {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 5px 12px;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 400;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.header .header-links a:hover {
    background: var(--white);
    color: #d96f1b !important;
    border: 2px solid transparent;
}
.header .header-links img {
    height: 35px;
}
.header .navbar .social {
    position: inherit;
}
.header .navbar .social ul {
    display: flex !important;
    gap: 14px;
    padding: 0px !important;
}
.header .navbar .social ul li {
    padding: 0px !important;
}
.header .navbar .social ul li a {
    font-size: 16px !important;
}
.header.sticky .navbar .social ul li a:hover {
    color: #211f20 !important;
}
.header.sticky .navbar .social ul li a:hover i {
    color: #211f20 !important;
}
.header .navbar .social ul li a i {
    padding: 0px;
}
.header .navbar .social ul li a:hover i {
    color: var(--primary) !important;
}
.header .nav ul {
    padding-top: 0px !important;
    display: flex !important;
    flex-direction: column;
}
.header .nav ul li {
    padding: 0px !important;
    line-height: 100%;
    margin: 0px !important;
    border: none !important;
}
.header .nav ul li:not(:last-child) {
    margin-bottom: 14px !important;
}
.header .nav ul li a {
    padding: 0px;
    line-height: 120%;
    display: block;
    color: var(--white);
    font-size: 24px;
    line-height: 100%;
    font-family: "Roboto", sans-serif;
}
.header .nav ul li a:active {
    color: var(--primary);
}
.header .nav ul li a:hover {
    font-weight: 700 !important;
    color: var(--white) !important;
}
.header .nav .lite-text {
    display: none;
}
.header .desktop_menu ul li a:hover {
    color: var(--primary-color) !important;
}
.header .navbar .logo {
    text-align: inherit !important;
}
.header .navbar .logo a {
    display: inline-block;
}
.header .navbar .logo a img {
    height: 60px;
}
.header .header_map {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0px 8px;
    position: relative;
    z-index: 1;
}
.header .header_map .content {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header .header_map .content h4 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    color: var(--dark-color);
}
.header .header_map .content .star {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header .header_map .star ul {
    display: flex;
    align-items: center;
    gap: 2px;
}
.header .header_map .star ul li {
    line-height: 100%;
    font-size: 16px;
    color: #FFD700;
}
.header .header_map .star .rating_percent {
    display: inline-block;
    line-height: 100%;
    font-size: 18px;
    color: var(--dark-color);
}
.header .header_map .star .rating_text {
    display: inline-block;
    line-height: 100%;
    font-size: 18px;
    color: var(--dark-color);
    text-decoration: underline;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.header .header_map .star .rating_text:hover {
    color: var(--primary-color) !important;
}
.header .header_map .right > ul {
    display: flex;
    align-items: center;
    gap: 20px;
    line-height: 100%;
}
.header .header_map .right > ul li {
    line-height: 100%;
}
.header .header_map .right .map a {
    font-size: 18px;
    line-height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    text-decoration: underline;
    color: var(--dark-color);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.header .header_map .right .map a:hover {
    color: var(--primary-color) !important;
}
.header .header_map .right .phone {
    font-size: 18px;
    line-height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    text-decoration: underline;
    color: var(--dark-color);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.header .header_map .right .phone:hover {
    color: var(--primary-color);
}
.header .header_map .right .phone span {
    display: inline-block;
}
.booking_header .booking-widget {
    display: flex;
    align-items: center;
    gap: 20px;
}
.booking_header .widget-section {
    flex: 1;
    padding: 10px 0px;
    border-right: 1px solid #e5e7eb;
    cursor: pointer;
    position: relative;
    text-align: start;
}
.booking_header .widget-section:hover {
    background: #f9fafb;
}
.booking_header .widget-section:last-child {
    border-right: none;
}
.booking_header .widget-section.guests-section {
    flex: 0.8;
}
.booking_header .section-label {
    font-size: 13px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 8px;
}
.booking_header .section-label i {
    font-size: 16px;
}
.booking_header .section-value {
    font-size: 15px;
    color: var(--dark-color);
    font-weight: 500;
}
.booking_header .search-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--darkBg) 100%);
    color: var(--dark-color);
    border: none;
    border-radius: 40px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.booking_header .search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(189, 185, 75, 0.4);
}
.booking_header .search-button i {
    font-size: 18px;
}
.booking_header .guests-dropdown {
    position: absolute;
    top: calc(100%);
    left: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    width: 100%;
    z-index: 1000;
    max-width: 279px;
    display: none;
    animation: bookingWidgetWrapperSlideDown 0.3s ease;
    -webkit-animation: bookingWidgetWrapperSlideDown 0.3s ease;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.booking_header .guests-dropdown.active {
    display: block;
}
@keyframes bookingWidgetWrapperSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.booking_header .guest-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f3f4f6;
    padding: 10px 0px;
}
.booking_header .guest-row:last-child {
    border-bottom: none;
}
.booking_header .guest-label {
    font-size: 16px;
    line-height: 100%;
    color: var(--dark-color);
    font-weight: 500;
}
.booking_header .guest-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}
.booking_header .guest-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    background: var(--white);
    color: var(--dark-color);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.booking_header .guest-btn:hover:not(:disabled) {
    border-color: #48840b;
    color: #48840b;
}
.booking_header .guest-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.booking_header .guest-count {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    min-width: 30px;
    text-align: center;
}
.booking_header .dropdown-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.booking_header .widget-section .main_btn {
    width: 100%;
}
.booking_header .flatpickr-input {
    border: none;
    background: transparent;
    font-size: 15px;
    color: var(--dark-color);
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    outline: none;
}
.booking_header .flatpickr-input::placeholder {
    color: var(--dark-color);
}
.header .main_btn {
    padding: 9px 30px;
    font-size: 16px;
    line-height: 26px;
}
/*---------------------------
1.2) header area ends here
---------------------------*/


/*===========================
1.3) hero section area here
===========================*/
.hero-section {
    overflow: hidden;
    position: relative;
    margin-top: 205px;
    z-index: 0;
}
.hero-section .carousel-control-prev {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white);
    left: 60px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}
.hero-section .carousel-control-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white);
    right: 60px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}
.hero-section .slide-text {
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    top: 50%;
    z-index: 1;
    transform: translate(0px, -50%);
    -webkit-transform: translate(0px, -50%);
    -moz-transform: translate(0px, -50%);
    -ms-transform: translate(0px, -50%);
    -o-transform: translate(0px, -50%);
}
.hero-section .slide-text>h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 50px;
    font-weight: 500;
    line-height: 55px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: "Poppins", sans-serif;
    letter-spacing: -1px;
}
.hero-section .slide-text .sub-title {
    margin: 0px 0px 20px;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    opacity: 0.9;
    color: var(--white);
}
.hero-section .slide-text a.section_button {
    font-size: 16px !important;
    line-height: 20px;
    text-transform: uppercase;
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.hero-section .bs-slider-overlay {
    background-color: inherit;
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
}
/*---------------------------
1.3) hero section area ends here
---------------------------*/


/*---------------------------
1.4) hotel highlights area here
---------------------------*/
.hotel-highlights {
    background: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.hotel-highlights .highlight-icon {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 16px;
}
.hotel-highlights .highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.hotel-highlights .highlight-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}
.hotel-highlights .highlight-item:hover {
    transform: translateY(-5px);
}
.hotel-highlights .highlight-item h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--dark-color);
}
.hotel-highlights .highlight-item p {
    font-size: 18px;
    line-height: 26px;
    margin: 0;
    color: var(--dark-color);
}
/*===========================
1.4) hotel highlights area here
===========================*/


/*===========================
1.5) about us area here
===========================*/
.about-us {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background: var(--bg_color);
    margin: 0 !important;
}
.about-us h2 {
    font-size: 40px;
    line-height: 50px;
    color: var(--dark-color);
    font-weight: 500;
    opacity: inherit;
    letter-spacing: inherit;
    text-transform: capitalize;
    margin: 0px 0px 40px 0px;
}
.about-us .about-us-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}
.about-us .content h3 {
    font-size: 30px;
    line-height: 36px;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    color: var(--dark-color);
    text-align: start;
    padding: 0;
    margin: 0px 0px 20px 0px;
}
.about-us .content p {
    font-size: 18px;
    line-height: 28px;
    color: var(--sub-dark-color);
    margin: 0;
    font-family: "Roboto", sans-serif;
    text-align: start;
}
.about-us .thumb img {
    width: 100%;
    height: auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 10px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    margin: 0;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.about_photo_slider {
    padding: 40px 0px 0px;
}
.about_photo_slider .items {
    display: flex;
    align-items: center;
    justify-content: center;
}
.about_photo_slider .item {
    margin-right: 20px !important;
}
.about_photo_slider .item img {
    margin: 0;
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
/*---------------------------
1.5) about us area ends here
---------------------------*/


/*===========================
1.6) facility area here
===========================*/
.facility {
    padding: 60px 0px;
    background: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.facility .row {
    margin: 0px;
}
.facility .section-header {
    margin-bottom: 40px;
    text-align: center;
}
.facility .section-header h2 {
    font-size: 40px;
    line-height: 50px;
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 10px;
}
.facility .section-header p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--sub-dark-color);
    max-width: 700px;
    margin: 0 auto;
}
.facility .heading p {
    color: #666;
    margin-bottom: 50px;
}
.facility .facility-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.facility-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.facility .facility-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}
.facility-item .hover14 {
    height: 200px;
    position: relative;
}
.facility-item .hover14 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.facility-item .hover14:hover:after {
    width: inherit;
}
.facility-item:hover .hover14::after {
    width: 100%;
    background-color: rgba(255, 255, 255, 0);
    -webkit-transition: all 0.8s ease-out;
    -moz-transition: all 0.8s ease-out;
    -ms-transition: all 0.8s ease-out;
    -o-transition: all 0.8s ease-out;
    transition: all 0.8s ease-out;
}
.facility-item .text {
    padding: 20px;
}
.facility-item .text h3 a {
    color: var(--dark-color);
    font-size: 24px;
    line-height: 30px;
    display: block;
}
.facility-item .text h3 a:hover {
    color: var(--primary-color);
}
.facility-item .text p {
    min-height: auto;
    margin: 0;
    overflow: hidden;
    color: var(--sub-dark-color);
    font-size: 18px;
    line-height: 26px;
    padding: 10px 0px 0px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.facility .main_btn {
    padding: 8px 30px;
    border-radius: 6px;
    font-size: 15px;
    line-height: 25px;
}
.facility .see-more-wrapper {
    text-align: center;
    margin: 40px 0px 0px;
}
.facility .see-more-wrapper .main_btn {
    border-radius: 50px;
    padding: 12px 40px;
    font-size: 18px;
}
.facility .room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0px;
}
.facility .room-amenities span {
    background: var(--bg_color);
    color: var(--sub-dark-color);
    padding: 8px 10px;
    font-size: 12px;
    line-height: 100%;
    font-weight: 500;
    border-radius: 50px;
    border: 1px solid #e9ecef;
    display: inline-block;
}
.facility .room-price {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.facility .room-price .price {
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    color: var(--primary-color);
}
.facility .room-price .per-night {
    font-size: 12px;
    color: var(--sub-dark-color);
    margin: 0;
}
/*---------------------------
1.6) facility area ends here
---------------------------*/


/*===========================
1.7) amenities area here
===========================*/
.amenities-section {
    padding: 60px 0;
    background: var(--bg_color);
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.amenities-section .section-header {
    margin-bottom: 40px;
    text-align: center;
}
.amenities-section .section-header h2 {
    font-size: 40px;
    line-height: 50px;
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 10px;
}
.amenities-section .section-header p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--sub-dark-color);
    max-width: 700px;
    margin: 0 auto;
}
.amenities-section .amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.amenities-section .amenity-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.amenities-section .amenity-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
}
.amenities-section .amenity-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.amenities-section .amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.amenities-section .amenity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    opacity: 0;
    padding: 20px;
    transition: opacity 0.3s ease;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
}
.amenities-section .amenity-card:hover .amenity-overlay {
    opacity: 1;
}
.amenities-section .amenity-overlay h3 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 6px;
}
.amenities-section .amenity-overlay p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
}
.amenities-section .amenity-overlay a {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: var(--white);
    border-bottom: 2px solid var(--white);
    padding-bottom: 2px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.amenities-section .amenity-overlay a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
}
.amenities-section .amenity-info {
    text-align: start;
    padding: 25px 20px;
}
.amenities-section .amenity-category {
    color: var(--primary-color);
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: inline-block;
}
.amenities-section .amenity-info h4 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 14px;
    color: var(--dark-color);
}
.amenities-section .amenity-info p {
    margin: 0;
    font-size: 18px;
    line-height: 26px;
    color: var(--sub-dark-color);
}
/*---------------------------
1.7) amenities area ends here
---------------------------*/


/*===========================
1.8) dining area here
===========================*/
.dining-section {
    padding: 60px 0;
    background: var(--white);
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.dining-section .section-header {
    margin-bottom: 40px;
    text-align: center;
}
.dining-section .section-header h2 {
    font-size: 40px;
    line-height: 50px;
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 10px;
}
.dining-section .section-header p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--sub-dark-color);
    max-width: 700px;
    margin: 0 auto;
}
.dining-section .dining-grid {
    display: grid;
    gap: 40px;
}
.dining-section .dining-venue {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 30px;
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.dining-section .dining-venue:nth-child(even) {
    direction: rtl;
}
.dining-section .dining-venue:nth-child(even) .dining-content {
    direction: ltr;
}
.dining-section .dining-image {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    -webkit-transition: transform 0.6s ease, box-shadow 0.6s ease;
    -moz-transition: transform 0.6s ease, box-shadow 0.6s ease;
    -ms-transition: transform 0.6s ease, box-shadow 0.6s ease;
    -o-transition: transform 0.6s ease, box-shadow 0.6s ease;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
.dining-section .dining-image .dining-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.dining-section .dining-image:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}
.dining-section .dining-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.5s ease;
    -webkit-transition: opacity 0.5s ease;
    -moz-transition: opacity 0.5s ease;
    -ms-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.dining-section .dining-image:hover::before {
    opacity: 1;
}
.dining-section .dining-hours {
    position: absolute;
    left: 20px;
    color: var(--white);
    font-size: 14px;
    line-height: 1.6;
    opacity: 0;
    z-index: 2;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transform: translateY(20px);
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
}
.dining-section .dining-image:hover .dining-hours {
    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}
.dining-section .dining-hours {
    position: absolute;
    top: 20px;
    left: 20px;
    text-align: left;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    line-height: 1.4;
}
.dining-section .dining-hours span {
    display: block;
    font-size: 10px;
    line-height: 16px;
    color: var(--white);
}
.dining-section .dining-content {
    text-align: left;
}
.dining-section .dining-content h3 {
    color: var(--dark-color);
    font-size: 30px;
    line-height: 40px;
    display: block;
    margin-bottom: 10px;
}
.dining-section .cuisine-type {
    color: var(--primary-color);
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.dining-section .dining-content p {
    overflow: hidden;
    color: var(--sub-dark-color);
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 20px;
}
.dining-section .dining-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.dining-section .main_btn {
    font-size: 15px;
    line-height: 25px;
    padding: 8px 30px;
}
.dining-section .dining-features span {
    background: var(--bg_color);
    color: var(--sub-dark-color);
    padding: 8px 10px;
    font-size: 12px;
    line-height: 100%;
    font-weight: 500;
    border-radius: 50px;
    border: 1px solid #e9ecef;
    display: inline-block;
}
/*---------------------------
1.8) dining area ends here
---------------------------*/


/*===========================
1.9) meetings area here
===========================*/
.meetings-section {
    padding: 60px 0;
    background: var(--bg_color);
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.meetings-section .section-header {
    margin-bottom: 40px;
    text-align: center;
}
.meetings-section .section-header h2 {
    font-size: 40px;
    line-height: 50px;
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 10px;
}
.meetings-section .section-header p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--sub-dark-color);
    max-width: 700px;
    margin: 0 auto;
}
.meetings-section .meetings-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}
.meetings-section .meetings-overview {
    text-align: left;
}
.meetings-section .meetings-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}
.meetings-section .stat-item {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.meetings-section .stat-number {
    font-size: 36px;
    line-height: 100%;
    font-weight: 700;
    color: var(--primary-color);
}
.meetings-section .stat-label {
    font-size: 12px;
    line-height: 20px;
    color: var(--sub-dark-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}
.meetings-section .meetings-features h3 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 14px;
    color: var(--dark-color);
}
.meetings-section .meetings-features ul {
    list-style: none;
    margin-bottom: 30px;
}
.meetings-section .meetings-features li {
    color: var(--sub-dark-color);
    padding-left: 30px;
    position: relative;
    font-size: 18px;
    line-height: 28px;
}
.meetings-section .meetings-features li:not(:last-child) {
    margin-bottom: 14px;
}
.meetings-section .meetings-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: bold;
    line-height: 100%;
}
.meetings-section .gallery-main {
    border-radius: 8px;
    overflow: hidden;
}
.meetings-section .gallery-main img {
    max-width: 100%;
}
/*---------------------------
1.9) meetings area ends here
---------------------------*/


/*===========================
1.10) offer section area here
===========================*/
.offers-section {
    padding: 60px 0;
    background: var(--white);
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.offers-section .section-header {
    margin-bottom: 40px;
    text-align: center;
}
.offers-section .section-header h2 {
    font-size: 40px;
    line-height: 50px;
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 10px;
}
.offers-section .section-header p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--sub-dark-color);
    max-width: 700px;
    margin: 0 auto;
}
.offers-section .offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.offers-section .offer-card {
    background: var(--white);
    overflow: hidden;
    border: 1px solid transparent;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.offers-section .offer-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--primary-color);
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.offers-section .offer-image .offer-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.offers-section .offer-content {
    padding: 20px 20px 30px;
    text-align: left;
}
.offers-section .offer-content h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--dark-color);
}
.offers-section .offer-discount {
    color: var(--primary-color);
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}
.offers-section .offer-content p {
    color: var(--sub-dark-color);
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 16px;
}
.offers-section .offer-benefits {
    margin-bottom: 30px;
}
.offers-section .offer-benefits span {
    display: block;
    color: var(--primary-color);
    font-size: 16px;
    line-height: 100%;
}
.offers-section .offer-benefits span:not(:last-child) {
    margin-bottom: 10px;
}
.offers-section .main_btn {
    font-size: 15px;
    line-height: 25px;
    padding: 8px 30px;
}
/*---------------------------
1.10) offer section area ends here
---------------------------*/


/*===========================
1.11) reviews section area here
===========================*/
.reviews-section {
    padding: 60px 0;
    background: var(--white);
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.reviews-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}
.reviews-section .section-header h2 {
        font-size: 40px;
    line-height: 50px;
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 10px;
}
.reviews-section .overall-rating .rating-score {
    color: var(--primary-color);
    font-size: 50px;
    line-height: 60px;
    font-weight: 700;
    margin-bottom: 0;
}
.reviews-section .overall-rating .rating-stars {
    color: #FFD700;
    font-size: 30px;
    line-height: 100%;
    margin-bottom: 10px;
}
.reviews-section .overall-rating p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--sub-dark-color);
    margin: 0;
}
.reviews-section .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.reviews-section .review-card {
    background: var(--white);
    padding:  25px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.reviews-section .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.reviews-section .reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.reviews-section .reviewer-info .avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.reviews-section .reviewer-info .details {
    line-height: 100%;
}
.reviews-section .reviewer-info .details h4 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 4px;
}
.reviews-section .reviewer-info .details span {
    font-size: 14px;
    line-height: 100%;
    display: inline-block;
    color: var(--sub-dark-color);
}
.reviews-section .review-rating {
    color: #FFD700;
    font-size: 18px;
    line-height: 100%;
}
.reviews-section .review-text {
    color: var(--sub-dark-color);
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
    font-style: italic;
}
.reviews-section .review-helpful {
    text-align: right;
    margin-top: 20px;
}
.reviews-section .review-helpful p {
    color: var(--sub-dark-color);
    font-size: 20px;
    line-height: 30px;
    margin: 0;
}
/*---------------------------
1.11) reviews section area ends here
---------------------------*/


/*===========================
1.12) contact section area here
===========================*/
.contact-section {
    padding: 60px 0;
    background: var(--bg_color);
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.contact-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}
.contact-section .section-header h2 {
    font-size: 40px;
    line-height: 50px;
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 10px;
}
.contact-section .section-header p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--sub-dark-color);
    max-width: 700px;
    margin: 0 auto;
}
.contact-section .contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    align-items: start;
}
.contact-section .contact-details {
    display: flex;
    flex-direction: column;
    gap: 26px;
}
.contact-section .contact-item {
    display: flex;
    gap: 10px;
}
.contact-section .contact-icon {
    font-size: 30px;
    line-height: 40px;
    width: 40px;
    text-align: start;
    color: var(--sub-dark-color);
}
.contact-section .contact-text {
    text-align: start;
    width: fit-content;
}
.contact-section .contact-text h4 {
    color: var(--dark-color);
    font-size: 26px;
    line-height: 30px;
    display: block;
    margin-bottom: 6px;
}
.contact-section .contact-text p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: var(--sub-dark-color);
    margin-bottom: 10px;
}
.contact-section .contact-text p:last-child {
    margin-bottom: 0px;
}
.contact-section .social-links {
    display: flex;
    gap: 20px;
    margin-top: 16px;
}
.contact-section .social-links a {
    font-size: 24px;
    line-height: 100%;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
}
.contact-section .social-links a:hover {
    color: #d96f1b;
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.contact-section .contact-form {
    background: white;
    padding: 20px 20px 16px 20px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.contact-section .contact-form iframe {
    width: 100%;
}
.contact-section .contact-form h3 {
    color: var(--dark-color);
    font-size: 30px;
    line-height: 34px;
    display: block;
    margin-bottom: 30px;
}
.contact-section .inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-section .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.contact-section .inquiry-form input,
.contact-section .inquiry-form select,
.contact-section .inquiry-form textarea {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    font-size: 16px;
    color: var(--dark-color);
    background: var(--white);
    outline: none;
    transition: border-color 0.3s ease;
}
.contact-section .inquiry-form input:focus,
.contact-section .inquiry-form select:focus,
.contact-section .inquiry-form textarea:focus {
    border-color: var(--primary-color);
}
.contact-section .inquiry-form textarea {
    resize: vertical;
    font-family: inherit;
}
.contact-section .submit_btn {
    font-size: 20px;
    line-height: 30px;
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.contact-section .submit_btn:hover {
    font-weight: bold;
    background: #d96f1b;
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
/*---------------------------
1.12) contact section area ends here
---------------------------*/


/*===========================
1.13) main footer area here
===========================*/
.main-footer {
    background: #2c3e50;
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}
.main-footer .footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.main-footer .footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.main-footer .footer-logo a {
    display: inline-block;
    text-align: start;
    max-width: 120px;
}
.main-footer .footer-logo .brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #8B4513;
}
.main-footer .footer-section p {
    color: #bdc3c7;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
    text-align: start;
}
.main-footer .footer-social {
    display: flex;
    gap: 15px;
}
.main-footer .footer-social a {
    color: #bdc3c7;
    font-size: 20px;
    line-height: 100%;
    text-decoration: none;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
}
.main-footer .footer-social a:hover {
    color: var(--primary-color);
}
.main-footer .footer-section {
    text-align: start;
}
.main-footer .footer-section h4 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.main-footer .footer-links {
    list-style: none;
}
.main-footer .footer-links li:not(:last-child) {
    margin-bottom: 6px;
}
.main-footer .footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 16px;
    line-height: 22px;
    display: block;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
}
.main-footer .footer-links a:hover {
    color: #d96f1b;
}
.main-footer .footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
}
.main-footer .footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #95a5a6;
}
.main-footer .footer-bottom-content p {
    margin: 0;
    font-size: 14px;
    line-height: 16px;
}
.main-footer .footer-bottom-content ul {
    display: flex;
    align-items: center;
    gap: 14px;
}
.main-footer .footer-bottom-content ul li {
    font-size: 14px;
    line-height: 16px;
}
/*---------------------------
1.13) main footer area ends here
---------------------------*/


/*===========================
1.14) top up button area here
===========================*/
.topUp-btn {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
    border: transparent;
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: rgba(244, 127, 31, 0.3) 0px 4px 12px;
    box-shadow: 0px 2px 20px rgba(0,0,0,.1);
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.topUp-btn:hover {
	background: #d96f1b;
    box-shadow: rgba(244, 127, 31, 0.3) 0px 4px 12px;
}
.topUp-btn i {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.topUp-btn:hover i {
	color: var(--white);
}
/*---------------------------
1.14) top up button area ends here
---------------------------*/


/*===========================
1.15) welcome popup area here
===========================*/
.welcome_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 100000000;
}
.welcome_overlay.show {
    display: block;
}
.welcome_overlay .welcome_popup {
    width: 100%;
    height: 100vh;
    max-width: 100%;
    overflow: hidden;
    padding: 40px 0px;
    background-color: var(--white);
    position: relative;
    z-index: 0;
}
.welcome_overlay.show .welcome_popup {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
.welcome_overlay .welcome_wrap {}
.welcome_overlay .welcome_wrap .container {
    max-width: 800px;
}
.welcome_overlay .welcome_inner {}
.welcome_overlay .welcome_close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    padding: 0px;
    background: var(--dark-color);
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--white);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
}
.welcome_overlay .welcome_close:hover {
    background: #d96f1b;
}
.welcome_overlay .welcome_header {
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    padding: 0px 0px 20px;
}
.welcome_overlay .welcome_header img {
    max-height: 80px;
}
.welcome_overlay .welcome_header h2 {
    font-size: 30px;
    line-height: 100%;
    font-style: italic;
    font-family: "Roboto", sans-serif;
    margin: 20px 0px 0px;
    color: var(--dark-color);
}
.welcome_overlay .welcome_content {
    margin-top: 20px;
}
.welcome_overlay .welcome_content .items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.welcome_overlay .welcome_content .item {}
.welcome_overlay .item .content {
    text-align: center;
    border: 1px solid #e9ecef;
    padding: 20px 20px 0px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.welcome_overlay .item .content:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
}
.welcome_overlay .item h2 {
    color: var(--dark-color);
    font-size: 26px;
    line-height: 34px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 20px;
}
.welcome_overlay .item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.welcome_overlay .item .bottom {
    text-align: center;
    margin-top: 24px;
}
.welcome_overlay .item .main_btn {
    width: 100%;
    padding: 10px 18px;
    font-size: 16px;
    line-height: 20px;
    border-radius: 10px;
}
.welcome_overlay .item p {
    color: var(--sub-dark-color);
    font-size: 16px;
    line-height: 24px;
    margin: 14px 0px 0px;
}
/*---------------------------
1.15) welcome popup area ends here
---------------------------*/


/*########################
2) rooms ---------------[########################]
########################*/

/*===========================
2.1) inner banner area here
===========================*/
.inner-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-top: 205px;
    background-position: center center !important;
}
.inner-banner .awe-overlay-intro {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0px;
    padding: 0px;
}
.inner-banner .awe-overlay-intro .row {
    margin: 0px !important;
}
.inner-banner .awe-overlay-intro .content {
    display: block;
    width: 100%;
    text-align: start;
}
.inner-banner .awe-overlay-intro .content h1 {
    position: relative;
    display: inline-block;
    padding: 0px;
    text-align: start;
    z-index: 0;
}
.inner-banner .awe-overlay-intro .content h1::after {
    left: calc(100% + 10px);
    top: 0;
    opacity: 0.3;
    z-index: -1;
}
.inner-banner .awe-overlay-intro .content h1::before {
    right: calc(100% + 10px);
    top: 0;
    opacity: 0.3;
    z-index: -1;
}
/*---------------------------
2.1) inner banner area ends here
---------------------------*/


/*===========================
2.2) rooms area here
===========================*/
.rooms {
    position: relative;
    padding: 60px 0px;
    overflow: hidden;
}
.rooms .row {
    margin: 0px !important;
}
.rooms .widget-rooms-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 0px;
}
.rooms .widget-rooms-list form {
    box-shadow: 0px 2px 20px rgba(0, 0, 0, .1);
}
.rooms .rooms-item {
    margin: 0px !important;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
}
.rooms .item-photo {
    position: inherit !important;
    top: inherit !important;
    left: inherit !important;
    width: 100% !important;
}
.rooms .item-photo a {
    padding-top: inherit !important;
    height: 100% !important;
}
.rooms .item-desc {
    padding: 20px !important;
    text-align: start !important;
}
.rooms .item-desc h2 {
    font-size: 24px;
    line-height: 34px;
    color: var(--dark-color);
}
.rooms .item-desc p {
    width: 100% !important;
    margin-bottom: 14px !important;
    color: var(--sub-dark-color) !important;
}
.rooms .desc-features {
    width: 100% !important;
    margin-top: 0px !important;
}
.rooms .desc-features ul {
    display: block;
}
.rooms .desc-features::after,
.rooms .desc-features::before {
    display: none !important;
}
.rooms .desc-features ul::after,
.rooms .desc-features ul::before {
    display: none !important;
}
.rooms .desc-features li {
    color: var(--sub-dark-color) !important;
}
.rooms .desc-features li i {
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
}
.rooms .item-price {
    position: inherit !important;
    width: 100% !important;
    padding: 0px !important;
    border: none !important;
    top: inherit !important;
    right: inherit !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rooms .price-inner {
    position: inherit !important;
    top: inherit !important;
    transform: inherit !important;
    padding: 0px !important;
}
.rooms .price-inner h3 {
    font-size: 30px !important;
    color: var(--primary-color);
}
.rooms .price-inner h5 {
    padding: 10px 0px 20px !important;
}
.rooms .price-inner ul li button {
    padding: 9px 24px !important;
}
/*---------------------------
2.2) rooms area ends here
---------------------------*/


/*########################
3) reservation ---------------[########################]
########################*/
/*===========================
3.1) reservation area here
===========================*/
.reservation {
    position: relative;
    padding: 80px 0px;
    overflow: hidden;
    background: var(--bg_color);
    margin-top: 205px;
    z-index: 0;
}
.reservation .reservation_inner {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
}
.reservation .reservation_body .section_header {
    text-align: center;
    margin-bottom: 40px;
}
.reservation .reservation_body .section_header h2 {
    font-size: 40px;
    line-height: 50px;
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 10px;
}
.reservation .reservation_body .section_header p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--sub-dark-color);
    max-width: calc(100% - 80px);
    margin: 0 auto;
}
.reservation .reservation_items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.reservation .reservation_card {
    width: 100%;
    height: 490px;
    perspective: 1000px;
    position: relative;
}
.reservation .reservation_card_font,
.reservation .reservation_card_back {
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.8s ease;
  -webkit-transition: transform 0.8s ease;
  -moz-transition: transform 0.8s ease;
  -ms-transition: transform 0.8s ease;
  -o-transition: transform 0.8s ease;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
.reservation .reservation_card_font {
    background: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
}
.reservation .reservation_card.flipped .reservation_card_font {
  transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  -o-transform: rotateY(-180deg);
}
.reservation .reservation_card_font .thumb {
    position: relative;
    z-index: 0;
    height: 250px;
    width: 100%;
}
.reservation .reservation_card_font .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reservation .reservation_card_font .thumb .available {
    width: 90px;
    height: 75px;
    background: var(--secondary-color);
    clip-path: polygon(
        0 0,
        100% 0,
        100% 100%,
        50% 76%,
        0 100%
    );
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    text-transform: capitalize;
    text-align: center;
    color: var(--white);
    padding: 6px 0px 0px;
}
.reservation .reservation_card_font .content {
    padding: 30px 20px;
}
.reservation .reservation_card_font .content h4 {
    font-size: 24px;
    line-height: 100%;
    margin-bottom: 16px;
    color: var(--dark-color);
}
.reservation .reservation_card_font .content h5 {
    font-size: 16px;
    line-height: 100%;
    font-family: "Roboto", sans-serif;
    color: var(--dark-color);
    margin-bottom: 14px;
}
.reservation .reservation_card_font .content h5 span {
    text-transform: uppercase;
}
.reservation .reservation_card_font .content h5.last {
    margin: 0px;
}
.reservation .reservation_card_font .main_btn {
    font-size: 16px;
    line-height: 100%;
    border-radius: 6px;
    width: 100%;
    margin-top: 20px;
}
.reservation .reservation_card_back {
    background: var(--secondary-color);
    padding: 30px 20px;
    z-index: 1;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
}
.reservation .reservation_card.flipped .reservation_card_back {
  transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
}
.reservation .reservation_card_back .content {
    text-align: center;
    height: 100%;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #4386B7 #F47F1F;
    padding: 0px 0px 60px 0px;
}
.reservation .reservation_card_back .content::-webkit-scrollbar {
    width: 4px;
}
.reservation .reservation_card_back .content::-webkit-scrollbar-track {
    background: #F47F1F;
    border-radius: 4px;
}
.reservation .reservation_card_back .content::-webkit-scrollbar-thumb {
    background-color: #4386B7;
    border-radius: 4px;
    border: 1px solid #F47F1F;
}
.reservation .reservation_card_back .content::-webkit-scrollbar-thumb:hover {
    background-color: #4386B7;
}
.reservation .reservation_card_back .content h4 {
    font-size: 24px;
    line-height: 100%;
    margin-bottom: 16px;
    color: var(--white);
}
.reservation .reservation_card_back .content h5 {
    font-size: 18px;
    line-height: 100%;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    margin-bottom: 10px;
    color: var(--dark-color);
}
.reservation .reservation_card_back select {
    width: 100%;
    background: var(--white);
    padding: 8px 8px;
    line-height: 100%;
    font-size: 14px;
    color: var(--dark-color);
    text-transform: capitalize;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.reservation .reservation_card_back select option {
    color: var(--dark-color);
}
.reservation .reservation_card_back .guest_details {
    margin-top: 20px;
}
.reservation .reservation_card_back .guest_detail {
    margin-bottom: 20px;
}
.reservation .reservation_card_back .guest_detail h6 {
    font-size: 18px;
    line-height: 100%;
    font-weight: 500;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    margin-bottom: 10px;
    color: var(--dark-color);
}
.reservation .reservation_card_back .guest_fillde {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.reservation .reservation_card_back .guest_fillde input {
    font-size: 14px;
    line-height: 20px;
    color: var(--dark-color);
    background: var(--white);
    text-transform: capitalize;
    padding: 6px 10px;
    border: none;
}
.reservation .reservation_card_back .guest_fillde input::placeholder {
    color: var(--dark-color);
}
.reservation .reservation_card_back .action_btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 30px;
    padding: 0px 20px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 30px;
}
.reservation .reservation_card_back .action_btn .main_btn {
    padding: 15px;
    font-size: 16px;
    line-height: 100%;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.reservation .reservation_tab_nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-bottom: 30px;
}
.reservation .reservation_tab_link {
    padding: 12px 10px;
    color: var(--dark-color);
    background: var(--white);
    font-size: 16px;
    line-height: 100%;
    font-family: "Roboto", sans-serif;
    cursor: pointer;
    border: 1px solid var(--primary-color);
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.reservation .reservation_tab_link.active {
  background: var(--primary-color);
  color: var(--white);
}
.reservation .reservation_tab_pane {
    opacity: 0;
    visibility: hidden;
    padding: 0;
    transition: opacity 0.35s ease-in-out;
    -webkit-transition: opacity 0.35s ease-in-out;
    -moz-transition: opacity 0.35s ease-in-out;
    -ms-transition: opacity 0.35s ease-in-out;
    -o-transition: opacity 0.35s ease-in-out;
}
.reservation .reservation_tab_pane.active {
  opacity: 1;
  visibility: visible;
}
.reservation .reservation_guest_form {
    display:none;
    background: var(--white);
    padding: 40px 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    height: min-content;
}

.reservation_guest_form.show {
    display: block; 
}


.reservation .reservation_guest_form .title {
    text-align: center;
}
.reservation .reservation_guest_form .title h3 {
    font-size: 24px;
    line-height: 100%;
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: capitalize;
}
.reservation .reservation_guest_form .title h2 {
    font-size: 20px;
    line-height: 100%;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
    margin-bottom: 20px;
    text-transform: capitalize;
    background: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 10px 15px;
    border-radius: 6px;
}
.reservation .form .form_group {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}
.reservation .form .form_label {
    color: var(--dark-color);
    font-size: 16px;
    line-height: 100%;
    font-weight: 500;
    margin: 0;
}
.reservation .form .form_control {
    font-size: 14px;
    line-height: 100%;
    padding: 8px 10px;
    color: var(--dark-color);
    border: 1px solid #e9ecef;
    border-radius: 4px;
    background: var(--white);
    transition: border-color 0.3s ease;
    -webkit-transition: border-color 0.3s ease;
    -moz-transition: border-color 0.3s ease;
    -ms-transition: border-color 0.3s ease;
    -o-transition: border-color 0.3s ease;
}
.reservation .form .form_control:outline {
    border-color: var(--primary-color) !important;
}
.reservation .form .form_control:focus {
    border-color: var(--primary-color) !important;
    outline: none;
}
.reservation .form .form_select {
    font-size: 14px;
    line-height: 100%;
    padding: 8px 10px;
    color: var(--dark-color);
    border: 1px solid #e9ecef;
    border-radius: 4px;
    background: var(--white);
    width: 100%;
}
.reservation .form .form_select:focus {
    border-color: var(--primary-color) !important;
    outline: none;
}
.reservation .form .form_select option {
    color: var(--dark-color);
}
.reservation .form .main_btn {
    width: 100%;
    border-radius: 6px;
}

.reservation .confirmed_rooms_summary {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.reservation .room_summary_card {
    background: white;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 6px;
    border-left: 4px solid #F47F1F;
}



/*---------------------------
3.1) reservation area ends here
---------------------------*/


/*########################
3) restaurant ---------------[########################]
########################*/
/*===========================
3.1) restaurant area here
===========================*/
.restaurant {
    padding: 80px 0px;
}
.restaurant .row {
    margin: 0px;
}
.restaurant .widget-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.restaurant .restaurant_items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 40px 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.restaurant .left .thumb {
    height: 100%;
}
.restaurant .left .thumb img {
    height: 100%;
    object-fit: cover;
}
.restaurant .right .content img {
    width: 200px;
    margin-bottom: 20px;
    border: 10px solid #b9a256;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.restaurant .right .content p {
    font-size: 18px;
    line-height: 28px;
    margin: 0px;
}
.restaurant .right .restaurant_social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}
.restaurant .right .restaurant_social li a {
    font-size: 20px;
    color: #b9a256;
}
.restaurant .right .restaurant_social li a .icon_itrm:hover {
    color: #b9a256;
}
/*---------------------------
3.1) restaurant area ends here
---------------------------*/


/*########################
4) meeting-and-event ---------------[########################]
########################*/
/*===========================
4.1) meeting and event area here
===========================*/
.meeting {
    padding: 80px 0px;
}
.meeting .row {
    margin: 0px;
}
.meeting .inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.meeting .inner .items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 40px 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.meeting .inner .items .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.meeting .inner .items .content h2 {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 12px;
}
.meeting .inner .items .content p {
    font-size: 18px;
    line-height: 28px;
    margin: 0px;
}
/*---------------------------
4.1) meeting and event area ends here
---------------------------*/


/*########################
5) offer ---------------[########################]
########################*/
/*===========================
5.1) offer area here
===========================*/
.offer {
    padding: 80px 0px;
}
.offer .row {
    margin: 0px;
}
.offer .offer-div h2 {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 40px;
}
.offer .offer-div img {
    width: auto;
    max-width: 600px;
    min-height: auto !important;
    margin: 0px !important;
    background: inherit !important;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border: 20px solid #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
/*---------------------------
5.1) offer area ends here
---------------------------*/


/*########################
6) gallery ---------------[########################]
########################*/
/*===========================
6.1) gallery area here
===========================*/
.gallery {
    padding: 80px 0px;
}
.gallery .row {
    margin: 0;
}
.gallery .inner {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 60px;
}
.gallery .inner .left {
    margin: 0px;
}
.gallery .inner h4 {
    font-size: 30px;
    line-height: 40px;
    padding: 15px 20px;
    margin: 0px;
    text-transform: capitalize;
    color: var(--white);
    font-weight: 600;
    background: var(--secondary-color);
}
.gallery .inner ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.gallery .inner ul li {
    display: block;
    width: inherit;
    padding: 0px;
    line-height: 0px;
}
.gallery .inner ul li::after {
    display: none;
}
.gallery .inner ul li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.gallery .inner ul li a::after {
    width: 90%;
    height: 90%;
    top: 5%;
    left: 0;
    background: rgba(0, 0, 0, 0.2) url(../images/camera.png) no-repeat center center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    transform: translate(5%, 0px);
    -webkit-transform: translate(5%, 0px);
    -moz-transform: translate(5%, 0px);
    -ms-transform: translate(5%, 0px);
    -o-transform: translate(5%, 0px);
}
.gallery .inner ul li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery .inner .right {
    margin: 0px;
}
/*---------------------------
6.1) gallery area end here
---------------------------*/


/*########################
7) contact-us ---------------[########################]
########################*/
/*===========================
7.1) contact us area here
===========================*/
.contact_us {
    padding: 80px 0px;
}
.contact_us .row {
    margin: 0;
}
.contact_us .contact_wrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}
.contact_wrap .contact_left {
    padding: 30px 20px;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.contact_left h2 {
    font-size: 30px !important;
    line-height: 40px;
    padding-bottom: 20px !important;
    letter-spacing: 1px;
    text-transform: capitalize;
}
.contact_left p {
    font-size: 18px;
    line-height: 28px;
    margin: 0px;
}
.contact_left .contact-form {
    margin: 30px 0px 0px 0px !important;
}
.contact_left .form_input_sub {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}
.contact_left .form-group {
    width: 100%;
    margin: 0px;
}
.contact_left .form-group label {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 6px;
    color: #000;
}
.contact_left .form-group input {
    margin: 0px;
}
.contact_left .submit-button {
    margin-top: 30px;
}
.contact_left .submit-button button {
    width: 100%;
    padding: 15px 20px !important;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: inherit;
    text-transform: capitalize;
    border: none;
}
.contact_left .submit-button button {
    width: 100%;
    padding: 15px 20px !important;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: inherit;
    text-transform: capitalize;
    border: none;
}
.contact_left .submit-button button:hover {
    border: none;
}
.contact_left .submit-button button:focus {
    outline: none;
}
.contact_wrap .contact_right {
    padding: 30px 20px;
    background: #fff;
    height: max-content;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.contact_right h2 {
    font-size: 30px !important;
    line-height: 40px;
    padding-bottom: 20px !important;
    letter-spacing: 1px;
    text-transform: capitalize;
}
.contact_right .address {
    display: block;
}
.contact_right .address li:not(:last-child) {
    margin-bottom: 16px;
}
.contact_right .address li h4 {
    font-size: 20px;
    line-height: 30px;
    text-transform: capitalize;
    margin-bottom: 4px;
}
.contact_right .address li p {
    margin: 0px;
    font-size: 16px;
    line-height: 26px;
}
.contact_right .social-links {
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.contact_right .social-links li a {
    font-size: 24px;
    line-height: 30px;
    color: #b9a256;
}
.contact_right .social-links li a .icon:hover {
    color: #b9a256;
}
/*---------------------------
7.1) contact us area ends here
---------------------------*/


/*########################
8) first home ---------------[########################]
########################*/
/*===========================
8.1) first header area here
===========================*/
.first_header {
    padding: 10px 0;
    overflow: hidden;
    background: #D16002;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1111;
}
.first_header .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.first_header .inner .left p {
    margin: 0;
    font-size: 20px;
    line-height: 100%;
    color: var(--white);
}
.first_header .inner .right ul {
    display: flex;
    align-items: center;
    gap: 20px;
}
.first_header .inner .right ul li {
    line-height: 100%;
}
.first_header .inner .right ul li a {
    font-size: 20px;
    line-height: 100%;
    color: var(--white);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.first_header .inner .right ul li a:hover {
    color: var(--dark_gray);
}
/*---------------------------
8.1) first header area ends here
---------------------------*/


/*===========================
8.2) first banner area here
===========================*/
.first_banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.first_banner .wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #242021;
    opacity: 0.6;
    z-index: 0;
}
.first_banner .container-fluid::after,
.first_banner .container-fluid::before,
.first_banner .container::before,
.first_banner .container::after,
.first_banner .row::after,
.first_banner .row::before {
    display: none;
}
.first_banner .wrap .container-fluid {
    padding: 0px;
}
.first_banner .slider_items .owl-stage {
    display: flex;
}
.first_banner .slider_items .owl-nav,
.first_banner .slider_items .owl-dots {
    display: none;
}
.first_banner .slider_items .thumb img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.first_banner .content_wrap {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    z-index: 50;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.first_banner .content_wrap .content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.first_banner .content_wrap .content a {
    display: inline-block;
    margin-bottom: 6px;
}
.first_banner .content_wrap .content img {
    max-width: 180px;
}
.first_banner .content_wrap .content h4 {
    font-family: "Roboto", sans-serif;
    font-size: 24px;
    line-height: 100%;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 10px;
}
.first_banner .content_wrap .content h2 {
    font-size: 70px;
    line-height: 110%;
    font-family: "Poppins", sans-serif;
    letter-spacing: -2px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}
.first_banner .content_wrap .content p {
    font-size: 20px;
    line-height: 28px;
    color: var(--white);
    font-weight: 400;
    margin: 0px;
}
.first_banner .location_link {
    width: 100%;
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 30px;
}
.first_banner .location_link a {
    width: 180px;
    border-radius: 6px;
    background: #D16002;
    margin: 0px !important;
}
.first_banner .location_link h2 {
    font-size: 40px !important;
    line-height: 50px !important;
    margin-bottom: 24px !important;
    letter-spacing: -1px !important;
    color: var(--white) !important;
}
/*---------------------------
8.2) first banner area ends here
---------------------------*/


/*===========================
8.3) first contact area here
===========================*/
.first_contact {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background: var(--bg_color);
}
.first_contact .section-header h2 {
    font-size: 40px;
    line-height: 50px;
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 10px;
}
.first_contact .section-header p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--sub-dark-color);
    max-width: 700px;
    margin: 0 auto;
}
.first_contact .contact_items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.first_contact .item {
    background: var(--bg_color);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px 7px rgba(0, 0, 0, 0.1);
}
.first_contact .item h3 {
    color: var(--dark-color);
    font-size: 30px;
    line-height: 34px;
    margin-bottom: 10px;
    text-align: left;
}
.first_contact .item h3 span {
    color: var(--primary-color);
    font-weight: 600;
}
.first_contact .item > p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--sub-dark-color);
    text-align: left;
    margin: 0px 0px 30px;
}
.first_contact .infos {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.first_contact .info {
    display: flex;
    gap: 14px;
}
.first_contact .info .thumb {
    width: 40px;
    height: 40px;
    color: var(--white);
    background: var(--primary-color);
    font-size: 20px;
    line-height: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
.first_contact .info .content {
    text-align: left;
}
.first_contact .info .content h4 {
    display: block;
    color: var(--dark-color);
    font-size: 24px;
    line-height: 28px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 10px;
    text-align: left;
}
.first_contact .info .content p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--sub-dark-color);
    margin: 0px;
}
/*---------------------------
8.3) first contact area ends here
---------------------------*/


/*########################
9) first restaurant ---------------[########################]
########################*/
/*===========================
9.1) section header area here
===========================*/
.first_rest {
    padding: 60px 0px;
    position: relative;
    background: var(--bg_color);
    z-index: 1;
}
.first_rest_bonsai {
    padding: 0px 0px 60px;
}
.first_rest_fiddle .wrap .section-header {
    margin: -134px auto 0px !important;
}
.first_rest .wrap .section-header {
    background: var(--bg_color);
    max-width: 550px;
    margin: 0px auto;
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    border-radius: 8px;
}
.first_rest .wrap .section-header h2 {
    font-size: 40px;
    line-height: 50px;
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 6px;
    letter-spacing: -1px;
}
.first_rest .wrap .section-header p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--sub-dark-color);
    margin: 0px;
}
/*---------------------------
9.1) section header area ends here
---------------------------*/


/*===========================
9.2) our menu area here
===========================*/
.first_rest .our_menu_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 80px 0px 0px;
}
.first_rest .our_menu_wrap .content {
    text-align: left;
}
.first_rest .our_menu_wrap .content > h4 {
    color: var(--primary-color);
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
    font-family: "Roboto", sans-serif;
}
.first_rest .our_menu_wrap .content > h2 {
    color: var(--dark-color);
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
}
.first_rest .our_menu_wrap .content > p {
    color: var(--sub-dark-color);
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 20px;
}
.first_rest .our_menu_wrap .item:not(:last-child) {
    margin-bottom: 20px;
}
.first_rest .our_menu_wrap .item {
    display: flex;
    gap: 10px;
}
.first_rest .our_menu_wrap .item span {
    font-size: 24px;
    line-height: 100%;
    display: inline-block;
    color: var(--primary-color);
}
.first_rest .our_menu_wrap .item_content h3 {
    font-size: 24px;
    line-height: 100%;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-family: "Poppins", sans-serif;
    letter-spacing: -1px;
}
.first_rest .our_menu_wrap .item_content p {
    color: var(--sub-dark-color);
    font-size: 16px;
    line-height: 22px;
    margin: 0px;
}
.first_rest .our_menu_wrap .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*---------------------------
9.2) our menu area ends here
---------------------------*/


/*===========================
9.3) thumb wrap area here
===========================*/
.first_rest .thumb_wrap {
    overflow: hidden;
    position: relative;
    padding: 80px 0px;
}
.first_rest .thumb_wrap .container-fluid {
    padding: 0px;
}
.first_rest .thumb_wrap .container-fluid,
.first_rest .thumb_wrap .row,
.first_rest .thumb_wrap .col-12 {
    background: inherit;
    box-shadow: none;
}
.first_rest .thumb_wrap .inner .items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.first_rest .thumb_wrap .inner .item .thumb {
    position: relative;
    z-index: 0;
}
.first_rest .thumb_wrap .inner .item .thumb img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.first_rest .thumb_wrap .inner .item .content {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: calc(79%);
    background: var(--bg_color);
    padding: 20px 15px;
}
.first_rest .thumb_wrap .inner .item .content h4 {
    font-size: 20px;
    line-height: 100%;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-family: "Poppins", sans-serif;
    letter-spacing: -1px;
}
.first_rest .thumb_wrap .inner .item .content p {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    color: var(--sub-dark-color);
}
/*---------------------------
9.3) thumb wrap area ends here
---------------------------*/


/*===========================
9.4) menu wrap area here
===========================*/
.first_rest .menu_wrap .section-header {
    margin-bottom: 70px;
}
.first_rest .menu_wrap .section-header h2 {
    font-size: 40px;
    line-height: 50px;
    color: var(--dark-color);
    font-weight: 500;
    margin-bottom: 6px;
    letter-spacing: -1px;
}
.first_rest .menu_wrap .section-header p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--sub-dark-color);
    margin: 0px;
}

.first_rest .menu_wrap .items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.first_rest .menu_wrap .item {
    padding: 0px 20px 30px;
    background: var(--bg_color);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}
.first_rest .menu_wrap .item h3 {
    font-size: 30px;
    line-height: 100%;
    background: var(--secondary-color);
    color: var(--white);
    font-family: "Poppins", sans-serif;
    letter-spacing: -1px;
    max-width: 90%;
    margin: -25px auto 0px;
    padding: 10px 10px;
    border-radius: 6px;
}
.first_rest .menu_wrap .item ul {
    width: 100%;
    margin: 40px 0px 0px;
}
.first_rest .menu_wrap .item ul li:not(:last-child) {
    margin-bottom: 20px;
}
.first_rest .menu_wrap .item ul li {
    display: flex;
    gap: 10px;
}
.first_rest .menu_wrap .item ul li span {
    font-size: 24px;
    line-height: 100%;
    display: inline-block;
    color: var(--primary-color);
}
.first_rest .menu_wrap .item ul li .content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.first_rest .menu_wrap .item ul li .content h4 {
    font-size: 24px;
    line-height: 100%;
    font-weight: 400;
    margin: 0px;
    color: var(--dark-color);
    font-family: "Poppins", sans-serif;
    letter-spacing: -1px;
}
.first_rest .menu_wrap .item ul li .content p {
    color: var(--sub-dark-color);
    font-size: 16px;
    line-height: 22px;
    margin: 0px;
}
/*---------------------------
9.4) menu wrap area ends here
---------------------------*/