@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&family=Roboto:ital,wght@0,100;0,300;0,700;0,900;1,400&display=swap');
*,
*::after,
*::before {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}


/* custom styel */

:active,
:hover,
:focus {
    outline: 0 !important;
    outline-offset: 0;
}

a,
a:hover {
    text-decoration: none;
}


/* variable define */

:root {
    /* --primary-color: #A82C48;
    --seconday-color: #43121D; */
    --primary-color: #da5337ff;
    /* --secondary-color: #00A149; */
    --secondary-color: #537ec0;
    --third-color:#006d77ff;
    --lavendar-color: #f7edf0ff;
    --white-color: #FFF;
    --text-color:#f7edf0ff;
    /* --black-color: #1E1D23; */
    --black-color: #444;
    /* --hover-color: #9f5ba4; */
    --hover-color: #a0883bff;;
    --grey-color: #999;
    --primary-font: 'Roboto', sans-serif;
    --secondary-font: 'Dancing Script', cursive;
    --bg-black: #2C2C2C;
    --bg-light-pink: #ff007a;
    --bg-light-gray: #f6f9fe;
    --bg-gradient: linear-gradient(to top, #ff007a 0%, rgba(142, 0, 116, 1) 100%);
    --bg-card-shodow: 0 0.188rem 1.25rem 0px rgba(0, 0, 0, 0.06);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--primary-font);
    font-size: 100%;
    font-weight: 400;
}


/* custom scroolbar */

::-webkit-scrollbar {
    width: 0.625rem;
}

::-webkit-scrollbar-track {
    background: var(--white-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

ul,
ol {
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-shadow: 1px 0 6px #000;
    color: var(--secondary-color);
}

h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-shadow: 0 0 1px rgb(11, 202, 122);
    letter-spacing: 1px;
}

h2 span {
    font-size: 3.5rem;
    color: var(--primary-color);
    /* display: block; */
    font-weight: 900;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 1px;
    font-family: 'Dancing Script';
}

.text-content {
    width: 70%;
    margin: auto;
}

section,
.section {
    position: relative;
}

h2.headings{
    margin: 0;
    color: #537ec0;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    display: inline-block;
    margin-bottom: 53px;
    line-height: 25px;

}
h2.headings::before{
    content: '';
    border-top: 1px dashed #ec2028;
    width: 41%;
    position: absolute;
    bottom: -30px;
    left: 0;
}

h2.headings::after{
    content: '';
    border-top: 1px dashed #ec2028;
    width: 41%;
    position: absolute;
    bottom: -30px;
    right: 0;
}
.arrow{
    position: relative;
    display: block;
}
.arrow::after{
    content: url(../images/arrow.png);
    position: absolute;
    top: -42px;
    left: 0;
    right: 0;
    /* bottom: 0; */
    display: block;
}

p {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 400;
    line-height: 1.75rem;
    letter-spacing: 1px;
}

.wrapper {
    padding-top: 4.25rem;
    padding-bottom: 4.25rem;
}


/* page loader style */

#preloader {
    overflow: hidden;
    background-color: var(--hover-color);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: fixed;
    z-index: 99999;
    color: #fff;
}

#preloader .jumper {
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    position: absolute;
    margin: auto;
    width: 50px;
    height: 50px;
}

#preloader .jumper>div {
    background-color: #fff;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    position: absolute;
    opacity: 0;
    width: 50px;
    height: 50px;
    -webkit-animation: jumper 1s 0s linear infinite;
    animation: jumper 1s 0s linear infinite;
}

#preloader .jumper>div:nth-child(2) {
    -webkit-animation-delay: 0.33333s;
    animation-delay: 0.33333s;
}

#preloader .jumper>div:nth-child(3) {
    -webkit-animation-delay: 0.66666s;
    animation-delay: 0.66666s;
}

