@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;
    background-color: #fffbeb;
}

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: 500;
    line-height: 25px;
    font-family: 'montserrat-font-text';
}


/***** Font Files *****/

@font-face {
    font-family: 'queensila-font-one';
    src: url(../font/Queensila.ttf);
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'montserrat-font-text';
    src: url(../font/Montserrat-Regular.ttf);
    font-weight: 400;
    font-style: normal;
}


/***** 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: 5px 5px 5px 20px;
    border: unset;
    border-radius: 95px;
    color: #ffffff;
    z-index: 1;
    /* background: #242889; */
    position: relative;
    font-size: 13px;
    -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;
    overflow: hidden;
    display: inline-block;
    border: 1px solid #fff;
    background: linear-gradient(120deg,rgba(44, 75, 41, 1) 0%, rgba(64, 92, 60, 1) 35%, rgba(79, 107, 76, 1) 100%);
    font-weight: 300;
    text-transform: uppercase;
}

.theme_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 14px;
    background-color: #3f0d0c;
    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
}

.theme_btn:hover {
    color: #ffffff !important;
}

.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 {
    font-family: 'queensila-font-one';
    font-size: 72px;
    line-height: 1.2;
    color: #fff;
    font-weight: 500;
    margin: 0 0 17px;
}

h2 {
    font-family: 'queensila-font-one';
    font-size: 65px;
    line-height: 1.2;
    color: #153116;
    font-weight: 500;
    margin: 0 0 4px;
}

h3 {
    font-family: 'queensila-font-one';
    font-size: 30px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 28px;
}

h4 {
    font-family: 'queensila-font-one';
    font-size: 24px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 3px;
}

h5 {
    font-family: 'queensila-font-one';
    font-size: 20px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 20px;
}

h6 {
    font-family: 'queensila-font-one';
    font-size: 18px;
    line-height: 1.2;
    color: #393939;
    font-weight: 500;
    margin: 0 0 12px;
}

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: 30px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
}

.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: #000000;
    padding: 10px 18px;
    font-size: 13px;
    text-transform: uppercase;
    font-family: 'montserrat-font-text';
    font-weight: 600;
}



.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: #2f4e2b;
}

.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;
}

.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  */

.container-fluid {
    padding: 0px 80px;
}
.dis-block{
    display: block;
}
.banner-img img {
    width: 100%;
    height: 100vh;
}

section.main_slider {
    margin: 0px 80px;
}

.banner-heading-font {
    font-size: 89px;
}

.theme-btn-sd {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.theme-btn-icon {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icon ul li a i {
    height: 36px;
    width: 36px;
    border: 1px solid #e7e3d5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #3f5c3c;
}

.header-icon ul li a {
    padding: 0;
}

.header-icon ul {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}
section.main_slider.main-banner-sd {
    position: relative;
}
section.main_slider.main-banner-sd:before {
    position: absolute;
    content: '';
    top: 53%;
    left: 0;
    height: 1px;
    width: 40%;
    background: #415c3e;
    z-index: 1;
}

/* About Css Start */
section.about-sec {
    margin: 100px 0px;
}
ul.about-text-ul {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0;
}

li.about-ul-img-right {
    height: 280px;
    width: 202px !important;
    background: #405d3d;
    border-radius: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.about-text-ul-one li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* About Css End */

/* Product Css Start */
.find-expert-box-img img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    border-radius: 200px 200px 0px 0px;
    object-position: top;
}
.find-expert-box-text {
    background: #ffffff;
    text-align: center;
    padding: 18px 30px 10px 30px;
    border-radius: 0px 0px 300px 300px;
    transition: 1s;
}
.find-expert-box:hover .find-expert-box-text {
}
.find-expert-box-text ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.find-expert-box-text ul li i {
    color: #ffb400;
}
.find-expert-box:hover .finf-expert-link {
}
.finf-expert-link {
    height: 50px;
    width: 50px;
    background: #ffffff;
    border: 0px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: -45px;
    margin-top: 13px;
}
.finf-expert-link img {
    width: auto;
}
.our-product-top-heading {
    text-align: center;
    padding: 40px 0px 30px;
    background: #153216;
    margin-bottom: 50px;
}

.our-product-top-heading h2 {
    margin-bottom: 0;
    color: #fff;
}

.find-expert-box {
    background: #d9ddcd;
    padding: 20px;
    border-radius: 280px;
}

.find-expert-number {
    width: 105px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 14px;
    margin-bottom: 14px;
    color: #ffffff;
    font-family: 'montserrat-font-text';
    font-size: 14px;
    background: linear-gradient(120deg, rgba(44, 75, 41, 1) 0%, rgba(64, 92, 60, 1) 35%, rgba(79, 107, 76, 1) 100%);
}
.find-expert-box-text h4 {
    font-family: 'montserrat-font-text';
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}
section.our-product-sec {
    margin-bottom: 100px;
}



/* Product Css End */


/* <!-- Never Run Sec Css Start --> */
.row.never-run-row {
    background-image: url(../images/never-run-bg-img.png);
    height: 100%;
    width: 100%;
    padding: 160px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: center;
}

section.never-run-sec {
    margin-bottom: 100px;
}

.never-run-text {
    text-align: center;
}

.never-run-text h2 {
    color: #fff;
}

.never-run-text p {
    color: #fff;
}


/* <!-- Never Run Sec Css End --> */


/* Coffee Conscience Sec Css Start */

section.why-choose-sec {
    margin-bottom: 100px;
}

ul.why-choose-ul {
    column-count: 1;
}

.why-choose-ul-img {
    height: 40px;
    width: 40px;
    background: #1f9a9a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.why-choose-ul li {
    display: flex;
    align-items: start;
    gap: 6px;
    margin-bottom: 10px;
}

.why-choose-ul-text {
    width: 250px;
}

.why-choose-img {
    position: relative;
}

.why-choose-img-one {
    position: absolute;
    bottom: 160px;
    right: 0;
}

.why-choose-img>img {
    width: 80%;
}

.why-choose-ul-text h5 {
    font-family: 'Montserrat-fontone';
    font-size: 16px;
}
.why-choose-icon-text > ul {
    display: flex;
}

.why-choose-icon-text > ul li {
    width: 100%;
}

.why-choose-icon-text > ul li p {
    width: 100%;
}

.why-choose-icon-text {
    position: relative;
    margin-top: 30px;
    padding-top: 16px;
}

.why-choose-icon-text:before {
    position: absolute;
    content: '';
    top: 0;
    left: 47%;
    height: 100%;
    width: 1px;
    background: #eae9d7;
}


/* Coffee Conscience Sec Css End */




/*Testimonial Start*/

.testimonial-txt h4 {
    font-size: 28px;
    color: #000000;
    line-height: 45px;
    margin: 0;
    font-family: 'Montserrat';
}

.testimonial-txt h6 {
    font-size: 12px;
    color: #000000;
    font-family: 'Montserrat';
}

.testimonial-txt p {
    width: 100%;
}

.testi-profile img {
    width: 270px;
    height: 270px;
    object-fit: cover;
    border-radius: 50%;
}

section.testimonial-sec {
    padding: 0 0 100px;
    /* background: #e7e5d9; */
}

.testimonail-extra2 img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    text-align: right;
    margin: 0 -10px 0 auto;
}

.testi-extra3 img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    text-align: right;
    margin: 0 0px 0 auto;
}

.testimonail-extra2 {
    text-align: right;
    position: relative;
}

.testi-extra3 {
    text-align: right;
    position: relative;
}


.testi-slider {
    margin: 50px 0 0 0;
}

.testi-profile {
    position: relative;
}

.testi-profile:before {
    content: '';
    position: absolute;
    background-image: url(../images/green-circle.png);
    width: 58%;
    height: 130%;
    background-repeat: no-repeat;
    top: -15px;
    right: -9px;
}

