body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #1F1A17;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navbar */

.fixed-header {
    /* background: #fff; */
    -webkit-backdrop-filter: blur(10px);
    transition: all .3s ease 0s;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 90%);
    box-shadow: 10px 10px 23px rgb(0 0 0 / 10%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 111;
}

.navbar {
    z-index: 111;
    box-shadow: 10px 10px 23px rgb(0 0 0 / 10%);
}

.navbar-brand {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-nav li.nav-item {
    display: block;
}

.navbar-nav li.nav-item a.nav-link {
    color: #4E555B;
    font-size: 14px;
    font-weight: 600;
}

.navbar-nav li.nav-item.active a.nav-link {
    color: #0077BB;
}

.navbar-nav li.nav-item a.nav-link:hover,
.navbar-nav li.nav-item a.nav-link:focus {
    color: #0077BB;
}

/* Caurosel */

.carousel-caption {
    color: #1F1A17;
    width: 30%;
    text-align: left;
    position: absolute;
    top: 0;
    bottom: 0;
    height: auto;
}

.carousel_content {
    position: relative;
    top: 25%;
}

.spices_caption:before {
    content: "";
    background-image: url(../img/spices-tl.svg);
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    top: -20px;
    left: -30px;
    height: 30px;
    width: 30px;
}

.spices_caption::after {
    content: "";
    background-image: url(../img/spices-rl.svg);
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    top: -30px;
    right: 0;
    height: 40px;
    width: 40px;
}

.icecream_caption:before {
    content: "";
    background-image: url(../img/icecream_tl.svg);
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    top: -20px;
    left: -30px;
    height: 30px;
    width: 30px;
}

.icecream_caption::after {
    content: "";
    background-image: url(../img/icecream_rl.svg);
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    top: -30px;
    right: 0;
    height: 40px;
    width: 40px;
}

.vegeetables_caption:before {
    content: "";
    background-image: url(../img/veg_tl.svg);
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    top: -20px;
    left: -30px;
    height: 30px;
    width: 30px;
}

.vegeetables_caption::after {
    content: "";
    background-image: url(../img/icecream_rl.svg);
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    top: -30px;
    right: -20px;
    height: 40px;
    width: 40px;
}


.carousel-caption .carousel_content {
    /* position: absolute;
    top: 0;
    bottom: 0; */
}

.carousel-caption .carousel_content .btn {
    width: 180px;
}

.carousel-caption h1 {
    font-size: 2.2rem;
    line-height: 2.6rem;
}

.carousel-caption h5 {
    line-height: 2rem;
}

/* Typography */

.fw_800 {
    font-weight: 800;
}

.fw_700 {
    font-weight: 700;
}

.fw_600 {
    font-weight: 600;
}

.fw_500 {
    font-weight: 500;
}

.fw_400 {
    font-weight: 400;
}

.fw_300 {
    font-weight: 300;
}

.lght_color {
    color: #fff;
}

.section_highlight {
    color: #0077BB;
    font-size: 16px;
}

.dark_section {
    background-color: #1F1A17;
}

.dark_section:before {
    content: "";
    height: 100px;
    width: 80px;
    background: url(../img/dark_top_element.svg) no-repeat;
    position: absolute;
    right: 0;
    top: 0;
}

.dark_base_section:before {
    content: "";
    position: absolute;
    top: -20px;
    background: url(../img/dark_top_bg.png) repeat-x;
    background-size: contain;
    height: 30px;
    width: 100%;
    left: 0;
}

.dark_base_section:after {
    content: "";
    position: absolute;
    bottom: -20px;
    background: url(../img/dark_btm_bg.png) repeat-x;
    background-size: contain;
    height: 30px;
    width: 100%;
    left: 0;
}

.blue_section {
    background-color: #00477F;
    color: #fff;
}

.blue_base_section:before {
    content: "";
    position: absolute;
    top: -20px;
    background: url(../img/blue_base_bg.png) repeat-x;
    background-size: contain;
    height: 30px;
    width: 100%;
    left: 0;
}

.light_section {
    background-color: #fff;
}

.mission_text {
    line-height: 2rem;
}

/* Button */

a,
.btn {
    transition: all .3s ease 0s;
}

.btn_primary {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 0.8rem 1rem;
    border-radius: 25px;
    background: rgb(2, 0, 36);
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(0, 119, 187, 1) 100%);
}

