/******** Google Fonts ********/

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/******** Color Schemes ********/

:root {
    --c-primary-dark: #49551e;/*--c-primary-dark: #253068;*/
    --c-white: #ffffff;
    --c-greyish-white: #F8F6F7;
    --c-red: #d61f35;
    --c-pink: #E91E98;
    --c-red-light: #d61f351f;
    --c-black: #000000;
    --c-grey: #777777;
    --ff-primary: 'Roboto Condensed', sans-serif;
}


/*reuseable Css */
.text-primary-dark{
    color:var(--c-primary-dark);
}
.text-c-red{
    color:var(--c-red);
}
.text-pink{
    color:var(--c-pink);
}
.bg-pink{
    background:var(--c-pink);
}
.bg-primary-dark{
    background:var(--c-primary-dark);
}
.bg-c-red{
    background:var(--c-red);
}
.text-truncating-ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 10; /* number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.6em;
  min-height: calc(1.6em * 10);
}
@media screen and (max-width:767.95px){
    .text-truncating-ellipsis {
      -webkit-line-clamp: 16; /* number of lines to show */
      min-height: calc(1.6em * 16);
    }
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}
.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: 
  color-mix(in srgb, var(--c-primary-dark), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}
.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--c-red);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.section-title p {
  margin-bottom: 0;
  width:70%;
  margin: auto;
}
@media screen and (max-width:767.95px){
    .section-title p {
      
      width:100%;
      
    }
}

/*reuseable Css */
/******** CSS Resets ********/
/*  *{
  padding: 0;
  margin: 0 auto;
}*/

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a:focus,
a:hover {
    outline: none;
}

a {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: var(--c-black);
    line-height: 24px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
}

body {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 14px;
    color: var(--c-black-text);
    max-width:576px;
    margin:auto;
    background:#b4c381;
    background-image: url('../images/bg111.webp');
    background-repeat: repeat;
    background-size: contain;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto Condensed", sans-serif;
    margin-bottom: 0;
}
.error{
    color: red;
}
/******** Utility Classes ********/
/*
.container {
  width: 100%;
  max-width: 1360px;
}
*/

.custom-pad {
    padding: 40px 0;
}

.custom-pad-no-btm {
    padding: 40px 0 0;
}

@font-face {
    font-family: 'nature';
    /*a name to be used later*/
    src: url('../fonts/Nature-Beauty-Personal-Use.ttf');
    /*URL to font*/
}

.scroll-top {
    background:var(--c-primary-dark);
    z-index: 999;
    border: 0;
}

.scroll-top:hover {
    background: var(--c-red);
}

/*=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+toggle-nav-css-start=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+*/
.sidebar li .submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    padding-left: 1rem;
    padding-right: 1rem;
}

.sidebar-menu {
    background: none;
    border: 0;
}

.sidebar-menu ul li {
    text-align: left;
    margin: 0;
    font-size: 16px;
    text-transform: uppercase;
    border-bottom: 1px solid #fff;
}

.sidebar-menu ul li li {
    font-size: 14px;
}

.sidebar-menu ul li a i {
    font-size: 13px;
    float: right;
}



.navbar-default .navbar-toggler .icon-bar {
    background-color: #fff;
}

.navbar-toggler .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
}

.navbar-default .navbar-toggler .icon-bar {
    background-color: #fff;
}

.navbar-default .navbar-toggler {
    border-color: #5f4b8b;
    background: #5f4b8b;
    outline: none;
}

.navbar-toggler {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 8px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.navbar-toggler .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
}

.navbar-toggler .icon-bar+.icon-bar {
    margin-top: 4px;
}

.navbar-toggler .icon-bar+.icon-bar {
    margin-top: 4px;
}

.navbar-header {
    display: none;
}

.navbar-expand-lg .navbar-nav .nav-link {
    font-size: 16px;
    color: var(--c-white);
    font-weight: 800;
    text-transform: uppercase;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    transition: all 0.3s;
}

.navbar-nav .last-btn .nav-link {
    background: var(--c-primary-dark);
    color: var(--c-white) !important;
    border-radius: 3px;
    padding-left: 24px;
    padding-right: 24px;
    margin-left: 15px;
    
}

.navbar-nav .last-btn .nav-link:hover {
    background: var(--c-red);
}


.navbar-expand-lg .navbar-nav .nav-link:after {
    width: 0%;
    transition: .5s;
    height: 2px;
    position: absolute;
    content: '';
    bottom: 4px;
    left: 30%;
    background: var(--c-white);
}

.navbar-expand-lg .navbar-nav .nav-link:hover:after {
    width: 40%;
    height: 2px;
    position: absolute;
    content: '';
    bottom: 4px;
    left: 30%;
    background: var(--c-white);
}

.navbar-expand-lg .navbar-nav .nav-link.active:after {
    width: 40%;
    height: 2px;
    position: absolute;
    content: '';
    bottom: 4px;
    left: 30%;
    background: var(--c-white);
}

.navbar-expand-lg .navbar-nav .last-btn .nav-link:after {
    display: none !important;
}

@media screen and (max-width:768px) {
    .navbar-expand-lg .navbar-nav .nav-link.active:after {
        width: 0%;
    }
}

.navbar-brand img {
    width: 60px;
    height: auto;
}

/*=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+toggle-nav-css-end=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+*/
.custom-header {
    position: fixed;
    left: 0;
    right:0;
    margin: auto;
    top: 0;
    width: 100%;
    max-width:576px;
    z-index: 9999;
    background: var(--c-primary-dark);
    border-bottom:1px solid #fff;
}

.navbar .toggler-navbar {
    margin-left: 15px;
}

.sidebar {
    position: fixed;
    top: 79px;
    left: 0;
    width: 250px;
    height: calc(100% - 78px);
    background :linear-gradient(45deg,  #f5faed, #49551e);
    /*background: var(--c-primary-dark);*/
    text-align: left;
    font-size: 20px;
    transform: rotate3d(0, 1, 0, 90deg);
    transform-origin: left center;
    transition: .5s;
    z-index: 999;
}

.sidebar.open {
    transform: rotate3d(0, 0, 1, 0deg);
}

.sidebar ul {
    list-style: none;
}

.sidebar li:hover,
.sidebar li.active {
    background: #0000003f;
}

.sidebar li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: block
}

.hamburger-menu {
    width: 30px;
    height: 30px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 996;
}

.hamburger-menu span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--c-white);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.hamburger-menu span:nth-child(1) {
    top: 2.5px;
}

.hamburger-menu span:nth-child(2) {
    top: 12px;
    width: 70%;
    left: 30%;
}

.hamburger-menu span:nth-child(3) {
    top: 21px;
}

.hamburger-menu.open span:nth-child(1) {
    top: 15px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
}

.hamburger-menu.open span:nth-child(2) {
    opacity: 0;
    right: -60px;
}

.hamburger-menu.open span:nth-child(3) {
    top: 14px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.social-right-flot {
    position: fixed;
    right: 0;
    top: 122px;
    width: 50px;
    background: #fff;
    border-radius: 4px 0 0 4px;
    overflow: hidden;
    z-index: 999;
    margin-right: 0;
    float: right;
}

.social-right-flot .goto {
    background: var(--c-black);
    width: 100%;
    height: 48px;
    display: block;
    color: var(--c-white);
    text-align: center;
    padding-top: 15px;
    transition: all 0.3s;
}

.social-right-flot .goto:hover i {
    transform: scale(1.2);
}

.get-touch {
    padding: 90px 0 60px;
    text-align: center;
    color: var(--c-black);
    display: block;
    font-size: 17px;
    transition: all 0.3s;
}

.get-touch span {
    transform: rotate(-90deg);
    display: block;
    white-space: nowrap;
}

.get-touch:hover {
    transform: scale(1.2);
    color: var(--c-black);
}

.social-right-flot img {
    width: 100%;
    height: auto;
    transition: all 0.3s;
}

.social-right-flot img:hover {
    transform: scale(1.2);
}

.divider {
    background: url(../images/devider.png) repeat-x;
    height: 42px;
}

.page-logo {
    padding: 50px 0 20px;
    text-align: center;
}

.page-logo .container {
    border-bottom: 1px solid #d1cab9;
    padding-bottom: 25px;
}

.page-logo img {
    width: 480px;
    height: auto
}

.brand-logo h2 {
    text-align: center;
    color: var(--c-red);
    margin: 0;
    padding: 0 0 25px;
    font-size: 48px;
    font-family: 'nature';
}

#brand-logo.owl-carousel .owl-item {
    padding: 20px 0;
}

#brand-logo.owl-carousel .item {
    transition: transform 0.5s;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    z-index: -1;
}

#brand-logo.owl-carousel .item:hover {
    transition: transform 0.5s;
    -ms-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    z-index: 9999;
}

#brand-logo .item img {
    width: 90%;
    height: auto
}

#brand-logo .item h4 {
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    color: #67645b;
    padding-top: 10px;
}

#brand-logo .owl-nav {
    text-align: center;
    margin: 20px 0;
}

#brand-logo .owl-nav button {
    width: 36px;
    height: 34px;
    background: var(--c-red);
    color: #fff;
    font-size: 27px;
    border-radius: 4px;
    margin: 0 5px;
    line-height: 14px;
    padding: 3px 0 7px !important;
}

.custom-head {
    text-align: center;
}

.custom-head h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--c-red);
    text-transform: uppercase;
}

.custom-head h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--c-black);
    text-transform: uppercase;
}

.custom-head-red h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--c-red);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.custom-head-red {
    text-align: center;
}


.wishes-explore{
    padding:10px 0;
}

.wishes-holder {
    border-radius: 4px;
    text-align: center;
    padding: 0 15px 10px;
    /*height: 285px;*/
    transition: all 0.3s;
    background: rgb(238, 227, 204);
    background: linear-gradient(180deg, rgba(135, 8, 48, 1) 0%, rgba(218, 49, 103, 1) 100%);
}

