/*==============================================================================
[Master Stylesheet]

Project:        MAKAI - Luxury Omakase Sushi HTML Bootstrap Template
Version:        1.0
Description:    MAKAI is a modern and elegant HTML Bootstrap Template designed for Luxury Omakase Sushi Experience. You can also use this refined template for any kind of high-end dining concept related to omakase restaurants, sushi bars, private dining experiences, chef-driven restaurants, Japanese fine dining, seasonal tasting menus, and other premium culinary experience websites.
==============================================================================

TABLE OF CONTENTS
------------------------------------------------------------------------------

01.0  Import Vendor
02.0  Global Variable
      02.1  Color Variable
      02.2  Font Family Variable
      02.3  Animation Duration Preset
      02.4  Animation Delay Preset
03.0  Keyframe
04.0  Base Style
05.0  Section & Page Setting
06.0  Header Style
07.0  Footer Style
08.0  Sidebar Style
09.0  Button Style
10.0  Card Style
11.0  Color & Font Family Custom
      11.1  Color Custom
      11.2  Font Family Custom
12.0  Image Style
13.0  Heading Style
14.0  Form Style
15.0  Home Style
16.0  Banner Inner Style
17.0  Notfound Style
18.0  Experience Style
      18.1  Experience Section
      18.2  Experience CTA
19.0  Chef Style
      19.1  Chef Story
      19.2  Chef Profile
      19.3  Chef Philosophy
20.0  The Space Style
22.0  Resevation Style
23.0  Private Style
      23.1  Private Dining
24.0  Testimonial Style
      24.1  Dark Banner
      24.2  Light Banner
25.0  Location Style
      25.1  Location
      25.2  Location Detail
26.0  Location Marquee Style
28.0  Seasonal Style
      28.1  Seasonality
      28.2  Seasonal Highlight
29.0  FAQ Style
      29.1  FAQ Highlight
      29.2  FAQ List
      29.3  FAQ Accordion
30.0  Contact Style
      30.1  Contact
      30.1  Contact Map Style
31.0  Blog Post Section
      31.1  Blog Section
      31.2  Single Post
32.0  Animation Preset
33.0  Spacing Preset
      — Flex Gap
      — Grid Gap (row-gap & column-gap)

------------------------------------------------------------------------------

COLOR GLOSSARY
------------------------------------------------------------------------------

    --primary           : #1A1A1A          (Near black    — main text, headings & foreground)
    --secondary         : #FFFFFF          (White         — light text, surfaces on dark bg)
    --text-color        : #363636          (Dark gray     — body paragraph text)
    --accent-color      : #B8A46A          (Warm gold     — primary CTA, links & brand accent)
    --accent-color-2    : #0B0B0C          (Rich black    — footer & dark surface backgrounds)
    --accent-color-3    : #F5F3EF          (Warm ivory    — soft tinted section background)
    --accent-color-4    : #EDEDED          (Light gray    — borders, dividers & muted text)
    --accent-color-5    : #1A1A1A          (Near black    — duplicate of --primary)
    --accent-color-6    : #B8A46A00        (Gold 0%       — transparent gradient endpoint)
    --accent-color-7    : #8C8C8C          (Mid gray      — hover/secondary text state)
    --accent-overlay    : rgba(51,51,51,.5)(Charcoal 50%  — hero/dark section overlay)

------------------------------------------------------------------------------

TYPOGRAPHY SYSTEM
------------------------------------------------------------------------------

    Font Families
    --heading-font       : "Cormorant", sans-serif             (all headings h1–h6)
    --heading-alt-font   : "Cormorant Garamond", sans-serif    (quotes & alt heading accents)
    --body-font          : "Manrope", sans-serif                (body, buttons, links, UI)

    Headings  (font-family: Cormorant)
    h1 / .heading-xl   — 200px / weight 500 / line-height 0.7em / letter-spacing 0.25em
    h2 / .heading-lg   —  75px / weight 500 / line-height 1.2em
    h3 / .heading-md   —  48px / weight 500 / line-height 1.2em
    h4 / .heading-sm   —  32px / weight 600 / line-height 1.2em
    h5 / .heading-xs   —  26px / weight 600 / line-height 1.2em
    h6 / .heading-xxs  —  18px / weight 500 / line-height 1.5em

    Body  (font-family: Manrope)
    body — 18px / weight 400 / line-height 1.6em / color: --primary
    p    — 18px / weight 400 / line-height 1.6em / margin-bottom: 20px / color: --text-color

    Interactive
    button / a / .btn / .nav-link / .dropdown-item
         — 15px / weight 500 / line-height 1em / uppercase / letter-spacing 0.2em / color: inherit

    Other
    .sub-heading — 21px / weight 400 / uppercase / line-height 1.5em / letter-spacing 0.5em

------------------------------------------------------------------------------

ANIMATION SYSTEM
------------------------------------------------------------------------------

    Duration Presets  (defined in :root — 02.3)
    --anim-duration-fast    : 0.8s
    --anim-duration-normal  : 1.1s
    --anim-duration-slow    : 1.6s

    Delay Presets  (defined in :root — 02.4)
    --anim-delay-none  : 0s
    --anim-delay-sm    : 0.25s
    --anim-delay-md    : 0.45s

    Keyframes  (section 03.0)
    @keyframes fade-in                 — opacity 0 → 1
    @keyframes fade-up                 — opacity 0→1 + translateY(80px → 0)
    @keyframes fade-down               — opacity 0→1 + translateY(-80px → 0)
    @keyframes fade-left               — opacity 0→1 + translateX(-120px → 0)
    @keyframes fade-right              — opacity 0→1 + translateX(120px → 0)
    @keyframes location-marquee-scroll — translateX(0) → translateX(-50%)

    Utility Classes  (Animation Preset — 32.0)
    .animation-box       — base animated element; opacity:0, forwards fill,
                           cubic-bezier(0.25, 0.8, 0.25, 1) easing, will-change set
    .anim-fast           — sets --anim-duration to fast preset  (0.8s)
    .anim-normal         — sets --anim-duration to normal preset (1.1s)
    .anim-slow           — sets --anim-duration to slow preset  (1.6s)
    .anim-delay-none     — sets --anim-delay to none preset (0s)
    .anim-delay-sm       — sets --anim-delay to sm preset   (0.25s)
    .anim-delay-md       — sets --anim-delay to md preset   (0.45s)

    Accessibility
    @media (prefers-reduced-motion: reduce) — disables animation, opacity & transform
                                              on all .animation-box elements

==============================================================================*/

/* ====================== */
/* 01.0 Import Vendor */
/* ====================== */

@import url('./fonts.css');
@import url('../vendor/bootstrap/css/bootstrap.min.css');
@import url('../vendor/fontaweasome/fontawesome.min.css');
@import url('../vendor/fontaweasome/brands.css');
@import url('../vendor/fontaweasome/regular.css');
@import url('../vendor/fontaweasome/solid.css');
@import url('../vendor/swiper/css/swiper-bundle.min.css');
@import url('../vendor/flatpickr/flatpickr.min.css');

