/* index page css */
@charset "utf-8";

/* CSS Document */
/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins: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');

@import url('https://fonts.googleapis.com/css2?family=Fira+Sans: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&family=Outfit:wght@100..900&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Lustria&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6, ul, .ul, ol, .ol, li, p, .p {
    padding: 0;
    margin: 0;
}

.dropdown-toggle::after {
    display: none;
}

@font-face {
    font-family: 'ywsbs-icon';
    src: url('../fonts/ywsbs-icon.eot');
    src: url('../fonts/ywsbs-icon.eot#iefix') format('embedded-opentype'),
    url('../fonts/ywsbs-icon.ttf') format('truetype'),
    url('../fonts/ywsbs-icon.woff') format('woff'),
    url('../fonts/ywsbs-icon.svg#ywsbs-icon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

:root {
    /* --theme-color: #f41e1e; */
    --theme-color: #efa697;
    --text-color-primary: #F7EBED;
    --theme-color-ultra: #F0386B;
    --theme-color-secondary: #9d7c76;
    --text-color-dark: #727475;
    --heading-font:  "Lustria", serif;
    --theme-color-midgrey: #f7f7f7;
    --theme-color-black: #000;
    --text-color-white: #fff;
    --font48:48px;
    --font36:36px;
    --font24:24px;
    --font18:18px;
    --font16:16px;

    --shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.text-theme {
    color: var(--theme-color) !important;
}

.bg-theme {
    background: var(--theme-color-secondary) !important;
}


.bg-white {
    background: #fff !important;
}



html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    color: var(--text-color-dark);
    background: #fff;
    font-family: "Roboto", sans-serif;
    padding: 0;
    margin: 0;
}

a{text-decoration: none!important}



input:focus , select:focus{
    box-shadow: none !important;outline: none;
}

button:focus {
    outline: none
}


@media only screen and (min-width:1300px){
  .container {
    max-width: 1250px;
    margin: 0 auto;    padding: 0;
}  
}


.commonbtn {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: none;
    box-shadow: none;
    text-decoration: none;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-align: center;
    background-color: var(--theme-color);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    padding: 15px 26px;
    text-transform: uppercase;
    border-radius: 4px;
}
.commonbtn:before{
    display: none;
    position: absolute;
    content: "";
    left: 3px;
    top: 0;
    width: 97%;
    height: 100%;
    background: var(--theme-color);
    border: none;
    z-index: -1;
    transition: 0.4s;
    border-radius: 10px;
    transform: skewX(-10deg);
}
.commonbtn:hover {
	color: #fff;
	background-color: var(--text-color-dark);
}
.commonbtn:hover:before{
    display: none;
    background-color: var(--text-color-dark);
}

h1,h2,h3,h4,h5,h6{font-family: var(--heading-font);}

/*========================Header======================*/
.headersec {
    padding: 8px 12px;
    -webkit-transition: background-color .3s, opacity .3s;
    -o-transition: background-color .3s, opacity .3s;
    transition: background-color .3s, opacity .3s;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: block;
    z-index: 1;
    top: 0;
    background-color: rgba(255, 255, 255, .5);
}
.headersec .col-md-1{ padding-right: 5px;}
.headersec .col-md-7{ padding-right: 5px;padding-left: 5px;}
.headersec .col-md-3{ padding-left: 5px;}

.logo img{
    width: auto;
    height: 100%;
    max-height:50px;
    -webkit-transition: all 0.5s ease-out;
    vertical-align: middle;
}
.logo.diffLogo img {
    position: relative;
}
.cmenu {
    height: auto;
    font-size: 13px;
    position: relative;
    font-weight: normal;
    -webkit-transition: all 0.5s ease-out;
    text-align: right;
    padding: 8px 0;

}
.cmenu ul {
    margin: 0;
    padding: 0;

}
.cmenu ul li {
    list-style: none;
    display: inline-block;
   
}

.cmenu ul li a {
    color: var(--text-color-dark);
    padding: 5px 0;
    display: block;
    margin: 0 13px;
    font-weight: 700;
    border-radius: 0px;
    text-transform: uppercase;
    position: relative;
}
.cmenu ul li a:after{
    content: "";
    background-color: var(--text-color-dark);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
    height: 3px;
}
.cmenu ul.diffNav li a {
    color: #fff;
}
.cmenu ul.diffNav li a:after {
    background-color: #fff;
}
.cmenu ul li:hover a:after{
    opacity: 1;
}
.cmenu ul li a.active {
    color: var(--theme-color);
}
.rmenubar,.clsebtn , .mysidenav{
    display: none;
}
.headersec.sticky {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #fffc;
    transition: all 0.3s ease-out;
    left: 0;
    right: 0;
    width: 100%;
    padding: 4px 0;

}
.carticon-mb{display: none}
.cart-icon {
    display: inline-block
}

.cart-icon strong {
    border-radius: 0;
    font-weight: bold;
    margin: .3em 0;
    border: 2px solid var(--text-color-dark);
    color: var(--text-color-dark);
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    width: 28px;
    height: 28px;
    font-size: 13px;
    line-height: 25px;
}
.cart-icon:hover strong {
    background-color:var(--text-color-dark);
    color: #fff
}

.cart-icon strong:after,.cart-icon:hover strong:after {
    height: 10px
}

.cart-icon strong:after {
    -webkit-transition: height .1s ease-out;
    -o-transition: height .1s ease-out;
    transition: height .1s ease-out;
    bottom: 100%;
    margin-bottom: 0;
    margin-left: -7px;
    height: 8px;
    width: 14px;
    left: 50%;
    content: ' ';
    position: absolute;
    pointer-events: none;
    border: 2px solid var(--text-color-dark);
    border-top-left-radius: 99px;
    border-top-right-radius: 99px;
    border-bottom: 0;
}
.cmenu ul.diffNav .cart-icon strong {
    border: 2px solid #fff;
    color: #fff;
}
.cmenu ul.diffNav .cart-icon strong:after {
    border: 2px solid #fff;
}
.cmenu ul.diffNav .cart-icon:hover strong {
    background-color: #fff;
    color: var(--text-color-black);
}
/*========================Banner======================*/
.bnrsec{position: relative;}
.bnrsec:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: block;
    width: 100%;
    background: url(../images/banner-bottom.png) no-repeat;
    background-size: cover;
    height: 72px;
    z-index: 1;
    bottom: 0;
}
.bnrsec .bnrimg {
    width: 100%;
    height: auto;
    max-height: 700px;
    overflow: hidden;
}
.bnrsec .bnrimg img{width: 100%;height: 100%;object-fit: cover}
.bnrsec .bnrcontent {
    position: absolute;
    left: 9%;
    top: 50%;
    transform: translateY(-50%);
}
.bnrsec .bnrcontent h1 {
    text-transform: capitalize;
    color: #fff;
    font-size: 75px;
    line-height: 80px;
    text-shadow: 0 4px 10px rgba(0,0,0,.7);
    font-weight: 700;
    letter-spacing: 0.02em;
}
.bnrsec .bnrcontent h1 span.sub-text{color: transparent;font-size: 75px;
    -webkit-text-stroke: 2px #fff;}
.bnrcontent h1 span {
    font-size: 30px;
    color: #fff;
}
/*======================Icon Box======================*/
.icontxtsec .icontxtbx img{max-height: 100px}
.icontxtsec .icontxtbx p{margin-top:5px;font-weight: 600;font-size: 16px}
/*======================Feature Box======================*/
.featuresec {
    padding-bottom: 70px;    padding-top: 70px;
}
.featuresec h3 {
    color: var(--theme-color);
    font-weight: 700;
    position: relative;
    font-size: 52px;
    letter-spacing: 0.1px;
    margin-bottom: 45px;
}
.featuresec h3 span {
    padding: 8px 10px;
    position: relative;
    z-index: 2;
    font-size: 42px;
    text-transform: capitalize;
}
.featuresec h3:before{
    content: "";
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    opacity: .1;
    background-color:rgb(85, 85, 85);
    z-index: 1;
    display: none;
}

.productbox .productimg{
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  background: var(--theme-color-midgrey);
}
.productcontent{
    text-align: center;
    border-top: 0;
    border-radius: 0px;
    overflow: hidden;
}
.productbox .productimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 250px;
    margin-bottom: 0;
    margin: 0px auto;
}
.quickbtn {
    background-color: var(--text-color-black);
    color: #fff;
    text-align: center;
    padding: 5px 10px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -50px;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s ease all;
    text-transform: uppercase;
    font-weight:600;
    font-size: 15px;
}
.quickbtn:hover{color: #fff}
.productimg .wishicon {
    font-size: 18px;
    position: absolute;
    top: -30px;
    right: 5px;
    color: #c0c0c0;
    border-radius: 50%;
    border: 1px solid #c0c0c0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease all;
}
.productbox .productimg:hover .wishicon{
    opacity: 1;
    visibility: visible;
    top: 5px;
}
/*.productbox .productimg:hover{box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2)}*/
.productimg .wishicon:hover{background: #b20000;border-color: #b20000;color: #fff}
.productbox .productimg:hover .quickbtn{
    opacity: 1;
    visibility: visible;
    bottom: 0px;
}

.featuresec p{font-size: 15px;margin-top: 8px}
.featuresec h6 {
    font-weight: 600;
    font-size: 24px;
    color: #283034;
    margin-top: 15px;
}


/*======================Footer======================*/
.ftsec {
    background: var(--theme-color-secondary);
    padding: 40px 0 40px;
    clear: both;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.ftsec h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    margin: 10px 0 36px;
}
.ftsec h4:after {
    content: "";
    background-color:var(--text-color-white);
    height: 3px;
    max-width: 30px;
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 30px;
}
.ftsec p {
    font-size: 15px;
    line-height: 28px;
    color: #fff;
}
.ftsec p strong{font-size: 16px}
.ftsec ul{margin: 0;padding: 0}
.ftsec ul li{font-size: 16px;list-style: none;padding: 6px 0}
.fttxt{text-align: justify;}
.ftsec a {
    text-decoration: none;
    color: #fff;
}
.ftsec a:hover{color: #fff;}
.ftsec input[type=email] {
    border-color: rgb(145 139 139);
    color: #000000 !important;
    border-radius: 4px;
    padding: 7px 12px;
    font-size: 15px;
}
.submitbtn {
    box-shadow: inset 0 0 0 100px rgba(0,0,0,0.2);
    font-size: 15px;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    width: 100%;
    padding: 8px 10px;
    border: 0;
    outline: 0;
    background: #000;
    text-transform: uppercase;
    font-weight: 600;
}
.ftbtm {
    background-color: #000;
    text-align: center;
    padding: 10px;
}
.ftbtm .payment-icon {
    display: inline-block;
    opacity: .6;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    border-radius: 5px;
    background-color: rgba(255,255,255,0.1);
    padding-bottom: 0;
    padding: 3px 5px 5px;
    margin: 3px 3px 0;

}
.footer-card-icon img{width: auto;max-height: 25px;margin:0 auto}
.ftbtm .payment-icon svg {
    vertical-align: middle;
    height: 20px;
    width: auto !important;
    fill: #FFF;
}
.productbox {
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 0;
    border-radius: 0;
    overflow: hidden;
}
.featuresec p {
    font-size: 20px;
    font-weight: 500;
    min-height: 60px;
}
.ftsec p.desclaimer-txt {
    font-size: 12px;
    line-height: 16px;
}









@media only screen and (max-width:820px){
/*========================Header======================*/
.headersec.sticky{position: relative;}
.carticon-mb {
    display: block;
    position: absolute;
    top: 16px;
    right: 8px;
}
.cart-icon strong{    width: 22px;
    height: 22px;    line-height: 19px;}
.headersec{padding: 10px 0px}
.bnrsec:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #0c0c0c7a;
}





.cmenu ul li:after{display: none}
.rmenubar {
    position: absolute;
    left: 8px;
    top: 14px;
    z-index: 99;
    display: block;
    font-size: 22px;
    background: transparent;
    padding:0px;
    border-radius: 0;
    -webkit-transition: all 0.5s ease-out;
}
.clsebtn svg{width: 28px;height: 28px; position: absolute;
    right: 20px;
    top: 15px;z-index: 9999;color: #000;opacity: 0;transition: 0.3s ease all;visibility: hidden; animation-name: slowup;animation-duration: 0.3s;}
    .headersec.sticky .rmenubar{top:12px;}
   
/*    .clsebtn i,.clsebtn svg {
    color: #000;
    position: absolute;
    right: 20px;
    top: 14px;
    z-index: 9999;
    display: none;
    font-size: 22px;
    border: 2px solid #000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 27px;
}*/
    .cmenu ul.navopen .clsebtn i,.cmenu ul.navopen .clsebtn{
       display: block; 
    }
.cmenu ul.navopen .clsebtn svg {top: 14px;opacity: 1;visibility: visible;}
    .rmenubar a {
        color: var(--text-color-dark) !important;
    }
    .headersec.sticky .rmenubar a{color: #000 !important}
    .headersec.sticky .commonbtn{    margin-right: 25px;}
    .rmenubar a:hover, .rmenubar a:focus {
        color: #fff !important;
    }

    .cmenu {
        padding: 18px 20px;
    }
    /*.cmenu ul {
        position: fixed;
        top: 0px;
        left: -100vw;
        width: 100vw;
        height: 100%;
        z-index: 999;
        background: #ffffff;
        overflow-y: scroll;
        font-size: 12px;
        transition: 0.5s ease all;
        opacity: 0.95;
    }
*/
    .cmenu ul {
        position: fixed;
        top: 0px;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 999;
        background: #ffffff;
        overflow-y: scroll;
        font-size: 12px;
        /*transition: 0.5s ease all;*/
        opacity: 0;
        visibility: hidden;
    }

    .cmenu ul li {
        display: block;
        padding: 0;
        font-weight: 600;
        font-size: 24px;
        margin-bottom: 5px;
    }
 

    ul.navopen {
         opacity: 0.95;
        visibility: visible;
            display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
    }
   ul.navopen li{ animation-name: slowdown;animation-duration: 0.3s;}
    .cmenu ul li ul {
        margin: 0;
        padding: 0;
        position: unset;
        z-index: 999;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        -webkit-transition: all 0.5s ease-out;
    }

    .cmenu ul li a {
        text-align: left;
        margin-left: 0;
    }

    .cmenu ul li ul a {
        color: var(--text-color-dark);
    }

}

@media only screen and (max-width:767px){
.logo img {
    max-height: 41px;
}
.headersec .commonbtn{    padding: 8px 7px;    font-size: 13px;}
.bnrsec .bnrcontent h1,.bnrcontent h1 span{
       font-size: 16px; 
}
.commonbtn {
    font-size: 15px;
    padding: 10px 20px;
}
.bnrsec .bnrcontent {transform: unset;top: 14%;}
.bnrsec .bnrcontent h1{    font-size: 30px;
    line-height: 35px;}
.bnrsec .bnrcontent h1 span.sub-text {  font-size: 30px;}
.icontxtsec.pt-5.pb-3{padding-top:30px !important;padding-bottom:10px !important;}
.icontxtsec .icontxtbx p {    margin-top: 5px !important;    font-size: 16px;    margin-bottom: 10px;}
.featuresec h3 {font-size: 2rem}
.productimg .wishicon{opacity: 1;visibility: visible;top: 5px}
.productbox .productimg{    padding: 18px 15px;}
.ftsec h4{    margin: 24px 0;}
.ftsec .col-md-6:first-child h4{margin-top: 10px}
.cmenu ul li:nth-child(6){display: none}
.wide-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}
}
@media only screen and (max-width:390px){
.headersec .commonbtn{    padding: 8px 7px;    font-size: 10px;}
}
@media only screen and (max-width:360px){
.logo img{    max-height: 38px;}
}
@media (min-width:768px) and (max-width:1024px){

.bnrsec .bnrcontent h1,.bnrcontent h1 span,.bnrcontent h1 span.sub-text{ 
    font-size:30px;
    line-height: 38px;}

.productimg .wishicon{opacity: 1;visibility: visible;top: 5px}
.ftsec .col-md-6:nth-child(3) h4,.ftsec .col-md-6:nth-child(4) h4{margin-top: 32px!important}
.logo img {max-height: 42px;}
}

@keyframes slowup {
   0%   {opacity: 0;top: 25px}
   10%  {opacity: 0.1;top: 24px}
   205%  {opacity: 0.2;top: 23px}
  30%  {opacity: 0.3;top: 22px}
  40%  {opacity: 0.4;top: 21px}
  50%  {opacity: 0.5;top: 20px}
  60%  {opacity: 0.6;top: 19px}
  70%  {opacity: 0.7;top: 18px}
  80%  {opacity: 0.8;top: 17px}
  90%  {opacity: 0.9;top: 16px}
  100% {opacity: 1;top: 15px}
}

@keyframes slowdown {
   0%   {opacity: 0;margin-top: -10px}
   10%  {opacity: 0.1;margin-top: -9px}
   205%  {opacity: 0.2;margin-top: -8px}
  30%  {opacity: 0.3;margin-top: -7px}
  40%  {opacity: 0.4;margin-top: -6px}
  50%  {opacity: 0.5;margin-top: -5px}
  60%  {opacity: 0.6;margin-top: -4px}
  70%  {opacity: 0.7;margin-top: -3px}
  80%  {opacity: 0.8;margin-top: -2px}
  90%  {opacity: 0.9;margin-top: -1px}
  100% {opacity: 1;margin-top: 0px}
}
.icontxtsec .icontxtbx.text-center {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.1);
    padding: 50px 25px;
}
.icontxtsec .icontxtbx img {
    max-height: 120px;
    margin-right: 10px;
    margin-bottom: 20px;
    outline: 1px dashed var(--theme-color);
    outline-offset: 7px;
    border-radius: 50%;
}
.icontxtsec .icontxtbx p {
    margin-top: 5px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-color-dark);
    font-family: var(--heading-font);
}
/* .icontxtbx.text-center.ylwbg-clr {
    background: #eeb14a;
} */
/* .icontxtbx.text-center.ylwbg-clr p {
    color: #070337;
} */
.logo a {
    color: var(--theme-color);
    /* font-size: 40px; */
}
@media only screen and (max-width:767px){
    .bnrsec .bnrcontent h1 {
        color: #fff;
    }
    .icontxtsec .icontxtbx img {
        max-height: 65px;
        margin: 0 auto;
    }
    .icontxtsec .icontxtbx.text-center{    padding: 50px 15px;}
    .icontxtsec .icontxtbx p {
        margin-top: 10px !important;
        font-size: 16px;
        margin-bottom: 10px;
        width: 100%;
    }
    .featuresec p {
        font-size: 16px;
    }
    .logo a {
        font-size: 30px;
    }
    .logo {
        padding-left: 24px;
        position: relative;
        top: -3px;
    }
    .icontxtsec .icontxtbx.text-center {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
}
section.icontxtsec.blwheadsec {
    background: #fff;
    padding: 4rem 0 !important;
}
.productbox a.quickbtn {
    opacity: 1;
    visibility: visible;
    bottom: 0px;
    width: auto;
    position: static;
    background: var(--theme-color);
    margin-top: 20px;
    text-align: center;
    padding: 8px 20px;
    background: #ffffff;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none !important;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 50px;
    border: 2px solid #000;
    transition: 0.5s ease-in-out;
}

.productbox a.quickbtn:hover {
    color: #ffffff;
    background: #000;
}


/* added */
.cmenu2 ul li{
    text-align: right;
    
}
.cmenu2 ul li a{
    color: var(--text-color-dark);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    
}
.innrheader {
    position: relative;
    width: 100%;
    display: block;
    padding: 4px 0;
    border-radius: 0;
    background-color: var(--theme-color);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .1);
    
}
.banner_cst{
    width: 100%;
    height: auto;
    background: url(../images/banner_img.jpg) no-repeat;
    min-height: 700px;
    background-position: center center;
    background-size: cover;
    position: relative; 
}
/* .banner_cst:after {
    content: "";
    background: url(../images/section-after.png) no-repeat;
    width: 406px;
    height: 522px;
    background-size: 406px 522px;
    position: absolute;
    top: -25%;
    right: 0;
    opacity: 0.8;
} */
.banner_text {
    width: 100%;
    max-width: 60%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--theme-color-black);
    border-radius: 15px;
    padding: 40px;
    right: 0;
    margin: 0 auto;
    text-align: center;
}
.banner_text h1 {
    color: var(--theme-color-secondary);
    font-size: 55px;
    line-height: 60px;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.banner_text p {
	text-transform: unset;
	letter-spacing: 0;
	font-size: 14px;
	color: #5e5d5e;
}
.banner_img {
    width: 100%;
    height: 95%;
    overflow: hidden;
    max-width: 40%;
    position: absolute;
    right: 8%;
    bottom: -110px;
    box-shadow: var(--shadow);
    border: 10px solid #fff;
}
.banner_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.abtsec{
    padding: 200px 0 60px;position: relative;
}
.abtsec:before {
    content: "";
    background: url(../images/section-before.png) no-repeat;
    width: 389px;
    height: 426px;
    background-size: 389px 426px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.abtsec:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -100px;
    z-index: 1;
    width: 270px;
    height: 387px;
    background: url(../images/side-leaf.png) no-repeat;
    background-size: 270px 387px;
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}
.abtsec .abtbox h3{text-transform: uppercase;font-size: 22px;line-height: 40px;}
.abtsec .abtbox h1{font-size: 55px;text-transform: capitalize;line-height: 60px;color: var(--theme-color);}
.abtsec .abtbox p{font-size: 14px;line-height: 28px;margin-bottom: 20px}
.abt_img{
   width: 100%; 
   height: 600px;
   overflow: hidden; 
   box-shadow: var(--shadow);
   border: 10px solid #fff;
}
.abt_img img{width: 100%;
    height: 100%;
    object-fit: cover;}
.mid_pic_cont{
	background-color: var(--theme-color-midgrey);
    padding: 3em 0;
}
.mid_pic_cont h3{
	font-size: var(--font48);
	text-align: left;
    color: var(--theme-color-secondary);
}
.mid_pic_cont p{
	font-size: var(--font18);
	text-align: left;
	max-width: 700px;
	margin: 0px auto;
	padding-top: 0.5em;
    color: var(--text-color-white);
}

.skin_txt{
    width: 100%;
    border-radius:5px ;
    text-align: center;
    background-color: var(--theme-color);
    padding: 1em;
    box-shadow: var(--shadow);
    transition: all ease 0.3s;
}
.skin_txt:hover{
    transform: translateX(5px);
}
.skin_txt h5{
    font-size: var(--font24);
    color: var(--text-color-white);
    text-transform: uppercase;
}
.skin_txt p{
    font-size: var(--font16);
    color: var(--text-color-white);
    text-align: center;
    padding-top: 0.2em;
}
.midbox {
    border: 8px solid #fff;
    box-shadow: var(--shadow);
}
.mid_nd{
    padding: 3em 0;
}
.mid_nd h3{
    font-size: 48px;
    text-align: center;
    color: var(--theme-color);
    text-transform: capitalize;
}
.mid_nd p{
    font-size: var(--font18);
    text-align: center;
    color: var(--theme-color-black);
    padding: 0.5em 20%;
}

.mid_pc{
    margin-bottom: 1.5em;
    transition: all ease 0.3s;
}
.mid_pc:hover{
    transform: translateY(-5px);
}
.mid_picture{
    width: 100%;
    height: 300px;
    overflow: hidden;

}
.mid_picture img{
    width: 100%;
    height:  100%;
    object-fit: cover;
}
.mid_text{
    background: var(--theme-color-ultra);
    padding: 1rem 0.8rem;
    box-shadow: var(--shadow);
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    bottom: 20px;
}
.mid_text h5{
    font-size:20px;
    text-align: center;
    color: var(--text-color-white);
}
.mid_text p{
    font-size: var(--font16);
    text-align: center;
    color: var(--text-color-white);
    padding: 0.2em 1em;
}

.prod_heading{
    position: relative;
    width: 100%;
    padding: 0.5em 1em;
    z-index: 2;
    color: var(--theme-color-secondary);
    font-size: var(--font18);
    text-align: center;
}

.mid_th {
    background: url(../images/mid-sec-bg.jpg) no-repeat;
    padding: 5rem 0;
    background-size: cover;
    background-position: top center;
    position: relative;    background-attachment: fixed;
}
.mid_th::before{
content: "";background-color: #0000005e;position: absolute;left: 0;right: 0;margin: 0 auto;top: 0;width: 100%;height: 100%;
}
.mid_th .container{position: relative;}
.mid_th_txt h3{
    text-align: center;
    font-size:var(--font36);
    color: var(--text-color-white);
    text-transform: uppercase;
}
.mid_th_txt p{
    text-align: center;
    font-size:var(--font16);
    color: var(--text-color-white);
    padding: 0.2em 15%;
}

/* slidre */
#products .slick-prev,
#products .slick-next {
	display: inline-block;
	position: absolute;
	top: 50%;
    transform: translateY(-50%);
	background: var(--theme-color);
	color: #fff;
	border-radius: 5px;
	z-index: 999;
	width: 45px;
	height: 45px;
	border: 0;
	outline: 0;
	font-size: 0;
}

#products .slick-prev {
	left: -35px;
}

