@font-face {
  font-family: "Mluvka-Italic";
  src: url('../fonts/Mluvka/Mluvka-Italic.woff');
  font-display: swap;
}
@font-face {
  font-family: "Mluvka-Bold";
  src: url('../fonts/Mluvka/Mluvka-Bold.otf');
  font-display: swap;
}
@font-face {
  font-family: "Mluvka-ExtraBold";
  src: url('../fonts/Mluvka/Mluvka-ExtraBold.otf');
  font-display: swap;
}
@font-face {
  font-family: "Mluvka-Regular";
  src: url('../fonts/Mluvka/Mluvka-Regular.otf');
  font-display: swap;
}
@font-face {
  font-family: "Mluvka-Light";
  src: url('../fonts/Mluvka/Mluvka-Light.otf');
  font-display: swap;
}
@font-face {
  font-family: "Mluvka-Medium";
  src: url('../fonts/Mluvka/Mluvka-Medium.otf');
  font-display: swap;
}
@font-face {
  font-family: "Mluvka-SemiBold";
  src: url('../fonts/Mluvka/Mluvka-SemiBoldItalic.woff');
  font-display: swap;
}
@font-face {
  font-family: "Mluvka-Bolditalic";
  src: url('../fonts/Mluvka/Mluvka-BoldItalic.woff');
  font-display: swap;
}
@font-face {
  font-family: "SHREE-DEV7-0712-Regular";
  src: url('../fonts/SHREE-DEV7-0712-Regular.ttf') format('truetype');
  font-display: swap;
}
body {
    margin: 0;
    font-family: 'Mluvka-Regular';
}

:root {
    --orange-dark: #F57E20;
    --orange: #f15b22;
    --yellow: #ffca06;
    --brown: #34130D;
    --gray: #757a7b;
    --gray-rgb: 117, 122, 123;
    --white: #ffffff;
    --white-rgb: 255, 255, 255;
    --base: #f9be17;
    --base-rgb: 249, 190, 23;
    --black: #04171a;
    --black-rgb: 4, 23, 26;
    --primary: #f5f3ee;
    --primary-rgb: 245, 243, 238;
    --bdr-color: #e0dcd3;
    --bdr-color-rgb: 224, 220, 211;
  
  }
  
  .row {
    --bs-gutter-x: 30px;
  }
  
  .gutter-y-30 {
    --bs-gutter-y: 30px;
  }
  
  body {
    font-family: var(--pitoon-font);
    color: var(--gray);
    font-size: 15px;
    line-height: 30px;
    font-weight: 500;
  }
  
  body.locked {
    overflow: hidden;
  }
  
  a {
    color: var(--gray);
  }
  
  a,
  a:hover,
  a:focus,
  a:visited {
    text-decoration: none;
  }

  .page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
  }