/* ====================== */
/* 02.0 Global Variable */
/* ====================== */

:root{
    /* 02.1 Color Variable */
    --primary: #1A1A1A;
    --secondary: #FFFFFF;
    --text-color: #363636;
    --accent-color: #B8A46A;
    --accent-color-2: #0B0B0C;
    --accent-color-3: #F5F3EF;
    --accent-color-4: #EDEDED;
    --accent-color-5: #1A1A1A;
    --accent-color-6: #B8A46A00;
    --accent-color-7: #8C8C8C;
    --accent-overlay: rgba(51,51,51,0.5);

    /* 02.2 Font Family Variable */
    --heading-font: "Cormorant", sans-serif;
    --heading-alt-font: "Cormorant Garamond", sans-serif;
    --body-font: "Manrope", sans-serif;
    
    /* 02.3 Animation Duration Preset */
    --anim-duration-fast: 0.8s;
    --anim-duration-normal: 1.1s;
    --anim-duration-slow: 1.6s;

    /* 02.4 Animation Delay Preset */
    --anim-delay-none: 0s;
    --anim-delay-sm: 0.25s;
    --anim-delay-md: 0.45s;
}

/* ====================== */
/* 03.0 Keyframe */
/* ====================== */

@media (prefers-reduced-motion: reduce) {
    .animation-box { 
        animation: none !important;
        opacity: 1 !important; 
        transform: none !important; 
    }
}

@keyframes fade-in   { 
    from {opacity:0;} to {opacity:1;} 
}

@keyframes fade-up   { 
    from {opacity:0; transform:translateY(80px);} to {opacity:1; transform:translateY(0);} 
}

@keyframes fade-down { 
    from {opacity:0; transform:translateY(-80px);} to {opacity:1; transform:translateY(0);} 
}

@keyframes fade-left { 
    from {opacity:0; transform:translateX(-120px);} to {opacity:1; transform:translateX(0);} 
}

@keyframes fade-right{ 
    from {opacity:0; transform:translateX(120px);} to {opacity:1; transform:translateX(0);} 
}

@keyframes location-marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ====================== */
/* 04.0 Base Style */
/* ====================== */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 1.6em;
    color: var(--primary);
}

h1,
.heading-xl{
    font-size: 200px;
    font-weight: 500;
    line-height: 0.7em;
    letter-spacing: 0.25em;
}

h2,
.heading-lg{
    font-size: 75px;
    font-weight: 500;
    line-height: 1.2em;
}

h3,
.heading-md{
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2em;
}

h4,
.heading-sm{
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2em;
}

h5,
.heading-xs{
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2em;
}

h6,
.heading-xxs{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6{
    margin: 0px;
    font-family: var(--heading-font);
}

p{
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6em;
    color: var(--text-color);
    margin: 0px;
    margin-bottom: 20px;
}

button, a,
.btn, .nav-link,
.dropdown-item{
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 500;
    line-height: 1em;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
    color: inherit;
}

ul{
    list-style: none;
}


/* ====================== */
/* 05.0 Section & Page Setting */
/* ====================== */

.section{
    padding: 120px 20px;
}

.site-container{
    max-width: 1280px;
    margin: 0px auto;
    width: 100%;
    height: 100%;
}

.site-container.site-container-small{
    max-width: 1080px;
}

.site-container.site-container-wide{
    max-width: 1500px;
}

/* ====================== */
/* 06.0 Header Style */
/* ====================== */

.header-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 20px;
    z-index: 10;
}