#products .slick-prev::after {
	content: "\f104";
	font-size: 30px;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	font-family: 'FontAwesome';
	z-index: 9999;
	color: #fff;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 600;
}

#products .slick-next {
	right: -35px;
}

#products .slick-next::after {
	content: "\f105";
	font-weight: 600;
	font-size: 30px;
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	font-family: 'FontAwesome';
	top: 50%;
	transform: translateY(-50%);
}

.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
	margin: 0 10px;
}

.slick-initialized .slick-slide {
	margin: 0 10px;
}

.food-item:before {
    background-color: #ff9d2d;
    clip-path: polygon(0 40%, 100% 0%, 100% 100%, 0 100%);
    content: "";
    width: 100%;
    height: 150px;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all 0.2s ease;
    z-index: -1;
}

/* lir */


/* added  */


@media only screen and (max-width: 1024px) {
   
    .banner_cst{
        min-height: 600px;
        background-position: center center;
        background-size: cover;
        position: relative;
        /* border-bottom: 15px solid var(--theme-color); */
    }
    #products .slick-prev {
		left: 0px;
	}

	#products .slick-next {
		right: 0px;
	}
    .banner_text h1{    font-size: 40px;
    line-height: 46px;}
    .banner_text p {
    letter-spacing: 3px;
}

	.abtsec:after{z-index: -1;}
    
}
@media only screen and (max-width: 820px) {
   .banner_cst {
	background-position: center right;
	background-size: cover;
	position: relative;
	min-height: 75vh;
}
    .featuresec h3 {
        margin-bottom: 30px;
    }
    .commonbtn{
        font-size: 16px;
        padding: 10px 18px;
    }
	.mid_pic_cont{
        padding: 1.5em 0;
    }
    .mid_nd {
        background: var(--theme-color-midgrey);
        padding: 3em 0 3em;
    }
    .banner_img{display: none;}
    .banner_text {
        width: 95%;
        max-width: 500px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: unset;
        bottom: 33%;
        background: rgb(245 245 245 / 80%);
        text-align: center;
        padding: 3rem 1.5rem;
    }
    .banner_text h1 {
        font-size: var(--font24);
        line-height: 30px;
    }
    .banner_text p {
        display: none;
    }
    .topbottom_bar{
        height: 0px;
    }
    .cmenu2{
        display: none;
    }
    .top_bar{
        height: 50px;
    }
    .skin_txt{
        margin-bottom: 1em;
    }
    .skin_txt h5{
        font-size: var(--font18);
    }
    .mid_nd p{
        padding: 0.5em 1em;
    }
    .mid_th_txt p{
        padding: 0.2em 1em;
    }
    .featuresec p {
        min-height: 90px;
    }
}