.wishes-holder .wishes-thum {
    height: 150px;
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.wishes-holder .wishes-thum img {
    width: 200px;
    height:200px;
    object-fit: cover;
    margin-top: -40px;
    position: relative;
    z-index: 99;
    transition: all 0.3s;
}

.wishes-holder h5 {
    color: var(--c-white);
    text-transform: uppercase;
    transition: all 0.5s;
}

.wishes-slider-holder .item {
    padding-top: 60px;
    overflow: hidden;
    position: relative;
    max-width: 250px;
}

.wishes-slider-holder .item .title-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
    overflow: hidden;
}

.wishes-slider-holder .item .title-bg h5 {
    color: #fff;
    font-size: 36px;
    text-align: center;
    text-transform: uppercase;
}

.wishes-holder hr {
    margin: 10px auto auto auto;
    border:0px;
    height:1px;
    background: var(--c-white);
    opacity: unset;
}
.item span i {
    color: var(--c-white);
}

.item span {
    visibility: hidden;
    transition: all 0.3s;
    font-size: 0px;
}

.item:hover span {
    visibility: visible;
    font-size: 40px;
}

.item:hover .wishes-thum img {
    margin-top: -60px;
}

.item:hover h5 {
    margin-top: -1%;
}

@media screen and (max-width:1440px){
    .item .wishes-thum img {
        width: 180px;
        height:180px;
    }
    .item:hover .wishes-thum img {
        margin-top: -30px;
    }
  
}
@media screen and (max-width:767px){
    .item .wishes-thum img {
        width: 180px;
        height:180px;
    }
    .item span {
        visibility: visible; 
        font-size: 40px;
    }
    .item:hover .wishes-thum img {
        margin-top: -30px;
    }
    .wishes-slider-holder .item {
      
        max-width: unset;
    }
  
}

@media screen and (max-width:425px){
    .item .wishes-thum img {
        width: 170px;
        height: 170px;
    }
    .item:hover .wishes-thum img {
        margin-top: -30px;
    }
    .wishes-slider-holder .item {
      
        max-width: unset;
    }
    .item span {
        visibility: visible; 
        font-size: 40px;
    }
}

.wishes-slider-holder {
    padding-bottom: 20px;
}

#wishess-slider .owl-nav {
    text-align: center;
    margin: 20px 0;
}

#wishess-slider .owl-nav button {
    width: 36px;
    height: 34px;
    background: var(--c-red);
    color: #fff;
    font-size: 27px;
    border-radius: 4px;
    margin: 0 5px;
    line-height: 14px;
    padding: 3px 0 7px !important;
}

#wishess-slider .owl-dots {
    width: 90%;
    margin: 10px auto;
    display: none
}

#wishess-slider .owl-dots .owl-dot {
    display: none;
    zoom: 1;
}

#wishess-slider .owl-dots .owl-dot.active span {
    background: var(--c-red);
}

#wishess-slider .owl-dot {
    display: inline-block;
    zoom: 1;
    width: 33%;
}

#wishess-slider .owl-dots .owl-dot span {
    background: #f2adae;
}

#wishess-slider .owl-dots .owl-dot span {
    width: 100%;
    height: 5px;
    margin: 5px 0px;
    display: block;
    -webkit-backface-visibility: visible;
    padding: 3px;
}

.front-pro-top {
    padding: 30px 0 50px;
    position: relative;
    /*background-image: url(../images/chl-right.png), url(../images/chl-lft.png);
  background-position: right center, left center;
  background-repeat: no-repeat, no-repeat; background-size: 17%, 10%;*/
}

/*.lft-chl-one {
    position: absolute;
    bottom: 20px;
    left: 17px;
    width: 180px;
}

.lft-chl-one img {
    width: 100%;
    height: auto;
}

.rit-chl-two {
    position: absolute;
    bottom: -25px;
    right: 17px;
    width: 250px;
}

.rit-chl-two img {
    width: 100%;
    height: auto;
}
*/
#wishess-slider .owl-item:nth-child(2n) .wishes-holder {
    border-radius: 4px;
    text-align: center;
    padding: 0 15px 10px;
    height: auto;
    transition: all 0.3s;
    background: rgb(158, 52, 177, 1);
    /*background: linear-gradient(180deg, rgb(177, 52, 53) 0%, rgba(175,40,41,1) 100%);*/
}

#wishess-slider .owl-item:nth-child(3n) .wishes-holder {
    border-radius: 4px;
    text-align: center;
    padding: 0 15px 10px;
    height: auto;
    transition: all 0.3s;
    background: rgb(4, 155, 46, 1);
    /*background: linear-gradient(180deg, rgba(46,155,46,1) 0%, rgba(69,145,65,1) 100%);*/
}

#wishess-slider .owl-item:nth-child(4n) .wishes-holder {
    border-radius: 4px;
    text-align: center;
    padding: 0 15px 10px;
    height: auto;
    transition: all 0.3s;
    background: rgb(210, 118, 65, 1);
}

#wishess-slider .owl-item:nth-child(5n) .wishes-holder {
    border-radius: 4px;
    text-align: center;
    padding: 0 15px 10px;
    height: auto;
    transition: all 0.3s;
    background: rgb(197, 5, 105, 1);
    /*background: linear-gradient(180deg, rgb(197, 5, 105) 0%, rgba(171,55,94,1) 100%);*/
}

#wishess-slider .owl-item:nth-child(6n) .wishes-holder {
    border-radius: 4px;
    text-align: center;
    padding: 0 15px 10px;
    height: auto;
    transition: all 0.3s;
    background: rgb(46, 155, 145, 1);
    /* background: linear-gradient(180deg, rgba(46,155,46,1) 0%, rgba(69,145,65,1) 100%);*/
}
/*
#wishess-slider .owl-item:nth-child(10) .wishes-holder {
    border-radius: 4px;
    text-align: center;
    padding: 0 15px 10px;
    height: auto;
    transition: all 0.3s;
    background: rgb(210, 118, 65, 1);
}

#wishess-slider .owl-item:nth-child(11) .wishes-holder {
    border-radius: 4px;
    text-align: center;
    padding: 0 15px 10px;
    height: auto;
    transition: all 0.3s;
    background: rgb(177, 52, 53, 1);
    background: linear-gradient(180deg, rgb(177, 52, 53) 0%, rgba(175, 40, 41, 1) 100%);
}

#wishess-slider .owl-item:nth-child(13) .wishes-holder {
    border-radius: 4px;
    text-align: center;
    padding: 0 15px 10px;
    height: auto;
    transition: all 0.3s;
    background: rgb(197, 5, 105, 1);
    background: linear-gradient(180deg, rgb(197, 5, 105) 0%, rgba(171, 55, 94, 1) 100%);
}

#wishess-slider .owl-item:nth-child(12) .wishes-holder {
    border-radius: 4px;
    text-align: center;
    padding: 0 15px 10px;
    height: auto;
    transition: all 0.3s;
    background: rgb(46, 155, 46, 1);
    background: linear-gradient(180deg, rgb(108, 205, 85) 0%, rgba(69, 145, 65, 1) 100%);
}

#wishess-slider .owl-item:nth-child(15) .wishes-holder {
    border-radius: 4px;
    text-align: center;
    padding: 0 15px 10px;
    height: auto;
    transition: all 0.3s;
    background: rgb(46, 155, 46, 1);
    background: linear-gradient(180deg, rgba(46, 155, 46, 1) 0%, rgba(69, 145, 65, 1) 100%);
}

#wishess-slider .owl-item:nth-child(16) .wishes-holder {
    border-radius: 4px;
    text-align: center;
    padding: 0 15px 10px;
    height: auto;
    transition: all 0.3s;
    background: rgb(177, 52, 53, 1);
    background: linear-gradient(180deg, rgb(177, 52, 53) 0%, rgba(175, 40, 41, 1) 100%);
}

#wishess-slider .owl-item:nth-child(17) .wishes-holder {
    border-radius: 4px;
    text-align: center;
    padding: 0 15px 10px;
    height: auto;
    transition: all 0.3s;
    background: rgb(197, 5, 105, 1);
    background: linear-gradient(180deg, rgb(197, 5, 105) 0%, rgba(171, 55, 94, 1) 100%);
}

#wishess-slider .owl-item:nth-child(18) .wishes-holder {
    border-radius: 4px;
    text-align: center;
    padding: 0 15px 10px;
    height: auto;
    transition: all 0.3s;
    background: rgb(46, 155, 46, 1);
    background: linear-gradient(180deg, rgba(46, 155, 46, 1) 0%, rgba(69, 145, 65, 1) 100%);
}*/

#wishess-slider .owl-item:nth-child(20) .wishes-holder {
    border-radius: 4px;
    text-align: center;
    padding: 0 15px 10px;
    height: auto;
    transition: all 0.3s;
    background: rgb(210, 118, 65, 1);
}

#wishess-slider .owl-item:nth-child(21) .wishes-holder {
    border-radius: 4px;
    text-align: center;
    padding: 0 15px 10px;
    height: auto;
    transition: all 0.3s;
    background: rgb(46, 155, 46, 1);
    background: linear-gradient(180deg, rgba(46, 155, 46, 1) 0%, rgba(69, 145, 65, 1) 100%);
}

#wishess-slider .owl-item:nth-child(22) .wishes-holder {
    border-radius: 4px;
    text-align: center;
    padding: 0 15px 10px;
    height: auto;
    transition: all 0.3s;
    background: rgb(177, 52, 53, 1);
    background: linear-gradient(180deg, rgb(177, 52, 53) 0%, rgba(175, 40, 41, 1) 100%);
}

#wishess-slider .owl-item:nth-child(23) .wishes-holder {
    border-radius: 4px;
    text-align: center;
    padding: 0 15px 10px;
    height: auto;
    transition: all 0.3s;
    background: rgb(46, 155, 46, 1);
    background: linear-gradient(180deg, rgb(108, 205, 85) 0%, rgba(69, 145, 65, 1) 100%);
}

#wishess-slider .owl-item:nth-child(25) .wishes-holder {
    border-radius: 4px;
    text-align: center;
    padding: 0 15px 10px;
    height: auto;
    transition: all 0.3s;
    background: rgb(177, 52, 53, 1);
    background: linear-gradient(180deg, rgb(177, 52, 53) 0%, rgba(175, 40, 41, 1) 100%);
}