.btn_primary:hover,
.btn_primary:focus {
    color: #fff;
    text-decoration: none;
}

.btn-dark {
    background-color: #1F1A17;
    font-size: 14px;
    font-weight: 600;
    padding: 1rem 1.8rem;
}

.base_btn {
    border-radius: 60px;
}

.btn-primary {
    background-color: #0077BB;
    padding: 0.8rem 1.4rem;
    font-size: 14px;
    font-weight: 600;
}

.btn-light {
    padding: .8rem 1.4rem;
    font-size: 14px;
    font-weight: 600;
}

.btn_primary:hover,
.btn_primary:focus {
    background-color: #0077BB;
    color: #fff;
    text-decoration: none;
}

/* Inquiry Modal */

textarea {
    resize: none;
}

.modal.show .modal-dialog {
    box-shadow: 0px 34px 34px rgba(30, 30, 30, 0.3);
    border-radius: 30px;
}

.modal .close {
    opacity: 1;
    position: relative;
    right: 10px;
}

.modal .close:hover,
.modal .close:focus,
.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
    opacity: 1;
}

.modal-header {
    border-bottom: 0px;
}

.modal-content,
.modal-body {
    border-radius: 30px;
    border: none;
    background: url(../img/inquiry.png) no-repeat 0px bottom #F9FBFC;
    background-size: contain;
}

/* Team */

.default_col {
    background: #1F1A17;
    border-radius: 45px;
    padding: 5px;
    overflow: hidden;
}

.default_col img {
    border-radius: 40px;
}

.default_info {
    padding: 20px 0 15px 0;
}

.default_info h5 {
    line-height: 1.6rem;
}

.default_info h5,
.default_info p {
    color: #fff;
}

.default_info p {
    font-size: 14px;
}

/* Product */

.product_col {
    background: #1F1A17;
    border-radius: 45px;
    padding: 5px;
    overflow: hidden;
}

.product_col img {
    border-radius: 40px;
}

.product_info {
    padding: 20px 0 15px 0;
}

.productinfo h5,
.product_info a {
    color: #1F1A17;
}

.product_info p {
    font-size: 14px;
}

.product_col a {
    text-decoration: none;
}

.flours {
    background: #EACDAF;
}

.beans {
    background: #FFE2BB;
}

.rice {
    background: #F2CFB3;
}

.spices {
    background: #FFE3A0;
}

.fruitpulp {
    background: #F0E4B6;
}

.icecream {
    background: #EBCDA6;
}

.fruitstick {
    background: #CAF2CC;
}

.milkkulfi {
    background: #CDF6FB;
}

.jaggery {
    background: #FFDCBB;
}

.vegetables {
    background: #FFE2B5;
}

.fruits {
    background: #FCCECE;
}

.product_slide:before {
    content: "";
    background-image: url(../img/prod_left_icon.svg);
    position: absolute;
    top: -20px;
    left: -30px;
    height: 40px;
    width: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 11;
}

.product_slide:after {
    content: "";
    background-image: url(../img/prod_right_bottom.svg);
    position: absolute;
    bottom: 10px;
    right: -20px;
    height: 90px;
    width: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 11;
}

/* Product Detail */

ul.prod_desc_list {
    padding: 0;
    margin: 0;
}

ul.prod_desc_list li {
    list-style: none;
    font-weight: 500;
    padding: 1rem;
    border: 2px solid #fff;
    position: relative;
    padding-left: 2.6rem;
}

ul.prod_desc_list li:before {
    content: "";
    position: absolute;
    background-color: #fff;
    height: 8px;
    width: 8px;
    border-radius: 100%;
    display: block;
    top: 42%;
    left: 18px;
}