@keyframes jumper {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    5% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10000;
    background: var(--hover-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.loader-container img {
    width: 10rem;
}

.loader-container.fade-out {
    top: -110%;
    opacity: 0;
}

.main-btn {
    display: inline-block;
    padding: 0.625rem 1.875rem;
    line-height: 1.5625rem;
    background-color: var(--primary-color);
    border: 0.1875rem solid var(--primary-color);
    color: var(--black-color);
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: capitalize;
    border-radius: 0.5rem;
    box-shadow: 0px 2px 10px -1px rgb(0 0 0 / 19%);
    -webkit-transition: all .4s ease-out 0s;
    -o-transition: all .4s ease-out 0s;
    -moz-transition: all .4s ease-out 0s;
    transition: all .4s ease-out 0s;
}

.main-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}


/* 
---------------------------------------------
header
--------------------------------------------- 
*/

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 999;
    -webkit-transition: .3s;
    transition: .3s;
    background: transparent;
}

.navbar .main-btn {
    padding: 0.3125rem 1.4375rem;
    box-shadow: none;
    margin-left: 0.625rem;
}

.navbar .navbar-nav .nav-link {
    padding: 0.3125rem 1.4375rem;
    color: var(--white-color);
    font-size: 1.1rem;
    text-transform: capitalize;
    transition: .3s;
    position: relative;
}

.navbar .navbar-nav .nav-link::after {
    content: '';
    top: 40%;
    right: 0;
    width: 1px;
    height: 25%;
    background: #ddd;
    display: inline-block;
    position: absolute;
}

.navbar-brand img {
    max-width: 100%;
}


/* On Scroll Fixed Navbar  */

.navbar-sticky-on .navbar-nav .nav-link:hover,
.navbar-sticky-on .navbar-nav .nav-link.active,
.nav-link.active,
.nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-sticky-on .navbar-nav .nav-link {
    color: var(--text-light-gray);
}

.navbar .navbar-brand-sticky {
    display: none;
}

.navbar-sticky-on .navbar-brand-regular {
    display: none;
}

.navbar-sticky-on .navbar-brand-sticky {
    display: inline;
}

.navbar-sticky {
    -webkit-transition: none;
    transition: none;
}

.navbar-sticky-transitioned {
    -webkit-transition: .3s;
    transition: .3s;
}

.navbar-sticky-moved-up {
    position: fixed;
    top: 0;
    background: var(--white-color);
    margin-top: -6.25rem;
}

.navbar-sticky-on {
    margin-top: 0;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px;
}


/* Home styel */

#home {
    height: 100%;
    /* background: rgb(155, 150, 150);
    background-size: cover; */
    display: flex;
    /* align-items: center; */
    justify-content: center;
    overflow: hidden;
}

#home .home_text h2 {
    font-size: 3.938rem;
    font-weight: 700;
    line-height: 4.938rem;
    color: var(--white-color);
    padding: 1.063rem 0;
}

#home .home_text p {
    font-size: 1rem;
    color: var(--white-color);
    padding: 1.063rem 0;
}

#home .home-download-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

#home .home-download-btn .btn {
    padding: 1.5rem 3rem;
    margin-left: 1.5rem;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

#home .home-download-btn .btn:first-child {
    margin-left: 0;
}

#home .home-download-btn .btn:hover {
    transform: translateY(-0.313rem);
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -ms-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

#home .home-download-btn span {
    font-size: 1.688rem;
    margin-right: 0.625rem;
}

.home-image {
    text-align: right;
    transform: rotate(-345deg);
}

.home-image img {
    animation: float 3s linear infinite;
}


/* banner style */


/* owl nav */


/* banner css */

.img-wrap {
    width: 100%;
    display: block;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.banner .item .img-wrap {
    height: 100%;
    max-height: 600px;
    background: #000;
}

.banner .img-wrap img {
    min-height: 100%;
    min-width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
    max-width: none;
    object-fit: cover;
    position: relative;
}

.banner .img-wrap::after {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .1);
    position: absolute;
}

.captions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.captions h2 {
    color: var(--white-color);
    font-size: 3rem;
    font-family: 'Dancing Script';
}

.owl-prev span,
.owl-next span {
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--hover-color);
    border: 0 none;
    line-height: 44px;
    border-radius: 50%;
    text-align: center;
    font-size: 36px;
    z-index: 5;
    outline: none;
    opacity: 0.3;
    transition: all .3s;
}

