/*==========
Theme Name: NIB | New India Bakery Test
Design & Develop By: Digital Web
==========*/

/*==========
----- CSS INDEX -----
1.Common CSS
2.All Pages Iamges URL CSS
3.Loader CSS
4.Header CSS
5.Banner CSS
6.Our History CSS
7.Features CSS
8.Our Products CSS
9.Call To Action CSS
10.Outlets CSS
11.Basic Product Info CSS
12.Footer CSS
13.Scroll To Top CSS
14.About Us Page CSS
15.Contact Us Page CSS
16.Products List Page CSS
17.Product Detail Page CSS
18.Responsive CSS
==========*/


/*==========Common CSS Start==========*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ed1c24;
    --dark-color: #262626;
    --common-color: #515151;
    --bg-color: rgba(0,0,0,0.08);
    --black-color: #000000;
    --white-color: #ffffff;
    --red-color: #ff0000;
    --common-font: 'Open Sans', sans-serif;
    --title-font: 'Fjalla One', sans-serif;
    --sub-title-font: 'Courgette', cursive;
}

body {
    font-family: var(--common-font);
    overflow-x: hidden !important;
    font-size: 16px;
    line-height: 28px;
    color: var(--common-color);
}

body.fixed {
    position: fixed;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.main {
    width: 100%;
    overflow-x: hidden !important;
}

a, a:hover, a:focus {
    text-decoration: none;
    outline: none;
}

section {
    position: relative;
}

input, input:focus, input:hover, button, button:hover, button:focus {
    outline: none;
}

img {
    width: auto;
    height: auto;
    max-width: 100%;
}

p {
    font-size: 16px;
    line-height: 28px;
    color: var(--common-color);
    font-weight: normal;
    margin-bottom: 20px;
}

.common-sec {
    position: relative;
    padding: 100px 0;
}

.title {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.title.left {
    text-align: left;
}

.title .icon {
    display: block;
    margin: 0 auto 15px auto;
}

.title .icon img {
    width: 35px;
    opacity: 0.2;
    height: auto;
}

.title.white h1,
.title.white h2,
.title.white h3,
.title.white h4,
.title.white h5,
.title.white h6,
.title.white span,
.title.white p {
    color: var(--white-color);
}

.title.white .icon {
    opacity: 1;
    filter: brightness(1000);
}

.title.white .icon img {
    opacity: 1;
}

.sub-title {
    display: inline-block;
    font-size: 18px;
    line-height: 28px;
    color: var(--dark-color);
    font-weight: normal;
    font-family: var(--sub-title-font);
    text-transform: none;
    position: relative;
    margin-bottom: 0;
}

.sub-title:before,
.sub-title:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(0,-50%);
    width: 50px;
    height: 2px;
    background: #dddddd;
    margin-left: 15px;
}

.sub-title:after {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 15px;
}

.h1-title {
    font-size: 60px;
    line-height: 70px;
    color: var(--dark-color);
    font-weight: normal;
    font-family: var(--title-font);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.h2-title {
    font-size: 48px;
    line-height: 58px;
    font-weight: normal;
    color: var(--dark-color);
    font-family: var(--title-font);
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
}

.h3-title {
    font-size: 24px;
    line-height: 34px;
    color: var(--dark-color);
    font-weight: normal;
    font-family: var(--title-font);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sec-btn {
    display: inline-block;
    width: 150px;
    height: 45px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-size: 16px;
    line-height: 25px;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
    text-align: center;
    padding: 9px 5px;
    box-shadow: 1px 1px 40px rgba(0, 0, 0, 0.1);
    outline: none;
    transition: 0.3s;
    cursor: pointer;
}

.set-height-45{
    height: 50px;
}

.sec-btn:hover {
    color: var(--white-color);
    background: var(--primary-color);
}

.sec-btn span {
    position: relative;
    z-index: 1;
}

.black-shadow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000000;
    opacity: 0.75;
    z-index: 90;
    display: none;
}

.back-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.parallax-bg-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

.form-box {
    display: block;
    position: relative;
    font-size: 0;
    line-height: 1;
    margin-bottom: 30px;
}

.form-input {
    width: 100%;
    height: 50px;
    background: rgba(0,0,0,0.03);
    font-size: 16px;
    line-height: 20px;
    color: var(--common-color);
    border: none;
    outline: none;
    padding: 11px 20px;
    border: 1px solid #dddddd;
    border-radius: 10px;
    box-shadow: none;
}

textarea.form-input {
    height: 120px;
    resize: none;
    padding: 15px 20px;
    margin-bottom: 0;
}

.form-input::placeholder {
    color: var(--common-color);
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
}

select::-ms-expand {
    display: none;
}

.form-element {
    position: relative;
}

.form-element i {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0,-50%);
    pointer-events: none;
    font-size: 16px;
    color: var(--dark-color);
}

select.form-input {
    padding-right: 40px !important;
}

.for-des {
    display: inline-block !important;
}

.for-mob {
    display: none !important;
}

.toggle-button {
    position: fixed;
    top: 24px;
    right: 30px;
    width: 30px;
    height: 21px;
    background: transparent;
    text-align: center;
    border: none;
    outline: none;
    display: none;
    z-index: 110;
}

.toggle-button span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    display: block;
    margin: 0 auto 6px auto;
    position: relative;
    top: 0;
    opacity: 1;
    transition: 0.3s;
}

.toggle-button span:last-child {
    margin-bottom: 0;
}

.toggle-menu .toggle-button {
    background: transparent;
}

.toggle-menu .toggle-button span {
    background: var(--white-color);
}

.toggle-menu .toggle-button span:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: 9px;
}

.toggle-menu .toggle-button span:nth-child(2) {
    opacity: 0;
}

.toggle-menu .toggle-button span:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: -9px;
}

.container {
    position: relative;
    z-index: 5;
}

.swiper-pagination {
    position: absolute;
    bottom: -12px !important;
    font-size: 0;
    line-height: 1;
    text-align: center;
}

.swiper-pagination-bullet {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--common-color);
    opacity: 1;
    margin: 0 7px !important;
    opacity: 0.5;
    transition: 0.3s;
}

.swiper-pagination-bullet:hover, .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

.swiper-button-next:after, 
.swiper-button-prev:after {
    display: none !important;
}

.swiper-button-next, 
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--bg-color);
    font-size: 20px;
    color: var(--dark-color);
    border-radius: 10px;
    position: absolute;
    top: auto;
    bottom: 0px;
    left: auto;
    right: 0;
    z-index: 20;
    transition: 0.3s;
}

.swiper-button-prev {
    right: 80px;
}

.swiper-button-next:hover, 
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: var(--white-color);
}
/*==========Common CSS End==========*/


