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

:root {
    --theme1: #614718;
    --theme2: #4e3b18;
    --theme3: #4e3b18e6;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
    font-family: "Montserrat", sans-serif;
}

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


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

@font-face {
    font-family: 'Megila';
    src: url(../fonts/Megila.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 {
    border-radius: 40px;
    color: #fff;
    z-index: 1;
    position: relative;
    font-size: 13px;
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    border: 1px solid #fff;
    text-transform: uppercase;
    height: 55px;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px 0px 15px;
    font-weight: 500;
    gap: 20px;
    background: var(--theme1);
    background: #2a2624;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
    background-color: transparent;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.theme_btn:hover {
    border: 1px solid rgb(108 77 44);
    background: transparent;
    color: rgb(108 77 44);
    background: #fff;
}

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

.theme_btn i {
    background: #fff;
    width: 20px;
    height: 20px;
    font-size: 16px;
    clip-path: polygon(40% 50%, 25% 10%, 100% 50%, 25% 90%);
}

.theme_btn:hover i {
    background: #fff;
}

.theme_btn span {
    width: 40px;
    height: 40px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme_btn:hover span {
    background: var(--theme1);
}

.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: 'Megila';
    font-size: 92px;
    line-height: 1.1;
    color: #fff;
    font-weight: 500;
    margin: 0 0 10px;
}

h2 {
    font-family: 'Megila';
    font-size: 82px;
    line-height: 1.1;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h3 {
    font-family: 'Megila';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    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: 10px 0;
    background: var(--theme2);
}

.menuSec img {
    margin: 0;
}

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

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

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


.menuSec ul li a {
    position: relative;
    text-decoration: none;
    color: #2e2925;
    font-size: 13px;
    font-weight: 500;
    transition: 0.5s;
    text-transform: uppercase;
}

.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: #ac853e;
}

.menuSec li>ul {
    position: absolute;
    z-index: 0;
    background-color: #fff;
    left: 0;
    width: 240px;
    text-align: left;
    opacity: 0;
    transition: 0.2s ease-in-out;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 0;
    box-shadow: 0 0 10px #ccc;
    column-count: 2;
    display: flex;
    padding: 10px 0;
    visibility: hidden;
    top: 60px;
}

.menuSec li:hover ul {
    transition: 0.2s ease-in-out;
    top: 60px;
    z-index: 999;
}

.menuSec li>ul:after {
    position: absolute;
    content: "";
    background: #606060;
    width: 20px;
    height: 20px;
    top: -20px;
    left: 10px;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    z-index: 999;
}

.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;
    font-size: 14px;
    font-weight: 400;
    color: #848484;
    font-family: "Inter", sans-serif;
    text-transform: capitalize;
}

.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: #000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

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


/* Home */
.topSec {
    background: #2a2624;
    padding: 12px 0;
}

.topSec .row {
    align-items: center;
}

ul.social-icons {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 10px;
    margin: 0;
}

ul.social-icons li a {
    background: #fff;
    color: #614718;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 50%;
    border: 1px solid #fff;
        background: linear-gradient(135deg, #141414, #d6c294) !important;
    border: unset !important;
}

ul.social-icons li a:hover {
    background: #614718 !important;
    border: 1px solid #98783e;
    color: #fff;
}

.header-search input {
    width: 100%;
    padding: 10px;
    border-radius: 50px;
    border: 1px solid #98783e;
    background: transparent;
    color: #fff;
    font-size: 13px;
    background: linear-gradient(
315deg, #141414, #d6c294);
}

.header-search input::placeholder {
    color: #fff;
}

.header-search {
    position: relative;
}

.header-search button {
    border: 0;
    color: var(--theme1);
    background: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    right: 5px;
    top: 5px;
    position: absolute;
}

.top-icons ul {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 8px;
    margin: 0;
}


.top-icons ul li a img {
	    filter: brightness(0) saturate(100%) invert(9%) sepia(3%) saturate(3409%) hue-rotate(348deg) brightness(92%) contrast(80%);
    margin: 0 auto;
    display: block;
    width: 23px;
    height: 23px;
    object-fit: contain;
}

.top-icons ul li a sup {
    position: absolute;
    background: var(--theme1);
    right: 2px;
    top: 21px;
    width: 18px;
    height: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 11px;
}

.top-icons ul li a {
    position: relative;
}

.top-icons ul li a span {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    transition: 0.54s;
}

.top-icons ul li a span:hover {
    background: #fff;
    border-color: #000;
}

.top-icons ul li a span:hover img {
    filter: invert(1);
}

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

.banner_text p {
    width: 80%;
}

.service {
    background-color: #4e3b18;
    padding: 125px 0 120px;
}

.service_hrading {
    text-align: center;
    margin-bottom: 40px;
}

.service_hrading h2 {
    color: #2e2925;
}

.service_hrading p {
    color: #2b2824;
    width: 62%;
    margin: 0 auto;
}

.ser_txt h4 {
    font-size: 27px;
    color: #fff;
    padding: 30px 0 30px;
    position: relative;
    font-family: 'Megila';
}

.ser_img h3 {
    font-size: 44px;
    color: #fff;
    margin: 30px 0;
}

.service_card {
    background-color: #2a2624;
    text-align: center;
    border-radius: 300px 300px 0px 0px;
    padding: 50px 20px 30px;
    height: 400px;
    transition: 0.5s;
}

.ser_txt p {
    color: #fff;
}

.ser_img {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ser_img::before {
    position: absolute;
    content: '';
    background: url(../images/circle-ser.png);
    background-repeat: no-repeat;
    top: 50%;
    left: -6px;
    right: 0;
    height: 130px;
    width: 130px;
    transform: translate(0, -50%);
}

.ser_txt h4::before {
    position: absolute;
    content: '';
    height: 3px;
    width: 40px;
    background-color: #614718;
    bottom: 15px;
    left: 43%;
}

.service ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.service .container-fluid {
    padding: 0 6%;
}

.service_card:hover .ser_img::before {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7498%) hue-rotate(68deg) brightness(97%) contrast(97%);
}

.service_card:hover {
    background: var(--theme1);
    background: linear-gradient(
312deg, #141414, #684a20);
}

.service_card:hover h4::before {
    background: #fff;
}

/* about */

.abt {
    padding: 100px 0;
    background-color: #4e3b18e6;
}

section.abt .container-fluid {
    padding: 0 8%;
}

.abt_left img {
    width: 100%;
    height: 900px;
    object-fit: cover;
    border-bottom-left-radius: 200px;
}

.abt_right img {
    width: 95%;
    object-fit: 100% 100%;
    margin: 0 0 0 auto;
    display: block;
    margin-bottom: 40px;
}

.abt_txt {
    background-color: #614718;
    padding: 80px 100px 45px;
    border-radius: 250px 230px 230px 0px;
    height: 410px;
    width: 95%;
    margin: 0 0 0 auto;
    background: linear-gradient(135deg, #141414, #684a20);
}

.abt_right img {
    height: 450px;
}


.abt_txt h2 {
    font-size: 49.11px;
    color: #fff;
}

.abt_txt p {
    color: #fff;
}

/* about */

/* product detail  */

.product_d {
    background-color: #4e3b18;
    padding: 120px 0 130px;
}

.product_d .container-fluid {
    padding: 0 6%;
}

.product_d_left img {
    height: 690px;
    width: 552px;
    object-fit: cover;
    border-radius: 270px 270px 0px 0px;
    object-position: top;
}

.product_d_left::before {
    content: '';
    position: absolute;
    height: 690px;
    width: 500px;
    left: -30px;
    top: 0;
    border: 1px solid #c29e5d;
    border-radius: 270px 270px 0px 0px;
    z-index: -1;
}

.product_d_left {
    position: relative;
    z-index: 1;
}

.product_d_right h2 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 10px;
}

.product_d_right h3 {
    font-size: 29px;
    color: #fff;
    margin: 0;
    font-family: 'Montserrat';
}

.product_d_right h3 span {
    font-size: 22px;
    color: #fff;
    font-family: 'Megila';
}

.star i {
    color: #ffc107;
}

.star {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px;
    padding: 0;
}

.star span {
    font-size: 14px;
    color: #fff;
    font-family: 'Montserrat';
    font-weight: 500;
}

p.p1 {
    padding: 15px 0;
    font-weight: 500;
    font-size: 19px;
    color: #fff;
}

p.p2 {
    color: #fff;
}

.product_d_right h4 {
    font-size: 31px;
    color: #fff;
    padding-bottom: 10px;
    font-family: 'Megila';
}

.product_d_right ul {
    display: flex;
    align-items: baseline;
    justify-content: start;
    gap: 10px;
    margin-bottom: 15px;
}

.rat-prd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

p.check_txt {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}

.product_d_right ul {
    display: flex;
    align-items: baseline;
    justify-content: start;
    gap: 10px;
    margin: 10px 0;
    width: 65%;
}

li.product-det-content .quanity.product-detail {
    padding: 0;
}

.skin-2 .num-in {
    box-shadow: 0px 1px 4px rgb(0 0 0 / 15%);
    height: 40px;
    width: 150px;
    float: left;
    border: 1px solid #736c65;
    border-radius: 25px;
    cursor: pointer;
}

.skin-2 .num-in span {
    width: 40%;
    display: block;
    height: 40px;
    float: left;
    position: relative;
}

.skin-2 .num-in span:before,
.skin-2 .num-in span:after {
    content: '';
    position: absolute;
    background-color: #ffffff;
    height: 2px;
    width: 10px;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -5px;
}

.skin-2 .num-in input {
    color: #fff;
    float: left;
    width: 20%;
    height: 40px;
    border: none;
    text-align: center;
    background: transparent;
    font-family: 'Roboto';
}

.skin-2 .num-in span.plus:after {
    transform: rotate(90deg);
}

.skin-2 .num-in span:before,
.skin-2 .num-in span:after {
    content: '';
    position: absolute;
    background-color: #6a6a6a;
    height: 2px;
    width: 10px;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -5px;
}

.btn-4 {
    color: #fff;
    background: #614718;
    padding: 15px 45px;
    border-radius: 50px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

.btn-4:hover {
    background: var(--theme3);
    color: #fff;
}

.like-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #736c65;
    border-radius: 50%;
    font-size: 20px;
    color: #736c65;
}

.like-btn:hover {
    background: var(--theme1);
    color: #fff;
}

.product_d_right {
    padding-left: 40px;
}

/* product detail  */


.hero_sec {
    padding: 120px 0 90px;
    background-image: url(../images/heroosec.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.m_tea_text {
    text-align: end;
}

.m_tea_text h2 {
    color: #fff;
    font-size: 85.59px;
}

.m_tea_text p {
    color: #fff;
    margin-bottom: 30px;
}

.dot_txt h4 {
    color: #fff;
    font-size: 49.14px;
    font-family: 'Megila';
    line-height: 1;
    margin: 0;
}

.m_tea_text ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.hero_secwrpprs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.hero_secwrpprs ul {
    margin: 0;
}

.product_d_right ul.social-icons {
    margin: 30px 0 0;
}

ul.social-icons.social-icons-two li a {
    border: 1px solid #ffffffb0;
    color: #ffffffb0;
    background: transparent;
}

ul.social-icons.social-icons-two li a:hover {
    background: #fff;
    color: var(--theme1);
}

section.testimonials .headtext {
    text-align: center;
    width: 74%;
    margin: 0px auto;
}

section.testimonials .headtext h2 span {
    color: #003a37;
}

section.testimonials .headtext p {
    color: #003a37;
    font-weight: 500;
}

section.testimonials .item {
    /* opacity: 1; */
}

section.testimonials .item .box {
    display: flex;
    box-shadow: 6px 8px 20px 0px #44444417;
    box-sizing: border-box;
    border-radius: 0px;
    padding: 40px 30px 30px 10px;
    position: relative;
    border-radius: 0;
    background: #2a2624;
    border: 0;
}

section.testimonials .item .box .author {
    width: 66%;
    padding: 0px 10px;
    position: relative;
}

section.testimonials .item .box .author-text {
    position: relative;
    padding-top: 18px;
    padding-bottom: 20px;
    transition: 2s;
    margin-bottom: 10px;
}

section.testimonials .item .box .author-text h4 {
    color: #fff;
    font-size: 19px;
    text-transform: uppercase;
    line-height: 18px;
    margin-bottom: 0px;
    transition: 2s;
    font-weight: 500;
    font-family: 'Montserrat';
}

section.testimonials .item .box .author-text span {
    color: #fff;
    font-size: 16px;
    line-height: 28px;
    transition: 2s;
}

section.testimonials .item .box p {
    font-style: italic;
    line-height: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
    transition: 2s;
    display: inline;
    color: #fff;
    font-style: unset;
}

section.testimonials .item .box .des {
    padding-left: 10px;
    padding-bottom: 30px;
}

section.testimonials .item .box p:before {
    position: absolute;
    content: "";
    width: 15px;
    height: 14px;
    left: -23px;
    top: 10px;
    background-image: url(../images/topQuote.png);
    background-size: 100% 100%;
    transition: 2s;
}

section.testimonials .item .box p:after {
    position: absolute;
    content: "";
    width: 15px;
    height: 14px;
    right: -20px;
    bottom: 10px;
    background-image: url(../images/btm-quote.png);
    background-size: 100% 100%;
    transition: 2s;
}

section.testimonials .item .box:hover p::before {
    filter: brightness(0) invert(1);
}

section.testimonials .item .box:before {
    position: absolute;
    content: "";
    width: 12%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--theme1);
    border-radius: 0px;
    transition: 1s;
    border-radius: 0;
    background: #2a2624;
}

section.testimonials .item .box:hover p {
    color: #fff;
}

section.testimonials .item .box .author img {
    transition: 2s;
}

section.testimonials .item .box:hover .author-text {
    color: #fff;
}

section.testimonials .item .box:hover .author-text span {
    color: #fff;
}

section.testimonials .item .box:hover .author-text h4 {
    color: #fff;
}

section.testimonials .item .box:hover:before {
    width: 100%;
}

section.testimonials .slick-list {
    margin-right: 69px;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-left: 40px;
}

section.testimonials {
    padding-bottom: 100px;
    position: relative;
    /* overflow: hidden !important; */
    /* padding-right: 20px; */
    padding-top: 100px;
    background: #fff;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
}

.clientsslid .slick-active {
    opacity: 1.5;
}

section.testimonials .heading-services h2 {
    color: #2c2824;
}

section.testimonials .heading-services p {
    color: #2c2824;
}

section.testimonials .item .box:hover p:after {
    filter: brightness(0) invert(1);
}

.heading-services {
    text-align: center;
    margin-bottom: 40px;
}


.testimonials_sldier .slick-slide {
    margin: 0px 10px;
}

.testimonials_sldier .slick-active {
    opacity: 1;
}

.left-text ul li a i {
    color: #fff;
    font-size: 23px;
    padding-right: 20px;
    margin-bottom: 28px;
}

.left-text ul li a {
    display: flex;
    gap: 10px;
}

.left-text ul li p {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
}

footer {
    background: var(--theme1);
    padding: 0;
    padding-bottom: 30px;
}

.middle-text p {
    color: #fff;
    font-size: 14px;
    text-transform: lowercase;
    width: 85%;
    margin-bottom: 20px;
}

footer h6 {
    font-size: 40px;
    color: #fff;
    font-family: 'Megila';
    font-weight: 400;
    margin-bottom: 30px;
}

.double-links ul {
    column-count: 2;
}

.right-text ul li a {
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.bottom-footer p,
.bottom-footer a {
    color: #ffffff8f;
    font-size: 14px;
    margin-bottom: 0;
}

.bottom-footer {
    border: 1px solid #ffffff8f;
    padding: 10px 10px;
    background: #70531e;
    background: #2a2624;
}

.left-text h6 {
    margin-left: 50px;
}

.right-text {
    width: 80%;
    margin: 0 auto;
}

.ftr-bottom {
    padding: 70px 0 30px;
    position: relative;
}

.left-text ul {
    margin-left: 50px;
}

.ftr-l img {
    width: 12%;
}

.bottom-footer .row {
    align-items: center;
}

.bottom-footer img {
    margin: 0 0 0 auto;
    display: block;
}

.ftr-inp form input::placeholder {
    color: #fff;
}

.ftr-bottom:before {
    position: absolute;
    content: '';
    background: #ffffff5c;
    width: 1px;
    height: 100%;
    top: 0;
    left: 34%;
}

.ftr-bottom:after {
    position: absolute;
    content: '';
    background: #ffffff5c;
    width: 1px;
    height: 100%;
    top: 0;
    right: 34%;
}



/* end */

/* Inner Pages */
.inner-banner .banner_text {
    text-align: center;
}

.inner-banner .banner_text p {
    margin: 0 auto;
    width: 90%;
}

.inner-banner img.img-fluid {
    height: 520px;
    object-fit: cover;
}

section.about {
    background: var(--theme2);
    padding: 80px 0;
}

section.about p {
    color: #2e2925;
}

.abt-text {
    position: relative;
    z-index: 0;
}

.abt-text:before {
    position: absolute;
    content: '';
    background: #614718;
    width: 100%;
    height: 55px;
    right: 50px;
    top: 190px;
    z-index: -1;
    background: #3d2e1a;
}


.abt-text h2 {
    color: #2e2925;
    margin-bottom: 10px;
}

.abt-text p {
    color: #fff;
    font-size: 14px;
}

.abt-text h4 {
    color: #2e2925;
    font-size: 20px;
}

.abt-text ul li {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.abt-text ul {
    margin-top: 120px;
    margin-bottom: 0;
}

.abt-img img {
    width: 86%;
    height: 600px;
    border-radius: 300px 300px 0 0;
    object-fit: cover;
}

.abt-img {
    position: relative;
    z-index: 0;
}

.abt-img:before {
    position: absolute;
    content: '';
    background: #614718;
    width: 70%;
    height: 480px;
    right: 2%;
    bottom: -50px;
    z-index: -1;
    background: linear-gradient(315deg, #141414, #d6c294);
}

.miss-img {
    position: relative;
    z-index: 0;
}

.miss-img img {
    width: fit-content;
    margin: 0 0 0 auto;
    display: block;
    border-radius: 200px 200px 0 0;
}

section.miss-vis .row {
    align-items: center;
}

.miss-img:before {
    position: absolute;
    content: '';
    background: var(--theme1);
    z-index: -1;
    right: -20px;
    width: 60%;
    height: 110%;
    top: -5%;
    border-radius: 200px 200px 0 0;
    z-index: -1;
    background: linear-gradient(315deg, #141414, #684a20);
}

.miss-img.vis-img img {
    margin: 0;
}

.miss-img.vis-img:before {
    right: unset;
    left: -4%;
}

section.miss-vis {
    background: var(--theme2);
    padding-bottom: 100px;
}

.miss-text h2 {
    color: #2e2925;
}

.miss-text p {
    color: #2e2925;
}

section.miss-vis .row.mt-5 {
    margin-top: 80px !important;
}

section.account {
    padding: 100px 0;
    background: var(--theme2);
}

section.account .waraper {
    padding: 0px 80px;
}

section.account .waraper h5 {
    font-size: 30px;
    line-height: 35px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-family: 'Megila';
}

section.account .form {
    padding: 30px 30px;
    background-color: transparent;
    border: 1px solid #60554a;
}

section.account .waraper input {
    width: 100%;
    color: #b0afaf;
    border: 1px solid #60554a;
    margin: 12px 0px;
    font-weight: 400;
    padding: 14px 20px;
    background: transparent;
}

section.account .waraper input::placeholder {
    font-size: 16px;
    color: #b0afaf;
}

.fields_area {
    position: relative;
}

.fields_area i {
    top: 0px;
    right: 15px;
    bottom: 0px;
    margin: auto;
    width: fit-content;
    position: absolute;
    height: fit-content;
}

section.account .form button {
    width: 100%;
    border: 0px;
    background-color: var(--theme1);
    color: #fff;
    transition: 0.4s;
    padding: 12px 0;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 500;
}

section.account .form button#login {
    margin: 10px 0px;
}

section.account .form-check input#rememberMe {
    width: auto;
    padding: 8px;
    border: 2px solid #dfe1e4;
    border-radius: 0px;
    margin: 0;
    margin-right: 10px;
    background-color: #fff;
}

section.account .form-check label {
    font-size: 16px;
    color: #a7a7a7;
}

section.account .forget {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

section.account .form-check {
    padding-left: 0px !important;
}

section.account .form button:hover {
    background-color: #000;
}

section.account .forget a.bnts {
    font-size: 16px;
    color: #a7a7a7;
}

section.account .forget a.bnts:hover {
    color: #000;
}

section.account .form-check input#rememberMe:focus {
    outline: 0px !important;
    box-shadow: unset;
}

section.account .form-check-input:checked[type="checkbox"] {
    filter: brightness(0);
    background-color: transparent !important;
}

section.account .form .para p {
    font-size: 14px;
    color: #a7a7a7;
    margin-bottom: 16px;
    padding-left: 3px;
}

section.account .form .para p a {
    text-decoration: underline;
    color: #fff;
    font-weight: 500;
    transition: 0.4s;
}

section.account .form .para p a:hover {
    color: #000;
}

section.faqs .accordion-button {
    color: #fff;
    font-size: 21px;
    text-transform: capitalize;
    padding: 20px 25px;
    background: var(--theme1);
    background: linear-gradient(315deg, #141414, #684a20);
}

section.faqs .accordion-button:not(.collapsed) {
    background: unset;
    box-shadow: unset;
    color: #fff;
    font-weight: 500;
    font-size: 21px;
}

section.faqs .accordion {
    margin-bottom: 30px;
}

section.faqs .accordion-item {
    border: 1px solid #614718;
    background: transparent;
    margin-bottom: 20px;
}

section.faqs .accordion-body {
    padding: 25px;
    padding-top: 0;
    color: #2f2a26;
}

section.faqs .accordion-button::after {
    color: #fff;
    position: absolute;
    content: '\f107';
    font-family: 'FontAwesome';
    right: 20px;
    background-image: unset;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #c7c7c7;
}

section.faqs .accordion-button:not(.collapsed)::after {
    background-image: unset;
    color: #614718;
    border-color: #614718;
}

section.faqs {
    background: var(--theme2);
    padding: 80px 0;
}

.top-heading h2 {
    text-align: center;
    color: #2f2a26;
    margin-bottom: 50px;
}

/* Free Gift Css Start  */

.dis-block {
    display: block;
}

.free-gift-top-heading h2 {
    font-size: 96px;
    color: #2f2a26;
}

section.free-gift-sd {
    padding: 100px 0px;
    background: #4e3b18;
}

.free-gift-top-text p {
    color: #2f2a26;
}

.free-gift-img-text {
    position: absolute;
    background: #614718;
    padding: 40px 110px;
    top: 22%;
    right: 0;
    width: 47%;
    text-align: center;
    border-radius: 200px 0px 200px 200px;
    background: linear-gradient(315deg, #2f2a26, #d6c294);
}

.free-gift-img {
    position: relative;
}

.free-gift-img-text h4 {
    color: #fff;
    text-transform: capitalize;
}

.free-gift-img-text ul li {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 10px;
    color: #fff;
    margin-bottom: 10px;
}

.free-gift-btn {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}



/* Free Gift Css End  */





/* section ingredients Css Start */
section.ingredients-sec-sd {
    background: #4e3b18;
    padding: 100px 0px;
}

.ingredients-sec-box-top-img {
    text-align: center;
    position: relative;
    padding-top: 50px;
    z-index: 1;
    margin-bottom: 50px;
}

.ingredients-sec-box-top-img:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 60%;
    width: 94%;
    background: #614718;
    z-index: -1;
    right: 0;
    margin: 0 auto;
    border-radius: 20px;
    background: linear-gradient(132deg, #2f2a26, #d6c294);
}

.ingredients-sec-sd-circle {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 50px;
}

.ingredients-sec-sd-circle-number {
    width: 250px;
    height: 70px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ingredients-sec-sd-circle-number:before {
    position: absolute;
    content: '';
    top: 0px;
    left: 8px;
    height: 65px;
    width: 65px;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/Ingredients-circle-img.png);
}

.ingredients-sec-sd-circle-number h3 {
    margin-bottom: 0;
    color: #2f2a26;
}

.ingredients-sec-sd-circle-heading h2 {
    color: #2f2a26;
    font-size: 52px;
    position: relative;
    margin-bottom: 14px;
    padding-bottom: 8px;
}

.ingredients-sec-sd-circle-heading h2:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    height: 5px;
    width: 100px;
    background: #5e4428;
    border-radius: 10px;
    background: #684a20;
}

.ingredients-sec-sd-circle-heading p {
    color: #2f2a26;
}


/* section ingredients Css End */

/* Section Skincare Css Start */
section.skincare-philosophy-sec {
    padding: 100px 0px;
    background: #4e3b18;
}

.skincare-philosophy-text h2 {
    color: #2f2a26;
    font-size: 67px;
}

.skincare-philosophy-text p {
    color: #2f2a26;
}

.skincare-philosophy-text h3 {
    color: #2f2a26;
}

.skincare-philosophy-text p {
    margin-bottom: 20px;
}

.skincare-philosophy-text ul li {
    display: flex;
    align-items: start;
    gap: 10px;
}

.skincare-ul-text h5 {
    color: #2f2a26;
    margin-bottom: 2px;
    font-size: 20px;
}

.skincare-philosophy-img {
    position: relative;
    padding-top: 120px;
    z-index: 1;
}

.skincare-philosophy-img:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    height: 100%;
    width: 62%;
    background: #614718;
    z-index: -1;
    border-radius: 20px;
    background: linear-gradient(315deg, #2f2a26, #d6c294);
}

/* Section Skincare Css End */
section.product_d.inn-prd {
    padding: 100px 0 80px 0;
}

section.reviews {
    background-color: #4e3b18;
    padding-bottom: 80px;
}

section.reviews ul.nav.nav-tabs {
    border-bottom: 1px solid #ffffff70;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

section.reviews .tab-content>.active {
    padding: 0;
}

section.reviews .tab-content p {
    color: #fff;
}

section.reviews .nav-tabs .nav-link {
    color: #fff;
    font-size: 23px;
    font-family: 'Megila';
}

section.reviews .nav-tabs .nav-link.active {
    background: transparent;
    border: 0;
    color: #fff;
}

/*  Contact us page css */

.contact-details {
    padding: 100px 0;
}

.contact-detail-item {
    display: flex;
    padding: 25px;
    min-height: 290px;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: #2a2624;
    border: 1px solid #d6c294;
}

.contact-detail-item .icon-box {
    width: 65px;
    height: 65px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    margin: 0 auto 30px;
    justify-content: center;
    background-color: #d6c294;
    border: 1px solid var(--theme1);
}

.contact-detail-item .icon-box i {
    font-size: 25px;
    color: var(--theme1);
}

.contact-detail-item h3 {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Megila';
}

.contact-detail-item p {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

.contact-inquiry-box {
    padding: 0 0 100px 0;
}

.contact-form {
    padding: 70px;
    background-color: var(--theme2);
    border: 1px solid #574b3d;
}

.contact-form input {
    height: 65px;
    color: #666666;
    padding-left: 25px;
    border-radius: 0;
    margin-bottom: 25px;
    font-family: 'Montserrat';
    background-color: transparent;
    border: 1px solid #574b3d;
}

.contact-form label {
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-form textarea {
    height: 165px;
    padding-top: 25px;
    color: #666666;
    padding-left: 25px;
    margin-bottom: 25px;
    font-family: 'Montserrat';
    border: 1px solid #574b3d;
    background-color: transparent;
}

.cnt-btn-frm {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.cnt-btn-frm button {
    letter-spacing: 2px;
}

.cnt-btn-frm .theme_btn {
    margin: auto;
}

.contact-inquiry-box h2 {
    text-align: center;
}

.contact-inquiry-box textarea#msg {
    height: 200px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.contact-inquiry-box iframe {
    width: 90%;
    float: right;
    height: 680px;
    min-height: 100%;
}
section.contactus-page {
    background-color: var(--theme2);
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #ffffffa1;
}

.cnt-btn-frm button.btn-4 {
    border-radius: 0;
    border: 1px solid #fff;
    transition: 0.5s;
    background: #2a2624;
}
/* end  */

/* Checkout Page Start */

.billing_form h3 {
    margin: 0;
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
}

.billing_form label {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Montserrat';
}

.billing_form p {
    color: #fff;
    font-size: 14px;
}

.billing_form p a {
    color: #fff;
}

.radiosss p {
    color: #000;
    font-size: 14px;
    font-family: 'Montserrat';
    font-weight: 400;
}

.billing_form input {
    width: 100%;
    height: 50px;
    padding-left: 15px;
    border-radius: 0px;
    margin-bottom: 20px;
    background: transparent;
    border: 1px solid #5f5243;
    color: #fff;
}

.billing_form textarea {
    width: 100%;
    height: 120px;
    padding-left: 15px;
    border-radius: 0px;
    margin-bottom: 20px;
    background: transparent;
    color: #fff;
    border: 1px solid #5f5243;
}

a.btn1.checkout_btn.btn13 {
    color: #fff;
    font-size: 16px;
    text-align: center;
    width: fit-content;
    padding: 15px 35px;
    letter-spacing: 3px;
    border-radius: 0;
    font-family: 'Oswald';
    background: var(--theme1);
    text-transform: capitalize;
}

.billing_form input::placeholder {
    color: #7C7C7C;
}

.billing-box {
    padding: 10px 25px;
    border: 1px solid #5f5243;
    margin-bottom: 20px;
}

.billing-box .image_cart_prod {
    gap: 30px;
    justify-content: flex-start;
}

.billing-box .image_cart_prod p {
    color: #ffffffc7;
    font-size: 21px;
    margin-bottom: 20px;
}

.billing-box .image_cart_prod h6 {
    color: #fff;
    margin-top: 10px;
    font-weight: 600;
}

.cart_sidebar .cart_lst li:not(:last-child) {
    margin-bottom: 15px;
    font-family: 'Montserrat';
}

.cart_sidebar .cart_lst li {
    font-size: 14px;
    color: #000;
}

.cart_sidebar .btn2 {
    width: 100%;
    color: #fff;
    padding: 20px 10px;
    font-size: 14px;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
    background-color: var(--theme1);
    display: block;
}

.cart_sidebar ul {
    columns: 2;
    margin-bottom: 15px;
}

.cart_sidebar ul li {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat';
}

.cart_sidebar ul li h6 {
    color: #ffffffc7;
    font-size: 20px;
    font-weight: 600;
}

.cart_sidebar ul li h6 span {
    color: #ffffffc7;
}

.cart_sidebar h5 {
    color: #ffffffc7;
    font-size: 20px;
    margin-bottom: 15px;
}

.cart_sidebar h5 img {
    margin-top: 20px;
    margin-left: 10px;
}

.cart_sidebar p {
    color: #fff;
    margin-bottom: 25px;
}

.cart_sidebar .custom-mt-5 {
    margin-top: 50px;
}

.cart_sidebar .cart_lst li:last-child {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
    font-family: 'Montserrat';
}

.cart_sidebar .cart_lst {
    margin-top: 20px;
    margin-bottom: 20px;
}

.thankyou_txt {
    padding: 50px;
    border: 2px solid #b7b7b7;
}

.thankyou_txt h3 {
    font-size: 35px;
    color: #000;
    font-weight: 800;
    margin: 0;
}

.thankyou_txt h3 i {
    font-size: 40px;
    margin-right: 15px;
}

.order_det h5 {
    font-size: 20px;
    color: #7c7c7c;
    font-weight: 400;
}

.order_det p {
    font-weight: 700;
    font-size: 20px;
    color: #000;
    margin: 0;
}

.order_complete_detail h3 {
    font-size: 22px;
    color: #000;
    font-weight: 700;
}

.order_detail_table {
    padding: 40px;
    border: 1px solid #b7b7b7;
}

.order_detail_table h5 {
    margin-top: 0px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dbdbdb;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.order_detail_table ul {
    margin-top: 20px;
    margin-bottom: 30px;
}

.order_detail_table ul li:not(:last-child) {
    margin-bottom: 25px;
}

.order_detail_table ul li {
    font-size: 14px;
    color: #7c7c7c;
}

.order_detail_table ul li span {
    float: right;
}

.order_detail_table ul li:last-child {
    font-weight: 700;
    color: #000;
}

.order_detail_table h6 {
    font-size: 17px;
    font-weight: 700;
    color: #000;
    padding: 25px 0;
    border-top: 1px solid #dbdbdb;
    margin: 0;
}

.order_detail_table h6 span {
    float: right;
}

.check_menu ul {
    text-align: center;
    margin-bottom: 40px;
}

.check_menu ul li {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #7c7c7c;
    margin: 0 14px;
}

.check_menu ul li i {
    font-size: 18px;
}

.check_menu ul li.purp {
    color: #700ea3;
}

.cart_sidebar {
    padding: 40px 25px;
    border-radius: 0;
    color: #ffffffc7;
}

.cart_sidebar .h-sub {
    font-weight: 500;
    color: #000000;
    font-family: 'Montserrat';
    font-size: 24px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dbdbdb;
    margin-bottom: 20px;
    line-height: 0;
    padding-bottom: 30px;
    padding-top: 20px;
}

.cart_sidebar h5 span {
    float: right;
    color: #000;
}

.cart_sidebar h4 {
    color: #000000;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: normal;
    padding-top: 0;
    font-family: 'Montserrat';
    font-size: 34px;
}

.cart_sidebar ul li input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.cart_sidebar ul li label {
    position: relative;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    font-family: 'Montserrat';
}

.cart_sidebar ul li label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #b7b7b7;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
}

.cart_sidebar ul li input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.cart_sidebar ul li:not(:last-child) {
    margin-bottom: 15px;
    color: #ffffffc7;
}

.cart_sidebar form {
    margin-top: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #b7b7b7;
}

.cart_sidebar form h4 {
    font-size: 14px;
    font-weight: 400;
    color: #b7b7b7;
}

.cart_sidebar form select {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    border-radius: 0;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
    appearance: auto;
    color: #b7b7b7;
}

.cart_sidebar form select option {
    color: #000;
}

.cart_sidebar form input {
    width: 100%;
    height: 40px;
    padding-left: 15px;
    border-radius: 0;
    border: 1px solid #b7b7b7;
    margin-bottom: 20px;
    appearance: auto;
    color: #b7b7b7;
}

.cart_sidebar form input::placeholder {
    color: #b7b7b7;
}

.cart_sidebar form button {
    color: #000;
    font-size: 15px;
    border-radius: 0px;
    padding: 10px 40px;
    background-color: #ebebeb;
    border: 2px solid #ebebeb;
}

.cart_sidebar form button:hover {
    background-color: transparent;
    transition: 0.3s ease-in-out;
}

.checkout_btn:hover {
    /* color: white; */
}

ul.shipping-ul {
    border-bottom: 1px solid #dbdbdb;
    margin: 0;
    padding-bottom: 30px;
}

h6.payment-h {
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
    font-family: 'Montserrat';
    font-size: 35px;
}

.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: 8px;
    border-radius: 20px;
    left: 6px;
    border: 0;
    width: 10px;
    height: 10px;
    background-color: #000;
}

.radiosss-payments .card.card-body {
    padding: 0;
    border: 0;
    margin-left: 30px;
    background: none;
}

.radiosss-payments {
    border-bottom: 1px solid rgb(219, 219, 219);
}

section.checkout_page.all-section.all-side {
    padding: 80px 0 80px;
    position: relative;
    background: var(--theme2);
}

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

.cart_sidebar h3 {
    margin: 0;
    font-size: 35px;
    color: #fff;
    margin-bottom: 25px;
    text-transform: capitalize;
}

.billing_form input::placeholder {
    font-family: 'Montserrat';
}

.image_cart_prod {
    display: flex;
    margin: 15px 0px;
    align-items: center;
    justify-content: space-between;
}
.cart-img img {
    width: 100px;
    height: 120px;
    object-fit: cover;
}
/* Checkout Page End */

/* Cart CSS */

.add-to-cart thead {
    background: transparent;
    color: rgb(255, 255, 255);
    border: 1px solid #5f5243;
}

.add-to-cart .table>thead>tr>th {
    border-bottom: 0px;
    padding-left: 30px;
    padding-bottom: 25px;
    padding-top: 25px;
    border-radius: 0 !important;
}

.add-to-cart thead tr th {
    font-size: 20px;
    font-weight: 400;
    line-height: 17px;
    text-transform: uppercase;
    font-family: 'Megila';
}

.table-space h3 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 5px;
    line-height: 25px;
    margin-top: 15px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 0;
    font-family: 'Montserrat';
}

.table-space span {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.product-img {
    display: flex;
    align-items: center;
    justify-content: start;
}

.add-to-cart input {
    width: 100%;
    text-align: center;
    height: 59px;
    border-radius: 6px;
    border: 1px solid #adacac;
    font-size: 23px;
    color: rgba(0, 0, 0, 0.68);
    font-weight: 500;
    margin-top: 24px;
    font-family: Poppins;
    background-color: #f4f4f4;
}

.add-to-cart a {
    font-size: 17px;
    display: block;
    text-align: center;
    padding-top: 9px;
    color: #fff;
    font-weight: 400;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.add-to-cart h4 {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin-top: 40px;
}

.table {
    width: 100%;
    margin-bottom: 20px;
}

tr.space {
    border-bottom: 1px solid #5f5243;
}

a.remove {
    background: var(--theme1);
    color: rgb(255, 255, 255);
    font-size: 33px;
    padding: 13px 18px;
    border: 1px solid #cd0d0d;
    margin-top: 25px;
    border-radius: 0;
    border: 1px solid #5f5243;
}

.proceed a {
    color: #fff;
    text-align: left;
    font-size: 21px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
}

.proceed i {
    margin-left: 10px;
    color: #fff;
}

.proceed .checkout-btn {
    background: var(--theme1);
    border: none;
    padding: 20px;
    width: 80%;
    font-size: 20px;
    text-align: center;
    color: #ffffff;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0px 0px 0px auto;
    border: 1px solid #fff;
}

.all-section-inner {
    padding: 80px 0px;
}

.or-amazon {
    position: relative;
    border: 1px solid #5f5243;
    padding: 30px 50px;
    border-radius: 5px;
    width: 80%;
    margin: 50px 0px 0px auto;
    background: transparent;
}

.or-amazon p {
    font-size: 13px;
    position: absolute;
    top: -18px;
    left: 0;
    padding: 0px 20px;
    color: #fff;
    display: block;
    text-transform: uppercase;
    border: 1px solid #5f5243;
    font-weight: 400;
    right: 0;
    width: 60%;
    margin: auto;
    background: var(--theme2);
}

.or-amazon a {
    text-decoration: none;
    text-align: center;
}

.total-section {
    border: 1px solid #5f5243;
    padding: 27px 20px 5px;
    background-color: transparent;
    margin-left: 20px;
}

.total-section li {
    font-size: 20px;
    padding-bottom: 20px;
    color: #fff;
    font-weight: 400;
}

li.color-change {
    color: var(--theme1);
    text-transform: uppercase;
    font-family:
    'Poppins', sans-serif;
    padding-bottom: 0px;
}

.total-section li span {
    float: right;
}

.ship-estimate {
    background-color: transparent;
    padding: 10px 20px;
    border: 1px solid #5f5243;
    margin-left: 20px;
    margin-top: 165px;
}

.ship-estimate ul {
    margin-top: 20px;
    margin-bottom: 50px;
}

.ship-estimate li {
    font-size: 18px;
    color: #fff;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-transform: capitalize;
}

.ship-estimate .grey-style {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
}

.proceed {
    display: flex;
}

.add-to-cart .table-space {
    display: flex;
    align-items: center;
}

.table-space span:last-child {
    color: #fff;
}

.add-to-cart tbody td {
    padding: 25px 0px;
}

.product-img img {
    width: auto;
    height: 100%;
}

.total-section .color-change span {
    font-weight: 500;
    font-size: 23px;
}

.add-to-cart thead tr th:first-child {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.add-to-cart thead tr th:last-child {
    border-top-right-radius: 36px;
    border-bottom-right-radius: 36px;
}

.number input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 47%;
    border: unset;
    /* text-align: center; */
    background: transparent;
    height: unset;
    margin: 0;
    color: #fff;
}

.cart .table> :not(:last-child)> :last-child>* {
    border-bottom-color: aliceblue;
    background: #fbe7e7;
}

.cart .coupan {
    padding: 20px 25px 0;
}

.cart .coupan ul li {
    display: flex;
}

.cart .coupan ul {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #80808033;
    padding-bottom: 15px;
}

.cart .coupan ul li a {
    margin-left: 10px;
    color: #000;
    font-weight: 400;
    border: 1px solid #7b7b7bcc;
    padding: 10px;
    cursor: pointer;
}

.sub-total span.colr-pric {
    color: #000;
}

.number span {
    border: 1px solid #614718;
    cursor: pointer;
    border-radius: 20px;
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #614718;
}

.number {
    background: transparent;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    border-radius: 0;
    border: 1px solid #5f5243;
}

section.add-to-cart {
    position: relative;
    background: var(--theme2);
}

.product-img img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

/* Cart CSS */
/* end */


body .product_d li.vc_tta-tab.vc_active a {
    background: #2a2624 !important;
    color: #fff !important;
}

.product_d li.vc_tta-tab a {
    border: 2px solid #77581c !important;
}


.product_d .vc_tta-panel.vc_active {
    background: #583f1d;
    border: 1px solid #77581c;
    color: #fff;
    background: #2a2624;
}

.product_d .vc_tta-panels {
    background: linear-gradient(135deg, #141414, #684a20);
}

.product_d .vc_tta-panels {
    background: linear-gradient(135deg, #141414, #684a20);
}
h1.product_title.entry-title {
    color: #2c2925 !important;
}
span.woocommerce-Price-amount.amount {
    color: #2d2a26 !importan;
}

.woocommerce-product-details__short-description p.p1 span {
    color: #2b2724 !important;
}

.woocommerce-product-details__short-description p.p2 span {
    color: #2c2926 !important;
}

.woocommerce-product-details__short-description h4 span {
    color: #2c2823 !important;
}

.woocommerce-product-details__short-description ul li span {
    color: #2d2926 !important;
}
span.woocommerce-Price-amount.amount {
    color: #2a2723 !important;
}
a.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor.yith-wcwl-add-to-wishlist-button--single svg {
    fill: #292622 !important;
}

span.yith-wcwl-add-to-wishlist-button__label {
    color: #2c2824;
}
.product_d {
    background-color: #fff !important;
}

.xoo-wsc-icon-shopping-bag1:before {
    color: #2e2a26 !important;
}
.service, section.about, section.miss-vis, .menuSec, section.free-gift-sd, footer, section.faqs, .contact-details, .contact-inquiry-box, .contact-form, section.ingredients-sec-sd, section.skincare-philosophy-sec {
    background-color: #fff !important;
}
footer {
    background: #2f2a26 !important;
}
html section.faqs .accordion-button {
    background: linear-gradient(315deg, #2f2a26, #d6c294) !important;
}
.contact-form textarea::placeholder {
    color: #000 !important;
}
.contact-form input::placeholder {
    color: #000 !important;
}
.woocommerce h2 {
    color: #2f2a26 !important;
}
.entry-content p span {
    color: #2f2a26 !important;
}

.entry-content h3 span {
    color: #2f2a26 !important;
}

.page-id-3 li {
    color: #2f2a26 !important;
}

.entry-content ul li span {
    color: #2f2a26 !important;
}

.page-id-3 li span {
    color: #2f2a26 !important;
}

.page-id-3 li span a {
    color: #2f2a26 !important;
}

.entry-content p span a {
    color: #2f2a26 !important;
}
section.ingredients-sec-sd ol li span {
    color: #2f2a26 !important;
}

section.ingredients-sec-sd ol li span a {
    color: #2f2a26 !important;
}

section.ingredients-sec-sd ul li a {
    color: #2f2a26 !important;
}

body ul.social-icons li a {
    background: #3c322d !important;
}

.thaps-from-wrap {
    border: 0;
}

.thaps-search-form .thaps-search-autocomplete {
    background: #fff !important;
    color: #000 !important;
}
.thaps-search-box.bar_style #thaps-search-button {
    box-shadow: none;
}

span.th-icon.th-icon-vector-search.icon-style {
    padding: 6px !important;
    font-size: 20px;
}
.product_d li.vc_tta-tab.vc_active a span {
    color: #fff !important;
}