#wishess-slider .owl-item:nth-child(28) .wishes-holder {
    border-radius: 4px;
    text-align: center;
    padding: 0 15px 10px;
    height: auto;
    transition: all 0.3s;
    background: rgb(46, 155, 46, 1);
    background: linear-gradient(180deg, rgba(46, 155, 46, 1) 0%, rgba(69, 145, 65, 1) 100%);
}

#wishess-slider .owl-item:nth-child(29) .wishes-holder {
    border-radius: 4px;
    text-align: center;
    padding: 0 15px 10px;
    height: auto;
    transition: all 0.3s;
    background: rgb(177, 52, 53, 1);
    background: linear-gradient(180deg, rgb(177, 52, 53) 0%, rgba(175, 40, 41, 1) 100%);
}

.feature-head-bg {
    padding: 90px 0 50px;
    position: relative;
    /*background-image: url(../images/bg-onion.png),  url(../images/leaves2.png) ;
  background-position: right center, left center;
  background-repeat: no-repeat, no-repeat; background-size: 12%, 8%;*/
}

.lft-chl-three {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 150px;
}

.lft-chl-three img {
    width: 100%;
    height: auto;
}

.rit-chl-four {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 200px;
}

.rit-chl-four img {
    width: 100%;
    height: auto;
}

body main {
    padding-top: 79px;
}

/*-----------------Banner slider--------------------*/

.carousel-inner {
    background: var(--c-primary-dark);
}

.carousel-caption .container .custom-head {
    text-align: left;
    width: 50%;
    margin-left: 0;
}

.carousel-caption {
    bottom: 40%;
    left: 0;
    width: 100%;
}

.carousel-caption .container .custom-head h2 {
    font-size: 86px;
    color: var(--c-white);
    margin-bottom: 30px;
}

.custom-btn {
    background: var(--c-red);
    color: var(--c-white);
    border-radius: 4px;
    font-size: 16px;
    padding: 12px 28px;
    font-weight: 800;
}

.custom-btn:hover {
    background: var(--c-primary-dark);
    color: var(--c-white);
}

.custom-btn-submit {
    background: var(--c-red);
    color: var(--c-white);
    border-radius: 4px;
    font-size: 16px;
    padding: 12px 28px;
    font-weight: 800;
    border: 0;
    display: block;
    width: 100%;
    text-transform: uppercase;
}

.custom-btn-submit:hover {
    background: var(--c-primary-dark);
    color: var(--c-white);
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.carousel-indicators {
    background: rgba(0, 0, 0, 0.5);
    width: 90px;
    margin: 0 auto 25px;
    border-radius: 20px;
}


.page-logo {
    position: relative;
}

.right-lvs-top {
    width: 135px;
    position: absolute;
    right: 0;
    top: 22px;
}

.right-lvs-top img {
    width: 100%
}

#feature-product {
    padding-bottom: 50px;
}

.feature-pro-thum-lft {
    border-radius: 24px;
    overflow: hidden;
}

.feature-pro-thum-rit {
    border-radius: 24px;
    overflow: hidden;
}

.rit-feature {
    gap: 20px;
    display: grid;
}

#feature-product .owl-nav {
    display: none;
}

#feature-product .owl-dots {
    display: flex;
    text-align: center;
    align-content: center;
    justify-content: center;
    margin-top: 35px;
    gap: 10px;
}

#feature-product button.owl-dot {
    width: 10px;
    height: 10px;
    opacity: 0.5;
    display: block;
    background: var(--c-red);
    border-radius: 50%;
}

#feature-product button.owl-dot.active {
    opacity: 1;
}

.video-guide-holder {
    background: url(../images/front-video-bg.webp) 0 0 no-repeat;
    background-size: cover;
}

.video-guide-holder .custom-head h2 {
    color: var(--c-white);
}

.video-guide-holder video {
    object-fit: cover;
    width: 100%;
    height: 450px;
    margin: 0;
    padding: 0;
}

.video-guide-holder .play-button {
    position: absolute;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(231, 22, 72, 1);
    top: 42%;
    left: 47.2%;
    border: 0;
    color: var(--c-white);
    font-size: 22px;
}

.videoplayer-holder {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--c-white);
}

.modal-backdrop {
    z-index: 0;
}

.video-slider-holds .modal-header {
    border: 0;
    margin-right: 0;
    position: absolute;
    z-index: 999;
    right: 0;
    background: rgb(0, 0, 0, 05);
    border-radius: 0;
}

.video-slider-holds .modal-body {
    padding: 0;
}

#video-slider {
    padding-top: 50px;
}

#video-slider .owl-stage-outer {
    overflow: visible;
}

.video-step .video-slider-holds {
    width: 100%;
    overflow: hidden;
}

#video-slider .owl-nav {
    text-align: center;
    margin: 20px 0;
}

#video-slider .owl-nav button {
    width: 36px;
    height: 34px;
    background: var(--c-red);
    color: #fff;
    font-size: 27px;
    border-radius: 4px;
    margin: 0 5px;
    line-height: 14px;
    padding: 3px 0 7px !important;
}

#video-slider .owl-dots {
    width: 100%;
    margin: 20px auto;
    display: none;
}

#video-slider .owl-dots .owl-dot {
    display: none;
    zoom: 1;
}

#video-slider .owl-dots .owl-dot.active span {
    background: var(--c-red);
}

#video-slider .owl-dot {
    display: inline-block;
    zoom: 1;
    width: 33%;
}

#video-slider .owl-dots .owl-dot span {
    background: #f2adae;
}

#video-slider .owl-dots .owl-dot span {
    width: 100% ;
    height: 5px;
    margin: 5px 0px;
    display: block;
    -webkit-backface-visibility: visible;
    padding: 3px;
}

.video-guide-holder {
    position: relative;
}

/* Social Media */
.social-media-explore {
    padding: 50px 0 0;
}

.social-media-explore .custom-head {
    text-align: center;
}

.social-media-explore .custom-head h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--c-red);
    text-transform: uppercase;
}

.social-media-explore .custom-head h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--c-black);
    text-transform: uppercase;
}

/* Highlights */
.highlights-explore {
    padding: 50px 0 50px;
    background:lightpink;
    background-size: contain;
}

.highlights-explore .highlight_bg_pic {
    position: relative;
}

.highlights-explore .highlight_bg_pic .highlight_pic {
    position: absolute;
    top: -50px;
    left: -362px;
    transform: rotate(-6deg);
}

.highlights-explore .highlight_bg_pic .highlight_pic img {
    width: 60%;
}

.highlights-explore .custom-head {
    text-align: center;
}

.highlights-explore .custom-head h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--c-red);
    text-transform: uppercase;
}

.highlights-explore .custom-head h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--c-black);
    text-transform: uppercase;
}

.highlights_content_wrapper {
    padding: 0;
}

.highlights_content_wrapper .highlight_content {
    display: flex;
    border: 1px solid none;
    border-radius: 12px;
    position: relative;
}

.highlights_content_wrapper .highlight_content .chil_picture_1 {
    position: absolute;
    bottom: -45px;
    right: 10%;
    transform: rotate(21deg);
    z-index: 9;
    width: 170px;
}

.highlights_content_wrapper .highlight_content .leave_picture_1 img {
    width: 100%;
}

.highlights_content_wrapper .highlight_content .leave_picture_1 {
    position: absolute;
    top: -14px;
    right: 0;
    transform: rotate(44deg);
    z-index: 9;
}

.highlight_content .highlight-lft-thum {
    width: 40%;
    border-radius: 24px 0 0 24px;
    overflow: hidden;
    height: 325px;
}

.highlight_content .highlight-lft-thum img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.highlights_content_wrapper .highlight_content .content_box {
    padding: 50px 0 50px 84px;
    background: linear-gradient(180deg, rgba(135, 8, 48, 1), rgba(218, 49, 103, 1));
    width: 60%;
    border-radius: 0 24px 24px 0;
    position: relative;
}

.hight-product-thum {
    position: absolute;
    bottom: -10px;
    left: -105px;
    width: 190px;
    height: 290px;
    z-index: 999;
    text-align: center;
}

.hight-product-thum img {
    width: auto;
    height: 100%;
    object-fit: cover;
}

.highlights_content_wrapper .highlight_content_2 {
    display: flex;
    border: 1px solid none;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s;
}

.highlights_content_wrapper .highlight_content_2 .chil_picture {
    position: absolute;
    width: 145px;
    top: -55px;
    left: -47px;
    transform: rotate(-50deg);
    z-index: 9;
    transition: all 0.3s;
}

.highlights_content_wrapper .highlight_content_2 .leave_picture img {
    width: 100%;
}

.highlights_content_wrapper .highlight_content_2 .leave_picture {
    position: absolute;
    top: 195px;
    left: 167px;
    transform: rotate(54deg);
    z-index: 9;
    transition: all 0.3s;
}

.highlight_content_2 .highlight-thum-two {
    width: 40%;
    border-radius: 0 24px 24px 0;
    overflow: hidden;
    height: 325px;
}

.highlight-thum-two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlights_content_wrapper .highlight_content_2 .content_box_2 {
    padding: 50px 0 50px 39px;
    background: linear-gradient(180deg, rgba(74, 155, 55, 1), rgba(108, 205, 85, 1));
    width: 60%;
    border-radius: 24px 0 0 24px;
    position: relative;
}

.content_box_2 .hight-product-thum {
    position: absolute;
    bottom: -10px;
    left: 87%;
    width: 190px;
    height: 290px;
    z-index: 999;
    text-align: center;
}

