/* index page css */
@charset "utf-8";

/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://use.typekit.net/mso5lxg.css");
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&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: #597e2f;
    --theme-color-ultra: #597e2f;
    --theme-color-ultraLight: #8c4ced;
    --theme-color-secondary: #8bc34a;
    --theme-color-midgrey: #f7f7f7;
    --theme-color-white: #fff;
    --theme-color-black: #000;
    --theme-color-dark: #232a34;
    --theme-color-lightdark: #969696;

    --theme-body-font: "Poppins", sans-serif;
    --theme-heading-font:  "Hind", sans-serif;
    --theme-heading-banner: "Lobster", sans-serif;

    /* font */
    --font48:48px;
    --font36:36px;
    --font24:24px;
    --font20:20px;
    --font18:18px;
    --font16:16px;
    --shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.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-color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: var(--theme-body-font);
    padding: 0;
    margin: 0;
}
.innrpgbody{background-color: #fff !important;    
color: #333;}
a{text-decoration: none!important}

h1,h2,h3,h4,h5,h6{font-family: var(--theme-heading-font); text-transform: uppercase;}



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{
    user-select: none;
    -moz-user-select: none;
    background: var(--theme-color-ultra) none repeat scroll 0 0 !important;
    color: var(--theme-color-white);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 0;
    padding: 18px 25px 18px 30px;
    text-align: center;
    text-transform: uppercase;
    touch-action: manipulation;
    transition: all 0.3s ease 0s;
    vertical-align: middle;
    white-space: nowrap;
    border: 0;
    position: relative;
    z-index: 1;
    border-radius: 25px;
}
.commonbtn::before{
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--tg-blue);
    border-radius: 30px;
    z-index: -1;
    transition: all 0.3s ease 0s;
}
.commonbtn::after{
    content: "\f054";
    font-family: FontAwesome;
    font-weight: 700;
    margin-left: 45px;
}
.commonbtn:hover::before {
	width: 100%;
}
.commonbtn:hover {
	color: var(--theme-color-black);
    background: var(--theme-color-secondary);
}
/* .commonbtn:hover {
	background: #000;
	color: #fff;
} */

.mb-10{margin-bottom: 10px !important;}
.divider {
    width: auto !important;
    height: 18px !important;
    margin: 10px auto;
}
/*========================Header======================*/
.headersec {
    padding: 10px 0px 10px;
    width: 100%;
    z-index: 1;
    top: 24px;
    background: var(--theme-color-dark);
    /* background: linear-gradient(to right, #628713 0%, #80aa27 100%); */

}
.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:62px;
    -webkit-transition: all 0.5s ease-out;
    vertical-align: middle;
    filter: brightness(0) invert(1)
}


.cmenu {
    height: auto;
    font-size: 18px;
    position: relative;
    font-weight: normal;
    -webkit-transition: all 0.5s ease-out;
    text-align: right;
    padding:4px 0;
    font-family: var(--theme-heading-font);

}
.cmenu ul {
    margin: 0;
    padding: 0;

}
.cmenu ul li {
    list-style: none;
    display: inline-block;
   
}

.cmenu ul li a {
    color: var(--theme-color-white);
    padding: 5px 0;
    display: block;
    margin: 0 10px;
    font-weight: 500;
    border-radius: 0px;
    text-transform: uppercase;
    position: relative;
    transition: all ease 0.3s;
    letter-spacing: 0.5px;
    font-size: var(--font16);
}
.cmenu ul li a:hover{
    color: var(--theme-color-secondary);
}
.cmenu ul li a:after{
    /* display:none; */
    
    content: "";
    background-color: var(--theme-color-secondary);
    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 li:hover a:after{
    opacity: 1;
}
.cmenu ul li a.active {
    color: var(--theme-color-secondary);
}
.cmenu ul li a.hover {
    color: var(--theme-color-secondary);
}
.rmenubar,.clsebtn , .mysidenav{
    display: none;
}
.headersec.sticky {
	position: sticky;
	top: 0;
	z-index: 99999;
	/* transition: all 0.3s ease-out; */
	left: 0;
	right: 0;
    width: 100%;
}


.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(--theme-color-white);
    color: var(--theme-color-white);
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    width: 28px;
    height: 28px;
    font-size: 13px;
    line-height: 25px;
}


