@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px "Poppins", sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
    display: inline-block;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    background: #fff url("../images/arrow.png") no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}

img {
    max-width: 100%;
}


/***** Font Files *****/

@font-face {
    font-family: "Fonts Awesome";
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Fonts Awesome";
    src: url(../fonts/fontawesome-webfont.eot);
}

@font-face {
    font-family: "BebasNeue-Regular";
    src: url(../fonts/BebasNeue-Regular.otf);
}

@font-face {
    font-family: "Montserrat-Medium";
    src: url(../fonts/Montserrat-Medium.ttf);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: "BebasNeue-Regular";
    font-size: 70px;
    color: #000;
    font-weight: 500;
    margin: 0 0 0px;
}

h2 {
    font-family: "BebasNeue-Regular";
    font-size: 45px;
    color: #000;
    font-weight: 500;
    margin: 0 0 0px;
}

h3 {
    font-family: "BebasNeue-Regular";
    font-size: 35px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 0px;
}

h4 {
    font-family: "BebasNeue-Regular";
    font-size: 24px;
    color: #000;
    font-weight: 500;
    margin: 0 0 0px;
}

h5 {
    font-family: "BebasNeue-Regular";
    font-size: 18px;
    color: #000;
    font-weight: 500;
    margin: 0 0 0px;
}

h6 {
    font-family: "BebasNeue-Regular";
    font-size: 14px;
    color: #000;
    font-weight: 500;
    margin: 0 0 0px;
}

p {
    color: #000;
    font-size: 14px;
    font-family: "Montserrat-Medium";
    font-weight: 400;
    letter-spacing: 0px;
    margin: 0px;
}


/*header css start */

header {
    position: absolute;
    width: 100%;
    z-index: 99;
    left: 0;
    right: 0;
    top: 30px;
    margin: 0 auto;
}

.menuSection {
    background: #fff;
    padding: 10px 0;
}

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #bababa;
    padding: 0;
    font-size: 14px;
}


/*.menuSec ul li a:after {
    content: '';
    position: absolute;
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
    display: none;
}
*/


/*.menuSec ul li:last-child a {
    padding-right: 0px;
}*/


/* .menuSec ul li:last-child a:after {
    display: none;
} */

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #28b16d;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
    display: none;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.droopdwon li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    right: 7%;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}

.dropdown-menu {
    position: absolute !important;
    z-index: 1000;
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}


/*header css start */


/*banner css start */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    /* background-image: linear-gradient(to bottom, #006838c2, #006838); */
    z-index: 1;
}

.carousel-indicators li {
    border: none;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    background: #fff;
    width: 12px;
    height: 12px;
    margin: 0;
}

.carousel-indicators .active {
    margin: 0;
    background-color: #28b16d;
    width: 10px;
    height: 12px;
}

.banner_img img {
    position: absolute;
    top: 0;
    z-index: 3;
    width: auto !important;
}

.kives img {
    position: absolute;
    top: 0;
    z-index: 1;
    right: -238px;
    height: 100% !important;
    width: auto !important;
}

.carousel-item img {
    height: 900px;
    width: 100%;
}

.desgin {
    position: absolute;
    z-index: -1;
    top: -77px;
    right: -63px;
}

.desgin img {
    height: 100%;
}


/*banner css end*/

.banner_text a img {
    height: auto;
    width: auto;
    background: #fff;
    padding: 16px;
    border-radius: 25px;
}

.banner_text h1 {
    color: #fff;
    line-height: 1.05;
    font-weight: 600;
}

.banner_text h4 {
    font-size: 25px;
    color: #fff;
    font-weight: 500;
}

.banner_text {
    margin-top: 300px;
}

.banner_text p {
    color: #80b59c;
    padding: 21px 0;
}