/*==========All Pages Iamges URL CSS Start==========*/
.feature-img {
    background-image: url('../images/nib-pattern.jpg');
}

.call-action-img {
    background-image: url('../images/call-action-bg.jpg');
}

.outlet-img {
    background-image: url('../images/outlet-img.jpg');
}

.basic-info-img {
    background-image: url('../images/pattern-bg.jpg');
}

.footer-bg {
    background-image: url('../images/footer-bg.jpg');   
}

.about-banner-bg {
    background-image: url('../images/about-banner.jpg');
}

.about-timeline {
    background-image: url('../images/timeline-bg.jpg');
}

.product-banner-bg {
    background-image: url('../images/product-banner.jpg');
}

.outlet-banner-bg {
    background-image: url('../images/outlet-banner.jpg');
}

.contact-banner-bg {
    background-image: url('../images/contact-us-banner.jpg');
}
/*==========All Pages Iamges URL CSS End==========*/


/*==========Loader CSS Start==========*/
#loader {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: var(--white-color);
    z-index: 999999;
    top: 0
}

#loader .loader-item {
    position: absolute;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%)
}

#loader .loader-item img {
    display: block;
    width: 150px;
}

#loader .spinner {
    margin: 30px auto 0;
    width: 70px;
    text-align: center
}

#loader .spinner>div {
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
    animation: bouncedelay 1.4s infinite ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

#loader .spinner .bounce1 {
    -webkit-animation-delay: -.32s;
    animation-delay: -.32s
}

#loader .spinner .bounce2 {
    -webkit-animation-delay: -.16s;
    animation-delay: -.16s
}

@keyframes bouncedelay {
    0%, 100%, 80% {
        transform:scale(0);
        -webkit-transform:scale(0)
    }
    40% {
        transform:scale(1);
        -webkit-transform:scale(1)
    }
}
/*==========Loader CSS End==========*/


/*==========Header CSS Start==========*/
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--white-color);
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    z-index: 100;
}

.site-header .container {
    max-width: 100%;
    padding: 0 50px;
}

.site-branding {
    width: 100%;
    height: 80px;
}

.site-branding a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    background: var(--white-color);
    border-radius: 50%;
    padding: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 20px rgb(0 0 0 / 5%);
    transition: 0.3s;
}

.site-branding a img {
    width: 120px;
    max-width: 100%;
    height: auto;
    transition: 0.3s;
}

.header-menu {
    font-size: 0;
    line-height: 1;
    text-align: right;
}

.main-navigation {
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    vertical-align: middle;
}

.main-navigation ul {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0;
    line-height: 1;
    vertical-align: middle;
}

.main-navigation ul li {
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    margin-left: 40px;
}

.main-navigation ul li:first-child {
    margin-left: 0;
}

.main-navigation ul li a {
    font-size: 16px;
    line-height: 26px;
    color: var(--dark-color);
    font-weight: normal;
    font-family: var(--title-font);
    text-transform: uppercase;
    padding: 5px 0;
    display: inline-block;
    position: relative;
    transition: 0.3s;
}

.main-navigation ul li a:hover,
.main-navigation ul li.active a {
    color: var(--primary-color);
}

.main-navigation ul li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-color);
    opacity: 0;
    z-index: 0;
    transition: 0.3s;
}

.main-navigation ul li a:hover:before,
.main-navigation ul li.active a:before {
    width: 100%;
    opacity: 1;
}

.header-contact {
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: 50px;
    vertical-align: middle;
}

.header-contact a {
    display: inline-block;
    font-size: 16px;
    color: var(--common-color);
    margin-left: 20px;
    transition: 0.3s;
}

.header-contact a:first-child {
    margin-left: 0;
}

.header-contact a:hover {
    color: var(--primary-color);
}

.header-contact a i {
    color: var(--primary-color);
    margin-right: 5px;
}

.header-social {
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    margin-left: 40px;
    vertical-align: middle;
}

.header-social a {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-left: 15px;
    transition: 0.3s;
}

.header-social a:first-child {
    margin-left: 0;
}

.header-social a img {
    width: auto;
    height: 100%;
}

/*Sticky Header Start*/
.site-header.sticky-header .site-branding a {
    width: 120px;
    height: 120px;
}
/*Sticky Header End*/
/*==========Header CSS End==========*/


/*==========Banner CSS Start==========*/
.main-banner {
    position: relative;
    overflow: hidden;
}

.banner-box {
    width: 100vw;
    position: relative;
}

.banner-bg {
    width: 100%;
    height: auto;
    padding-top: 80px;
    display: block;
}

.banner-bg img {
    width: 100%;
    height: auto;
}
/*==========Banner CSS End==========*/


/*==========Our History CSS Start==========*/
.main-our-history {
    position: relative;
}