.testimonail-extra2:before {
    content: '';
    position: absolute;
    background-image: url(../images/testimonail-extra2-circle.png);
    width: 33%;
    height: 129%;
    background-repeat: no-repeat;
    background-size: cover;
    top: -20px;
    right: -30px;
}

.testi-extra3:before {
    content: '';
    position: absolute;
    background-image: url(../images/testi-extra3-circle.png);
    width: 13%;
    height: 130%;
    background-repeat: no-repeat;
    background-size: cover;
    top: -18px;
    right: 100px;
}

.testi-extra3:after {
    content: '';
    position: absolute;
    border: 1px solid #e1e1e1;
    width: 53%;
    height: 0px;
    top: 60px;
    left: 4px;
}

.testi-slider .slick-next:before {
    content: '\f0da';
    font-family: 'FontAwesome';
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px 0 #0000007d;
    opacity: 1 !important;
    color: #153216;
}

.testi-slider .slick-next {
    right: -4px;
}

.testi-slider .slick-prev:before {
    content: '\f0d9';
    font-family: 'FontAwesome';
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #ffffff00;
    border-radius: 50%;
    /* box-shadow: 0 0 10px 0 #0000007d; */
    opacity: 1 !important;
    border: 1px solid #153216;
}

.testi-slider .slick-prev {
    left: -45px;
}

.testi-slider .slick-slide {
    margin: 45px 20px 45px;
}

.testi-slider .slick-dots {
    position: absolute;
    bottom: 55px;
    left: 54%;
    display: block;
    width: 6%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.testi-slider .slick-dots li {
    position: relative;
    display: block;
    width: 20px;
    height: 34px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.testi-slider .slick-dots li.slick-active button:before {
    opacity: 1 !important;
    color: #486445;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #486444;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin: 0px 0 0 -5px;
    font-size: 9px;
    opacity: 1 !important;
}

.testimonial-txt {
    position: relative;
}

.testimonial-txt:before {
    content: '';
    position: absolute;
    background-image: url(../images/comma-top.png);
    top: -40px;
    right: 0;
    width: 29%;
    height: 40%;
    background-repeat: no-repeat;
}

.testimonial-txt:after {
    content: '';
    position: absolute;
    background-image: url(../images/comma-top.png);
    width: 29%;
    bottom: -60px;
    left: -27px;
    height: 40%;
    background-repeat: no-repeat;
    transform: rotate(180deg);
}

.testimonial-head {
    padding: 20px 0;
}



/*Testimonial End*/


/* footer */

footer {
    background: #fff;
    position: relative;
}

/* News Letter  */

.news-letter h2 {
    color: #fff;
    margin-bottom: 0;
    line-height: 1;
    font-size: 62px;
    font-weight: 300;
    text-transform: uppercase;
}

.news-letter {
    padding: 80px 0;
    padding-right: 20px;
    background: #2d4c29;
}

.news-letter form {
    width: 100%;
    padding: 0px 0px;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 100px;
    justify-content: center;
    border: 1px solid #a1c08d;
    background-color: #153216;
}

.news-letter form input {
    width: 100%;
    border: none;
    color: #fff;
    padding: 13px;
    border-radius: 41px;
    background: #00000000;
}

.news-letter form button {
    flex-shrink: 0;
    color: #0f1010;
    background-color: #fff;
    border: 1px solid #fff;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 60px;
}

.news-letter form button.theme-btn-1 span {
    background-color: #83af66;
}

.news-letter form button.theme-btn-1 span i {
    color: #fff;
}

.news-letter .row {
    align-items: center;
}

.news-letter form input::placeholder {
    color: #fff;
    text-transform: capitalize;
}

.main-ftr {
    position: relative;
    padding: 70px 20px;
    height: 100%;
}

.main-ftr ul li h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: 'queensila-font-one';
    text-transform: uppercase;
}

.main-ftr ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-ftr ul li p,
.main-ftr ul li p a {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.main-ftr ul li i {
    font-size: 20px;
    color: #ffffff;
}

.main-ftr:after {
    position: absolute;
    content: '';
    background: #83af66;
    width: 1px;
    height: 0px;
    bottom: 0;
    right: 10px;
    transition: .7s ease-in-out;
}

.middle-ftr:hover .main-ftr:after {
    height: 100%;
}

.middle-ftr:hover {
    border-color: #83af66;
}

.middle-ftr {
    transition: 0.7s ease-in-out;
    background: #153216;
    border-bottom: 1px solid #2d472e;
    border-top: 1px solid #677a62;
}

.main-ftr ul {
    margin-bottom: 0;
}

.ftr-req h5 a {
    color: #ffffff;
    font-size: 30px;
    font-weight: 500;
    font-family: 'Montserrat';
}

/*.ftr-req {
    text-align: center;
}*/

.ftr-req input {
    width: 100%;
    padding: 12px;
    max-width: 333px;
    color: #ffffff;
    border-radius: 4px;
    text-align: center;
    background: transparent;
    border: 1px solid #b2c7c6;
}

.ftr-req input::placeholder {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    text-transform: capitalize;
}

.main-ftr:before {
    position: absolute;
    content: '';
    background: #ccdad9;
    width: 1px;
    height: 100%;
    top: 0;
    right: 10px;
}

.bottm-ftr ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    padding: 10px 0;
    width: 100%;
}

.bottm-ftr ul li ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bottm-ftr ul li p {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.bottm-ftr ul li ul a i {
    color: #9d9fa4;
    font-size: 18px;
    width: 35px;
    height: 35px;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    transition: 0.5s;
    animation: scale-up-center 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) infinite both;
}

.bottm-ftr ul li ul a i:hover {
    background: #138eed;
    color: #fff;
}

ul.botm-list {
    width: 200px;
}

ul.botm-list a {
    color: #fff;
}

ul.phon-list li {
    display: block;
}

ul.phon-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.ftr-req.pade-right {
    gap: 20px;
    height: 100%;
    display: flex;
    padding: 20px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.bottm-ftr {
    background: #153216;
}

/* end  */

/* Inner Banner Sec Start */
.banner-img.inner-banner img {
    height: auto;
}


/* Inner Banner Sec End */

ul.about-text-ul > li {
    width: 100%;
}



/* InnerPage Shop start */
.product_grid ul {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    /* Needed for positioning the tool_tip */
}

.product_grid ul li {
    position: relative;
    /* Positioning context for tool_tip */
}

.product_grid ul li a:hover {
    color: #000;
}

.product_grid ul li a:focus-within {
    color: #000;
}

/* tool_tip styles */
.tool_tip {
    display: none;
    /* Hidden by default */
    position: absolute;
    bottom: 125%;
    /* Position above the link */
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    /* Red background */
    color: white;
    /* White text */
    padding: 1px 5px;
    border-radius: 5px;
    white-space: nowrap;
    /* Prevent line breaks */
    z-index: 1;
    /* Ensure it appears above other elements */
    font-size: 10px;
}

.product_grid ul li a:hover .tool_tip {
    display: block;
    /* Show tool_tip on hover */
}

/* InnerPages start */

.connector-line {
    position: absolute;
    height: 7px;
    /* Height of the connector line */
    background-color: #000;
    /* Connector line color */
    top: -3px;
    /* Adjust this value to position it just behind the balls */
    z-index: 1;
    border-radius: 40px;
    /* Ensure it's behind the labels and balls */
}

span.rangeValues {
    text-align: left;
    display: block;
    padding-top: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0;
    font-family: 'GothamBook';
    color: #313131;
}

.start-label {
    transform: translateX(-30%);
}

.range-slider input[type=range] {
    -webkit-appearance: none;
    /* border: 1px solid white; */
    width: 100%;
    position: absolute;
    left: 0;
    z-index: 1;
    /* Add this line */
    height: 7px;
    background: #ebeced;
    top: -3px;
}

.range-slider input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 1px;
    /* Adjust height if needed */
    /* background: #ddd; */
    border: none;
    border-radius: 3px;
    z-index: 0;
}

.range-slider input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    /* border: 2px solid #fff; */
    height: 20px;
    /* Increased size */
    width: 20px;
    /* Increased size */
    border-radius: 50%;
    background: #000;
    margin-top: -10px;
    /* Adjust based on thumb size */
    cursor: pointer;
}

