@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px 'Montserrat', sans-serif;
    color: #393939;
    overflow-x: hidden;
}

:root {
    --black: #000;
    --white: #fff;
    --textColor: #7f7f7f;
    --themeColor: #3e4a87;
    --themeColor2: #222544;
    --headingColor: #161a1d;
    --headingColor2: #131212;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
    display: inline-block;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}

img {
    max-width: 100%
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
}

@font-face {
    font-family: "SAGLetterica";
    src: url(../fonts/AGLetterica.ttf);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    color: #fff;
    font-size: 55px;
    padding-top: 5px;
    margin: 0 0 0px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "SAGLetterica", serif;
}

h2 {
    color: #000;
    font-size: 50px;
    margin: 0 0 0px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "SAGLetterica", serif;
}

h3 {
    font-size: 35px;
    margin: 0 0 0px;
    color: #000000;
    font-weight: 600;
    font-family: "SAGLetterica", serif;
}

h4 {
    font-family: "SAGLetterica", serif;
    font-size: 24px;
    color: #000;
    font-weight: 500;
    margin: 0 0 0px;
}

h5 {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    margin: 0 0 0px;
    font-family: 'Montserrat';
}

h6 {
    color: #000;
    font-size: 14px;
    margin: 0 0 0px;
    font-weight: 500;
    font-family: 'Montserrat';
}

p {
    margin: 0px;
    color: #666666;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0px;
    font-family: 'Montserrat';
}

.theme-1 {
    gap: 15px;
    display: flex;
    color: #fff;
    border-radius: 5px;
    padding-left: 15px;
    width: fit-content;
    align-items: center;
    text-transform: uppercase;
    font-family: 'Montserrat';
    background-color: rgb(138, 125, 112);
    box-shadow: 0px 9px 27px 0px rgba(121, 73, 37, 0.24);
}

.theme-1 i {
    width: 50px;
    height: 50px;
    color: #fff;
    display: flex;
    font-size: 10px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
    background-color: rgb(188, 177, 166);
}

.add-padding {
    width: 100%;
    margin: 0px auto;
    max-width: 1500px;
}

/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec ul li a {
    padding: 0;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    position: relative;
    text-decoration: none;
    display: inline-block;
    font-family: 'Montserrat';
    text-transform: uppercase;
}

.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: #8a7d70;
}

.menuSection {
    background: #bcb1a6;
    padding: 10px;
}

.header-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-btn .theme-1 {
    border: 1px solid #fff;
    background: #bcb1a6;
}

.header-btn .theme-1 i {
    background: #fff;
    color: #bcb1a6;
}

.topSec .container-fluid,
.menuSection .container-fluid {
    margin: auto;
    padding: 0px 5%;
    max-width: 1800px;
}

.topSec {
    padding: 10px 0px;
}

.top-bar-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-bar-center form {
    width: 90%;
    position: relative;
}


.top-bar-center form input {
    width: 100%;
    height: 50px;
    color: #b3b3b3;
    border-width: 1px;
    font-weight: 500;
    padding-left: 25px;
    border-radius: 50px;
    border-style: solid;
    font-family: 'Montserrat';
    border-color: rgb(215, 215, 215);
}

.top-bar-center form input::placeholder {
    color: #b3b3b3;
}

.top-bar-center form button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    color: #fff;
    border: none;
    background: #bcb1a6;
    border-radius: 50%;
}

.header-logo a {
    width: 100%;
}

.top-bar-right {
    gap: 10%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-nudmer a ul {
    gap: 15px;
    display: flex;
    align-items: center;
}

.header-cart-box ul {
    gap: 10px;
    display: flex;
    align-items: center;
}

.header-cart-box ul li p {
    color: #bcb1a6;
    font-weight: 500;
}

.header-cart-box ul li a {
    width: 45px;
    height: 45px;
    color: #fff;
    display: flex;
    border-radius: 50%;
    position: relative;
    align-items: center;
    justify-content: center;
    background-color: #bcb1a6;
}

.header-cart-box ul li a i {
    font-size: 18px;
}

.header-cart-box ul li a span {
    top: 0;
    right: 0;
    width: 15px;
    height: 15px;
    display: flex;
    font-size: 12px;
    color: #bcb1a6;
    border-radius: 50%;
    position: absolute;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat';
    background-color: rgb(255, 255, 255);
}

.header-nudmer a ul li i {
    color: #181717;
    font-size: 22px;
}

.header-nudmer a ul li p {
    color: #181717;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    text-transform: uppercase;
}

.header-nudmer a ul li p span {
    color: #c5bbb2;
}

/*header css start */


/*banner css start */

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
    width: 100%;
}

.carousel-control.right,
.carousel-control.left {
    background: none;
    opacity: 1;
    width: 50px;
    height: 50px;
    top: initial;
    top: 40%;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
    background: rgba(255, 27, 27, 0.6);
    color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
    position: relative;
    top: 12px;
    font-size: 20px;
    color: #fff;
    opacity: 0.5;
}

.carousel-control.right {
    right: 0px;
}

.carousel-control.left {
    left: 0px;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 10px;
    height: 12px;
    padding: 0;
    margin: 3px !important;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 1;
    /* transition: opacity 0.6s ease; */
    border-radius: 20px;
}

.carousel-caption {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    color: #fff;
    text-align: left;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    background: 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;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 0;
    font-size: 20px;
    color: #fff;
    text-align: center;
    background: none;
    border: 0;
    opacity: 1;
    transition: opacity 0.15s ease;
}

.banner-slider-btn {
    left: 0;
    bottom: 70px;
    right: 240px;
    margin: auto;
    display: flex;
    position: absolute;
    width: fit-content;
    align-items: center;
    justify-content: center;
}

