/**
* Template Name: Yummy - v1.3.0
* Template URL: https://bootstrapmade.com/yummy-bootstrap-restaurant-website-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');

:root {
    --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    --font-primary: "Amatic SC", sans-serif;
    --font-secondary: "Inter", sans-serif;
}

/* Colors */
:root {
    --color-default: #212529;
    --color-primary: #fcf876;
    --color-secondary: #3797a4;
}

/* Smooth scroll behavior */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: var(--font-default);
    color: var(--color-default);
}

form .logout,
a {
    text-decoration: none;
    font-family: var(--font-default);
}

form .logout:hover,
a:hover {
    color: #ec2727;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
}

.service,
.menu {
    background-color: #fff;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
    overflow: hidden;
    padding: 80px 0;
}

.section-bg {
    background-color: #FAFAFA;
}

.section-header {
    text-align: center;
    padding-bottom: 30px;
}

.section-header h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    color: #3a3f47;
    text-transform: uppercase;
    font-family: 'Montserrat';
}

.section-header p {
    margin: 0;
    font-size: 35px;
    font-weight: 400;
    font-family: 'Montserrat';
}

.section-header p span {
    color: var(--color-primary);
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: var(--color-primary);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.scroll-top:hover {
    background: #ec2727;
    color: #fff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {

    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
    /* transition: all 0.6s ease-out; */
    width: 100%;
    height: 100vh;

    --speed-of-animation: 0.9s;
    --gap: 6px;
    --first-color: #4c86f9;
    --second-color: #49a84c;
    --third-color: #f6bb02;
    --fourth-color: #f6bb02;
    --fifth-color: #2196f3;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
   }

   #preloader span {
    width: 4px;
    height: 50px;
    background: var(--first-color);
    animation: scale var(--speed-of-animation) ease-in-out infinite;
   }

   #preloader span:nth-child(2) {
    background: var(--second-color);
    animation-delay: -0.8s;
   }

   #preloader span:nth-child(3) {
    background: var(--third-color);
    animation-delay: -0.7s;
   }

   #preloader span:nth-child(4) {
    background: var(--fourth-color);
    animation-delay: -0.6s;
   }

   #preloader span:nth-child(5) {
    background: var(--fifth-color);
    animation-delay: -0.5s;
   }

   @keyframes scale {
    0%, 40%, 100% {
     transform: scaleY(0.05);
    }

    20% {
     transform: scaleY(1);
    }
   }

@-webkit-keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1;
    }

    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0;
    }
}

@keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1;
    }

    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    background: white;
    /* background: transparent; */
    transition: all 0.5s;
    z-index: 997;
    height: 70px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    /* opacity: 0.5; */
}

/* #header {
    background-color: transparent;
} */

@media (max-width: 575px) {
    .header {
        height: 70px;
    }
}

.header .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.header .logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: #064AB8;
    margin: 0;
    font-family: 'Montserrat';
}

.header .logo h1 span {
    color: #F60025;
}

section {
    scroll-margin-top: 90px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
    .navbar {
        padding: 0;
    }

    .navbar ul,
    .navbar ul li .search {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar > ul > li {
        white-space: nowrap;
        padding: 10px 0 10px 28px;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3px;
        /* font-family: var(--font-secondary); */
        font-family: 'Montserrat';
        font-size: 16px;
        font-weight: 600;
        color: black;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }

    .navbar > ul > li > a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: #064AB8;
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navbar > ul > .dropdown > ul > li > a:hover{
        margin: 0 5px;
        border-radius: 5px;
        background-color: #65AAFC;
        /* padding: 15px; */
        color: white;
        transition: all 0.3s ease-in-out 0s;
    }

    .navbar a:hover:before,
    .navbar li:hover > a:before,
    .navbar .active:before {
        visibility: visible;
        width: 100%;
    }

    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover > a {
        color: black;
    }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 28px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: white;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px;
    }

    .navbar .dropdown ul li {
        min-width: 200px;
    }

    .navbar .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        font-weight: 600;
    }

    .navbar .dropdown ul a i {
        font-size: 12px;
    }

    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover > a {
        color: black;
    }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