.our-history-content {
    position: relative;
    text-align: center;
    padding-top: 70px;
}

.our-history-content-text {
    margin-bottom: 40px;
}

.our-history-content-text p {
    font-style: italic;
    margin-bottom: 0;
}
/*==========Our History CSS End==========*/


/*==========Features CSS Start==========*/
.main-features {
    position: relative;
    background: #8b0000;
    overflow: hidden;
}

.main-features:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #8b0000;
    opacity: 0.9;
    z-index: 1;
}

.features-content {
    text-align: center;
}

.features-content .h2-title, 
.features-content p {
    color: var(--white-color);
}

.features-content .sec-btn {
    border-color: var(--white-color);
    color: var(--white-color);
}

.features-content .sec-btn:hover {
    background: var(--white-color);
    color: var(--primary-color);
}
/*==========Features CSS End==========*/


/*==========Our Products CSS Start==========*/
.our-product-tabbing {
    text-align: center;
    margin-top: 120px;
}

.our-product-tabbing .nav.nav-tabs {
    border: none;
}

.our-product-tabbing .nav.nav-tabs li.nav-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 15px;
}

.our-product-tabbing .nav.nav-tabs li.nav-item:last-child {
    margin-bottom: 0;
}

.nav-tabs .nav-link {
    display: block;
    width: 100%;
    font-size: 18px;
    line-height: 28px;
    color: var(--dark-color);
    font-family: var(--title-font);
    background: var(--bg-color);
    border: none;
    margin: 0;
    border-radius: 10px;
    padding: 10px;
    transition: 0.3s;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
}

.nav-tabs .nav-link.active {
    background: var(--primary-color);
    color: var(--white-color);
    border: navajowhite;
}

.our-product-slider {
    overflow: hidden;
    position: relative;
    padding-bottom: 50px;
}

.our-product-slider .swiper-pagination {
    bottom: 19px !important;
    text-align: left;
}

.our-product-box {
    width: 1000px;
    max-width: 100%;
    display: block;
    margin: auto;
    position: relative;
}

.our-product-box img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 0;
}

.our-product-detail {
    position: absolute;
    top: 20%;
    right: 0;
    width: 370px;
    background: rgba(241,241,241,.8);
    border-radius: 10px;
    padding: 20px;
    font-size: 0;
    line-height: 1;
    z-index: 1;
}

.product-label {
    font-size: 12px;
    line-height: 15px;
    color: var(--white-color);
    text-transform: uppercase;
    width: auto;
    display: inline-block;
    padding: 2px 5px;
    background: green;
    border-radius: 3px;
    margin-bottom: 10px;
}

.product-label.green {
    background: #27ae60;
}

.product-label.red {
    background: #c0392b;
}

.product-label.blue {
    background: #1877f2;
}

.product-label.brown {
    background: #c59d5f;
}

.our-product-detail p {
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 20px;
}

.our-product-tabbing-content {
    position: relative;
}

.view-all-product {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 30px;
    z-index: 11;
}

.view-all-product .sec-btn {
    width: 220px;
}
/*==========Our Products CSS End==========*/


/*==========Call To Action CSS Start==========*/
.main-call-action {
    position: relative;
    background: var(--dark-color) ;
    overflow: hidden;
}

.main-call-action:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black-color);
    opacity: 0.6;
    z-index: 3;
}

.main-call-action .parallax-bg-box {
    filter: blur(10px);
}

.call-action-content {
    text-align: center;
}

.call-action-content .sec-btn {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.call-action-content .sec-btn:hover {
    background: var(--white-color);
    border-color: var(--white-color);
    color: var(--primary-color);
}

.call-action-text {
    font-size: 0;
    line-height: 1;
}

.call-action-text p {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.call-action-text p i {
    font-size: 16px;
    margin-right: 5px;
}
/*==========Call To Action CSS End==========*/


/*==========Outlets CSS Start==========*/
.outlets-list {
    margin-bottom: -30px;
}

.our-product-tabbing.outlets-tabbing {
    margin-top: 0;
    margin-bottom: 40px;
}

.our-product-tabbing.outlets-tabbing .nav.nav-tabs {
    text-align: center;
    display: block;
}

.our-product-tabbing.outlets-tabbing .nav.nav-tabs li.nav-item {
    width: auto;
    margin-right: 30px;
    margin-bottom: 0;
}

.our-product-tabbing.outlets-tabbing .nav.nav-tabs li.nav-item:last-child {
    margin-right: 0;
}

.outlet-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.outlet-img {
    width: 100%;
    height: 416px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.outlet-text-box {
    position: absolute;
    top: calc(100% - 70px);
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    text-align: center;
    border-radius: 0 0 10px 10px;
    transition: 0.5s ease-in-out;
    overflow: hidden;
    z-index: 5;
}

.outlet-box:hover .outlet-text-box {
    top: 0;
    background: rgba(0,0,0,0.9);
    border-radius: 10px;
}

.outlet-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 30px;
    transition: 0.5s ease-in-out;
}

.outlet-box:hover .outlet-text {
    top: 50%;
    transform: translate(0,-50%);
}

.outlet-logo {
    height: 70px;
    text-align: center;
    margin-top: -70px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.5s;
}

.outlet-box:hover .outlet-logo {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: unset;
    margin-bottom: 20px;
}

.outlet-logo img {
    width: auto;
    height: 70px;
}

.outlet-text .h3-title {
    color: var(--white-color);
}

.outlet-text p {
    color: var(--white-color);
    opacity: 0;
    transition: 0.5s ease-in-out;
}

.outlet-text p:last-child {
    margin-bottom: 0;
}

.outlet-box:hover .outlet-text p {
    opacity: 1;
}

.outlet-text p a {
    color: var(--white-color);
    transition: 0.3s;
}

.outlet-text p a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.outlet-text p a i {
    margin-right: 5px;
}

.outlet-text .sec-btn {
    color: var(--white-color);
    border-color: var(--white-color);
    opacity: 0;
}

.outlet-box:hover .outlet-text .sec-btn {
    opacity: 1;
}

.outlet-text .sec-btn:hover {
    color: var(--white-color);
    border-color: var(--primary-color);
}

.view-all-outlet {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.view-all-outlet .sec-btn {
    width: 200px;
}

.col-lg-4.swiper-slide {
    width: 33.33333333%;
}
/*==========Outlets CSS End==========*/


/*==========Basic Product Info CSS Start==========*/
.main-basic-info {
    position: relative;
}

.main-basic-info:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black-color);
    opacity: 0.7;
    z-index: 1;
}

.left_bg, .right_bg {
    position: absolute;
    width: 300px;
    z-index: 1;
}

.left_bg {
    bottom: -80px;
    left: 0;
}

.right_bg {
    bottom: -150px;
    right: 0;
}

.left_bg img, .right_bg img {
    width: 100%;
    height: auto;
}

.basic-info-content {
    position: relative;
    text-align: center;
}

.basic-info-content p {
    color: var(--white-color);
}

.basic-info-content p:last-child {
    margin-bottom: 0;
}
/*==========Basic Product Info CSS End==========*/


/*==========Footer CSS Start==========*/
.site-footer {
    position: relative;
    background-color: #191919;
    background-blend-mode: luminosity;
    padding-top: 100px;
}

.site-footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #191919;
    opacity: 0.5;
}

