@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');


* {
    font-family: "Mulish", sans-serif;
}




.cont h5.section-title.ff-secondary.fw-normal.text-start.text-primary {
    font-family: "Mulish", sans-serif !important;
    color: #000000 !important;
    font-weight: 900 !important;
}


h5.section-title.cont1.ff-secondary.text-center.text-primary.fw-normal {
    font-family: "Mulish", sans-serif !important;
}


/********** CSS **********/
:root {
    --primary: #FEA116;
    --light: #F1F8FF;
    --dark: #0F172B;
}



.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

h4.gst {
    font-size: 18px;
    color: #040404;
}


.sticky {
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
    background: #fff;
    animation: sticky 2s;
    box-shadow: 0px -1px 4px 0px;
}

nav.navbar.navbar-expand-lg.navbar-dark.bg-dark.px-4.px-lg-5.py-3.py-lg-0 {
    background: #fff !important;
}


input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

/*** Navbar ***/
/*.navbar-dark .navbar-nav .nav-link {*/
/*    position: relative;*/
/*    margin-left: 25px;*/
/*    padding: 35px 0;*/
/*    font-size: 15px;*/
/*    color: var(--light) !important;*/
/*    text-transform: uppercase;*/
/*    font-weight: 500;*/
/*    outline: none;*/
/*    transition: .5s;*/
/*}*/


.navbar-dark .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    font-size: 15px;
    color: #070708 !important;
    text-transform: uppercase;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-dark .navbar-brand img {
    max-height: 50px;
    transition: .5s;
    border-radius: 0px;
}

.sticky-top.navbar-dark .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
    }

    /*.navbar-dark .navbar-collapse {*/
    /*    margin-top: 15px;*/
    /*    border-top: 1px solid rgba(255, 255, 255, .1)*/
    /*}*/

    .navbar-dark .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgb(0 0 0 / 72%);
    }

    .navbar-dark .navbar-nav .nav-link,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
    }

    .navbar-dark .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
        background: transparent !important;
    }

    .sticky-top.navbar-dark {
        position: fixed;
        background: var(--dark) !important;
    }
}


/*** Hero Header ***/
/*.hero-header {*/
/*    background: linear-gradient(rgba(15, 23, 43, .9), rgba(15, 23, 43, .9)), url(../img/bg-hero.jpg);*/
/*    background-position: center center;*/
/*    background-repeat: no-repeat;*/
/*    background-size: cover;*/
/*}*/

.hero-header {
    background: linear-gradient(rgb(15 23 43 / 0%), rgb(15 23 43 / 0%)), url(../img/bg-hero.jpg);
    background-position: 100% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}


.col-lg-6.mt-auto.mb-3.text-center.text-lg-start {
    margin-top: 64px !important;
}