.main-header {
    background: radial-gradient(circle at top, rgba(255, 221, 33, 1) 3%, rgba(244, 123, 32, 1) 30%, rgba(241, 91, 34, 1) 80%);
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    transition: all 500ms ease;
    z-index: 999;
  }
  
  .main-header__top {
    position: relative;
    display: block;
    z-index: 1;
  }
  
  .main-header__top-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 10px 0;
    padding-left: 60px;
    box-shadow: 2px 0px 0px 0px rgba(255, 255, 255, 0.15);
    z-index: 1;
  }
  
  .main-header__top-left {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
  }
  
  .main-header__contact-list {
    position: relative;
    display: flex;
    align-items: center;
    margin: 10px;
  }
  
  .main-header__contact-list li {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0;
  }
  
  .main-header__contact-list li+li {
    margin-left: 20px;
  }
  
  .main-header__contact-list li .icon {
    position: relative;
    display: flex;
    align-items: center;
    top: 2px;
  }
  
  .main-header__contact-list li .icon i {
    font-size: 13px;
    color: var(--base);
  }
  
  .main-header__contact-list li .text {
    margin-left: 10px;
  }
  
  .main-header__contact-list li .text p {
    font-size: 13px;
    font-weight: 500;
    color: #627174;
    margin: 0;
    line-height: 0;
  }
  
  .main-header__contact-list li .text p a {
    color: #627174;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-header__contact-list li .text p a:hover {
    color: var(--base);
  }
  
  .main-header__top-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0;
  }
  
  .main-header__top-menu {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0;
  }
  
  .main-header__top-menu li+li {
    margin-left: 35px;
  }
  
  .main-header__top-menu li a {
    position: relative;
    display: inline-block;
    font-size: 13px;
    color: #627174;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-header__top-menu li a:hover {
    color: var(--base);
  }
  
  .main-header__top-menu li a:before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: -17px;
    width: 1px;
    background-color: #627174;
    transform: rotate(10deg);
    margin: 0;
  }
  
  .main-header__top-menu li:first-child a:before {
    display: none;
  }
  
  .main-header__social-box {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #031316;
    padding-left: 60px;
    padding-right: 60px;
    margin-left: 40px;
    z-index: 1;
  }
  
  .main-header__social-box::before {
    content: "";
    position: absolute;
    top: -13px;
    left: 0px;
    border-top: 20px solid transparent;
    border-left: 22px solid #04171a;
    border-bottom: 20px solid transparent;
    z-index: 1;
  }
  
  .main-header__social-box::after {
    content: "";
    position: absolute;
    top: -13px;
    left: 0px;
    border-top: 20px solid transparent;
    border-left: 24px solid #fff;
    border-bottom: 20px solid transparent;
    z-index: -1;
    opacity: 0.15;
    margin: 0;
  }
  
  .main-header__social-title {
    font-size: 13px;
    color: #627174;
    font-weight: 500;
    font-family: var(--pitoon-font);
    margin-right: 20px;
    margin: 0;
  }
  
  .main-header__social {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
  }
  
  .main-header__social a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-header__social a:hover {
    color: var(--base);
  }
  
  .main-header__social a+a {
    margin-left: 25px;
  }
  
  
  .main-menu {
    position: relative;
    display: block;
  }
  
  .main-menu__wrapper {
    position: relative;
    display: block;
    z-index: 1;
  }
  
  .main-menu__wrapper-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    mix-blend-mode: luminosity;
    z-index: -1;
  }
  
  .main-menu__wrapper-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.1);
    padding: 0 60px 0;
  }
  
  .main-menu__left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .main-menu__logo {
    display: block;
    padding: 0px 0;
  }
  .main-menu__logo img{
    height: 90px;
    width: 150px;
  }
  .main-menu__main-menu-box {
    display: block;
  }
  
  .main-menu__right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0px 0;
  }
  
  .main-menu__call {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 5;
  }
  
  .main-menu__call-icon {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .main-menu__call-icon img {
    width: auto;
  }
  
  .main-menu__call-content {
    margin-left: 10px;
  }
  
  .main-menu__call-sub-title {
    font-size: 12px;
    line-height: 12px;
    color: var(--white);
  }
  
  .main-menu__call-number {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    margin-top: 6px;
    font-family: var(--pitoon-font);
  }
  
  .main-menu__call-number a {
    color: var(--white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu__call-number a:hover {
    color: var(--base);
  }
  
  .main-menu__search-cart-box {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 90px;
    padding: 7px 0;
  }
  
  .main-menu__search-cart-box:before {
    content: "";
    position: absolute;
    top: -8px;
    bottom: -7px;
    left: -30px;
    width: 1px;
    background-color: rgba(var(--white-rgb), .10);
  }
  
  .main-menu__search-box {
    position: relative;
    display: block;
  }
  
  .main-menu__search {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: var(--white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu__search:hover {
    color: var(--base);
  }
  
  .main-menu__cart-box {
    position: relative;
    display: block;
    margin-left: 20px;
  }
  
  .main-menu__cart {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 24px;
    color: var(--white);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
  }
  
  .main-menu__cart:hover {
    color: var(--base);
  }
  
  
  .stricky-header.main-menu {
    background: radial-gradient(circle at top, rgba(255, 221, 33, 1) 3%, rgba(244, 123, 32, 1) 30%, rgba(241, 91, 34, 1) 80%);
  }
  
  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
  }
  
  
  @media (min-width: 1200px) {
  
    .main-menu .main-menu__list,
    .main-menu .main-menu__list>li>ul,
    .main-menu .main-menu__list>li>ul>li>ul,
    .stricky-header .main-menu__list,
    .stricky-header .main-menu__list>li>ul,
    .stricky-header .main-menu__list>li>ul>li>ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
  }
  
  .main-menu .main-menu__list>li,
  .stricky-header .main-menu__list>li {
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
  }
  
  .main-menu .main-menu__list>li+li,
  .stricky-header .main-menu__list>li+li {
    margin-left: 35px;
  }
  
  .main-menu .main-menu__list>li>a,
  .stricky-header .main-menu__list>li>a {
    font-family: 'Mluvka-Regular';
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--white);
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 600;
    text-decoration: none;
  }
  
  .main-menu .main-menu__list>li.current>a,
  .main-menu .main-menu__list>li:hover>a,
  .stricky-header .main-menu__list>li.current>a,
  .stricky-header .main-menu__list>li:hover>a {
    color: var(--brown);
  }
  
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    position: absolute;
    top: 80%;
    left: 0;
    min-width: 160px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scaleY(0) translateZ(100px);
    transform: scaleY(0) translateZ(100px);
    -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
    z-index: 99;
    background-color: rgb(255, 255, 255);
    border: 1px solid #fff;
    text-align: center;
  }
  
  .sub-menu {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  }
  
  .main-menu .main-menu__list>li>ul>li>ul>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul>li>ul {
    display: none;
  }
  
  .main-menu .main-menu__list>li:hover>ul,
  .main-menu .main-menu__list>li>ul>li:hover>ul,
  .stricky-header .main-menu__list>li:hover>ul,
  .stricky-header .main-menu__list>li>ul>li:hover>ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1) translateZ(0px);
    transform: scaleY(1) translateZ(0px);
  }
  
  .main-menu .main-menu__list>li>ul>li,
  .main-menu .main-menu__list>li>ul>li>ul>li,
  .stricky-header .main-menu__list>li>ul>li,
  .stricky-header .main-menu__list>li>ul>li>ul>li {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #fff;
    text-align: center;
  }
  
  .main-menu .main-menu__list>li>ul>li+li,
  .main-menu .main-menu__list>li>ul>li>ul>li+li,
  .stricky-header .main-menu__list>li>ul>li+li,
  .stricky-header .main-menu__list>li>ul>li>ul>li+li {
    border-top: none;
    margin-top: 0px;
  }
  
  .main-menu .main-menu__list>li>ul>li>a,
  .main-menu .main-menu__list>li>ul>li>ul>li>a,
  .stricky-header .main-menu__list>li>ul>li>a,
  .stricky-header .main-menu__list>li>ul>li>ul>li>a {
    position: relative;
    font-size: 15px;
    line-height: 30px;
    color: var(--brown);
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 8px 10px 4px;
    -webkit-transition: 500ms;
    transition: 500ms;
    font-family: 'Mluvka-Regular';
    letter-spacing: var(--pitoon-letter-spacing-two);
  }
  
  .main-menu .main-menu__list>li>ul>li:hover>a,
  .main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
  .stricky-header .main-menu__list>li>ul>li:hover>a,
  .stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
    background-color: var(--primary);
    color: var(--brown);
    text-shadow: 0.5px 0 0 rgb(4 23 26 / 80%);
  }

  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    top: 0;
    left: 100%;
  }
  
  .main-menu .main-menu__list li ul li>ul.right-align,
  .stricky-header .main-menu__list li ul li>ul.right-align {
    top: 0;
    left: auto;
    right: 100%;
  }
  
  .main-menu-three__main-menu-box .main-menu__list>.megamenu,
  .main-menu-two__main-menu-box .main-menu__list>.megamenu,
  .main-menu__wrapper .main-menu__list>.megamenu {
    position: static;
  }
  
  .main-menu-three__main-menu-box .main-menu__list>.megamenu>ul,
  .main-menu-two__main-menu-box .main-menu__list>.megamenu>ul,
  .main-menu__wrapper .main-menu__list>.megamenu>ul {
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background-color: transparent;
  }
  
  .main-menu-three__main-menu-box .main-menu__list>.megamenu>ul>li,
  .main-menu-two__main-menu-box .main-menu__list>.megamenu>ul>li,
  .main-menu__wrapper .main-menu__list>.megamenu>ul>li {
    padding: 0 !important;
  }
  
  .stricky-header {
    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    visibility: hidden;
    -webkit-transform: translateY(-120%);
    transform: translateY(-120%);
    -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
    -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  }
  
  @media (max-width: 1199px) {
    .stricky-header {
      display: none !important;
    }
  }
  
  .stricky-header.stricky-fixed {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
  }
  
  .stricky-header .main-menu__inner {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-right: 0;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
  }
  
  .mobile-nav__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: 10px;
  }
  
  @media (min-width: 1200px) {
    .mobile-nav__buttons {
      display: none;
    }
  }
  
  .mobile-nav__buttons a {
    font-size: 20px;
    color: var(--base);
    cursor: pointer;
  }
  
  .mobile-nav__buttons a+a {
    margin-left: 10px;
  }
  
  .mobile-nav__buttons a:hover {
    color: var(--base);
  }
  
  .main-menu .mobile-nav__toggler {
    font-size: 20px;
    color: var(--base);
    cursor: pointer;
    -webkit-transition: 500ms;
    transition: 500ms;
  }
  
  .main-menu .mobile-nav__toggler:hover {
    color: var(--white);
  }
  
  @media (min-width: 1200px) {
    .main-menu .mobile-nav__toggler {
      display: none;
    }
  }
  @media (min-width: 1024px)  and (max-width: 1300px) {
    .main-menu .main-menu__list>li+li,
    .stricky-header .main-menu__list>li+li {
      margin-left: 15px;
    }
    .main-menu__wrapper-inner{
    padding: 0 20px 0;
    }
  }
  
  .mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    visibility: hidden;
  }
  
  .mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
  }
  
  .mobile-nav__wrapper.expanded {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    visibility: visible;
    -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  }
  
  .mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.5;
    cursor: pointer;
  }
  
  .mobile-nav__content {
    width: 300px;
    background-color: var(--black);
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  }
  
  .mobile-nav__wrapper.expanded .mobile-nav__content {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  }
  
  .mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: var(--white);
    cursor: pointer;
  }
  
  .mobile-nav__content .main-menu__list,
  .mobile-nav__content .main-menu__list>li>ul,
  .mobile-nav__content .main-menu__list>li>ul>li>ul {
    font-family: 'Mluvka-Regular';
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  
  .mobile-nav__content .main-menu__list>li>ul,
  .mobile-nav__content .main-menu__list>li>ul>li>ul {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 0.5em;
  }
  
  .mobile-nav__content .main-menu__list>li:not(:last-child),
  .mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
  .mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .mobile-nav__content .main-menu__list>li>a>.main-menu-border {
    display: none !important;
  }
  
  .mobile-nav__content .main-menu__list>li>a,
  .mobile-nav__content .main-menu__list>li>ul>li>a,
  .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    line-height: 30px;
    color: #ffffff;
    font-size: 14px;
    font-family: var(--pitoon-font);
    font-weight: 500;
    height: 46px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 500ms;
    transition: 500ms;
  }
  
  .mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
    color: var(--base);
  }
  
  .mobile-nav__content .main-menu__list li a.expanded {
    color: var(--base);
  }
  
  .mobile-nav__content .main-menu__list>li>a>button,
  .mobile-nav__content .main-menu__list>li>ul>li>a>button,
  .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
    width: 30px;
    height: 30px;
    background-color: var(--base);
    border: none;
    outline: none;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: -webkit-transform 500ms ease;
    transition: -webkit-transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
    padding: 0;
  }
  
  .mobile-nav__content .main-menu__list>li>a>button.expanded,
  .mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
  .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    background-color: #fff;
    color: var(--base);
  }
  
  .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
  .mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
    display: none !important;
  }
  
  .mobile-nav__content .main-menu__list li.cart-btn span {
    position: relative;
    top: auto;
    right: auto;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  
  .mobile-nav__content .main-menu__list li.cart-btn i {
    font-size: 16px;
  }
  
  .mobile-nav__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  
  .mobile-nav__top .main-menu__login a {
    color: var(--pitoon-text-dark);
  }
  
  .mobile-nav__container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .mobile-nav__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .mobile-nav__social a {
    font-size: 16px;
    color: var(--white);
    -webkit-transition: 500ms;
    transition: 500ms;
  }
  
  .mobile-nav__social a+a {
    margin-left: 30px;
  }
  
  .mobile-nav__social a:hover {
    color: var(--base);
  }
  
  .mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .mobile-nav__contact li {
    font-family: 'Mluvka-Regular';
    color: var(--pitoon-text-dark);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .mobile-nav__contact li+li {
    margin-top: 15px;
  }
  
  .mobile-nav__contact li a {
    color: #ffffff;
    -webkit-transition: 500ms;
    transition: 500ms;
  }
  
  .mobile-nav__contact li a:hover {
    color: var(--base);
  }
  
  .mobile-nav__contact li>i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--base);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    font-size: 11px;
    margin-right: 10px;
    color: #fff;
  }
  
  .mobile-nav__container .main-logo,
  .mobile-nav__container .topbar__buttons,
  .mobile-nav__container .main-menu__language,
  .mobile-nav__container .main-menu__login {
    display: none;
  }
  
  .home-showcase {
    margin-top: -23px;
    margin-bottom: -23px;
  }
  
  .home-showcase__inner {
    padding: 40px 40px 36px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  }
  
  .home-showcase .row {
    --bs-gutter-x: 42px;
    --bs-gutter-y: 20px;
  }
  
  .home-showcase__image {
    position: relative;
    background-color: var(--base);
    overflow: hidden;
  }
  
  .home-showcase__image>img {
    width: 100%;
    -webkit-transition: 500ms ease;
    transition: 500ms ease;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  
  .home-showcase__image:hover>img {
    opacity: 0.75;
  }
  
  .home-showcase__image:hover .home-showcase__buttons {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
    visibility: visible;
  }
  
  .home-showcase__buttons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    opacity: 0;
    visibility: hidden;
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    -webkit-transition: 500ms ease;
    transition: 500ms ease;
  }
  
  .home-showcase__buttons__item {
    padding: 11px 20px 11px;
    width: 150px;
    text-align: center;
  }
  
  .home-showcase__buttons__item+.home-showcase__buttons__item {
    margin-top: 10px;
  }
  
  .home-showcase__title {
    margin: 0;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin-top: 17px;
    font-family: var(--pitoon-font);
  }
  
  .mobile-nav__wrapper .home-showcase .row [class*=col-] {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  
  .mobile-nav__wrapper .home-showcase__inner {
    padding: 15px 0px;
    background-color: rgba(0, 0, 0, 0);
  }
  
  .mobile-nav__wrapper .home-showcase__title {
    color: var(--white, #ffffff);
  }
 
.search-container {
    display: flex;
    justify-content: end;
}

.search-input {
    border: 2px solid #fff;
    border-radius: 10px;
    font-size: 14px;
    padding: 0 30px 0 10px;
    font-family: 'Mluvka-Regular';
}

.search-button {
    padding: 10px 15px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.search-button:hover {
    background-color: #555;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background-color: #f37435;
}

.slider {
    display: flex;
    transition: opacity 0.5s ease-in-out;
}

.slide {
  margin-top: 70px;
    min-width: 100%;
    height: 80vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}

.slide1 {
    background-image: url('../images/slider/home-slider1.jpg');
}

.slide2 {
    background-image: url('../images/slider/home-slider2.jpg');
}

.slide3 {
    background-image: url('../images/slider/home-slider3.jpg');
}


.slide4 {
    background-image: url('../images/slider/home-slider4.jpg');
}
.slide5 {
  background-image: url('../images/slider/home-slider5.jpg');
}
.slide6 {
  background-image: url('../images/slider/home-slider6.png');
}
.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.text1,
.text2 {
    position: relative;
    z-index: 2;
    flex: 1;
    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out;
}
.slide.active .text1{
    margin-left: -40px;
}

.slide.active .text1,
.slide.active .text2 {
    transform: translateX(0);
}

.text1 h1 {
    font-style: italic;
    font-family: "Poppins";
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0px;
    line-height: 50px !important;
    font-size: 30px !important;
    text-align: left;
    color: white;
    transform-origin: 50% 50%;
    transform: translate(0px, 0px);
    padding: 0;
}

.slide1 .h1color {
    color: var(--main-color) !important;
}

.slide2 .h1color {
    color: var(--main-color) !important;
}

.slide3 .h1color {
    color: var(--main-color) !important;
}
.slide4 .h1color {
    color: var(--main-color) !important;
}
.h2color {
    color: #ffffffcc !important;
}

.text1 h2 {
    font-style: italic;
    font-family: "Poppins";
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -5px;
    line-height: 90px;
    font-size: 100px;
    text-align: left;
    color: white;
    transform-origin: 50% 50%;
    transform: translate(0px, 0px);
    padding: 0;
}

.text2 h1 {
    font-family: "Roboto";
    flex: 1;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    text-align: left;
    letter-spacing: 0px;
    padding-left: 45%;
    color: #ffffffa6;
    transform-origin: 50% 50%;
    transform: translate(0px, 0px);
    z-index: 2;
    align-items: center;
    display: inline-flex;
}

.h1bold {
    font-family: "Poppins";
    color: #fff;
    line-height: 50px;
    font-size: 30px;
    font-weight: 700 !important;
    position: relative;
}

.text2 h2 {
    font-family: "Roboto";
    flex: 1;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    text-align: left;
    letter-spacing: 0px;
    padding-left: 45%;
    color: #ffffffa6;
    transform-origin: 50% 50%;
    transform: translate(0px, 0px);
    z-index: 2;
}

.slider img.product {
    flex: 1;
    width: 440px;
    height: 500px;
    transform-origin: 50% 50%;
    transform: translate(738px, 0px);
    transition: transform 0.5s ease-in-out;
    left: 20%;
    top: 30%;
    position: absolute;
    z-index: 1;

}
.slider img.product3 {
    flex: 1;
    width: 250px;
    height: auto;
    transform-origin: 50% 50%;
    left: 0%;
}
.slide.active .text {
    transform: translateX(0);
}

.slide.active img.product {
    transform: translateX(0);
}

.floating-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-images img {
    position: absolute;
    animation: float 5s ease-in-out infinite;
    transform-origin: 50% 50%;
    transform: translate(738px, 0px);
    transition: transform 0.5s ease-in-out;
    object-fit: contain;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatX {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-20px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes float-X {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(+20px);
    }

    100% {
        transform: translateX(0);
    }
}
.element1 {
    top: 30%;
    left: 40%;
    z-index: 1;
    filter: blur(1px);
    transform-origin: 50% 50%;
    transform: translate(0px, 0px);
    transition: transform 0.5s ease-in-out;
    animation: float-X 5s ease-in-out infinite !important;
}
.ele2{
    filter: blur(1px);
    width: 90px;
    height: 50px;
}
.ele3{
    filter: blur(1px);
}
.element3 {
    top: 30%;
    left: 70%;
    z-index: 1;
    filter: blur(1px);
    animation: floatX 5s ease-in-out infinite !important;
    transform-origin: 50% 50%;
    transform: translate(0px, 0px);
    transition: transform 0.5s ease-in-out;
}

.element2 {
    top: 15%;
    left: 50%;
    z-index: 1;
    transform-origin: 50% 50%;
    transform: translate(0px, 0px);
    transition: transform 0.5s ease-in-out;
    animation: float 5s ease-in-out infinite !important;
}

.dots-container {
    position: absolute;
    bottom: 50px;
    left: 10%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 1;
  }

  .dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
  }

  .dot.active {
    background-color: rgba(255, 255, 255, 1);
  }
  section .headul {
    margin: 0px auto 40px auto;
}
section .headul:before {
  content: " ";
  width: 100px;
  height: 2px;
  background-color: var(--white);
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 5;
}
section .headul-brown {
  margin: 0px auto 40px auto;
}
section .headul-brown:before {
content: " ";
width: 100px;
height: 2px;
background-color: var(--brown);
margin: 0 auto;
display: block;
position: relative;
z-index: 5;
}
section .headul-brown.left-align::before{
  margin: 0;
}
section .headul-brown.left-align {
  text-align: left;
  margin: 15px 0 20px 0 !important;
}
.story-section {
    color: white;
    padding: 50px 20px;
    text-align: center;
    background: radial-gradient(circle at bottom, rgba(0, 145, 213, 1) 5%, rgba(0, 115, 179, 1) 30%, rgba(0, 61, 121, 1) 100%);
    position: relative;
    z-index: 5;
    overflow: hidden;
}
.story-section .story_shap {
    position: absolute;
    max-width: 100% !important;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}
img {
    max-width: 100%;
    max-height: 100%;
}
.story-section h2 {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 15px;
    font-family: "Mluvka-Bold";
    position: relative;
    z-index: 5;
    font-weight: 700;
}

.story-section p {
    font-size: 18px;
    line-height: 26px;
    margin: 0 auto;
    text-align: justify;
    margin: 0px 0 15px 0;
    width: 95%;
    font-family: "Mluvka-Regular";
}
.story-section img {
    max-width: 90%;
    height: auto;
}
.story-section .story-img{
  border: 2px solid var(--yellow);
    border-radius: 15px;
}
.section-title__title {
    margin: 0;
    color: var(--brown);
    font-size: 35px;
    line-height: 45px;
    font-weight: 700;
    margin: 10px 0;
    font-family: 'Mluvka-ExtraBold';
  }

  .section-title__tagline {
    position: relative;
    display: inline-block;
    font-size: 22px;
    line-height: 24px;
    color: var(--brown);
    font-weight: 600;
    margin-bottom: 40px;
    font-family: 'Mluvka-Bold';
  }  
  @media (min-width: 1200px) {
    .odc-section .big{
      height: 240px;
    }
    .container {
        max-width: 1300px;
    }
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}
section{
    padding: 80px 0px;
}

.testimonial-one {
    position: relative;
    display: block;
    background: radial-gradient(circle, rgba(255, 221, 33, 1) 7%, rgba(244, 123, 32, 1) 40%, rgba(241, 91, 34, 1) 90%);
  }
  .testimonial-one .title{
    color: white;
    font-size: 45px;
    font-weight: 600;
    position: absolute;
    top: 80px;
    left: 20%;
    line-height: 45px;
    z-index: 5;
    font-family: 'SHREE-DEV7-0712-Regular';
  }
  .testimonial-one .title span{
    margin-left: 40px;
  }
  .testimonial-one .subtitle{
    font-family: 'Mluvka-Medium';
    color: var(--brown);
    font-size: 24px;
    text-transform: uppercase;
    position: absolute;
    top: 90px;
    left: 36%;
    line-height: 26px;
    z-index: 5;
  }
  .testimonial-one .subtitle span{
    font-family: 'Mluvka-ExtraBold';
  }
  .testimonial-one .testi_shap{
    position: absolute;
    max-width: 100% !important;
    top: 0px;
    right: 0px;
    z-index: 0;
    pointer-events: none;
  }
  .bg-img{
    position: relative;
    z-index: 0;
    width: 85%;
    margin: auto;
    display: block;
    margin-top: 10px;
  }
  .testimonial-one__bottom {
    position: relative;
    display: block;
  }
  
  .testimonial-one__carousel {
    position: relative;
    display: block;
  }
  
  .testimonial-one__single {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
    padding: 35px 35px 35px;
    z-index: 1;
    border-radius: 20px;
  }
  
  .testimonial-one__img {
    position: absolute;
    top: 45px;
    left: 38px;
    border-radius: 50%;
    z-index: 1;
  }
  
  .testimonial-one__img::before {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    border-radius: 50%;
    background-color: var(--black);
    z-index: -1;
  }
  
  .testimonial-one__img::after {
    content: "";
    position: absolute;
    top: -11px;
    left: -11px;
    right: -11px;
    bottom: -11px;
    border-radius: 50%;
    border: 2px solid var(--base);
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
    z-index: -1;
  }
  
  .testimonial-one__img img {
    width: 100%;
    border-radius: 50%;
    mix-blend-mode: luminosity;
  }
  
  .testimonial-one__client-details {
    position: relative;
    display: block;
    margin-bottom: 20px;
    z-index: 2;
  }
  
  .testimonial-one__client-name {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-align: end;
    color: var(--brown);
    font-family: 'Mluvka-Regular';
  }
  
  .testimonial-one__client-rate {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 6px;
  }
  
  .testimonial-one__client-rate span {
    position: relative;
    display: inline-block;
    font-size: 12px;
    color: var(--base);
  }
  
  .testimonial-one__client-rate span+span {
    margin-left: 3px;
  }
  
  .testimonial-one__text {
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: var(--gray);
    font-family: 'Mluvka-Regular';
    height: 120px;
  }
  
  .testimonial-one__shape-1 {
    position: absolute;
    top: -15px;
    left: 20px;
    z-index: 1;
  }
  
  .testimonial-one__shape-1 img {
    width: auto;
  }
  
  .testimonial-one__shape-3 {
    position: absolute;
    bottom: -15;
    left: 0;
    z-index: -1;
  }
  
  .testimonial-one__shape-3 img {
    width: auto;
  }
  
  .testimonial-one__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
  }
  
  .testimonial-one__carousel.owl-carousel .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
  }
  
  .testimonial-one__carousel.owl-carousel .owl-item.active {
    opacity: 1;
    visibility: visible;
  }
  
  
.franchise-div {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
    padding: 65px 35px 35px;
    z-index: 1;
    margin-top: 50px;
    overflow: hidden;
}

.franchise-div .franchise_shap {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}
.franchise__btn-box {
    position: relative;
    display: block;
    margin-top: 40px;
    text-align: end;
}
.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  background-color: #f88723;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  padding: 15px 30px 15px;
  overflow: hidden;
  transition: all 0.5s linear;
  z-index: 1;
  line-height: 18px;
  border-radius: 10px;
  letter-spacing: 1;
  font-family: 'Mluvka-Medium';
}
.thm-btn:hover{
  color: var(--white) !important;
}
.franchise-div h2 {
    font-size: 40px;
    margin: 20px 0 20px;
    color: var(--orange);
    font-weight: 400;
    position: relative;
    z-index: 5;
    font-family: 'Mluvka-Medium';
}
.franchise-div h2 span{
    font-weight: 700;
    font-family: 'Mluvka-ExtraBold';
}