@media (min-width: 1280px) {
    .mobile-nav-show,
    .mobile-nav-hide {
        display: none;
    }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        border-left: 1px solid #666;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

    .navbar ul {
        position: absolute;
        inset: 0;
        padding: 50px 0 10px 0;
        margin: 0;
        background: rgba(255, 255, 255, 0.9);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }
    .navbar ul li .search,
    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        font-family: var(--font-secondary);
        border-bottom: 2px solid rgba(255, 255, 255, 0.8);
        font-size: 16px;
        font-weight: 600;
        color: #7f7f90;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }

    .navbar a:hover,
    .navbar li:hover > a {
        color: #000;
    }

    .navbar .active,
    .navbar .active:focus {
        color: #000;
        border-color: black;
    }

    .navbar .dropdown ul,
    .navbar .dropdown .dropdown ul {
        position: static;
        display: none;
        padding: 10px 0;
        margin: 10px 20px;
        transition: all 0.5s ease-in-out;
        border: 1px solid #eee;
    }

    .navbar .dropdown > .dropdown-active,
    .navbar .dropdown .dropdown > .dropdown-active {
        display: block;
    }

    .mobile-nav-show {
        color: black;
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        z-index: 9999;
        margin: 0 10px 0 20px;
    }

    .mobile-nav-hide {
        color: var(--color-secondary);
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 9999;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .navbar {
        right: 0;
    }

    .mobile-nav-active .navbar:before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(255, 255, 255, 0.8);
        z-index: 9996;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
    min-height: 500px;
    background-size: cover;
}

.about h3 {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 30px;
    font-family: var(--font-secondary);
}

.about .call-us {
    left: 10%;
    right: 10%;
    bottom: 10%;
    background-color: #fff;
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
    padding: 20px;
    text-align: center;
}

.about .call-us h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: var(--font-default);
}

.about .call-us p {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding: 0 0 8px 26px;
    position: relative;
}

.about .content ul i {
    position: absolute;
    font-size: 20px;
    left: 0;
    top: -3px;
    color: #064AB8;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(
        var(--color-primary) 50%,
        rgba(206, 18, 18, 0.4) 52%
    );
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.about .play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(206, 18, 18, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}