.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(--theme-color-white);
    border-top-left-radius: 99px;
    border-top-right-radius: 99px;
    border-bottom: 0;
}

/*========================Banner======================*/
.bnrsec {
    position: relative;
}

/* .bnrsec:before{
    content: "";
    width: 500px;
    height: 750px;
    background: url(../images/modalbanner.png) no-repeat;
    background-size: cover;
    position: absolute;
    top:0;
    right:80px;
} */
.bnrsec .container{position: relative;}
.bnrsec .bnrimg{width: 100%;height: 100vh;overflow: hidden;}
/* .bnrsec .bnrimg:before {
    content: "";
    background: #ad8858;
    position: absolute;
    left: 0px;
    right:0;
    margin: 0 auto;
    top: -10px;
    width: 96%;
    height: 98%;
    border-radius: 66% 24% 44% 56%/44% 24% 70% 56%;
    z-index: 1;
    animation: morpspin 25s linear infinite reverse
} */

.bnrsec .bnrimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bnrsec .slick-dots{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom:12px;
}
.bnrsec .slick-dots li{list-style: none;}
.bnrsec .slick-dots button{font-size: 0;    overflow: hidden;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: inset 0 0 0 2px rgb(255, 255, 255);
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
    border: 0;
    margin: 0 4px;
}
.bnrsec .slick-dots li.slick-active button{background-color: #fff;}


.bnrsec .bnrcontent {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    width: 100%;
}

.bnrsec .bnrcontent h1 {
	text-transform: uppercase;
	font-weight: 400;
	color: #fff;
	font-size: 48px;
	line-height: 62px;
}
.bnrcontent h1 span {
	font-size: 35px;
	font-family: var(--theme-heading-font) !important;
	font-weight: 500;
    margin-bottom: 10px;
    color: var(--theme-color);
}

/*======================Icon Box======================*/
/* .icontxtsec .icontxtbx img{max-height: 100px} */
.icontxtbx_cont{
    transition: all ease 0.3s;
}
.icontxtbx_cont:hover{
    transform: scale(101%);
}
.icontxtsec .icontxtbx p{margin-top:5px;font-weight: 600;font-size: 16px}
/*======================Feature Box======================*/
.featuresec {
    padding: 50px 0px 60px;
}
.featuresec h3 , .icontxtsec h3{
    color: var(--theme-color-white);
    font-weight: 500;
    position: relative;
    font-size: 2.1rem;
    letter-spacing: 0.1px;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.featuresec h3:after, .icontxtsec h3:after {
    /* content: '\e8fe'; */
    content: '';
    font-family: fontello;
    display: block;
    font-size: 2.1rem;
    line-height: 2.5rem;
    margin-top: 1.5rem;
    color: var(--theme-color);
    background: url(../images/divider.png) no-repeat;
}

/* .featuresec h3 span:before {
    content: "";
    background: url(../images/texticon.png) no-repeat;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 145px;
    height: 200px;
    top: -90px;
    background-size: 145px 200px;
    z-index: -1;
} */
.featuresec h3 span {
    padding: 8px 10px;
    position: relative;
}

.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{ margin-bottom: 15px }
.productbox .productimg {
	width: 100%;
	height: auto;
	overflow: hidden;
	position: relative;
	-webkit-transition: opacity 0.3s, background-color 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, background-color 0.3s, -webkit-transform 0.3s;
	-o-transition: opacity 0.3s, transform 0.3s, background-color 0.3s;
	transition: opacity 0.3s, transform 0.3s, background-color 0.3s;
	transition: opacity 0.3s, transform 0.3s, background-color 0.3s, -webkit-transform 0.3s;
	padding: 30px 15px;
	z-index: 2;
}

.productbox .productimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 215px;
    margin-bottom: 0;
}
.quickbtn {
    background-color: #0a0a0a;
    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;
}
.productbox .commonbtn {z-index: 2;}

.featuresec p{font-size: 15px;margin-top: 8px}
.featuresec h6 {
	font-size: var(--font20);
	font-weight: 600;
	text-transform: initial;
	z-index: 2;
	position: relative;
    color: var(--text-color-dark);
}
/* .productbox .commonbtn {    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: block;
    width: fit-content;
    bottom: -120px;
    visibility: hidden;
} */
/* .productbxwrapper:hover .productbox{padding-bottom: 95px;border-radius: 10px;} */
/* .productbxwrapper:hover .commonbtn {opacity:1;visibility: visible;bottom: 25px;} */
/*======================Footer======================*/
.ftsec {
	
    background: var(--theme-color-secondary);
    background-size: cover;
    background-position: top left;
	padding: 40px 0 40px;
	border-top: 4px solid rgba(0,0,0,0.05);
	clear: both;
}
.ftsec h4 {
    /* color: var(--text-color-dark); */
    color: var(--theme-color-dark);
    font-size: 22px;
    font-weight: 600;
    position: relative;
    margin: 10px 0 36px;
}
.ftsec h4:after {
    content: "";
    background: var(--theme-color-dark);
    height: 3px;
    max-width: 30px;
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 30px;
}
.ftsec p {
    font-size: 15px;
    line-height: 28px;
    color: var(--theme-color-white);
}
.ftsec p .fa{
    margin-right: 0.5em;
}
.ftsec p strong{font-size: 16px}
.ftsec ul{margin: 0;padding: 0}
.ftsec ul li{font-size: 16px;
    list-style: none;
    background: var(--theme-color-ultra);
    padding: 0.5em 1em;
    display: inline-block;
    margin-bottom: 0.7em;
    margin-right: 0.5em;
}
.fttxt{text-align: justify;}
.ftsec a {
    text-decoration: none;
   color: var(--theme-color-white);
}
.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: var(--theme-color-dark);
    text-align: center;
    padding: 20px 10px;
}
.footer-card-icon img{width: auto;max-height: 40px;margin:0 auto}
.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;

}
.ftbtm .payment-icon svg {
    vertical-align: middle;
    height: 20px;
    width: auto !important;
    fill: #FFF;
}
.productbox {
	text-align: center;
	padding: 20px;
    box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--theme-color);
	color: #fff;
	border-radius: 0px;
	transition: 0.5s ease all;
	position: relative;
    background: #fff;
    overflow: hidden;
    margin-bottom: 0px;
}