.banner_text a {
    width: 236px;
    text-align: center;
    height: 49px;
    background-image: -moz-linear-gradient( 90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    display: flex;
    justify-content: end;
    align-items: anchor-center;
    border: 1px solid #fff;
    border-radius: 25px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 13px;
    gap: 22px;
}

.banner_text p::before {
    position: absolute;
    content: '';
    width: 67%;
    height: 1px;
    background: #ffffff70;
    left: 0;
    bottom: 237px;
}

.header-btn a {
    height: 51px;
    border: 1px solid #000;
    width: 51px;
    border-radius: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: anchor-center;
    color: #464646;
    margin-right: 4px;
}

.header-btn a:hover {
    color: #fff;
    background: #006838;
    border-color: #006838;
}

.about_sec {
    padding: 100px 0;
}

.about_sec.inner-About {
    padding-bottom: 20px;
}

.about_img img {
    height: 520px;
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.about_text {
    margin: 55px 0 0 0;
}

.about_text h1 {
    font-size: 50px;
    font-weight: 600;
}

.about_text h3 {
    font-size: 30px;
    font-weight: 600;
    color: #00c66b;
    padding-left: 20px;
}

.about_text p {
    padding-bottom: 21px;
    line-height: 2.05;
    padding-left: 20px;
    color: #727272;
}

.about_text a {
    margin-left: 20px;
    width: 172px;
    text-align: center;
    height: 49px;
    background-image: -moz-linear-gradient( 90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    display: flex;
    justify-content: end;
    align-items: anchor-center;
    border: 1px solid #fff;
    border-radius: 25px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 13px;
    gap: 22px;
    padding: 3px;
}

.about_text a img {
    height: auto;
    width: auto;
    background: #fff;
    padding: 15px;
    border-radius: 25px;
    margin-right: 1;
}

.about_text {
    position: relative;
}

.about_text::before {
    position: absolute;
    content: '';
    height: 84%;
    width: 2px;
    background: #d5d5d5;
    left: 6px;
    top: 63px;
}

.about_text::after {
    width: 2px;
    height: 32px;
    position: absolute;
    content: '';
    background: #21c66b;
    z-index: 1;
    top: 63px;
    left: 6px;
}

.product {
    padding-bottom: 100px;
}

.product_content h1 {
    font-size: 51px;
    font-weight: 700;
}

.product_content h3 {
    font-size: 30px;
    color: #00c66b;
}

.Moringa {
    display: flex;
    justify-content: space-between;
}

.product_text {
    background: #006838;
    padding: 30px;
    border-radius: 0 0 30px 30px;
    position: relative;
}

.product_text:hover {
    background: #00c66b;
}

.product_card img {
    width: 100%;
    border-radius: 14px 14px 20px 20px;
    transition: 0.5s;
}

.product_card:hover img {
    transform: scale(1.3);
    filter: brightness(0.5);
}

.product_card {
    background: #006838;
    border-radius: 14px 14px 40px 40px;
    overflow: hidden;
}

.product_card:hover {
    background: #00c66b;
}

.product_text h3 {
    color: #fff;
    font-size: 26px;
}

.product_text p {
    color: #fff;
    padding: 21px 0;
}

.Moringa span {
    color: #fff;
    font-weight: 600;
    font-size: 11px;
}

.Moringa i {
    font-size: 12px;
    color: #ff9c00;
}

span.total {
    font-size: 20px;
}

.product_content {
    padding-bottom: 30px;
    position: relative;
}

.product_content::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    bottom: 23px;
    background: #d7d7d7;
}

.product_content::after {
    position: absolute;
    content: '';
    width: 5%;
    height: 2px;
    background: #00c66b;
    bottom: 23px;
}

.cart_icon a {
    background: #fff;
    height: 51px;
    width: 51px;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 39px;
    color: #000;
    transition: 0.5s;
}

.cart_icon {
    position: absolute;
    top: -37px;
    right: 14px;
    overflow: hidden;
}

.Heal {
    background-image: url(../images/services.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
}

.Heal_text {
    margin-top: 165px;
    position: relative;
}

.Heal_text h2 {
    font-size: 50px;
    color: #fff;
    font-weight: 600;
}

.Heal_text h3 {
    font-size: 30px;
    color: #08c66b;
}

.Heal_text p {
    color: #87baa3;
    line-height: 2.05;
    padding-bottom: 20px;
    padding-top: 5px;
}

.heal_btn {
    width: 280px;
    text-align: center;
    height: 51px;
    background-image: -moz-linear-gradient( 90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    display: flex;
    justify-content: end;
    align-items: anchor-center;
    border: 1px solid #fff;
    border-radius: 25px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 13px;
    gap: 22px;
    padding: 5px;
    position: absolute;
    left: 500px;
    right: 500px;
}

.heal_btn img {
    height: auto;
    width: auto;
    background: #fff;
    padding: 16px;
    border-radius: 25px;
}

.FEATURED {
    padding: 100px 0;
}

.FEATURED_CONTENT h2 {
    font-size: 51px;
    font-weight: 600;
}

.FEATURED_CONTENT h3 {
    font-size: 30px;
    color: #08c66b;
}

.FEATURED_CONTENT {
    display: flex;
    justify-content: space-between;
    align-items: end;
    position: relative;
}

.FEATURED_CONTENT::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background: #d7d7d7;
    bottom: -13px;
}

.FEATURED_CONTENT::after {
    content: '';
    width: 5%;
    height: 2px;
    background: #00c66b;
    bottom: -13px;
    position: absolute;
}

.FEATURED_CONTENT a {
    margin-left: 20px;
    width: 151px;
    text-align: center;
    height: 51px;
    background-image: -moz-linear-gradient( 90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    display: flex;
    justify-content: end;
    align-items: anchor-center;
    border: 1px solid #fff;
    border-radius: 25px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 13px;
    gap: 31px;
    padding: 4px;
}

.FEATURED_CONTENT a img {
    height: auto;
    width: auto;
    background: #fff;
    padding: 16px;
    border-radius: 25px;
}

.product_slider .slick-active {
    opacity: 1.5;
}

.reviews {
    padding: 100px 0;
}


/*---------------------------------------------------- Testimonial Section Start ------------------------------------------------------------- */

.sec-head p {
    width: 48%;
    margin: 0 auto;
    opacity: 50%;
    color: #131212;
}

.testimonial-top-box {
    position: relative;
}

ul.star {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
}

ul.testi-profile-list h6 {
    font-size: 16px;
    font-family: "Montserrat";
    text-transform: capitalize;
}

.testi-slide-content::after {
    position: absolute;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    content: "";
    width: 35px;
    height: 35px;
    left: 15px;
    top: -34px;
    z-index: -1;
    background: #006838;
}

.testi-slide-content h5 {
    color: #fff;
}

.slick-center .testi-slide-content h6 {
    color: #fff;
}

.testimonial-sec .sec-head {
    text-align: center;
    margin-bottom: 10px;
}

.testimonial-top-box::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    border-top: 2px dashed #0000003b;
    top: 55px;
    left: 0;
    z-index: -1;
}

.profile-top img {
    width: 70px;
    height: 70px;
    object-fit: scale-down;
    border-radius: 70px;
    box-shadow: 0 0 0px 13px #00683873;
    background-color: #006838;
    /* opacity: 0; */
}

img.reives_img {
    display: none;
}

.textimonals_box img.reives_img {
    opacity: 0;
    /* display: block; */
}

.testi-slider .slick-slide {
    margin: 0 20px;
    margin-top: 0;
    padding-top: 50px;
    position: relative;
    opacity: 1;
}

.textimonals_box:hover .profile-top img {
    box-shadow: 0 0 0 15px #00c66b91;
}

.profile-top {
    margin: -30px 0 80px 0;
    z-index: 1;
    position: relative;
}

.testi-slide-content {
    padding: 23px 30px 45px;
}

ul.testi-profile-list {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 20px 0 25px;
}

ul.star i {
    font-size: 14px;
    color: #ffb503;
}

ul.testi-profile-list h5 {
    font-size: 17px;
    text-transform: uppercase;
    margin: 0;
}

ul.testi-profile-list h6 {
    font-size: 16px;
    font-family: 'CamronDemo';
    text-transform: capitalize;
}

.testi-slide-content p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 300;
    opacity: 60%;
    text-align: start;
}

.testi-slider .slick-list {
    padding: 0px 80px !important;
    margin: 0 -105px;
}

.testimonial-sec .container-fluid {
    padding: 0;
}

.testi-slide-content {
    position: relative;
    z-index: 3;
    background-color: #006838;
    border-radius: 12px;
}

.textimonals_box:hover .testi-slide-content {
    background: #00c66b;
}

.textimonals_box:hover .testi-slide-content::after {
    background: #00c66b;
}

.slick-center .testi-slide-content {
    background: #00c66b;
}

.slick-center .testi-slide-content::after {
    background: #00c66b;
}

.testi-slide-content p {
    color: #fff;
}

.slick-slide.slick-current .profile-top img.prf-2 {
    opacity: 1;
}

.slick-slide.slick-current .profile-top img.prf-1 {
    display: none;
}

.testimonial-sec {
    margin-bottom: 100px;
}


/*---------------------------------------------------- Testimonial Section End ------------------------------------------------------------- */

.contact_us {
    background-image: url(../images/contact.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0;
}

.contact_us.inner_contact {
    margin: 100px 0;
}

.contact_text {
    background: #fff;
    padding: 60px 30px;
    border-radius: 14px;
}

.contact_text form input {
    width: 100%;
    height: 51px;
    margin-bottom: 11px;
    border: 1px solid #ededed;
    padding: 11px;
    border-radius: 10px;
}

.contact_text form button {
    width: 151px;
    text-align: center;
    height: 51px;
    background-image: -moz-linear-gradient( 90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    display: flex;
    justify-content: end;
    align-items: anchor-center;
    border: 1px solid #fff;
    border-radius: 25px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 13px;
    gap: 31px;
    padding: 4px;
}

.contact_text form textarea {
    width: 100%;
    height: 280px;
    border: 1px solid #ededed;
    padding: 11px;
    border-radius: 10px;
}

.contact_text form button img {
    height: auto;
    width: auto;
    background: #fff;
    padding: 16px;
    border-radius: 25px;
}

.user {
    position: relative;
}

.user i {
    position: absolute;
    top: -45px;
    right: 17px;
    color: #008045;
}

.email {
    position: relative;
}

.email i {
    position: absolute;
    top: -45px;
    right: 17px;
    color: #008045;
}

.phone {
    position: relative;
}

.phone i {
    position: absolute;
    top: -45px;
    right: 17px;
    color: #008045;
}

.MESSAGE {
    position: relative;
}

.MESSAGE i {
    position: absolute;
    top: 13px;
    right: 17px;
    color: #008045;
}

.textimonals_box:hover img.reives_img {
    opacity: 1;
}

.textimonals_box:hover img.reives_img {
    display: block;
}

.slick-center img.reives_img {
    display: block;
}

.slick-center img.prf-2 {
    display: none;
}

.banner_text.inner-banner.wow.fadeInLeft {
    margin: 0;
}

.Testimonals {
    padding: 100px 0;
}

img.reives_img:hover {
    display: block;
}

.textimonals_box:hover img.prf-2 {
    display: none;
}

.product.inner-product {
    padding-top: 100px;
}

.product_card img {
    height: 326px;
    width: 310px;
    object-fit: cover;
}


/*CART PAGE CSS*/

.shopping_cart {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.chk-btn {
    text-align: center;
}

.shopping_cart img.bk-2 {
    bottom: -38%;
    width: 6%;
}

.shopping_cart img.bk-1 {
    bottom: -2%;
    width: 7%;
}

.cart-pag-qunty .product-detail .num-in {
    width: 30% !important;
    border: 0 !important;
}

.payment_card a.btn-1 {
    color: #fff !important;
}

.payment_card a.btn-1 i {
    color: #fff !important;
}

.shopping_cart_table h2 {
    font-size: 35px;
    margin-bottom: 30px;
    font-weight: 600;
}

.shopping_cart_table table th {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    padding-bottom: 10px;
    color: #151414;
}

.shopping_cart_table table thead {
    border-bottom: 1px solid #b8b8b8;
}

.shopping_cart_table table tbody td {
    padding: 25px 0;
    border-bottom: 1px solid #dddddd;
}

.shopping_cart_table table tbody .cart_box_product {
    display: flex;
    align-items: center;
}

.shopping_cart_table table tbody .cart_box_product .cart_product_img {
    width: 25%;
    background-color: #f2f2f2;
    /* padding: 25px 10px; */
    margin-right: 10px;
}

.cart_product_img img {
    height: 90px;
    width: 88px;
    object-fit: cover;
}

.shopping_cart_table table tbody .cart_box_product .cart_product_name h5 {
    font-size: 25px;
    text-transform: capitalize;
    font-weight: 600;
    margin: 0;
}

.shopping_cart_table table tbody .cart_box_product .cart_product_name p {
    font-size: 14px;
    color: #000;
    text-transform: uppercase;
    margin: 0;
}

.shopping_cart_table table tbody td select {
    height: 40px;
    padding-left: 10px;
    appearance: auto;
    border: 1px solid #b8b8b8;
}

.shopping_cart_table table tbody td .skin-2 .num-in {
    border-radius: 0;
    border: 1px solid;
    width: 44%;
    padding: 6px 18px;
    color: #000;
}

.shopping_cart_table table tbody td .t_price {
    font-size: 20px;
    font-weight: 600;
    color: #070707;
    margin: 0;
}

th.w-40 {
    width: 40%;
}

.shopping_cart_table table tbody td i.fas.fa-times {
    font-size: 20px;
    color: #000;
}

.cart_recipt {
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.cart_recipt>a {
    padding: 15px 50px;
    border: 1px solid #b8b8b8;
    border-radius: 50px;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #151414;
    font-weight: 500;
}

.cart_recipt>a i {
    margin-right: 10px;
}

.recipt {
    width: 30%;
}

.recipt li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #151414;
    text-transform: uppercase;
}

.recipt li:last-child {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #dddddd;
}

.recipt li span {
    color: #151414;
    font-size: 16px;
    letter-spacing: 2px;
}

.payment_card {
    background-color: transparent;
    padding: 0 0;
}

.payment_card h3 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 40px;
    text-transform: capitalize;
    border-bottom: 1px solid #dddddd;
}

.payment_card * {
    color: #0e0d0d !important;
    text-align: start;
}

.chk-btn a img {
    height: auto;
    width: auto;
    background: #fff;
    padding: 16px;
    border-radius: 25px;
}

.chk-btn a {
    width: 151px;
    text-align: center;
    height: 51px;
    background-image: -moz-linear-gradient( 90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    display: flex;
    justify-content: end;
    align-items: anchor-center;
    border: 1px solid #fff;
    border-radius: 25px;
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 13px;
    gap: 31px;
    padding: 4px;
}

.credit_paypal a {
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-flex;
    background: #f3f3f3;
    align-items: center;
    color: #fff;
    font-weight: 500;
    font-family: 'Montserrat';
    font-size: 15px;
}

.credit_paypal a img {
    height: 20px;
    object-fit: contain;
    margin-right: 10px;
}

.credit_paypal {
    padding-bottom: 20px;
    border-bottom: 1px solid #dddddd;
}

.payment_card form label {
    font-size: 15px;
    font-weight: 600;
}

.payment_card form {
    margin-top: 15px;
}

.payment_card form input {
    width: 100%;
    height: 50px;
    border: none;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 15px;
    background: transparent;
    padding: 0;
}

.payment_card form select {
    width: 100%;
    height: 50px;
    border: none;
    color: #fff;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 15px;
    background: transparent;
    padding: 0;
}

.payment_card form input::placeholder {
    color: #7d7d7d;
}

.expiry_cvv {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.expiry_date {
    width: 70%;
}

.cvv_box {
    width: 26%;
}

.month_year {
    display: flex;
    justify-content: space-between;
}

.month_year select {
    width: 48% !important;
    appearance: auto;
}

.month_year select option {
    color: #000;
}

.payment_card form .btn1 {
    margin: 30px 85px;
    border: 1px solid;
}

.shopping_cart_table {
    padding-right: 40px;
}

.payment_card a.theme_btn {
    color: #fff !important;
    margin: 0 auto;
    margin-top: 10px;
}


/*CART PAGE CSS END*/

.num-in {
    display: flex;
    align-items: center;
}

.num-in span {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer;
    background: #ffffff;
    user-select: none;
    color: #000 !important;
}

.num-in .dis {
    opacity: 0.4;
    pointer-events: none;
}

.in-num {
    width: 40px;
    text-align: center;
    border: unset;
}


/* Account */

.account_sec {
    padding: 100px 0;
}

.account_box h2 {
    font-size: 58px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.account_box form input {
    width: 100%;
    border: 1px solid #d0d0d0;
    padding: 12px 20px;
    margin-bottom: 20px;
    font-size: 15px;
    font-family: "Roboto-Regular";
    color: #000000;
    /* border-radius: 41px; */
}

.create {
    padding: 10px 180px 0;
}

.login {
    padding: 10px 180px 0;
}

.account_box form button {
    width: 166px;
    text-align: center;
    height: 51px;
    background-image: -moz-linear-gradient( 90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    display: flex;
    justify-content: end;
    align-items: anchor-center;
    border: 1px solid #fff;
    border-radius: 25px;
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 13px;
    gap: 31px;
    padding: 4px;
}

.account_box button img {
    height: auto;
    width: auto;
    background: #fff;
    padding: 16px;
    border-radius: 25px;
}

.account_box {
    box-shadow: 0 0 12px 0 #7c7c7c;
    padding: 56px 30px;
    /* height: 100%; */
    border-radius: 19px;
}

.btn1 {
    color: #100f0e;
    text-decoration: underline;
    font-size: 14px;
    font-family: "Roboto-Regular";
    font-weight: 600;
}

.btn2 {
    /* text-align: end; */
    color: #979797;
    /* justify-content: end; */
    padding-left: 0;
    display: flex;
    gap: 10px;
}

.account_box1 h2 {
    font-size: 51px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0;
    padding-bottom: 23px;
    text-transform: uppercase;
}

.account_box1 form input {
    width: 100%;
    border: 1px solid #d0d0d0;
    padding: 12px 20px;
    margin-bottom: 20px;
    font-size: 15px;
    font-family: "Roboto-Regular";
    color: #000;
    /* border-radius: 39px; */
}

.account_box1 button img {
    height: auto;
    width: auto;
    background: #fff;
    padding: 16px;
    border-radius: 25px;
}

.account_box1 form button {
    width: 191px;
    text-align: center;
    height: 51px;
    background-image: -moz-linear-gradient( 90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    display: flex;
    justify-content: end;
    align-items: anchor-center;
    border: 1px solid #fff;
    border-radius: 25px;
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 13px;
    gap: 31px;
    padding: 4px;
}

.account_box1 {
    box-shadow: 0 0 7px 0 #7c7c7c;
    padding: 52px 30px;
    /* height: 100%; */
    border-radius: 19px;
}

.account_box1 input.select {
    margin: 0 9px;
    width: 16px;
    height: 13px;
    padding: 0;
    text-align: start;
    border-radius: 33px;
}

.account_box1 input.select1 {
    margin: 0 9px;
    width: 12px;
    height: 10px;
    padding: 0;
    text-align: start;
}

.account_box input.select1 {
    width: 14px !important;
    height: 25px;
}

.view-pass i {
    position: absolute;
    right: 12px;
    bottom: 37px;
    cursor: pointer;
}

.view-pass {
    position: relative;
    z-index: 1;
}

.account_box1 form p {
    font-size: 12px;
    color: #818181;
}

.carousel-item.inner-banner img {
    height: 93vh;
}

.desgin.inner-banner {
    position: absolute;
    z-index: -1;
    top: -48px;
    right: 103px;
}

.desgin.inner-banner img {
    height: 104vh !important;
    width: 907px;
}


/* product_detail */

.product_detail {
    padding: 100px 0;
}

.product_detail_text h1 {
    font-size: 51px;
    font-weight: 600;
}

.product_detail_text p {
    font-size: 17px;
    line-height: 34px;
    padding-bottom: 15px;
}

.product_detail_img img {
    border-radius: 20px;
}

.product_detail_text img {
    height: auto;
    width: auto;
    background: #fff;
    padding: 19px;
    border-radius: 25px;
}

.product_detail_text a {
    width: 186px;
    text-align: center;
    height: 61px;
    background-image: -moz-linear-gradient( 90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    display: flex;
    justify-content: end;
    align-items: anchor-center;
    border: 1px solid #fff;
    border-radius: 35px;
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 14px;
    gap: 25px;
    padding: 4px;
}

.prdouct_quntity {
    display: flex;
    gap: 50px;
    padding-bottom: 24px;
}

.num-in.add {
    border: 1px solid;
    border-radius: 32px;
    width: 125px;
    padding: 10px;
}

input.in-num.add {
    border-left: 1px solid;
    border-right: 1px solid;
}


/* product_detail */


/* checkout */

.checkout {
    padding: 100px 0;
}

.checkout_form form input {
    width: 100%;
    height: 51px;
    margin-bottom: 11px;
    padding: 11px;
    border: 1px solid #7c7c7c;
}

.checkout_form form select {
    width: 100%;
    height: 51px;
    margin-bottom: 11px;
    padding: 11px;
    appearance: auto;
}

.checkout_form form textarea {
    width: 100%;
    height: 228px;
    padding: 11px;
}

.checkout_form h2 {
    font-weight: 700;
    padding-bottom: 19px;
}


/* checkout */

.foot-links {
    padding: 35px 45px 0;
}

.foot-links ul {
    column-count: 2;
}

.foot-links ul li a {
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    padding-bottom: 4px;
}

.foot-links h5 {
    font-size: 23px;
    color: #ffff;
    font-weight: 500;
    padding-bottom: 5px;
}

.footerSec {
    padding: 0px 0 50px;
    background: #1e1e1e;
    position: relative;
}

.news-letter {
    border-top: 2px solid;
    padding-left: 32px;
}

.news-letter h5 {
    font-size: 25px;
    padding-top: 20px;
    color: #fff;
    font-weight: 600;
    padding-bottom: 15px;
}

.news-letter input {
    width: 98%;
    height: 50px;
    padding: 12px;
    border-radius: 32px;
    background: #353535;
    border: unset;
    color: #fff;
    margin-bottom: 15px;
}

.news-letter input::placeholder {
    color: #fff;
    font-size: 10px;
    text-transform: uppercase;
}

.news-letter button {
    width: 151px;
    text-align: center;
    height: 51px;
    background-image: -moz-linear-gradient( 90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    display: flex;
    justify-content: end;
    align-items: anchor-center;
    border: 1px solid #fff;
    border-radius: 25px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 13px;
    gap: 21px;
    padding: 4px;
}

.news-letter button img {
    height: auto;
    width: auto;
    background: #fff;
    padding: 16px;
    border-radius: 25px;
}

.footerSec::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    background: #393939;
    left: 113px;
}

.helpline {
    text-align: center;
    padding-top: 10px;
    position: relative;
}

.helpline::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 114%;
    background: #393939;
    left: -24px;
    top: 0;
}

.helpline::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 116%;
    background: #393939;
    right: 0px;
    top: 0;
}

.phone_no {
    padding: 50px;
    position: relative;
}

.email_address {
    padding: 50px;
    position: relative;
}

.copy-txt {
    padding: 30px;
    position: relative;
}

.phone_no::before {
    width: 105%;
    position: absolute;
    content: '';
    height: 1px;
    background: #393939;
    left: -22px;
    bottom: 0;
}

.email_address::before {
    position: absolute;
    content: '';
    width: 105%;
    left: -23px;
    background: #393939;
    height: 1px;
    bottom: 0;
}

.copy-txt::before {
    position: absolute;
    content: '';
    width: 105%;
    bottom: 0;
    left: -23px;
    background: #393939;
    height: 1px;
}

.copy-txt p {
    color: #a8a8a8;
    font-size: 14px;
    font-weight: 100;
}

.email_address h4 {
    color: #a8a8a8;
}

.email_address a {
    color: #a8a8a8;
}

.phone_no h4 {
    color: #a8a8a8;
}

.phone_no a {
    color: #a8a8a8;
}

.helpline h3 {
    position: absolute;
    right: -144px;
    transform: rotate(90deg);
    bottom: 151px;
    letter-spacing: 11px;
    color: #fff;
    font-weight: 400;
    font-size: 21px;
}

.social ul li a:hover {
    border: unset;
    background-image: -moz-linear-gradient( 90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
}

.social ul li a {
    color: #b5b5b5;
    border: 1px solid #2f2f2f;
    height: 40px;
    width: 40px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 41px;
}

.social ul li {
    padding-bottom: 43px;
}

.social {
    position: absolute;
    top: 100px;
    left: 30px;
}

.product_slider .slick-prev:before {
    content: '';
    background-image: url(../images/left-arrow-back.png);
    border-color: #cdcdcd;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 56px;
    display: flex;
    background-size: contain;
    height: 12px;
    width: 17px;
    filter: brightness(0) saturate(100%) invert(66%) sepia(99%) saturate(1%) hue-rotate(344deg) brightness(108%) contrast(83%);
}

.product_slider .slick-next:before {
    content: '';
    background-image: url(../images/right-arrow-back.png);
    background-position: center;
    background-repeat: no-repeat;
    /* background-color: #006838; */
    border-radius: 56px;
    display: flex;
    background-size: contain;
    height: 12px;
    width: 17px;
    filter: brightness(0) saturate(100%) invert(66%) sepia(99%) saturate(1%) hue-rotate(344deg) brightness(108%) contrast(83%);
}

h6.payment-h {
    font-weight: 500;
    color: #000;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
    margin-top: 14px;
}

.cart_sidebar .radiosss-payments li label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #b7b7b7;
    box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 50px;
}

.cart_sidebar .radiosss-payments li input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 9px;
    border-radius: 20px;
    left: 6px;
    border: 0;
    width: 10px;
    height: 10px;
    background-color: #250503;
}

.radiosss-payments .card.card-body {
    padding: 0;
    border: 0;
    margin-left: 30px;
    background: none;
}

section.checkout_page.all-section.all-side {
    padding: 60px 0px 80px;
    position: relative;
}

.checkout_page .img-1 {
    position: absolute;
    left: -13%;
    top: 50%;
    width: 340px;
}

.checkout_page .img-2 {
    position: absolute;
    right: -7%;
    top: 60%;
    width: 230px;
    transform: rotate(200deg);
}

.billing_form {
    border: none;
    padding: 0;
}

section.checkout_page a.theme_btn {
    margin: 0 auto;
}

.checkout_page {
    position: relative;
    padding: 100px 0;
}

.checkout_page img.bk-1 {
    bottom: 20%;
    width: 7%;
}

.checkout_page img.bk-2 {
    bottom: 10%;
    width: 7%;
}

.option-list a {
    width: 172px;
    text-align: center;
    height: 52px;
    background-image: -moz-linear-gradient( 90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    display: flex;
    justify-content: end;
    align-items: anchor-center;
    border: 1px solid #fff;
    border-radius: 25px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 14px;
    gap: 20px;
    padding: 3px;
}

.option-list a img {
    height: auto;
    width: auto;
    background: #fff;
    padding: 16px;
    border-radius: 25px;
}

.option-list label {
    display: inline-block;
    font-size: 17px;
    padding-bottom: 11px;
    font-weight: 600;
    color: #000;
    position: relative;
}

.option-list .radiosss-payments li input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 9px;
    border-radius: 20px;
    left: 6px;
    border: 0;
    width: 10px;
    height: 10px;
    background-color: #00723d;
}

.option-list .radiosss-payments li label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #b7b7b7;
    box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 0%);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 13px;
    border-radius: 50px;
}

.option-list ul li input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.about_text.inner-about {
    margin-top: 20px;
}

.about_text1.inner-about p {
    padding-top: 21px;
    line-height: 2.05;
    padding-left: 20px;
    color: #727272;
}

.inner_about {
    padding-bottom: 100px;
}

.inner-about_content p {
    padding-bottom: 21px;
    line-height: 2.05;
    padding-left: 20px;
    color: #727272;
}

.inner-about_content {
    padding-top: 40px;
}

.inner_img img {
    border-radius: 19px;
}

.theme-btn {
    position: relative;
    z-index: 2;
    border: 0;
}

.theme-btn:hover::before {
    width: 100%;
    height: 100%;
}

.theme-btn::before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    background: #000;
    border-radius: 100px;
    z-index: -1;
    transition: .5s all;
}

.theme-btn:hover {
    color: #fff;
}

.product_card .cart_icon a:hover {
    background: #000;
    color: #fff;
    transform: scale(1.3);
    border-radius: 33px;
}

.product_slider .slick-prev {
    left: auto;
    right: 7%;
    top: -74px;
    height: 50px;
    width: 50px;
    background-color: #fff;
    display: grid;
    place-content: center;
    border-radius: 70px;
    border: 1px solid #b2b2b2;
}

.product_slider .slick-prev:hover {
    background-image: -webkit-linear-gradient(90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    border: 0;
}

.product_slider .slick-next:hover {
    background-image: -webkit-linear-gradient(90deg, rgb(0, 198, 107) 0%, rgb(0, 104, 56) 100%);
    border: 0;
}

.product_slider .slick-prev:hover::before,
.product_slider .slick-next:hover::before {
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(93deg) brightness(105%) contrast(105%);
}

.product_slider .slick-next {
    right: 2%;
    top: -76px;
    height: 50px;
    width: 50px;
    background-color: #fff;
    border: 1px solid #b2b2b2;
    display: grid;
    place-content: center;
    border-radius: 70px;
}

section.main_slider {
    position: relative;
}

.social_icon ul li a {
    color: #5e9f81;
    border: 1px solid;
    height: 40px;
    width: 40px;
    border-radius: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social_icon ul li {
    padding-bottom: 20px;
}

.social_icon {
    position: absolute;
    right: 373px;
    bottom: 135px;
    z-index: 1;
    transform: rotate(-63deg);
}

.social_icon ul li a:hover {
    background: #fff;
    border-color: #fff;
}

.product_slider .slick-prev:hover:before {
    /* background-color: #006838; */
}