.range-slider input[type=range]:focus {
    outline: none;
}

.range-slider input[type=range]:focus::-webkit-slider-runnable-track {
    /* background: #ccc; */
}

/* Add styles for Firefox */
.range-slider input[type=range]::-moz-range-track {
    width: 100%;
    height: 1px;
    background: #ddd;
}

.range-slider input[type=range]::-moz-range-thumb {
    border: none;
    height: 20px;
    /* Increased size */
    width: 20px;
    /* Increased size */
    border-radius: 50%;
    background: #000;
}

/* Add styles for IE */
.range-slider input[type=range]::-ms-track {
    width: 100%;
    height: 1px;
    background: transparent;
    /* border-color: transparent; */
    color: transparent;
}

.range-slider input[type=range]::-ms-fill-lower {
    background: #000;
    border-radius: 10px;
}

.range-slider input[type=range]::-ms-fill-upper {
    background: #000;
    border-radius: 10px;
}

.range-slider input[type=range]::-ms-thumb {
    border: none;
    height: 20px;
    /* Increased size */
    width: 20px;
    /* Increased size */
    border-radius: 50%;
    background: #000;
}

.bannertabs h5 {
    margin: 10px 0;
    font-size: 23px;
}

.bannertabs {
    background: white;
    /* box-shadow: 1px 1px 15px 1px #0000002e; */
    padding: 2px 7px;
}

.range-slider {
    width: 100%;
    text-align: center;
    position: relative;
    margin-top: 70px;
}

.range-labels {
    position: relative;
    margin-bottom: 0;
    /* Keep this if needed */
    top: 0;
}

.start-label::after,
.end-label::after {
    content: '';
    position: absolute;
    bottom: -10px;
    /* Position the triangle below the label */
    left: 50%;
    /* Center the triangle */
    transform: translateX(-50%);
    /* Centering adjustment */
    border-width: 5px;
    /* Size of the triangle */
    border-style: solid;
    border-color: #000 transparent transparent transparent;
    /* Triangle color */
}

.end-label::after {
    left: 50%;
    /* Keep this to center the triangle */
    transform: translateX(-50%);
    /* Centering adjustment for end label */
}

.start-label,
.end-label {
    position: absolute;
    top: -92px;
    /* Position above the slider */
    font-size: 14px;
    /* Keep this */
    font-weight: 400;
    z-index: 4;
    /* Ensure labels are above the slider track */
    background-color: #000;
    /* Background color */
    padding: 2px 10px;
    /* Padding for the label */
    border-radius: 5px;
    /* Optional: rounded corners */
    transform: translateX(-34%);
    /* Center the labels */
    width: 60px;
    color: #ffff;
    font-family: 'Montserrat';
}

.start-label {
    left: 0;
    /* Initial left position */
}

.end-label {
    left: 100%;
    /* Initial right position */
    transform: translateX(-65%);
}


.bannertabs h5 {
    margin: 10px 0px;
    font-size: 26px;
    font-weight: 600;
}

.bannertabs {
    background: #ffffff00;
    /* box-shadow: 1px 1px 15px 1px #0000002e; */
    padding: 32px 27px 12px 27px;
}

.bannertabs .nav.nav1.stroke ul li a:hover {
    transition: 0.3s ease-in-out;
    margin-left: 15px;
}

.bannertabs .nav.nav1.stroke ul li a {
    text-align: left;
    text-transform: capitalize;
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid #f1f2f2;
    font-weight: 400;
    transition: 0.3s ease-in-out;
    font-size: 16px;
    color: #000;
    text-transform: uppercase;
}

.bannertabs .nav.nav1.stroke ul li:last-child a {
    border: navajowhite;
}

.product_show ul li a {
    font-weight: 500;
}

.product_main_box .clothing_box_image img {
    height: 450px;
    object-fit: cover;
    object-position: center;
}

.product_grid ul {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    /* Needed for positioning the tool_tip */
}

.product_grid ul li {
    position: relative;
    /* Positioning context for tool_tip */
}

.product_grid ul li a:hover {
    color: #32502f;
}

.product_grid ul li a:focus-within {
    color: #000;
}

/* tool_tip styles */
.tool_tip {
    display: none;
    /* Hidden by default */
    position: absolute;
    bottom: 125%;
    /* Position above the link */
    left: 50%;
    transform: translateX(-50%);
    background-color: #486445;
    /* Red background */
    color: white;
    /* White text */
    padding: 5px 11px;
    border-radius: 5px;
    white-space: nowrap;
    /* Prevent line breaks */
    z-index: 1;
    /* Ensure it appears above other elements */
    font-size: 14px;
    text-transform: uppercase;
}

.product_select {
    display: flex;
    align-items: center;
}

.product_select select {
    padding: 0 10px;
    appearance: auto;
    width: 100%;
    height: 40px;
    border: 1px solid #ebebeb;
    border-radius: 6px;
}

.product_show ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product_show ul {
    font-family: montserrat;
    font-size: 17px;
}

.product_show ul li a:focus-within {
    color: #000;
}

.product_show ul li a:hover {
    color: #000;
}

.product_select h6 {
    width: 100px;
    margin: 0;
    font-size: 15px;
    text-transform: capitalize;
}

.product_grid ul li a:hover .tool_tip {
    display: block;
    /* Show tool_tip on hover */
}

h5.capi {
    text-transform: capitalize;
    margin-top: 30px !important;
    margin-bottom: 0px !important;
    text-transform: uppercase;
}

.bannertabs .nav {
    display: block !important;

}

.product_top_bar {
    padding-bottom: 80px;
}

.product_heading h4 {
    font-size: 20px;
    font-family: 'GothamBook';
    font-weight: 600;
    text-transform: capitalize;
}

.bannertabs .nav1 ul {
    display: block !important;
}
section.Inner_Product_Sec {
    padding: 70px 0px;
    margin: 50px 0px;
    position: relative;
    z-index: 1;
}
section.Inner_Product_Sec:before {
    position: absolute;
    content: '';
    top: 0;
    left: 25%;
    height: 100%;
    width: 1px;
    background: #ece8d9;
    z-index: -1;
}

section.Inner_Product_Sec:after {
    position: absolute;
    content: '';
    top: 10%;
    left: 5%;
    height: 1px;
    width: 100%;
    background: #ece8d9;
    z-index: -1;
}

.product_show ul li a {
    color: #000;
}

.product_grid ul li a {
    color: #395635;
}
/* InnerPage Shop end */




/* Product Detail Page start */