.footer-info {
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo a {
    display: inline-block;
    width: 100px;
}

.footer-info p {
    font-size: 14px;
    width: 500px;
    max-width: 100%;
    color: var(--white-color);
    display: inline-block;
    margin-bottom: 0;
}

.footer-logo a img {
    width: 100%;
    height: auto;
}

.footer-social {
    text-align: center;
    margin-top: 30px;
}

.footer-social a {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    margin: 0 7px;
}

.footer-social a img {
    width: auto;
    height: 100%;
}

.footer-contact-link {
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-contact-link-box {
    display: inline-block;
    width: 33.3333%;
    text-align: center;
}

.footer-contact-link-box .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 40px;
    height: 40px;
    background: var(--white-color);
    border-radius: 50%;
    font-size: 18px;
    line-height: 28px;
    color: var(--primary-color);
    margin: 0 auto 15px auto;
}

.footer-contact-link-box a {
    display: inline-block;
    color: var(--white-color);
    transition: 0.3s;
}

.footer-contact-link-box a:hover {
    color: var(--primary-color);
}

.footer-menu {
    margin-top: 40px;
    padding: 40px 0;
    text-align: center;
    border-top: 1px dashed rgba(255,255,255,0.3);
}

.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0;
    line-height: 1;
}

.footer-menu ul li {
    display: inline-block;
    font-size: 16px;
    line-height: 18px;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid var(--white-color);
}

.footer-menu ul li:first-child {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
}

.footer-menu ul li a {
    font-size: 16px;
    line-height: 18px;
    color: var(--white-color);
    font-weight: normal;
    font-family: var(--title-font);
    text-transform: uppercase;
    display: inline-block;
    letter-spacing: 1px;
    transition: 0.3s;
}

.footer-menu ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    position: relative;
    padding: 20px 0;
    background: #101010;
}

.footer-bottom-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copy-right p,
.design-by p {
    font-size: 14px;
    color: var(--white-color);
    margin-bottom: 0;
}

.design-by p a {
    color: var(--white-color);
    font-weight: 600;
    text-decoration: underline;
    transition: 0.3s;
}

.design-by p a:hover {
    color: var(--primary-color);
}
/*==========Footer CSS End==========*/


/*==========Scroll To Top CSS Start==========*/
.scrolltop {
    position: fixed;
    bottom: 50px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: rgba(32,32,32,.95);
    font-size: 16px;
    line-height: 20px;
    color: var(--white-color);
    padding: 10px 0;
    text-align: center;
    border-radius: 10px;
    z-index: 90;
    transition: 0.3s;
}

.scrolltop:hover {
    background: var(--primary-color);
    color: var(--white-color);
}
/*==========Scroll To Top CSS End==========*/


/*==========About Us Page CSS Start==========*/
/*Banner Start*/
.main-banner.inner-banner {
    position: relative;
    padding: 180px 0 100px 0;
}

.main-banner.inner-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black-color);
    opacity: 0.7;
    z-index: 1;
}

.main-banner.inner-banner .banner-content .title {
    margin-bottom: 20px;
}

.breadcrumb {
    text-align: center;
    margin-bottom: 0;
}

.breadcrumb ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
    text-align: center;
    font-size: 0;
    line-height: 1;
}

.breadcrumb ul li {
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    color: var(--white-color);
    position: relative;
    padding-left: 15px;
    margin-left: 15px;
}

.breadcrumb ul li:first-child {
    padding-left: 0;
    margin-left: 0;
}

.breadcrumb ul li:before {
    content: '/';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    font-size: 16px;
    line-height: 26px;
    color: var(--white-color);
}

.breadcrumb ul li:first-child:before {
    display: none;
}

.breadcrumb ul li a {
    font-size: 16px;
    line-height: 26px;
    color: var(--white-color);
    display: inline-block;
    transition: 0.3s;
}

.breadcrumb ul li a:hover {
    color: var(--primary-color);
}
/*Banner End*/

/*Art of Food Start*/
.art-food-img {
    width: 100%;
}

.art-food-img img {
    width: 100%;
    height: auto;
}

.art-food-content {
    text-align: center;
    padding: 70px 30px 0 30px;
}