@keyframes imgRotate {
    100% {
        transform: rotate(360deg);
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;

}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Food Menu ***/
.nav-pills .nav-item .active {
    border-bottom: 2px solid var(--primary);
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    height: calc(100% - 38px);
    transition: .5s;
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item:hover {
    height: 100%;
}

.team-item .btn {
    border-radius: 38px 38px 0 0;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


.social-link {
    color: white;
    background-color: rgb(13, 13, 73);
    margin: 10px;
    padding: 10px;
    border-radius: 100px;
}

.social-link:hover {
    color: white;
    background-color: #FEA116;
    transition: 0.6s ease-in;
}


.atocart a {
    font-size: 1.8rem;
    color: #25d366 !important;
    padding: 5px 20px;
    border-radius: 20px;
    /* background-color: #FEA116; */
}

::selection {
    background-color: crimson;
    color: white;
}



#footer-location p,
a {
    color: #a77a37 !important;
    font-size: 1rem;
    font-weight: 600;
}


/* card section  */


.wrap {
    display: flex;
    --justify: space-between;
    align-items: stretch;
    width: 100%;
    gap: 24px;
    padding: 24px;
    flex-wrap: wrap;
}

.box {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    position: relative;
    padding: 12px;
    background: #fff;
}

.box-top {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 12px;
    margin-bottom: 36px;
}

.box-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: 50% 20%;
}

.title-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box-title {
    border-left: 3px solid var(--purple);
    padding-left: 12px;
}

.user-follow-info {
    color: hsl(0, 0%, 60%);
}

.button {
    display: block;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: auto;
    padding: 16px;
    color: #000;
    background: transparent;
    box-shadow: 0px 0px 0px 1px black inset;
    transition: background 0.4s ease;
}

.button:hover {
    background: var(--purple);
}

.fill-one {
    background: var(--light-bg);
}

.fill-two {
    background: var(--pink);
}

/* RESPONSIVE QUERIES */

@media (min-width: 320px) {
    .title-flex {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: start;
    }

    .user-follow-info {
        margin-top: 6px;
    }
}

@media (min-width: 460px) {
    .title-flex {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: start;
    }

    .user-follow-info {
        margin-top: 6px;
    }
}

@media (min-width: 640px) {
    .box {
        flex-basis: calc(50% - 12px);
    }

    .title-flex {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: start;
    }

    .user-follow-info {
        margin-top: 6px;
    }
}

@media (min-width: 840px) {
    .title-flex {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: start;
    }

    .user-follow-info {
        margin-top: 6px;
    }
}

@media (min-width: 1024px) {
    .box {
        flex-basis: calc(33.3% - 16px);
    }

    .title-flex {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: start;
    }

    .user-follow-info {
        margin-top: 6px;
    }
}

@media (min-width: 1100px) {
    .box {
        flex-basis: calc(25% - 18px);
    }
}

/* whatsapp chatbox */

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 115px;
    right: 39px;
    background-color: #25d366;
    color: white !important;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}



.my-float {
    margin-top: 16px;
}

/* call button  */

.call-buton .cc-calto-action-ripple {
    z-index: 99999;
    position: fixed;
    right: 2.2rem;
    bottom: 11.4rem;
    background: #ff0000;
    width: 4rem;
    height: 4rem;
    padding: 1rem;
    border-radius: 100%;
    box-sizing: border-box;
    color: #ffffff;
    -webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
    animation: cc-calto-action-ripple 0.6s linear infinite;
    display: flex;
    justify-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
}

.call-buton .cc-calto-action-ripple i {
    -webkit-transition: 0.3s ease;
    color: white;
    transition: 0.3s ease;
    font-size: 2.2rem;
}

.call-buton .cc-calto-action-ripple:hover i {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}


/* etc media query  */

@media (max-width: 768px) {
    .float {
        display: none;
    }

    .call-buton {
        display: none;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        position: fixed;
        display: none;
        right: 15px;
        bottom: 50px;
        z-index: 99;
    }
}


/* footer button  */

.footer-oll-now {
    display: none !important;
}

.footer-oll-now .col-md-6 {
    padding: 0px !important;
}

/* for whatapp */

@media only screen and (min-width:320px) and (max-width:680px) {
    .float {
        display: none;
    }
}


/* for call and whatapp button in mobile  */


@media only screen and (min-width:320px) and (max-width:680px) {
    .footer-oll-now {
        display: block !important;
        bottom: 0px;
        float: left;
        width: 100%;
        position: fixed;
        z-index: 999999999;
    }

    .float {
        display: block;
    }

    .col-now-footer {
        background: #d40f1f;
        color: #fff;
        float: left;
        width: 50%;
        font-weight: bold;
        text-transform: uppercase;
        text-align: center;
        padding: 11px 0px;
    }

    .col-now-footer:hover {
        color: #fff;
        text-decoration: blink;
    }

    .col-now-whats {
        background: #2db841;
        color: #fff;
        float: left;
        width: 50%;
        font-weight: bold;
        text-transform: uppercase;
        text-align: center;
        padding: 11px 0px;
    }

    .col-now-whats:hover {
        color: #fff;
        text-decoration: blink;
    }

    /*call button */

    .main-call {
        position: fixed;
        right: 50px;
        top: 447px;
        cursor: pointer;
        z-index: 999999999999;

    }

    .box-call {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: green;

        text-align: center;
        padding-top: 10px;

    }

    .box-call::before {
        content: "";
        position: absolute;
        top: -37%;
        right: -20px;

        width: 100px;
        height: 100px;
        border: 2px solid green;
        border-radius: 50%;
        animation: ph 1s linear infinite;
    }

    .box-call::after {
        content: "";
        position: absolute;
        top: -37%;
        right: -20px;

        width: 100px;
        height: 100px;
        border: 2px solid green;
        border-radius: 50%;
        /* animation: ph 1s linear infinite; */
        animation: ph 1s linear infinite;
        animation-delay: 0.4s;
    }




    .what-call {
        position: fixed;
        right: 50px;
        top: 300px;
        cursor: pointer;
        z-index: 999999999999;

    }

    .box-what-call {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: rgb(29, 214, 29);

        text-align: center;
        padding-top: 10px;

    }

    .box-what-call::before {
        content: "";
        position: absolute;
        top: -37%;
        right: -20px;

        width: 100px;
        height: 100px;
        border: 2px solid rgb(53, 236, 53);
        border-radius: 50%;
        animation: ph 1s linear infinite;
    }

    .box-what-call::after {
        content: "";
        position: absolute;
        top: -37%;
        right: -20px;

        width: 100px;
        height: 100px;
        border: 2px solid rgb(38, 230, 38);
        border-radius: 50%;
        /* animation: ph 1s linear infinite; */
        animation: ph 1s linear infinite;
        animation-delay: 0.4s;
    }


    @keyframes ph {
        0% {
            transform: scale(0.5);
            opacity: 0;
        }

        50% {
            transform: scale(1);
            opacity: 1;
        }

        100% {
            transform: scale(1.5);
            opacity: 0;
        }
    }
}



@media (max-width: 767.98px) {
    h4.gst {
        color: #000000;
        font-size: 18px;
    }

    .navbar-dark .navbar-toggler {
        color: rgb(0 0 0) !important;
        border-color: rgba(255, 255, 255, 0.1) !important;
    }

    .col-lg-6.mt-auto.mb-3.text-center.text-lg-start {
        margin-top: -33px !important;
    }

    .hero-header {
        background: linear-gradient(rgb(15 23 43 / 0%), rgb(15 23 43 / 0%)), url(../img/bg-hero3.jpg);
        background-position: 100% 0% !important;
        background-repeat: no-repeat;
        background-size: cover;

    }



    span.atocart {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    img.img-fluid.rounded.w-100.wow.zoomIn {
        height: 100% !important;
    }


    .col-lg-6.mt-auto.mb-auto {
        margin-top: 20px !important;
    }

    .offset-3 {
        margin-left: 0 !important;
    }

    p.P_footer {
        font-size: 15px !important;
    }


    .float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 100px !important;
        right: 11px !important;
        background-color: #25d366;
        color: white !important;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 3px #999;
        z-index: 100;
    }


    h1.display-3.text-white.animated.slideInLeft.enjoy {
        font-size: 30px !important;
    }

}






@media (max-width: 393px) {


    .hero-header {
        background: linear-gradient(rgb(15 23 43 / 0%), rgb(255 255 255 / 0%)), url(../img/home10.jpg);
        background-position: 100% 20%;
        background-repeat: no-repeat;
        background-size: cover;
    }


}







h1.display-3.text-white.animated.slideInLeft.enjoy {
    font-size: 45px;
}



section.sindhi {
    background: url(../img/sindhi_papad10.jpg);
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-size: cover;
}



section.sindhi.special_mung {
    background: url(../img/special_mong.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


section.sindhi.pudhina_papad {
    background: url(../img/pudhina_papad1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


section.sindhi.chana_masala {
    background: url(../img/chana_masala.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.tiranga section.sindhi {
    background: url(../img/tiranga.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


section.sindhi.chana_methi {
    background: url(../img/methi_papad.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



section.sindhi.mung_punjabi {
    background: url(../img/mung_punjabi.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


section.sindhi.udad_papad {
    background: url(../img/udad_papad.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.mung_punjabi .main_title h2 {
    font-size: 36px !important;
    font-weight: 700;
    color: #fff;
}


.chana_methi .main_title h2 {
    font-size: 36px !important;
    font-weight: 700;
    color: #fff;
}

.special_mung .main_title h2 {
    font-size: 37px !important;
    font-weight: 700;
    color: #fff;
}


.home_content {
    /* margin: auto; */
    width: 50%;
    margin-top: 137px;
}


.sindhi .main_title h2 {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
}


.sindhi .bt button {
    padding: 10px 35px;
    border: none;
    background: #d8a61f;
}


.sindhi .bt button a {
    font-weight: 600;
    color: #fff !important;
}


.sindhi .cnt p {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

h3.about_papad {
    font-size: 23px;
    font-weight: 600;
    color: #cb0334;
}

.how .how_content {
    box-shadow: 0px 0px 6px 0px #00000070;
    margin-top: 20px;
    padding: 20px;
    border-radius: 40px 0px 40px 0px;
}


.how .how_content .cnt p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px;
}


.how .how_content .title h4 {
    font-size: 22px;
    font-weight: 600;
}



@media (max-width: 767.98px) {
    .home_content {
        width: 100%;
        margin-top: 0px;
    }


    .sindhi .main_title h2 {
        font-size: 22px;
    }

    h3.about_papad {
        font-size: 21px;
    }

    .papad10 h5.section-title.ff-secondary.text-center.text-primary.fw-normal {
        font-size: 15px;
    }

    section.how.py-5 {
        padding: 20px;
    }

    .how .title p {
        font-size: 14px;
    }

    h5.section-title.ff-secondary.mung.text-center.text-primary.fw-normal {
        font-size: 15px;
    }

    h5.section-title.ff-secondary.text-center.mung1.text-primary.fw-normal {
        font-size: 12px;
    }

    .pudhina h5.section-title.ff-secondary.text-center.text-primary.fw-normal {
        font-size: 14px;
    }

    .tiranga h5.section-title.ff-secondary.text-center.text-primary.fw-normal {
        font-size: 14px;
    }


}



@media (max-width: 767.98px) {

    .special_mung .main_title h2 {
        font-size: 23px !important;
    }


    .home_content {
        width: 100%;
        margin-top: -129px;
    }


    section.sindhi {
        background: url(../img/mobile_view1.jpg);
        height: 560px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-position: center;
        background-size: cover;
    }


    section.sindhi.mung_punjabi {
        background: url(../img/mobile_view2.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }


    .mung_punjabi .main_title h2 {
        font-size: 22px !important;
    }


    section.sindhi.special_mung {
        background: url(../img/mobile_view3.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }


    section.sindhi.pudhina_papad {
        background: url(../img/mobile_view4.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }


    .tiranga section.sindhi {
        background: url(../img/mobile_view5.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }


    section.sindhi.chana_methi {
        background: url(../img/mobile_view6.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }


    .chana_methi .main_title h2 {
        font-size: 22px !important;
    }


    section.sindhi.chana_masala {
        background: url(../img/mobile_view7.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }


    section.sindhi.udad_papad {
        background: url(../img/mobile_view8.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

}