.skin-2 .num-in {
    height: 40px;
    width: 150px;
    float: left;
    border: 0;
    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.plus:after {
    transform: rotate(90deg);
}

.num-in input.in-num {
    background-color: #ffffff;
    width: 38%;
    font-family: 'Helvetica';
}

.skin-2 .num-in input {
    float: left;
    width: 20%;
    height: 40px;
    border: none;
    text-align: center;
    background: transparent;
    font-family: 'Montserrat';
}

.skin-2 .num-in span:before,
.skin-2 .num-in span:after {
    content: '';
    position: absolute;
    background-color: #667780;
    height: 2px;
    width: 10px;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -5px;
}

.product-det-content h4 {
    font-size: 33px;
    line-height: 40px;
    font-family: 'Trajan';
    color: black;
    text-transform: capitalize;
}

.radio-input input {
    display: none;
}

.radio-input {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background-color: #fff;
    color: #000000;
    gap: 10px;
    overflow: hidden;
}

.radio-input label {
    width: 90px;
    padding: 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    font-weight: 600;
    letter-spacing: 0;
    border-radius: 10px;
    font-size: 14px;
    border: 1px solid #000;
}

.selection {
    display: none;
    position: absolute;
    height: 100%;
    width: calc(var(--container_width) / 3);
    z-index: 0;
    left: 0;
    top: 0;
    transition: .15s ease;
}

.radio-input label:has(input:checked) {
    color: #fff;
    background: linear-gradient(196deg, rgb(171 134 105) 10%, rgb(171 134 105) 50%, rgb(171 134 105) 60%);
    border: 0;
}

.radio-input label:has(input:checked)~.selection {
    background-color: rgb(11 117 223);
    display: inline-block;
}

.radio-input label:nth-child(1):has(input:checked)~.selection {
    transform: translateX(calc(var(--container_width) * 0/3));
}

.radio-input label:nth-child(2):has(input:checked)~.selection {
    transform: translateX(calc(var(--container_width) * 1/3));
}

.radio-input label:nth-child(3):has(input:checked)~.selection {
    transform: translateX(calc(var(--container_width) * 2/3));
}

.product-det-box {
    padding: 30px;
    /* border: 1px solid #9e9e9e; */
    border-radius: 0px;
    background: #fff;
}

.product-det-box h3 {
    font-size: 23px;
    font-family: 'queensila-font-one';
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0 0;
}

.product-det-box h3 span {
    font-family: 'montserrat-font-text';
    font-size: 30px;
    width: 100px;
    margin-bottom: -90px;
}

.counter-det-box {
    gap: 100px;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 20px 0;
    border-top: 1px solid #a9a9a9;
    position: relative;
    margin-top: 30px;
}

.counter-det-box:after {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
    background: #a9a9a9;
}

.counter-det-box h3 {
    margin: 0;
}

.prod-det-buttons {
    align-items: center;
    justify-content: space-between;
    display: flex;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #a9a9a9;
    position: relative;
    padding-right: 45px;
    border-radius: 50px;
}

.btn2.cart-btn {
    font-weight: 500;
    font-size: 17px;
    font-size: 21px;
    font-family: 'montserrat-font-text' !important;
    font-family: 'neur';
    text-transform: capitalize;
    color: #000;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-transform: uppercase;
}

.prod-det-buttons i {
    font-size: 30px;
    background: -webkit-linear-gradient(#2d4c29, #488552);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.prod-det-buttons:after {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    right: 20%;
    top: 0;
    background: #a9a9a9;
}

.rating:not(:checked)>input {
    position: absolute;
    appearance: none;
}

.rating:not(:checked)>label {
    float: right;
    cursor: pointer;
    font-size: 30px;
    color: #666;
}

.rating:not(:checked)>label:before {
    content: ' \f005' !important;
    font-family: 'FontAwesome';
    font-size: 20px;
}

.rating>input:checked+label:hover,
.rating>input:checked+label:hover~label,
.rating>input:checked~label:hover,
.rating>input:checked~label:hover~label,
.rating>label:hover~input:checked~label {
    color: #e58e09;
}

.rating:not(:checked)>label:hover,
.rating:not(:checked)>label:hover~label {
    color: #ff9e0b;
}

.rating>input:checked~label {
    color: #ffa723;
}

ul.review-det {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin: 25px 0;
    border-bottom: 1px solid;
    padding-bottom: 10px;
}

ul.review-det h4 {
    font-size: 14px;
    text-decoration: underline;
    color: #121212;
    font-family: 'montserrat-font-text';
}

.product-det-imag {
    height: 590px;
    border: 1px solid #a9a9a9;
    border-right: 0;
    width: 100%;
}

.product-det-imag img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    background: #2b4928;
    padding: 30px;
    border-radius: 16px 0px 0px 16px;
}


.banner_right_ul ul li a {
    color: #adbfc0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 1px solid;
    transition: 0.3s ease-in-out;
}

.product_banner_right_ul ul {
    width: unset !important;
    flex-direction: row !important;
    padding: 0 !important;
    align-items: start;
}

.banner_right_ul.product_banner_right_ul.wow.bounceInRight ul li img {
    filter: brightness(0) saturate(100%) invert(93%) sepia(10%) saturate(288%) hue-rotate(134deg) brightness(82%) contrast(85%);
}
.banner_right_ul ul {
    display: flex;
    gap: 20px;
}

.banner_right_ul ul li {
    height: 36px;
    width: 90px;
    border-radius: 20px;
    border: 1px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

li.bg-color-ch {
    background: #2d4c29;
    color: #fff;
}

/* Product Detail Page End */

/*  product Detail Review Section Start */


/* Rating Stars */

.prod-detail-description .rating:not(:checked)>input {
    position: absolute;
    -webkit-appearance: none;
}

.prod-detail-description .rating:not(:checked)>label {
    float: right;
    cursor: pointer;
    font-size: 30px;
    color: #666;
}

.prod-detail-description .rating:not(:checked)>label:before {
    content: "ÃƒÆ’Ã‚Â¢Ãƒâ€¹Ã…â€œÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦";
}

.prod-detail-description .rating>input:checked+label:hover,
.prod-detail-description .rating>input:checked+label:hover~label,
.prod-detail-description .rating>input:checked~label:hover,
.prod-detail-description .rating>input:checked~label:hover~label,
.prod-detail-description .rating>label:hover~input:checked~label {
    color: #e58e09;
}

.prod-detail-description .rating:not(:checked)>label:hover,
.prod-detail-description .rating:not(:checked)>label:hover~label {
    color: #ff9e0b;
}

.prod-detail-description .rating>input:checked~label {
    color: #ffa723;
}


/* Rating Stars */

.prod-detail-description {
    position: relative;
    padding: 0 0 80px 0;
}

.prod-detail-description .nav-tabs .nav-link {
    color: #0e0e0f;
    font-size: 19px;
    text-transform: uppercase;
    font-weight: 500;
    width: fit-content;
    padding: 15px;
    background: transparent;
    margin-right: 10px;
    border-radius: 0 !important;
    font-family: 'queensila-font-one';
}

.prod-detail-description .nav-tabs .nav-link.active,
.prod-detail-description .nav-tabs .nav-item.show .nav-link {
    border-bottom: 3px solid #2b4928 !important;
    border: 0;
}

.prod-detail-description .nav-tabs .nav-link:hover,
.prod-detail-description .nav-tabs .nav-link:focus {
    border-bottom: 3px solid #000 !important;
    border: 0;
}

.prod-detail-description .nav-tabs {
    margin-bottom: 15px;
    border: 0;
    border-bottom: 1px solid #dee2e6;
}

.prod-detail-description .prd-review-input label {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    text-transform: capitalize;
}

.prod-detail-description .prd-review-input input {
    width: 100%;
    height: 50px;
    padding: 0 10px;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    border: 1px solid #000;
    margin: 5px 0 20px;
}

.prod-detail-description .prd-review-input input::placeholder,
.prod-detail-description .prd-review-input textarea::placeholder {
    color: #000;
    font-weight: 600;
    font-size: 16px;
}

.prod-detail-description .prd-review-input textarea {
    width: 100%;
    height: 200px;
    padding: 13px;
    border: 1px solid #000;
    margin: 5px 0 0;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    resize: none;
}

.prod-detail-description .rating-stars input {
    width: auto !important;
    height: auto;
    border: 0;
}

.prod-detail-description .rating-stars {
    display: inline-grid;
    justify-items: baseline;
}

.prod-detail-description .rating {
    display: block;
    /* align-items: center; */
    /* justify-content: flex-start; */
    /* gap: 5px; */
    margin: 20px 0;
    float: left;
}

.prod-detail-description .prd-review-input.give-review h4 {
    font-size: 30px;
    color: #000;
    text-transform: uppercase;
}

.prod-detail-description .prd-review-input.give-review button {
    padding: 15px 40px;
    border-radius: 0;
    border: 1px solid #000;
    font-size: 16px;
    text-transform: uppercase;
    background: #000;
    color: #fff;
}

.prod-detail-description .client-review-box {
    box-shadow: 0 0 5px 1px #989898;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.prod-detail-description ul.client-list-review {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
}

.prod-detail-description ul.client-list-review li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.prod-detail-description ul.client-list-review img {
    width: 80px;
    height: 80px;
    border-radius: 100px;
    object-fit: cover;
    box-shadow: 0 0 5px 1px #989898;
}

.prod-detail-description ul.client-list-review h5 {
    font-size: 24px;
    color: #000;
    text-transform: capitalize;
    font-weight: 500;
}

.prod-detail-description ul.client-list-review h6 {
    font-size: 16px;
    color: #666;
    font-family: "Montserrat";
}

.prod-detail-description ul.client-list-review li i {
    font-size: 20px;
    color: #c78b1b;
}

.prod-detail-description .client-info {
    margin-left: 15px;
}

.prod-detail-description .client-review-box p {
    font-size: 16px;
    color: #000;
    font-family: "Roboto";
}

.prod-detail-description .prd-det-review-form .row {
    align-items: center;
}

.prod-detail-description .prd-det-discription-content p {
    text-align: justify;
    font-size: 14px;
    color: #0b0c0c;
    font-weight: 800;
    line-height: 26px;
    padding-bottom: 12px;
    margin: 0;
}

.prod-detail-description .prd-det-additional-content p {
    text-align: justify;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 10px;
}


.product-detail1 .skin-2 .num-in {
    height: 50px;
    width: 150px;
    float: left;
    display: flex;
    border-radius: 25px;
    cursor: pointer;
    align-items: center;
    position: relative;
}

.product-detail1 .skin-2 .num-in span:before,
.product-detail1 .skin-2 .num-in span:after {
    opacity: 1;
    content: '';
    position: absolute;
    background-color: #000;
    height: 2px;
    width: 10px;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -5px;
}



section.inner_gift_sec1 .about_text h3 {
    font-size: 44px;
}

.product-detail1 .skin-2 .num-in span.plus:after {
    transform: rotate(90deg);
    opacity: 1;
}
ul.disc-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

ul.disc-list li p {
    margin-bottom: 0px;
    line-height: unset;
}

ul.disc-list li > p {
    padding-bottom: 0 !important;
}
section.product-detail-page {
    margin: 100px 0px 50px;
}
/*  product Detail Review Section End */


/*CART PAGE CSS*/

.shopping_cart {
  padding: 80px 0;
}

.shopping_cart_table h2 {
  font-size: 42px;
  margin-bottom: 30px;
  color: #000;
  text-transform: capitalize;
}

.shopping_cart_table table th {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  padding-bottom: 10px;
}

.shopping_cart_table table thead {
  border-bottom: 1px solid #b8b8b8;
}

.shopping_cart_table table tbody td {
  padding: 25px 0;
  border-bottom: 1px solid #b8b8b8;
}

.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: 0;
  margin-right: 10px;
}

.shopping_cart_table table tbody .cart_box_product .cart_product_name h5 {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: 'GothamMedium';
  margin: 0;
}

.shopping_cart_table table tbody .cart_box_product .cart_product_name p {
  font-size: 12px;
  color: #0c0c0c;
  text-transform: uppercase;
  font-family: 'GothamMedium';
}

.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;
}