.featuresec p {
    font-size: 20px;
    margin-top: 5px;
    margin-bottom: 10px;
    font-weight: 500;
    text-align: left;
    line-height: 26px;
    z-index: 2;
    position: relative;
    padding: 0 0px;
    text-transform: uppercase;
    color: var(--theme-color-white);
    font-family: var(--theme-body-font);
}



.featuresec .commonbtn{
    font-size: 14px;
    transition:all 0.5s; 
    background-color: var(--theme-color-ultra);
    color: var(--theme-color-white);
}
.featuresec .commonbtn:hover {
	/* background: #fff; */
	/* color: var(--text-color-dark); */
	color: var(--theme-color-black);
}

@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;}


/* .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(--theme-color-white) !important;
    }
    .headersec.sticky .rmenubar a{color: var(--text-color-dark) !important}
    .headersec.sticky .commonbtn{    margin-right: 25px;}
    .rmenubar a:hover, .rmenubar a:focus {
        color: var(--theme-color) !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 {
        color: #666666d9 !important;
        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: 40px;
}
.headersec {width: 100%;}
.headersec .commonbtn{    padding: 8px 7px;    font-size: 13px;}

.bnrsec .bnrcontent{
    left:0;
    right: 0;
    margin: 0 auto;
    bottom:5%;
    transform: translateX(0);
    
}
.bnrsec .bnrcontent h1,.bnrcontent h1 span{
       font-size: 20px; 
}
.bnrcontent h1 span{color: #fff;}




.productbox .commonbtn{
    position: relative;
    visibility: visible;
    opacity: 1;
}
.bnrsec .bnrcontent h1 {
    font-size: 36px;
    line-height: 44px;
}
.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;    margin-bottom: 1rem;}
.productimg .wishicon{opacity: 1;visibility: visible;top: 5px}
.productbox {
        padding: 40px 20px 40px;
}
.productbox .productimg{    padding: 10px;}
.ftsec h4{    margin: 36px 0;}
.ftsec .col-md-6:first-child h4{margin-top: 10px}
.cmenu ul li:nth-child(6){display: none}

.featuresec h3:after, .icontxtsec h3:after{    font-size: 1.5rem;
    line-height: 1.5rem;
    margin-top: 0.8rem;
}
}
@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{ 
    font-size: 32px;
    line-height: 38px;}
.commonbtn {
	padding: 15px 20px;
	font-size: 16px;
	
}
.icontxtsec .col-md-4 {
    padding-left: 15px;
    padding-right: 15px;
}

.icontxtsec .icontxtbx.text-center {    padding: 50px 20px;    min-height: 415px;}

section.icontxtsec.blwheadsec {
    padding: 5rem 0!important;
}
.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: 10px!important}
.logo img {
    max-height: 38px;
    margin-left: 5px;
}
.cmenu{font-size: 12px;}
.cmenu ul li a{margin: 0 6px;}
}

@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 {
    position: relative;
    /* border: 8px solid #fff; */
    /* background-color: #fff; */
}
.icontxtsec .icontxtbx.text-center .icon-heading{    font-family: var(--theme-heading-font) !important;    line-height: normal;}
/* .icontxtsec .col-md-4{
    padding-left: 25px;padding-right: 25px;
}
.icontxtsec .icontxtbx.text-center:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #ebdcbf;
        border-radius: 50% 30% 35% 45%/35% 30% 60% 70%;
    animation: morpspin 20s linear infinite reverse;
    z-index: -1;
        right: 0;
    margin: 0 auto;
} */
.icontxtsec .icontxtbx .image {
    border: 8px solid #fff;
	width: 100%;
    height: 430px;
	overflow: hidden;
	transition-duration: 0.3s;
}
.icontxtsec .icontxtbx img {
	width: 100%;
	height: 100%;
	margin-bottom: 0;
    object-fit: cover;
}
.icontxtsec .icontxtbx.text-center .iconcontent{
    position: relative;
    /* background: #fff; */
    background: var(--text-color-dark);
    width: 100%;
    z-index: 1;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -20%;
    padding: 20px 25px;
    border: 5px solid var(--theme-color);
    min-height: 220px;
}
.icontxtsec .col-md-4:nth-child(even) .icontxtbx.text-center .iconcontent{ border-bottom: 5px solid var(--theme-color-secondary);}
.icontxtsec .icontxtbx p {
	font-weight: 600;
	font-size: 20px;
	color: var(--theme-color);
}
.icontxtsec .icontxtbx p.subpara {
	font-weight: 400;
	font-size: 14px;
    color: var(--theme-color-white);
    margin-top: 10px;
}
.icontxtbx.text-center.ylwbg-clr {
    background: #ffffff;
}
.icontxtbx.text-center.ylwbg-clr p {
    color: #070337;
}
.icontxtsec .icontxtbx.text-center:hover{}
.logo a {
    color: #ee2d7a;
    /* font-size: 40px; */
}