.about .play-btn:hover:after {
    border-left: 15px solid var(--color-primary);
    transform: scale(20);
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Service Section
--------------------------------------------------------------*/

.service .why-box {
    padding: 10px;
}

.service .why-box h3 {
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 30px;
}

.service .why-box p {
    margin-bottom: 30px;
}
.service .icon-box {
    text-align: center;
    border: 1px solid #eee;
    /* padding: 10px 10px; */
    width: 100%;
    height: 100%;
    border-radius: 5px;
    /* border: 1px solid rgba(55, 55, 63, 0.1); */
    transition: 0.3s;
}

.service .icon-box i {
    margin-bottom: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service .icon-box h4 {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 30px 0;
    font-family: 'Montserrat';
}

.service .icon-box p {
    font-size: 15px;
    color: #6c757d;
}

/* @media (min-width: 1200px) {
    .service .icon-box:hover {
        transform: scale(1.1);
        background-color: rgba(55, 55, 63, 0.1);
    }
} */

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .nav-tabs {
    border: 0;
}

.menu .nav-link {
    margin: 0 10px;
    padding: 10px 5px;
    transition: 0.3s;
    color: var(--color-secondary);
    border-radius: 0;
    cursor: pointer;
    height: 100%;
    border: 0;
    border-bottom: 2px solid #b6b6bf;
}

@media (max-width: 575px) {
    .menu .nav-link {
        margin: 0 10px;
        padding: 10px 0;
    }
}

.menu .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}

.menu .nav-link h4 {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    font-family: var(--font-secondary);
}

@media (max-width: 575px) {
    .menu .nav-link h4 {
        font-size: 16px;
    }
}

.menu .nav-link:hover {
    color: var(--color-primary);
}

.menu .nav-link.active {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.menu .tab-content .tab-pane .box-group{
    background-color: #FAFAFA;
    border-radius: 10px;
    /* box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.3); */
}

.menu .tab-content .tab-header {
    padding: 30px 0;
}

.menu .tab-content .tab-header p {
    font-size: 14px;
    text-transform: uppercase;
    color: #676775;
    margin-bottom: 0;
}

.menu .tab-content .tab-header h3 {
    font-size: 36px;
    font-weight: 600;
    color: var(--color-primary);
}
.menu-wrap{
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    min-height: min-content;
    overflow: hidden;
    transition: .8s ease;
}

.menu-wrap:hover {
    box-shadow: 0px 25px 30px rgba(0, 0, 0, 0.5);
    transform: translate(5px, -5px);
}

.menu-wrap img {
    transition: 0.3s;
    height: min-content;
    width: 100%;
    position: relative;
    z-index: 1;
}

.menu-wrap .menu-info {
    padding: 25px 20px;
    background-color: #fff;
    position: relative;
    border-top: 1px solid #f3f3f3;
    z-index: 2;
}

.menu-wrap .menu-info h5 {
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    /* padding-right: 50px; */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.menu-wrap .menu-info h5 a {
    color: #2b2e4a;
    height: max-content;
    transition: 0.3s;
}

.menu-wrap .menu-info h4 a:hover {
    color: var(--color-primary);
}

.menu-wrap .menu-info p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 0;
    /* padding-right: 50px; */
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
    margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item .testimonial-content {
    border-left: 3px solid #064AB8;
    padding-left: 30px;
}

.testimonials .testimonial-item .testimonial-img {
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: var(--color-default);
    font-family: var(--font-secondary);
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #6c757d;
    margin: 0 0 10px 0;
    font-family: var(--font-secondary);
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #F60025;
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
}

.testimonials .swiper-pagination {
    margin-top: 40px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #d1d1d7;
    opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: lightblue;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/



.hero {
    /* width: 100%; */
    padding-top: 70px;
    padding-bottom: 0;
    position: relative;
    /* padding: 160px 0 60px 0; */
    /* background-position: center; */
}

.detail,
.contact {
    width: 100%;
    background-size: cover;
    position: relative;
    min-height: 60vh;
    padding: 90px 0 60px 0;
}

.hero img {
    width: 100%;
    max-height: 650px;
}
/*
.hero h2 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-primary);
    font-family: var(--font-primary);
}

.hero h2 span {
    color: var(--color-primary);
}

.hero p {
    color: #8ccbbe;
    font-weight: 400;
    margin-bottom: 30px;
}

.hero .order-now {
    overflow: hidden;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 12px 36px;
    border-radius: 50px;
    transition: 0.5s;
    color: var(--color-secondary);
    background-color: var(--color-primary);
}

.hero .order-now:hover {
    color: var(--color-primary);
    background-color: #8ccbbe;
} */

/* @media (max-width: 640px) {
    .hero h2 {
        font-size: 36px;
    }

    .hero .btn-get-started {
        font-size: 14px;
    }
} */

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/* .footer {
    font-size: 14px;
    background-color: #1f1f24;
    padding: 50px 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer .icon {
    margin-right: 15px;
    font-size: 24px;
    line-height: 0;
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 5px;
    color: #fff;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: rgba(255, 255, 255, 0.6);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: #fff;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: #fff;
    border-color: #fff;
}

.links-menu:hover {
    color: #fff;
    border-color: #fff;
}

.links-menu {
    color: rgba(255, 255, 255, 0.7);
}

.footer .copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .credits {
    padding-top: 4px;
    text-align: center;
    font-size: 13px;
}

.footer .credits a {
    color: #fff;
} */

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio {
    width: 100%;
    background-size: cover;
    position: relative;
    min-height: 60vh;
    padding: 100px 0 60px 0;
}

.portfolio .portfolio-flters {
    padding: 0 0 20px 0;
    margin: 0 auto;
    list-style: none;
    text-align: center;
}

.search {
    width: 100%;
    display: flex;
    justify-content: end;
    margin-bottom: 20px;
}

.search .group {
    display: flex;
    line-height: 28px;
    align-items: center;
    position: relative;
    max-width: 250px;
}

.input {
    width: 100%;
    height: 40px;
    line-height: 28px;
    padding: 0 1rem;
    padding-left: 2.5rem;
    border: 2px solid transparent;
    border-radius: 8px;
    outline: none;
    background-color: #f3f3f4;
    color: #0d0c22;
    transition: .3s ease;
}

.input::placeholder {
    color: #9e9ea7;
}

.input:focus, input:hover {
    outline: none;
    border-color: rgba(87, 76, 234, 0.4);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(110, 76, 234, 0.1);
}

.icon {
    position: absolute;
    left: 1rem;
    fill: #9e9ea7;
    width: 1rem;
    height: 1rem;
}

.portfolio .portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px;
    line-height: 1;
    transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
    color: var(--color-primary);
}

.portfolio .portfolio-flters li:first-child {
    margin-left: 0;
}

.portfolio .portfolio-flters li:last-child {
    margin-right: 0;
}

@media (max-width: 575px) {
    .portfolio .portfolio-flters li {
        font-size: 14px;
        margin: 0 5px;
    }
}
.row-product .portfolio-container .portfolio-wrap:hover,
.portfolio .portfolio-wrap{
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    min-height: min-content;
    overflow: hidden;
}

.portfolio .portfolio-wrap img {
    transition: 0.3s;
    height: min-content;
    width: 100%;
    position: relative;
    z-index: 1;
}
.row-product .portfolio-container .portfolio-wrap .portfolio-info,
.portfolio .portfolio-wrap .portfolio-info {
    padding: 25px 10px;
    background-color: #fff;
    position: relative;
    border-top: 1px solid #f3f3f3;
    z-index: 2;
}
.row-product .portfolio-container .portfolio-wrap .portfolio-info h5,
.portfolio .portfolio-wrap .portfolio-info h5 {
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    /* padding-right: 50px; */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.row-product .portfolio-wrap .portfolio-info h5 a,
.portfolio .portfolio-wrap .portfolio-info h5 a {
    color: #2b2e4a;
    height: max-content;
    transition: 0.3s;
}

/* .portfolio .portfolio-wrap .portfolio-info h5 a:hover {
    color: var(--color-primary);
} */
.row-product .portfolio-container .portfolio-wrap .portfolio-info p,
.portfolio .portfolio-wrap .portfolio-info p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 0;
    /* padding-right: 50px; */
}

@media (min-width: 1280px) {
    /* .portfolio-flters {
        padding: 0;
    } */

    /* .portfolio-flters ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    } */

    /* .portfolio-flters li {
        position: relative;
    } */

    /* .portfolio-flters > ul > li {
        white-space: nowrap;
        padding: 10px 0 10px 28px;
    } */

    /* .portfolio .portfolio-flters li:hover,
    .portfolio .portfolio-flters li.filter-active {
        color: var(--color-primary);
    } */

    .portfolio-flters a,
    .portfolio-flters a:focus {
        display: flex;
        /* align-items: center; */
        /* justify-content: space-between; */
        /* padding: 0 3px; */
        /* font-family: var(--font-secondary); */
        /* font-size: 16px; */
        /* font-weight: 600; */
        color: var(--color-default);
        /* white-space: nowrap; */
        transition: 0.3s;
        /* position: relative; */
    }

    /* .portfolio-flters a i,
    .portfolio-flters a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    } */

    /* .portfolio-flters > ul > li > a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--color-primary);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    } */

    /* .portfolio-flters a:hover:before,
    .portfolio-flters li:hover > a:before,
    .portfolio-flters .active:before {
        visibility: visible;
        width: 100%;
    } */

    /* .portfolio-flters a:hover,
    .portfolio-flters .active,
    .portfolio-flters .active:focus,
    .portfolio-flters li:hover > a {
        color: #000;
    } */

    .portfolio-flters .dropdown ul {
        /* display: block; */
        position: absolute;
        left: 28px;
        /* top: calc(100% + 30px); */
        /* margin: 0; */
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px;
    }

    /* .portfolio-flters .dropdown ul li {
        min-width: 200px;
    } */

    .portfolio-flters .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        font-weight: 600;
    }

    /* .portfolio-flters .dropdown ul a i {
        font-size: 12px;
    } */

    .portfolio-flters .dropdown ul a:hover,
    .portfolio-flters .dropdown ul .active:hover,
    .portfolio-flters .dropdown ul li:hover > a {
        color: var(--color-primary);
    }

    .portfolio-flters .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    /* .portfolio-flters .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    } */

    /* .portfolio-flters .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    } */
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .portfolio-flters .dropdown .dropdown ul {
        left: -90%;
    }

    .portfolio-flters .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

@media (min-width: 1280px) {
    .mobile-nav-show,
    .mobile-nav-hide {
        display: none;
    }
}

@media (min-width: 1280px) and (max-width: 1366px) {
    .dropdown .dropdown ul {
        left: -90%;
    }

    .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

@media (max-width: 1279px) {
    /* .portfolio-flters {
        padding: 0;
    } */

    /* .portfolio-flters ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    } */

    /* .portfolio-flters li {
        position: relative;
    } */

    /* .portfolio-flters > ul > li {
        white-space: nowrap;
        padding: 10px 0 10px 28px;
    } */

    /* .portfolio .portfolio-flters li:hover,
    .portfolio .portfolio-flters li.filter-active {
        color: var(--color-primary);
    } */

    .portfolio-flters a,
    .portfolio-flters a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 3px;
        font-family: var(--font-secondary);
        font-size: 16px;
        font-weight: 600;
        color: #7f7f90;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

    /* .portfolio-flters a i,
    .portfolio-flters a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    } */

    /* .portfolio-flters > ul > li > a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--color-primary);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    } */

    /* .portfolio-flters a:hover:before,
    .portfolio-flters li:hover > a:before,
    .portfolio-flters .active:before {
        visibility: visible;
        width: 100%;
    } */

    /* .portfolio-flters a:hover,
    .portfolio-flters .active,
    .portfolio-flters .active:focus,
    .portfolio-flters li:hover > a {
        color: #000;
    } */

    .portfolio-flters .dropdown ul {
        display: block;
        position: absolute;
        left: 28px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px;
    }

    /* .portfolio-flters .dropdown ul li {
        min-width: 200px;
    } */

    .portfolio-flters .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        font-weight: 600;
    }

    .portfolio-flters .dropdown ul a i {
        font-size: 12px;
    }

    /* .portfolio-flters .dropdown ul a:hover, */
    /* .portfolio-flters .dropdown ul .active:hover, */
    .portfolio-flters .dropdown ul li:hover > a {
        color: var(--color-primary);
    }

    .portfolio-flters .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    /* .portfolio-flters .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    } */

    /* .portfolio-flters .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    } */
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
  .contact .info-item {
    padding: 20px;
    height: 100%;

    width: 100%;
    background-color:#0F5596;
    margin-bottom: 20px;
    border-radius: 10px;
    color: #fff;
  }

  .contact .info-item .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 24px;
    line-height: 0;
    color: white;
    background: #0177E4;
    border-radius: 50%;
    margin-right: 30px;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.3);
  }

  .contact .info-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px 0;
  }

  .contact .info-item p {
    padding: 0;
    margin: 0;
    line-height: 24px;
    font-size: 14px;
  }


  @-webkit-keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    margin: 0;
    font-size: 14px;
    padding: 30px 0 0 0;
    font-size: 14px;
  background-color: #1f1f24;
  color: rgba(255, 255, 255, 0.7);
  }

  .footer .footer-info p {
    font-size: 14px;
    /* font-family: var(--font-primary); */
  }

  .footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 10px;
    transition: 0.3s;
  }

  .footer .social-links a:hover {
    color: #fff;
    border-color: #fff;
  }

  .footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
  }

  .footer .footer-links {
    margin-bottom: 30px;
  }

  .footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer .footer-links ul i {
    padding-right: 2px;
    color: rgba(0, 131, 116, 0.8);
    font-size: 12px;
    line-height: 0;
  }

  .footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }

  .footer .footer-links ul li:first-child {
    padding-top: 0;
  }

  .footer .footer-links ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
  }

  .footer .footer-links ul .link-footer:hover {
    color: #fff;
  }

  .footer .footer-contact p {
    line-height: 26px;
  }

  .footer .box-copyright {
    padding: 15px;
    text-align: center;
    background-color: #282828;
  }

  .footer .credits {
    padding-top: 4px;
    text-align: center;
    font-size: 13px;
  }

  .footer .credits a {
    color: #fff;
  }

    /* Detail Produk */
    .row-product {
        background-color: #fff;
        margin: 0;
        /* padding: 5px; */
        padding-top: 16px;
    }

    .row-product .itemtab {
        height: 400px;
    }

    .figure .itemtab img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .figure figcaption a img {
        cursor: pointer;
        /* width: 70px;
        height: 60px; */
    }

    .underline {
        /* border-bottom: 1px solid #777; */
        margin: 15px 0;
    }

    /* .items {
        box-shadow: 10px 0px 10px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        overflow: hidden;
    /* } */

    /* .items:hover {
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    } */

    /* end Detail Produk */

    /* Produk Kategoru\i */
    .portfolio .container .category {
        -moz-text-align-last: center;
        text-align-last: center;
        background-color: #eee;
        /* background-color: #8ccbbe; */
        /* box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1); */
        transition: 0.9s;
        border-radius: 10px;
        overflow: hidden;
    }

    .portfolio .container .category:hover {
        background-color: #8ccbbe;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3);
        /* background-color: var(--color-secondary); */
    }

    .portfolio .container .category .menu-img {
        padding: 0 60px;
        margin-bottom: 15px;
    }

    .portfolio .container .category h4 {
        font-size: 22px;
        font-weight: 500;
        color: #3a3f47;
        font-family: var(--font-secondary);
        font-weight: 30px;
        margin-bottom: 5px;
    }

    .portfolio .container .category .ingredients {
        font-family: var(--font-secondary);
        color: #8d8d9b;
        margin-bottom: 5px;
    }

    .portfolio .container .category .read-more {
        background-color: var(--color-primary);
    }

    .portfolio .container .category .read-more a{
        color: black;
    }

    .portfolio .container .category .read-more:hover,
    .portfolio .container .category .read-more a:hover {
        background-color: #3a3f47;
        color: var(--color-primary);
    }

    .portfolio .container .read-other{
        -moz-text-align-last: center;
        text-align-last: center;
        /* background-color: var(--color-secondary); */
        background-color: #e4e4e4   ;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
        transition: 0.9s;
        border-radius: 10px;
        overflow: hidden;
    }


