* {
    font-family: var(--objektiv-font);
}

body {
    background-color: var(--body-color) !important;
}

a {
    text-decoration: none !important;
}



/* scrollbar style */
/* For Chrome, Edge, and Safari */
::-webkit-scrollbar {
    width: 8px;
    height: 4px;
    /* scrollbar width */
}

::-webkit-scrollbar-track {
    background: var(--white2);
    /* background of the track */
}

::-webkit-scrollbar-thumb {
    background: var(--light-red);
    /* scrollbar handle color */
    border-radius: 5px;
    /* rounded corners */
}

.site-header {
    background: var(--light-orange);
    padding: 30px 15px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 99;
}

.desktop-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.site-header .nav-bar ul,
.site-footer .nav-bar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 16px;
}

.site-header .nav-bar ul li,
.site-footer .nav-bar ul li {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 4px;
    position: relative;
    align-items: center;
}

.site-header .nav-bar ul li a {
    padding: 0;
    margin: 0;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    color: var(--blue);
}

.site-header .nav-bar ul li a.active {
    font-weight: 700;
}

.desktop-header .nav-bar ul li>.arrow {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.desktop-header .nav-bar ul li>.arrow img {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
}

/* .desktop-header .nav-bar ul li.submenu-open>.arrow img {
    transform: rotate(180deg);
} */

.desktop-header .nav-bar ul li.submenu-open>a {
    font-weight: 700;
}

.desktop-header .nav-bar ul li .sub-menu {
    position: absolute;
    top: calc(100% + 30px);
    left: 0;
    min-width: 180px;
    background: var(--light-orange);
    color: var(--blue);
    padding: 16px;
    display: none;
    flex-direction: column;
    gap: 9px;
    z-index: 20;
}

.desktop-header .nav-bar ul li .sub-menu li {
    margin-bottom: 9px;
}

.desktop-header .nav-bar ul li .sub-menu li a {
    font-weight: 500;
}

.desktop-header .site-logo img {
    width: 156px;
    height: 33px;
}

.hamburger-icon {
    cursor: pointer;
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 100%;
    background: var(--white2);
    transform: translateX(100%);
    transition: transform 0.6s ease;
    z-index: 1000;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 32px;
}

.mobile-menu.open {
    transition: transform 0.6s ease;
    transform: translateX(0);
    pointer-events: auto;
}

body.no-scroll {
    overflow: hidden;
}

.mobile-menu .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.mobile-menu .top-bar img {
    cursor: pointer;
}

.mobile-menu .nav-bar ul {
    flex-direction: column;
    gap: 12px;
}

.mobile-menu .nav-bar ul li {
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mobile-menu .nav-bar ul li .sub-menu {
    display: none;
    padding-top: 8px;
}

.mobile-menu .nav-bar ul li.submenu-open>.sub-menu {
    display: block;
}

.mobile-menu .social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.mobile-menu .social-icons img {
    width: 25px;
    height: 25px;
}

/* footer design starts */
.site-footer {
    background: var(--blue);
    padding: 54px 0 29px;
}

.site-footer .container {
    display: flex;
    flex-direction: column;
}

.site-footer .footer-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 39px;
}

.site-footer .footer-top .footer-logo img {
    max-width: 340px;
    width: 100%;
    height: 72px;
}

.site-footer .nav-bar ul {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-footer .nav-bar ul li a {
    padding: 0;
    margin: 0;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    color: var(--white);
}

.site-footer .nav-bar ul li {
    flex-direction: column;
    align-items: flex-start;
}

.site-footer .nav-bar ul li.has-sub-menu {
    min-width: 177px;
}

.site-footer .nav-bar ul li.submenu-open>a {
    font-weight: 700;
}

.site-footer .nav-bar ul li ul.sub-menu {
    flex-direction: column;
    position: absolute;
    top: calc(100% + 20px);
    left: 0px;
    width: 100%;
    background: var(--light-orange);
    padding: 16px;
    border-radius: 16px;
    display: none;
}

.site-footer .nav-bar ul li ul.sub-menu li {
    margin-bottom: 9px;
}

.site-footer .nav-bar ul li ul.sub-menu li a {
    color: var(--blue);
    font-weight: 500;
}

.site-footer .footer-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 62px;
}

.site-footer .footer-tagline img {
    max-width: 983px;
    height: 76px;
    /* object-fit: cover; */
    width: 100%;
}

.site-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.site-footer .footer-bottom p {
    color: var(--white);
    font-family: var(--commissioner-font);
}

.site-footer .footer-bottom .footer-social {
    display: flex;
    gap: 14px;
}

.site-footer .footer-bottom .footer-social img {
    width: 25px;
    height: 25px;
}


/* hero banner style */
.hero-banner {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.hero-banner img.herobanner-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.hero-banner img.mob-herobanner-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: none;
}

.hero-banner .container .content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 525px 0 72px;
    z-index: 2;
    position: relative;
}