.page_inner_header {
    overflow: hidden;
}

.text_link {
    font-weight: 600;
    color: #1f1a17;
}

.text_link:hover,
.text_link:focus {
    color: #1F1A17;
    text-decoration: none;
}

/* Page Intro Section */

.page_intro {
    background: #00477F;
    color: #fff;
}

/* Contact */

.contact_section h6 {
    line-height: 1.4rem;
}

.contact_section a {
    color: #1F1A17;
}

.contact_section a:hover,
.contact_section a:focus {
    color: #0077BB;
    text-decoration: none;
}

.contact_map {
    border: 8px solid #fff;
    box-shadow: 0 2px 8px 0px #ddd;
    border-radius: 5px;
}

/* Form Control */

.form-control {
    font-size: 12px;
    padding: 0.5rem 0.75rem;
    line-height: 1.5rem;
    background: #FFFFFF;
    border: 1px solid #4E555B;
    border-radius: 10px;
    height: 50px;
}

.form-control:focus {
    border-color: #0077BB;
    box-shadow: none;
}

/* Brands */

.brand_col {
    border: 2px solid #1F1A17;
    box-shadow: 4px 4px 0 0px #1f1a17;
    border-radius: 3px;
}

#brands_carousel .owl-stage-outer {
    padding-bottom: 1rem;
}

/* Image Section */

.img_section {
    background: url(../img/inquiry.png) no-repeat bottom center #F9FBFC;
    min-height: 600px;
    background-size: cover;
}

/* Footer */

footer {
    background: url(../img/footer_bg.png) no-repeat #FFECE3;
    font-size: 14px;
}

footer ul,
footer ul li {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

footer ul li a {
    color: #1F1A17;
    font-size: 14px;
}

footer ul li a:hover,
footer ul li a:focus {
    color: #0077BB;
    text-decoration: none;
}

.footer_contact {
    border-radius: 16px;
}

.footer_contact a,
footer a {
    color: #1F1A17;
}

.footer_contact a:hover,
footer a:hover,
.footer_contact a:focus,
footer a:focus {
    color: #0077BB;
    text-decoration: none;
}

/* Owl Carousle */

#product_carousel.owl-theme .owl-nav.disabled+.owl-dots,
#brands_carousel.owl-theme .owl-nav.disabled+.owl-dots,
#testimonials_carousel.owl-theme .owl-nav.disabled+.owl-dots {
    position: relative;
    top: 20px;
}

#product_carousel.owl-theme .owl-dots .owl-dot span,
#brands_carousel.owl-theme .owl-dots .owl-dot span,
#testimonials_carousel.owl-theme .owl-dots .owl-dot span {
    width: 6px;
    height: 6px;
}

/* Testimonials */

.testimonials_content:before {
    content: "";
    background-image: url(../img/quote_left.svg);
    width: 26px;
    height: 26px;
    display: block;
    position: absolute;
    left: -30px;
    top: 0;
    background-size: contain;
    background-repeat: no-repeat;
}