.franchise-div p {
    font-size: 18px;
    line-height: 26px;
}
footer {
  background: radial-gradient(circle at center, rgba(0, 145, 213, 1) 5%, rgba(0, 115, 179, 1) 30%, rgba(0, 61, 121, 1) 100%);
}
footer h3{
    font-size: 24px;
    letter-spacing: 0.3;
    font-family: 'Mluvka-Bold';
}
footer h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 12px;
  text-transform: uppercase;
  font-family: 'Mluvka-Medium';
  letter-spacing: 0.5px;
}
footer h5{
  font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'Mluvka-Bold';
}
footer p {
    margin-bottom: 0px;
    font-size: 14px;
    line-height: 18px;
    font-family: 'Mluvka-Regular';
}
footer .text{
    border-top: 2px solid #FDCA0A;
    border-bottom: 2px solid #FDCA0A;
    padding: 10px 0;
    margin: 10px 0;
    line-height: 18px;
    font-family: 'Mluvka-Medium';
    font-size: 12px;
}
footer ul {
    padding-left: 0;
}

footer ul li {
  font-size: 14px;
    list-style: none;
    margin-bottom: 5px;
    line-height: 18px;
    font-family: 'Mluvka-Regular';
}
.footer-bottom{
    background-color: #fff;
    padding: 10px 0 10px 30px;
}
.footer-bottom p{
    color: var(--brown);
    font-weight: 500;

}
footer ul.social-media {
    display: block;
    margin: 0px 20px 0 0;
}
footer ul.social-media li {
  font-size: 18px;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}
