@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px "Montserrat", sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
}

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;
}

img {
    max-width: 100%;
}

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;
}

ul {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
}

p {
    font-weight: 400;
    line-height: 25px;
    font-family: "Montserrat", sans-serif;
    color: #3b2c27;
    font-size: 14px;
}


/***** Font Files *****/

@font-face {
    font-family: 'trajan-pro';
    src: url(../fonts/trajan-pro.otf);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.pt_8 {
    padding-top: 80px;
}

.pb_8 {
    padding-bottom: 80px;
}

.py_8 {
    padding: 80px 0px;
}

.theme_btn {
    padding: 0 14px 0 0;
    border: 1px solid #e1dbd0;
    border-radius: 25px;
    color: #ffffff;
    z-index: 1;
    background: #fff;
    position: relative;
    font-size: 14px;
    transition: all 250ms;
    overflow: hidden;
    display: flex;
    align-items: center;
    width: fit-content;
    text-transform: uppercase;
    font-family: 'trajan-pro';
    line-height: 1;
    height: 50px;
    gap: 10px;
}

.theme_btn span {
    background: #c05248;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    border-radius: 50px;
    padding: 0 20px;
    transition: 0.54s;
}

.theme_btn:hover span {
    background: #000;
}

.theme_btn:hover {
    color: #fff;
}

.theme_btn:hover::before {
    width: 100%;
}

.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 {
    position: relative;
    font-family: 'trajan-pro';
    font-size: 48px;
    line-height: 1.2;
    color: #3b2c27;
    font-weight: 500;
    margin: 0 0 17px;
    text-transform: uppercase;
    border-bottom: 1px solid #ccc6bc;
    width: fit-content;
}

h2 {
    font-family: 'trajan-pro';
    font-size: 49px;
    line-height: 1.2;
    color: #3b2c27;
    font-weight: 500;
    margin: 0 0 20px;
    text-transform: uppercase;
}

h3 {
    font-family: 'trajan-pro';
    font-size: 25px;
    line-height: 1.2;
    color: #252525;
    font-weight: 500;
    margin: 0 0 28px;
}

h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 13px;
}

h5 {
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 22px;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #575757;
}

::-moz-placeholder {
    color: #575757;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #575757;
}

:-moz-placeholder {
    color: #575757;
    opacity: 1;
}


/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menuSec ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
    position: relative;
}

.menuSec li:hover ul {
    opacity: 1;
}

.menuSec ul li a {
    position: relative;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    color: #3b2c27;
    font-weight: 500;
}

.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>ul {
    position: absolute;
    z-index: 0;
    background-color: #000000;
    left: 0px;
    width: 200px;
    text-align: left;
    top: -80px;
    opacity: 0;
    transition: 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.menuSec li:hover ul {
    transition: 0.5s ease-in-out;
    top: 40px;
    z-index: 99;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    font-size: 13px;
    line-height: 20px;
    width: 100%;
}

.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;
    width: 100%;
}

.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;
}

.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;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 40px;
}

.droopdwon {
    float: left;
}

.droopdwon li:hover li a:hover {
    background-color: #ffffff;
    color: #000 !important;
}


/*header css start */

.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;
}


/*banner css start */


/* Tab slider fix  */

.tab_sec .tab-pane {
    display: block;
    border: 0;
    height: 0;
}

.tab_sec .tab-pane.active {
    display: block !important;
    height: auto;
}


/* Tab slider fix  */

.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: rgba(0, 0, 0, 0.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 css end*/

.blog_sec {
    padding: 5% 0;
}


/* Tabs  */

.tab_sec .nav-tabs .nav-link.active {
    background: #242889;
    color: #fff;
}

.tab_sec .nav-tabs .nav-link {
    background: #ccc;
    border-radius: 50px;
    color: #000;
    padding: 7px 28px;
}

.tab_sec .nav-tabs {
    border: none;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}


/* Tabs  */

/* +++++++++++++++++++++++++++++++++ Home +++++++++++++++++++++++++++++++++ */
header {
    z-index: 99;
    position: absolute;
    width: 100%;
    left: 0;
    top: 10px;
    border-bottom: 1px solid #e1dbd091;
    padding-bottom: 10px;
}

.menuSec ul li.active:before {
    position: absolute;
    content: '';
    background: #c05248;
    width: 100%;
    bottom: -23px;
    left: 0;
    height: 1px;
}

.header-search {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: right;
}

a.user-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #c05248;
    border-radius: 50%;
    color: #fff;
}