/* how its works section */
.how-its-works {
    padding: 30px 0;
    /* background: var(--light-orange); */
    position: relative;
    overflow: visible;
}

.how-its-works::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 100px);
    background: var(--light-orange);
    z-index: -1;
}

.how-its-works::after {
    content: "";
    position: absolute;
    bottom: -42px;
    left: 0;
    width: 100%;
    height: 340px;
    background: url(../assets/down-curv-shape.svg) no-repeat;
    z-index: -2;
    background-size: cover;
    background-position: center;
}

.how-its-works .content {
    margin-bottom: 710px;
}

.how-its-works .label {
    margin-bottom: 16px;
}

.how-its-works .title {
    font-size: 28px;
    font-weight: 900;
    line-height: 34px;
    color: var(--blue);
}

.how-its-works .description {
    font-size: 32px;
    font-weight: 400;
    line-height: 45px;
    color: var(--blue);
}

.how-its-works .image {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    height: 100%;
}

.how-its-works .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how-its-works .button {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}


/* healthy menu slider */
.healthy-menu-slider {
    padding: 30px 0;
    position: relative;
}

.healthy-menu-slider.proteins-soup-group::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 100px);
    background: var(--light-orange);
    z-index: -1;
}

.healthy-menu-slider.proteins-soup-group::after {
    content: "";
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: 360px;
    background: url(../assets/up-curve-shape.svg);
    z-index: -1;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}

.healthy-menu-slider.drinks::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-orange);
    z-index: -1;
}

.healthy-menu-slider.drinks::after {
    content: "";
    position: absolute;
    top: -220px;
    left: 0;
    width: 100%;
    height: 360px;
    background: url(../assets/up-curve-shape.svg);
    z-index: -1;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}

.healthy-menu-slider.sandwich::before {
    content: "";
    position: absolute;
    top: -80px;
    right: 160px;
    width: 100%;
    max-width: 460px;
    height: 170px;
    background: url("../assets/grab-go.svg") no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 1;
    rotate: -4deg;
}

.healthy-menu-slider .heading-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

.healthy-menu-slider .heading-top .nav-bar {
    display: flex;
    gap: 12px;
}

.healthy-menu-slider .heading-top .nav-bar .arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--blue);
}

.healthy-menu-slider .heading-top .nav-bar .left-arrow.disabled,
.healthy-menu-slider .heading-top .nav-bar .right-arrow.disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: default;
}

.healthy-menu-slider .heading-top .nav-bar .arrows img {
    width: 17px;
    height: 21px;
}

.healthy-menu-slider ul.menu-tabs {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0 3px;
    overflow: auto;
    margin: 0;
}

.healthy-menu-slider ul.menu-tabs li {
    list-style: none;
    flex: auto;
}

.healthy-menu-slider ul.menu-tabs li button {
    padding: 10px;
    background: var(--light-blue);
    border: none;
    color: var(--blue);
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    border-radius: 12px;
    white-space: nowrap;
}

.healthy-menu-slider ul.menu-tabs li button.active {
    background: var(--blue);
    color: var(--white);
}

.healthy-menu-slider .menu-items-slider {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.healthy-menu-slider .menu-items-slider .menu-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    /* align-items: center; */
    justify-content: flex-start;
}

.healthy-menu-slider .menu-items-slider .menu-items.owl-carousel {
    display: block;
}

.healthy-menu-slider .owl-carousel .owl-stage-outer {
    padding: 10px 0;
}

.healthy-menu-slider .menu-items-slider .menu-items.owl-carousel .owl-stage {
    display: flex;
}

.healthy-menu-slider .menu-items-slider .menu-items .box {
    background: var(--white);
    box-shadow: 0px 1px 4px 0px #0C0C0D1A;
    border-radius: 12px;
    max-width: calc((100% - 60px) / 3);
    flex: 0 0 calc((100% - 60px) / 3);
    height: auto;
}

.healthy-menu-slider .menu-items-slider .menu-items .vibe-box {
    max-width: calc((100% - 60px) / 3);
    flex: 0 0 calc((100% - 60px) / 3);
    height: auto;
    position: relative;
}