/*.highlight_content_3 .highlight-lft-thum-three {
    width: 40%;
    border-radius: 24px 0 0 24px;
    overflow: hidden;
    height: 325px;
}

.highlight_content_3 .highlight-lft-thum-three img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlights_content_wrapper .highlight_content_3 {
    display: flex;
    border: 1px solid none;
    border-radius: 12px;
    position: relative;
}

.highlights_content_wrapper .highlight_content_3 .chil_picture_1 {
    position: absolute;
    bottom: -45px;
    left: 917px;
    transform: rotate(21deg);
    width: 170px;
    transition: all 0.3s;
}

.highlights_content_wrapper .highlight_content_3 .leave_picture_1 img {
    width: 100%;
}

.highlights_content_wrapper .highlight_content_3 .leave_picture_1 {
    position: absolute;
    top: -14px;
    right: 0;
    transform: rotate(44deg);
    transition: all 0.3s;
}

.highlights_content_wrapper .highlight_content_3 .content_box_3 {
    padding: 50px 0 50px 39px;
    background: linear-gradient(180deg, rgba(255, 55, 0, 1), rgba(255, 102, 0, 1));
    width: 60%;
    border-radius: 0 24px 24px 0;
}*/

.highlights_content_wrapper .highlight_content .content_box h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 33px;
    color: #f6eed9;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 20px;
}

.highlights_content_wrapper .highlight_content .content_box p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #f6eed9;
}

.highlights_content_wrapper .highlight_content_2 .content_box_2 h4 {
    font-weight: 200;
    font-size: 30px;
    line-height: 33px;
    color: #f6eed9;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 20px;
}

.highlights_content_wrapper .highlight_content_2 .content_box_2 h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 33px;
    color: #f6eed9;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 20px;
}

.highlights_content_wrapper .highlight_content_2 .content_box_2 p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #f6eed9;
}

/*.highlights_content_wrapper .highlight_content_3 .content_box_3 h4 {
    font-weight: 200;
    font-size: 30px;
    line-height: 33px;
    color: #f6eed9;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 20px;
}*/

/*.highlights_content_wrapper .highlight_content_3 .content_box_3 h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 33px;
    color: #f6eed9;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 20px;
}

.highlights_content_wrapper .highlight_content_3 .content_box_3 p {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #f6eed9;
}
*/
/* Social Media */
#socaial_carousel .owl-nav {
    text-align: center;
    margin: 20px 0;
}

#socaial_carousel .owl-nav button {
    width: 36px;
    height: 34px;
    background: var(--c-red);
    color: #fff;
    font-size: 27px;
    border-radius: 4px;
    margin: 0 5px;
    line-height: 14px;
    padding: 3px 0 7px !important;
}

.social-media-explore {
    padding: 40px 0 0;
    background: url(../images/leaves1.png) right 0 no-repeat;
    background-size: contain;
}

.social-media-explore .social_bg_pic {
    position: relative;
}

.social-media-explore .social_bg_pic .social_pic img {
    width: 50%;
}

.social-media-explore .custom-head {
    text-align: center;
}

.social-media-explore .custom-head h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--c-red);
    text-transform: uppercase;
}

.social-media-explore .custom-head h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--c-black);
    text-transform: uppercase;
}

.social_carousel_wrapper {
    padding: 50px 0 20px;
}

.social_carousel_wrapper .social_carousel .item img {
    width: 100%;
    border: 1px solid none;
    border-radius: 12px;
    height: auto;
    cursor: pointer;
}

.follow_us_wrapper {
    padding: 0 0 80px 0;
    background: url(../images/leaves3.png) left 0 no-repeat;
    background-size: contain;
}

.follow_us_wrapper .follow_us_content {
    text-align: center;
    display: flex;
    gap: 0px;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 360px;
}

.follow_us_wrapper .follow_us_content .follow_us_text {
    padding: 17px 70px 17px 15px;
    line-height: 10px;
    background-color: var(--c-red);

    border: 1px solid var(--c-red);
    border-radius: 50px;
    width: 60%;
}

.follow_us_wrapper .follow_us_content .follow_us_text p {
    color: var(--c-white);
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
}

.follow_us_wrapper .follow_us_content .follow_us_icon {
    padding: 14px 0 14px 10px;
    line-height: 10px;
    background-color: var(--c-white);
    border: 1px solid var(--c-white);
    border-radius: 50px;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    width: 50%;
    margin-left: -50px;
}

.follow_us_wrapper .follow_us_content .follow_us_icon img {
    width: 18%;
    height: auto;
}


.green-lvs-lft {
    position: absolute;
    top: -204px;
    left: 0px;
    width: 150px;
}

.green-lvs-lft img {
    width: 100%;
    height: auto;
}


/* Semi-footer */
.semi_footer_wrapper {
    background:var(--c-primary-dark);
    padding: 60px 0 60px;
    position: relative;
}

.semi_footer_wrapper .news_images {
    margin: -215px 0;
}

.semi_footer_wrapper .newsletter_content {
    margin: 0px 0 0px;
    padding: 0 20px 0 0;
}

.semi_footer_wrapper .newsletter_content .input-group-text {
    background-color: var(--c-red);
    border: none;
    color: var(--c-white);
    font-weight: 600;
    font-size: 16px;
    /* line-height: 19px;*/
    text-transform: uppercase;
    letter-spacing: 1px;
}

.semi_footer_wrapper .newsletter_content .input-group {
    width: 86%;
}

.semi_footer_wrapper .newsletter_content h1 {
    font-weight: 700;
    font-size: 20px;
    line-height: 40px;
    color: var(--c-red);
    padding: 14px 0;
}

.semi_footer_wrapper .newsletter_content h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 38px;
    color: #F6EED9;
    padding: 0 0 30px 0;
    text-transform: uppercase;
}

.semi_footer_wrapper .newsletter_content .form-control {
    background-color: transparent !important;
    border: 1px solid var(--c-red) !important;
    color: var(--c-white) !important;
    padding: 12px;
}

.semi_footer_wrapper .newsletter_content .form-control::placeholder {
    color: var(--c-white);
    opacity: 1;
}

/* Footer */
.footer_wrapper {
   /* padding: 50px 0 0;
    position: relative;
    background: var(--c-black);
    color: var(--c-white);*/
}

.footer_wrapper .footer_text {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: var(--c-red);
    padding: 20px 50px 0 0;
}

.footer_wrapper .footer_title {
    font-weight: 800;
    font-size: 18px;
    line-height: 22px;
    color: var(--c-white);
}

.footer_wrapper .footer_item {
    padding: 20px 0;
}

.footer_wrapper .footer_item ul {
    display: inline-table;
    /* columns: 2; */
    -webkit-columns: 2;
    /* -moz-columns: 2; */

}

.footer_wrapper .footer_item li {
    padding: 0 0 8px;
}

.footer_wrapper .footer_item a {
    font-weight: 400;
    font-size: 15px;
    line-height: 19px;
    color: var(--c-red);
    text-transform: uppercase;
}

.footer_wrapper .footer_item a:hover {
    color: var(--c-red);

}

.footer_wrapper .footer_contact {
    padding: 20px 0;
}

/*.footer_wrapper .footer_contact .ft_item_1 {
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.footer_wrapper .footer_contact .ft_item_2 {
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}*/


.footer_wrapper .footer_contact .ft_item_1, .footer_wrapper .footer_contact .ft_item_2 {
 
    margin: 10px 0;
}
/*
.footer_wrapper .footer_contact .ft_item_2 i {
    transform: rotate(90deg);
}*/

.footer_wrapper .footer_contact .ft_item_1 .icon_text {
    font-weight: 500;
    font-size: 15px;
    line-height: 19px;
    color: var(--c-red);
    padding-left:8px;
}

.footer_wrapper .footer_contact .ft_item_2 p {
    font-weight: 500;
    font-size: 15px;
    line-height: 19px;
    color: var(--c-red);
}

.footer_wrapper .footer_contact .ft_item_2 .icon_text {
    font-weight: 500;
    font-size: 15px;
    line-height: 19px;
    color: var(--c-red);
    padding-left:8px;
}

.footer_wrapper .footer_social {
    padding: 20px 0;
}

.footer_wrapper .footer_social a {
    padding-right: 15px;
}

.footer_wrapper .footer_credits {
    background: var(--c-primary-dark);
    padding: 20px 0;
  /*  margin-top: 30px;*/
    color: var(--c-white);
    font-weight: 300;
    font-size: 15px;
    line-height: 19px;
}

body {
    overflow-x: hidden;
    width: 100%;
}

/* +=+=+=+=+=+=+=+=+=+=+=+=+=+=+= About Us Css +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= */
.about-tab {
    padding-top: 30px;
}

.custom-head-oneline {
    text-align: center;
}

.custom-head-oneline h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--c-black);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.custom-head-oneline h2 span {
    color: var(--c-red);
}

.custom-head-oneline p {
    margin-bottom: 35px;
}

.global-food-head {
    padding: 80px 0 50px;
    position: relative;
}

.global-food-head .container {
    position: relative;
}

.global-food-head .lft-chl-five {
    position: absolute;
    bottom: 24px;
    left: 0px;
    width: 260px;
}

.global-food-head .lft-chl-five img {
    width: 100%;
}

.global-food-head .gng-lv {
    position: absolute;
    bottom: 88px;
    right: 0;
    width: 190px;
    z-index: 99;
}

.global-food-head .gng-lv img {
    width: 100%;
}

.red-bar {
    background: var(--c-red);
    border-radius: 6px;
    padding: 18px 7%;
}

.red-bar h4 {
    font-size: 20px;
    text-align: center;
    color: #F6EED9;
    font-family: "Roboto", sans-serif;
    text-transform: capitalize;
}

.red-bar h2 {
    font-size: 40px;
    text-align: center;
    color: #F6EED9;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: bold;
}

.red-bar p {
    font-size: 16px;
    text-align: center;
    color: #F6EED9;
    line-height: 24px;
    margin-bottom: 15px;
}

.brand-box {
    background: #F8F6F7;
    border-radius: 6px;
    padding: 20px 24px;
    display: flex;
    gap: 15px;
    align-items: center;
    position: relative;
}

.brand-box-holder {
    padding: 0 0 40px 0;
}

.brand-box-thum {
    width: 35%;
    height: 120px;
    align-items: center;
    display: flex;
}

.brand-box-thum img {
    width: 100%;
    height: auto;
}