.owl-prev span,
.owl-next span:hover {
    opacity: 1;
}

.owl-prev span,
.owl-next span {
    color: #FFF;
}

.owl-prev span:hover,
.owl-next span:hover {
    color: #8199A3;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 0;
    height: 100%;
}

.owl-prev {
    left: 1px;
}

.owl-next {
    right: 1px;
}


/* removing blue outline from buttons */

button:focus,
button:active {
    outline: none;
}

.owl-item.active h2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0.3s;
}

.owl-item.active h3 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.4s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0rem);
    }
    50% {
        transform: translateY(-3.5rem);
    }
}

#scrollUp {
    position: fixed;
    right: 2%;
    bottom: 3%;
    height: 2.813rem;
    width: 2.5rem;
    border-radius: 0.25rem;
    text-align: center;
    cursor: pointer;
    z-index: 500;
    display: none;
    -webkit-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    background: var(--hover-color);
}

#scrollUp span {
    line-height: 2.625rem;
    color: var(--white-color);
}

#scrollUp.scrollActive {
    display: block;
}


/* our menu */

.our-menu .card {
    border: none;
    padding: .3rem .6rem;
    box-shadow: 0 2px 6px rgb(100 67 67 / 10%);
    --webkit-transition: all 0.3s ease;
    --moz-transition: all 0.3s ease;
    border: 1px;
    transition: all 0.3s ease;
}


/* .our-menu .cat-image {
    padding: .2rem .5rem;
    overflow: hidden;
    object-fit: cover;
    max-width: 100%;
} */

.our-menu .cat-image-link {
    position: relative;
    display: block;
    z-index: 1;
}

.our-menu .cat-image-link::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dotted var(--secondry-color);
    z-index: -1;
    transform: translateX(-50%) translateY(-50%) scale(0);
    background: var(--primary-color);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.our-menu .card:hover .cat-image-link::before {
    transform: translateX(-50%) translateY(-50%) scale(1);
}

.our-menu .cat-title a {
    margin-top: .5rem;
    text-align: center;
    font-size: 0.8125rem;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--black-color);
    --webkit-transition: all 0.3s ease;
    --moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.card:hover .cat-title a {
    color: var(--primary-color);
}

.card:hover {
    box-shadow: 0 4px 10px rgb(100 67 67 / 10%);
}


/* about section style */

.about-section {
   position: relative;
   background: #006d77ff;
}

.about-section .card,
.about-section .card img {
    border-radius: 0.625rem;
}

.about-section .text-sec {
    padding-left: 2rem;
}


/*
==========================================
 food type section Design
==========================================
*/

.about-type {
    padding-top: 3.25rem;
}

.about-type ul li {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 32px;
    position: relative;
    margin-left: 30px;
}

.about-type ul li::before {
    position: absolute;
    left: -2.1875rem;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-family: "Font Awesome 5 Free";
    content: '\f00c';
    display: inline-block;
    padding-right: 3px;
    vertical-align: middle;
    font-weight: 900;
}



/*=== product CSS ==*/

.products {
    padding-top: 6rem;
}