.banner-slider-btn-inner {
    width: 130px;
    height: 100px;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

.banner-slider-btn-inner .carousel-control-prev-icon,
.banner-slider-btn-inner .carousel-control-next-icon {
    width: 60px;
    height: 60px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid #bcb1a6;
}

.banner-slider-btn-inner::before {
    left: 0;
    width: 1px;
    content: '';
    height: 100%;
    position: absolute;
    background: #a09489;
}

.banner-slider-btn-inner .carousel-control-prev {
    left: -70px;
}

.banner-slider-btn-inner .carousel-control-next-icon,
.banner-slider-btn-inner .carousel-control-prev-icon {
    background-image: none;
}

.banner-slider-btn-inner .carousel-control-next {
    right: 50px;
}

.banner-bg {
    width: 100%;
    object-fit: cover;
    min-height: 800px;
}

.inner-banner-bg {
    width: 100%;
    object-fit: cover;
    min-height: 600px;
}

.banner_text {
    z-index: 3;
    position: relative;
}

.banner_text h1 {
    position: relative;
    background: #bcb1a6;
}

.banner_text h2 {
    color: #fff;
    font-size: 60px;
    margin-bottom: 10px;
}

.banner_text h1::before {
    top: 0;
    right: 100%;
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    background: #bcb1a6;
}

.banner_text p {
    width: 90%;
    font-size: 14px;
    color: #c0b9b3;
    margin-top: 25px;
    margin-bottom: 15px;
}

.banner_text .theme-1 {
    margin-top: 25px;
}

.main_slider {
    position: relative;
}

.main_slider .container-fluid {
    margin: auto;
    padding: 0px 5%;
    max-width: 1800px;
}

.banner-follow-bar {
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 70px;
    display: flex;
    position: absolute;
    align-items: center;
    background: #bcb1a6;
}

.banner-a-link {
    z-index: 1;
    height: 100%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

.banner-a-link::before {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    content: '';
    height: 1px;
    position: absolute;
    background: #cbc2ba;
}

.banner-a-link h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    padding-left: 25px;
    position: relative;
    background: #bcb1a6;
    text-transform: uppercase;
}

.banner-a-link ul {
    gap: 15px;
    display: flex;
    padding-right: 15px;
    position: relative;
    align-items: center;
    background: #bcb1a6;
}

.banner-a-link ul li a {
    width: 45px;
    height: 45px;
    color: #fff;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid #d0c8c0;
}

.banner_img {
    top: 0;
    right: 0;
    z-index: 2;
    width: 55%;
    height: 100%;
    position: absolute;
    /* clip-path: polygon(0 80%, 0 0, 100% 0, 100% 100%, 30% 100%, 30% 80%); */
}

.banner_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-container {
    position: relative;
}

.carousel-progress-bar {
    position: absolute;
    top: 9px;
    left: 100px;
    width: 60%;
    z-index: 5;
    height: 2px;
    background-color: #cbc3ba;
}

.progress-bar {
    height: 100%;
    background-color: #fff;
    transition: width 0.5s ease;
}

.carousel-counter {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.baner-counter {
    position: relative;
    right: 0;
    width: 400px;
    display: flex;
    z-index: 3;
    justify-content: flex-start;
}

.banner-counter-box {
    position: absolute;
    right: 6%;
    top: 50px;
}

.total-slide {
    right: 0;
    color: #fff;
    font-size: 50px;
    position: absolute;
    font-family: "SAGLetterica", serif;
}

.active-slide,
.moving-slide {
    color: #fff;
    margin-left: 15px;
    font-size: 20px;
    font-family: "SAGLetterica", serif;
}

/*banner css end*/

/* section headng */

.section-heading {
    margin-bottom: 50px;
}

/* section headng */

/* banner-bottom-sec */

.banner-bottom-sec {
    padding: 100px 0px;
}

.banner-bottom-box {
    display: flex;
    padding: 25px;
    min-height: 180px;
    text-align: center;
    align-items: center;
    margin-bottom: 25px;
    transition: ease-out;
    flex-direction: column;
    justify-content: center;
    transition-duration: 0.5s;
    background-color: rgb(188, 177, 166);
}

.banner-bottom-box:hover {
    background: #8a7d70;
    transition: ease-in;
    transition-duration: 0.5s;
}

.banner-bottom-box h4 {
    color: #fff;
    font-size: 20px;
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 10px;
    transition: ease-out;
    transition-duration: 0.5s;
}

.banner-bottom-box h4::before {
    bottom: 0;
    left: 0;
    right: 0;
    width: 40px;
    content: '';
    height: 1px;
    margin: auto;
    background: #fff;
    position: absolute;
    transition-duration: 0.5s;
    transition: ease-out;
}

.banner-bottom-box p {
    color: #fff;
    font-size: 12px;
    font-style: italic;
    margin-bottom: 10px;
    overflow: hidden;
    height: 20px;
    display: -webkit-box;
    transition: ease-out;
    transition-duration: 0.5s;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.banner-bottom-box a {
    opacity: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: ease-out;
    transition-duration: 0.5s;
    font-family: 'Montserrat';
    text-decoration: underline;
}

.banner-bottom-box:hover p {
    overflow: hidden;
    height: 50px;
    transition: ease-in;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    transition-duration: 0.5s;
    -webkit-box-orient: vertical;
}

.banner-bottom-box:hover a {
    opacity: 1;
    transition: ease-in;
    transition-duration: 0.5s;
}

/* banner-bottom-sec */

/* about sec */

.about-sec {
    margin-bottom: 100px;
}

.inner-about-sec {
    padding-top: 100px;
}

.about-sec .container-fluid {
    margin: auto;
    padding: 0px 5%;
    max-width: 1800px;
}

.about-text h2 {
    text-align: end;
    position: relative;
    z-index: 2;
}

.about-text {
    /* min-height: 550px; */
    height: 100%;
    position: relative;
}

.aboutinner-text-bg {
    /* position: absolute;
    width: 55vw;
    right: 0; */
}

.about-text h2 span {
    color: #8a7d70;
    margin-bottom: 15px;
}

.aboutinner-text-bg {
    bottom: 0;
    z-index: 1;
    text-align: end;
    background: #fff;
    /* position: absolute; */
    padding: 35px 0px 0px 5px;
}

.aboutinner-text-bg a {
    margin-top: 40px;
    margin-left: auto;
}

.aboutinner-text-bg p {
    font-size: 14px;
    margin-bottom: 15px;
}

.about-inner-text {
    margin-top: 50px;
}

.about-inner-text p {
    font-size: 14px;
    margin-bottom: 15px;
}

.about-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    min-height: 550px;
}

.about-img img {
    width: 100%;
    height: 610px;
    object-fit: cover;
}

/* about sec */

/* product sec */

.product-sec {
    padding: 0px 0px 100px;
}

.product-sec .container-fluid {
    margin: auto;
    padding: 0px 5%;
    max-width: 1800px;
}

.product-heading {
    text-align: center;
    margin-bottom: 50px;
}

.product-heading h2 {
    margin-bottom: 15px;
}

.product-heading p {
    width: 60%;
    margin: auto;
}

.product-box {
    margin-bottom: 50px;
}

.product-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.product-box h4 {
    margin-top: 25px;
    color: #8a7d70;
    font-weight: 600;
}

.product-box h3 {
    font-size: 25px;
    margin-top: 10px;
    transition: ease-out;
    transition-duration: 0.5s;
    text-transform: uppercase;
}

.product-box h4 s {
    font-size: 14px;
    color: #c5c5c5;
    transition: ease-out;
    transition-duration: 0.5s;
}

.product-ul-1 {
    display: flex;
    margin-top: 10px;
    transition: ease-out;
    transition-duration: 0.5s;
    align-items: center;
    justify-content: space-between;
}

.choose-labal {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 2px 10px;
    border-radius: 5px;
    transition: ease-out;
    transition-duration: 0.5s;
    background: #bcb1a6;
    text-transform: uppercase;
    font-family: "SAGLetterica", serif;
}

.choose-labal-star {
    gap: 3px;
    display: flex;
    transition: ease-out;
    transition-duration: 0.5s;
    align-items: center;
}

.choose-labal-star i {
    color: #fa8d00;
    transition: ease-out;
    transition-duration: 0.5s;
}

.choose-labal-star .fa-regular {
    color: #c6c6c6;
    transition: ease-out;
    transition-duration: 0.5s;
}

.product-ul-2 {
    gap: 10px;
    margin: 20px 0px;
    display: flex;
    transition: ease-out;
    transition-duration: 0.5s;
    align-items: center;
    justify-content: flex-start;
}

.product-ul-2 li {
    width: 60px;
    height: 50px;
    text-align: center;
    font-size: 12px;
    display: flex;
    color: #8f8f8f;
    align-items: center;
    line-height: 15px;
    transition: ease-out;
    transition-duration: 0.5s;
    border-width: 1px;
    justify-content: center;
    font-family: 'Montserrat';
    border-color: rgb(183, 183, 183);
    border-style: solid;
    border-radius: 10px;
}

.product-ul-3 {
    margin-top: 10px;
    display: flex;
    transition: ease-out;
    transition-duration: 0.5s;
    align-items: center;
    justify-content: space-between;
}

.product-ul-3-last-li {
    gap: 10px;
    transition: ease-out;
    transition-duration: 0.5s;
    display: flex;
    align-items: center;
}

.product-ul-3-last-li a {
    width: 55px;
    height: 55px;
    display: flex;
    font-size: 20px;
    color: #8a7d70;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: ease-out;
    transition-duration: 0.5s;
    border: 1px solid #f0f0f0;
}

.product-ul-2 li:hover {
    color: #fff;
    cursor: pointer;
    transition: ease-in;
    transition-duration: 0.5s;
    background: #8f8f8f;
}

.choose-labal:hover {
    transition: ease-in;
    cursor: pointer;
    transition-duration: 0.5s;
    background-color: rgb(138, 125, 112);
}

.product-ul-3-last-li a:hover {
    color: #fff;
    background: #8a7d70;
    transition: ease-in;
    cursor: pointer;
    transition-duration: 0.5s;
}

/* product sec */

/* why-choose-sec */

.why-choose-sec {
    overflow: hidden;
    background-image: url(../images/Wchoose-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.why-choose-sec .container-fluid {
    margin: auto;
    padding: 0px 5%;
    max-width: 1800px;
}

.why-choose-text-1 {
    position: relative;
    margin-left: -10px;
    background: #bcb1a6;
    padding: 50px 25px 50px 80px;
}

.why-choose-text-1::before {
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    background: #bcb1a6;
}

.why-choose-text-1 ul {
    gap: 25px;
    display: flex;
    flex-wrap: wrap;
    margin: 25px 0px;
    align-items: center;
    flex-direction: row;
}

.why-choose-text-1 ul li {
    gap: 15px;
    display: flex;
    align-items: center;
}

.why-choose-text-1 ul li span {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: "SAGLetterica", serif;
}

.why-choose-text-1 h2 {
    color: #fff;
    margin-bottom: 10px;
}

.why-choose-text-1 p {
    color: #d9d3cd;
    margin-bottom: 15px;
}

.why-choose-text-2 {
    text-align: end;
    position: relative;
    padding: 50px 25px;
    margin-right: -15px;
    background: #bcb1a6;
}

.why-choose-text-2 h3 {
    color: #fff;
    font-size: 25px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.why-choose-text-2 p {
    color: #d9d3cd;
}

.why-choose-text-2::before {
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    background: #bcb1a6;
}

/* why-choose-sec */

/* gallery-sec */

.gallery-sec {
    padding: 100px 0px;
}

.gallery-l {
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
    position: relative;
    transition-duration: 0.5s;
}

.gallery-s {
    width: 100%;
    height: 220px;
    position: relative;
    margin-bottom: 20px;
    transition-duration: 0.5s;
}

.gallery-s img,
.gallery-l img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-l::before {
    top: 0;
    left: 0;
    opacity: 0;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    transition: ease-in;
    background: #bcb1a6c2;
    transition-duration: 0.5s;
}

.gallery-s::before {
    top: 0;
    left: 0;
    opacity: 0;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    transition: ease-in;
    background: #bcb1a6c2;
    transition-duration: 0.5s;
}

.gallery-l:hover::before,
.gallery-l:hover p,
.gallery-l:hover h3 {
    /* opacity: 1; */
    transition: ease-out;
    transition-duration: 0.5s;
}

.gallery-s:hover::before,
.gallery-s:hover p,
.gallery-s:hover h3 {
    /* opacity: 1; */
    transition: ease-out;
    transition-duration: 0.5s;
}

.gallery-s-text {
    top: 0;
    left: 0;
    gap: 15px;
    width: 100%;
    height: 100%;
    display: flex;
    padding-left: 10%;
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    transition-duration: 0.5s;
}

.gallery-s-text h3 {
    opacity: 0;
    color: #fff;
    font-weight: 600;
    padding-left: 4%;
    transition: ease-in;
    text-transform: uppercase;
    border-left: 5px solid #fff;
    transition-duration: 0.5s;
}

.gallery-l-text {
    top: 0;
    left: 0;
    gap: 15px;
    width: 100%;
    height: 100%;
    display: flex;
    padding-left: 10%;
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    transition-duration: 0.5s;
}

.gallery-l-text h3 {
    opacity: 0;
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    padding-left: 4%;
    line-height: 55px;
    transition: ease-in;
    text-transform: uppercase;
    border-left: 5px solid #fff;
    transition-duration: 0.5s;
}

.gallery-s-text p {
    color: #d5d0cb;
    font-size: 18px;
    width: 80%;
    opacity: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    transition: ease-in;
    line-height: 25px;
    transition-duration: 0.5s;
}

.gallery-l-text p {
    color: #d5d0cb;
    font-size: 18px;
    width: 80%;
    opacity: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    transition: ease-in;
    line-height: 25px;
    transition-duration: 0.5s;
}

/* explore sec */

.explore-sec {
    padding: 0px 0px 100px;
    overflow-x: hidden;
}

.explore-box {
    gap: 10px;
    display: flex;
    padding: 25px 10px;
    text-align: center;
    align-items: center;
    margin-bottom: 25px;
    flex-direction: column;
    justify-content: center;
    background-color: rgb(246, 246, 246);
    box-shadow: 0px 25px 29px 0px rgba(0, 0, 0, 0.09);
}

.explore-box img {
    height: 170px;
    width: fit-content;
    border-radius: 5px;
    margin-bottom: 10px;
    object-fit: contain;
    box-shadow: -4px 6.928px 17.28px 6.72px rgba(0, 0, 0, 0.22);
}

.explore-box h4 {
    font-weight: 600;
    text-transform: uppercase;
}

.explore-box p {
    font-size: 12px;
}

.explore-box a {
    gap: 10px;
    display: flex;
    color: #815533;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-family: 'Montserrat';
}

.explore-slder .slick-list {
    overflow: visible;
}

.explore-slder .slick-slide {
    opacity: 0;
}

.explore-slder .slick-active {
    opacity: 1;
}

.explore-slder .slick-next:before {
    content: '\f0da';
    color: #794925;
    font-weight: 700;
    transition: ease-out;
    transition-duration: 0.5s;
    font-family: 'Font Awesome 7 pro';
}

.explore-slder .slick-prev:hover:before,
.explore-slder .slick-next:hover:before {
    color: #e3e3e3;
    transition: ease-in;
    transition-duration: 0.5s;
}

.explore-slder .slick-prev:before {
    color: #794925;
    content: '\f0d9';
    font-weight: 700;
    transition: ease-out;
    transition-duration: 0.5s;
    font-family: 'Font Awesome 7 pro';
}

.explore-slder .slick-prev {
    top: 45%;
    left: -5%;
    z-index: 3;
}

.explore-slder .slick-next {
    right: unset;
    left: -5%;
    top: 55%;
}

/* explore sec */


/* Tstimonial Section Start */

section.client-sec {
    position: relative;
    padding: 60px 0px 120px;
    z-index: 3;
}

.client-card p {
    font-size: 15px;
    color: #ffffff;
    line-height: 27px;
    width: 100%;
}

.client-slider-nav {
    position: relative;
}

.cs-nav-box img {
    border-radius: 100px;
    object-fit: cover;
}

.img-1 {
    position: absolute;
    top: 200px;
    left: 155px;
    width: auto;
}

.img-2 {
    position: absolute;
    top: 40px;
    left: 280px;
    right: auto;
}

.img-3 {
    position: absolute;
    bottom: 15px;
    left: 115px;
    width: auto;
}

.img-4 {
    right: 300px;
    position: absolute;
    top: 50px;
    width: auto;
}

.img-5 {
    position: absolute;
    top: 205px;
    right: 170px;
    width: auto;
}

.cs-nav-box img {
    height: 80px;
    width: 80px;
    border: 3px solid #fff;
    box-shadow: 0 0 5px 0 #989898;
}

.client-details {
    display: none;
}

.client-details h5 {
    color: #fff;
    font-family: 'Montserrat';
    font-size: 18px;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    margin: 30px 0 0px 0;
}

.center {
    position: absolute;
    top: 40px;
    left: 30px;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center img {
    border-radius: 100%;
    height: 100px;
    width: 100px;
    border: 5px solid rgb(255 255 255);
    box-shadow: 0 0 9px #989898;
}

.active_testi {
    animation: 1.5s linear 0s infinite normal none running pulse;
}

.client-slider-for .slick-slide {
    margin: 0px !important;
}

@-webkit-keyframes pulse {
    0% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(0.8);
    }

    100% {
        transform: scale(1);
    }
}

.client-sec::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 60%;
    left: 0;
    right: 0;
    bottom: 120px;
    background-image: url(../images/testi-bg.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    z-index: -1;
}

.client-sec .sec-head {
    text-align: center;
}

.client-sec .sec-head h2 {
    font-size: 59.62px;
    color: #141414;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.client-sec .sec-head p {
    color: #8d8d8d;
    font-weight: 500;
    width: 90%;
    margin: 0 auto;
}

.client-sec .sec-head {
    margin-bottom: 40px;
}

.client-card.building-text {
    width: 500px;
    background: #8a7d70;
    padding: 40px;
    text-align: center;
    position: relative;
    border-radius: 10px;
    margin: 30px auto 0;
    z-index: 9;
}

.client-card.building-text::after {
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    background: #8a7d70;
    top: -10px;
    transform: rotate(45deg);
}

.client-details p {
    font-size: 13px;
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'Montserrat';
}

.testimonial-slider-box {
    width: 50%;
    margin: 150px auto 0;
    overflow: hidden;
}


/* Tstimonial Section End */


/* Footer Start */
.footer-sec {
    padding-top: 80px;
    padding-bottom: 15px;
}

footer {
    background: #8a7d70;
}

.quick-links {
    margin-left: 25px;
    padding-bottom: 25px;
}

.quick-links ul li a:hover {
    margin-left: 20px;
    transition: 0.5s;
    text-decoration: underline;
}


.quick-links ul li a {
    font-size: 12px;
    text-transform: uppercase;
    color: #c5beb8;
    font-weight: 600;
    transition: 0.5s;
}

footer p {
    font-size: 15px;
    width: 90%;
    color: #c5beb8;
    margin-bottom: 0;
    line-height: 30px;
}

.footer-sec .container-fluid {
    margin: auto;
    padding: 0px 5%;
    max-width: 1800px;

}

.footer-sec h2 {
    font-size: 25px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 0;
}

.quick-links ul {
    line-height: 35px;
}


.ftr-about-us-box a img {
    width: 100%;
    margin-bottom: 20px;
}

footer p {
    font-size: 14px;
    width: 90%;
    line-height: 28px;
}

.ftr-about-us-box {
    padding: 10px 0 25px;
}

ul.footer-list li a {
    font-size: 17px;
    color: #c5beb8;
    line-height: 40px;
    font-weight: 300;
}

ul.ftr-list li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    font-size: 12px;
    color: #c1c1c3;
    padding-top: 15px;
    margin-bottom: 10px;
}

ul.ftr-list i {
    color: #ffffff;
    font-size: 24px;
}

.footer-text {
    width: 94%;
    margin: 0 0 0 auto;
}


.before {
    position: relative;
}

.before:before {
    content: "";
    position: absolute;
    height: 100%;
    left: 0;
    background: #a1968c;
    width: 1px;
}

.ftr-btm {
    padding: 15px 20px;
    border: 1px solid #a1968c;
    background-color: rgb(188, 177, 166);
}

.ftr-btm ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.ftr-btm ul li {
    font-size: 14px;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.ftr-btm ul li a i:hover {
    background: #fff;
    color: #000;
}

.social-icons a i {
    color: #fff;
    font-size: 18px;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.5s;
}

.footer_bottom {}

.footer_bottom ul {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.footer_bottom a {
    color: white;
}

/* Footer End */

/* contact-sec inner */

.contact2-sec {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.contact-box {
    background: #fff;
    padding: 50px 45px 25px;
    position: relative;
    z-index: 1;
    border-radius: 10px;
}

.contact-detail h5 {
    color: #5f6367;
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-detail p {
    color: #5f6367;
    font-weight: 500;
    width: 85%;
}

.contact-detail h3 {
    color: #000000;
    font-size: 50px;
    margin-bottom: 5px;
    font-weight: 400;
    text-transform: uppercase;
}

.contact-detail h4 {
    margin-top: 50px;
    font-size: 35px;
}

.contact-input2 {
    position: relative;
}

.contact-input2 input {
    width: 100%;
    height: 50px;
    border: 0;
    padding-left: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #111010;
    border-radius: 5px;
    background: transparent;
    border: 1px solid #dadada;
}

.contact-input2 input::placeholder,
.contact-input2 textarea::placeholder {
    font-size: 14px;
    color: #111010 !important;
    font-weight: 600 !important;
    font-family: "SAGLetterica", serif !important;
    text-transform: uppercase;
}


.contact-input2 textarea {
    width: 100%;
    height: 80px;
    color: #111010;
    padding-left: 15px;
    padding-top: 10px;
    font-size: 14px;
    background: transparent;
    border-radius: 5px;
    border: 1px solid #dadada;
}

.text-center2 {
    position: absolute;
    right: 25px;
    bottom: -15px;
}

.phone-box {
    display: flex;
    gap: 25px;
    border-right: 2px solid;
    padding: 55px 0px 30px;
    align-items: center;
}

.phone-box p {
    color: #5f6367;
    font-size: 14px;
    font-weight: 600;
}

.flex-line {
    display: flex;
    gap: 5px;
    flex-direction: column;
    flex-wrap: nowrap;
}

.phone-box2 p {
    color: #5f6367;
    font-size: 14px;
    font-weight: 500;
}

.phone-box2 {
    display: flex;
    gap: 25px;
    height: 100%;
    align-items: center;
    border-right: 2px solid;
    margin-left: 15px;
    padding-right: 20px;
    padding-left: 10px;
    margin-right: 15px;
}

.phone-box3 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    gap: 25px;
}

.phone-box3 p {
    color: #5f6367;
    font-size: 14px;
    font-weight: 600;
}

.map-sec {
    position: relative;
    top: -250px;
}

.map-sec iframe {
    width: 100%;
    border-radius: 10px;
    filter: grayscale(1) invert(1) brightness(0.3);
}

.contact-input2 {
    margin-bottom: 50px;
}

.text-center2 button {
    border: none;
    padding: 0px;
    padding-left: 15px;
}

.map-sec {
    height: 400px;
}

/* contact-sec inner */

.form-container input,
.form-container select,
.form-container textarea {
    width: 100%;
    padding: 10px 20px;
    height: 55px;
    margin-bottom: 25px;
    border: 1px solid #b7b7b7;
    border-radius: 0px;
    color: #000 !important;
    font-family: 'Montserrat';
}

.form-container input::placeholder,
.form-container select::placeholder,
.form-container textarea::placeholder {
    color: #000 !important;
    font-weight: 500;
    font-family: 'Montserrat';
}

.form-container input[type="radio"],
.form-container input[type="checkbox"] {
    width: auto;
    margin-right: 5px;
    margin: 0;
}

.form-container textarea {
    width: 100%;
    height: 200px;
    resize: none;
    margin-top: 5px;
}

.form-container .radio-group,
.form-container .checkbox-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 50px;
}

.form-container button.submit-btn {
    border: none;
}

.form-container button {
    border: none;
}

.schedule-form {
    padding: 100px 0px;
}

.input-icon i {
    right: 0;
    height: 55px;
    background: #8a7d70;
    position: absolute;
    width: 55px;
    display: flex;
    top: 0;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.input-icon {
    position: relative;
}

.text-center3 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-center3 button {
    padding-right: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
}


/*checkout start*/
.billing_form {
    padding: 40px 10px 40px 40px;
}

.billing_form h3 {
    margin-bottom: 30px;
    font-size: 39px;
    color: #000;
    margin: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 28px;
    font-weight: 500;
}

.billing_form label {
    font-size: 13px;
    color: #7c7c7c;
    line-height: 20px;
    font-weight: 600;
}


input[type="text"]::placeholder {
    font-family: 'Montserrat';
    font-size: 14px;
    color: #7c7c7c;
    font-weight: 500;
    line-height: 14px;
}

.radiosss p {
    color: #7C7C7C;
    font-size: 12px;
    font-family: 'Montserrat';
    font-weight: 600;
}

.billing_form input {
    width: 100%;
    height: 50px;
    border: 1px solid #e5e5e5;
    margin-bottom: 20px;
    padding-left: 15px;
    color: #b0b0b0;
    border-radius: 5px;
    background-color: #fff0;
    /* border-radius: 20px; */
}

.billing_form input::placeholder {
    color: #b0b0b0;
}

.cart_sidebar .cart_lst li:not(:last-child) {
    margin-bottom: 15px;
}

.cart_sidebar .cart_lst li {
    font-size: 14px;
    color: #7c7c7c;
    font-family: 'Montserrat';
    font-weight: 500;
}

.cart_sidebar .cart_lst li span {
    float: right;
}

.cart_sidebar .cart_lst li:last-child {
    font-size: 17px;
    font-weight: 500;
    color: #000;
    font-family: "SAGLetterica", serif;
}

.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 #5a5a5a;
    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::before {
    position: absolute;
    content: '';
    width: 40px;
    height: 40px;
    background-image: url(../images/all-sec2.png);
    right: -82px;
    bottom: 48px;
    background-repeat: no-repeat;
    background-size: cover;
}

.cart_sidebar {
    padding: 40px 25px;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    position: relative;
}

.cart_sidebar h3 {
    font-size: 40px;
    color: #000;
    margin-top: 0px;
    margin-bottom: 0px;
    text-transform: uppercase;
    line-height: 25px;
    margin-bottom: 20px;
    font-weight: 500;
}

.cart_sidebar .h-sub {
    font-weight: 500;
    font-size: 20px;
    border-bottom: 1px solid #d8d8d8;
    margin-bottom: 20px;
    line-height: 0;
    padding-bottom: 30px;
    padding-top: 20px;
    font-family: "SAGLetterica", serif;
    color: #000;
}

li.inc {
    background-color: #f7f7f7;
    border: none;
    padding: 20px;
    outline: none;
}

.cart_sidebar h5 span {
    float: right;
}

.cart_sidebar h4 {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
}

.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: 500;
    color: #7c7c7c;
    font-family: 'Montserrat';
}

.cart_sidebar ul li label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #0e194a;
    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 #0e194a;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.cart_sidebar ul li:not(:last-child) {
    margin-bottom: 15px;
}

.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;
}

.Quick_info ul li a {
    text-transform: lowercase;
    font-size: 14px;
}

ul.shipping-ul {
    border-bottom: 1px solid #dbdbdb;
    margin: 0;
    padding-bottom: 30px;
}

h6.payment-h {
    font-weight: 600;
    color: #000;
    font-size: 18px;
    font-family: "SAGLetterica", serif;
    margin-bottom: 30px;
}

label {
    display: inline-block;
    font-family: 'Montserrat';
    font-size: 16px;
    line-height: 20px;
    color: #7c7c7c;
    font-weight: 500;
    margin-bottom: 12px;
}

.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: #292929;
}

.radiosss-payments .card.card-body {
    padding: 0;
    border: 1px solid #fff;
    margin-left: 0;
    padding: 10px;
    background-color: #ffffff9e;
}

section.checkout_page.pb-8 {
    padding: 100px 0px;
    position: relative;
}



a.checkout_btn.mt-4 {
    width: 100%;
    color: #000;
    font-weight: 600;
    padding: 10px 20px;
    text-align: center;
    border-radius: 8px;
    transition: ease-out;
    background: #e6ccb2;
    font-family: 'Montserrat';
    transition-duration: 0.5s;
    border: 1px solid #e6ccb2;
}

.text-cente3 {
    margin-top: 25px;
}

.text-cente3 button {
    padding: 0;
    border: none;
    padding-left: 15px;
}

/*checkout end*/

/*CART PAGE CSS*/

.shopping_cart {
    padding: 100px 0;
}

.shopping_cart .container-fluid {
    margin: auto;
    padding: 0px 5%;
    max-width: 1800px;
}

.shopping_cart_table h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #000;
}

.shopping_cart_table table th {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Montserrat", 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: 32%;
    background-color: #f2f2f2;
    padding: 0;
    margin-right: 20px;
}

.quanity.product-detail select {
    width: 50%;
    padding-right: 10px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
}

.shopping_cart_table table tbody .cart_box_product .cart_product_name h5 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    margin: 0;
}

.shopping_cart_table table tbody .cart_box_product .cart_product_name p {
    font-size: 14px;
    color: #b7b7b7;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif !important;
}

.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-size: 25px;
    font-weight: 400;
    font-family: "SAGLetterica", serif;
    color: #000;
}