.brand-box-des {
    width: 65%;
}

.brand-box-des h4 {
    font-size: 20px;
    color: var(--c-black);
}

.brand-box-des p {
    font-size: 16px;
    color: #949394;
    line-height: 22px;
}

.brand-box:after {
    content: '';
    width: 100%;
    border-radius: 8px;
    background: var(--c-red);
    left: 0;
    bottom: 0;
    position: absolute;
    height: 10px;
}

.brand-box-holder .owl-nav {
    display: none;
}

.brand-box-holder .owl-dots {
    display: block;
    padding: 15px 0;
    text-align: center;
}

.brand-box-holder .owl-dots button {
    margin: 0 5px;
}

.brand-box-holder .owl-dots button.active span {
    opacity: 1;
}

.brand-box-holder .owl-dots button span {
    width: 10px;
    opacity: 0.6;
    height: 10px;
    background: var(--c-red);
    display: block;
    border-radius: 50%;
}

.brand-box-holder .owl-carousel .owl-stage-outer {
    overflow: visible;
}

.brand-box-holder {
    width: 100%;
    overflow: hidden;
}

.about_social-right-flot {
    position: fixed;
    right: 0;
    top: 12%;
    width: 50px;
    background: #fff;
    border-radius: 4px 0 0 4px;
    overflow: hidden;
    z-index: 999;
}

.about_social-right-flot .goto {
    background: var(--c-black);
    width: 100%;
    height: 48px;
    display: block;
    color: var(--c-white);
    text-align: center;
    padding-top: 15px;
    transition: all 0.3s;
}

.about_social-right-flot .goto:hover i {
    transform: scale(1.2);
}

.get-touch {
    padding: 90px 0 60px;
    text-align: center;
    color: var(--c-black);
    display: block;
    font-size: 17px;
    transition: all 0.3s;
}

.get-touch span {
    transform: rotate(-90deg);
    display: block;
    white-space: nowrap;
}

.get-touch:hover {
    transform: scale(1.2);
    color: var(--c-black);
}

.about_social-right-flot img {
    width: 100%;
    height: auto;
    transition: all 0.3s;
}

.about_social-right-flot img:hover {
    transform: scale(1.2);
}

.about_banner {
    width: 100%;
    height: 10rem;
    background-color: var(--c-black);
}

.about_banner .head_content {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.about_banner .head_content h1 {
    font-weight: 700;
    font-size: 30px;
    line-height: 32px;
    color: var(--c-white);
    text-transform: uppercase;
    padding-top: 20px;
}

.breadcumb {
    text-transform: uppercase;
}

.head_content .breadcumb ul {
    display: flex;
    gap: 10px;
}

.head_content .breadcumb li {
    color: var(--c-red);
    font-weight: 700;
    font-size: 15px;
    line-height: 42px;
    margin: 0;

}

.head_content .breadcumb li a {
    color: var(--c-red);
    font-weight: 700;
    font-size: 15px;
    line-height: 42px;
}


.about_banner .head_content h5 {
    color: var(--c-red);
    font-weight: 700;
    font-size: 30px;
    line-height: 42px;
}

.about_banner .head_content h5 a {
    color: var(--c-red);
    font-weight: 700;
    font-size: 30px;
    line-height: 42px;
}

.essense_wrapper {
    padding: 50px 0;
}

.essense_wrapper .essence_content_1 h1 {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 60px;
    line-height: 70px;
    color: var(--c-black);
    padding-bottom: 20px;
}

.essense_wrapper .essence_content_1 h1 span {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 60px;
    line-height: 70px;
    color: var(--c-red);
}

.essense_wrapper .essence_content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: var(--c-black);
    padding: 15px 0;
}

.testimonial_wrapper {
    padding: 10px 0;
}

.testimonial_wrapper .front-pro-top {
    padding: 90px 0 50px;
    background-image: url(../images/chl-right.png);
    background-position: right center, left center;
    background-repeat: no-repeat, no-repeat;
    background-size: 12%;
}

.testimonial_carousel_wrapper {
    padding: 0 0 20px;
}

.testimonial_carousel_wrapper .testimonial_content {
    overflow: hidden;
}

.testimonial_carousel_wrapper .owl-carousel .owl-stage-outer {
    overflow: visible;
}


#testimonial_carousel .owl-dots {
    width: 90%;
    margin: 25px auto;
}

#testimonial_carousel .owl-nav {
    text-align: center;
    margin: 20px 0;
}

#testimonial_carousel .owl-nav button {
    width: 36px;
    height: 34px;
    background: var(--c-red);
    color: #fff;
    font-size: 27px;
    border-radius: 4px;
    margin: 0 5px;
    line-height: 14px;
    padding: 3px 0 7px !important;
}

#testimonial_carousel .owl-dots .owl-dot {
    display: none;
    zoom: 1;
}

#testimonial_carousel .owl-dots .owl-dot.active span {
    background: var(--c-red);
    border-radius: 10px;
}

#testimonial_carousel .owl-dot {
    display: inline-block;
    zoom: 1;
    width: 33%;
}

#testimonial_carousel .owl-dots .owl-dot span {
    background: #f2adae;
}

#testimonial_carousel .owl-dots .owl-dot span {
    width: 100%;
    height: 5px;
    margin: 5px 0px;
    display: block;
    -webkit-backface-visibility: visible;
    padding: 3px;
}

.testimonial_carousel_wrapper .testi_content_box {
    padding: 30px 30px 55px;
    background: var(--c-red);
    display: flex;
    gap: 10px;
    border-radius: 30px;
    min-height: 265px;
    overflow: hidden;
}

.testimonial_carousel_wrapper .testi_content_box .testi_pic {
    width: 20%;
}

.testi_content_box .testi_pic .user-thum {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 0;
}

.testimonial_carousel_wrapper .testi_content_box .testi_pic img {
    width: 100%;
    height: auto;
}

.testimonial_carousel_wrapper .testi_content_box .testi_text {
    width: 80%;
}

.testimonial_carousel_wrapper .testi_content_box .testi_text h3 {
    padding-bottom: 2px;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: var(--c-white);
}

.testimonial_carousel_wrapper .testi_content_box .testi_text h6 {
    padding-bottom: 10px;
    font-weight: 700;
    font-size: 15px;
    line-height: 22px;
    color: #f6ced3;
    font-family: "Roboto", sans-serif;
}

.testimonial_carousel_wrapper .testi_content_box .testi_text p {
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
    color: var(--c-white);
}

.about_mid_content_wrapper {
    padding: 0px 0 0;
}

.about_mid_content_wrapper .mid_content_pic_1 {
    border-radius: 25px;
    overflow: hidden;
}

.about_mid_content_wrapper .mid_content_pic_2 {
    border-radius: 25px;
    overflow: hidden;
    padding-top: 5px;
}

.about_mid_content_wrapper .mid_content_box_1 {
    margin-bottom: 20px;
}

.about_mid_content_wrapper .mid_content_box {
    margin-top: 0px;
    padding-left: 20px;
}

.about_mid_content_wrapper .mid_content_title {
    font-weight: 700;
    font-size: 30px;
    line-height: 43px;
    color: var(--c-black);
    text-transform: uppercase;
    padding-bottom: 6px;
}

.about_mid_content_wrapper .mid_content_text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--c-black);
    padding-bottom: 20px;
}

.about_mid_content_wrapper p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--c-black);
    padding-bottom: 12px;
}

.about_mid_content_wrapper ul li {
    list-style-type: disc;
    color: var(--c-black);
    font-size: 16px;
    font-family: "Roboto", sans-serif;
}

.about_mid_content_wrapper ul {
    margin-left: 20px;
}

.about_mid_content_wrapper ul li span {
    font-weight: 600;
    color: var(--c-black);
    font-size: 18px;
}

.social-media-explore .lft-chl-social {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 170px;
}

.social-media-explore .lft-chl-social img {
    width: 100%;
}

.social-media-explore .container {
    position: relative;
}

/*-----------------------About tab-----------------------------*/
.about-tab .hori_tab_nav {
    display: grid;
}

.hori_tab_nav {
    border-radius: 20px;
    border: #ffffff;
    text-align: center;
    align-items: center;
    display: flex;
    padding: 5px 0;
    background: rgb(217 217 217 / 7%);
}

.nav .nav-item button.active {
    background-color: transparent;
    color: #FFFFFF !important;
}

.nav .nav-item button.active::after {
    content: "";
    border-bottom: 4px solid var(--bs-danger);
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -5px;
    border-radius: 5px;
    border-width: 6px;
}

.nav-pills .nav-link {
    font-size: 20px;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 1px;
}

.tab-content .tab-pane .tab_box {
    display: flex;
    gap: 44px;
}

.tab-content .tab-pane .tab_box .tab_box_pic {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    width: 40%;
}

.tab-content .tab-pane .tab_box .tab_box_text {
    width: 60%;
    margin: 45px 0;
}

.tab-content .tab-pane .tab_box .tab_box_text h1 {
    font-weight: 700;
    font-size: 20px;
    line-height: 36px;
    color: #FFFFFF;
    text-transform: uppercase;
}

.tab-content .tab-pane .tab_box .tab_box_text p {
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    color: #F6ECD7;
    padding-top: 15px;
}

.tab-content .tab-pane .tab_box .tab_box_text p:first-child {
    padding-top: 15px;
}

.tab-content .tab-pane .tab_box .tab_box_text ol, .tab-content .tab-pane .tab_box .tab_box_text ul   {
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    color: #F6ECD7;
    padding-top: 15px;
}
.tab-content .tab-pane .tab_box .tab_box_text ol li, .tab-content .tab-pane .tab_box .tab_box_text ul li  {
    list-style: auto!important;
}
.testi-top-hd {
    padding: 50px 0 50px;
    position: relative;
}

.testi-top-hd .rit-chl-two {
    right: 0;
    width: 200px;
    /* rotate: 30deg;*/
}

.news-letter-pic {
    position: relative;
}

.news-letter-pic .rit-chl-two {
    top: -203px;
    right: 123px;
    width: 150px;
}