.search-wrap {
    position: relative;
    width: 67%;
}

.search-wrap form input {
    width: 100%;
    border: 1px solid #000;
    border-radius: 50px;
    height: 50px;
    background: #fff;
    padding-left: 50px;
    font-family: 'trajan-pro';
}

.search-wrap form button {
    background: transparent;
    border: 0;
    left: 10px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    color: #3b2c27;
}

.cart-top a {
    color: #3b2c27;
    font-size: 18px;
    position: absolute;
    top: 55%;
    right: 22px;
    transform: translate(0, -50%);
}

.cart-top span {
    background: #c05248;
    font-size: 7px;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    position: absolute;
    top: -4px;
    right: -7px;
}

section.banner {
    background-image: url(../images/banner.jpg);
    padding: 120px 0 0;
    position: relative;
    z-index: 0;
}

section.banner:before {
    position: absolute;
    content: '';
    background-image: url(../images/ban2.png);
    background-size: cover;
    width: 30vw;
    right: 0;
    top: 0;
    height: 100%;
    background-color: #3b2c27;
    z-index: -1;
}

section.banner:after {
    position: absolute;
    content: '';
    background-image: url(../images/ban3.png);
    background-size: contain;
    width: 17%;
    right: 14%;
    top: 15%;
    height: 72%;
    background-repeat: no-repeat;
    z-index: -1;
}

section.banner .row {
    align-items: center;
}

h1 span {
    color: #c05248;
}

h1:before {
    position: absolute;
    content: '';
    background: #c05248;
    width: 60px;
    height: 1px;
    right: 0;
    bottom: -1px;
}

.container-fluid {
    padding: 0 5%;
}

.banner_text p {
    width: 80%;
}

.banner_img {
    margin-left: -130px;
}

.ban-slider {
    z-index: 99;
}

img.img-fluid {
    width: 73%;
}

img.stone {
    width: auto;
    height: auto;
    margin-left: -20px;
}

.slick-slide {
    margin-right: 0;
}

.follow-on {
    position: absolute;
    height: 70px;
    background: #3b2c27;
    width: 100%;
    bottom: 0;
    left: 0;
}

.ban-prd ul {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 20px 20px;
    border-radius: 7px;
    width: 330px;
    position: absolute;
    bottom: 0;
    right: 4%;
    z-index: 9999;
}

.ban-prd h3 {
    font-size: 13px;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.ban-prd p {
    font-size: 12px;
    color: #2c2c2c;
    width: 90%;
    line-height: 20px;
}

.ban-prd h4 {
    font-size: 14px;
    color: #c05248;
    font-family: 'trajan-pro';
    line-height: 1;
    margin: 0;
}

.ban-prd ul li div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ban-prd span {
    font-size: 12px;
    color: #000;
    font-family: 'trajan-pro';
}

.ban-prd span i {
    color: #ffa800;
    font-size: 10px;
}



.ban-prd ul li img {
    display: block;
    width: 120px;
    width: 140px;
}

.ban-prd ul li:last-child {
    margin-right: -50px;
}

img.leav-img {
    position: absolute;
    left: 30px;
    top: 30px;
    width: 79%;
    z-index: -1;
}

.slick-dots li button:before {
    font-size: 9px;
    color: #ffffff75;
    opacity: 1;
}

.slick-dots li.slick-active {
    opacity: 1;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #fff;
}

ul.slick-dots {
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 42%;
    flex-direction: column-reverse;
    transform: translate(0, -50%);
    width: fit-content;
    margin: 0 0 0 auto;
    gap: 30px;
}

.slick-dots li.slick-active button:after {
    position: absolute;
    content: '';
    background: #ffffff38;
    width: 142px;
    right: 10px;
    height: 1px;
    top: 9px;
}

/* Footer Section Start */

footer.footer-sec {
    position: relative;
    padding: 70px 0 0;
    background-color: #3b2c27;
}

footer.footer-sec button.theme_btn.btn2 {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    width: 80px;
    background: #c05248;
    text-align: center;
    margin: 0 auto;
    display: block;
    border: 0;
}


ul.footer-social-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 40px;
    gap: 10px;
    margin-bottom: 15px;
}

ul.footer-social-list li i {
    font-size: 16px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #fff;
    border-radius: 50%;
    border: 1px solid #ffffff6e;
}