th.w-40 {
    width: 40%;
}

.wjf {
    width: 18%;
}

.shopping_cart_table table tbody td i.fas.fa-times {
    font-size: 20px;
    color: #000;
}

.minus,
.plus {
    font-size: 30px;
    padding: 0.5rem;
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    cursor: pointer;
    user-select: none;
    /* Prevent text selection */
}

.minus.dis {
    color: #aaa;
    cursor: not-allowed;
}

.minus:hover:not(.dis),
.plus:hover {
    border-color: #007bff;
    color: #007bff;
}

#number {
    font-size: 20px;
    width: 2rem;
    font-weight: 500;
    font-family: 'Montserrat';
    text-align: 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 #c9c1b8;
    border-radius: 0;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #151414;
    font-weight: 500;
}

.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: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.recipt li:last-child {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #c9c1b8;
    font-weight: 700;
}

.recipt li span {
    font-size: 16px;
    letter-spacing: 2px;
}

.payment_card {
    background-color: #bcb1a6;
    padding: 50px 25px;
}

.payment_card h3 {
    font-size: 31px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid #c9c1b8;
}

.credit_paypal a {
    padding: 10px 20px;
    border: 1px solid #c9c1b8;
    border-radius: 30px;
    gap: 10px;
    display: inline-flex;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    justify-content: space-between;
}