/*---------------------------category----------------------------*/
.product_head_wrapper {
    padding: 40px 0;
}

.prod_pic_wrapper {
    padding: 0px 0 180px;
}

.prod_pic_wrapper .product-category-content ul {
    /*display: grid; 
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;*/
}

.prod_pic_wrapper .product-category-content ul li {
    float: left;
    width: 23%;
    margin: 10px;
}

.product-category-content ul li .prod-title h3 a {
    font-weight: 600;
    font-size: 24px;
    color: var(--c-white);
    padding: 0 0 10px;
    text-align: center;
}

.prod_pic_wrapper .product-category-content ul li .prod-thumb img {
    transition: all 0.3s;
}

.prod_pic_wrapper .product-category-content ul li .prod-thumb img:hover {
    transition: transform .2s;
    transform: scale(1.2);
}

.prod_pic_wrapper .product-category-content .category-item-holder {
    border-radius: 23px;
    height: 300px;
    /* align-items: center;*/
    display: grid;
}

.prod_pic_wrapper .product-category-content .prod-thumb {
    position: relative;
    overflow: hidden;
}

.prod_pic_wrapper .product-category-content .prod-thumb a {
    display: block;
    z-index: 9;
    position: relative;
}

.prod_pic_wrapper .product-category-content .prod-thumb a img {
    height: 200px;
}

.prod_pic_wrapper .product-category-content .prod-thumb .title-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;


}

.prod_pic_wrapper .product-category-content .prod-thumb .title-bg h2 {
    font-size: 60px;
    color: #fff;
    text-align: center;
}

.prod_pic_wrapper .product-category-content ul li .category-item-holder {
    background: linear-gradient(180deg, rgba(135, 8, 48, 1), rgba(218, 49, 103, 1));
}

.prod_pic_wrapper .product-category-content ul li:nth-child(1) .category-item-holder {
    background: linear-gradient(180deg, rgba(135, 8, 48, 1), rgba(218, 49, 103, 1));
}

.prod_pic_wrapper .product-category-content ul li:nth-child(2) .category-item-holder {
    background: linear-gradient(180deg, rgba(74, 155, 55, 1), rgba(108, 205, 85, 1));
}

.prod_pic_wrapper .product-category-content ul li:nth-child(3) .category-item-holder {
    background: rgba(210, 118, 65, 1);
}

.prod_pic_wrapper .product-category-content ul li:nth-child(4) .category-item-holder {
    background: rgba(177, 52, 53, 1);
}

.prod_pic_wrapper .product-category-content ul li:nth-child(5) .category-item-holder {
    background: linear-gradient(180deg, rgba(74, 155, 55, 1), rgba(108, 205, 85, 1));
}

.prod_pic_wrapper .product-category-content ul li:nth-child(6) .category-item-holder {
    background: rgba(197, 5, 108, 1);
}

.prod_pic_wrapper .product-category-content ul li:nth-child(7) .category-item-holder {
    background: rgba(170, 99, 0, 1);
}

.prod_pic_wrapper .product-category-content ul li:nth-child(8) .category-item-holder {
    background: rgba(133, 8, 121, 1);
}

.prod_pic_wrapper .product-category-content ul li:nth-child(9) .category-item-holder {
    background: rgba(231, 145, 66, 1);
}

.category-item-holder .prod-title {
    padding: 0 25px;
    text-align: center;
}

/*----------------------Product Listing---------------*/
#myModal .modal-dialog {
    width: 50%;
}

.enq-frm h2 {
    color: var(--c-red);
    font-size: 20px !important;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 15px 0;
}

.enq-frm form img {
    width: 100%;
    height: auto;
}

.product-listing-wrapper {
    padding: 40px 0 100px;
}

.product-listing-wrapper .product-list-box {
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 35%, rgba(255, 254, 249, 1) 100%);
    border-radius: 8px;
    height: auto;
    margin-bottom: 50px;
    padding-top: 5px;
}

#product-brand-logo {
    padding: 50px 0;
}

.product-logo-box .product-logo-pic img {
    filter: grayscale(100%);
    width: 100%;
}

.product-logo-box:hover .product-logo-pic img {
    filter: grayscale(0%);
    cursor: pointer;
}

.product-logo-box .product-logo-content::before {
    content: '';
    width: 100%;
    border-radius: 8px;
    background: var(--c-red);
    left: 0;
    bottom: 28px;
    position: absolute;
    height: 5px;

}

.product-list-box ul.mother-tab {
    border: 0 !important;
}

.product-list-box ul.mother-tab li.nav-item {
    width: 12%;
}

.product-list-box ul.mother-tab li button {
    padding: 0;
    position: relative;
    border: 0;
}

.product-list-box ul.mother-tab li.nav-item button.active:before {
    content: '';
    width: 100%;
    border-radius: 8px;
    background: var(--c-red);
    left: 0;
    bottom: -3px;
    position: absolute;
    height: 5px;

}


.product-list-box .hori_tab_nav ul li.nav-item {
    margin: 0 10px 0 0;
}

.product-list-box .hori_tab_nav {
    border-bottom: 0px solid #d4d1ca;
    padding: 4px 10px;
    border-radius: 0;
    background: var(--c-red);
    border-radius: 50px;
}

.product-list-box .all-category-link {
    margin-right: 0;
}

.product-list-box .all-category-link a {
    background: #de4c5d;
    border-radius: 40px;
    display: block;
    padding: 22px 30px;
    color: var(--c-white);
    text-transform: uppercase;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.product-list-box .all-category-link a:hover {
    background: var(--c-white);
    color: var(--c-red);
}

.product-logo-box .product-logo-content {
    display: grid;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    padding-top: 15px;
    width: 100%;
    position: relative;
}

.product-logo-box:hover .product-logo-content {
    visibility: visible;
}

.nav-item button.active .product-logo-box .product-logo-content {
    visibility: visible;
}

.nav-item button.active .product-logo-box .product-logo-pic img {
    filter: grayscale(0%);
    cursor: pointer;
}

.product-list-box .nav .nav-item button.active::after {
    display: none;
}

.product-logo-box .product-logo-content ul {
    display: inline-flex;
    gap: 5px;
}

.product-logo-box .product-logo-content ul li {
    border-right: 3px solid var(--c-grey);
    padding-right: 4px;
    align-items: center;
    display: flex;
}

.product-list-box .nav-pills .nav-link {
    width: 100%;
    padding: 0;
}

.product-logo-box .product-logo-content ul li:last-child {
    border: none;
}

.product-logo-box .product-logo-content ul li a {
    color: var(--c-grey);
    font-weight: 800;
    font-size: 13px;
    line-height: 19px;
    letter-spacing: 0;
}

.product-logo-box .product-logo-content ul li a:hover {
    color: var(--c-red);
}

.product-list-box .nav-pills .product-logo-box {
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    background: #da3549;
    border-radius: 40px;
    padding: 4px 30px;
    text-transform: uppercase;
}

.product-list-box .nav-pills li:hover .product-logo-box {
    background: #fff;
    color: var(--c-red);
}

.product-list-box .nav-pills li button.active .product-logo-box {
    background: #fff;
    color: var(--c-red);
}

.product-listing-wrapper .product-list-box .product-hr {
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-listing-wrapper .product-list-box .product-hr hr {
    width: 1311px;
    color: var(--c-black);
    height: 3px;
    opacity: 10%;
}



.prod-listing-items {
    display: grid;
    grid-template-columns: repeat(5, 3fr);
    grid-template-rows: auto;
    margin-top: 30px;
    grid-gap: 20px;
}

.prod-listing-holder {
    background: url(../images/prod-listing-bg.webp);
    background-size: cover;
    border-radius: 15px;
}

.prod-listing-holder .prod-listing-content {
    background: var(--c-greyish-white);
    margin-top: 80%;
    position: relative;
    border-radius: 10px 10px;
}

.prod-listing-holder .prod-listing-content .prod-listing-thumb {
    position: relative;
    margin-top: -30px;
    top: 71px;
}

.prod-listing-holder .prod-listing-content .prod-listing-thumb img {
    margin-top: -75%;
}

.prod-listing-holder .prod-listing-category {
    background-color: var(--c-red);
    padding: 7px 15px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    margin: 15px 10px;
    min-width: 122px;
}

.prod-listing-holder .prod-listing-category h3 {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--c-white);
    font-family: "Roboto", sans-serif;
}

.prod-listing-holder .prod-listing-card {
    padding: 80px 15px 10px;
    border-radius: 15px;
}

.prod-listing-holder .prod-listing-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
}

.prod-listing-holder .prod-listing-hr {
    width: 90%;
    color: var(--c-grey);
}

.prod-listing-holder .prod-listing-hr hr {
    height: 3px;
}

.prod-listing-holder .prod-listing-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
    padding: 0;
    border-top: 1px solid #ccc;
}

.prod-listing-holder .prod-listing-title h2 {
    font-weight: 800;
    font-size: 20px;
    margin: 0;
    color: var(--c-red);
    padding: 10px 0;
    text-align: left;
}

.prod-listing-holder .prod-listing-button {
    text-align: center;
}

.prod-listing-holder .prod-listing-button .vew-details-btn {
    background-color: #f7d4d8;
    border-radius: 10px;
    width: 100%;
    padding: 13px;
    border: 0;
    font-size: 14px;
    color: var(--c-red);
    font-weight: 600;
    display: inline-block;
    font-family: "Roboto", sans-serif;
    transition: all 0.3s;
}

.prod-listing-holder .prod-listing-button .vew-details-btn:hover {
    background: var(--c-primary-dark);
    color: var(--c-white);
}

.prod-listing-holder .prod-listing-button button i {
    font-size: 14px;
    color: var(--c-red);
    margin-left: 15px;
}

.prod-listing-holder .prod-listing-button button:hover i {
    color: var(--c-white);
}

.product-list-box .modal.show .modal-dialog {
    top: 10%;
    max-width: 1220px;
}

.popup-product-details h2 {
    color: var(--c-red);
    font-size: 30px;
    font-weight: 600;
    text-align: left;
    margin: 0 0 15px;
}