.art-food-content-text p:last-child {
    margin-bottom: 0;
}
/*Art of Food End*/

/*About Timeline Start*/
.about-timeline {
    position: relative;
    background-color: var(--white-color);
    background-blend-mode: luminosity;
}

.about-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white-color);
    opacity: 0.5;
    z-index: 0;
}

.timeline-list {
    position: relative;
    padding: 30px 0 60px 0;
}

.timeline-list:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 2px;
    height: 100%;
    border-left: 2px dashed var(--black-color);
    opacity: 0.1;
    z-index: 0;
}

.timeline-box {
    display: block;
    width: 50%;
    position: relative;
    margin-bottom: 30px;
    z-index: 1;
}

.timeline-box:nth-child(even) {
    margin-left: auto;
}

.timeline-box:last-child {
    margin-bottom: 0;
}

.timeline-text {
    width: 500px;
    background: var(--white-color);
    padding: 24px 30px 26px 30px;
    box-shadow: 0 0 20px rgba(0,0,0,0.03);
    border-radius: 10px;
    display: block;
    margin-left: auto;
    margin-right: 58px;
    position: relative;
}

.timeline-box:nth-child(even) .timeline-text {
    margin-left: 58px;
    margin-right: auto;
}

.timeline-text:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(0,-50%);
    width: 58px;
    height: 2px;
    background: var(--black-color);
    opacity: 0.1;
    z-index: 0;
}

.timeline-box:nth-child(even) .timeline-text:before {
    left: auto;
    right: 100%;
}

.timeline-text .sec-btn {
    width: 140px;
    height: 30px;
    font-size: 12px;
    line-height: 24px;
    padding: 3px;
    float: right;
    border-width: 1px;
    opacity: 0;
}

.timeline-text:hover .sec-btn {
    opacity: 1;
}

.timeline-text .h3-title {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.timeline-text p {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translate(0,-50%);
    width: 30px;
    height: 30px;
    background: var(--white-color);
    border: 2px solid rgba(0,0,0,0.2);
    border-radius: 50%;
}

.timeline-box:nth-child(even) .timeline-dot {
    right: auto;
    left: -15px;
}

.timeline-dot:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 10px;
    height: 10px;
    background: var(--dark-color);
    border-radius: 50%;
}

.start-journey {
    display: block;
    width: 250px;
    max-width: 100%;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.03);
    padding: 20px;
    text-align: center;
    margin: auto;
}
.start-journey .h3-title {
    margin-bottom: 0;
}
/*About Timeline End*/

/*Our Vision & Mission Start*/
.vision-mission-box {
    position: relative;
    top: 0;
    height: 100%;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    text-align: center;
    transition: 0.3s;
}

.vision-mission-box:hover {
    position: relative;
    top: -15px;
    box-shadow: 0 15px 50px rgb(0 0 0 / 10%);
}

.vision-mission-img {
    width: 100%;
    height: 200px;
    margin-bottom: 30px;
    text-align: center;
}

.vision-mission-img img {
    width: auto;
    height: 100%;
}

.vision-mission-text .h3-title {
    margin-bottom: 15px;
}

.vision-mission-text p {
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}
/*Our Vision & Mission End*/
/*==========About Us Page CSS End==========*/


/*==========Contact Us Page CSS Start==========*/
/*Contact Us Detail Start*/
.contact-detail-box {
    height: 100%;
    position: relative;
    padding: 40px;
    background: var(--white-color);
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.contact-detail-box p {
    margin-bottom: 30px;
}

.contact-link-box {
    display: block;
    margin-bottom: 20px;
}

.contact-link-box p {
    display: inline-block;
    min-height: 40px;
    font-size: 16px;
    line-height: 26px;
    color: var(--common-color);
    position: relative;
    padding-left: 55px;
    margin-bottom: 0;
}

.contact-link-box p .text {
    font-size: 18px;
    line-height: 40px;
    font-weight: bold;
}

.contact-link-box p a {
    color: var(--common-color);
    word-break: break-word;
    transition: 0.3s;
}

.contact-link-box p a:hover {
    color: var(--primary-color);
}

.contact-link-box p .icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    width: 40px;
    height: 40px;
    background: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--primary-color);
    border-radius: 50%;
    transition: 0.3s;
}

.contact-link-box p:hover .icon {
    background: var(--primary-color);
    color: var(--white-color);
}

.contact-social-link {
    margin-top: 30px;
}

.contact-social-link a {
    display: inline-block;
    vertical-align: middle;
    width: 35px;
    height: 35px;
    margin-right: 15px;
}

.contact-social-link a img {
    width: auto;
    height: 100%;
}

.contact-social-link a:last-child {
    margin-right: 0;
}

.contact-form {
    height: 100%;
    position: relative;
    padding: 40px;
    background: var(--white-color);
    border-radius: 20px;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
}

.contact-form .h3-title {
    margin-bottom: 17px;
}
/*Contact Us Detail End*/

/*Google Map Start*/
.main-google-map {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.main-google-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}
/*Google Map End*/
/*==========Contact Us Page CSS End==========*/


/*==========Products List Page CSS Start==========*/
/*Banner Start*/
.banner-product-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.banner-product-bg .img1 {
    position: absolute;
    top: 80%;
    left: -50px;
    width: 350px;
}

.banner-product-bg .img2 {
    position: absolute;
    top: 50%;
    right: -80px;
    width: 300px;
}

.banner-product-bg .img1 img,
.banner-product-bg .img2 img {
    width: 100%;
    height: auto;
}
/*Banner Start*/

/*Products List Start*/
.our-product-tabbing.product-list-tabbing {
    text-align: center;
    margin-top: 0;
    padding: 30px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    position: sticky;
    top: 100px;
}