.section-head span {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

.section-head {
    margin-bottom: 4rem;
}

.section-head h4 {
    position: relative;
    padding: 0;
    color: var(--secondary-color);
    line-height: 1;
    letter-spacing: 0.019;
    font-size: 2.125rem;
    font-weight: 700;
    text-align: center;
    text-transform: none;
    margin-bottom: 1.875rem;
}

.section-head h4::before {
    content: '';
    width: 3.75rem;
    height: 0.188rem;
    background: var(--secondary-color);
    position: absolute;
    bottom: -0.625rem;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.section-head h4 span {
    font-weight: 700;
    padding-bottom: 0.313rem;
    color: var(--black-light-color);
}

.section-head p {
    color: var(--black-light-color);
    font-size: 1rem;
    line-height: 1.75rem;
    text-align: center;
}

.product-item {
    background: var(--white-color);
    text-align: center;
    padding: 0.875rem 0.563rem;
    box-shadow: 0 0 1.563rem rgba(0, 0, 0, 0.07);
    border-radius: 1.25rem;
    -webkit-border-radius: 1.25rem;
    -moz-border-radius: 1.25rem;
    -ms-border-radius: 1.25rem;
    -o-border-radius: 1.25rem;
    margin-bottom: 1.875rem;
    border: 2px solid rgba(0, 0, 0, 0.07);
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.product-item:hover {
    background-color: var(--hover-color);
    box-shadow: 0 0.5rem 1.25rem 0 rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
}

.product-box figure {
    position: relative;
    width: 11.25rem;
    height: 11.25rem;
    margin: 0 auto;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}

.product-box:hover figure {
    box-shadow: -0.172rem 1.671rem 2.688rem 0rem rgba(42, 57, 63, 0.10);
}

.product-box figure figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    padding: 0 15px;
    z-index: 2;
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
}

.product-box:hover figure figcaption {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    opacity: 1;
}

.product-box figure::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2c3145;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.product-box:hover figure:after {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    opacity: .7;
    visibility: visible;
}

.product-box figure figcaption .boxed-btn {
    padding: 0.700rem 1.50rem;
    color: var(--white-color);
    background-color: var(--primary-color);
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
}

.product-box figure img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-box figure figcaption .boxed-btn:hover {
    background-color: var(--white-color);
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    color: var(--secondary-color);
}

.product-item:hover h5,
.product-item:hover p,
.product-item:hover h6 {
    color: var(--white-color);
    transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -ms-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
}

.product-item p {
    font-size: 0.80rem;
}

.product-item h5 {
    padding: .5rem 0;
    color: var(--black-light-color);
    line-height: 1.625rem;
}

.product-item .product-price {
    font-size: 1.20rem;
    font-weight: 700;
    color: var(--text-color);
}


/* contac us style */


/* Contact CSS */

#contact {
    background: var(--lavendar-color);
}

.contact {
    padding: 4rem 0;
    /* background: var(--secondary-color); */
}

.box {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

.box>.icon {
    text-align: center;
    position: relative;
    transition: all 0.4s ease 0;
}

.box>.icon>.image {
    position: relative;
    z-index: 2;
    margin: auto;
    width: 5rem;
    height: 5rem;
    border: 4px solid white;
    line-height: 4rem;
    border-radius: 50%;
    background: var(--secondary-color);
    vertical-align: middle;
    transition: all 0.4s ease 0s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box>.icon:hover>.image {
    background: var(--secondary-color);
}

.box>.icon>.image>i {
    font-size: 2.5rem;
    color: var(--white-color);
}

.box>.icon>.info {
    margin-top: -1rem;
    border: 1px solid #e0e0e0;
    padding: 15px 0 10px 0;
}

.box>.icon>.info>h3.title {
    font-family: var(--primary-font);
    size: 1.3rem;
    color: var(--black-color);
    font-weight: 700;
}

.box>.icon>.info>p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}


/* footer style */

.footer {
    background: var(--black-color);
}

.footer .footer-social a i {
    font-size: 1.5rem;
    color: var(--white-color);
    padding: 0 1rem;
}

.footer .footer-social a:hover i {
    color: var(--primary-color);
}

.footer h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    padding: .5rem 0;
    position: relative;
}

.footer .short-description {
    display: flex;
    margin: .5rem 0;
    flex-direction: column;
}

.footer .short-description img {
    width: 30%;
    max-width: 30%;
}

.footer .short-description p {
    font-size: 0.8em;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    width: 20%;
    height: 1px;
    background: #555;
    bottom: -5px;
    margin-bottom: .5rem;
}

.footer .contact-wrap {
    display: flex;
    gap: 1rem;
    color: var(--white-color);
}

.footer .contact-wrap .contact-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 2rem;
}

.contact-content h6 {
    margin-bottom: 0;
    color: var(--text-color);
}

.contact-content i {
    margin-right: 5px;
}

.contact-content p {
    padding-top: .3rem;
    letter-spacing: normal;
    line-height: 1.3;
    font-size: 0.9rem;
    color: var(--white-color);
}