.margin-auto {
    margin-top: auto;
    margin-bottom: auto;
}
footer a {
    color: #fff;
    text-decoration: none;
}
footer a:hover {
  color: var(--base);
  text-decoration: none;
}
footer .social-icons a {
    margin-right: 15px;
}

footer .social-icons a i {
    font-size: 1.5rem;
}

footer .container {
    max-width: 1200px;
}

footer .text-white a:hover {
    text-decoration: underline;
}

@media (min-width: 992px) {
  .page-header {
      margin-top: 40px;
      height: 550px;
  }
  .about-directors .img{
    padding-right: 0;
  }
}
.page-header {
  position: relative;
  display: block;
  padding: 200px 0 200px;
  background-color: var(--black);
  overflow: hidden;
  z-index: 1;
}
.page-header__bg {
  position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    z-index: -1;
}
.about-section {
  color: white;
  text-align: center;
  background: radial-gradient(circle at top, #FFCA06 5%, #F9A01B 30%, rgba(241, 91, 34, 1) 80%);
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.about-section .about_shap {
  position: absolute;
  max-width: 100% !important;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 40%;
  pointer-events: none;
}
.about-section h2 {
  font-size: 35px;
  line-height: 45px;
  margin-bottom: 15px;
  font-family: "Mluvka-Bold";
  color: var(--brown);
  font-weight: 700;
}

.about-section p {
  font-size: 18px;
  line-height: 26px;
  margin: 0 auto;
  text-align: justify;
  margin: 0px 0 15px 0;
  color: var(--brown);
  font-weight: 500;
  font-family: "Mluvka-Regular";
}
.about-section .mission-txt{
  font-size: 18px;
  width: 80%;
  text-align: justify;
  margin: auto;
  color: var(--brown);
}
.about-section .img-title{
  text-align: center;
  color: var(--brown);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.8;
}
.about-section .about-img {
  max-width: 100%;
    height: auto;
    border: 2px solid var(--yellow);
    border-radius: 15px;
}
.about-directors .white-color {
  padding: 30px 30px;
  border-radius: 15px;
  background-color: #fff;
}
.about-directors .text{
  padding: 40px 60px 40px 60px;
  background-color: #fff;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border-right: 2px solid var(--yellow);
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
}
.image-overlay {
  position: absolute;
  top: 0;
  right: 0;
  opacity: .60;
  mix-blend-mode: luminosity;
  z-index: -1;
  height: 100%;
}
.image-overlay img {
  width: auto;
  height: 100%;
  mix-blend-mode: luminosity;
}
.about-directors .section-heading h3{
  color: var(--brown);
  padding: 0 0px 0 0;
  text-align: justify;
font-family: 'Mluvka-Bold';
font-size: 26px;
line-height: 32px;
}

.about-directors .section-heading p {
  color: var(--gray);
  padding: 0 0px 0 0;
  text-align: justify;
  line-height: 26px;
  font-size: 18px;
  font-family: 'Mluvka-Regular';
}
.about-directors .section-heading p span{
  color: var(--brown);
  font-family: 'Mluvka-Bold';
}
.about-directors .about-d-img img{
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  border-left: 2px solid var(--yellow);
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
}

.about-directors {
  color: #291614 !important;
  text-align: justify;
  padding: 80px 0 0 0;
}

.column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.about-d-img {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-d-img img {
  max-width: 100%;
  height: 100%; 
  object-fit: cover;
  display: block;
}
.journey-section h2 {
  font-size: 35px;
  line-height: 45px;
  margin-bottom: 15px;
  color: var(--brown);
  font-family: 'Mluvka-Bold';
}
.journey-section {
  background: #fff;
  padding: 50px 20px;
  text-align: center;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.product-section .about_shap {
  position: absolute;
  max-width: 100% !important;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 40%;
  pointer-events: none;
}
.product-section h2 {
  font-size: 35px;
  line-height: 45px;
  margin-bottom: 15px;
  color: var(--brown);
  font-family: 'Mluvka-Bold';
}
.product-section {
  padding: 50px 20px;
  text-align: center;
  background: radial-gradient(circle at top, #FFCA06 5%, #F9A01B 30%, rgba(241, 91, 34, 1) 80%);
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.product-section .about_shap {
  position: absolute;
  max-width: 100% !important;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 40%;
  pointer-events: none;
}
.product_img-box{
  max-width: 95%;
  position: relative;
    display: block;
    border-radius: 30px;
}
.product-section .prod-img{
  height: 85%;
  border-radius: 30px;
  object-fit: contain;
}
.product-section .img-title{
    text-align: center;
    color: #fff;
    font-size: 22px;
    letter-spacing: 0.5;
    margin-bottom: 0;
    font-family: 'Mluvka-Bold';
}

.product-section .about_shap {
  position: absolute;
  max-width: 100% !important;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 40%;
  pointer-events: none;
}
.global-section h1 {
  font-size: 35px;
  line-height: 45px;
  margin-bottom: 15px;
  color: var(--brown);
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  z-index: 5;
  font-family: 'Mluvka-Bold';
}
.global-section h1 span{
  font-weight: 400;
  font-family: 'ARIAL';
}
.global-section {
  text-align: center;
  background: radial-gradient(circle at top, #FFCA06 5%, #F9A01B 40%, rgba(241, 91, 34, 1) 80%);
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.global-section .about_shap {
  position: absolute;
  max-width: 100% !important;
  top: -50px;
  left: 0;
  z-index: 0;
  opacity: 40%;
  pointer-events: none;
}
.global-section .map {
  position: absolute;
  max-width: 90% !important;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  opacity: 25%;
  pointer-events: none;
  margin: auto;
}
.global-section .locations li{
  color: var(--brown);
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    line-height: 35px;
    margin: 0 0 10px 0;
    font-family: 'Mluvka-Bold';
}
.global-section .img-title{
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Mluvka-Bold';
}
.global-section h3{
  margin: 15px 0 0 0;
  color: var(--brown);
  font-size: 26px;
  margin-bottom: 30px;
  font-weight: 700;
  position: relative;
  z-index: 5;
  font-family: 'Mluvka-Bold';
}
.global-section h2{
  margin: 20px 0 0 0;
  font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 35px;
    position: relative;
    z-index: 5;
    font-family: 'Mluvka-Bold';
}

.contact-section h1 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--brown);
  text-transform: uppercase;
  position: relative;
  z-index: 5;
  text-align: left;
  font-family: 'Mluvka-Bold';
}
.contact-section h2 {
  font-size: 35px;
  line-height: 45px;
  margin-bottom: 20px;
  color: var(--brown);
  text-transform: uppercase;
  position: relative;
  z-index: 5;
  text-align: left;
  font-family: 'Mluvka-Bold';
}
.contact-section p a{
  color: var(--brown) !important;
}
.contact-section p a:hover{
  color: var(--white) !important;
}
.contact-section p{
  color: var(--brown);
    font-size: 18px;
    text-align: left;
    margin-bottom: 0;
    line-height: 24px;
    font-family: 'Mluvka-Regular';
}
.contact-section .text{
  border-top: 2px solid #FDCA0A;
  border-bottom: 2px solid #FDCA0A;
  padding: 10px 0;
  margin: 10px 0;
}
.contact-section h1 span{
  font-weight: 400;
}
.contact-section {
  background: radial-gradient(circle at top, #FFCA06 5%, #F9A01B 30%, rgba(241, 91, 34, 1) 80%);
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.contact-section .about_shap {
  position: absolute;
  max-width: 100% !important;
  top: -50px;
  left: 0;
  z-index: 0;
  opacity: 40%;
  pointer-events: none;
}
.page-header.label{
  padding: 240px 0 250px;
}
.page-header.label h1 {
  color: var(--brown);
  font-size: 55px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  line-height: 60px;
  margin: 0 0 20px 0;
  font-family: 'Mluvka-Bold';
}
.labeling-section h1 {
  font-size: 35px;
  line-height: 45px;
  margin-bottom: 15px;
  color: var(--brown);
  font-weight: 700;
  text-transform: capitalize;
  position: relative;
  z-index: 5;
  font-family: "Mluvka-Bold";
}
.labeling-section h1 span{
  font-weight: 400;
}
.labeling-section {
  text-align: center;
  background: radial-gradient(circle at top, #FFCA06 5%, #F9A01B 40%, rgba(241, 91, 34, 1) 80%);
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.labeling-section .about_shap {
  position: absolute;
  max-width: 100% !important;
  top: -50px;
  left: 0;
  z-index: 0;
  opacity: 40%;
  pointer-events: none;
}
.labeling-section p{
  color: var(--brown);
    font-size: 18px;
    font-weight: 500;
    text-align: justify;
    margin-bottom: 0;
    line-height: 26px;
    /* width: 90%; */
    margin: 0 auto 20px;
    font-family: 'Mluvka-Regular';
}
.labeling-section h2{
  color: var(--brown);
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0;
    line-height: 28px;
    width: 80%;
    margin: 0 auto;
    font-family: "Mluvka-Bold";
}
/* .labeling-box {
  position: relative;
  border-top: none; 
  text-align: center; 
} */
.labeling-box {
  position: relative;
  border-top: none; 
  text-align: center; 
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  border-right: 2px solid #000;
  padding: 20px 10px;
  margin-bottom: 20px;
  background-color: rgba(255, 255, 255, 0); /* Keep transparent if needed */
}

.labeling-box h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--brown); /* Or any color */
  font-family: "Mluvka-Bold";
  font-size: 22px;
}

.labeling-box h2 span {
  position: relative;
  padding: 0 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.labeling-box h2 span::before,
.labeling-box h2 span::after {
  content: "";
  height: 2px;
  background-color: #000;
  flex-grow: 1;
  display: block;
  width: 100px; /* Optional: control line length */
}

.labeling-box h2 span::before {
  margin-right: 15px;
}

.labeling-box h2 span::after {
  margin-left: 15px;
}
.labeling-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 20px auto;
  max-width: 1500px;
}

.labeling-box {
  border: 2px solid #000;
  padding: 25px 20px 20px;
  position: relative;
  width: 100%;
  max-width: 350px;
  box-sizing: border-box;
  /* background: #fff;  */
}

.label-title {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--base); 
  color: var(--brown);
  font-family: "Mluvka-Bold";
    font-size: 18px;
  padding: 5px 20px;
  font-weight: bold;
  white-space: nowrap;
}

.labeling-box p {
  margin: 0;
  font-size: 16px;
  text-align: left;
  line-height: 1.5;
}

.brand-one {
  position: relative;
  display: block;
  padding: 60px 0 60px;
}

.brand-one__title h3{
  color: var(--brown);
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0;
    line-height: 45px;
    width: 80%;
    margin: 0 auto 15px;
    font-family: "Mluvka-Bold";
}

.brand-one__carousel {
  position: relative;
  display: block;
}

.brand-one__single {
  position: relative;
  display: block;
  text-align: center;
  z-index: 1;
}

.brand-one__img {
  position: relative;
  display: inline-block;
  z-index: 10;
}

.brand-one__img>img {
  position: relative;
  -webkit-transition: 500ms;
  transition: 500ms;
    width: 180px !important;
    object-fit: contain;
}
.odc-banner {
  position: relative;
  display: block;
  padding: 170px 0 40px;
  overflow: hidden;
  z-index: 1;
  background: radial-gradient(circle at 30%, rgba(254, 188, 17, 1) 10%, rgba(246, 133, 31, 1) 30%, rgba(241, 91, 34, 1) 70%);
  overflow: hidden;
  z-index: 1;
}
.odc-banner .row::before {
  content: "";
  display: block;
  position: absolute;
  top: 110px;
  left: 0;
  width: 100%;
  height: 30px;
  background-image: url('../images/odc-border.png');
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 10;
}
.odc-banner h1{
  color: var(--brown);
    font-size: 90px;
    font-weight: 700;
    text-align: center;
    font-family: 'Mluvka-Bold';
}
.odc-banner h1 .subtext{
  font-size: 70px;
  color: var(--brown);
  font-weight: 700;
  text-align: center;
  font-family: 'Mluvka-Bold';
}
.odc-banner h1 span{
  color: #fff;
    font-size: 200px;
    font-weight: 500;
    line-height: 100px;
    font-family: 'Blacksword';
    text-align: right;
}
.odc-banner .col-lg-6{
  margin: auto;
}
.info-banner {
  background-color: var(--brown);
  padding: 10px 0; 
  text-align: center;
}

.info-banner p {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  font-family: 'Mluvka-Regular';
}

.info-banner p span:first-child::before,
.info-banner p span:last-child::after {
  content: '';
}

.odc-section {
  padding: 50px 20px;
  background: radial-gradient(circle at top, #FFCA06 5%, #F9A01B 30%, rgba(241, 91, 34, 1) 80%);
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.odc-section .about_shap {
  position: absolute;
  max-width: 100% !important;
  top: -50px;
  left: 0;
  z-index: 0;
  opacity: 40%;
  pointer-events: none;
}
.odc-section h2{
  color: var(--brown);
    font-size: 28px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0;
    line-height: 34px;
    width: 80%;
    margin: 0 auto 30px;
    position: relative;
    z-index: 5;
}
.odc-section h2 span{
  font-weight: 700;
}
.odc-section .odc-img{
  border: 1px solid #fff;
    border-radius: 15px;
}

.odc-section h3{
  color: #fff;
    width: 80%;
    text-align: center;
    margin: 20px auto;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    font-family: 'Mluvka-Regular';
}
.page-header h1{
  color: var(--brown);
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  line-height: 60px;
  margin: 0 0 20px 0;
  font-family: 'Mluvka-Bold';
}
.page-header p{
  font-size: 24px;
    line-height: 34px;
    text-align: center;
    color: var(--brown);
    font-family: 'Mluvka-Regular';
}
.plant-section {
  color: white;
  padding: 50px 20px;
  text-align: center;
  background: radial-gradient(circle at top, #FFCA06 5%, #F9A01B 30%, rgba(241, 91, 34, 1) 80%);
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.plant-section .about_shap {
  position: absolute;
  max-width: 100% !important;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 40%;
  pointer-events: none;
}
.plant-section h2 {
  font-size: 22px;
    margin-bottom: 40px;
    color: var(--brown);
    font-weight: 400;
    line-height: 28px;
    position: relative;
    z-index: 5;
    font-family: 'Mluvka-Regular';
}
.plant-section p {
  font-size: 18px;
  line-height: 26px;
  margin: 0 auto;
  text-align: justify;
  margin: 0px 0 15px 0;
  width: 95%;
  color: var(--brown);
  font-weight: 500;
  font-family: 'Mluvka-Regular';
}
.plant-section ul {
  list-style-type: none;
  padding: 0;
}

.plant-section li {
  color: var(--brown);
  display: flex;
  align-items: center;
  text-align: left;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 26px;
}

.plant-section li img {
  width: 70px;
  height: 70px;
  margin-right: 30px;
}

.plant-section li span {
  font-size: 18px;
  font-family: 'Mluvka-Regular';
}
.plant-section li span strong{
  font-family: 'Mluvka-Bold';
}
.plant-section .plant-img{
  width: 80%;
  border-radius: 15px;
}

.plant-one {
  position: relative;
  display: block;
  padding: 60px 0 10px;
}

.plant-one__title h3{
  color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0;
    line-height: 28px;
    width: 80%;
    margin: 0 auto 20px;
}

.plant-one__carousel {
  position: relative;
  display: block;
}

.plant-one__single {
  position: relative;
  display: block;
  text-align: center;
  z-index: 1;
}

.plant-one__img {
  position: relative;
  display: inline-block;
  z-index: 10;
  padding: 20px;
}

.plant-one__img>img {
  position: relative;
  -webkit-transition: 500ms;
  transition: 500ms;
  border-radius: 15px;
}
.plant-one .owl-carousel .owl-nav{
  display: block;
}

.plant-one .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.plant-one .owl-nav button {
  background-color: #ff5722; 
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  pointer-events: all;
  font-size: 20px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.plant-one .owl-nav button:hover {
  background-color: transparent !important;
}

.plant-one .owl-nav button.owl-prev {
  position: absolute;
  left: -40px;
  top: -40px;
}

.plant-one .owl-nav button.owl-next {
  position: absolute;
  right: -40px;
  top: -40px;
}
.plant-one .owl-nav button.owl-prev span,
.plant-one .owl-nav button.owl-next span{
  font-size: 40px;
}
.qualities-list-top {
  list-style: none;
  padding: 0 !important;
  margin: 0px auto;
  display: inline-flex;
  border-bottom: 1px solid #fff;
  width: 80%;
  justify-content: center;
}

.qualities-list-top li {
  display: inline;
    font-size: 22px;
    color: var(--brown);
    line-height: 26px;
    padding: 15px 25px;
    font-family: 'Mluvka-Bold';
}
.qualities-list-top li.brd-right{
  border-right: 2px solid #fff;
}
.qualities-list-bottom {
  list-style: none;
  padding: 0 !important;
  margin: 0px auto;
  display: inline-flex;
  width: 80%;
  justify-content: center;
}

.qualities-list-bottom li {
  display: inline;
    font-size: 22px;
    color: var(--brown);
    line-height: 26px;
    padding: 15px 25px;
    font-family: 'Mluvka-Bold';
}
.qualities-list-bottom li.brd-right{
  border-right: 2px solid #fff;
}

.franchise-section h1 {
  font-size: 35px;
  line-height: 45px;
  margin-bottom: 15px;
  color: var(--brown);
  font-weight: 700;
  text-transform: capitalize;
  position: relative;
  z-index: 5;
  font-family: 'Mluvka-Bold';
}
.franchise-section h1 span{
  font-weight: 400;
}
.franchise-section {
  text-align: center;
  background: radial-gradient(circle at top, #FFCA06 5%, #F9A01B 50%, rgba(241, 91, 34, 1) 100%);
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.franchise-section .about_shap {
  position: absolute;
  max-width: 100% !important;
  top: -50px;
  left: 0;
  z-index: 0;
  opacity: 40%;
  pointer-events: none;
}
.franchise-section p{
  color: var(--brown);
    font-size: 18px;
    font-weight: 500;
    text-align: justify;
    margin-bottom: 0;
    line-height: 26px;
    width: 80%;
    margin: 0 auto 20px;
    font-family: 'Mluvka-Regular';
}
.franchise-section h2{
  color: var(--brown);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0;
    line-height: 30px;
    width: 80%;
    margin: 0 auto;
    font-family: 'Mluvka-Bold';
}
.franchise-card {
  background: linear-gradient(to top, #f7c12f, #f18b24);
  border-radius: 10px;
  padding: 70px 20px 20px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.2), 
              0px 8px 16px rgba(0, 0, 0, 0.15), 
              0px 4px 8px rgba(0, 0, 0, 0.1);
}

.franchise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  border-top: 3px solid white;
  border-right: 3px solid white;
  border-left: 3px solid white;
  pointer-events: none;
}

.franchise-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto -100px;
  z-index: 10;
}

.franchise-header .outer-circle {
  width: 220px;
  height: 220px;
  background-color: #fdd021;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid white;
}

.franchise-header .inner-circle {
  width: 200px;
  height: 200px;
  background-color: #fdd021;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.franchise-header h3 {
  font-size: 35px;
  color: var(--brown);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 40px;
  font-family: 'Mluvka-Bold';
}
.franchise-section h3.heading{
  color: #fff;
}
.franchise-header small {
  font-size: 16px;
  display: block;
  font-weight: 500;
  line-height: 20px;
  margin: 10px 0 0 0;
  font-family: 'Mluvka-Regular';
  text-transform: capitalize;
}

.franchise-body {
  padding-top: 60px;
  color: var(--brown);
}

.franchise-body p {
  width: 90%;
  font-size: 18px;
  line-height: 26px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  color:var(--brown);
  font-weight: 600;
  text-align: center;
  font-family: 'Mluvka-Regular';
}
.franchise-body p.ht{
  height: 100px;
}
.franchise-body strong {
  font-size: 22px;
  line-height: 40px;
  color: var(--brown);
  font-weight: 900;
  font-family: 'Mluvka-Bold';
}
.brd-bottom{
  border-bottom: 3px solid #fff;
}
.franchise-section h3{
margin-bottom: 15px;
  font-size: 35px;
  color: var(--brown);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 45px;
  font-family: 'Mluvka-Bold';
}
.form-label {
  display: none;
}

.form-input {
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
  color: var(--gray) !important;
  font-size: 14px;
  font-family: 'Mluvka-Regular';
}
.form-input:focus{
  border: none;
}
.iti{
  
  font-family: 'Mluvka-Regular';
}
.form-select {
  color: var(--gray) !important;
  font-weight: 700;
}

.franchise-section .disclaimer {
  color: #fff;
  font-size: 16px;
  margin: 10px 0;
  text-align: left;
}
.form-check{
  text-align: left;
}
.form-check-label {
  color: #fff;
  font-size: 16px;
}
.form-check-input{
  width: 20px;
    height: 20px;
    margin: 0 10px 0 0;
}
.btn-submit {
  background-color: var(--brown);
    color: #fff;
    font-size: 16px;
    padding: 10px 50px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    float: inline-end;
    font-family: 'Mluvka-Regular';
}

.btn-submit:hover {
  background-color: var(--white);
}
.iti{
  width: 100%;
}
.iti--allow-dropdown input, .iti--allow-dropdown input[type=tel]{
  padding-top: 10px;
    padding-bottom: 10px;
    color: var(--gray) !important;
}
input::placeholder {
  color: var(--gray) !important;
  font-weight: 700;
  opacity: 1;
}

textarea::placeholder {
  color: var(--gray) !important;
  opacity: 1;
}
.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
  color: var(--gray);
  font-weight: 700;
}
.form .col-md-4{
  padding: 0 10px;
}
.franchise-head {
  text-align: center;
  background: radial-gradient(circle, #FFCA06 5%, #F9A01B 20%, rgba(241, 91, 34, 1) 60%);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding: 205px 0 250px; 
  width: 100%;
  color: #fff;
}

.overlay-container {
  background-image: url('../images/franchisee_bg.png');
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  opacity: 1; 
}
.franchise-head h1{
  font-size: 45px;
  line-height: 55px;
  text-align: left;
  font-family: 'Mluvka-Bold';
  margin: 0 0 0 0px;
  position: relative;
  z-index: 5;
}
.overlay-container img {
  width: 100%;
  height: auto;
}

.franchise-head .franchise-img {
  position: absolute;
  max-width: 100% !important;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}
.certificates {
  padding: 20px 0;
  text-align: center;
}

.certificates .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.certificates .row {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0px; 
}

.certificates .col {
  flex: 1 1 auto;
  max-width: 250px;
  padding: 0 5px;
}

.col img {
  width: 100%;
  height: 150px;
}

.certificates .col p {
  margin-top: 10px;
    font-size: 12px;
    color: var(--brown);
    font-weight: 700;
    text-align: center;
    font-family: 'Mluvka-Regular';
}

.certificates .col p span {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}
.col-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; 
  text-align: center;
  max-width: 320px; 
  margin: 0 0;
  padding: 0 0;
}

.col-group .col {
  margin: 0 0px;
  flex: 1 1 auto; 
}

.col-group .centered-text {
  width: 100%; 
  margin-top: -40px;
  font-size: 12px;
  color: var(--brown);
  font-weight: 700;
  text-align: center;
  font-family: 'Mluvka-Regular';
}
.plant-section .col-lg-6{
  margin: 0 0 0 auto;
    }
    .hero-section {
      background-image: url('../images/franchise-bg-img.webp'); 
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      height: 100vh;
  }
  
  .hero-section .text-section {
      color: white;
      padding: 30px;
  }
  
  .hero-section .heading {
    color: #fff;
    font-size: 24px;
    text-align: left;
    margin-bottom: 0;
    line-height: 30px;
    width: 100%;
    font-family: 'Mluvka-Bold';
  }
  
  .hero-section .subtext {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    margin-bottom: 0;
    line-height: 26px;
    width: 100%;
    margin: 0 auto 20px;
    font-family: 'Mluvka-Regular';
  }
  
  .hero-section .highlight-text {
    font-size: 35px;
    margin-bottom: 20px;
    color: var(--orange);
    text-transform: none;
    position: relative;
    z-index: 5;
    font-family: 'Mluvka-Regular';
    text-align: left;
    margin: 0 auto 20px;
  }
  
  .hero-section .emphasis {
    font-family: 'Mluvka-ExtraBold';
  }
  
  .store-section .about_shap {
    position: absolute;
    max-width: 100% !important;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 40%;
    pointer-events: none;
  }
  .store-section h2 {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 15px;
    color: var(--brown);
    font-family: 'Mluvka-Bold';
  }
  
  .store-section {
    padding: 50px 20px;
    text-align: center;
    background: radial-gradient(circle at top, #FFCA06 5%, #F9A01B 30%, rgba(241, 91, 34, 1) 80%);
    position: relative;
    z-index: 5;
    overflow: hidden;
  }
  .store-section .card{
padding: 15px;
text-align: left;
  }
  .store-section .divider{
    border-style: solid;
    color: var(--brown);
    border-width: 2px;
    width: 30px;
  }
  .store-section h2 {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 15px;
    color: var(--brown);
    font-family: 'Mluvka-Bold';
  }
  .store-section h3 {
    font-size: 24px;
    line-height: 35px;
    margin-bottom: 15px;
    color: var(--white);
    font-family: 'Mluvka-Bold';
  }
  .store-section .card-body{
    padding: 15px 0 0;
    }
  .store-section .row{
    position: relative;
    z-index: 5;
    --bs-gutter-x: 0px;
  }
  .store-section .card-body p{
    margin-bottom: 5px;
  }
  .store-section .card-body p a{
    font-size: 16px;
    line-height: 24px;
    font-family: 'Mluvka-Regular';
    color: var(--white);
    }
    .store-section .card-body p a:hover{
      color: var(--brown);
    }
  .store-section .card-body i{
    color: var(--brown);
    padding: 0 5px 0 0;
  }
  .store-section .card.border-all{
    border: 1px solid var(--brown);
  }
  .store-section .card.border-sides{
    border-right: 1px solid var(--brown);
    border-bottom: 1px solid var(--brown);
    border-left: 1px solid var(--brown);
  }
  .store-section .card.border-topside{
    border-top: 1px solid var(--brown);
    border-bottom: 1px solid var(--brown);
  }
  .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  .alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
  }
.hide{
  display: none;
}  
#error-msg{
  color: #fa2323;
    font-size: 16px;
    font-family: 'Mluvka-Regular';
    background-color: #f0d8d8;
    border-color: #e9c6c6;
    padding: 15px;
}
/* Ensure columns stack vertically on smaller screens */
@media only screen and (max-width: 374px){
  .franchise-section .franchise_shap {
    top: 170px !important;
}
}
@media (max-width: 768px) {
  .global-section h1{
    font-size: 25px;
    line-height: 35px;
  }
  .global-section h3{
    font-size: 22px;
  }
  .global-section h2{
    font-size: 24px;
    line-height: 30px;
  }
  .global-section .locations li{
    font-size: 20px;
    line-height: 26px;
  }
  .hero-section {
    height: auto;
}

.hero-section .highlight-text {
    font-size: 22px;
    line-height: 30px;
}

.hero-section .heading, .hero-section .subtext {
    font-size: 16px;
}
  .qualities-list-top li {
    font-size: 16px;
    line-height: 20px;
    padding: 15px 20px;
}
.qualities-list-bottom li {
  font-size: 16px;
  line-height: 20px;
  padding: 15px 20px;
}
  .global-section .map{
    height: auto;
    top: 50px;
  }
  .plant-section .plant-img {
    width: 100%;
}
.plant-section p{
  margin-top: 20px;
}
  .odc-section h2,
  .odc-section h3{
    width: 100%;
  }
  .odc-banner{
    padding: 130px 0 40px;
  }
  .odc-banner h1{
    font-size: 60px;
}
.odc-banner h1 .subtext{
  font-size: 40px;
}
.odc-banner h1 span{
    font-size: 120px;
    line-height: 70px;
}
.odc-banner .row::before{
  top: 70px;
  height: 20px;
}
  .about-directors .text {
    padding: 20px 30px 30px 20px;
  }
  .about-directors .section-heading p{
    font-size: 16px;
  }
  .about-directors .section-heading h3{
    font-size: 20px;
  }
  .about-directors{
    padding: 0px 0px;
  }
  .about-directors .about-d-img img,
  .about-directors .text{
    border-radius: 15px;
    border: 2px solid var(--yellow);
  }
  .about-section h2 {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 20px;
}
.about-section h2 span{
  font-size: 35px;
    line-height: 45px;
}
  section {
    padding: 50px 0px;
}
  .about-section .mission-txt{
    width: 100%;
  }
  .story-section h2{
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 20px;
  }
  .story-section p {
    font-size: 16px;
    line-height: 24px;
    width: 100%;
  }
  .story-section p.mt-5{
    margin-top: 0 !important;
  }
  .bg-img{
    margin-top: 30px;
  }
  .story-section img{
    margin-bottom: 20px;
  }
  .section-title__title{
    font-size: 26px;
    line-height: 30px;
  }
  .section-title__tagline{
    font-size: 20px;
    line-height: 22px;
  }
  .testimonial-one__text {
    font-size: 18px;
    line-height: 26px;
    height: auto;
  }
  .franchise-div{
    padding: 25px 25px 25px;
  }
  .franchise-div .franchise_shap{
    bottom: 20px;
    top: auto;
  }
  .franchise-div h2 {
    font-size: 20px;
    margin: 0px 0 20px 10px;
  }
  .franchise__btn-box{
    margin-top: 20px;
  }
  .testimonial-one__client-name {
    font-size: 18px;
    line-height: 26px;
  }
.odc-section .row.mt-5{
  margin-top: 0 !important; 
}
.odc-section .row{
  margin-bottom: 15px;
}
  footer .row{
    padding: 0 15px;
    --bs-gutter-y: 20px;
  }
  footer .col-xs-12,
  footer .col-xs-4{
    margin-bottom: 15px;
  }
  .main-menu__right {
    display: none;
}
.main-menu__wrapper-inner{
  /* display: block; */
  padding: 5px 15px;
}
.main-menu__left{
  justify-content: space-between;
}
.main-menu__logo img {
  height: 70px;
  width: 130px;
}
.testimonial-one .title{
  font-size: 20px;
  top: 105px;
    left: 18%;
    line-height: 22px;
}
.testimonial-one .title span {
  margin-left: 20px;
}
.testimonial-one .subtitle{
  font-size: 16px;
  top: 100px;
  left: 44%;
  line-height: 16px;
}
.franchise-section h2 {
  font-size: 20px;
}
.franchise-section .franchise_shap{
  top: 120px;
}
.thm-btn{
  padding: 5px 15px 5px;
  font-size: 14px;
  border-radius: 5px;
}
.labeling-section p{
  width: 95%;
}
.testimonial-one__client-details{
  margin-bottom: 0;
}
.franchise-section p{
  width: 100%;
}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .store-section .card{
    padding: 10px;
      }
  .global-section .map{
    height: auto;
    top: 50px;
  }
  .plant-section .col-lg-6{
    margin: auto;
      }
  .odc-section h2,
  .odc-section h3{
    width: 100%;
  }
  .odc-banner .row::before{
    top: 70px;
    height: 20px;
  }
  .odc-banner h1{
    font-size: 60px;
}
.odc-banner h1 .subtext{
  font-size: 40px;
}
.odc-banner h1 span{
    font-size: 120px;
    line-height: 70px;
}
  .main-menu__left{
    justify-content: space-between;

  }
  .main-menu__right{
    display: none;
  }
    .testimonial-one .subtitle{
        font-size: 16px;
    left: 35%;
    }
    .testimonial-one .testi_shap{
      max-width: 80% !important;
    }
    .testimonial-one__text{
      height: 240px;
    }
    .franchise-div .franchise_shap{
      bottom: 10px;
      top: auto;
    }
    .franchise-div h2{
      
    font-size: 22px;
    }
    .testimonial-one .title{
        font-size: 35px;
    left: 10%;
    }
    .franchise-section .franchise_shap{
        top: 20px;
    }
    .franchise-section h2 {
        font-size: 24px;
    }
    .franchise__btn-box{
        margin-top: 0;
    }
    .product-section .prod-img{
      max-width: 100%;
      max-height: 90%;
    }
    footer{
      padding: 0 15px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1300px){
  .global-section .map{
    height: auto;
    top: 50px;
  }
  .plant-section .col-lg-6{
margin: auto;
  }
  .odc-section .big{
    height: 240px;
  }
  .odc-section h2,
  .odc-section h3{
    width: 100%;
  }
  .odc-banner .row::before{
    top: 90px;
    height: 30px;
  }
  .testimonial-one .title{
    left: 16%;
  }
  /* .main-menu__right {
    display: none;
} */
.main-menu__wrapper-inner{
  /* display: block; */
  padding: 0 20px 0;
}
/* .main-menu__left{
  justify-content: space-between;
} */
.odc-banner h1{
    font-size: 70px;
}
.odc-banner h1 .subtext{
  font-size: 50px;
}
.odc-banner h1 span{
    font-size: 160px;
    line-height: 90px;
}
}
@media only screen and (min-width: 992px) {
  .store-section .container{
    max-width: 940px;
  }
}