section.icontxtsec.blwheadsec {
    padding: 4rem 0 12rem !important;
    position: relative;    
    background: var(--theme-color-secondary);
}
section.icontxtsec.blwheadsec:before {
    
    content: "";
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0;
    height: 50%;
    background: var(--text-color-black);
    z-index: 0;
}

section.icontxtsec.blwheadsec .col-md-3:nth-child(even) .icontxtbx{min-height: 425px;}
.iconsec-beforeimg{
    position: absolute;
    top: 10%;
    left: 0;
}
.iconsec-beforeimg img, .iconsec-afterimg img{
    width: auto;
    max-height: 390px;
}
.iconsec-afterimg{
position: absolute;
bottom: 10%;
right: 0;
}
.productbox a.quickbtn {
    opacity: 1;
    visibility: visible;
    bottom: 0px;
    width: auto;
    position: static;
    background: #527d22;
    padding: 10px 40px;
    font-size: 17px;
    font-weight: revert;
    border-radius: 30px;
    margin-top: 20px;
    display: inline-block;
}
.featuresec {
    position: relative;
    background: var(--theme-color-dark);
}


@media (min-width:768px) and (max-width:1024px){
.icontxtsec .icontxtbx p {    font-size: 16px;}
.divider {
    width: auto !important;
    height: 12px !important;
    margin: 5px auto;
}
.featuresec p{font-size: 16px;}
}
@media only screen and (max-width:1024px){
    .icontxtsec .col-md-4 {
    padding-left: 15px;
    padding-right: 15px;
}
.icontxtsec .icontxtbx.text-center{    padding: 0px;}
.icontxtsec .icontxtbx.text-center .iconcontent{    width: 100%;    padding: 10px 15px;}
section.icontxtsec.blwheadsec {
    padding: 3rem 0 10rem !important;
}
}
@media only screen and (max-width:767px){
  
.icontxtsec .icontxtbx p {
    margin-top: 15px !important;
    font-size: 20px;
    margin-bottom: 5px;
    width: 100%;
}
    .featuresec p {
    font-size: 22px;
    min-height: unset;
}
    .logo a {
        font-size: 30px;
    }
    .logo {
        padding-left: 30px;
        position: relative;
        margin-top: -5px;
        
    }
    .icontxtsec .icontxtbx.text-center {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 25px;
    }
    .icontxtsec .icontxtbx .image{width: 100%;
    height: auto;}
    .icontxtsec .icontxtbx.text-center{      padding: 0;
    margin-bottom: 50px;}
    .icontxtsec .col-md-4:last-child .icontxtbx.text-center{margin-bottom: 0;}
    .bnrsec:after{display: none;}
}