.table-responsive table {
    max-width: 1500px;
    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 #c9c1b8;
}

.payment_card form label {
    font-size: 13px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
}

.payment_card form {
    margin-top: 15px;
}

.payment_card form input {
    width: 100%;
    height: 50px;
    border: none;
    color: #fff;
    border-bottom: 1px solid #c9c1b8;
    margin-bottom: 15px;
    background: transparent;
    padding: 0;
}

.payment_card form select {
    width: 100%;
    height: 50px;
    border: none;
    color: #fff;
    border-bottom: 1px solid #c9c1b8;
    margin-bottom: 15px;
    background: transparent;
    padding: 0;
}

.payment_card form select option {
    color: #000;
}

.payment_card form input::placeholder {
    color: #fff;
}

.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: #fff;
}

.payment_card form .btn1 {
    margin: 30px 85px;
    border: 1px solid;
}

.shopping_cart_table {
    padding-right: 40px;
}

.skin-2 .num-in {
    height: 40px;
    width: 120px;
    float: left;
    justify-content: center;
    display: flex;
    border-radius: 25px;
    cursor: pointer;
    border: 1px solid #b8b8b8;
    align-items: center;
}

.skin-2 .num-in span {
    width: 40px;
}

.skin-2 .num-in span.plus:after {
    transform: rotate(90deg);
}