#exampleModal .owl-dots {
    display: none;
}

.popup-product-details p {
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    color: var(--c-grey);
    margin-bottom: 8px;
    line-height: 22px;
}

.popup-product-details .product-video {
    border-radius: 10px;
    overflow: hidden;
}

.popup-product-details .product-video video {
    object-fit: cover;
    width: 100%;
    height: 450px;
    margin: 0;
    padding: 0;
    border-radius: 10px;
}

.prod-listing-items .modal-header {
    margin-right: 0;
    border: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 99;
}

.popup-pro-dscription {
    padding-left: 20px;
}

.dscription-content-txt {
    height: 120px;
}

.popup-pro-dscription p {
    padding-right: 40px;
}

.popup-pro-dscription .description-icons {
    background-color: #f7d4d8;
    border-radius: 10px;
    padding: 20px;

    transition: all 0.3s;
    margin-top: 20px;
}

.top-icon-box {
    display: flex;
    padding-bottom: 15px;
}

.cer-icon-box {
    background: #FFCB41;
    padding: 5px 0 0;
    display: flex;
    border-radius: 6px;
    gap: 10;
    justify-content: center;
}

.cer-icon-box a {
    margin: 0;
    display: block;
}

.cer-icon-box img {
    width: 75% !important;
    height: auto;
}

.pop-icon-text-box {
    padding-top: 15px;
}

.pop-icon-text-box ul {
    display: flex;
    gap: 10px;
    justify-content: center;
    color: var(--c-red)
}

.pop-icon-text-box ul li {
    color: var(--c-red);
    font-weight: 900;
    font-size: 16px;
    line-height: 23px;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.prod-listing-items .modal-header a {
    display: block;
}

.prod-listing-items .modal-header a img {
    width: 100%;
}

.prod-listing-items .owl-carousel .item {
    padding: 0 30px;
}

.prod-listing-items .owl-carousel .owl-nav .owl-prev:before {
    color: var(--c-red);
    font-size: 18px;
    content: "←";
    position: absolute;
    top: 50%;
    left: 7px;
}

.prod-listing-items .owl-carousel .owl-nav .owl-next:after {
    color: var(--c-red);
    font-size: 18px;
    content: "→";

    position: absolute;
    top: 50%;
    right: 7px;
}

.prod-listing-items .owl-carousel .owl-nav span {
    display: none;
}

.product-listing-wrapper .product-list-box .product-icon-content {
    border-radius: 24px;
    background-color: #f7d4d8;
    padding: 10px 0px 0;
    position: relative;
}

#pro-brand-slider .owl-dots {
    display: none;
}

#pro-brand-slider {
    margin-bottom: 6px;
}

.product-container {
    width: 100%;
}

.product-listing-wrapper .product-list-box .product-icon-content .icon-box-content {
    margin-bottom: 0px;
    /* width:98%;*/
    padding: 0 145px;
    padding-bottom: 0px;
}

#pro-brand-slider .owl-carousel .owl-item img {
    width: 80%
}

.product-listing-wrapper .product-list-box .product-icon-content .icon-box-content ul {
    display: grid;
    grid-template-columns: repeat(7, 7fr);
    justify-content: center;
    align-items: center;
    grid-gap: 10px;
}

#pro-brand-slider .owl-nav {
    text-align: center;
    margin: 20px 0;
}

#pro-brand-slider .owl-nav button {
    width: 36px;
    height: 36px;
    background: var(--c-red);
    color: #fff;
    font-size: 27px;
    border-radius: 4px;
    margin: 0 5px;
    line-height: 14px;
}



/*-----------------scroll css https://codepen.io/gvzq/pen/OJVvzJz-----------------------*/


/*--------------scrollCss End-------------------*/

.product-listing-wrapper .product-list-box .product-icon-content .icon-box-content ul li {
    width: 100px;
}

.product-listing-wrapper .product-list-box .product-icon-content .icon-text-box {
    background-color: #FFCB41 !important;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /*position: absolute;*/
    width: 100%;
    top: 73%;
    left: 0;
    border-radius: 0 0 20px 20px;
}

.product-listing-wrapper .product-list-box .product-icon-content .icon-text-box ul {
    display: flex;
    gap: 20px;
}

.product-listing-wrapper .product-list-box .product-icon-content .icon-text-box ul li {
    color: var(--c-black);
    font-weight: 900;
    font-size: 16px;
    line-height: 23px;
    text-transform: uppercase;
    border-right: 3px solid var(--c-black);
    padding-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-listing-wrapper .product-list-box .product-icon-content .icon-text-box ul li:last-child {
    border: none;
}

/*----------------Food Service--------------------*/
.service-food {
    padding: 50px 0 10px;
}

.service-food-head .container {
    position: relative;
}

.service-food-head .lft-chl-five {
    position: absolute;
    top: -38px;
    left: -46px;
    width: 130px;
}

.service-food-head .lft-chl-five img {
    width: 100%;
}

.service-food-head .rit-chl-two {
    position: absolute;
    top: -26px;
    right: -59px;
    width: 180px;
}

.service-food-head .rit-chl-two img {
    width: 100%;
}

.store-category {
    padding-bottom: 70px;
}

.store-category-holder {
    display: flex;
    gap: 10px;
}

.store-category-holder .store-cateory-box {
    width: 20%;
    height: 285px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.store-category-holder .store-cateory-box img {
    width: 100%;
    height: 100%;
    object-content: cover;
    transition: all 0.3s
}

.store-category-holder .store-cateory-box .title {
    position: absolute;
    width: 100%;
    bottom: 20px;
    left: 0;
    z-index: 9;
    padding: 0 10px;
    text-align: center;
    color: var(--c-white);
}

.store-category-holder .store-cateory-box .title h2 {
    font-family: Roboto;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.store-category-holder .store-cateory-box:after {
    position: absolute;
    width: 100%;
    content: '';
    bottom: 0;
    left: 0;
    height: 30%;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.81) 100%);
    z-index: 1;
}

.store-category-holder .store-cateory-box img:hover {
    transition: transform .2s;
    transform: scale(1.1);
}

.bulk-pack-thum img {
    width: 100%;
    height: auto;
}

.feature-scroller {
    height: 412px;
    padding-top: 20px;
    padding-right: 10px;
}

.feature-scroller .icon-text-box {
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 25px;
    border-radius: 10px;
    padding: 18px 25px;
    background: rgb(28, 31, 40);
    background: linear-gradient(90deg, rgba(28, 31, 40, 1) 0%, rgba(69, 33, 50, 1) 100%);
    margin-bottom: 10px;
}

.icon-text-box .icon-box {
    width: 60px;
    height: 60px;
}

.icon-text-box .icon-text h2 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
    text-decoration: underline;
}

.icon-text-box .icon-text p {
    color: #ccc;
    font-size: 15px;
    line-height: 21px;
}

.thum-txt-box {
    padding: 50px 0 170px;
}

.thum-txt-box .mid_content_title {
    font-weight: 700;
    font-size: 30px;
    line-height: 43px;
    color: var(--c-black);
    text-transform: uppercase;
    padding-bottom: 20px;
}

.thum-txt-box .mid_content_text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--c-black);
    padding-bottom: 20px;
}

.thum-txt-box .mid_content_pic_2 {
    margin-top: 0px;
    border-radius: 24px;
    overflow: hidden;
}

.thum-txt-box .mid_content_box {

    padding: 50px 20px 0;
}

.thum-txt-box .mid_content_pic_1 {
    border-radius: 24px;
    overflow: hidden;
}

.thum-txt-box .mid_content_pic_2 img {
    width: 100%;
    height: auto;
}

.thum-txt-box .mid_content_pic_1 img {
    width: 100%;
    height: auto;
}

.thum-txt-box .mid_content_box_1 {
    padding: 0 20px 0;
}

/* ===== Scrollbar CSS ===== */

.longEnough {
    scrollbar-width: 4px;
    scrollbar-color: #D9D9D9 #35202e !important;

}


.longEnough::-webkit-scrollbar {
    width: 4px;
}

.longEnough::-webkit-scrollbar-track {
    background: #4b3b47 !important;

}

.longEnough::-webkit-scrollbar-thumb {
    background-color: #4b3b47;
    border-radius: 10px;
    border: 3px solid #35202e;
}

.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {

    background-color: #d9d9d9 !important;
}

.mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #433440 !important;
    width: 4px;
}

/*------------------------Distribution Page---------------------*/
.distribution-slider {
    padding: 40px 0 0px;
}

.distribution-slider-thum {
    height: 410px;
    overflow: hidden;
    border-radius: 10px;
}

#distribution-slider {
    height: 470px;
    overflow: hidden;
}

#distribution-slider .owl-nav {
    text-align: center;
    margin: 20px 0;
}

#distribution-slider .owl-nav button {
    width: 36px;
    height: 36px;
    background: var(--c-red);
    color: #fff;
    font-size: 27px;
    border-radius: 4px;
    margin: 0 5px;
    line-height: 14px;
}

.distribution-slider-thum img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.distribution-slider .item {
    height: 410px;
    overflow: hidden;
    border-radius: 15px;
}

.distribution-slider-thum img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.distribution-slider .owl-carousel .owl-stage-outer {
    overflow: visible;
}

.distribution-slider {
    width: 100%;
    overflow: hidden;
}

#distribution-slider .owl-nav {
    display: bolck;
    text-align: center;
    margin: 20px 0;
}

#distribution-slider .owl-nav button {
    width: 36px;
    height: 34px;
    background: var(--c-red);
    color: #fff;
    font-size: 27px;
    border-radius: 4px;
    margin: 0 5px;
    line-height: 14px;
    padding: 3px 0 7px !important;
}

.distribution-slider .owl-carousel.owl-drag .owl-item:nth-child(2) {
    opacity: 0;
}

.distribution-slider .owl-carousel.owl-drag .owl-item:nth-child(3) {
    width: 750px !important;
}

.distribution-slider .owl-carousel.owl-drag .owl-item:nth-child(4) {
    width: 400px !important;
}