.navbar{
    padding: 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.navbar-nav-container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.navbar-logo-container{
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-brand{
    padding: 0;
    margin: 0;
}

.nav-link-container{
    width: 60%;
    display: flex;
    align-items: center;
}

.navbar-nav{
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin: 0 auto;
}

.navbar-nav .nav-link{
    color: var(--secondary);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus{
    color: var(--accent-color-7);
}

.navbar-nav .nav-link.active{
    color: var(--accent-color);
}

.navbar-nav .dropdown-toggle i{
    color: var(--accent-color);
}

.navbar-nav .dropdown-toggle::after{
    display: none;
}

.navbar-nav .dropdown-menu{
    padding: 15px 0px;
    box-shadow: 0 10px 30px 0 rgba(45, 45, 45, .2);
    background-color: var(--accent-color-3);
    min-width: 220px;
}

.navbar-nav .dropdown-item{
    padding: 15px 30px;
    transition: all 0.3s ease;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus{
    background-color: var(--accent-color-3);
    color: var(--accent-color-7);
}

.navbar-nav .dropdown-item.active{
    color: var(--accent-color-7);
    background-color: var(--accent-color-3);
}

.navbar-cta-container{
    width: 20%;
    display: flex;
    justify-content: flex-end;
}

.nav-btn{
    display: none;
    font-size: 24px;
    color: var(--secondary);
    background-color: transparent;
    outline: none;
    box-shadow: none;
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    padding: 8px;
}

/* ====================== */
/* 07.0 Footer Style */
/* ====================== */

.footer{
    background-color: var(--accent-color-2);
    color: var(--secondary);
    padding: 80px 20px 0px;
}

.footer__page-layout{
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.footer__info{
    border-bottom: 1px dashed var(--text-color);
}

.footer__info .site-container{
    display: flex;
    gap: 50px 0px;
    justify-content: space-between;
    padding-bottom: 80px;
}

.footer__address,
.footer__hours,
.footer__contact{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__address{
    width: 18%;
}

.footer__hours{
    width: 14%;
}

.footer__contact{
    width: 18%;
}

.footer__info-highlight-text{
    color: var(--accent-color);
    font-size: inherit;
    font-weight: 600;
    line-height: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
}

.footer__navigation{
    display: flex;
}

.footer__navigation .site-container{
    display: flex;
    flex-direction: row;
    gap: 50px 0px;
    justify-content: space-between;
}

.footer__navigation-column{
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.footer__navigation-column.footer__brand{
    width: 24%;
    gap: 20px;
}

.footer__brand-highlight{
    font-size: 21px;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0.5em;
    color: var(--accent-color-4);
}

.footer__navigation-column.footer-experience{
    width: 12%;
}

.footer__navigation-column.footer-information{
    width: 13%;
}

.footer__navigation-column.footer-content-list{
    width: 11%;
}

.footer__nav-list{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__nav-list li {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    text-transform: capitalize;
    color: var(--accent-color-4);
    transition: all 0.3s ease;
}

.footer__nav-list li:hover{
    color: var(--accent-color-7);
}

.footer__nav-list a{
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
    color: inherit;
}

.footer__nav-list li::before {
    content: "\f054";
    font-family: "Font Awesome 7 Free";
    font-weight: 700;
    color: var(--accent-color);
    margin-right: 0.5em;
    font-size: 16px;
    display: inline-block;
}

.footer__copyright{
    border-top: 1px dashed var(--accent-color);
}

.footer__copyright .site-container{
    display: flex;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    padding: 30px 0px;
}

.copyright-text{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--accent-color-7);
}

/* ====================== */
/* 08.0 Sidebar Style */
/* ====================== */


.sidebar-overlay{
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: var(--accent-overlay);
    transition: left 0.4s ease-in-out;
    z-index: 11;
    display: none;
}

.sidebar-overlay.active{
    left: 0;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -350px;
    width: 350px;
    height: 100%;
    background: var(--accent-color-2);
    color: var(--secondary);
    transition: transform 0.4s ease-in-out;
    z-index: 12;
    overflow-y: auto;
    max-height: 100vh;
    padding: 0px 16px 0px 5px;
    display: none;
}

.sidebar.active{
    transform: translateX(350px);
}

.sidebar-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
}

.sidebar-close-btn {
    display: inline-block;
    justify-content: center;
    background-color: var(--accent-color-6);
    border-radius: 8px;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    font-weight: 400;
    position: relative;
    font-family: var(--body-font);
    font-size: 14px;
    cursor: pointer;
    padding: 8px 18px;
    outline: none;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.sidebar-menu li {
    padding: 15px 30px;
}

.sidebar-menu a {
    color: var(--accent-color-4);
    text-decoration: none;
    display: block;
    border-radius: 5px;
    transition: 0.3s;
    font-family: var(--body-font);
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.sidebar-menu a:hover,
.sidebar-menu a.active,
.sidebar-menu a:focus {
    color: var(--text-color);
}

.sidebar-dropdown .dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-dropdown-btn {
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 16px;
    border: 1px solid var(--accent-color);
    border-radius: 100px;
    cursor: pointer;
    padding: 5px 15px;
    transition: transform 0.3s ease;

}
.sidebar-dropdown-btn:hover {
    border: 1px solid var(--text-color);
    color: var(--text-color);
}

.sidebar-dropdown-menu {
    list-style: none;
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding-top: 0;
    padding-bottom: 0;
}

.sidebar-dropdown-menu.active {
    max-height: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}
.below-dropdown {
    transition: margin-top 0.1s ease-in-out;
    margin-top: 0px;
}

.sidebar::-webkit-scrollbar {
    width: 5px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: gray;
    border-radius: 5px;
}

/* ====================== */
/* 09.0 Button Style */
/* ====================== */

.btn{
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: none;
    outline: none;
    border: none;
    border-radius: 100px;
    padding: 17px 34px;
    width: max-content;
    transition: all 0.3s ease;
}

.btn-accent{
    background-color: var(--accent-color);
    color: var(--accent-color-2);
    border: 1px solid var(--accent-color);
}

.btn-accent:hover{
    background-color: var(--accent-color-6);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    transform: scale(0.9);
}

.btn.btn__no-radius{
    border-radius: 0px;
}

.btn__btn-link{
    background-color: var(--accent-color-6);
    color: var(--accent-color-2);
    padding: 0px 5px 10px;
    border-radius: 0px;
    border-bottom: 1px solid var(--accent-color);
}

.btn__btn-link:hover{
    color: var(--accent-color);
    transform: scale(0.9);
    border-bottom: 1px solid var(--accent-color);
}

.btn__btn-link.btn-white-link{
    color: var(--accent-color-3);
}

.btn__btn-link.btn-white-link:hover{
    color: var(--accent-color);
    transform: scale(0.9);
    border-bottom: 1px solid var(--accent-color);
}

.testimonial-button{
    width: 41px;
    height: 41px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--accent-color-6);
    color: var(--accent-color-4);
    padding: 6px 13px 5px;
    border-radius: 1000px;
    border: 1px solid var(--accent-color);
    aspect-ratio: 1/1;
    font-size: 18px;

}

/* ====================== */
/* 10.0 Card Style */
/* ====================== */

.card{
    border: none;
    border-radius: 0px;
    transition: all 0.3s ease;
}

.experience-card{
    width: 23.8%;
    display: flex;
    flex-direction: column;
    border: 1px dashed var(--accent-color);
    border-radius: 1000px;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.private-dining-features-card{
    position: absolute;
    background-color: var(--secondary);
    color: var(--primary);
    width: 65%;
    left: 50px;
    bottom: 50px;
    padding: 30px;
}

.testimonial-card{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.faq-list__contact-card{
    background-color: var(--accent-color-3);
    color: var(--primary);
    border: 1px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px;
}

/* ====================== */
/* 11.0 Color & Font Family Custom */
/* ====================== */

/* 11.1 Color Custom */

.bg-accent-primary{
    background-color: var(--primary);
}

.bg-accent-color-3{
    background-color: var(--accent-color-3);
}

.primary-accent{
    color: var(--primary);
}

.secondary-accent{
    color: var(--secondary);
}

.accent-color{
    color: var(--accent-color);
}

.accent-color-4{
    color: var(--accent-color-4);
}

.accent-color-7{
    color: var(--accent-color-7);
}

/* 11.2 Font Family Custom */

.heading-font{
    font-family: var(--heading-font);
}

.heading-font-alt{
    font-family: var(--heading-alt-font);
}

.body-font{
    font-family: var(--body-font);
}

/* ====================== */
/* 12.0 Image Style */
/* ====================== */

.image-container{
    position: relative;
    z-index: 1;
}

.image-container img{
    max-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.chef-story__image{
    width: 40%;
}

.the-space-image{
    width: 30%;
}

.the-space-image img{
    width: 100%;
    height: 343px;
    border-radius: 150px 0px 0px 0px;
}

.reservation-image img{
    width: 100%;
    height: 520px;
}

.testimonial-image img{
    width: 200px;
    height: 200px;
    border-radius: 1000px;
}

.chef-philosophy__image img{
    width: 100%;
    height: 500px;
}

.philosophy__image img{
    width: 50%;
    border-radius: 1000px;

}

.location-detail__media img{
    width: 100%;
    height: 729px;
}

.location-detail__content-image img{
    width: 100%;
    height: 317px;
}

.faq-list__image img{
    width: 100%;
    height: 200px;
}

.single-post__recent-image img{
    width: 100%;
    height: 100%;
}

.single-post__featured-image img{
    width: 100%;
    height: 400px;
}

.private-experience__media--primary img{
    width: 100%;
    height: 381px;
}

.private-experience__media--secondary img{
    width: 100%;
    height: 381px;
}

.navbar-logo-container img{
    width: 60%;
}

.sidebar-logo img{
    width: 100%;
    max-width: 130px;
    max-height: 60px;
}

.footer__logo img{
    width: 50%;
}

/* ====================== */
/* 13.0 Heading Style */
/* ====================== */

.sub-heading{
    font-family: var(--body-font);
    font-size: 21px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.5em;
    letter-spacing: 0.5em;
}

/* ====================== */
/* 14.0 Form Style */
/* ====================== */

.form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form input,
.form select,
.form textarea{
    background-color: transparent;
    border: none;
    box-shadow: none;
    outline: none;
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5em;
    color: var(--primary);
    border-bottom: 1px solid var(--accent-color);
    padding-top: 17px;
}

.form label{
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5em;
}

.form .custom-dropdown {
    position: relative;
    padding: 17px 0px 0px;
}

.form .custom-dropdown__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: transparent;
    border: none;
    box-shadow: none;
    outline: none;
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5em;
    letter-spacing: normal;
    text-transform: none;
    color: var(--primary);
    border-bottom: 1px solid var(--accent-color);
    padding: 17px 0px;
    padding-bottom: 0;
    cursor: pointer;
    text-align: left;
}

.form .custom-dropdown__value.is-placeholder {
    color: var(--primary);
    font-weight: 600;
}

.form .custom-dropdown__arrow {
    width: 10px;
    height: 10px;
    border-right: 1px solid var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.form .custom-dropdown.is-open .custom-dropdown__arrow {
    transform: rotate(-135deg);
}

.form .custom-dropdown__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background-color: var(--white, #fff);
    border: 1px solid var(--accent-color);
    z-index: 20;
}

.form .custom-dropdown.is-open .custom-dropdown__menu {
    display: block;
}

.form .custom-dropdown__option {
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5em;
    color: var(--primary);
    padding: 8px 17px;
    cursor: pointer;
}

.form .custom-dropdown__option:hover,
.form .custom-dropdown__option.is-selected {
    background-color: var(--accent-color-7);
    color: var(--white, #fff);
}

.reservation-form{
    gap: 30px;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea{
    padding: 0;
}

.alert{
    background-color: var(--secondary);
    color: var(--primary);
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 20px;
    border: 1px solid var(--primary);
}

.alert p{
    max-width: 80%;
    margin: 0;
}

.hidden{
    display: none;
}

/* ====================== */
/* 15.0 Home Style */
/* ====================== */

.banner-home{
    background-color: var(--accent-color-2);
    color: var(--secondary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 0px 20px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.banner-home::before{
    content: '';
    position: absolute;
    background-image: linear-gradient(180deg, #0B0B0C8A 0%, var(--accent-color-2) 100%);
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#banner-home__video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    width: 150%;
    height: 150%;
    z-index: -2;
}

.banner-home__page-layout{
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-home__heading{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.heading-decoration{
    font-size: 21px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.5em;
    letter-spacing: 0.5em;
}

.banner-home__cta-container{
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
    padding-top: 30px;
}

.banner-home__description{
    width: 30%;
    padding-top: 30px;
    color: var(--accent-color-7);
}

.banner-home__footer{
    position: absolute;
    left: 0;
    bottom: 0;
    padding-bottom: 50px;
    width: 100%;
}

.banner-home__footer .site-container{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-home__meta{
    display: flex;
    flex-direction: column;
    gap: 0;
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5em;
    color: var(--accent-color-4);
}

.banner-home__meta.meta-contact{
    width: 9%;
}

.banner-home__meta.meta-schedule{
    width: 15%;
    justify-content: flex-end;
    text-align: end;
}

/* ====================== */
/* 16.0 Banner Inner Style */
/* ====================== */

.banner-inner{
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 60vh;
    padding: 100px 20px 0px;
    position: relative;
    z-index: 1;
}

.banner-inner::before{
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(180deg, var(--accent-color-2) 0%, var(--accent-color-6) 100%);
    opacity: 0.8;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner-inner.banner-experience{
    background-image: url('../images/CTA.jpg');
}

.banner-inner.banner-counter{
    background-image: url('../images/appetizer-platter-with-smoked-salmon-cream-cheese-PHJQRAV.jpg');
}

.banner-inner.banner-chef{
    background-image: url('../images/appetizer-platter-with-smoked-salmon-cream-cheese-PHJQRAV.jpg');
}

.banner-inner.banner-private{
    background-image: url('../images/exquisite-sushi-roll-platter-with-salmon-roe-JW2VHX8.jpg');
}

.banner-inner.banner-seasonal{
    background-image: url('../images/california-sushi-rolls-on-plate-URC2C32.jpg');
    background-position: bottom center;
}

.banner-inner.banner-reserve{
    background-image: url('../images/mini-sandwiches-with-smoked-salted-salmon-or-trout-YCZKR3E.jpg');
}

.banner-inner.banner-testimonial{
    background-image: url('../images/The-MAKAI-Experience-1.jpg');
    background-position: bottom center;
}

.banner-inner.banner-location{
    background-image: url('../images/sushi-on-a-plate-HNTFWKB.jpg');
}

.banner-inner.banner-faq{
    background-image: url('../images/The-MAKAI-Experience-4.jpg');
}

.banner-inner.banner-contact{
    background-image: url('../images/sushi-set-on-wooden-table-with-healthy-water-PKMHZ2E.jpg');
}

.banner-inner.banner-blog{
    background-image: url('../images/The-MAKAI-Experience-2.jpg');
}

.banner-inner.banner-single-post{
    background-image: url('../images/The-MAKAI-Experience-3.jpg');
}

.banner-inner .site-container{
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-inner__page-layout{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.banner-inner__title{
    color: var(--accent-color-4);
    letter-spacing: normal;
}

.banner-inner__breadcrumb{
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.banner-inner__breadcrumb li{
    font-family: var(--body-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2em;
    letter-spacing: 2.5px;
    color: var(--accent-color-4);
}

.banner-inner__breadcrumb a{
    font-weight: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}

.breadcrumb__home{
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.breadcrumb__home:hover{
    color: var(--accent-color-4);
}

/* ====================== */
/* 17.0 Notfound Style */
/* ====================== */

.banner-notfound{
    color: var(--accent-color-4);
    background-image: url('../images/404-Error-Page.jpg');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    padding: 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.banner-notfound::before{
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(at center center, var(--accent-color-6) 0%, var(--accent-color-2) 100%);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.banner-notfound__page-layout{
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.banner-notfound__notfound-text{
    font-size: 200px;
    font-weight: 600;
    line-height: 1.2em;
    color: var(--secondary);
}

.banner-notfound__title{
    letter-spacing: normal;
    text-transform: capitalize;
}

.banner-notfound__cta{
    display: flex;
    gap: 0px 50px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 30px;
}

/* ====================== */
/* 18.0 Experience Style */
/* ====================== */

/* 18.1 Experience Section */

.section.experience{
    background-color: var(--accent-color-3);
}

.experience__page-layout{
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.experience-card-wrapper{
    display: flex;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    flex-wrap: wrap;
}

.experience-card-image{
    background-color: var(--accent-color-2);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 720px auto;
    border-radius: 1000px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.experience-card:hover .experience-card-image{
    background-size: 800px auto;
}

.experience-card-image.seasonal-omakase{
    background-image: url('../images/The-MAKAI-Experience-2.jpg');
}

.experience-card-image.limited-counter-seating{
    background-image: url('../images/The-MAKAI-Experience-4.jpg');
}

.experience-card-image.chef-led-ritual{
    background-image: url('../images/The-MAKAI-Experience-3.jpg');
}

.experience-card-image.quiet-refined-atmosphere{
    background-image: url('../images/The-MAKAI-Experience-1.jpg');
}

.experience-card-image::before{
    content: '';
    position: absolute;
    background-image: linear-gradient(180deg, var(--accent-color-6) 0%, var(--accent-color-5) 100%);
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: -1;
    transition: all 0.3s ease;
}

.experience-card:hover .experience-card-image::before{
    opacity: 0.8;
}

.experience-card-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 460px;
    padding: 20px;
    color: var(--secondary);
}

.experience-subtitle{
    display: flex;
    flex-direction: row;
    gap: 25px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.experience-subtitle-line{
    width: 10%;
    border-bottom: 1px solid var(--accent-color);
}

.experience-heading{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.experience-title{
    width: 64%;
    text-align: center;
}

/* 18.2 Experience CTA */

.experience-cta{
    padding: 0px 20px;
    color: var(--secondary);
}

.experience-cta__page-layout{
    background-attachment: fixed;
    background-image: url('../images/CTA-1.jpg');
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px;
    position: relative;
    z-index: 1;
}

.experience-cta__page-layout::before{
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, var(--accent-color-5) 30%, var(--accent-color-6) 100%);
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: -1;
}

.experience-cta__content{
    width: 42%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ====================== */
/* 19.0 Chef Style */
/* ====================== */

/* 19.1 Chef Story */

.chef-story{
    background-color: var(--primary);
    color: var(--secondary);
    overflow: hidden;
    position: relative;
}

.chef-story__page-layout{
    display: flex;
    flex-direction: row;
    gap: 0px;
    justify-content: space-between;
    position: relative;
}

.chef-story__content{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    z-index: 1;
}

.chef-story__subtitle{
    color: var(--accent-color);
}

.chef-story__title{
    font-family: var(--heading-font);
}

.chef-story__description{
    width: 70%;
}

.chef-story__author{
    display: flex;
    flex-direction: column;
    gap: 0;
    align-self: flex-end;
    margin-bottom: 120px;
}

.chef-story__position{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent-color-7);
}

.chef-story__quote{
    width: 26%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: flex-end;
    margin-bottom: 120px;
}

.chef-story__blockquote{
    font-family: var(--heading-alt-font);
    font-size: 33px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.3em;
    color: var(--accent-color-4);
}

/* 19.2 Chef Profile */

.chef-profile{
    padding: 120px 20px 0px;
}

.chef-profile__page-layout{
    display: flex;
    gap: 0;
    justify-content: space-between;
}

.chef-profile__image{
    width: 34%;
    display: flex;
}

.chef-profile__image-decoration{
    position: absolute;
    left: 35px;
    bottom: 0;
    width: 250px;
    background-color: var(--accent-color);
    z-index: -1;
}

.chef-profile__image-decoration .spacer{
    height: 500px;
}

.chef-profile__content{
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 50px 0px;
    padding-top: 90px;
}

.chef-profile__content-footer{
    display: flex;
    gap: 0;
    justify-content: space-between;
}

.chef-profile__content-desc{
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding-right: 50px;
    border-right: 1px solid var(--accent-color-4);
}

.chef-profile__quote{
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    padding-left: 50px;
}

.chef-profile__quote .blockquote{
    color: var(--primary);
    font-family: var(--heading-alt-font);
    font-size: 33px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.3em;
}

/* 19.3 Chef Philosophy */

.chef-philosophy{
    background-color: var(--accent-color-5);
    color: var(--accent-color-4);
}

.chef-philosophy__page-layout{
    display: flex;
    gap: 0;
    justify-content: space-between;
}

.chef-philosophy__content{
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.chef-philosophy__cta{
    font-family: var(--heading-alt-font);
    font-size: 33px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.3em;
    letter-spacing: normal;
    text-transform: none;
    transition: transform 0.3s ease;
}

.chef-philosophy__cta:hover{
    transform: translateX(10px);
}

.chef-philosophy__cta i{
    color: var(--accent-color);
}

.chef-philosophy__image{
    width: 45%;
}

/* ====================== */
/* 20.0 The Space Style */
/* ====================== */

.the-space{
    background-color: var(--accent-color-3);
    color: var(--primary);
    position: relative;
    overflow: hidden;
}

.the-space__page-layout{
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.the-space__heading{
    display: flex;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.the-space__sub-title{
    width: 15%;
    padding-top: 13px;
}

.the-space__title{
    font-family: var(--heading-font);
    width: 78.5%;
    padding-right: 129px;
}

.the-space__content{
    display: flex;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
}

.the-space__content-image{
    width: 65%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-end;
}

.the-space__video-container{
    width: 67%;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

#the-space__video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    width: 120%;
    height: 120%;
    z-index: 1;
}

.the-space__description{
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.the-space__features{
    width: 78.5%;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-self: flex-end;
}

.the-space__feature{
    display: flex;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    border-bottom: 1px dashed var(--accent-color);
    padding-bottom: 20px;
}

.the-space__feature:nth-child(even){
    padding-top: 20px;
}

.the-space__feature-title{
    font-family: var(--heading-alt-font);
}

.the-space__feature-description{
    width: 52%;
    margin: 0;
}

.the-space__image-banner.banner-left{
    position: absolute;
    width: 20%;
    top: 250px;
    left: 0;
    z-index: 1;
}

.the-space__image-banner.banner-right{
    position: absolute;
    width: 23%;
    right: 120px;
    top: 0;
    z-index: 1;
}

/* ====================== */
/* 21 The Course Style */
/* ====================== */

.course{
    position: relative;
    overflow: hidden;
}

.course__page-layout{
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.course-content{
    align-self: flex-end;
    width: 47%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.course-title{
    font-family: var(--heading-font);
}

.course-accordion-col{
    width: 53%;
}

.course__accordion{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.course__accordion .accordion-item{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    border: none;
    background-color: transparent;
    outline: none;
    
}

.course__accordion .accordion-header{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 0px 0px 10px;
    border-bottom: 1px solid var(--accent-color-4);
}

.course__acordion-content{
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.course__accordion-icon{
    transition: all 0.3s ease;
}

.course__accordion .accordion-button{
    display: flex;
    align-items: center;
    box-shadow: none;
    justify-content: space-between;
    padding: 0;
    text-transform: none;
    letter-spacing: normal;
}

.course__accordion .accordion-button::after{
    display: none;
}

.course__accordion .accordion-button:not(.collapsed){
    background-color: transparent;
    color: var(--primary);
}

.course__accordion .accordion-button:not(.collapsed) .course__accordion-icon{
    transform: rotate(180deg);
}

.course__accordion .accordion-body{
    padding: 10px 0px 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.course__accordion-button-subtitle{
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5em;
    color: var(--accent-color);
    text-transform: uppercase;
}

.course__accordion-button-title{
    font-family: var(--heading-alt-font);
}

.course-image{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.course-image.course-image-top{
    background-image: url('../images/The-Omakase-Course-1.1.jpg');
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    border-radius: 0px 0px 300px 0px;
    transition: 0.3s ease;
}

.course-image.course-image-top .spacer{
    height: 550px;
}

.course-image.course-image-top:hover{
    background-image: url('../images/The-Omakase-Course-1.2.jpg');
}

.course-image.course-image-bottom{
    background-image: url('../images/The-Omakase-Course-2.0.jpg');
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    border-radius: 300px 0px 0px 0px;
    transition: 0.3s ease;
}

.course-image.course-image-bottom .spacer{
    height: 550px;
}

.course-image.course-image-bottom:hover{
    background-image: url('../images/The-Omakase-Course-2.1.jpg');
}

/* ====================== */
/* 22.0 Resevation Style */
/* ====================== */

.reservation{
    background-color: var(--accent-color-3);
    color: var(--primary);
}

.reservation__page-layout{
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.reservation__heading{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 54%;
}

.reservation-content{
    display: flex;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
}

.reservation-info-container{
    width: 28%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reservation-info{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reservation-info .divider{
    border-bottom: 1px dashed var(--accent-color);
}

.reservation-info-item{
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: center;
    justify-content: space-between;
}

.reservation-info-icon{
    width: 70px;
    height: 70px;
    border-radius: 1000px;
    border: 1px dashed var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.reservation-info-content{
    width: 75%;
}

.reservation__info-text{
    margin: 0;
    width: 70%;
}

.reservation-image-container{
    width: 34%;
}

.reservation-form__wrapper{
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reservation-form-container{
    display: flex;
    flex-direction: column;
    gap: 30px;
    border: 1px dashed var(--accent-color);
    padding: 30px;
}

.reservation__form-group{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ====================== */
/* 23.0 Private Style */
/* ====================== */

/* 23.1 Private Dining */

.private-dining{
    padding: 0;
    position: relative;
    overflow: hidden;
}

.private-dining__page-layout{
    display: flex;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
}

.private-dining__features-container{
    width: 46%;
    background-image: url('../images/Private-Dining.jpg');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}

.private-dining__intro{
    width: 47%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: flex-end;
    padding: 100px 0px 50px;
}

.private-dining__heading{
    width: 560px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.private-dining-feature{
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
    padding: 0px 0px 30px;
}

.private-dining-features-card .private-dining-feature:nth-child(even){
    border-bottom: 1px dashed var(--accent-color);
    border-top: 1px dashed var(--accent-color);
    padding: 30px 0px;
}

.private-dining-features-card .private-dining-feature:last-child{
    padding: 30px 0px 0px;
}

.private-dining-feature-icon{
    width: 70px;
    height: 70px;
    border: 1px dashed var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1000px;
    font-size: 24px;
    aspect-ratio: 1/1;
}

.private-dining-feature-content{
    width: 83%;
}

.private-dining-slider{
    width: 100%;
    position: relative;
    overflow: hidden;
}

.private-experience{
    background-color: var(--accent-color-3);
    color: var(--primary);
}

.private-experience__page-layout{
    display: flex;
    gap: 0;
    justify-content: space-between;
}

.private-experience__details{
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.private-experience__text{
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-right: 50px;
    border-right: 1px dashed var(--accent-color);
}

.private-experience__list{
    width: 45%;
}

.private-experience__list{
    padding: 0;
    padding-left: 50px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.private-experience__list li{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--text-color);
}

.private-experience__list li::before{
    content: '\f058';
    font-family: "Font Awesome 7 Free";
    font-weight: 700;
    color: var(--accent-color);
    margin-right: 0.5em;
    display: inline-block;
}

.private-experience__intro{
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.private-experience__heading{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ====================== */
/* 24.0 Testimonial Style */
/* ====================== */

/* 24.1 Dark Banner */

.testimonial{
    background-color: var(--accent-color-2);
    color: var(--secondary);
    position: relative;
}

.testimonial__page-layout{
    display: flex;
    flex-direction: column;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.testimonial-heading{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.testimonial-slider{
    width: 100%;
    overflow: hidden;
}

.testimonial-content{
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.testimonial-author{
    display: flex;
    flex-direction: column;
    gap: 0;
}

.testimonial-name{
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--accent-color-4);
}

.testimonial-position{
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5em;
    color: var(--accent-color);
}

.testimonial-quote{
    font-family: var(--heading-alt-font);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.6em;
    color: var(--accent-color-4);
}

.testimonial-decoration-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 421px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

.testimonial-decoration-text{
    font-family: var(--heading-alt-font);
    font-size: 200px;
    font-weight: 500;
    line-height: 1.2em;
    letter-spacing: 0.25em;
    color: #131313;
    text-align: center;
}

.testimonial-overlay{
    position: absolute;
    width: 30%;
    z-index: 2;
}

.testimonial-overlay.overlay-left{
    left: 0;
    bottom: 0;
    background-image: linear-gradient(90deg, var(--accent-color-2) 0%, var(--accent-color-6) 100%);
}

.testimonial-overlay.overlay-right{
    right: 0;
    bottom: 0;
    background-image: linear-gradient(270deg, var(--accent-color-2) 0%, var(--accent-color-6) 100%);
}

.testimonial-overlay .spacer{
    min-height: 510px;
}

.testimonial-navigation{
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* 24.2 Light Banner */

.testimonial-light{
    background-color: var(--secondary);
    color: var(--primary);
}

.testimonial-light .testimonial-decoration-container{
    display: none;
}

.testimonial-light .testimonial-overlay.overlay-left{
    background-image: linear-gradient(90deg, var(--secondary) 0%, var(--accent-color-6) 100%);
}

.testimonial-light .testimonial-overlay.overlay-right{
    background-image: linear-gradient(270deg, var(--secondary) 0%, var(--accent-color-6) 100%);
}

.testimonial-light .testimonial-name,
.testimonial-light .testimonial-quote{
    color: var(--primary);
}

.testimonial-light .testimonial-button{
    background-color: var(--accent-color);
    color: var(--primary);
    border: 1px solid var(--accent-color);
    transition: all 0.3s ease;
}

.testimonial-light .testimonial-button:hover{
    border: 1px solid var(--accent-color);
    background-color: var(--accent-color-6);
    color: var(--accent-color);
}

/* ====================== */
/* 25.0 Location Style */
/* ====================== */

/* 25.1 Location */

.location__page-layout{
    display: flex;
    gap: 0;
    justify-content: space-between;
}

.location-title-container{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location__title-heading{
    display: flex;
    justify-content: space-between;
}

.location__sub-heading{
    padding-top: 18px;
}

.location-heading{
    width: 70%;
}

.location-content{
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: flex-end;
}

.location-map-container{
    width: 40%;
}

.location-map{
    width: 100%;
    height: 426px;
    border: none;
}

/* 25.2 Location Detail */

.location-detail{
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.location-detail__image-decoration{
    position: absolute;
    width: 20%;
    right: 80px;
    top: 0;
}

.location-detail__page-layout{
    display: flex;
    gap: 0;
    justify-content: space-between;
}

.location-detail__media{
    width: 27%;
}

.location-detail__content{
    width: 69%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.location-detail__heading{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-detail__heading .location-detail__title{
    width: 67%;
}

.location-detail__details{
    display: flex;
    gap: 0;
    justify-content: space-between;
}

.location-detail__intro{
    width: 39%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-detail__access{
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
}

.location-detail__access-desc{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-detail__access-desc .divider{
    border-bottom: 1px dashed var(--accent-color);
}

.location-detail_map{
    width: 100%;
    height: 250px;
}

.location-detail__access-list{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-detail__access-list li{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
}

.location-detail__access-list li::before{
    content: '\f058';
    font-family: "Font Awesome 7 Free";
    font-weight: 700;
    color: var(--text-color);
    margin-right: 0.5em;
    display: inline-block;
}

.location-detail__note{
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ====================== */
/* 26.0 Location Marquee Style */
/* ====================== */

.location-marquee{
    padding: 0px 20px 120px;
}

.location-marquee__page-layout{
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/CTA.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 480px;
    position: relative;
    overflow: hidden;
}

.location-marquee-text{
    display: flex;
    flex-direction: row;
    gap: 35px;
    flex-wrap: nowrap;
    align-items: center;
    white-space: nowrap;
    width: max-content;
    animation: location-marquee-scroll var(--location-marquee-duration, 40s) linear infinite;
    will-change: transform;
}

.location-marquee-text__item,
.location-marquee-separator{
    flex-shrink: 0;
    font-family: var(--heading-alt-font);
    font-size: 200px;
    font-weight: 400;
    line-height: 1.2em;
    color: var(--secondary);
}

.location-marquee-separator{
    font-size: 100px;
}

/* ====================== */
/* 27. Philosophy Style */
/* ====================== */

.philosophy__page-layout{
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.philosophy__heading{
    text-align: center;
}

.philosophy__content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.philosophy__item{
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
}

.philosophy__item-desc{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.philosophy__item-subtitle{
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5em;
    color: var(--accent-color);
}

/* ====================== */
/* 28.0 Seasonal Style */
/* ====================== */

/* 28.1 Seasonality */

.seasonality{
    background-color: var(--accent-color-3);
}

.seasonality__page-layout{
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.seasonality__media{
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#seasonality-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    width: 130%;
    height: 130%;
    z-index: 1;
}

.seasonality__content{
    display: flex;
    gap: 0;
    justify-content: space-between;
}

.seasonality__heading{
    width: 26%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.seasonality__desc{
    width: 67%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* 28.2 Seasonal Highlight */

.seasonal-highlights{
    background-color: var(--accent-color-5);
    color: var(--accent-color-4);
}

.seasonal-highlights__page-layout{
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.seasonal-highlights__heading{
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.seasonal-highlights__content{
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.seasonal-highlights__content.seasonal-highlights__mobile{
    display: none;
}

.seasonal-highlights__accordion{
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.seasonal-highlights__tabs{
    display: flex;
    gap: 50px;
    align-items: center;
}

.seasonal-highlights__tab{
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--accent-color-3);
    padding: 0px 5px 5px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--accent-color);
    transition: all 0.3s ease;
}

.seasonal-highlights__tab:hover,
.seasonal-highlights__tab.active{
    color: var(--accent-color);
    transform: scale(0.9);
}

.seasonal-highlights__accordion-item .seasonal-highlights__panel {
    display: none;
}

.seasonal-highlights__accordion-item.is-active .seasonal-highlights__panel {
    display: flex;
}

.seasonal-highlights__grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.seasonal-highlights__item,
.seasonal-highlights__accordion-item{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ====================== */
/* 29.0 FAQ Style */
/* ====================== */

/* 29.1 FAQ Highlight */

.faq-highlight__page-layout{
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.faq-highlight__heading{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.faq-highlight__content{
    display: flex;
    gap: 0;
    justify-content: space-between;
}

.faq-highlight__column{
    width: 46%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* 29.2 FAQ List */

.faq-list__page-layout{
    display: flex;
    gap: 0;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.faq-list__sidebar{
    width: 30%;
    height: 100%;
    position: sticky;
    top: 100px;
    z-index: 2;
}

.faq-list__card-wrapper{
    border: 1px dashed var(--accent-color);
}

.ask-team__form-group{
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-list__content{
    width: 66%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.faq-list__group{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 29.3 FAQ Accordion */

.faq__accordion{
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq__accordion .accordion-item{
    background-color: transparent;
    border: none;
    outline: none;
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 100%;
}

.faq__accordion .accordion-button{
    padding: 15px 0px;
    border: none;
    border-radius: 0 !important;
    background-color: var(--accent-color-6);
    color: var(--accent-color-5);
    font-family: var(--heading-alt-font);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2em;
    letter-spacing: normal;
    text-transform: none;
    box-shadow: none;
    border-bottom: 1px solid var(--accent-color-4);
}

.faq__accordion .accordion-button::after {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="%231A1A1A" viewBox="0 0 20 20"><rect x="9" y="4" width="2" height="12"/><rect x="4" y="9" width="12" height="2"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    color: var(--accent-color);
    fill: var(--accent-color);
    content: "";
    width: 1.5em;
    height: 1.5em;
    transition: background-image 0.3s;
}

.faq__accordion .accordion-button:not(.collapsed)::after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="%231A1A1A" viewBox="0 0 20 20"><rect x="4" y="9" width="12" height="2"/></svg>');
}

.faq__accordion .accordion-body{
    padding: 0;
    padding-top: 15px;
}

.faq__accordion .accordion-body p{
    margin-bottom: 15px;
}

/* ====================== */
/* 30.0 Contact Style */
/* ====================== */

/* 30.1 Contact */

.contact{
    position: relative;
    z-index: 1;
}

.contact__page-layout{
    display: flex;
    gap: 0;
    justify-content: space-between;
}

.contact__info{
    width: 31%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__heading{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__intro p{
    margin: 0;
}

.contact__info .contact__divider{
    margin: 10px 0px;
    border-bottom: 1px dashed var(--accent-color);
}

.contact__blocks{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__block{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact__label{
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5em;
    color: var(--accent-color);
}

.contact__block p{
    margin: 0;
}

.contact__form-wrapper{
    width: 59%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__form{
    background-color: var(--accent-color-3);
    color: var(--primary);
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 50px;
    border: 1px dashed var(--accent-color);
}

.contact-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__form-heading{
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.contact__form-group{
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact__highlight-text-container{
    position: absolute;
    left: 0;
    width: 100%;
    bottom: -120px;
    z-index: -1;
    display: flex;
    justify-content: center;
    text-align: center;
}

.contact__highlight-text{
    font-family: var(--heading-alt-font);
    font-size: 200px;
    font-weight: 500;
    line-height: 1.2em;
    letter-spacing: 0.25em;
    color: var(--accent-color-4);
}

/* 30.1 Contact Map Style */

.contact-map{
    position: relative;
    z-index: 1;
    width: 100%;
    height: 495px;
}

/* ====================== */
/* 31.0 Blog Post Section */
/* ====================== */

/* 31.1 Blog Section */

.blog__page-layout{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog__grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog__item{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog__image{
    position: relative;
    overflow: hidden;
}

.blog__item .blog__image img{
    transition: all 0.4s ease;
}

.blog__item:hover .blog__image img{
    transform: scale(1.05) rotate(2deg);
    opacity: 0.8;
}

.blog__title{
    font-family: var(--heading-alt-font);
}

.blog__title a{
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: normal;
    text-transform: none;
}

.blog__meta{
    display: flex;
    gap: 35px;
    align-items: center;
}

.blog__meta-item{
    display: flex;
    gap: 5px;
    align-items: center;
    font-family: var(--body-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5em;
}

.blog__meta-item a{
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: normal;
    text-transform: none;
}

/* 31.2 Single Post */

.single-post__page-layout{
    display: flex;
    flex-direction: row-reverse;
    gap: 0;
    justify-content: space-between;
}

.single-post__sidebar{
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.single-post__widget{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.single-post__widget-divider{
    width: 100%;
    margin: 2px 0px;
    border-bottom: 1px solid var(--accent-color-4);
}

.single-post__category-list{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.single-post__category-item{
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    text-transform: none;
    letter-spacing: normal;
    color: var(--primary);
    transition: all 0.3s ease;
}

.single-post__category-item:hover{
    color: var(--accent-color);
}

.single-post__category-item i{
    color: var(--accent-color);
}

.single-post__category-item a{
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
}

.single-post__recent-list{
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}

.single-post__recent-item{
    display: flex;
    gap: 15px;
    align-items: center;
}

.single-post__recent-image{
    width: 115px;
    height: 115px;
}

.single-post__recent-info{
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.single-post__recent-date{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--accent-color);
}

.single-post__recent-title{
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5em;
    text-transform: none;
    letter-spacing: normal;
    transition: color 0.3s ease;
}

.single-post__recent-title:hover{
    color: var(--accent-color-7);
}

.single-post__recent-title a{
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
}

.single-post__tags{
    width: 79%;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.single-post__tag{
    padding: 5px 10px;
    border: 1px solid var(--accent-color);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5em;
}

.single-post__content{
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.single-post__content-spacer{
    height: 10px;
}

.single-post__meta-top{
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.single-post__category-badge{
    width: 160px;
    background-color: var(--accent-color);
    color: var(--primary);
    padding: 5px 0px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5em;
    display: flex;
    justify-content: center;
}

.single-post__meta-group{
    padding: 0;
    display: flex;
    gap: 0px;
    align-items: center;
}

.single-post__meta-item{
    padding: 0px 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5em;
    display: flex;
    gap: 5px;
    align-items: center;
}

.single-post__meta-item i{
    font-size: 16px;
}

.single-post__meta-group .single-post__meta-item:first-child{
    border-right: 1px solid var(--accent-color-4);
}

.single-post__body{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.single-post__quote{
    width: 95.9%;
    background-color: var(--accent-color-2);
    color: var(--accent-color-4);
    display: flex;
    gap: 20px;
    border-radius: 20px;
    padding: 20px 20px 20px 0px;
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
}

.single-post__quote-icon{
    width: 70px;
    height: 70px;
    background-color: var(--secondary);
    color: var(--accent-color-2);
    border: 5px solid var(--accent-color-2);
    border-radius: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    aspect-ratio: 1/1;
    margin-left: -34px;
}

.single-post__quote-text{
    font-family: var(--heading-alt-font);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.6em;
    color: var(--accent-color-4);
    margin: 0;
}

.single-post__footer{
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--accent-color-4);
}

.single-post__social{
    display: flex;
    gap: 5px;
    align-items: center;
}

.single-post__social-link{
    width: 30px;
    height: 30px;
    background-color: var(--accent-color-2);
    color: var(--secondary);
    border: 1px solid var(--accent-color-2);
    border-radius: 100px;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    transition: all 0.3s ease;
}

.single-post__social-link:hover{
    background-color: var(--accent-color-6);
    color: var(--accent-color-2);
}

/* ====================== */
/* 32.0 Animation Preset */
/* ====================== */

.animation-box {
    opacity: 0;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: opacity, transform;
}

.anim-fast {
    --anim-duration: var(--anim-duration-fast);
}

.anim-normal {
    --anim-duration: var(--anim-duration-normal);
}

.anim-slow {
    --anim-duration: var(--anim-duration-slow);
}

.anim-delay-none {
    --anim-delay: var(--anim-delay-none);
}

.anim-delay-sm {
    --anim-delay: var(--anim-delay-sm);
}

.anim-delay-md {
    --anim-delay: var(--anim-delay-md);
}

/* ====================== */
/* 33.0 Spacing Preset */
/* ====================== */

/* 33.1 Flex Gap */

.flex-gap-0 { 
    gap: 0px; 
}
.flex-gap-1 { 
    gap: 10px; 
}
.flex-gap-2 { 
    gap: 20px; 
}
.flex-gap-3 { 
    gap: 30px; 
}
.flex-gap-4 { 
    gap: 40px ; 
}
.flex-gap-5 { 
    gap: 50px; 
}
.flex-gap-x-0 { 
    column-gap: 0px; 
}
.flex-gap-x-1 { 
    column-gap: 10px; 
}
.flex-gap-x-2 { 
    column-gap: 20px; 
}
.flex-gap-x-3 { 
    column-gap: 30px; 
}
.flex-gap-x-4 { 
    column-gap: 40px; 
}
.flex-gap-x-5 { 
    column-gap: 50px; 
}

.flex-gap-y-0 { 
    row-gap: 0px; 
}
.flex-gap-y-1 { 
    row-gap: 10px; 
}
.flex-gap-y-2 { 
    row-gap: 20px; 
}
.flex-gap-y-3 { 
    row-gap: 30px; 
}
.flex-gap-y-4 { 
    row-gap: 40px; 
}
.flex-gap-y-5 { 
    row-gap: 50px; 
}

/* 33.2 Grid Gap */

.grid-gap-0{
    --bs-gutter-x: 0px;
    --bs-gutter-y: 0px;
}

.grid-gap-1{
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
}

.grid-gap-2{
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

.grid-gap-3{
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

.grid-gap-4{
    --bs-gutter-x: 40px;
    --bs-gutter-y: 40px;
}

.grid-gap-5{
    --bs-gutter-x: 50px;
    --bs-gutter-y: 50px;
}

.grid-gap-x-0 {
    --bs-gutter-x: 0px;
}
.grid-gap-x-1 {
    --bs-gutter-x: 10px;
}
.grid-gap-x-2 {
    --bs-gutter-x: 20px;
}
.grid-gap-x-3 {
    --bs-gutter-x: 30px;
}
.grid-gap-x-4 {
    --bs-gutter-x: 40px;
}
.grid-gap-x-5 {
    --bs-gutter-x: 50px;
}

.grid-gap-y-0 {
    --bs-gutter-y: 0px;
}
.grid-gap-y-1 {
    --bs-gutter-y: 10px;
}
.grid-gap-y-2 {
    --bs-gutter-y: 20px;
}
.grid-gap-y-3 {
    --bs-gutter-y: 30px;
}
.grid-gap-y-4 {
    --bs-gutter-y: 40px;
}
.grid-gap-y-5 {
    --bs-gutter-y: 50px;
}