.shopping_cart_table table tbody td .t_price {
  font-family: 'Gotham-Bold';
  font-size: 36px;
  font-weight: 400;
  color: #000;
}

th.w-40 {
  width: 40%;
}

.shopping_cart_table table tbody td i.fas.fa-times {
  font-size: 20px;
  color: #000;
}


.minus,
.plus {
  font-size: 2rem;
  padding: 0.5rem;
  border: 1px solid #0c0c0c;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 0.5rem;
  cursor: pointer;
  user-select: none;
  /* Prevent text selection */
}

.minus.dis {
  color: #0c0c0c;
  cursor: not-allowed;
}

.minus:hover:not(.dis),
.plus:hover {
  border-color: #007bff;
  color: #007bff;
}

#number {
  font-size: 2rem;
  width: 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart_recipt {
  margin-top: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.cart_recipt>a {
  padding: 10px 30px;
  border: 1px solid #d5d5d5;
  border-radius: 0;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #151414;
  font-weight: 500;
  border-radius: 65px;
}

.cart_recipt>a i {
  margin-right: 10px;
}

.recipt {
  width: 30%;
}

.cart_product_img img {
  width: 100%;
}

.recipt li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: 'GothamBook';
}

.recipt li:last-child {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #b8b8b8;
}

.recipt li span {
  font-size: 16px;
  letter-spacing: 2px;
}

.payment_card {
  background-color: transparent;
  padding: 50px 25px;
  border-radius: 12px;
}

.payment_card h3 {
  font-size: 31px;
  color: #000;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: 'queensila-font-one';
  padding-bottom: 20px;
  text-transform: capitalize;
  border-bottom: 1px solid #414241;
}

.credit_paypal a {
  padding: 10px 20px;
  /* border: 1px solid #414241; */
  border-radius: 30px;
  gap: 10px;
  display: inline-flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
  color: #000;
  font-weight: 500;
  font-size: 15px;
  justify-content: space-between;
  background: #f3f3f3;
}

.table-responsive table {
  max-width: 100%;
  width: 100% !important;
  overflow-x: auto;
}

.credit_paypal a img {
  height: 20px;
  object-fit: contain;
  margin-right: 10px;
  filter: brightness(0);
}

.credit_paypal {
  padding-bottom: 20px;
  border-bottom: 1px solid #414241;
}

.payment_card form label {
  font-size: 13px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  color: #000;
}

.payment_card form {
  margin-top: 15px;
}

.payment_card form input {
  width: 100%;
  height: 50px;
  border: none;
  color: #000;
  border-bottom: 1px solid #414241;
  margin-bottom: 15px;
  background: transparent;
  padding: 0;
}

.payment_card form select {
  width: 100%;
  height: 50px;
  border: none;
  color: #000;
  border-bottom: 1px solid #414241;
  margin-bottom: 15px;
  background: transparent;
  padding: 0;
}

.payment_card form input::placeholder {
  color: #000;
}

.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;
}

.skin-2 .num-in {
  height: 60px;
  width: 150px;
  float: left;
  display: flex;
  border-radius: 25px;
  cursor: pointer;
  align-items: center;
  position: relative;
  border: 1px solid #000000;
  border-radius: 30px !important;
}

.skin-2 .num-in span {
  width: 40px;
  display: block;
  height: 40px;
  font-size: 15px;
  text-align: center;
  color: #000;
  border: unset;
}

.skin-2 .num-in span.plus:after {
  transform: rotate(90deg);
  opacity: 2;
}

.num-in input.in-num {
  background-color: #ffffff;
  width: 38%;
  font-family: 'Helvetica';
}

.skin-2 .num-in input {
  float: left;
  width: 40px;
  height: 40px;
  border: none;
  text-align: center;
  background: transparent;
}

.skin-2 .num-in span:before,
.skin-2 .num-in span:after {
  opacity: 1;
  content: '';
  position: absolute;
  background-color: #717273;
  height: 2px;
  width: 10px;
  top: 50%;
  left: 50%;
  margin-top: -1px;
  margin-left: -5px;
}

/*CART PAGE CSS END*/

/* InnerPage Cart end */
/* InnerPage Checkout start */
.billing_form {

  padding: 40px;

  /*background-color: #0e194a;*/

}



.billing_form h3 {

margin-bottom: 30px;

color: #000;

margin: 0;

margin-bottom: 30px;

text-transform: capitalize;

line-height: normal;
}



.billing_form label {

font-size: 14px;

color: #8d8d8d;

line-height: 20px;

font-weight: 600;

font-family: 'montserrat-font-text';
}





input[type="text"]::placeholder {

  font-size: 14px;

  color: #7c7c7c;

  font-weight: 500;

  line-height: 14px;

}