@keyframes morpspin {
	to {
		transform: rotate(1turn)
	}

}






/* added */
    /* added */
    .prodImg{
        background: var(--theme-color-midgrey);
        padding: 2em;
    }
    .prodImg img{
        width: 100%;
    }
    .prodBox{
        margin-bottom: 2em;
    }
    .productbox .productimg {
        width: 100%;
        height: auto;
        overflow: hidden;
        position: relative;
        z-index: 2;
        opacity: 1 !important;
        display: flex;
        justify-content: center;
        padding: 1.5em;
    }

    .productbox .productimg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-width: 215px;
        margin-bottom: 0;
        /* filter: drop-shadow(0px 5px 10px black); */
    }
    .prod_text_bx{
        background-color: var(--theme-color);
            padding-bottom: 1rem;
    }

    .prod_text_bx h4{
        font-size: --font18 !important;
        color: var(--theme-color-white);
        padding: 0.5em 1em;
        background: var(--theme-color-ultra);
        text-align: center;

    }
    .prod_text_bx p span{
        padding: 0.5em 1.2em;
    }
    

    .cmenu2 ul li{
        text-align: right;
        
    }
    .cmenu2 ul li a{
        color: var(--theme-color-white);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 13px;
        
    }
    
    .footer-card-icon img{width: auto;max-height: 40px;margin:0 auto}
    .banner_cst{
        width: 100%;
        height: auto;
        background: url(../images/hero-banner.jpg) no-repeat;
        min-height: 600px;
        background-position: center center;
        background-size: cover;
        position: relative;
        /* border-bottom: 15px solid var(--theme-color); */
    }
    .banner_text{
        width: 100%;
        max-width: 600px;
        position: absolute;
        left: 10%;
        top: 50%;
        transform: translateY(-50%);
        text-align: left;
        box-sizing: border-box;
        padding: 2em;
        margin-top: 1em;
        color: var(--theme-color-black);
    }
    .banner_text h1{
        color: var(--theme-color-white);
        font-size: var(--font48);
        line-height: var(--font48);
        font-family: var(--theme-heading-banner);
        text-transform: capitalize;
        margin-bottom: 15px;
    }
    .banner_text p{
        color: var(--theme-color-white);
        
    }
    .terms-content{
        padding: 1em 0 2em;
    }
    
    /* 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;
    }
    
    
    
    /* lir */

    .mid_headig_line{
        width: 2px;
        height: 40px;
        margin: 0px auto;
        background: var(--theme-color-dark);
        margin-bottom: 20px;
    }
    .mid_heading{
        transition: all ease 0.3s;
        text-align: center;
        background-color: var(--theme-color-secondary);
    }
    .mid_heading h3{
        font-size: var(--font36);
        color: var(--theme-color-white);
        font-weight: 700;
        text-transform: uppercase;
    }
    .mid_heading p{
        font-size: var(--font16);
        line-height: 25px;
        color: var(--theme-color-);
        font-weight: 300;
        padding-top: 0.5em;
    }
    
    

    .con-mid-sec{
        background: var(--theme-color);
    }
    .cont_heading{
        background-color: var(--theme-color);
        padding: 2em;
        text-align: left;
    }
    .cont_heading h5{
        font-size: var(--font48);
        color: var(--theme-color-white);
        text-transform: uppercase;
    }
    .cont_txt{
        background: var(--theme-color-dark);
        padding: 1em;
    }
    .cont_txt ul{
        margin: 0;
        padding: 0;
    }
    .cont_txt ul li{
        list-style: none;
        padding-left: 2em;
        color: var(--theme-color-white);
        text-align: left;
        margin-bottom: 1.0em;
        position: relative;
    }
    .cont_txt ul li::before{
        content: "\f00c";
        font-family: FontAwesome;
        color: var(--theme-color);
        position: absolute;
        left: 0;
        top: 0;
    }
    .cont_img{
        transition: all ease 0.3s;
    }
    .cont_img img{
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    
    .productcontent{
        background:var(--theme-color-secondary);
        padding: 1em;
    }
    
    /*  */
    .mid_dn{
        padding: 5em 0;
        background: var(--theme-color-midgrey);
    }
    .md_img{
        transition: all ease 0.3s;
    }
    .md_img:hover{
        transform: translateY(-5px);
    }

    .md_img img{
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
    .md_dn_text{
        
    }
    
    .md_dn_text h3{
        font-size: var(--font24);
        color: var(--theme-color);
        text-transform: uppercase;
        padding-bottom: 0.3em;
    }
    .md_dn_text ul{
        margin: 0px;
        padding: 0px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .md_dn_text ul li{
        list-style: none;
        padding: 1em;
        width: 40%;
        margin-top: 1em;
        text-align: left;
        font-weight: 500;
        position: relative;
        font-size: 16px;
        text-transform: uppercase;
        
    }
    .md_dn_text ul li:hover:after{
        width: 120px;
    }
    .md_dn_text ul li::after{
        position: absolute;
        left: 17px;
        bottom: 0;
        content: "";
        height: 2px;
        width: 50px;
        background: var(--theme-color-white);
        transition: all ease 0.3s;
    }
    .fo_txt{
        transition: all ease 0.3s;
    }
    .fo_txt:hover{
        transform: translateY(-5px);
    }
    .fo_txt h5{
        font-size: var(--font36);
    }
    .fo_icon{
        transition: all ease 0.3s;
        margin-top: 0.8em;
    }
    .fo_icon:hover{
        transform: translateX(-5px);
    }
    .fo_icon h5{
        font-size: var(--font20);
        padding-bottom: 0.2em;
        color: var(--theme-color-secondary);
        font-weight: 500;
    }
    .fo_icon p{
        font-size: var(--font16);
    }
    .fo_icon_cont{
        font-size: var(--font24);
        color: var(--theme-color-dark);
        padding-bottom: 0.2em;
    }
    .mid_img{
        padding: 6em 0;
        background: url(../images/mid_banner.png) no-repeat center center;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .mid_img h5{
        font-size: var(--font36);
    }
    .mid_img p{
        font-size: var(--font16);
        line-height: 24px;
    }

    /* added  */
    
    
    
    
    @media only screen and (max-width: 1180px) {
        /*  */
        .mid_img{
            padding: 4em 0;
        }
        .fo_icon{
            transition: all ease 0.3s;
            margin-top: 1em;
        }
        .fo_txt h5 {
            font-size: var(--font24);
        }
        .banner_cst{
            background: url(../images/hero-banner-mobile.jpg) no-repeat;
            
            background-position: center center;
            background-size: cover;
            position: relative;
            /* border-bottom: 15px solid var(--theme-color); */
        }
        .banner_text {
            width: 90%;
            max-width: 500px;
            position: absolute;
            left: 0;
            right: 0;
            margin: 0px auto;
            text-align: left;
            box-sizing: border-box;
            padding: 2em;
            background: radial-gradient(rgb(226 226 226), transparent);
            
        }
        .banner_text h1{
            color: var(--theme-color-dark);
            padding-bottom: 0.2em;
        }
        #products .slick-prev {
            left: 0px;
        }
    
        #products .slick-next {
            right: 0px;
        }
        .mid_heading h3{
            font-size: 30px;
        }
        
        
        
    
    }
    @media only screen and (max-width: 820px) {
        .md_dn_text{
            margin-top: 1.5em;
        }
        .featuresec h3 {
            margin-bottom: 30px;
        }
        .commonbtn{
            font-size: 16px;
        }
        .prds-right {
            margin-top: 2em;
        }
        .banner_text{
            max-width: 400px;
        }
        .cmenu2{
            display: none;
        }
        .cmenu{
            position: absolute;
        }
        
    }
    
    @media only screen and (max-width: 767px) {
        
        .mid_text ul{
            flex-direction: column;
        }
        .mid_text ul li{
            width: 100%;
            margin-bottom: 1.5em;
        }
        .mid_dn{
            padding-top: 3em;
            padding-bottom: 3em;
        }
        .md_dn_text ul li{
            width: 50%;
        }
        .banner_cst{
            background: url(../images/hero-banner-mobile.jpg) no-repeat;
            background-position: center center;
            background-size: cover;
            position: relative;
            /* border-bottom: 15px solid var(--theme-color); */
        }
        .featuresec {
            padding: 30px 0px 60px;
        }
        .prod_heading {
            margin-top: 10px;
        }
        .featuresec h3 {
            margin-bottom: 30px;
        }
        .banner_text{
            top: 45%;
        }
        .banner_text h1 {
            
            font-size: var(--font36);
            line-height: var(--font36);
        }
        
        .cont_heading h5{
            font-size: var(--font36)
        }
        
    }
    
    
    
    
    @media only screen and (max-width: 600px) {
        
    }
    
        
    
        
    
    /* aded */


/*   New CSS Added   */
.mid_pr_img img {
    border-radius: 4rem;
    padding: 2rem;
}
.mid_pr_txt h2{
    color: var(--theme-color-ultra);
    font-weight: 600;
}
.mid_pr_txt h6{
    margin: 10px 0
}
.pr-desc{
    border-left: 3px solid var(--theme-color-ultra);
    padding-left: 10px;
    margin-left: 20px;
}

/* Ingredients Table CSS  */
.ingre-heading {
    font-size: 38px;
    text-align: left;
    text-transform: uppercase;
    padding: 30px 0px;
    color: #383838;
    position: relative;
    font-weight: 700;
}
.supplement-box{
    padding: 15px;
    border: 2px solid #383838;
    margin-bottom: 20px;
}
.bx-header{
    margin-bottom: 20px;
}
.bx-header h5{
    font-size: 80px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #383838;
}
.bx-header p{
    font-size: 28px;
    line-height: 1.2;
    color: #383838;
}
.table-header th{
    border-top: 30px solid #383838;
    border-bottom: 10px solid #383838;
    font-size: 18px;
    font-weight: bold;
    text-align: right;
}
tbody {
    font-size: 24px;
    font-weight: 500;
    border-bottom: 30px solid #383838;
}
.table td{
    border-top: 1px solid #383838;
} 
.tb-stats{
    text-align: right;
}
.tb-sub{
    position: relative;
    left: 30px;
}
.tb-sub2{
    position: relative;
    left: 60px;
}
.table-footer{
    border-top: 30px solid #383838;
}
.btm-text{
    font-size: 18px;
    font-weight: 500;
}


@media (max-width: 1200px) {
    tbody{
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .bx-header h5 {
        font-size: 60px;
    }
    .bx-header p{
        font-size: 20px;
    }
    .table-header th{
        font-size: 14px;
    }
    tbody{
        font-size: 14px;
    }
    .tb-sub {
        left: 15px;
    }
    .tb-sub2 {
        left: 30px;
    }
    .btm-text{
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .ingre-heading{
        font-size: 30px;
    }
    .bx-header h5 {
        font-size: 30px;
    }
    .bx-header p{
        font-size: 16px;
    }
}
@media (max-width: 576px) {
    .ingre-heading{
        font-size: 24px;
    }
    .bx-header h5 {
        font-size: 24px;
    }
}
@media (max-width:414px) {
    .table-header th {
        font-size: 11px;
        line-height: 20px;
    }
}