@media only screen and (max-width: 767px) {
  .banner_cst{
        background-position: center right;
        background-size: cover;
        position: relative;
        min-height: 100vh;
    }
    .banner_img,.abtsec:before,.abtsec:after{display: none;}
    .banner_cst:after{
        width: 206px;
        height: 322px;
        background-size: 206px 322px;
    }
    .abtsec {
        padding: 80px 0 60px;
    }
    .abt_img {    height: 400px;    margin-bottom: 20px;}
    .abtsec .abtbox h1,.mid_nd h3{font-size: 32px;}
    .abtsec .abtbox h3 {
        font-size: 18px;
        line-height: 28px;
    }
}



@media only screen and (max-width: 600px) {
	.dt-text{
		margin-top: 1.5em;
	}
}

.zoom-fade {
    animation-name: zoom-fade;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes zoom-fade {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(0.9);
    }

}

.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

.banner_text h3 {
	margin-bottom: 12px;
	font-size: 24px;
	color: var(--theme-color-secondary);
}
       .icon-section,.cmn_pad {
      padding: 70px 0;
       }

.icon-section {
	text-align: center;
	background: var(--theme-color);
}

    .icon-section h2 {
      font-size: 2.5rem;
      color: #fff;
      margin-bottom: 10px;
    }

    .icon-section p {
      font-size: 1.1rem;
      color: #fff;
      max-width: 700px;
      margin: 0 auto 40px;
    }

    .icons-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
    }

    .icon-box {
      background: white;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
      flex: 1 1 220px;
      max-width: 250px;
      transition: transform 0.3s ease;
    }

    .icon-box:hover {
      transform: translateY(-5px);
    }

    .icon-box i {
      font-size: 2.5rem;
      color: #3caa5a;
      margin-bottom: 15px;
    }

    .icon-box h4 {
      font-size: 1.2rem;
      margin-bottom: 10px;
      color:#5e5d5e;
    }

    .icon-box p {
      font-size: 0.95rem;
      color: #666;
    }

    @media (max-width: 768px) {

    }
 @media (max-width: 767px) {
         .featuresec p {
        min-height: auto;
    }
      .icons-container {
        flex-direction: column;
        gap: 20px;
      }
    .icons-container .icon-box {
  max-width: 100%;
}
.icon-section .icon-box p {
  margin-bottom: 0;
}
.icon-box {
	flex: auto;
}
      .icon-section,.cmn_pad {
      padding: 50px 0;
       }
 }