ul.footer-social-list li i:hover {
    background: #f47a2f;
    transition: 1s ease-in-out;
    color: #fff;
}

.footer-text h2 {
    font-size: 30px !important;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #fff;
}

footer .col-lg-4.col-md-6.w-set {
    /* width: 30%; */
}

footer .col-lg-2.col-md-6.w-set2 {
    /* width: 19.666666%; */
}

ul.footer-ser li a {
    font-size: 15px;
    color: #ffffffa6;
    line-height: 40px;
    font-weight: 500;
    text-transform: capitalize;
}

ul.footer-link li a {
    font-size: 15px;
    color: #ffffffa6;
    line-height: 40px;
    font-weight: 500;
    text-transform: capitalize;
}

.footer-form {
    position: relative;
}

.footer-form input {
    width: 100%;
    height: 50px;
    padding: 15px;
    border: 1px solid #dddddd99;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 400;
    font-family: 'Montserrat';
    font-size: 13px;
    padding-left: 20px;
    background: transparent;
    border-radius: 230px;
}

.footer-form i {
    position: absolute;
    top: 19px;
    left: 30px;
    font-size: 20px;
    color: #999;
}

.footr-btn button {
    width: 100%;
    justify-content: center;
}

.footer-text p {
    margin: 20px 0px 10px 0;
    color: #ffffffa6;
}

ul.footer-link {
    display: block;
}

.footer-text {
    position: relative;
}

.footer-text img {
    display: flex;
    margin-bottom: 40px;
}


.bottom-nav {
    padding: 10px 20px;
    text-transform: capitalize;
    border-top: 1px solid #7c7c7c;
    margin-top: 30px;
}

.bottom-nav p {
    font-size: 14px;
    color: #fff;
    font-family: 'Montserrat';
    text-align: start;
    line-height: 30px;
    margin: 0;
    font-weight: 300;
}

.payment-img {
    text-align: right;
}

ul.footer-link li {
    border-bottom: 1px solid transparent;
    width: 75%;
    transition: 1s ease-in-out;
}

ul.footer-link li:hover {
    padding-left: 10px;
    border-color: #fff;
    transition: 1s ease-in-out;
    color: #999999;
}

.no-border:before {
    display: none;
}

.footer-text a {
    transition: 0.5s;
    display: block;
    color: #ffffffa6;
}


/* Footer Section End */
section.categories {
    padding: 80px 0;
}

.top-heading {
    text-align: center;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 40px;
}


section.categories .container {
    position: relative;
}

section.categories img.leaf2 {
    left: 105%;
    bottom: 30%;
}

img.leaf3 {
    position: absolute;
    left: -60px;
    top: 10%;
}

.cat-box {
    text-align: center;
}

.cat-box h3 {
    margin: 20px 0 10px;
}

.cat-box p {
    width: 80%;
    margin: 0 auto;
}

.cat-img {
    position: relative;
}

.cat-img:before {
    position: absolute;
    content: '';
    border: 61px solid #3b2c27c4;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    transition: 0.5s;
}

.cat-img:hover:before {
    border-color: #c05248c2;
}

.cat-img img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
}

section.about-us {
    padding-bottom: 80px;
    padding-top: 40px;
}

section.about-us .container {
    position: relative;
}

img.leaf1 {
    position: absolute;
    top: 100px;
    left: -90px;
}

img.leaf2 {
    position: absolute;
    left: 50%;
    bottom: 10px;
}

.abt-wrap h2 {
    text-align: right;
}

.abt-img img {
    width: 100%;
}

.abt-text {
    background: #f5f1e6;
    padding: 40px;
    margin-left: -170px;
}

.product-box {
    margin: 25px auto;
    border-radius: 5px;
    background-color: #fff;
}

.product-box a.product-box-img {
    display: block;
}
.prd-text {padding: 20px;}


.product-box .product-box-img img {
    width: 100%;
    height: 275px;
    object-fit: cover;
    border-radius: 5px;
}

.prd-text ul {
    display: flex;
    margin-top: 10px;
    align-items: center;
    margin-bottom: 10px;
    justify-content: space-between;
}

.prd-text ul li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.prd-text ul li span {
    padding-right: 4px;
    line-height: 1;
}

.prd-text ul li h4 {
    color: #bb5644;
    font-size: 15px;
    margin: 0 0 0px;
    font-weight: 600;
    font-family: 'trajan-pro';
}