.num-in input.in-num {
    background-color: #ffffff;
    width: 38%;
}

.skin-2 .num-in input {
    width: 40px;
    height: 40px;
    border: none;
    text-align: center;
    background: transparent;
}

.payment_cardtheme-1 {
    display: flex;
    margin-top: 25px;
    align-items: center;
    justify-content: center;
}

/*CART PAGE CSS END*/

/* Product Details */
.product-detail-sec {
    padding: 100px 0px;
}

.pro-detail-silder-one-items img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.pro-detail-silder-two-items img {
    width: 140px;
    height: 80px;
    object-fit: cover;
}

.product-detail-sec .container-fluid {
    margin: auto;
    padding: 0px 5%;
    max-width: 1800px;
}

.pro-detail-silder-two-silder {
    margin-top: 15px;
}

.pro-detail-silder-two-silder .slick-active {
    opacity: 1;
}

.pro-detail-silder-two-silder .slick-slide {
    margin: 0px 5px;
}

.pro-detail-silder-one .slick-slide {
    margin: 0px 5px;
}

.check-custom input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.check-custom label {
    position: relative;
    cursor: pointer;
}

.form-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid #ebebeb;
    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: 5px;
}

.check-custom input:checked+label:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #ebebeb;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.prod-det-txt {
    margin-left: 25px;
}