.healthy-menu-slider .menu-items-slider .menu-items .vibe-box img.vibe-img {
    position: absolute;
    top: -120px;
    left: -10%;
    object-fit: contain;
    width: 270%;
    object-position: left;
    height: 170%;
    z-index: 1;
}

.healthy-menu-slider .menu-items-slider .menu-items.owl-carousel .box {
    max-width: none;
    flex: none;
    height: 100%;
}

.healthy-menu-slider .menu-items-slider .menu-items .box .top {
    position: relative;
}

.healthy-menu-slider .menu-items-slider .menu-items .box .top>img {
    width: 100%;
    height: 281px;
    object-fit: cover;
    border-radius: 12px;
}

.healthy-menu-slider .menu-items-slider .menu-items .box .top img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 78.39%, rgba(0, 0, 0, 0.2) 91.63%, rgba(0, 0, 0, 0.2) 100%);
    border-radius: 12px;
    z-index: 1;
}

.healthy-menu-slider .menu-items-slider .menu-items .box .top h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    backdrop-filter: blur(25px);
    background: #FFFFFF1A;
    margin: 0 12px 8px;
    padding: 2px 5px;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    color: var(--white);
    text-align: center;
    border-radius: 12px;
    width: calc(100% - 24px);
}

.healthy-menu-slider .menu-items-slider .menu-items .box .top .label {
    position: absolute;
    top: 16px;
    right: 16px;
}

.healthy-menu-slider .menu-items-slider .menu-items .box .bottom {
    padding: 16px;
}

.healthy-menu-slider .menu-items-slider .menu-items .box .bottom .title {
    font-weight: 700;
    font-size: 12px;
    line-height: 17px;
    margin-bottom: 13px;
    color: var(--black);
}

.healthy-menu-slider .menu-items-slider .menu-items .box .bottom .ingredients {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    margin: 0;
    color: var(--black);
}

.healthy-menu-slider .menu-items-slider .menu-items {
    transition: transform 0.3s ease;
    will-change: transform;
}

.healthy-menu-slider .button {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    margin-top: 36px;
}

.healthy-menu-slider.has-slider .button .outline-btn.view-more-btn {
    display: none;
}

.healthy-menu-slider.no-slider .button .dark-btn.see-more-btn {
    display: none;
}

.healthy-menu-slider .button .dark-btn.see-more-btn {
    margin: 0 auto 0;
}

.healthy-menu-slider .button .outline-btn.view-more-btn {
    margin: 0 0 0 auto;
}

.healthy-menu-slider .owl-carousel .owl-dots {
    display: none;
}

.healthy-menu-slider .owl-carousel button.owl-dot {
    background: var(--light-blue);
    border: none;
    padding: 0 !important;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.healthy-menu-slider .owl-carousel button.owl-dot.active {
    background: var(--blue);
}

/* ambassador style */
.brand-ambassador {
    padding: 50px 0 0;
    position: relative;
    overflow: hidden;
}

.brand-ambassador>.container>.label {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.brand-ambassador::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 360px;
    background: url(../assets/up-curve-shape.svg);
    z-index: -1;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}

.brand-ambassador .wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.brand-ambassador .ambassador-left .ambassador-img {
    /* max-width: 430px;
    max-height: 668px;
    height: 100%; */
    width: 100%;
    object-fit: cover;
    aspect-ratio: 0.644;
    rotate: -3.6deg;
    opacity: 1;
    border-radius: 16px;
}

.brand-ambassador .ambassador-left .ambassador-img2 {
    position: relative;
    right: -72%;
    bottom: 15%;
    border-radius: 12px;
    rotate: 6deg;
    z-index: 2;
    max-width: 339px;
    max-height: 333px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.brand-ambassador .ambassador-right .tagline-img {
    position: absolute;
    bottom: 60px;
    right: -4%;
    width: 100%;
    max-height: 700px;
    height: 100%;
    object-fit: contain;
    rotate: -0.31deg;
    z-index: 4;
}

.brand-ambassador .ambassador-right .title {
    font-weight: 900;
    font-size: 28px;
    line-height: 39px;
    letter-spacing: -1%;
    color: var(--blue);
    margin-bottom: 8px;
}

.brand-ambassador .ambassador-right p {
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: -1%;
    color: var(--black);
    margin-bottom: 20px;
}

/* location image preview style */
.image-preview {
    position: relative;
    padding: 450px 100px 50px 20px;
}

.image-preview .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 574px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.image-preview h3 {
    font-weight: 900;
    font-size: 24px;
    line-height: 34px;
    text-align: right;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
    max-width: 490px;
    width: 100%;
    margin-left: auto;
}

/* our vibes style */
.our-vibes {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.our-vibes .label {
    margin-bottom: 16px;
}

.our-vibes h2 {
    font-weight: 900;
    color: var(--blue);
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 2px;
}

.our-vibes p {
    font-weight: 400;
    font-size: 32px;
    line-height: 45px;
    color: var(--blue);
    margin: 0;
    max-width: 740px;
    width: 100%;
}

.our-vibes .vibe-images {
    margin: 28px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.our-vibes .vibe-images img {
    max-width: calc((100% - 12px)/4);
    flex: 0 0 calc((100% - 12px)/4);
    object-fit: cover;
}

.our-vibes .social-buttons {
    display: flex;
    gap: 16px;
}

.our-vibes .social-buttons .dark-btn:hover {
    background: var(--blue) !important;
    color: var(--white) !important;
}

/* location page style */
.location-info {
    padding: 50px 0;
}

.location-info h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 45px;
    text-align: center;
    color: var(--blue);
    max-width: 950px;
    margin: 0 auto 48px;
}

.location-info p {
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    color: var(--blue);
    text-align: center;
    max-width: 950px;
    margin: 0 auto 48px;
}

.location-info p span {
    color: unset;
}

.location-info p:last-child {
    margin-bottom: 0;
}

/* inner banner style */
.inner-banner {
    padding: 189px 0;
    position: relative;
    overflow: hidden;
}

.inner-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000033;
    z-index: -1;
    background-size: cover;
}

.inner-banner .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.inner-banner h2 {
    font-weight: 900;
    font-size: 56px;
    line-height: 81px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
}

.menu-details {
    padding: 160px 0;
    position: relative;
}


.menu-details::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 100px);
    background: var(--light-orange);
    z-index: -1;
}