.prd-text ul li span i {
    font-size: 10px;
    color: #ffa800;
}

.product-box .product-box-img ul li span h4 {
    font-size: 12px;
    color: #515151;
    font-family: 'Roboto';
}

.product-box .custom-flex {
    display: flex;
    padding: 0;
    align-items: center;
    justify-content: space-between;
}

.product-box .custom-flex .product-box-number {
    flex-shrink: 0;
    border: 1px solid #dfdacf;
    width: 110px;
    display: flex;
    height: 47px;
    align-items: center;
    justify-content: space-between;
    border-radius: 50px;
}

.product-box .custom-flex .product-box-number input {
    width: 40px;
    color: #c05248;
    max-width: 30px;
    background-color: transparent;
    text-align: center;
    font-size: 16px;
    border: 1px solid #dfdacf;
    height: 20px;
    border-top: 0;
    border-bottom: 0;
}

.product-box .custom-flex .product-box-number button {
    width: 30px;
    border: none;
    height: 30px;
    display: flex;
    color: #000;
    flex-shrink: 0;
    align-items: center;
    transition: ease-in-out;
    justify-content: center;
    transition-duration: 0.5s;
    font-size: 10px;
    background: transparent;
}

.product-box .custom-flex .product-box-number button:hover {
    color: #739500;
    transition: ease-in;
    background-color: #fff;
    transition-duration: 0.5s;
}


.prd-text h5 {
    color: #2c2c2c;
    font-size: 16px;
    margin: 3px 0 6px;
    font-weight: 500;
    font-family: 'trajan-pro';
}

.prd-text h6 {
    font-family: 'Montserrat';
    font-size: 14px;
    color: #bb5644;
    font-weight: 500;
    margin: 0 0 0px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.prd-text h3 {
    font-size: 13px;
    color: #bb5644;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.prd-text p {
    font-size: 13px;
    line-height: 20px;
}

section.best-seller {
    position: relative;
}

section.best-seller:before {
    position: absolute;
    content: '';
    background: #f5f1e6;
    width: 100%;
    height: 50%;
    z-index: -1;
    bottom: 0;
}

.theme_btn.btn2 {
    padding: 0;
}
.seller-slider .slick-slide {
    opacity: 1;
}
.top-head h2 {
    border-bottom: 2px solid #d4d1d0;
    margin: 0px 20px 25px;
}
section.best-seller .slick-prev:before,
section.best-seller .slick-next:before {
    position: absolute;
    content: '\f060';
    font-family: 'Fontawesome';
    font-weight: 900;
    font-size: 20px;
    color: #fff;
    background: #000;
    width: 130px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: start;
    padding-left: 20px;
    border-radius: 41px;
}

section.best-seller .slick-next:before {
    content: '\f061';
    justify-content: right;
    padding-left: 0px;
    padding-right: 20px;
}

section.best-seller .slick-prev,
section.best-seller .slick-next {
    top: -73px;
}

section.best-seller .slick-prev {
    left: unset;
    right: 270px;
}

section.best-seller .slick-next {
    right: 130px;
}
section.best-seller .slick-prev:after {
    position: absolute;
    content: 'Prev';
    color: #fff;
    width: 100px;
    height: 20px;
    right: -110px;
    z-index: 999;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    top: 22px;
}
section.best-seller .slick-next:after {
    position: absolute;
    content: 'next';
    color: #fff;
    width: 100px;
    height: 20px;
    left: -3px;
    z-index: 999;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    top: 22px;
}

section.wellne-family {
    padding: 80px 0;
    text-align: center;
    background: #f5f1e6;
}

section.wellne-family a {
    margin: 0 auto;
}
section.wellne-family h2 span {
    color: #c05248;
}
section.wellne-family p {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 30px;
}
img.bg-well {
    width: 100%;
    object-fit: cover;
    margin-top: 60px;
}
section.best-seller.products {
    padding: 80px 0;
}

section.best-seller.products:before {
    display: none;
}

section.best-seller.products .product-box {
    border: 1px solid #e9e6df;
}
section.best-seller.products .top-head h2 {
    border: 0;
    margin: 0;
}

section.best-seller.products .top-head {
    border-bottom: 1px solid #ccc;
}

section.best-seller.products ul.nav.nav-tabs {
    border: 0;
    margin: 0;
    justify-content: right;
    gap: 30px;
}

section.best-seller.products .top-head .row {
    align-items: end;
}

section.best-seller.products a.nav-link {
    font-size: 15px;
    text-transform: uppercase;
    font-family: 'trajan-pro';
    padding: 0;
    color: #3b2c27;
    padding-bottom: 10px;
}

section.best-seller.products .nav-tabs .nav-link.active {
    border: 0;
    border-bottom: 1px solid #c05248;
}
section.trust {
    padding-bottom: 80px;
}
.trust-text h2 span {
    color: #c05248;
}

.trust-text h2 {
    font-size: 46px;
}

.trust-img img {
    height: 600px;
    width: 100%;
    object-fit: cover;
}


.trust-text {
    background: #f5f1e6;
    padding: 35px;
    height: 600px;
}

.trust-text ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 19px;
}