.our-product-tabbing-content.product-list-tabbing-content {
    position: relative;
    padding: 30px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

.main-product-list-box {
    margin-bottom: 50px;
}

.main-product-list-box:last-child {
    margin-bottom: 0;
}

.product-list-img {
    text-align: center;
}

.product-list-img img {
    width: 1000px;
    max-width: 100%;
    height: auto;
}

.products-lists {
    padding-top: 50px;
    margin-bottom: -50px;
}

.products-list-box {
    position: relative;
    margin-bottom: 50px;
}

.product-variety {
    float: right;
    position: relative;
    font-size: 0;
    line-height: 1;
    height: 40px;
}

.product-variety .sec-btn {
    width: 70px;
    height: 30px;
    font-size: 12px;
    line-height: 24px;
    padding: 3px;
    border-width: 1px;
}

.product-variety:hover .sec-btn,
.product-variety:focus .sec-btn {
    background: var(--primary-color);
    color: var(--white-color);
}

.product-variety-box {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    background: rgba(0, 0, 0, 0.9);
    padding: 10px 15px;
    border-radius: 5px;
    display: none;
    opacity: 0;
    z-index: 80;
}

.product-variety:hover .product-variety-box {
    display: block;
    opacity: 1;
    animation: fadein 0.3s linear 1;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.product-variety-box:before {
    content: '';
    position: absolute;
    top: -8px;
    right: 10px;
    width: 12px;
    height: 8px;
    border-bottom: 8px solid rgba(0, 0, 0, 0.9);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
}

.product-variety-box p {
    font-size: 12px;
    line-height: 15px;
    color: var(--white-color);
    font-weight: bold;
    margin-bottom: 10px;
}

.product-variety-box ul {
    list-style: square;
    margin: 0;
    padding: 0 0 0 15px;
}

.product-variety-box ul li {
    font-size: 12px;
    line-height: 15px;
    color: var(--white-color);
    margin-bottom: 10px;
}

.product-variety-box ul li:last-child {
    margin-bottom: 0;
}

.products-list-title {
    font-size: 0;
    line-height: 1;
    margin-bottom: 5px;
}

.products-list-title .h3-title a {
    color: var(--dark-color);
    display: inline-block;
    transition: 0.3s;
}

.products-list-title .h3-title a:hover {
    color: var(--primary-color);
}

.products-list-text p {
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}
/*Products List End*/
/*==========Products List Page CSS End==========*/


/*==========Product Detail Page CSS Start==========*/
.product-main-slider {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.product-main-img {
    padding: 10px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.15);
}

.product-main-img img {
    width: 100%;
    height: auto;
}

.product-thumbnail-slider {
    margin-top: 30px;
    overflow: hidden;
}

.product-thumbnail-slider .swiper-slide {
    width: calc(33.3333% - 10px);
}

.product-thumbnail-img img {
    width: 100%;
    height: 100px;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
    border: 2px solid transparent;
}

.swiper-slide.product-thumbnail-box.swiper-slide-active .product-thumbnail-img img {
    border: 2px solid var(--primary-color);
}

.main-product-detail {
    position: relative;
    padding-left: 30px;
}

.product-detail-text {
    margin: 10px 0 30px 0;
}

.product-detail-text p:last-child {
    margin-bottom: 0;
}

.product-social {
    font-size: 0;
    line-height: 1;
}

.product-social a {
    display: inline-block;
    width: 30px;
    margin-right: 20px;
}

.product-detail-verity {
    margin-top: 30px;
    padding: 15px 20px;
    background: var(--bg-color);
    border-radius: 10px;
}

.product-detail-verity p {
    font-size: 16px;
    line-height: 26px;
    color: var(--dark-color);
    font-weight: bold;
    margin-bottom: 5px;
}

.product-detail-verity ul {
    margin: 0;
    padding-left: 20px;
}

.product-detail-verity ul li {
    font-size: 14px;
}

.product-description-box {
    margin-top: 60px;
}

.product-description-box .h3-title {
    padding: 5px;
    background: var(--bg-color);
    border-radius: 10px;
    font-size: 20px;
    line-height: 30px;
    width: 150px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.product-description-content {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 10px;
}

.product-description-content p:last-child {
    margin-bottom: 0;
}
/*==========Product Detail Page CSS End==========*/


/*==========Responsive CSS Start==========*/
@media screen and (max-width: 1399px) {
    .main-navigation ul li,
    .header-contact,
    .header-social {
        margin-left: 30px;
    }
    .outlet-text {
        padding: 20px;
    }
    .art-food-content {
        padding: 70px 0 0 0;
    }
}

@media screen and (max-width: 1199px) {
    .site-header .container {
        padding: 0 30px;
    }
    .main-navigation ul li, 
    .header-contact, 
    .header-social {
        margin-left: 20px;
    }
    .site-branding a {
        width: 135px;
        height: 135px;
    }
    .header-contact a {
        font-size: 14px;
        margin-left: 15px;
    }
    .header-contact a i {
        margin-right: 2px;
    }
    .header-social a {
        margin-left: 10px;
    }
    .our-history-content,
    .art-food-content {
        padding-top: 0;
    }
    .left_bg {
        left: -50px;
    }
    .right_bg {
        right: -100px;
    }
    .timeline-text {
        width: 410px;
    }
    .vision-mission-box {
        padding: 30px 20px;
    }
    .contact-detail-box,
    .contact-form {
        padding: 40px 30px;
    }
    .banner-product-bg .img1 {
        left: -100px;
    }
    .banner-product-bg .img2 {
        right: -120px;
    }
    .main-product-detail {
        padding-left: 0;
    }
}

@media screen and (max-width: 991px) {
    .for-des {
        display: none !important;
    }
    .for-mob {
        display: inline-block !important;
    }
    .common-sec {
        padding: 80px 0;
    }
    .parallax-bg {
        height: 100%;
    }
    .site-header, 
    .site-header.sticky-header {
        background: var(--white-color);
        height: 70px;
        padding: 0;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }
    .site-header .container {
        padding: 0 30px;
    }
    .site-branding {
        position: fixed;
        top: 0;
        left: 50%;
        transform: translate(-50%);
        width: auto;
        height: 70px;
        z-index: 5;
    }
    .site-branding a {
        width: 120px;
        height: 120px;
        padding: 10px;
    }
    .site-header.sticky-header .site-branding a {
        width: 100px;
        height: 100px;
    }
    .site-branding a img {
        width: 90px;
    }
    .toggle-button {
        display: block;
    }
    .main-navigation {
        height: auto;
        display: block;
    }
    .mobile-menu-box {
        position: fixed;
        top: 0;
        right: -350px;
        width: 320px;
        height: 100vh;
        background: var(--dark-color);
        text-align: center;
        padding: 80px 15px 30px 15px;
        transition: 0.5s;
        opacity: 0;
        z-index: 100;
    }
    .main-navigation.toggle-menu .mobile-menu-box {
        right: 0;
        opacity: 1;
        z-index: 100;
    }
    .main-navigation ul {
        position: relative;
        z-index: 1;
    }
    .main-navigation ul li {
        display: block;
        margin-left: 0;
        margin-bottom: 4vh;
        transition: 0.5s;
    }
    .main-navigation.toggle-menu ul li {
        transition: 0.5s;
    }
    .main-navigation ul li:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    .main-navigation ul li:last-child a {
        display: inline-block;
        margin: 0 auto;
    }
    .main-navigation ul li a {
        font-size: 20px;
        line-height: 30px;
        color: var(--white-color);
        padding: 0;
    }
    .main-navigation ul li a:hover {
        color: var(--primary-color);
    }
    .main-navigation ul li a:before {
        display: none;
    }
    .header-contact {
        height: auto;
        display: block;
        margin-left: 0;
        margin-top: 4vh;
    }
    .header-contact a {
        font-size: 16px;
        line-height: 26px;
        color: var(--white-color);
        margin: 15px 0 0 0;
    }
    .header-contact a:first-child {
        margin-top: 0;
    }
    .header-social {
        height: auto;
        display: block;
        text-align: center;
        margin: 4vh 0 0 0;
    }
    .header-social a {
        margin-left: 20px;
    }
    .header-mobile-call {
        position: fixed;
        top: 0;
        left: 30px;
        height: 70px;
        display: flex;
        align-items: center;
        z-index: 3;
    }
    .header-mobile-call a {
        font-size: 25px;
        color: var(--primary-color);
        transition: 0.3s;
    }
    .header-mobile-call a:hover {
        color: var(--dark-color);
    }
    .banner-bg {
        padding-top: 70px;
    }
    .h2-title {
        font-size: 44px;
        line-height: 50px;
    }
    .title {
        margin-bottom: 30px;
    }
    .our-history-img {
        margin-top: 30px;
    }
    .our-product-tabbing {
        margin-top: 0;
    }
    .our-product-tabbing .nav.nav-tabs,
    .our-product-tabbing.outlets-tabbing .nav.nav-tabs {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        overflow-x: auto;
        position: relative;
        left: 50%;
        transform: translate(-50%);
        width: 100vw;
        padding: 0 30px;
        scrollbar-color: transparent transparent;
    }
    .our-product-tabbing .nav.nav-tabs::-webkit-scrollbar {
        width: 0;
    }
    .our-product-tabbing .nav.nav-tabs::-webkit-scrollbar-thumb {
        background: transparent;
    }
    .our-product-tabbing .nav.nav-tabs::-webkit-scrollbar-track {
        background: transparent;
    }
    .our-product-tabbing .nav.nav-tabs li.nav-item,
    .our-product-tabbing.outlets-tabbing .nav.nav-tabs li.nav-item {
        width: auto;
        margin-bottom: 0;
        white-space: nowrap;
        margin-right: 20px;
    }
    .our-product-tabbing .nav.nav-tabs li.nav-item:last-child {
        margin-right: 0;
    }
    .our-product-tabbing-content {
        margin-top: 40px;
    }
    .our-product-detail {
        position: relative;
        top: 0;
        margin: -80px auto 0 auto;
        max-width: 100%;
        text-align: center;
    }
    .our-product-slider .swiper-button-next, 
    .our-product-slider .swiper-button-prev {
        display: none;
    }
    .our-product-slider .swiper-pagination {
        bottom: 0 !important;
        text-align: center;
    }
    .our-product-slider {
        padding-bottom: 42px;
    }
    .row.swiper-wrapper {
        flex-wrap: unset;
        margin: 0;
        --bs-gutter-x: 0;
        --bs-gutter-y: 0;
    }
    .outlets-list {
        overflow: hidden;
        padding: 15px;
        margin: -15px;
    }
    .col-lg-4.swiper-slide {
        width: 100%;
    }
    .outlet-slider .swiper-pagination {
        position: relative;
        bottom: 0 !important;
    }
    .view-all-outlet {
        margin-top: 30px;
    }
    .left_bg, .right_bg {
        display: none;
    }
    .site-footer {
        padding-top: 80px;
    }
    .footer-contact-link {
        display: block;
        text-align: center;
    }
    .footer-contact-link-box {
        width: 100%;
        margin-bottom: 20px;
    }
    .footer-contact-link-box:last-child {
        margin-bottom: 0;
    }
    .footer-bottom-box {
        display: block;
        text-align: center;
    }
    .design-by {
        margin-top: 5px;
    }
    .main-banner.inner-banner {
        padding: 160px 0 60px 0;
    }
    .h1-title {
        font-size: 50px;
        line-height: 60px;
    }
    .art-food-img {
        width: 500px;
        max-width: 100%;
        display: block;
        margin: auto;
    }
    .art-food-content {
        padding-top: 40px;
    }
    .timeline-box {
        width: 100%;
        margin: 15px 0 50px;
    }
    .timeline-text {
        width: 100%;
        text-align: center;
        margin: auto;
        padding: 40px 30px 80px 30px;
    }
    .timeline-box:nth-child(even) .timeline-text {
        margin: auto;
    }
    .timeline-text:before {
        display: none;
    }
    .timeline-dot,
    .timeline-box:nth-child(even) .timeline-dot {
        top: -15px;
        right: auto;
        left: 50%;
        transform: translate(-50%, 0);
    }
    .timeline-text .sec-btn {
        float: none;
        opacity: 1;
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translate(-50%);
    }
    .main-vision-mission .row .col-lg-4:last-child .vision-mission-box {
        margin-bottom: 0;
    }
    .vision-mission-box {
        width: 450px;
        max-width: 100%;
        height: auto;
        padding: 30px;
        display: block;
        margin: 0 auto 30px auto;
    }
    .outlet-banner-bg {
        background-position: top center;
    }
    .outlets-tab-content .outlets-list {
        overflow: visible;
        padding: 0;
        margin: 0 0 -30px 0;
    }
    .contact-detail-box, .contact-form {
        height: auto;
    }
    .contact-form {
        margin-top: 30px;
    }
    .our-product-tabbing.product-list-tabbing {
        padding: 0;
        position: relative;
        top: 0;
        box-shadow: none;
    }
    .our-product-tabbing-content.product-list-tabbing-content {
        padding: 0;
        box-shadow: none;
    }
    .banner-product-bg {
        display: none;
    }
    .products-list-box {
        margin-bottom: 30px;
    }
    .main-product-detail {
        padding-top: 40px;
    }
    .product-description-box {
        margin-top: 40px;
    }
    .nav-tabs .nav-link {
        padding: 10px 20px;
    }
}

@media screen and (max-width: 767px) {
    .common-sec {
        padding: 60px 0;
    }
    .h2-title {
        font-size: 38px;
        line-height: 45px;
        margin-bottom: 5px;
    }
    .sub-title {
        font-size: 16px;
        line-height: 26px;
    }
    .title {
        margin-bottom: 30px;
    }
    .our-history-content-text {
        margin-bottom: 30px;
    }
    .nav-tabs .nav-link {
        font-size: 16px;
        line-height: 26px;
        padding: 8px 20px;
    }
    .our-product-detail {
        margin-top: -60px;
    }
    .h3-title {
        font-size: 22px;
        line-height: 32px;
    }
    .site-footer {
        padding-top: 60px;
    }
    .main-banner.inner-banner {
        padding: 140px 0 40px 0;
    }
    .h1-title {
        font-size: 45px;
        line-height: 55px;
        margin-bottom: 10px;
    }
    .main-banner.inner-banner .banner-content .title {
        margin-bottom: 10px;
    }
    .contact-detail-box, .contact-form {
        padding: 30px;
    }
    .main-google-map {
        height: 320px;
    }
}

@media screen and (max-width: 575px) {
    .container {
        padding: 0 30px;
    }
    .our-product-tabbing .nav.nav-tabs {
        justify-content: flex-start;
    }
    .our-product-tabbing-content {
        margin-top: 20px;
    }
    .our-product-tabbing .nav.nav-tabs li.nav-item,
    .our-product-tabbing.outlets-tabbing .nav.nav-tabs li.nav-item {
        margin-right: 15px;
    }
    .our-product-detail {
        margin-top: -40px;
    }
    .outlet-img {
        height: 340px;
    }
    .footer-menu ul li {
        display: block;
        margin-left: 0;
        padding-left: 0;
        border-left: 0;
        margin-bottom: 20px;
    }
    .footer-menu ul li:last-child {
        margin-bottom: 0;
    }
    .scrolltop {
        bottom: 80px;
        right: 15px;
    }
    .main-google-map {
        height: 250px;
    }
    .product-thumbnail-img img {
        height: 80px;
    }
}

@media screen and (max-width: 375px) {
    #loader .loader-item img {
        width: 120px;
    }
    .container {
        padding: 0 15px;
    }
    .header-mobile-call {
        left: 15px;
    }
    .toggle-button {
        right: 15px;
    }
    .mobile-menu-box {
        width: 280px;
    }
    .h2-title {
        font-size: 35px;
    }
    .outlet-img {
        height: 320px;
    }
    .outlet-logo {
        height: 50px;
        margin-top: -50px;
    }
    .outlet-box:hover .outlet-logo {
        margin-top: 0;
    }
    .outlet-logo img {
        height: 50px;
    }
    .copy-right p, .design-by p {
        font-size: 13px;
    }
    .timeline-text {
        padding: 40px 15px 80px 15px;
    }
    .vision-mission-box {
        padding: 30px 15px;
    }
    .vision-mission-img {
        height: 150px;
    }
    .start-journey {
        width: 200px;
        padding: 10px;
    }
    .our-product-tabbing .nav.nav-tabs, 
    .our-product-tabbing.outlets-tabbing .nav.nav-tabs {
        padding: 0 15px;
    }
    .contact-detail-box, 
    .contact-form,
    .product-description-content {
        padding: 30px 15px;
    }
    .contact-link-box p {
        padding-left: 50px;
    }
    .main-google-map {
        height: 200px;
    }
    .product-thumbnail-img img {
        height: 60px;
    }
    .product-description-box .h3-title {
        font-size: 18px;
        width: 130px;
        height: 40px;
    }
}
/*==========Responsive CSS End==========*/