.radiosss p {

  color: #8d8d8d;

  font-size: 12px;

  font-weight: 400;

  font-family: 'GothamBook';
}





.billing_form input {

  width: 100%;

  height: 45px;

  border: 1px solid #c5c5c5;

  margin-bottom: 20px;

  padding-left: 15px;

  background-color: #fff0;

  border-radius: 0px;

  font-size: 14px;

  color: #8d8d8d;

  line-height: 20px;

  font-weight: 400;

  font-family: 'Poppins';

}



.billing_form input::placeholder {

  font-size: 14px;

  color: #8d8d8d;

  line-height: 20px;

  font-weight: 400;

  font-family: 'Poppins';



}



.cart_sidebar .cart_lst li:not(:last-child) {

  margin-bottom: 15px;

  /* font-family: 'Montserrat'; */

  color: #8d8d8d;

  font-family: 'GothamBook';

  font-weight: 600;
}



.cart_sidebar .cart_lst li {

  font-size: 14px;

  color: #000;

  font-weight: 500;

}



.cart_sidebar .cart_lst li span {

  float: right;

}





.cart_sidebar .cart_lst li:last-child {

  font-size: 24px;

  font-weight: 500;

  color: #000;

  text-transform: capitalize;

  font-family: 'GothamBook';
}







.cart_sidebar .cart_lst {

  margin-top: 20px;

  margin-bottom: 40px;

}







.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: #4b902c;

}



.cart_sidebar {

padding: 40px 25px;

border: none;

border-radius: 0px;

background: #fff;
}







.cart_sidebar h3 {

  color: #000;

  margin-top: 0px;

  line-height: normal;

  margin-bottom: 20px;

  font-weight: 500;

  text-transform: uppercase;
}










.cart_sidebar .h-sub {

  font-weight: 100;

  color: #000;

  font-size: 24px;

  border-bottom: 1px solid #373a33;

  margin-bottom: 20px;

  line-height: 0;

  padding-bottom: 30px;

  padding-top: 20px;

  text-transform: capitalize;

  font-family: 'GothamBook';
}



.cart_sidebar h5 span {

  float: right;

}



.cart_sidebar h4 {

  font-size: 24px;

  font-weight: 500;

  color: #000;

  text-transform: capitalize;

  font-family: 'GothamBook';
}



.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; */

color: #8d8d8d;

font-family: 'montserrat-font-text';
}





.cart_sidebar ul li label:before {

  content: '';

  -webkit-appearance: none;

  background-color: transparent;

  border: 1px solid #c4c4c4;

  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 #000;

  border-width: 0 2px 2px 0;

  transform: rotate(45deg);
}



.cart_sidebar ul li:not(:last-child) {

  margin-bottom: 15px;

  font-family: 'Nova Square';

}



.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;

  font-family: 'Poppins', sans-serif;

  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 {

  padding: 14px 50px;

  display: block;

  width: 100%;

  text-align: center;

  color: #fff;

  font-size: 17px;

  font-weight: 500;

  background: linear-gradient(180deg, #63ab1e 60%, #4a8f2c 100%);

  text-transform: uppercase;

  border-radius: 100px;

}



.Quick_info ul li a {

  text-transform: lowercase;

  font-size: 14px;

}





ul.shipping-ul {

  border-bottom: 1px solid #000;

  margin: 0;

  padding-bottom: 30px;

}



h6.payment-h {

  font-weight: 400;

  color: #000;

  font-size: 24px;

  margin-bottom: 30px;

  text-transform: capitalize;

  font-family: 'GothamBook';
}



label {

  display: inline-block;

  font-size: 16px;

  line-height: 20px;

  color: #7c7c7c;

  font-weight: 500;

  margin-bottom: 12px;

  font-family: 'GothamBook';
}



.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: 6px;

border-radius: 20px;

left: 6px;

border: 0;

width: 10px;

height: 10px;

background-color: #375433;
}







.radiosss-payments .card.card-body {

  padding: 0;

  border: navajowhite;

  margin-left: 0;

  padding: 10px;

  background-color: #ffffff9e;
}



.radiosss-payments {

  border-bottom: 1px solid #e9e9e9;

}







.billing_form {

  border: none;

  padding: 20px;

  border-radius: 7px;
}

.blog-list-card {
  display: flex;
  align-items: start;
  gap: 30px;
  margin: 20px 0;
}

.blog-list-card-img {
  width: 40%;
  margin: 0;
}

section.checkout_page {



  background-image: url(../images/cont-bg.png);

  width: 100%;

  height: 100%;

  background-repeat: no-repeat;

  background-size: cover;

  background-position: left;

}

.blog-detail-card-heading h4 {
  font-weight: 600;
  margin-top: 50px;
}


.date * {
  margin: 0;
  width: fit-content;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
}

.cardBtn {
  color: #fff;
  background-color: #000;
  border-radius: 50px;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  margin-top: 20px;
}

.date {
  width: fit-content;
  padding: 10px;
  background: #0e0e0e;
  color: #fff;
  position: absolute;
  top: 0;
  right: 20px;
}
section.checkout_page {
    margin: 100px 0px;
}

/* InnerPage Checkout end */

ul.why-choose-ul.wholesale-ul li {
    justify-content: end;
    padding-right: 50px;
    font-family: 'queensila-font-one';
    font-weight: 600;
    font-size: 20px;
}

.why-choose-icon-text ul li h5 {
    text-align: end;
    padding-right: 60px;
    font-size: 30px;
}

.why-choose-text.wholesale-box {
    text-align: end;
}
.why-choose-img.wholesale-img {
    text-align: center;
}
section.why-choose-sec.wholesale-sec {
    margin: 100px 0px;
}

/* contact page css */

.contact-sec input {
    width: 100%;
    height: 56px;
    border: 0;
    padding-left: 24px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #a7a6a6;
    background: transparent;
    border: 1px solid #ded5d5;
    border-radius: 50px;
    font-family: 'montserrat-font-text';
}

.contact-sec input::placeholder,
.contact-sec textarea::placeholder {
    font-size: 14px;
    color: #a7a6a6;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'montserrat-font-text';
}

.contact-sec textarea::placeholder {
    transform: translateY(100px);
}

.contact-sec textarea {
    width: 100%;
    height: 150px;
    border: 0;
    margin-bottom: 30px;
    color: #afaebe;
    padding-left: 15px;
    padding-top: 15px;
    font-size: 16px;
    background: transparent;
    border: 1px solid #ded5d5;
    font-family: 'montserrat-font-text';
    border-radius: 15px;
}

.contact-sec form {
    margin-top: 40px;
}

.contact-sec {
    margin-bottom: 100px;
    position: relative;
}

.contact-wraps button {
    margin: 0 auto;
}

.contact-wraps {
    position: relative;
}

.whatapp-box {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatapp-box2 {
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatapp-box2 a p {
    color: #8cff13;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
}

.whatapp-box a p {
    color: #8cff13;
    font-size: 14px;
    font-weight: 500;
}

.whatapp-box2 a i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #8cff13;
    display: flex;
    color: #002846;
    font-size: 30px;
    align-items: center;
    justify-content: center;
}

.whatapp-box a i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #8cff13;
    display: flex;
    color: #002846;
    font-size: 30px;
    align-items: center;
    justify-content: center;
}





.top-heading h2 {
    text-align: center;
    margin-bottom: 10px;
}

.top-heading p {
    text-align: center;
    width: 60%;
    margin: 0 auto;
    font-size: 15px;
    line-height: 28px;
    font-weight: 400;
}
.contact-sec select {
    width: 100%;
    height: 56px;
    border: 0;
    padding-left: 24px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #a7a6a6;
    background: transparent;
    border: 1px solid #ded5d5;
    border-radius: 50px;
    font-family: 'montserrat-font-text';
    text-transform: uppercase;
}


/* end  */



/* plan-sec css */

.plan-sec {
    padding-bottom: 60px;
    position: relative;
    padding-top: 100px;
    /* background: #002846; */
}