.testimonials_content:after {
    content: "";
    background-image: url(../img/quote_right.svg);
    width: 26px;
    height: 26px;
    display: block;
    position: absolute;
    right: -30px;
    top: 0;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Carousel */

.carousel-control-prev-icon {
    background-image: url(../img/Prev.svg);
    height: 40px;
    width: 40px;
}

.carousel-control-next-icon {
    background-image: url(../img/Next.svg);
    height: 40px;
    width: 40px;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: .6s;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
    opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
    transform: translateX(0);
    transform: translate3d(0, 0, 0);
}


/* Responsive */

@media only screen and (min-width: 320px) and (max-width: 766px) {
    h1 {
        font-size: 1.4rem;
    }

    .img_section {
        min-height: inherit;
    }

    .navbar .btn_primary {
        display: block;
        text-align: center;
    }

    .blue_base_section:before {
        background-size: cover;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        height: 26px;
        width: 26px;
    }

    .dark_base_section:before,
    .dark_base_section:after {
        background-size: cover;
    }

    footer .footer_contact img {
        height: 28px;
    }

    .navbar-toggler img {
        height: 28px;
    }

    .navbar-brand img {
        height: 45px;
    }

    .img_section {
        background-size: contain;
    }

    .carousel-caption {
        width: 40%;
        left: 50px;
    }

    .carousel-item img {
        min-height: 180px;
    }

    .carousel-indicators {
        display: none;
    }

    .carousel_content h1 {
        font-size: 1rem;
        line-height: 1.4rem;
        margin-bottom: 0;
    }

    .carousel_content h5 {
        font-size: .65rem;
        line-height: 1rem;
    }

    .carousel_content .btn-dark,
    .carousel-caption .carousel_content .btn {
        width: 110px;
        padding: 0.45rem 0.5rem;
        font-size: 12px;
    }

    .carousel-caption .carousel_content .btn img {
        display: none;
    }

    #product_carousel.owl-theme .owl-nav.disabled+.owl-dots,
    #brands_carousel.owl-theme .owl-nav.disabled+.owl-dots,
    #testimonials_carousel.owl-theme .owl-nav.disabled+.owl-dots {
        margin-top: 0;
        top: 10px;
    }

    .mission_text {
        font-size: 1.2rem;
        line-height: 1.6rem;
    }

    .navbar-brand {
        margin-right: 0;
    }

    .testimonials_content:before,
    .testimonials_content:after,
    .product_slide:before,
    .product_slide:after {
        content: "";
        display: none;
    }

    .spices_caption:before,
    .spices_caption:after,
    .icecream_caption:before,
    .icecream_caption:after,
    .vegeetables_caption:before,
    .vegeetables_caption:after {
        content: "";
        display: none;
    }

    .carousel_content {
        top: 0;
    }

}

@media screen and (min-width:768px) and (max-width:1024px) and (orientation:landscape) {
    .navbar-brand img {
        height: 50px !important;
    }
    .carousel_content {
        top: 50px;
    }
}

@media screen and (min-width:768px) and (max-width:1024px) and (orientation:portrait) {
    .navbar-brand img {
        height: 50px !important;
    }
    .carousel_content {
        top: 0;
    }
    .spices_caption:before,
    .spices_caption:after,
    .icecream_caption:before,
    .icecream_caption:after,
    .vegeetables_caption:before,
    .vegeetables_caption:after {
        content: "";
        display: none;
    }

    .carousel-caption h5 {
        display: none;
    }
}

@media (min-width: 768px) {
    .navbar-brand img {
        height: 50px !important;
    }
}
.bottom_flash_msg {
    /*display: block;*/
     display: none; 
    opacity: 1;
    position: fixed;
    top: 96%;
    margin-top: -60px;
    /* left: 56%; */
    right: 26px;
    margin-left: -160px;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    width: 300px;
    line-height: 12px;
    height: 35px;
    padding: 10px;
    background-color: #000;
    font-size: 14px;
    text-align: center;
    color: #fff!important;
    text-decoration: none;
    font-weight: 400;
    z-index: 1000;
    -webkit-transition: top 1s;
    -moz-transition: top 1s;
    -o-transition: top 1s;
    transition: top 1s;
    text-decoration: none;
    z-index: 9999;
}
.bottom_flash_msg:hover{
    text-decoration: none;   
}
.bottom_flash_msg:hover{
    text-decoration: none;   
}
.success_msg_show{
    background-color: #26b99a;
}
.error_msg_show{
    background-color: #d9534f;
}
.alert-center{
  position: absolute;
  left: 30px;
  right: 30px;
  margin-left: auto;
  margin-right: auto;
  width: 600px;
  text-align: center;
  top: 6px;
  padding: .6rem 1.25rem;
  box-shadow: 1px 1px 4px #c1b6b6;
  box-shadow: 0px 0 6px rgba(0, 0, 0, .1);
  font-size: 15px;
  font-weight: bold;
  z-index: 9999;
}