/* detail product */

h3 {
    font-family: 'Montserrat';
}

.row-product figure figcaption .carousel-item .image-item-slide {
    margin: 2px;
}

        @media (max-width: 1280px) {

            .row-product .carousel-inner .carousel-item-end.active,
            .row-product .carousel-inner .carousel-item-next {
              transform: translateX(25%);
            }

            .row-product .carousel-inner .carousel-item-start.active,
            .row-product .carousel-inner .carousel-item-prev {
              transform: translateX(-25%);
            }
          }

          .row-product .carousel-inner .carousel-item.active,
          .row-product .carousel-inner .carousel-item-next,
          .row-product .carousel-inner .carousel-item-prev {
            display: flex;
          }



            .row-product .carousel-inner .carousel-item-end.active,
            .row-product .carousel-inner .carousel-item-next {
              transform: translateX(20%);
            }

            .row-product .carousel-inner .carousel-item-start.active,
            .row-product .carousel-inner .carousel-item-prev {
              transform: translateX(-20%);
            }


          .row-product .carousel-inner .carousel-item-end,
          .row-product .carousel-inner .carousel-item-start {
          transform: translateX(0);
          }

/* coba overlay image */

.img-overlay {
    position: fixed;
    top: 90px;
    max-height: 80%;
    left: 50%;
    transform: translate(-50%, 0) scale(0, 0);
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    transition: all .8s ease;
}

.overlay-dark {
    top: 0;
    left: 0;
    position: fixed;
    background-color: #000;
    opacity: .9;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: none;
}

@media (max-width: 1280px) {
    .img-overlay {
        position: fixed;
        top: 90px;
        max-height: 80%;
        max-width: 95%;
        left: 50%;
        transform: translate(-50%, 0) scale(0, 0);
        z-index: 10;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
        transition: all .8s ease;
    }
}


/* pagination product */

.portfolio .container .paginate-group {
    display: flex;
    /* color: black; */
    margin: 45px;
    justify-content: center;
    /* border: none; */
}