.plan-heading h2 {
    /* color: #fff; */
    text-align: center;
    /* margin-bottom: 15px; */
}

.plan-heading h2 span {
    /* color: #8cff13; */
}

.plan-heading p {
    text-align: center;
    width: 60%;
    /* font-size: 14px; */
    /* color: #ccd4da; */
    /* font-weight: 200 !important; */
    margin: 0 auto;
}


.basic-plan-box {
    padding-top: 40px;
    position: relative;
    padding-left: 25px;
    padding-right: 25px;
    margin-top: 40px;
    width: 100%;
    padding-bottom: 60px;
    transition: ease-in;
    transition-duration: 0.4s;
    /* border: 1px solid #8cff13; */
}

.basic-plan-box::before {
    right: 0;
    bottom: 0;
    position: absolute;
    content: '';
    width: 140px;
    height: 140px;
    background-size: contain;
    background: url(../images/plan-before.png)no-repeat;
}

.basic-plan-box h6 {
    text-align: center;
    /* color: #fff; */
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 0px;
}

.basic-plan-box p {
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.price-box span {
    /* color: #8cff13; */
    font-size: 60px;
}

.price-box h4 {
    letter-spacing: 5px;
    /* color: #99a9b5; */
}

.price-box h2 {
    font-size: 100px;
    /* color: #fff; */
    font-family: 'montserrat-font-text';
}

.price-box {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 25px;
}

.basic-plan-box a {
    width: 100% !important;
    padding: 14px 52px;
    border-radius: 5px;
    /* background: #8cff13; */
    color: #ffffff;
    text-align: center;
    font-weight: 500;
    border-radius: 50px;
    background: linear-gradient(171deg,rgba(80, 107, 76, 1) 0%, rgba(63, 92, 59, 1) 35%, rgba(43, 74, 40, 1) 100%);
    text-transform: uppercase;
}

.basic-plan-box ul {
    margin-top: 35px;
    margin-bottom: 35px;
}

.basic-plan-box ul li {
    /* color: #fff; */
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.basic-plan-box ul li i {
    color: #183418;
    font-size: 20px;
}

.basic-plan-box ul li p {
    font-size: 15px;
    margin: 0;
}

.basic-plan-box:hover {
    transform: scale(1.03);
    transition: ease-out;
    transition-duration: 0.4s;
    background: linear-gradient(171deg,rgba(80, 107, 76, 1) 0%, rgba(63, 92, 59, 1) 35%, rgba(43, 74, 40, 1) 100%);
    border-radius: 16px;
}

.basic-plan-box:hover a {
    color: #ffffff;
    font-weight: 500;
    background: linear-gradient(171deg,rgba(80, 107, 76, 1) 0%, rgba(63, 92, 59, 1) 35%, rgba(43, 74, 40, 1) 100%);
    color: #fff;
    border: 1px solid #fff;
}

.basic-plan-box:hover::before {
    width: 149px;
    height: 149px;
    background: url(../images/plan-after.png)no-repeat;
}

.basic-plan-box:hover p {
    color: #ffffff;
    font-weight: 600;
}

.basic-plan-box:hover i {
    color: #ffffff;
}

.basic-plan-box:hover h2 {
    color: #ffffff;
}

.basic-plan-box:hover h4 {
    color: #ffffff;
}

.basic-plan-box:hover span {
    color: #ffffff;
}

.basic-plan-box:hover h6 {
    color: #ffffff;
}


/* plan-sec css */

/* InnerPage Login start */
.text-blue {
    color: #100c6c;
}

.text-black {
    color: #000 !important;
}

.log-in-wrap {
    padding: 40px 35px;
    background-color: #fff;
    /*float: right;
*/
    border-radius: 12px;
    box-shadow: 1px 1px 13px 1px #0000000f;
}

.log-in-wrap h2 {
    margin: 0 0 20px 0;
    text-align: center;
    color: #000;
    font-size: 40px;
    margin-bottom: 30px;
    text-transform: capitalize;
    font-weight: 500;
}

.log-in-wrap form button {
    padding: 15px 50px;
    border-radius: 45px;
    font-size: 17px;
    color: #fff;
    font-weight: 500;
    border: none;
    /* background-color: #000; */
    font-family: 'montserrat-font-text';
    background: linear-gradient(171deg, rgba(80, 107, 76, 1) 0%, rgba(63, 92, 59, 1) 35%, rgba(43, 74, 40, 1) 100%);
}


.form-check input[type="checkbox"] {

    border: 1px solid #000;

    background: #000 !important;

    accent-color: #fff;

    width: 17px;
}


.log-in-wrap1 form button {
    padding: 15px 50px;
    border-radius: 6px;
    font-size: 17px;
    color: #000;
    font-weight: 500;
    border: none;
    background-color: #fff;
    font-family: 'montserrat-font-text';
    border-radius: 50px;
}

.width-100 {
    width: 100% !important;
}

.log-in-page-main {
    padding: 100px 0px;
}

.log-in-page-main .form-control {
    height: 50px;
    border-radius: 5px;
    padding-left: 25px;
    margin-bottom: 20px;
    border: 1px solid #e0dcdc;
    background: transparent;
    color: black;
}

.log-in-page-main .form-control::placeholder {
    color: gray;
}

.log-in-wrap1 input::placeholder {
    color: white !important;
}

.log-in-page-main .form-check label.form-check-label {
    font-size: 14px;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    color: #fff;
}

.log-in-page-main .form-check,
.forgot-pass {
    display: inline-block;
}

.forgot-pass {
    width: 72%;
    text-align: right;
}

.forgot-pass a {
    font-size: 14px;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    color: #fff;
}

.forgot-pass a:hover {
    color: #ffffff;
}

.agree-text {
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 15px;
    color: black;
    font-family: 'montserrat-font-text';
}

.term-condition {
    font-weight: 500;
    margin-left: 10px;
    color: #466342;
    border-bottom: 2px solid #476343;
    font-family: 'montserrat-font-text';
}




.log-in-wrap1 {
    background-color: #000;
    background: linear-gradient(171deg, rgba(80, 107, 76, 1) 0%, rgba(63, 92, 59, 1) 35%, rgba(43, 74, 40, 1) 100%);
}

.log-in-wrap.log-in-wrap1 h2 {
    color: white;
    font-size: 41px;
    font-weight: 400;
    text-transform: uppercase;
}

.mag_detail_left_box.p-4.bg_white img {
    border-radius: 7px;
}

.heading.heading1 h2 {
    font-size: 23px;
}

.mag_detail_left_box.p-4.bg_white h2 {
    margin: 20px 0;
}

.raim_image.hei img {
    object-fit: cover;
    height: 100%;
}

.raim_text p {
    padding: 0 30px;
}


.heading.heading1 {
    padding: 10px 50px 0px 30px;
}

.raim_bottom_image.hei img {
    height: 100%;
    object-fit: cover;
}

.raim_bottom_text.bg_white.p-5.text_center {
    padding: 90px 50px !important;
}

.button-wrap button {
    border-radius: 6px;
    margin: 40px auto;
    display: block;
    background: #c83018;
    border: navajowhite;
    padding: 14px 39px;
    text-transform: uppercase;
    color: white;
}

.log-in-wrap1 .form-group input {
    color: #fff !important;
}

.log-in-wrap1 .form-group input::placeholder {
    color: #fff !important;
}

/* InnerPage Login end */


/* InnerPage Contact Us start */
.contact-pag-form form {
    position: relative;
}

.contact-pag-form .form-group {
    position: relative;
}

.contact-pag-form .form-group::after {
    content: '';
    height: 53px;
    width: 10px;
    position: absolute;
    left: 40px;
    top: 5px;
    background-size: 10px 50px;
    background-image: url(../images/aroow-forward.png);
    background-repeat: no-repeat;
}

.contact-pag-form .form-group1::after {
    content: '';
    height: 53px;
    width: 10px;
    position: absolute;
    right: 40px;
    top: 5px;
    left: unset;
    transform: rotate(180deg);
    background-size: 10px 50px;
    background-image: url(../images/aroow-forward.png);
    background-repeat: no-repeat;
}

.contact-pag-form form input.form-control {
    height: 60px;
    font-size: 15px;
    padding-left: 21px;
    border: 1px solid #bdbdbd;
    line-height: 0;
    box-shadow: none;
    color: #909099;
    font-weight: 400;
    background-color: transparent;
    margin-top: 20px;
    font-family: 'montserrat-font-text';
    display: flex;
    border-radius: 5px;
}

.contact-pag-form form select.form-control {
    height: 60px;
    font-size: 15px;
    padding-left: 25px;
    border: 1px solid #bdbdbd;
    box-shadow: none;
    color: #909099;
    font-weight: 400;
    background-color: transparent;
    margin-top: 20px;
    font-family: 'montserrat-font-text';
    display: flex;
    border-radius: 5px;
}

.contact-pag-form .form-group:before {
    content: "";
    position: absolute;
    background-image: url(../images/contact-line.png);
    width: 8px;
    height: 47px;
    background-repeat: no-repeat;
    left: 40px;
    top: 5px;
}

.contact-pag-form .form-group:before {
    content: "";
    position: absolute;
    background-image: url(../images/contact-line.png);
    width: 50px;
    height: 50px;
}

.contact-pag-form form input.form-control::placeholder {
    color: #909091;
}

.contact-main-sec .them-btn-1:hover {
    background-color: #00006d;
    transition: 0.3s all;
}

.contact-pag-form form textarea.form-control {
    font-size: 15px;
    padding-left: 25px;
    padding-top: 20px;
    border: 1px solid #c6c6c6;
    letter-spacing: 0;
    box-shadow: none;
    resize: unset;
    background-color: transparent;
    margin-top: 20px;
    color: #000000;
    border-radius: inherit;
    border-radius: 6px;
    height: 150px;
    padding-top: 100px;
    scroll-behavior: unset;
}

.contact-pag-form .email {
    padding: 0;
}

.contact-pag-form h4 {
    font-size: 62px;
    line-height: 70px;
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;
}

.contact-pag-form form textarea.form-control::placeholder {
    color: #909091;
}

.contact-pag-form ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #909091;
}

.contact-pag-form ::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(18, 28, 42, 0.55);
}