.about_sec {
    background-color: var(--text-color-primary);
}
.section-heading {
      margin-bottom: 40px;
    }

    .section-heading h2 {
      font-size: 42px;
      color: var(--theme-color);
      margin-bottom: 15px;
    }

    .section-heading p {
      color: #666;
      font-size: 1rem;
      max-width: 600px;
      margin: auto;
    }

    .decor-left,
    .decor-right {
      position: absolute;
      top: 0;
      width: 100px;
      opacity: 0.1;
    }

    .decor-left {
      left: 0;
    }

    .decor-right {
      right: 0;
    }

    .card img {
      height: 100%;
      object-fit: cover;
    }
.why-section {
      padding: 60px 0;
      background-color: #fff;
    }

    .why-section h2 {
        font-size: 42px;
        color: var(--theme-color);
        margin-bottom: 15px;
    }

    .why-section p {
      color: #666;
      max-width: 650px;
      margin: 0 auto 15px auto;
    }

    .feature-box {
      background-color: var(--text-color-primary);
      padding: 30px 20px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      text-align: center;
      transition: transform 0.3s ease;
      height: 100%;
    }

    .feature-box:hover {
      transform: translateY(-5px);
    }

    .feature-icon {
      font-size: 40px;
      color: var(--theme-color);
      margin-bottom: 15px;
    }

    .feature-title {
      font-weight: 600;
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    .feature-desc {
      color: #777;
      font-size: 0.95rem;
    }
.testimonial-section {
      padding: 60px 0;
      background-color: var(--text-color-primary);
    }

    .testimonial-section h2 {
        margin-bottom: 20px;
        font-size: 42px;
        color: var(--theme-color);
    }

    .testimonial {
      background-color: #f9f4f0;
      padding: 20px;
      border-radius: 12px;
      text-align: center;
      height: 100%;
    }

    .testimonial img {
      width: 100%;
      border-radius: 12px;
    }

    .testimonial .quote {
        background-color: var(--theme-color);
        color: white;
        font-size: 1rem;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        position: absolute;
        bottom: 10px;
        right: 10px;
    }

    .testimonial .name {
      font-weight: 600;
      margin-top: 10px;
    }

    .testimonial .text {
      font-size: 0.95rem;
      color: #666;
    }
.skin_enn .mb-5.text-secondary.fs-5 {
	max-width: 750px;
	font-size: 1.1rem;
	margin: auto;
}
  .image-box {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
      transition: transform 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .image-box:hover {
      transform: translateY(-6px);
    }

    .image-box img {
      width: 100%;
      height: auto;
    }

    .image-box .text {
      padding: 20px;
      flex-grow: 1;
    }

    .image-box .text h4 {
      font-size: 1.2rem;
      color: #5e5d5e;
      margin-bottom: 10px;
    }

    .image-box .text p {
      font-size: 0.95rem;
      color: #5e5d5e;
      margin: 0;
    }
    .skin_enn h2 {
	color: var(--theme-color);
}

@media(max-width:767px){
    .section-heading h2,
    .why-section h2,
    .featuresec h3 span,
    .testimonial-section h2 {
        font-size: 32px;
    }
}