.prod-det-txt-h5 {
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.startimg-box {
    padding: 25px;
    border-width: 1px;
    border-color: rgb(235, 235, 235);
    border-style: solid;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 25px 29px 0px rgba(0, 0, 0, 0.09);
}

.startimg-box ul {
    gap: 25px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    align-items: center;
    flex-direction: row;
}

.startimg-box ul li h5 {
    font-size: 20px;
    color: #7f7f7f;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.startimg-box ul li h4 {
    font-size: 25px;
    color: #8a7d70;
    text-transform: uppercase;
}

.startimg-box ul li h4 s {
    font-size: 14px;
    color: #c5c5c5;
}

.startimg-box ul li p {
    color: #7f7f7f;
    font-size: 16px;
}

.check-custom.form-group {
    padding-bottom: 3px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e7e7e7;
}

.inner-product-box {
    width: 100%;
    height: 450px;
    text-align: center;
    border: 1px solid #f3f3f4;
}

.inner-product-box img {
    width: 90%;
    height: 100%;
    object-fit: contain;
}

.product-detail-sec-bottom {
    margin-bottom: 100px;
}

.product-detail-sec-bottom .container-fluid {
    color: #c5c5c5;
    margin: auto;
    padding: 0px 5%;
    max-width: 1800px;
}

.main-product-box-in-shop {
    padding: 25px;
    border-width: 1px;
    display: flex;
    align-items: center;
    height: 100%;
    border-color: rgb(235, 235, 235);
    justify-content: center;
    border-style: solid;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 25px 29px 0px rgba(0, 0, 0, 0.09);
}

.main-product-box-in-shop-text h3 {
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.main-product-box-in-shop-text h4 {
    color: #8a7d70;
    margin-bottom: 15px;
}

.main-product-box-in-shop-text h4 s {
    font-size: 16px;
    color: #c5c5c5;
}

.main-product-box-in-shop-text h5 {
    text-transform: uppercase;
}

.main-product-box-in-shop-text ul {
    gap: 25px;
    margin: 15px 0px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.main-product-box-in-shop-text ul li {
    gap: 15px;
    display: flex;
    align-items: center;
}

.main-product-box-in-shop-text ul li {
    font-size: 14px;
}

.filter-sec {
    margin-bottom: 80px;
}

.filter-sec .container-fluid {
    margin: auto;
    padding: 0px 5%;
    max-width: 1800px;
}

.filter-sec form {
    width: 100%;
    height: 45px;
    position: relative;
    margin-bottom: 25px;
}

.filter-sec form input {
    width: 100%;
    height: 100%;
    font-size: 14px;
    color: #bcb1a6;
    padding-left: 25px;
    border-radius: 50px;
    font-weight: 500;
    border: 1px solid #d7d7d7;
}

.filter-sec form input::placeholder {
    font-weight: 500;
    font-size: 14px;
    color: #bcb1a6;
}

.filter-sec form button {
    top: 2.5px;
    width: 40px;
    height: 40px;
    border: none;
    right: 2.5px;
    color: #fff;
    position: absolute;
    border-radius: 50px;
    background: #bcb1a6;
}

.filter-sec h4 {
    font-size: 25px;
    font-weight: 300;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.product-page-filter-box {
    padding-left: 25px;
    border-width: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    border-color: rgb(235, 235, 235);
    border-style: solid;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 25px 29px 0px rgba(0, 0, 0, 0.09);
    min-height: 105px;
    margin-bottom: 25px;
}

.product-page-filter-box h4 {
    font-size: 20px;
    margin-bottom: 0px;
}

.quick-ship-box {
    gap: 30px;
    margin: 40px 0px 25px;
    display: flex;
    justify-content: space-between;
}

.quick-ship-ul {
    gap: 10px;
    display: flex;
    align-items: baseline;
}

.quick-ship-ul li h4 {
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: underline;
}

.quick-ship-ul li p {
    font-size: 14px;
}

.florence-box {
    gap: 15px;
    padding: 25px;
    display: flex;
    margin: 25px 0px;
    border-width: 1px;
    align-items: center;
    border-style: solid;
    border-color: rgb(235, 235, 235);
    background-color: rgb(255, 255, 255);
}

.florence-box a {
    flex-shrink: 0;
}

.florence-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.florence-box h5 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #8a7d70;
    font-family: "SAGLetterica", serif;
}

.florence-box p {
    font-size: 14px;
}

.florence-box h5 s {
    color: #c5c5c5;
    font-size: 14px;
}


.materials-content {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.material-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 47%;
}

.material-item img {
    width: 30px;
    height: 30px;
}

.phone-icon {
    margin-right: 10px;
    font-size: 20px;
}

.faq-section .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.faq-section .accordion-item {
    background-color: #fff;
    border: none;
}

.faq-section .accordion-header {
    border-bottom: 1px solid #ebebeb;
}

.faq-section .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.5rem 1.25rem 1.5rem 0px;
    font-size: 1rem;
    text-transform: uppercase;
    color: #212529;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
}

.faq-section .accordion-body {
    border: 1px solid#ebebeb;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #000;
    background-color: transparent;
    box-shadow: none;
}

.fap-a-ablos {
    position: absolute;
    right: 0;
    padding: 10px 15px;
    color: #fff;
    border-radius: 5px;
    background-color: rgb(138, 125, 112);
    box-shadow: 0px 9px 27px 0px rgba(121, 73, 37, 0.24);
}

.faq-section .accordion-body {
    padding: 2rem 1.25rem;
}

.faq-section .accordion-button::after,
.faq-section .accordion-button:not(.collapsed)::after {
    background-image: none;
    transform: rotate(-180deg);
}

/* Product Details */

/* shop sec */


.product-page-sec {
    padding: 100px 0px;
}

.product-page-sec .container-fluid {
    margin: auto;
    padding: 0px 5%;
    max-width: 1800px;
}

.product-pages-filter .accordion-item {
    padding: 5px;
    margin-bottom: 25px;
    border-width: 1px;
    border-color: rgb(235, 235, 235);
    border-style: solid;
    background-color: rgb(255, 255, 255);
    border-radius: 0px;
    box-shadow: 0px 25px 29px 0px rgba(0, 0, 0, 0.09);
}

.product-pages-filter .accordion-button:not(.collapsed) {
    color: #000;
    background-color: transparent;
    box-shadow: none;
    border-bottom: 1px solid #e7e7e7;
}

.product-pages-filter .accordion-button {
    gap: 10px;
    text-transform: uppercase;
}

.filter-options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-options li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.filter-options input {
    margin-right: 10px;
}

.filter-options label {
    display: flex;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
}

.filter-options li label {
    margin-bottom: 0px;
}

.filter-options .color-circle {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 8px;
    border: 1px solid #ccc;
}

.category-box {
    padding: 25px;
    border-width: 1px;
    border-color: rgb(188, 177, 166);
    border-style: solid;
    border-radius: 10px;
}

.category-box ul {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
}

.category-box-f-w {
    width: 9%;
}

.category-box-f-w h4 {
    font-size: 16px;
    text-transform: uppercase;
}

.categoryies-boxes {
    width: 21%;
    display: flex;
    padding: 15px 5px 15px 10px;
    min-height: 70px;
    align-items: center;
    justify-content: flex-start;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 4.636px 1.873px 35px 0px rgba(0, 0, 0, 0.09);
}

.categoryies-boxes h4 {
    font-size: 14px;
    text-transform: uppercase;
}

.tab-product-main {
    margin-top: 50px;
}

.tab-product-content .nav-tabs {
    border-bottom: none;
    border: 1px solid #bcb1a6;
    background: #fefefe;
    width: max-content;
    margin-bottom: 50px;
    border-radius: 5px;
}

.tab-product-content .nav-tabs .nav-link {
    margin-bottom: 0px;
    color: #888888;
    background: none;
    padding: 5px 30px;
    font-weight: 500;
    font-family: 'Montserrat';
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.tab-product-content .nav-tabs .nav-link.active {
    border: 1px solid #b5a698;
    background: #fff;
    color: #000;
    border-radius: 5px;
}

/* shop sec */

/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1600px) {
    .about-text h2 {
        font-size: 45px;
    }
}

@media only screen and (min-width: 1291) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1290px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 520px) and (max-width: 767px) {}

@media only screen and (min-width: 300px) and (max-width: 519px) {}


/*Media Query End*/