.menu-details::after {
    content: "";
    position: absolute;
    bottom: -42px;
    left: 0;
    width: 100%;
    height: 340px;
    background: url(../assets/down-curv-shape.svg) no-repeat;
    z-index: -2;
    background-size: cover;
    background-position: center;
}

.menu-details .left-image {
    position: relative;
}

.menu-details .left-image img {
    position: absolute;
    top: 40%;
    left: 0;
    transform: translateY(-50%);
    max-width: 100%;
    width: 100%;
}

.menu-details h3 {
    font-weight: 900;
    font-size: 28px;
    line-height: 34px;
    color: var(--blue);
    margin: 0 0 3px;
}

.menu-details h4 {
    font-weight: 400;
    font-size: 32px;
    line-height: 45px;
    color: var(--blue);
    margin: 0 0 18px;
}

.menu-details p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--blue);
    margin: 0 0 20px;
}

/* story page style */
.story {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.story-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 112px);
    object-fit: cover;
    z-index: -2;
}

.story .container {
    padding-top: 100px;
    padding: 0;
}

.story .container .story-top {
    padding: 100px 40px 0;
    background-color: var(--light-orange);
    position: relative;
}

.story .story-top-tagline {
    position: absolute;
    top: -20%;
    left: 0;
    max-width: 900px;
    max-height: 440px;
    width: 100%;
    object-fit: cover;
    z-index: 3;
}

.story .story-top p {
    padding-top: 110px;
}

.story .container .story-bottom {
    padding: 0 40px;
    background-color: var(--light-orange);
}

.story p {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: var(--black);
    padding-top: 110px;
}

.story p span {
    font-weight: 700;
}

.story img.story-top-right-img {
    max-height: 530px;
}

.story img.story-top-right-img,
.story img.story-bottom-left-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story img.story-bottom-left-img {
    max-height: 560px;
    position: relative;
    z-index: 2;
}

.story .story-bottom {
    position: relative;
}

.story .story-bottom p {
    text-align: right;
    padding-top: 150px;
}

.story .story-bottom-tagline {
    position: absolute;
    top: -200px;
    right: -30px;
    max-width: 800px;
    max-height: 390px;
    width: 100%;
    object-fit: contain;
    z-index: 3;
}

.story .row:has(.bottom-image) {
    position: relative;
    margin-top: -250px;
    z-index: 1;
    left: 0;
}

.story .bottom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story .bottom-image-part {
    padding: 0;
}

.table-img-section {
    padding: 90px 0;
    position: relative;
}

.table-img-section .col-12 {
    position: relative;
}

.table-img-section .tagline img {
    object-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: -15%;
    left: 50%;
    max-height: 600px;
    width: 100%;
    object-fit: contain;
    z-index: 3;
    transform: translateX(-50%);
}

.table-img-section .story-table-image {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-img-section .story-table-image img {
    max-width: 1024px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}