.distribution-content {
    padding: 0 0 20px;
}

.side-custom-head h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--c-black);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.side-custom-head h2 span {
    display: block;
    color: var(--c-red);
}

.side-description p {
    margin-bottom: 26px;
}

/*-------------------------contact form-----------------------*/
.contact-frm-sec {
    padding: 0 0 150px;
}

.form-holder {
    background: var(--c-white);
    padding: 25px 20px;
    border-radius: 20px;
}

.from-thum img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.small-leftcustom-head {
    padding: 20px 0 40px;
}

.small-leftcustom-head h4 {
    color: var(--c-red);
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
}

.small-leftcustom-head h3 {
    color: var(--c-black);
    font-size: 30px;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.small-leftcustom-head p {
    color: var(--c-grey);
    font-size: 16px;
    font-weight: 400;
    text-align: left;
}

.form-section input[type="text"],
.form-section input[type="email"] ,
.form-section select {
    border-radius: 0;
    background: #f0f0f0;
    border: 0;
    padding: 15px 20px;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
}

.form-section textarea {
    border-radius: 0;
    background: #f0f0f0;
    border: 0;
    padding: 15px 20px;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    height: 53px;
}

#inputGroupPrepend {
    background: none;
    position: absolute;
    left: 10px;
    top: 10px;
    border: 0;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
}

.form-section input[type="text"].phone {
    padding-left: 65px;
}

/*---------------contact page----------------------*/
.contact-information-holder {
    padding: 60px 0 30px;
}

.contact-info .info {
    font-family: Inter;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.info-txt {
    width: 80%;
    padding-left: 8px;
}

.contact-info {
    padding: 40px 0 0 30px;
}

.contact-info h2 {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.contact-info .info i {
    width: 40px;
    height: 40px;
    background: var(--c-red);
    border-radius: 50%;
    color: var(--c-white);
    text-align: center;
    padding-top: 11px;
}

.contact-info .info p {
    font-size: 16px;
    line-height: 22px;
    font-family: "Inter", serif;
}

.contact-info .info p strong {
    font-weight: 700;
    display: block;
}

.contact-info .info a {
    font-size: 16px;
    line-height: 22px;
    color: var(--c-black);
    font-family: "Roboto", sans-serif;
    font-weight: normal;
}

.contact-sub-btn {
    align-items: center;
    display: flex;
}

/* ----------------------------Our Facility Css ----------------------------------- */
.facility_head_wrapper {
    padding: 30px 0 10px;
}

.facility-gallery-wrapper {
    padding: 10px 0 80px;
}

.wht-round-box {
    background: var(--c-white);
    border-radius: 20px;
    padding: 20px;
}

.facility-lst .nav .nav-item button.active {
    color: var(--c-white);
    background: var(--c-red);
}

.facility-lst .nav-pills {
    width: 400px;
}

.facility-lst .nav-pills li {
    display: block;
    width: 100%;
    margin: 0 0 8px;
    padding-right: 0px;
}

.facility-lst .nav-pills li button {
    background: #fbe9eb;
    border-radius: 15px;
    font-size: 16px;
    color: var(--c-black) !important;
    font-weight: 400 !important;
    font-family: "Roboto", sans-serif;
    display: block;
    width: 100%;
    text-align: left;
    letter-spacing: 0;
    line-height: 22px;
    padding: 13px 30px;
}

.facility-lst .nav-pills li button:hover {
    color: var(--c-white);
    background: var(--c-red);
}

.facility-lst .nav .nav-item button.active::after {
    display: none;
}

.facility-lst .facility-tab-thum {
    border-radius: 15px;
    overflow: hidden;
}

.facility-lst .facility-tab-thum img {
    width: 100%;
    height: auto;
}

.facility-lst .facility-tab-describtion {
    padding: 20px 15px;
}

.facility-lst .tab-content {
    padding: 0 0 0 15px;
}

.facility-lst .facility-tab-head {
    height: 400px;
}

.facility-lst .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #d61f35 !important;
}

.facility-lst .mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #d9d9d9 !important;
    width: 4px;
}

.mfp-title {
    font-size: 20px;
}

/* ---------------------------- Blog Css-------------------------*/
.blog-listing-wrapper {
    padding: 70px 0 180px;
}

.blog-listing-wrapper .blog-listing-holder {
    display: grid;
    grid-gap: 20px;
}

.blog-listing-wrapper .blog-listing-holder .blog-list {
    background-color: var(--c-white);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    gap: 25px;
}

.blog-listing-holder .blog-list .blog-thumb {
    border-radius: 15px;
    overflow: hidden;
    width: 40%;
    height: auto;
}

.blog-listing-holder .blog-list .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-listing-wrapper .blog-listing-holder .blog-list .blog-text-content .blog-listing-category {
    background-color: var(--c-red-light);
    padding: 8px 15px;
    border-radius: 18px;
}

.blog-listing-wrapper .blog-listing-holder .blog-list .blog-text-content .blog-listing-category a {
    font-weight: 700;
    font-size: 13px;
    line-height: 15px;
    color: var(--c-red);
}

.blog-listing-wrapper .blog-listing-holder .blog-list .blog-text-content {
    margin-top: 8px;
    width: 60%;
}

.blog-listing-wrapper .blog-listing-holder .blog-list .blog-text-content h2 {
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    color: var(--c-black);
    padding-bottom: 6px;
    margin-top: 15px;
}

.blog-listing-wrapper .blog-listing-holder .blog-list .blog-text-content span {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #7e7c7c;
}

.blog-listing-wrapper .blog-listing-holder .blog-list .blog-text-content p {
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    padding-top: 20px;
    color: #555555;
}

.blog-listing-wrapper .blog-listing-holder .blog-list .blog-text-content p a {
    color: var(--c-red);
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
}

.blog-listing-wrapper .side-bar-container .side-search-box {
    padding: 30px 20px;
    background-color: var(--c-red-light);
    border-radius: 15px;
}

.side-search-box .input-group button {
    background: none;
    position: absolute;
    right: 0;
    top: 0;
    aspect-ratio: 2;
    height: 47px;
    border: none;
    z-index: 99;
    width: 45px;
}

.side-bar-container .side-search-box .form-control {
    padding: 0.7rem .75rem !important;
    border: 0;
    font-family: "Roboto", sans-serif;
    border-radius: 4px !important;
}

.side-bar-container .side-categories-box {
    padding: 30px 20px;
    background-color: var(--c-red-light);
    border-radius: 15px;
}

.side-bar-container .side-categories-box h3 {
    font-weight: 700;
    font-size: 22px;
    color: var(--c-red);
    text-transform: uppercase;
    margin-bottom: 0px;
}

.side-bar-container .side-categories-box ul {
    padding: 15px 0 0;
}

.side-bar-container .side-categories-box li {
    padding-bottom: 10px;
}

.side-bar-container .side-categories-box li a {
    font-weight: 600;
    font-size: 14px;
    line-height: 25px;
    color: #312b28;
    text-transform: uppercase;
}

/*---------------------Privacy policy-------------------------*/

.policy-sec {
    padding: 40px 0 160px;
}

.custom-content-body p {
    color: #31302b;
    font-size: 18px;
    margin-bottom: 8px;
    font-family: "Roboto", sans-serif;
    line-height: 28px;
}

.custom-content-body h2 {
    color: #31302b;
    font-size: 24px;
    font-family: "Roboto", sans-serif;
    margin: 30px 0 15px;
}

.custom-content-body h3 {
    color: #31302b;
    font-size: 10px;
    font-family: "Roboto", sans-serif;
    margin: 30px 0 15px;
}

.custom-content-body ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.custom-content-body ul li {
    color: #31302b;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    line-height: 28px;
    list-style-type: disc;
}

.privacy-policy-content {
    height: 650px;
}

.privacy-policy-content .mCSB_container {
    padding-right: 60px;
}


.privacy-policy-content .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {

    background-color: #d61f35 !important;
}

.privacy-policy-content .mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
    background-color: #d9d9d9 !important;
    width: 4px;
}

/*--------------------------blog details-------------------------*/
.blog-listing-wrapper .blog-listing-holder .blog-list-1 {
    display: table;
    background-color: var(--c-white);
    border-radius: 20px;
    padding: 15px;
}

.blog-listing-holder .blog-list-1 .blog-thumb {
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    height: 500px;
    margin-bottom: 50px;
}

.blog-listing-holder .blog-list-1 .blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-listing-holder .blog-list-1 .blog-text-content .blog-listing-category {
    background-color: var(--c-red-light);
    padding: 8px 15px;
    border-radius: 18px;
}

.blog-listing-holder .blog-list-1 .blog-text-content .blog-listing-category a {
    font-weight: 700;
    font-size: 13px;
    line-height: 15px;
    color: var(--c-red);
}

.blog-listing-holder .blog-list-1 .blog-text-content {
    margin-top: 8px;
}

.blog-listing-holder .blog-list-1 .blog-text-content h2 {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: var(--c-black);
    padding-bottom: 6px;
    margin-top: 15px;
}

.blog-listing-holder .blog-list-1 .blog-text-content span {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #747474;
    font-family: Roboto;
}

.blog-listing-holder .blog-list-1 .blog-text-content p {
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    padding: 15px 0;
    color: #555555;
}

/*select 2 design*/
.select2-container--default .select2-selection--single {
    border:0!important;
    background-color: transparent!important;
}

/*.select2-container {
    border-radius: 0!important;
    background: #f0f0f0!important;
    border: 0!important;
    padding: 15px 20px!important;
    color: #000!important;
    font-weight: 500!important;
    font-size: 16px!important;
    font-family: "Roboto", sans-serif!important;
}*/
/*.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 58px;
    position: absolute;
    top: 1px;
    right: 8px;
    width: 20px;
}*/
.select2-dropdown{
    box-shadow: 1px 1px 10px 4px;
}

/*Select 2*/

#waitOverlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(255,255,255,0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.waitMessage {
  font-size: 20px;
  font-weight: bold;
  color: #2e7d32;
}