.trust-text ul li p {
    margin: 0;
    color: #000;
    font-family: 'trajan-pro';
}

.trust-text ul {
    margin: 20px 0;
}
/* +++++++++++++++++++++++++++++++++ end +++++++++++++++++++++++++++++++++ */



header.woocommerce-products-header {
    display: none;
}
header.woocommerce-products-header {
    display: none !important;
}



.type-product .w-full {
    padding: 0px !important;
}

.type-product .w-full p {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* show only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.type-product .pb-5 {
    padding: 0px !important;
}

.type-product ul {display: flex;margin-top: 10px;align-items: center;margin-bottom: 10px;justify-content: space-between;}

.type-product ul:before {
    display: none !important;
}

.type-product ul:after {
    display: none !important;
}


.type-product .custom-flex .product-box-number {
    display: none;
}

section.bannerinnersection {
    padding: 170px 0 130px 0px;
    position: relative;
    background: #e1dbd091;
    background-position: center;
    background-size: cover;
    margin-bottom: 60px !important;
}



button.single_add_to_cart_button.button.alt {
    background: #c05248 !important;
}

form.cart {
    margin-top: 20px;
    align-items: center;
    justify-items: center;
    align-items: center;
}


section.best-seller.products .w-full {
    padding: 0px !important;
}

section.best-seller.products .w-full p {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* show only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

section.best-seller.products .pb-5 {
    padding: 0px !important;
}

section.best-seller.products ul {display: flex;margin-top: 10px;align-items: center;margin-bottom: 10px;justify-content: space-between;}

section.best-seller.products ul:before {
    display: none !important;
}

section.best-seller.products ul:after {
    display: none !important;
}


section.best-seller.products .custom-flex .product-box-number {
    display: none;
}

header.entry-header {
    display: none;
}


.controw0 h4 {
    font-family: 'trajan-pro';
    font-size: 25px;
    line-height: 1.2;
    color: #3b2c27;
    font-weight: 500;
    margin: 0 0 20px;
    text-transform: uppercase;
}


.social-icon-01 {
    BACKGROUND: white;
    padding: 20px 0px 20px 50px;
    border-left: 10px solid #c05248 !important;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}




.hf-fields-wrap {
    background: white;
    padding: 30px 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 20px;
}
.hf-fields-wrap input {
    width: 100%;
    margin-bottom: 20px;
    height: 60px;
    padding: 20px;
    background: #f2f2f2;
    border: 1px solid #f2f2f2;
    border-radius: 10px;
}
.hf-fields-wrap textarea {
    width: 100%;
    margin-bottom: 20px;
    height: 60px;
    padding: 20px;
    background: #f2f2f2;
    border: 1px solid #f2f2f2;
    border-radius: 50px;
    resize: none;
    border-radius: 10px;
    height: 160px;
}

button.btn1.contact-pag-btn {
    background: #c05248;
    color: white !important;
    padding: 10px 20px;
    border-radius: 20px;
    border: 0px;
}


.menuSec  h4 {
    font-size: 23px;
    margin-bottom: 0px !important;
    font-family: 'Font Awesome 5 Free';
}


footer.footer-sec .footer-text h4 {
    color: white;
    font-family: auto;
}


.contentprd {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}




section.error-404.not-found {
    text-align: center;
    padding: 90px 10px;
}

section.error-404.not-found {
    text-align: center;
}

section.error-404.not-found h2 {
    font-size: 51px;
}

a.btn2 {
    background: #406ab2;
    padding: 15px 30px;
    border-radius: 30px;
    color: white !important;
    font-weight: 600;
}