.contact-pag-form :-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(18, 28, 42, 0.55);
}

.contact-pag-form :-moz-placeholder {
    /* Firefox 18- */
    color: rgba(18, 28, 42, 0.55);
}

.cicle-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border: transparent;
    height: 70px;
    width: 70px;
    border-radius: 50px;
    color: #466242;
    background: #fff;
}

.cicle-icon img {
    margin: 0 auto;
}

.contact-info {
    /* background: #000; */
    width: 100%;
    padding: 40px 20px;
    margin-bottom: 10px;
    border: 1px solid #c6c6c6;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(171deg, rgba(80, 107, 76, 1) 0%, rgba(63, 92, 59, 1) 35%, rgba(43, 74, 40, 1) 100%);
    border-radius: 12px;
}

.contact-main-sec h4 {
    font-size: 45px;
    color: #000000;
    font-weight: 400;
    line-height: 42px;
    margin-bottom: 10px;
    margin-left: 10px;
}

.contact-main-sec p span {
    display: block;
}

.contact-main-sec p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 0;
    font-family: 'Oswald';
    text-transform: capitalize;
}

.contact-main-sec h2 {
    margin: 0;
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    line-height: 30px;
    text-transform: uppercase;
}

.contact_text p {
    font-size: 22px;
    line-height: 25px;
    color: #8b8b8b;
    padding-top: 0px;
    font-weight: 400;
    font-family: 'Montserrat';
    letter-spacing: 1px;
}

.contact_text p a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: 0.5s ease-in-out;
    margin-top: 3px;
    display: block;
    font-family: 'GothamBook';
}

.mailt {
    padding-left: 30px;
}

.contact_text a:hover {
    color: #8b8b8b;
}

.contact_text p a.email-text {
    /* font-size: 14px; */
    /* color: #8b8b8b; */
}

.contact_text p a.email-text:hover {
    color: #8b8b8b;
}

.contact-us {
    padding: 6% 0;
}

.contact-head {
    text-align: center;
}

.contact-head h2 {
    font-size: 50px;
    color: #000;
    text-transform: uppercase;
}

.lg-btn {
    width: 100%;
}

.cp {
    font-size: 17px;
    line-height: 27px;
}

.contact_heading {
    margin-bottom: 30px;
}

.contact_heading h2 {
    font-size: 45px;
    color: #000000;
    font-weight: bolder;
}

.contact-side-bar {
    padding-top: 18px;
    margin-left: 20px;
}

.contact-main-sec {
    padding: 100px 0;
}

.contact-main-sec .them-btn-1 {
    margin-top: 20px;
    border: none;
    padding: 12px 20px;
    background-color: #ff0000;
    color: white;
    border-radius: 25px;
}

.b-img img {
    border-radius: 20px;
}

.contact-pag-form .form-group i {
    position: absolute;
    top: 20px;
    color: #000;
    left: 13px;
    font-size: 20px;
}

.contact-pag-form .form-group1 i {
    right: 13px;
    left: unset;
    color: #7f7f7f;
    pointer-events: none;
}

.contact-pag-form {
    margin-top: 0;
}

.contact-pag-form button {
    margin-top: 5%;
}

button.theme_btn img {
    width: 30%;
}

/* InnerPage Contact Us end */


/* Case  start  */

section.news {
  position: relative;
  overflow: hidden;
  margin: 100px 0px 100px;
}

section.news .boxitem {
  position: relative;
}

section.news .loverimg {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: 0.9s;
}

section.news .loverimg img {
  position: relative;
  width: 100%;
  height: 440px;
  border-radius: 5px;
  box-sizing: border-box;
  box-shadow: 0px 0px 19px 0px #ffffff29;
  transition: 0.3s;
  object-fit: cover;
}

section.news .boxitem .lovetxt {
  background: #fff;
  padding: 30px 10px 10px 10px;
  width: 84%;
  z-index: 1;
  border-radius: 0px 6px 0px 0px;
  position: absolute;
  bottom: 0;
  left: 0;
}

section.news .boxitem .lovetxt h6 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 500;
  padding-bottom: 0px;
  color: #444;
  margin-bottom: 5px;
}

section.news .boxitem .lovetxt p {
  position: relative;
  padding-right: 18px;
  font-size: 13px;
  line-height: 24px;
}

section.news .boxitem ul.ui_icons {
  display: flex;
  gap: 30px;
  margin-bottom: 15px;
}

section.news .boxitem ul.ui_icons span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #121212;
  font-family: 'montserrat-font-text';
  font-weight: 400;
}

section.news .boxitem ul.ui_icons span i {
  color: #1f3c1e;
}

section.news .loverimg:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

section.news .heading {
  margin-bottom: 50px;
}

/* Case Css end */
.blog-det-img img {
    width: 100%;
    margin-bottom: 20px;
}

section.blog-detail {
    margin: 100px 0px;
}
.about-img img {
    width: 100%;
}
.payment_card a.theme_btn {
    text-align: center;
    width: 43%;
    margin: 0 auto;
    display: flex;
}

.cart_sidebar button.theme_btn {
    margin: 0 auto;
    text-align: center;
    display: flex;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.bannertabs.main-heading-sd {
    padding-top: 0;
}
.bannertabs.main-heading-sd h5 {
    margin-bottom: 80px;
}
.skin-2 .num-in span:before, .skin-2 .num-in span:after {
   display: none;
}
.num-in #number {
    font-size: 1rem;
}
.blog-det-img {
    position: relative;
}

.blog-detail-img-number {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 30px;
}

.blog-detail-img-number i {
    color: #2f4e2b;
}