/*@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');*/

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/*-------------------------------------------
Table of Index
-----------------------------------------------
1. Base css 
2. Header css
3. Banner css
4. About css
5. Count css
6. Services css
7. Features css
8. Testimonial css
9. Team css
10. Video css
11. Blog css
12. Projects css
13. Experience css
14. Footer css
15. Why Choose Us css
16. Page title carousel css
17. Work together css
18. Purposes css
19. FAQ css
20. Inner Page Banner css
21. Portfolio css
22. Contact css
23. Animations
24. Preloader css
----------------------------------------------- */

/* 1. Base css */
* {
    margin: 0;
    padding: 0;
}

html,
body {
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

:root {
    --brand-color: #484639;
    --black-color: #101010;
    --body-text-color: #535353;
    --body-text-color-two: #202020;
    --new-font: "Montserrat", sans-serif;
}

h1,
.h1 {
    font-size: 100px;
    margin: 0;
    font-weight: 700;
    /*font-family: 'Space Grotesk', sans-serif;*/
    font-family: var(--new-font);
}

h2,
.h2 {
    font-size: 52px;
    margin: 0;
    font-weight: 700;
    font-family: var(--new-font);
}


h3,
.h3 {
    font-size: 42px;
    margin: 0;
    font-family: var(--new-font);
}

h4,
.h4 {
    font-size: 28px;
    margin: 0;
    font-family: var(--new-font);
}

h5,
.h5 {
    font-size: 26px;
    margin: 0;
    font-family: var(--new-font);
}

h6,
.h6 {
    font-size: 22px;
    margin: 0;
    font-family: var(--new-font);
}

p,
.p {
    font-size: 16px;
    margin: 0;
    font-family: Montserrat;
    font-weight:500;
}

a {
    color: var(--black-color);
    font-family: var(--new-font);
    text-decoration: none;
    margin: 0;
    font-size: 16px;
}

a:focus {
    outline: 0px solid;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: var(--brand-color) !important;
}

a.dark-btn:hover,
a.brand-btn:hover,
a.light-btn:hover,
a.small-light-btn:hover {
    color: #fff !important;
}

.hover-img-container {
    overflow: hidden;
    position: relative;
    width: fit-content;
    transition: all .3s;
}

.hover-img-container::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 80px;
    height: 80px;
    background-color: transparent;
    border-bottom: 6px solid var(--brand-color);
    border-right: 6px solid var(--brand-color);
    transition: all .7s ease;
    z-index: 2;
}

.hover-img-container::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 80px;
    height: 80px;
    background-color: transparent;
    border-top: 6px solid var(--brand-color);
    border-left: 6px solid var(--brand-color);
    transition: all .7s ease;
    z-index: 2;
}
.choose-quote-wrapper .tab-content .title-area p{font-size:16px;}
.client-hover-img-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.contact-info-wrapper p{font-size:16px; color: var(--body-text-color);}
.hover-img-container img,
.client-hover-img-container img {
    transition: all 2s;
    position: relative;
    display: inline-block;
}

.hover-img-container:hover img,
.client-hover-img-container:hover img {
    transform: scale3d(1.2, 1.2, 1.2);
    z-index: 1;
}

.hover-img-container:hover::after {
    top: 20px;
    left: 20px;
}

.hover-img-container:hover::before {
    bottom: 20px;
    right: 20px;
}

.img-no-hover-effect:hover {
    transform: scale3d(1, 1, 1);
}

button {
    outline: 0px solid;
    text-decoration: none;
}

button:focus {
    outline: 0px solid;
    text-decoration: none;
}

.outline-0 {
    outline: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.brand-text {
    color: var(--brand-color);
}

.dark-text {
    color: var(--black-color);
}

.body-text {
    color: var(--body-text-color);
}

.body-text-two {
    color: var(--body-text-color-two);
}

.section-padding-top {
    padding-top: 40px;
}

.section-padding-top-xl {
    padding-top: 40px;
}

.section-padding-bottom {
    padding-bottom: 40px;
}

.section-padding-bottom-xl {
    padding-bottom: 40px;
}

/* scrollbar design */
/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--brand-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-color);
}

/* font-weight */
.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}

/* z-index */
.z-index-5 {
    z-index: 5;
}

.z-index-10 {
    z-index: 10;
}

.z-index-15 {
    z-index: 15;
}

.z-index-20 {
    z-index: 20;
}

.z-index-25 {
    z-index: 25;
}

/* line height */
.line-height-primary {
    line-height: 1em;
}

.line-height-1 {
    line-height: 1.1em;
}

.line-height-2 {
    line-height: 1.2em;
}

.line-height-3 {
    line-height: 1.3em;
}

.line-height-4 {
    line-height: 1.4em;
}

.line-height-5 {
    line-height: 1.8em;
}

.line-height-6 {
    line-height: 1.6em;
}

.line-height-7 {
    line-height: 1.7em;
}

.line-height-8 {
    line-height: 1.8em;
}

.line-height-9 {
    line-height: 1.9em;
}

.line-height-10 {
    line-height: 2em;
}

/* Buttons */

.brand-btn {
    background-color: #484639;
    border: 1px solid #484639;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s;
    padding: 25px 65px;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
}
.cate_section.cat-pg-sec.cff {
  margin-top: 0px;
  margin-bottom: 0px;
}
.cff .services_content {
  margin: 35px 0px 15px;
}
.dark-btn {
    background-color: var(--black-color);
    border: 1px solid var(--body-text-color);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s;
    padding: 15px 45px;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
}
.projects-one.pr {
  padding: 35px 12px 50px;
}
.light-btn {
    background-color: #fff;
    border: 1px solid #484639;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s;
    padding: 15px 45px;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
}
.cate_section.cl {
  padding: 50px 10px 50px;
}
.cl .cate_box {margin-bottom:30px;}
.cl .cate_content h3{color:#000; text-transform: capitalize;}
.cl .cate_box img{height:auto;}
.cl .cate_content p{color:#000;}
.cl .cate_content {
  bottom: 10px;
  left: 25px;
  text-transform: uppercase; position:initial;
  color: #fff;
  text-align: center;
  padding: 9px 0px;
}
.small-light-btn {
    background-color: #fff;
    border: 1px solid var(--body-text-color);
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s;
    padding: 15px 16px;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
}

.brand-btn:hover {
    border: 1px solid var(--body-text-color);
    color: #fff;
    background-color: var(--brand-color);
}

.dark-btn:hover {
    border: 1px solid var(--black-color);
    color: #fff;
    background-color: var(--black-color);
}

.light-btn:hover {
    border: 1px solid #484639;
    color: #fff;
    background-color: #fff;
}

.small-light-btn:hover {
    border: 1px solid var(--brand-color);
    color: #fff;
    background-color: #fff;
}

.dark-btn::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: var(--brand-color);
    left: 100%;
    visibility: hidden;
    transition: all .4s;
}

.light-btn::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: #484639;
    left: 100%;
    visibility: hidden;
    transition: all .4s;
}

.small-light-btn::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: var(--brand-color);
    left: 100%;
    visibility: hidden;
    transition: all .4s;
}

.brand-btn::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: var(--black-color);
    left: 100%;
    visibility: hidden;
    transition: all .4s;
}

.dark-btn:hover::before {
    left: 0;
    visibility: visible;
}

.light-btn:hover::before {
    left: 0;
    visibility: visible;
}

.small-light-btn:hover::before {
    left: 0;
    visibility: visible;
}

.brand-btn:hover::before {
    left: 0;
    visibility: visible;
}

/* slider nav buttons */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    transition: all .3s;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background-color: var(--brand-color);
}

.owl-carousel .owl-nav button.owl-prev span,
.owl-carousel .owl-nav button.owl-next span {
    transition: all .3s;
}

.owl-carousel .owl-nav button.owl-prev:hover span,
.owl-carousel .owl-nav button.owl-next:hover span {
    color: #fff !important;
}

/* Cursor */
.cursor {
    position: fixed;
    width: 50px;
    height: 50px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: .1s;
}

.cursor2 {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--brand-color);
    border-radius: 50%;
    left: 0;
    top: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: .15s;
}

/* Basic margin padding */
.m-0 {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
}

.p-0 {
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
}

/* Margin top */
.mt-0 {
    margin-top: 0
}

.mt-10 {
    margin-top: 10px
}

.mt-15 {
    margin-top: 15px
}

.mt-20 {
    margin-top: 20px
}

.mt-25 {
    margin-top: 25px
}

.mt-30 {
    margin-top: 30px
}

.mt-35 {
    margin-top: 35px
}

.mt-40 {
    margin-top: 40px
}

.mt-45 {
    margin-top: 45px
}

.mt-50 {
    margin-top: 50px
}

.mt-55 {
    margin-top: 55px
}

.mt-60 {
    margin-top: 60px
}

.mt-70 {
    margin-top: 70px
}

.mt-75 {
    margin-top: 75px
}

.mt-80 {
    margin-top: 80px
}

.mt-85 {
    margin-top: 85px
}

.mt-90 {
    margin-top: 90px
}

.mt-100 {
    margin-top: 100px
}

.mt-110 {
    margin-top: 110px
}

.mt-120 {
    margin-top: 120px
}

.mt-130 {
    margin-top: 130px
}

.mt-140 {
    margin-top: 140px
}

.mt-150 {
    margin-top: 150px
}

/* Margin right */
.mr-0 {
    margin-right: 0px
}

.mr-10 {
    margin-right: 10px
}

.mr-15 {
    margin-right: 15px
}

.mr-20 {
    margin-right: 20px
}

.mr-30 {
    margin-right: 30px
}

.mr-35 {
    margin-right: 35px
}

.mr-40 {
    margin-right: 40px
}

.mr-50 {
    margin-right: 50px
}

.mr-55 {
    margin-right: 50px
}

.mr-60 {
    margin-right: 60px
}

.mr-70 {
    margin-right: 70px
}

.mr-80 {
    margin-right: 80px
}

.mr-90 {
    margin-right: 90px
}

.mr-100 {
    margin-right: 100px
}

.mr-110 {
    margin-right: 110px
}

.mr-120 {
    margin-right: 120px
}

.mr-130 {
    margin-right: 130px
}

.mr-140 {
    margin-right: 140px
}

.mr-150 {
    margin-right: 150px
}

/* Margin bottom */
.mb-0 {
    margin-bottom: 0
}

.mb-10 {
    margin-bottom: 10px
}

.mb-15 {
    margin-bottom: 15px
}

.mb-20 {
    margin-bottom: 20px
}

.mb-25 {
    margin-bottom: 25px
}

.mb-30 {
    margin-bottom: 30px
}

.mb-35 {
    margin-bottom: 35px
}

.mb-40 {
    margin-bottom: 40px
}

.mb-45 {
    margin-bottom: 45px
}

.mb-50 {
    margin-bottom: 50px
}

.mb-55 {
    margin-bottom: 55px
}

.mb-60 {
    margin-bottom: 60px
}

.mb-65 {
    margin-bottom: 65px
}

.mb-70 {
    margin-bottom: 70px
}

.mb-80 {
    margin-bottom: 80px
}

.mb-90 {
    margin-bottom: 90px
}

.mb-100 {
    margin-bottom: 100px
}

.mb-110 {
    margin-bottom: 110px
}

.mb-120 {
    margin-bottom: 120px
}

.mb-130 {
    margin-bottom: 130px
}

.mb-140 {
    margin-bottom: 140px
}

.mb-150 {
    margin-bottom: 150px
}

/* Margin left */
.ml-0 {
    margin-left: 0
}

.ml-10 {
    margin-left: 10px
}

.ml-15 {
    margin-left: 15px
}

.ml-20 {
    margin-left: 20px
}

.ml-30 {
    margin-left: 30px
}

.ml-40 {
    margin-left: 40px
}

.ml-50 {
    margin-left: 50px
}

.ml-60 {
    margin-left: 60px
}

.ml-70 {
    margin-left: 70px
}

.ml-80 {
    margin-left: 80px
}

.ml-90 {
    margin-left: 90px
}

.ml-95 {
    margin-left: 95px
}

.ml-100 {
    margin-left: 100px
}

.ml-110 {
    margin-left: 110px
}

.ml-120 {
    margin-left: 120px
}

.ml-130 {
    margin-left: 130px
}

.ml-140 {
    margin-left: 140px
}

.ml-150 {
    margin-left: 150px
}

/* Padding top */
.pt-0 {
    padding-top: 0
}

.pt-10 {
    padding-top: 10px
}

.pt-15 {
    padding-top: 15px
}

.pt-20 {
    padding-top: 20px
}

.pt-25 {
    padding-top: 25px
}

.pt-30 {
    padding-top: 30px
}

.pt-35 {
    padding-top: 15px
}

.pt-40 {
    padding-top: 40px
}

.pt-50 {
    padding-top: 50px
}

.pt-60 {
    padding-top: 60px
}

.pt-70 {
    padding-top: 70px
}

.pt-80 {
    padding-top: 80px
}

.pt-90 {
    padding-top: 90px
}

.pt-100 {
    padding-top: 100px
}

.pt-110 {
    padding-top: 110px
}

.pt-120 {
    padding-top: 120px
}

.pt-130 {
    padding-top: 130px
}

.pt-140 {
    padding-top: 140px
}

.pt-150 {
    padding-top: 150px
}

.pt-175 {
    padding-top: 175px
}

/* Padding right */
.pr-0 {
    padding-right: 0
}

.pr-10 {
    padding-right: 10px
}

.pr-15 {
    padding-right: 15px
}

.pr-20 {
    padding-right: 20px
}

.pr-25 {
    padding-right: 25px
}

.pr-30 {
    padding-right: 30px
}

.pr-40 {
    padding-right: 40px
}

.pr-50 {
    padding-right: 50px
}

.pr-60 {
    padding-right: 60px
}

.pr-70 {
    padding-right: 70px
}

.pr-80 {
    padding-right: 80px
}

.pr-90 {
    padding-right: 90px
}

.pr-100 {
    padding-right: 100px
}

.pr-110 {
    padding-right: 110px
}

.pr-120 {
    padding-right: 120px
}

.pr-130 {
    padding-right: 130px
}

.pr-140 {
    padding-right: 140px
}

.pr-150 {
    padding-right: 150px
}

.pr-200 {
    padding-right: 200px
}

/* Padding bottom */
.pb-0 {
    padding-bottom: 0
}

.pb-10 {
    padding-bottom: 10px
}

.pb-15 {
    padding-bottom: 15px
}

.pb-20 {
    padding-bottom: 20px
}

.pb-25 {
    padding-bottom: 25px
}

.pb-30 {
    padding-bottom: 30px
}

.pb-40 {
    padding-bottom: 40px
}

.pb-50 {
    padding-bottom: 50px
}

.pb-60 {
    padding-bottom: 60px
}

.pb-70 {
    padding-bottom: 70px
}

.pb-80 {
    padding-bottom: 80px
}

.pb-90 {
    padding-bottom: 90px
}

.pb-95 {
    padding-bottom: 95px
}

.pb-100 {
    padding-bottom: 100px
}

.pb-105 {
    padding-bottom: 105px
}

.pb-110 {
    padding-bottom: 110px
}

.pb-120 {
    padding-bottom: 120px
}

.pb-130 {
    padding-bottom: 130px
}

.pb-140 {
    padding-bottom: 140px
}

.pb-150 {
    padding-bottom: 150px
}

/* Padding left */
.pl-0 {
    padding-left: 0
}

.pl-10 {
    padding-left: 10px
}

.pl-15 {
    padding-left: 15px
}

.pl-20 {
    padding-left: 20px
}

.pl-25 {
    padding-left: 25px
}

.pl-30 {
    padding-left: 30px
}

.pl-40 {
    padding-left: 40px
}

.pl-50 {
    padding-left: 50px
}

.pl-60 {
    padding-left: 60px
}

.pl-70 {
    padding-left: 70px
}

.pl-80 {
    padding-left: 80px
}

.pl-90 {
    padding-left: 90px
}

.pl-100 {
    padding-left: 100px
}

.pl-110 {
    padding-left: 110px
}

.pl-120 {
    padding-left: 120px
}

.pl-130 {
    padding-left: 130px
}

.pl-140 {
    padding-left: 140px
}

.pl-150 {
    padding-left: 150px
}

.pl-200 {
    padding-left: 200px
}

/* 2. Header css */
.logo-container .header-logo {
    width: 110px;
}

#offcanvasRight .header-logo {
  width: 135px;
}

.offcanvas-body {
    padding: 30px 30px 30px 50px;
}

.offcanvas-header {
    padding: 30px 30px 30px 50px;
}

.desktop-menu-offcanvas .off-canvas-icon {
    width: 42px;
    height: 42px;
    cursor: pointer;
    filter:invert(1);
}
.about .desktop-menu-offcanvas .off-canvas-icon{
    filter:invert(0);
}

.nav-menu ul {
    column-gap: 45px;
}
.accordion-menu li {margin-bottom: 22px;}

.nav-secondary .nav-menu ul li a {
    font-size: 18px;
    transition: all .3s;
    color: var(--black-color);
}

.nav-menu ul li a {
    font-size: 18px;
    transition: all .3s;
    color: #fff;
    font-weight:600;
}

.nav-menu ul li ul li a {
    font-size: 16px;
    transition: all .3s;
    color: var(--black-color);
}

.desktop-menu-offcanvas ul li a {
    color: var(--black-color);
}

.nav-menu ul li a:hover {
    color: var(--brand-color);
}

.nav-menu ul li a {
    position: relative;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: var(--brand-color);
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    transition: all .3s;
}

.nav-menu ul li a:hover::after {
    width: 75%;
}

.nav-menu ul li {
    position: relative;
}

.nav-menu ul li ul {
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.176);
    opacity: 0;
    text-align: left;
    transition: all 0.3s ease 0s;
    visibility: hidden;
    width: 190px;
    z-index: 999;
}

.submenu-container {
    background-color: var(--orange-color);
    position: absolute;
    top: 125%;
    left: 0px;
    width: fit-content;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.nav-menu ul li ul li:first-child {
    border-top: none;
}

.nav-menu ul li ul li {
    display: block;
    margin: 0;
    padding: 12px 15px;
    border-top: 1px solid rgba(246, 138, 10, .3);
    transition: all .3s ease 0s;
}

.nav-menu li:hover>ul {
    opacity: 1;
    visibility: visible;
}

.dark-sticky {
    background-color: var(--black-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

.light-sticky {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding-bottom: 35px;
    box-shadow: 0px 0px 4px 0px #e1d7d7;
}

.accordion-menu {
    width: 100%;
    max-width: 450px;
    margin: 0px auto 20px;
    background: #fff;
    border-radius: 4px;
}

.accordion-menu li.open .dropdownlink {
    color: var(--brand-color);
}

.accordion-menu li.open .dropdownlink .fa-chevron-down {
    transform: rotate(180deg);
}

.accordion-menu li:last-child .dropdownlink {
    border-bottom: 0;
}

.dropdownlink {
    cursor: pointer;
    display: block;
    font-size: 16px;
    color: var(--black-color);
    position: relative;
    transition: all 0.4s ease-out;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    padding: 12px 0px;
}

.dropdownlink i {
    position: absolute;
    top: 17px;
    left: 16px;
}

.dropdownlink .fa-chevron-down {
    right: 12px;
    left: auto;
}

.submenuItems {
    display: none;
    width: 100% !important;
}

.submenuItems li {
    border-bottom: 2px solid #f68c0a4d;
}

.submenuItems li:last-child {
    border-bottom: none;
}

.submenuItems a {
    display: block;
    color: var(--black-color);
    padding: 12px 12px 12px 10px;
    transition: all 0.4s ease-out;
}

.submenuItems a:hover {
    background: var(--black-color);
    color: #fff;
}

.dropdownlink {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-menu li a::after {
    content: '' !important;
    position: absolute !important;
    width: 0% !important;
    height: 0px !important;
    transition: all .3s;
}

.accordion-menu li a:hover {
    background-color: transparent !important;
}

.accordion-menu li ul {
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
    left: 0;
    opacity: 1 !important;
    position: relative;
    text-align: left;
    top: 130%;
    transition: all 0.3s ease 0s;
    visibility: visible !important;
    width: 190px;
    z-index: 999;
}

/* 3. Banner css */

.banner-one {
    height: fit-content;
    background-image: url(../img/New/home-banner2.jpg);
    background-blend-mode: overlay;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.banner-three {
    height: fit-content;
    background-image: url(../img/bannerThreeBg.jpg);
    background-blend-mode: overlay;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: max-content;
}

.banner-four {
    height: fit-content;
    background-image: url(../img/homeThreeBannerTwo.jpg);
    background-blend-mode: overlay;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.banner-two {
    background-image: url(../img/bannerTwoBg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 100vh;
}

.banner-two-counter {
    bottom: 0px;
    right: 0px;
    width: 750px;
    padding: 45px 0px 45px 45px;
    margin: 0;
    background-color: #ffffffe6;
}

.banner-two-second-counter {
    padding-left: 45px;
}

.banner-two-border-responsive::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0px;
    width: 2px;
    height: 100%;
    background: radial-gradient(50% 50% at 50% 50%, #F68A0A 0%, rgba(246, 138, 10, 0) 100%);
}

.banner-two-paragraph {
    padding-right: 50%;
}

.banner-onecontents {
    padding: 77px 0px 0px 0px;
}

.banner-three-contents {
    padding: 142px 0px 142px 0px;
}

.banner-three-subheading {
    padding-left: 100px;
    margin-bottom: 15px;
}

.banner-three-subheading::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0px;
    height: 1px;
    width: 85px;
    background-color: var(--brand-color);
}

.banner-onecontent-left p {
    padding-right: 25%;
}

.banner-scroll-bottom {
    left: 50%;
    transform: translateX(-50%);
    bottom: 5%;
    height: 100px;
    width: 27px;
    position: absolute;
}

.banner-scroll-bottom a {
    width: 27px;
}

.banner-scroll-bottom a p {
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
}

.banner-twocontents {
    padding: 75px 0px 0px 0px;
}

.floating-contact-box {
    bottom: 10%;
    left: 12px;
    width: 47px;
}

.floating-contact-box ul {
    row-gap: 65px;
    flex-direction: column;
}

.floating-contact-box ul li {
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    font-size: 20px;
}

.floating-contact-box ul .contact-info-one::before {
    content: '';
    width: 15px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: -32px;
    right: 10px;
    opacity: .2;
}

.floating-contact-box ul .contact-info-one-dark::before {
    content: '';
    width: 15px;
    height: 2px;
    background-color: var(--black-color);
    position: absolute;
    top: -32px;
    right: 4px;
    opacity: .2;
}

.floating-line {
    top: 0;
    left: 59px;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    opacity: 0.5;
    backdrop-filter: blur(15px);
}

.floating-social-box {
    right: 0px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 20px 30px;
    top: 0;
    height: 100%;
    width: 100px;
}

.floating-social-box ul {
    display: flex;
    list-style-type: none;
    flex-direction: column;
    width: 20px;
}

.floating-social-box ul li {
    color: #fff;
    writing-mode: vertical-rl;
    transform: rotate(-90deg);
    margin-bottom: 20px;
}

.floating-social-box ul .social-follow-text {
    transform: rotate(-180deg);
    text-transform: uppercase;
    font-size: 16px;
    margin-top: 85px;
}

.floating-social-box ul .social-follow-text::after {
    content: '';
    width: 1px;
    height: 85px;
    background-color: #fff;
    position: absolute;
    top: 95px;
    right: 10px;
}

.floating-social-icon i {
    width: 16px;
    height: 16px;
}

.floating-social-icon a {
    color: #fff;
}

.floating-social-icon a:hover {
    color: var(--brand-color);
}

.banner-three .owl-nav-three {
    display: flex;
    gap: 16px;
    position: absolute;
    bottom: 35px;
    left: calc((100% - 1296px) / 2)
}

.banner-three .owl-nav-three button.owl-next {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.banner-three .owl-nav-three button.owl-prev {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.banner-three .owl-nav-three button.owl-next span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.banner-three .owl-nav-three button.owl-prev span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.banner-three-carousel .owl-carousel .owl-item {
    width: 100%;
    margin-right: 0;
}

.banner-three-carousel .owl-carousel .owl-stage-outer {
    margin: 0;
}

.ah-headline.clip span {
    padding: 0;
}

.ah-words-wrapper b {
    padding: 0;
    font-weight: 700;
}

/* 4. About css */
.about-one {
    position: relative;
}

.about-one::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -115px;
    width: 580px;
    height: 640px;
    background-image: url(../img/aboutOneShape.png);
    background-repeat: no-repeat;
    background-size: contain;
    animation-name: fadeInOutMove;
    animation-duration: 4s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.about-one-img {
    width: 440px;
    height: auto;
}

.about-one-img-small {
    width: 330px;
    height: auto;
    right: 45px;
    bottom: -30px;
}

.about-one-subheading {
    margin-left: -90px;
    padding-right: 30%;
}

.about-one-first-text-box {
    padding-left: 0px;
}

/* 5. Count css */
.count-one-border::after {
    content: '';
    position: absolute;
    top: 0;
    right: 30px;
    width: 2px;
    height: 100%;
    background: radial-gradient(50% 50% at 50% 50%, #484639 0%, rgba(246, 138, 10, 0) 100%);
}

/* 6. Services css */
.service-one-card {
    height: 338px;
    transition: all .3s;
    border: 2px solid transparent;
}

.service-one-card .service-imag {
    height: 100%;
}

.service-one-card-container .owl-carousel .owl-item img {
    height: 100%;
}

.service-one-contents {
    top: 0;
    left: 0;
    padding: 25px 40px;
}

.service-four-card {
    padding: 46px 47px;
}

.service-one-card-container .owl-carousel .owl-item {
    min-height: 360px;
}

.service-one-card::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    border: 1px solid var(--brand-color);
    height: 100%;
    width: 100%;
    z-index: -1;
    transition: 1s;
}

.service-one-card:hover::after {
    z-index: 0;
    background: rgb(0, 0, 0, .2);
    top: 0px;
    left: 0px;
    border: 1px solid rgb(146, 138, 10, .5);
}

.services-archieve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}

.service-one-card-archieve::after {
    content: "";
    position: absolute;
    top: 14px;
    left: 25px;
    border: 1px solid var(--brand-color);
    height: 100%;
    width: 97%;
    z-index: -1;
    transition: all .7s;
}

.service-one-card-archieve:hover::after {
    background: rgb(0, 0, 0, .2);
    top: 0px;
    left: 0px;
    border: 1px solid rgb(146, 138, 10, .5);
}

.services-two {
    background-color: var(--body-text-color-two);
}

.services-three {
    background-color: var(--body-text-color-two);
}

.service-imag {
    overflow: hidden;
}

.service-imag img {
    transition: all 1s;
}

.service-one-card-archieve:hover .service-imag img {
    transform: scale(1.2);
}

.service-three-cards-container .owl-stage {
    left: 20px;
}

.service-two-cards-container .owl-carousel .owl-nav {
    display: flex;
    gap: 16px;
    position: absolute;
    top: 74%;
    right: 100%;
    width: 51%;
    transform: translateY(-74%);
}

.service-two-cards-container .owl-carousel .owl-nav button.owl-next {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.service-two-cards-container .owl-carousel .owl-nav button.owl-prev {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.service-two-cards-container .owl-carousel .owl-nav button.owl-next span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.service-two-cards-container .owl-carousel .owl-nav button.owl-prev span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.service-three-cards-container .owl-carousel .owl-nav {
    display: flex;
    gap: 16px;
    position: absolute;
    top: -200px;
    right: 0px;
}

.service-three-cards-container .owl-carousel .owl-nav button.owl-next {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.service-three-cards-container .owl-carousel .owl-nav button.owl-prev {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.service-three-cards-container .owl-carousel .owl-nav button.owl-next span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.service-three-cards-container .owl-carousel .owl-nav button.owl-prev span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.service-two-container {
    padding-left: 100px;
}


.service-one-card-one:hover,
.service-one-card-two:hover,
.service-one-card-three:hover,
.service-one-card-four:hover,
.service-one-card-five:hover,
.service-one-card-six:hover {
    background: #000;
    border: 2px solid var(--brand-color);
}

.service-one-card-container .owl-stage {
    left: -15px;
}

.service-one-card-container .owl-carousel .owl-nav {
    display: flex;
    gap: 16px;
    position: absolute;
    top: -180px;
    right: 0;
}

.service-one-card-container .owl-carousel .owl-nav button.owl-next {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.service-one-card-container .owl-carousel .owl-nav button.owl-prev {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.service-one-card-container .owl-carousel .owl-nav button.owl-next span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.service-one-card-container .owl-carousel .owl-nav button.owl-prev span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.service-two-card {
    padding: 70px 45px;
    background-color: var(--black-color);
    position: relative;
    overflow: hidden;
}

.service-two-cards-container .owl-stage {
    left: 50px;
}

.service-three-cards-container .service-two-card {
    overflow: inherit;
}

.service-two-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--body-text-color);
    transition: all .7s;
    transform: scale(0);
}

.service-three-cards-container .service-two-card .serivice-three-contents {
    position: relative;
    z-index: 2;
}

.service-three-cards-container .service-two-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--body-text-color);
    transition: all .7s;
    transform: scale(0);
}

.service-two-card:hover::after {
    transform: scale(1);
}

.service-two-card a {
    transition: all .7s;
}

.service-two-card p {
    transition: all .7s;
}

.service-two-card:hover p {
    transform: scale(0);
}

.service-two-card:hover a {
    transform: translateY(-100px);
}

.services-two .owl-carousel .owl-item img {
    width: 80px;
    height: 80px;
}

.service-two-stroke-text {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #f68c0a84;
}

.service-two-stroke-absolute {
    top: -20px;
    left: -20px;
    z-index: 10;
}

.service-details-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(180deg, #F68A0A 0%, rgba(246, 138, 10, 0) 100%);
    opacity: 0.5;
}

.service-two-number {
    font-size: 100px;
}

.service-two-top-paragraph {
    padding-right: 10%;
}

/* 7. Features css */
.features-one {
  background-color: #000;
}

.feature-one-box {
    position: relative;
    padding-left: 10px;
}

.feature-one-box::before {
    content: '';
    width: 1px;
    height: 60%;
    position: absolute;
    left: 0;
    top: 60%;
    transform: translateY(-50%);
    background-color: #fff;
}
#homeOneAbout.iab h3{font-weight: 700;}
#homeOneAbout.iab p{font-size: 16px;}
#homeOneAbout.iab {
  padding-bottom: 90px;
}
.about-one-subheading.l{margin-left:0px;}
.portfolio-details-contents-wrapper p{font-size: 16px;}
.feature-one-number-top {
    margin-left: -20px;
}

.features-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.features-play-icon:hover {
    transform: translateX(-50%) translateY(-50%) scale(1);
}

.feature-items {
    margin-top: 80px;
}

/* 8. Testimonial css */
.testimonial-one-slider-wrapper .owl-carousel .owl-nav {
    display: flex;
    gap: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -70px;
    flex-direction: column;
}

.testimonial-one-slider-wrapper .owl-carousel .owl-nav button.owl-next {
    width: 45px;
    height: 45px;
    padding: 0;
    line-height: 30px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
    transform: rotate(90deg);
}

.testimonial-one-slider-wrapper .owl-carousel .owl-nav button.owl-prev {
    width: 45px;
    height: 45px;
    padding: 0;
    line-height: 30px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
    transform: rotate(90deg);
}

.testimonial-one-slider-wrapper .owl-carousel .owl-nav button.owl-next span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.testimonial-one-slider-wrapper .owl-carousel .owl-nav button.owl-prev span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.testimonial-one-slider-wrapper .owl-carousel .owl-item img {
    width: 190px;
    height: 190px;
    margin: auto;
}

.testimonial-one-icon {
    max-width: 100%;
    height: 100px;
}

.testimonial-one-icon-heading {
    font-size: 20px;
    margin-top: 22px;
}

.testimonial-item-content {
    padding-left: 40px;
    padding-right: 0px;
}

/* 9. Team css */
.team-one-card-container {
    overflow: hidden;
}

.team-img img {
    width: 100% !important;
}

.team-one-card-carousel .owl-stage-outer {
    padding-bottom: 20px;
}

.team-one-card-carousel .owl-stage {
    padding-left: 0 !important;
}

.team-one-card-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-right: 20px;
    padding-bottom: 20px;
}

.team-two-card-info {
    padding-top: 150px;
}

.team-two-card-info p {
    color: #C1C1C1;
}

.team-one-item {
    transform: translate3d(0, 0, 0);
}

.team-one-card-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.team-one-card-info p {
    color: #C1C1C1;
    margin-top: 5px;
}

.team-member-details .member-details-social a {
    transition: all .3s;
}

.team-member-details .member-details-social a:hover {
    transform: scale(1.2);
}

.team-member-details {
    width: 100%;
    height: 100%;
    background-color: #10101089;
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity .8s;
}

.team-member-details-second {
    width: 90%;
    height: 85%;
    background-color: #10101089;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding: 30px;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity .8s;
}

.team-one-item:hover .team-member-details {
    visibility: visible;
    opacity: 1;
}


.team-one-item::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 15px;
    left: 15px;
    border: 1px solid #484639;
    z-index: -1;
}

.team-details-wrapper {
    margin-top: 77px;
}

/* 10. Video css */
.intro-video-one-container {
    padding-left: 300px;
}

.video-thumbnail-container {
    padding: 300px 0px;
    background-image: url(../img/New/new-ban2.jpg);
}

.video-thumbnail-two-container {
    padding: 220px 0px;
    background-image: url(../img/introVideoBg.jpg);
}

.intro-video-animation {
    position: relative;
    display: inline-block;
    font-size: 24px;
    line-height: 54px;
    text-align: center;
    border-radius: 50%;
}

.features-video-animation {
    display: inline-block;
    font-size: 24px;
    line-height: 54px;
    text-align: center;
    border-radius: 50%;
}

.intro-video-animation:before {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    position: absolute;
    box-shadow: 0 0 0 0 hsla(32, 100%, 68%, 0.6);
    -webkit-animation: ripple-data-v-4f288fb2 3s infinite;
    animation: ripple-data-v-4f288fb2 3s infinite;
    transition: all .4s ease;
}

.features-video-animation:before {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    position: absolute;
    box-shadow: 0 0 0 0 hsla(32, 100%, 68%, 0.6);
    -webkit-animation: ripple-data-v-4f288fb2 3s infinite;
    animation: ripple-data-v-4f288fb2 3s infinite;
    transition: all .4s ease;
}

.intro-video-animation:after {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    position: absolute;
    box-shadow: 0 0 0 0 hsla(32, 100%, 68%, 0.6);
    -webkit-animation: ripple-data-v-4f288fb2 3s infinite;
    animation: ripple-data-v-4f288fb2 3s infinite;
    transition: all .4s ease;
    animation-delay: .6s;
}

.features-video-animation:after {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    position: absolute;
    box-shadow: 0 0 0 0 hsla(32, 100%, 68%, 0.6);
    -webkit-animation: ripple-data-v-4f288fb2 3s infinite;
    animation: ripple-data-v-4f288fb2 3s infinite;
    transition: all .4s ease;
    animation-delay: .6s;
}

.intro-video-title {
    padding-right: 8%;
}

/* 11. Blog css */
.blogs-one {
    margin-right: 0;
    width: 100%;
}

.blog-one-heading {
    padding-right: 10%;
}

.blogs-one-cards-container .owl-carousel .owl-nav {
    display: flex;
    gap: 16px;
    position: absolute;
    top: 50%;
    right: 100%;
    width: 52%;
    transform: translateY(-50%);
}

.blogs-one-cards-container .owl-carousel .owl-nav button.owl-next {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid #484639;
    border-radius: 50%;
}

.blogs-one-cards-container .owl-carousel .owl-nav button.owl-prev {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid #484639;
    border-radius: 50%;
}

.blogs-one-cards-container .owl-carousel .owl-nav button.owl-next span {
    color: #484639;
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.blogs-one-cards-container .owl-carousel .owl-nav button.owl-prev span {
    color: #484639;
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.blogs-two-cards-container .owl-carousel .owl-nav {
    display: flex;
    gap: 16px;
    position: absolute;
    top: -180px;
    right: 0px;
}

.blogs-two-cards-container .owl-carousel .owl-nav button.owl-next {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.blogs-two-cards-container .owl-carousel .owl-nav button.owl-prev {
    width: 74px;
    height: 74px;
    padding: 0;
    line-height: 40px;
    border: 1px solid var(--brand-color);
    border-radius: 50%;
}

.blogs-two-cards-container .owl-carousel .owl-nav button.owl-next span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.blogs-two-cards-container .owl-carousel .owl-nav button.owl-prev span {
    color: var(--brand-color);
    font-size: 45px;
    font-weight: 400;
    padding: 0;
}

.blog-archieve-card-title {
    font-size: 32px;
}

.blog-sidebar-search-input {
    padding: 12px 30px;
    border-radius: 0;
    border-right: 0;
}

.blog-sidebar-search-icon {
    border-radius: 0;
    border-width: .8px .8px .8px 0px;
    border-color: #dee2e6;
    background-color: transparent;
    color: var(--black-color);
}

.blog-sidebar-search-icon:hover {
    background-color: transparent;
    border-color: #dee2e6;
    color: var(--black-color);
}

.blog-author-social i {
    font-size: 24px;
    color: var(--black-color);
}

.author-details {
    padding: 70px 55px;
    background: #F4F3F1;
}

.sidebar-category-item {
    transition: all .3s;
}

.sidebar-category-item a:hover {
    text-decoration: underline;
    color: var(--brand-color);
}

.popular-tags p {
    transition: all .3s;
    cursor: pointer;
}

.popular-tags p:hover {
    color: var(--brand-color);
}

.blockquote-container {
    padding: 40px;
    margin: 75px 90px 75px 90px;
    border-width: 1px 0px 1px 0px;
    border-color: var(--body-text-color);
    border-style: solid;
}

.blog-comment-heading {
    font-size: 32px;
    color: var(--black-color);
    font-weight: 700;
    line-height: 1.3em;
}

.blog-thanks-text p {
    position: relative;
    display: flex;
}

.blog-thanks-text p::after {
    content: '';
    height: 1px;
    width: 100%;
    background-color: #f68a0a33;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 50px;
}

.bottom-gradient-divider {
    position: relative;
}

.bottom-gradient-divider::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 15px;
    width: 94%;
    height: 1px;
    background: linear-gradient(90deg, #F68A0A 0%, rgba(246, 138, 10, 0) 100%);
    opacity: 0.5;
}

.blog-details-page-banner-wrapper {
    margin-top: 37px;
}

/* 12. Projects css */
.projects-text-stroke {
    writing-mode: vertical-rl;
    white-space: nowrap;
    -webkit-text-fill-color: white;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #53535366;
    transition: all .4s;
    position: absolute;
    top: 50%;
    left: -80px;
    transform: translateY(-50%) rotate(-180deg);
}

.projects-one-item {
    position: relative; margin-bottom: 45px;
}
.projects-one-item h6{margin: 13px 0px 7px;}
.projects-one-item h6 a{font-size: 24px; font-weight: 600;}
.projects-one-item p{font-size: 17px;
  line-height: 24px;
  color: #222 !important;}
.projects-one-item p.loc{margin-top: 11px;
  text-transform: uppercase;
  font-size: 13px;}
.projects-text-stroke:hover {
    -webkit-text-stroke-color: var(--brand-color);
}

.project-btn {
    position: absolute;
    right: 2px;
    bottom: 0px;
    z-index: 1;
    opacity: 0;
    transition: all 1s;
    background: transparent;
    color: #fff;
    border: 0;
    z-index: 3;
}

.project-img-ontainer {
    position: relative;
    transition: all .5s;
    width: fit-content;
}

.project-img-ontainer img:hover {
    transform: scale(1);
}

.project-img-ontainer::after {
    content: '';
    position: absolute;
    width: 223px;
    height: 0%;
    bottom: 0;
    right: 0;
    background-color: #e4d8cc;
    transition: all .5s;
    border-top-left-radius: 130%;
    z-index: 2;
}

.project-img-ontainer:hover::after {
    height: 150px;
}

.project-img-ontainer:hover .project-btn {
    bottom: 36px;
    color: #000 !important;
    opacity: 1;
}

.project-img-ontainer {
    position: relative;
}

.project-img-ontainer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 1;
    transition: all .7s;
}

.project-img-ontainer:hover::before {
    background-color: #10101047;
}

.home-one-portfolio-first-img {
    width:100%;
}

.home-one-portfolio-second-img {
    width: 565px;
    height: 690px;
}

.home-one-portfolio-third-img {
    width: 655px;
    height: 440px;
}

.home-one-portfolio-fourth-img {
    width: 520px;
    height: 770px;
}

.home-one-portfolio-fifth-img {
    width: 605px;
    height: 440px;
}

.home-one-portfolio-sixth-img {
    width: 565px;
    height: 695px;
}

.portfolio-cta-btn {
    margin-top: 100px;
}

/* 13. Experience css */
.experience-contact-number {
    font-size: 32px;
}

/* 14. Footer css */
.footer-one {
  padding: 60px 0px 0px;
  background-color: #f1e2d7;
}

.footer-one ul li a {
    transition: all .3s;
    color: #fff;
}

.footer-one ul li a:hover {
    color: var(--brand-color)
}

.footer-address {
    color: #C1C1C1; 
    font-size: 16px;
  font-weight: 500;
}

.footer-copyright-text {
    color: #C1C1C1;
}

.footer-email {
    font-size: 25px;
    margin:20px 0px;
}
.footer-one h3{font-size: 27px;
  font-weight: 700;
  margin-bottom: 25px;}
.footer-one .logo img{max-width: 150px;}
.cw-col{
    background: #dac7ba;
    padding: 15px 0px;
}




/* 15. Why Choose Us css */
.why-choose-right-col {
    background-color: var(--body-text-color-two);
    padding-left: 100px;
    padding-right: 5%;
}

.why-choose-us-two {
    background-color: var(--black-color);
}

.why-choose-item-first {
    width: 80%;
}

.why-choose-left-col {
    background-image: url(../img/whyChooseImg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.why-choose-subheading {
    padding-left: 115px;
}

.why-choose-subheading::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 2px;
    width: 100px;
    background-color: var(--brand-color);
}

/* 16. Page title carousel css */
.page-title-stroke {
    -webkit-text-fill-color: white;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--body-text-color);
}

.title-carousel .owl-carousel.owl-theme .owl-item {
    width: fit-content !important;
}

/* 17. Work together css */
.work-together {
    padding: 220px 0px;
    background: url(../img/workTogetherBg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.work-together-content-wrapper {
    padding: 0% 25%;
}

/* 18. Purposes css */
.purposes-paragraph {
    color: var(--body-text-color-two);
    padding-right: 10%;
}

/* 19. FAQ css */
.accordion-item-heading {
    font-size: 20px;
}

.services-faq .accordion-item,
.service-details-faq .accordion-item {
    border: 1px solid rgba(83, 83, 83, 0.1);
    border-radius: 0px;
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    box-shadow: none;
}

.service-details-faq .accordion-item .accordion-button {
    justify-content: space-between;
}

.services-faq .accordion-item .accordion-button {
    display: flex;
    justify-content: space-between;
}

.services-faq .accordion-item .accordion-button::after {
    margin-left: 5%;
}

.services-details-info-top-paragraph {
    padding-right: 10%;
}

/* 20. Inner Page Banner css */

.inner-page-banner {
    background-image: url("../img/innerPageBannerBg.jpg");
    background-blend-mode: overlay;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; padding: 55px 0px;
    position:relative;
    z-index:1;
}
.inner-page-banner:after{
    content:"";
    position:absolute;
    top:0px;
    width:100%;
    height:100%;
    background:#342b246e;
    z-index:-1;
}

.inner-page-banner-wrapper h2 {
            color: #fff;
    font-weight: 600;
}

/* 21. Portfolio css */
.portfolio-text-stroke {
    white-space: nowrap;
    -webkit-text-fill-color: white;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--body-text-color);
}

.portfolio-details-contnts-right {
    padding-left: 8%;
}

/* 22. Contact css */
.contact-container {
    padding-left: calc((100% - 1320px)/2);
    margin-left: 25px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--black-color);
}

.contact-info-icon i {
    font-size: 28px;
}

.contact-info-wrapper h4 {
    font-size: 26px;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 600;
}
.contact.ct {
  padding-top: 55px;
}
.features-one .feature-items {
  margin-top: 30px;
  margin-bottom: 20px;
}

.contact-form-heading {
    font-size: 32px;
}

.contact-page-form input,
.contact-page-form textarea {
    padding: 12px 20px;
    border-width: 0px 0px 1px 0px;
    border-color: var(--black-color);
    border-style: solid;
    border-radius: 0;
}

.contact-location-map iframe {
    width: 100%;
    margin-bottom: -5px;
}

/* 23. Animations */
@keyframes upDownSlow {
    0% {
        transform: translateY(10%);
    }

    50% {
        transform: translateY(-10%);
    }

    100% {
        transform: translateY(10%);
    }
}

.upDown-animation-slow {
    animation-name: upDownSlow;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes upDownFast {
    0% {
        transform: translateY(30%);
    }

    50% {
        transform: translateY(-30%);
    }

    100% {
        transform: translateY(30%);
    }
}

.upDown-animation-fast {
    animation-name: upDownFast;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes spinAnimate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.spin-animation-slow {
    animation-name: spinAnimate;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes upDownLeft {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.up-down-left-fast {
    animation-name: upDownLeft;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes zoomBG {
    0% {
        background-size: 100% 100%;
    }

    100% {
        background-size: 150% 150%;
    }
}

.bg-img-zoom {
    animation-name: zoomBG;
    animation-duration: 20s;
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
}

@keyframes PlayScaleAnimate {
    0% {
        transform: scale(1) translateX(-50%) translateY(-50%);
    }

    50% {
        transform: scale(1.1) translateX(-50%) translateY(-50%);
    }

    100% {
        transform: scale(1) translateX(-50%) translateY(-50%);
    }
}

.icon-scale {
    animation-name: PlayScaleAnimate;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes BgZoomInOut {
    0% {
        background-size: 100% 100%;
    }

    50% {
        background-size: 110% 110%;
    }

    100% {
        background-size: 100% 100%;
    }
}

.bg-zoom-in-out {
    animation-name: BgZoomInOut;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes ripple-data-v-60784e0a {
    70% {
        box-shadow: 0 0 0 40px hsla(0, 0%, 100%, 0)
    }

    to {
        box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0)
    }
}

@keyframes ripple-data-v-4f288fb2 {
    70% {
        box-shadow: 0 0 0 40px hsla(0, 0%, 100%, 0)
    }

    to {
        box-shadow: 0 0 0 0 hsla(0, 0%, 100%, 0)
    }
}

@keyframes fadeInOutMove {
    0% {
        opacity: 1;
        transform: translateY(0px);
    }

    50% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.element-fade-in-out-move {
    animation-name: fadeInOutMove;
    animation-duration: 4s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* 24. Preloader css */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: #222222;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

#preloader-inner {
    width: 150px;
    height: 150px;
    background: url('https://smanik.co.in/kamyaa/img/New/Kamyaa-White-Logo.png') no-repeat center center;
    background-size: contain;
    animation: logoBounce 2s ease-in-out infinite;
}

@keyframes logoBounce {
    0% {
        transform: scale(0.9) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1) rotate(5deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.9;
    }
}


/*#preloader #preloader-inner:before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 5px;*/
/*    left: 5px;*/
/*    right: 5px;*/
/*    bottom: 5px;*/
/*    border-radius: 50%;*/
/*    border: 3px solid transparent;*/
/*    border-top-color: var(--brand-color);*/
/*    animation: spin 2s linear infinite*/
/*}*/

/*#preloader #preloader-inner:after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 15px;*/
/*    left: 15px;*/
/*    right: 15px;*/
/*    bottom: 15px;*/
/*    border-radius: 50%;*/
/*    border: 3px solid transparent;*/
/*    border-top-color: var(--bs-white);*/
/*    animation: spin 1.5s linear infinite*/
/*}*/

/*@keyframes spin {*/
/*    0% {*/
/*        transform: rotate(0deg)*/
/*    }*/

/*    to {*/
/*        transform: rotate(1turn)*/
/*    }*/
/*}*/


/*customize code*/
.testimonial-item-content h3 {
    font-size: 30px;
    line-height: 38px;
}

.featured-img {
  width: 500px;
  height: 190px;
  border-radius: 30px;
}



/*updates*/

/*Menu*/


.submenu-container li a{
    color: var(--brand-color) !important;
}

.offcanvas-body ul li a {
  color: #484639 !important;
}

/*Banner*/

.banner-onecontents h1{
    font-size: 65px;
    margin-bottom: 30px !important;
}



.floating-social-icon a {
  color: #fff !important;

}

/*Home*/

#homeOneAbout h2 {
  font-weight: 800;
  font-size: 65px;
}

#homeOneAbout h2 span {
  color: #423d3d !important;
}

#homeOneAbout h3 {
  font-size: 35px;
  font-weight: 500;
}

.about-one-bottom {
  margin-top: 50px;
}

.about-one-second-text-box {
  margin-top: 45px;
}

.count-one {
  background: #fff0f0;
}

.count-one h4 {
  font-size: 20px;
}

.count-one h1 {
  font-size: 40px;
}


/*Services*/

.services-one {
  background: #e4d8cc !important;
}
.services-one h2 span {
  color: #000 !important;
}

/*Featured*/

.features-one h2 {
  font-size: 35px;
}

.features-one p {
  margin-top: 10px;
}

.brand-text {
  color: #484639 !important;
}

/*Testimonials*/

.testimonial-item-content h3 {
  font-size: 25px;
  line-height: 38px;
  font-weight: 300;
}

/*Team*/

.team-one {
  background: #e4d8cc !important;
}

.team-one h2{
    text-align: center;
}

.team-one .team-one-card-container {
  margin-top: 45px;
}

/*intro*/

.intro-video-one h2 {
  margin-bottom: 32px;
  padding-right: 0 !important;
}

/*Projects*/

.projects-one h2 span {
  font-size: 45px !important;
}


/*Footer*/

.footer-one h2, h6, p , ul li a{
    color: var(--brand-color) !important;
}

.footer-one .dark-btn {
  background: #484639 !important;
}

/*End updates*/

/*Mobile Css*/

@media only screen and (max-width: 769px) {
    
.footer-one .logo img {
    max-width: 115px;
}
.footer-one h3{
    margin-bottom:20px;
}
.footer-address{
    font-size:16px!important;
}
    .banner-onecontents h1 {
      font-size: 35px;
    }
    
    .banner-onecontents p {
      font-size: 15px;
    }
    
    .banner-onecontents .brand-btn {
        padding: 20px 30px;
    }
    
    /*About*/
    
    #homeOneAbout {
      padding: 40px 0;
    }

    #homeOneAbout h2 {
        font-size: 25px;
    }
    
     .about-one-first-text-box {
        margin-top: 15px !important;
      }
      
      #homeOneAbout h2 {
        font-size: 36px !important;
      }
      
    .about-one-first-text-box {
        margin-top: 10px;
      }
    
    #homeOneAbout .abt-h3{
        padding-top: 15px;
    }


/*Project    */


    .projects-one {
      padding-top: 35px;
    }
    
      .projects-one-item {
        margin-top: 20px;
      }
      
      
    /*Count*/
    
    .count-one {
  padding: 30px 0;
}

    .count-one .row {
  padding-left: 20px !important;
}
      .count-one .counter-container h1 {
        font-size: 32px !important;
      }
      
      .count-one .counter-container h4 {
        font-size: 15px !important;
      }
  
  
    /*Projects*/
    
    
     .projects-one-item {
        margin-top: 0px !important;
      }
      
      .projects-one .project-h2 {
          font-size: 28px;
          padding-bottom: 16px;
        }
      
      .services-one {
      padding: 30px 0 !important;
    }
  
  /*Testimonials*/
  
       .testimonial-one h3 {
          font-size: 18px !important;
          line-height: 30px;
          text-align: justify;
        }
        
        .testimonial-one-slider-wrapper img {
          width: 80px !important;
          height: 80px !important;
        }
        
    /*Team*/

        .team-one h2 {
          font-size: 31px;
        }
        
          .team-one .about-one-first-text-box {
            margin-top: 24px;
          }
          
          .team-one .about-one-first-text-box p {
            font-size: 14px;
            text-align: justify;
          }
  
  /*Intro*/
  
      .intro-video-one h2 {
          font-size: 20px !important;
        }
        
        .blogs-one h2 {
            font-size: 32px !important;
            padding-right: 0 !important;
            margin-bottom: 22px !important;
          }
        
       .footer-one .dark-btn {
          padding: 8px 35px !important;
          margin-right: 10px !important;
         }
         
         .footer-one{
             padding-bottom: 40px !important;
             padding-top:30px;
         }
         .footer-one .gap-4 {
            gap: 15px;
        }
         
         
}

.about .nav-secondary .nav-menu ul li a{
    color:#000!important;
  font-weight: 600;
}
.about-intro-video-one{
    background:#fff0f0;
}

/*.dark-header:hover {*/
/*    background: #48463994;*/
/*    transition: all 0.3s ease-in;*/
/*}*/
.dark-header {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    transition: all 0.3s 
ease-in;
background:#f1e2d7;
}
header.about{
    background: #f1e2d7;
}
#carouselExampleIndicators{
    top:50px;
}
#carouselExampleIndicators .carousel-indicators [data-bs-target]{
        background-color: #342b24;
}

/* category section css*/

        .cate_section a {
            text-decoration: none;
            color: #000;
            display: block;
            overflow: hidden;
        }

        .cate_box img {
            width: 100%;
           
             transition: all 0.3s ease;
        }

.cate_content {
    position: absolute;
    bottom: 10px;
    left: 12px;
    color: #fff;
    background: #000000a3;
    padding: 10px 15px;
    border-radius: 5px;
}

        .cate_box {
            position: relative;
            margin-bottom: 8px;
            overflow: hidden;
        }
        
        .cate_box img:hover{
            transform: scale(1.05);
        }

        .cate_content h3 {
            font-size: 20px;
            font-weight: 600;
        }
        .cate_content p {
            font-size: 15px;
            line-height: 30px;
            color: #fff !important;
            border-bottom: 2px solid #fff;
            width: 82px;
        }
        
        .cate_box p {
          position: relative;
          overflow: hidden;
          color: #000;
          z-index: 1;
        }
        
        .cate_box p::before {
          content: '';
          position: absolute;
          bottom: -100%;
          left: 0;
          width: 100%;
          height: 100%;
          background: #000;
          transition: all 0.4s ease;
          z-index: -1;
        }
        
        .cate_box p:hover::before {
          bottom: 0;
        }
        
        .cate_box p:hover {
          color: #fff;
        }

/*category css end*/

/*dining section css*/

    .slide_Dinning {
        padding: 30px 0;
    }

    .slide_content h2 {
    font-size: 25px;
    line-height:32px;
}

.slide_content2 h2 {
    font-size: 29px;
    margin-bottom: 15px;
    text-align: end;
    line-height:45px;
}

.slide_content2 {
    padding: 0 20px;
}

.slide_content2 p {
    text-align: end;
    font-size: 16px;
    line-height: 1.9;
}

.slide_content2 a {
    display: block;
    margin-top: 15px;
    font-size: 20px;
    text-decoration: underline;
    text-align: end;
}

.slide_content h2 {
    font-size: 30px;
    margin-bottom: 15px;
    line-height:45px;
}

.slide_content p {
    text-align: left;
    font-size: 16px;
    line-height: 1.9;
}

.slide_content a {
    display: block;
    margin-top: 15px;
    font-size: 20px;
    text-decoration: underline;
}

.slide_content {
    padding: 0px 25px;
}

.custom-carousel-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid black;
    background-color: transparent;
    opacity: 1;
    transition: 0.3s ease;
    z-index: 10;
}

.custom-carousel-btn .carousel-control-prev-icon,
.custom-carousel-btn .carousel-control-next-icon {
    filter: invert(1);
    width: 22px;
}

.custom-carousel-btn:hover {
    background-color: #00000075;
}

.custom-carousel-btn:hover .carousel-control-prev-icon,
.custom-carousel-btn:hover .carousel-control-next-icon {
    filter: invert(0); 
}


.custom-prev {
    right: 40px;
    left: auto;
    top: 35%;
    position: absolute;
    display: none;
}

.custom-next {
    right: 40px;
    left: auto;
    top: 55%;
    position: absolute;
    display: none;
}


@media(max-width: 768px){
    #carouselExampleIndicators{
    top:0px;
}
    .slide_content {
    padding: 25px 15px 10px;
}

.slide_content h2{
    font-size: 21px;
}

.slide_content a{
       font-size: 16px;
}
.slide_content2{
    padding: 0 15px 10px;
}
.slide_content2 h2{
    font-size: 21px;
    text-align: start;
    margin-top: 20px;
    line-height:32px;
}
.slide_content2 p{
    text-align:left;
}
}

@media(max-width: 665px){
    .custom-carousel-btn{
    width: 50px;
    height: 50px;
    }
    
    .custom-prev{
        top: 40px;
    }
    
    .custom-next{
      top: 125px;
    }
}

 /*Dinning slider-2*/
 
.custom-carousel-btn-2 {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid black;
    background-color: transparent;
    opacity: 1;
    transition: 0.3s ease;
    z-index: 10;
}

.custom-carousel-btn-2 .carousel-control-prev-icon,
.custom-carousel-btn-2 .carousel-control-next-icon {
    filter: invert(1);
    width: 22px;
}

.custom-carousel-btn-2:hover {
    background-color: #00000075;
}

.custom-carousel-btn-2:hover .carousel-control-prev-icon,
.custom-carousel-btn-2:hover .carousel-control-next-icon {
    filter: invert(0); 
}


.custom-prev-2 {
    right: auto;
    left: 40px;
    top: 35%;
    position: absolute;
    display: none;
}

.custom-next-2 {
    right: auto;
    left: 40px;
    top: 55%;
    position: absolute;
    display: none;
}

@media(max-width: 665px){
    .custom-carousel-btn-2{
    width: 50px;
    height: 50px;
    }
    
    .custom-prev-2{
        top: 40px;
    }
    
    .custom-next-2{
      top: 125px;
    }
}

/*dining section End*/

/*Sofa section css*/

.slide_Dinning-2{
    padding:30px 0;
}

.sofa-category img {
    width: 100%;
}

.sofa-content h2 {
    font-size: 25px;
    margin-bottom: 10px;
}

.sofa-content p {
    text-align: justify;
    font-size: 14px;
    line-height: 1.9;
}

.sofa-content {
    padding: 0 25px;
}

.sofa-content a {
    display: block;
    margin-top: 12px;
    text-decoration: underline;
}

@media(max-width: 768px){
    .sofa-content {
    padding: 25px 10px;
}
}
/*Sofa section end*/


/*Bed section css*/

.slide_Dinning-3{
    padding:30px 0;
}

.bed-category img {
    width: 100%;
}

.bed_content h2 {
    font-size: 25px;
    margin-bottom: 10px;
}

.bed_content p {
    text-align: justify;
    font-size: 14px;
    line-height: 1.9;
}

.bed_content a {
    display: block;
    margin-top: 12px;
    text-decoration: underline;
}

.bed_content {
    padding: 0 25px;
}

@media(max-width: 768px){
    .bed_content {
    padding: 25px 10px;
}
}
/*Bed section end*/


 /*sustainability Section css*/
 
 .handcraft_img img {
    width: 100%;
}

.handcraft_section {
    margin-bottom: 20px;
    padding-top: 40px;
}

.handcraft_heading {
    margin-bottom: 10px;
    padding-bottom: 20px;
}
 
    .handcraft_heading h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

.handcraft_heading p {
    margin: auto;
    font-size: 17px;
    line-height: 1.8;
}

.handcraft_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: #f1e2d7;
}
.handcraft_content h2{
    font-size:40px;
}

.handcraft_content p {
    font-size: 20px;
    text-align: center;
    line-height: 1.9;
    padding: 14px 40px;
}

.handcraft_content a {
    text-decoration: underline;
    font-size: 18px;
}

@media(max-width:768px){
    .handcraft_heading{
        margin-bottom: 0px;
        padding-bottom: 5px;
    }
    .handcraft_heading h2{
        font-size: 25px;
        padding-left:15px;
        text-align:left;
        line-height:32px;
    }
    
   .handcraft_heading p {
    font-size: 16px;
    text-align: justify;
    padding: 10px 15px;
}
.handcraft_content h2{
    font-size:20px;
}
    .handcraft_content p{
    font-size: 16px;
    text-align: left;
    padding: 15px 0px 0px 0px !important;
    
    }
    
    .handcraft_content{
        padding: 25px 15px;
        display:block;
     
    }
    
    .handcraft_content a{
        font-size: 16px;
        display: block;
        padding: 15px 0px;
        text-align:center;
    }
}

.smart_content a {
    display: block;
    margin-top: 15px;
    font-size: 20px;
    text-decoration: underline;
    text-align: end;
}

.smart-furniture {
    padding: 35px 0;
}

.smart_head h2 {
    text-align: left;
    font-size: 40px;
    font-weight: 700;
}

.smart_head {
    padding: 20px 90px;
}
.smart_content {
    padding: 40px 15px 0px;
}

.smart_img img {
    width: 100%; box-shadow: rgba(0, 0, 0, 0.3) 5px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}


#slider-0 {
    box-shadow: rgba(0, 0, 0, 0.3) 5px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.smart_head p {
    text-align: left;
    font-size: 17px;
    padding: 10px 0;
    line-height: 1.8;
}

.smart_content h2 {
    font-size: 30px;
    margin-bottom: 10px;
    text-align: end;
    line-height:45px;
}

.smart_content p {
    font-size: 17px;
    line-height: 1.9;
    text-align: end;
}

.smart_content {
    padding: 10px 15px;
}

  /*sustainability End*/
  
  
  /*craftmanship section css*/
  
  .craftmanship {
    padding: 30px 0;
}
  
  .craft_heading {
    padding: 20px 50px;
}

  .craft_img img{
      width:100%;
  }
  
  .craft_img {
    position: relative;
}

.read_btn {
    position: absolute;
    left: 10px;
    bottom: 10px;
    color: #fff;
    padding: 5px 10px;
    font-size: 16px;
}
  
  .craft_heading h2 {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
}
.craft_heading p {
    font-size: 17px;
    text-align: left;
    padding: 10px 0;
    max-width: 800px;
    margin-left: 265px;
}
 
  
  /*craftmanship section end*/
  
  .accessories_section {
    padding: 70px 0;
}
  
  .accessories_section h2 {
    font-size: 40px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
}
  
  .accessories_main{
      text-align:center;
  }
  
  .accessories_main img {
    width: 100%;
}

 .accessories_main h6 {
        border: 1px solid #000;
        display: inline-block;
        padding: 8px 12px;
        margin-top: 20px;
    }
    
.accessories_main h6:hover {
    background: #000000a8;
    color: #fff !important;
}

.our-services {
    padding: 120px 0 30px;
}

.services_content h2 {
    font-size: 42px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
}

.services_content p {
    text-align: center;
    font-size: 20px;
    line-height: 1.8;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 8 8'%3E%3Cpath d='M4.854 1.146a.5.5 0 0 1 0 .708L2.707 4l2.147 2.146a.5.5 0 0 1-.708.708l-2.5-2.5a.5.5 0 0 1 0-.708l2.5-2.5a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 8 8'%3E%3Cpath d='M3.146 1.146a.5.5 0 0 1 .708 0l2.5 2.5a.5.5 0 0 1 0 .708l-2.5 2.5a.5.5 0 0 1-.708-.708L5.293 4 3.146 1.854a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}



/*About page tabs*/
.why-we {
    margin-top: 30px;
}
.choose-quote-tabs {
    border-top: 1px solid #212529;
    border-bottom: 1px solid #212529;
    margin: 40px auto 40px auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0px 50px;
    gap: 20px
}
.choose-quote-wrapper .tab-content{
    margin-bottom:30px;
}
.intro {
    position: relative;
}
.intro:after {
    position: absolute;
    content: "";
    width: 80px;
    height: 80px;
    top: -18px;
    left: -75px;
    background-image: url(https://www.smanik.co.in/sangraha_laravel/public/assets/img/chair.png);
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-14deg);
    opacity: 0.7;
    animation-name:moveChir;
      animation-duration: 2s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
@keyframes moveChir {
  0% {
    transform: rotate(-14deg);
  }

  100% {
    transform: rotate(0deg);
  }
}
.intro p {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 15px;
    font-style: italic;
}
.tb-img-bx img {
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    border-radius:5px;
}
.sec-title {
    margin-bottom: 20px;
    font-weight: 700;
    color: #101010;
}
.title-area p {
    margin-bottom: 15px;
    font-weight:500;
    line-height:28px;
}

.oc {
    margin-top: 60px;
}
.title-area.oc .sec-title {
    margin-bottom: 0px;
}
.count-bx {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content:center;
    margin:30px 0px;
}
.team-bx{
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}
.team-bx .team-one-item {
    flex: 1 0 22%;
}
.count-item {
    padding: 18px;
    text-align: center;
    min-height: 155px;
    border-radius: 10px;
    flex: 0 0 23%;
    box-shadow: #e4d8cc 1px 1px 8px 2px;
    background: #342b24;
}
.count-item img {
    width: 70px;
    filter: brightness(0) invert(1);
}
.Count-num {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px; color: #fff;
}
.count-item p{
    font-size: 16px;
    font-weight: 500;
    margin-top:10px;
    color: #fff !important;
}
.main-timeline5.c .timeline:before{display:none;}
.main-timeline5.c .timeline{position: relative;
  margin-top: 0px;
  width: 50%;
  padding: 15px;}
.main-timeline5.c{display: flex;
  flex-wrap: wrap;}
  .main-timeline5.c .timeline-content {
  width: 100%; margin: 0px; height: 100%;
  float: none;}
  .main-timeline5.c .timeline-content:before{display:none;}


/*new timeline*/

/*a{text-decoration:none}*/
/*h4{text-align:center;margin:30px 0;color:#444}*/
/*.main-timeline{position:relative}*/
/*.main-timeline:before{content:"";width:5px;height:100%;border-radius:20px;margin:0 auto;background:#242922;position:absolute;top:0;left:0;right:0}*/
/*.main-timeline .timeline{display:inline-block;margin-bottom:50px;position:relative}*/
/*.main-timeline .timeline:before{content:"";width:20px;height:20px;border-radius:50%;border:4px solid #fff;background:#ec496e;position:absolute;top:50%;left:50%;z-index:1;transform:translate(-50%,-50%)}*/
/*.main-timeline .timeline-icon{display:inline-block;width:130px;height:130px;border-radius:50%;border:3px solid #ec496e;padding:13px;text-align:center;position:absolute;top:50%;left:30%;transform:translateY(-50%)}*/
/*.main-timeline .timeline-icon i{display:block;border-radius:50%;background:#ec496e;font-size:64px;color:#fff;line-height:100px;z-index:1;position:relative}*/
/*.main-timeline .timeline-icon:after,.main-timeline .timeline-icon:before{content:"";width:100px;height:4px;background:#ec496e;position:absolute;top:50%;right:-100px;transform:translateY(-50%)}*/
/*.main-timeline .timeline-icon:after{width:70px;height:50px;background:#fff;top:89px;right:-30px}*/
/*.main-timeline .timeline-content{width:50%;padding:0 50px;margin:52px 0 0;float:right;position:relative}*/
/*.main-timeline .timeline-content:before{content:"";width:70%;height:100%;border:3px solid #ec496e;border-top:none;border-right:none;position:absolute;bottom:-13px;left:35px}*/
/*.main-timeline .timeline-content:after{content:"";width:37px;height:3px;background:#ec496e;position:absolute;top:13px;left:0}*/
/*.main-timeline .title{font-size:20px;font-weight:600;color:#ec496e;text-transform:uppercase;margin:0 0 5px}*/
/*.main-timeline .description{display:inline-block;font-size:16px;color:#404040;line-height:20px;letter-spacing:1px;margin:0}*/
/*.main-timeline .timeline:nth-child(even) .timeline-icon{left:auto;right:30%}*/
/*.main-timeline .timeline:nth-child(even) .timeline-icon:before{right:auto;left:-100px}*/
/*.main-timeline .timeline:nth-child(even) .timeline-icon:after{right:auto;left:-30px}*/
/*.main-timeline .timeline:nth-child(even) .timeline-content{float:left}*/
/*.main-timeline .timeline:nth-child(even) .timeline-content:before{left:auto;right:35px;transform:rotateY(180deg)}*/
/*.main-timeline .timeline:nth-child(even) .timeline-content:after{left:auto;right:0}*/
/*.main-timeline .timeline:nth-child(2n) .timeline-content:after,.main-timeline .timeline:nth-child(2n) .timeline-icon i,.main-timeline .timeline:nth-child(2n) .timeline-icon:before,.main-timeline .timeline:nth-child(2n):before{background:#f9850f}*/
/*.main-timeline .timeline:nth-child(2n) .timeline-icon{border-color:#f9850f}*/
/*.main-timeline .timeline:nth-child(2n) .title{color:#f9850f}*/
/*.main-timeline .timeline:nth-child(2n) .timeline-content:before{border-left-color:#f9850f;border-bottom-color:#f9850f}*/
/*.main-timeline .timeline:nth-child(3n) .timeline-content:after,.main-timeline .timeline:nth-child(3n) .timeline-icon i,.main-timeline .timeline:nth-child(3n) .timeline-icon:before,.main-timeline .timeline:nth-child(3n):before{background:#8fb800}*/
/*.main-timeline .timeline:nth-child(3n) .timeline-icon{border-color:#8fb800}*/
/*.main-timeline .timeline:nth-child(3n) .title{color:#8fb800}*/
/*.main-timeline .timeline:nth-child(3n) .timeline-content:before{border-left-color:#8fb800;border-bottom-color:#8fb800}*/
/*.main-timeline .timeline:nth-child(4n) .timeline-content:after,.main-timeline .timeline:nth-child(4n) .timeline-icon i,.main-timeline .timeline:nth-child(4n) .timeline-icon:before,.main-timeline .timeline:nth-child(4n):before{background:#2fcea5}*/
/*.main-timeline .timeline:nth-child(4n) .timeline-icon{border-color:#2fcea5}*/
/*.main-timeline .timeline:nth-child(4n) .title{color:#2fcea5}*/
/*.main-timeline .timeline:nth-child(4n) .timeline-content:before{border-left-color:#2fcea5;border-bottom-color:#2fcea5}*/
/*@media only screen and (max-width:1200px){.main-timeline .timeline-icon:before{width:50px;right:-50px}*/
/*.main-timeline .timeline:nth-child(even) .timeline-icon:before{right:auto;left:-50px}*/
/*.main-timeline .timeline-content{margin-top:75px}*/
/*}*/
/*@media only screen and (max-width:990px){.main-timeline .timeline{margin:0 0 10px}*/
/*.main-timeline .timeline-icon{left:25%}*/
/*.main-timeline .timeline:nth-child(even) .timeline-icon{right:25%}*/
/*.main-timeline .timeline-content{margin-top:115px}*/
/*}*/
/*@media only screen and (max-width:767px){.main-timeline{padding-top:50px}*/
/*.main-timeline:before{left:80px;right:0;margin:0}*/
/*.main-timeline .timeline{margin-bottom:70px}*/
/*.main-timeline .timeline:before{top:0;left:83px;right:0;margin:0}*/
/*.main-timeline .timeline-icon{width:60px;height:60px;line-height:40px;padding:5px;top:0;left:0}*/
/*.main-timeline .timeline:nth-child(even) .timeline-icon{left:0;right:auto}*/
/*.main-timeline .timeline-icon:before,.main-timeline .timeline:nth-child(even) .timeline-icon:before{width:25px;left:auto;right:-25px}*/
/*.main-timeline .timeline-icon:after,.main-timeline .timeline:nth-child(even) .timeline-icon:after{width:25px;height:30px;top:44px;left:auto;right:-5px}*/
/*.main-timeline .timeline-icon i{font-size:30px;line-height:45px}*/
/*.main-timeline .timeline-content,.main-timeline .timeline:nth-child(even) .timeline-content{width:100%;margin-top:-15px;padding-left:130px;padding-right:5px}*/
/*.main-timeline .timeline:nth-child(even) .timeline-content{float:right}*/
/*.main-timeline .timeline-content:before,.main-timeline .timeline:nth-child(even) .timeline-content:before{width:50%;left:120px}*/
/*.main-timeline .timeline:nth-child(even) .timeline-content:before{right:auto;transform:rotateY(0)}*/
/*.main-timeline .timeline-content:after,.main-timeline .timeline:nth-child(even) .timeline-content:after{left:85px}*/
/*}*/
/*@media only screen and (max-width:479px){.main-timeline .timeline-content,.main-timeline .timeline:nth-child(2n) .timeline-content{padding-left:110px}*/
/*.main-timeline .timeline-content:before,.main-timeline .timeline:nth-child(2n) .timeline-content:before{left:99px}*/
/*.main-timeline .timeline-content:after,.main-timeline .timeline:nth-child(2n) .timeline-content:after{left:65px}*/
/*}*/



/******************* Timeline Demo - 5 *****************/
.main-timeline5{overflow:hidden;position:relative}
.main-timeline5 .timeline{position:relative;margin-top:-56px}
.main-timeline5 .timeline:first-child{margin-top:0}
.main-timeline5 .timeline-icon,.main-timeline5 .year{margin:auto;position:absolute;top:0;left:0;bottom:0;right:0}
.main-timeline5 .timeline:after,.main-timeline5 .timeline:before{content:"";display:block;width:100%;clear:both}
.main-timeline5 .timeline:before{content:"";width:100%;height:100%;position:absolute;top:0;right:0;z-index:2}
.main-timeline5 .timeline-icon{width:210px;height:210px;border-radius:50%;border:25px solid transparent;border-top-color:#f44556;border-right-color:#f44556;z-index:1;transform:rotate(45deg)}
.main-timeline5 .year{display:block;width:110px;height:110px;line-height:110px;border-radius:50%;background:#fff;box-shadow:0 0 20px rgba(0,0,0,.4);font-size:30px;font-weight:700;color:#f44556;text-align:center;transform:rotate(-45deg)}
.main-timeline5 .timeline-content{width:35%;float:right;background:#aa846b;padding:30px 20px;margin:50px 0;z-index:1;position:relative;border-radius:10px;}
.main-timeline5 .timeline-content:before{content:"";width:20%;height:15px;background:#f44556;position:absolute;top:50%;left:-20%;z-index:-1;transform:translateY(-50%)}
.main-timeline5 .title{font-size:30px;font-weight:700;color:#fff;margin:0 0 15px}
.main-timeline5 .description, .main-timeline5.c .description{font-size:16px;color:#fff!important;line-height:28px;margin:0;font-weight:500;}
/*.main-timeline5 .timeline:nth-child(2n):before{box-shadow:8px 0 5px -5px rgba(0,0,0,.5) inset}*/
.main-timeline5 .timeline:nth-child(2n) .timeline-icon{transform:rotate(-135deg);border-top-color:#e97e2e;border-right-color:#e97e2e}
.main-timeline5 .timeline:nth-child(2n) .year{transform:rotate(135deg);color:#e97e2e}
.main-timeline5 .timeline:nth-child(2n) .timeline-content{float:left}
.main-timeline5 .timeline:nth-child(2n) .timeline-content:before{left:auto;right:-20%}
.main-timeline5 .timeline:nth-child(2n) .timeline-content,.main-timeline5 .timeline:nth-child(2n) .timeline-content:before{background:#aa846b}
.main-timeline5 .timeline:nth-child(3n) .timeline-icon{border-top-color:#13afae;border-right-color:#13afae}
.main-timeline5 .timeline:nth-child(3n) .year{color:#13afae}
.main-timeline5 .timeline:nth-child(3n) .timeline-content,.main-timeline5 .timeline:nth-child(3n) .timeline-content:before{background:#13afae}
.main-timeline5 .timeline:nth-child(4n) .timeline-icon{border-top-color:#105572;border-right-color:#105572}
.main-timeline5 .timeline:nth-child(4n) .year{color:#105572}
.main-timeline5 .timeline:nth-child(4n) .timeline-content,.main-timeline5 .timeline:nth-child(4n) .timeline-content:before{background:#105572}
@media only screen and (max-width:1199px){.main-timeline5 .timeline{margin-top:-103px}
.main-timeline5 .timeline-content:before{left:-18%}
.main-timeline5 .timeline:nth-child(2n) .timeline-content:before{right:-18%}
}
@media only screen and (max-width:990px){.main-timeline5 .timeline{margin-top:-127px}
.main-timeline5 .timeline-content:before{left:-2%}
.main-timeline5 .timeline:nth-child(2n) .timeline-content:before{right:-2%}
}
@media only screen and (max-width:767px){.main-timeline5 .timeline{margin-top:0;overflow:hidden}
.main-timeline5 .timeline:before,.main-timeline5 .timeline:nth-child(2n):before{box-shadow:none}
.main-timeline5 .timeline-icon,.main-timeline5 .timeline:nth-child(2n) .timeline-icon{margin-top:-30px;margin-bottom:20px;position:relative;transform:rotate(135deg)}
.main-timeline5 .timeline:nth-child(2n) .year,.main-timeline5 .year{transform:rotate(-135deg)}
.main-timeline5 .timeline-content,.main-timeline5 .timeline:nth-child(2n) .timeline-content{width:100%;float:none;border-radius:0 0 20px 20px;text-align:center;padding:25px 20px;margin:0 auto}
.main-timeline5 .timeline-content:before,.main-timeline5 .timeline:nth-child(2n) .timeline-content:before{width:15px;height:25px;position:absolute;top:-22px;left:50%;z-index:-1;transform:translate(-50%,0)}
}

/*new timeline*/

/*vision section*/
.vision-section{
    margin-bottom: 20px;
    padding-top: 40px;
}
.vision-head{
    margin-bottom: 10px;
    padding-bottom: 20px;
}
.vision-head h2{
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}
.vision-banner img{
        width: 100%;
}
.vision-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: #fff8f1;
}
.vision-content h3{
        font-size: 30px;
    margin-bottom: 10px;
    font-weight: 700;

}
.vision-content p{
    font-size: 20px;
    text-align: center;
    line-height: 1.9;
    padding: 14px 40px;
}
/*vision section-end*/

/*What we Offer*/
.wht-off-ul {
    list-style-type: disclosure-closed;
}
.wht-off-ul li {
    font-size: 18px;
    margin-bottom: 15px;
    color: #484639;
    font-weight: 400;
    font-family: 'Montserrat';
}
/*What we Offer*/


@media (max-width: 991px) {
    .choose-quote-tabs {
        padding: 0
    }
}

@media (max-width: 375px) {
    .choose-quote-tabs {
        gap: 0;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }
}

.choose-quote-tabs .nav-link {
    background-color: transparent;
    color: #212529;
    padding: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    position: relative;
    border-radius: 0;
    height: 57px;
    margin-right: 100px;
    padding-right: 100px;
    border: none;
    border-right: 1px solid #212529;
}

.choose-quote-tabs .nav-link:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: 1px solid transparent
}

@media (max-width: 1199px) {
    .choose-quote-tabs .nav-link {
        padding-right: 50px;
        margin-right: 50px
    }
}

@media (min-width:768px) and (max-width:992px){
    .vision-content {
    padding: 20px 0px;
}
.vision-content h3{
    font-size: 25px;
}
.vision-content p {
    font-size: 15px;
    line-height: 1.7;
    padding: 10px 30px;
}
.wht-off-ul li{
    font-size: 13px;
    margin-bottom: 8px;
}
}
@media (max-width: 991px) {
    .choose-quote-tabs .nav-link {
        font-size: 16px; line-height: 25px; 
    }
}

@media (max-width: 767px) {
    .smart_img img{
        box-shadow:none;
    }
        .smart_content p {
        font-size: 16px!important;
        text-align: left!important;
    }
    .choose-quote-tabs .nav-link {
        padding-right: 20px;
        margin-right: 20px
    }
	.main-timeline5.c .timeline{width:100%;}
	.main-timeline5.c .timeline-content, .main-timeline5.c .timeline:nth-child(2n) .timeline-content{border-radius: 10px;}
	
}

@media (max-width: 575px) {
    .choose-quote-tabs .nav-link {
        font-size: 14px;
        line-height: 20px;
        padding-right: 10px;
        margin-right: 10px
    }
}

.choose-quote-tabs .nav-link:after {
    content: '';
    height: 2px;
    background: var(--theme-color);
    width: 0;
    left: 0px;
    bottom: 0px;
    position: absolute;
    -webkit-transition: 0.4s all;
    transition: 0.4s all
}

.choose-quote-tabs .nav-link:hover,
.choose-quote-tabs .nav-link.active {
    background-color: transparent;
    border: none;
    border-right: 1px solid #212529;
    border-radius: 0;
    color: #ed7700;
}

.choose-quote-tabs .nav-link:hover:last-child,
.choose-quote-tabs .nav-link.active:last-child {
    border-right: 1px solid transparent
}

.choose-quote-tabs .nav-link:hover:after,
.choose-quote-tabs .nav-link.active:after {
    width: 200px
}


/*How we Work*/
.hw-wrk-sec {
    padding: 50px 0px;
    background: linear-gradient(to right, #fff8f2, #fddbce);
    background-image: url(https://img.freepik.com/premium-photo/furniture-interior-design-house-decor-concept-3d-rendering_35719-19473.jpg?w=1480);
    background-size: cover;
    background-position: bottom;
    position: relative;
    z-index: 1;
}
.hw-wrk-sec:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    background: #f1e2d7e6;
    z-index: -1;
}
.hw-title-sec h2 {
    font-size: 40px;
    font-weight: 700;
}

    .subtitle {
      color: #4b5563;
      font-size: 1.125rem;
      margin-top: 1rem;
    }

.number {
    font-size: 33px !important;
    display: inline-block;
    border: 1px solid;
    width: 50px;
    text-align: center;
    height: 50px;
    border-radius: 53%;
    line-height: 50px !important;
    font-weight: 700;
    position:relative;
    display:inline-block;
}

    .number span {
      display: inline-block;
      width: 10px;
      height: 10px;
      background-color: #f87171;
      border-radius: 50%;
      margin-bottom: 4px;
      position: absolute;
        top: 0px;
        right: 3px;
        transition:0.5s ease;
    }
    .step {
    margin-bottom: 0px;
    padding: 15px 20px;
    border: 1px solid #b6a99c;
    border-radius: 10px;
    height:100%;
}
    .step:hover .number span{
            background-color:#000;
    }

    .step h2 {
      font-size: 22px;
      font-weight: 700;
      margin: 1rem 0 0.75rem;
      display:inline-block;
      padding-left:10px;
    }

.step p {
    font-size: 18px;
    line-height: 1.6;
    margin-top:10px;
}
.hw-p {
    font-weight: 500;
}

    .main-image {
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }



/*why-choose*/
.chose-sec {
    padding: 60px 0px 70px;
    background-image: url(https://www.smanik.co.in/sangraha_laravel/public/assets/img/ptr.png);
    position: relative;
    z-index: 1;
}
.chose-sec:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    background: #ffffff96;
    z-index: -1;
}
.why-head-sec {
    text-align: center;
}
.why-head-sec h2{
    font-size: 40px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
}
.why-choose-cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid #e6d9cb;
    min-height: 220px;
    border-radius: 20px;
    margin-top: 20px;
    padding: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 12px;
    background:#fff;
}
.why-choose-cont img {
    width: 80px;
}
.why-choose-cont p {
    font-size: 16px;
    margin-top: 20px;
}







@media (max-width: 767px) {

    .choose-quote-tabs .nav-link:hover:after,
    .choose-quote-tabs .nav-link.active:after {
        width: 100px
    }
    .main-image{
        width:100%;
    }
}

@media (max-width: 575px) {

    .choose-quote-tabs .nav-link:hover:after,
    .choose-quote-tabs .nav-link.active:after {
        width: 50px
    }
}
/*About page tabs*/

.team-img-bx{
    position:relative;
}
.team-img-bx img{
    width:100%;
}
.team-details {
    padding-left: 20px;
}
.team-details p, .team-details2 p  {
  text-align: justify;
  line-height: 30px;
  font-size: 16px;
  font-weight: 500;
}
.tema-details2 {
    padding-right: 15px;
}
.team-rw1{
    margin-bottom: 45px;
}
.team-rw1, .team-rw2{
    box-shadow: rgba(17, 12, 46, 0.15) 0px 0px 7px 0px;
    border-radius: 5px;
    padding: 20px 13px 50px;
}
/*.team-rw2{*/
/*    padding: 20px 13px 50px;*/
/*}*/
.tema-details2 p {
    text-align: justify;
    line-height: 30px;
}
.tema-details2 h2, .tema-details2 h5 {
    text-align: right;
}
.team-img-bx::before {
    position: absolute;
    content: "";
    top: -10px;
    right: -12px;
    bottom: -12px;
    left: 22px;
    border: 5px groove #000;
    z-index: -1;
}
.team-name {
    margin-bottom: 15px;
    font-size: 35px;
}
.team-post {
    margin-bottom: 15px;
    font-size: 20px;
    color: #696969;
    font-weight: 600;
}

.carousel-indicators [data-bs-target]{
    width: 15px;
    height: 15px;
    border-radius:50%;
    margin-left:5px;
    margin-right:5px;
}
a.my-btn {
    display: inline-block;
    border: 1px solid;
    border-radius: 0;
    padding: 10px 27px;
    font-size: 17px;
    margin: 20px 0px 20px;
    text-transform: uppercase;
    transition: 0.3s 
ease;
}
.my-btn:hover{
    background-color:#000;
    color:#fff!important;
    border-color:#baa391;
}
.cat-pg-sec {
    margin: 30px;
}
.cat-pg-sec .cate_box {
    margin-bottom:0px;
}
.cat-pg-sec .cate_content h3{
    font-weight: 600;
}
.product-wrap {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}
.project-container-three {
    width: 31% !important;
    margin-bottom: 30px;
    box-shadow: #837d77 0px 5px 12px;
    padding: 10px;
    border-radius: 20px;
    transition:0.3s ease;
}
.project-container-three:hover{
    transform:translateY(-15px);
}
.project-container-three img{
    border-radius:20px;
}
.arcont h6 {
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.sider-bar {
    background: #f1e2d7;
    padding: 20px 20px;
    border-radius: 20px;
}
.sticky-sidebar{
      box-shadow: #837d77 0px 5px 12px;
}
.sider-bar ul{
    max-height: 600px;
    overflow-y: auto;
}

.sider-bar h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 30px;
    border-bottom: 1px solid #63564c;
    padding-bottom: 15px;
    padding-top: 5px;
}
.sider-bar ul li {
    border-bottom: 1px solid #b9ac9f;
    padding-bottom: 10px;
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sider-bar ul li a {
    font-weight: 500!important;
    transition:0.3s;
}
.sider-bar ul li a:hover{
    padding-left:10px;
}
.sider-bar ul li input {
    border-radius: 0px;
    width: 20px;
    height: 20px;
}
.sider-bar ul li label {
    font-weight: 600;
    color: #342b24;
}
.product-list .product-wrap{
    justify-content:start;
    padding:0px 20px;
}
.product-list .project-img-ontainer::after{
    display:none;
}
.product-list .project-img-ontainer::before{
    display:none;
}
.product-list .project-container-three{
    padding: 10px 10px 15px 10px;
}

#offcanvasWithBothOptions {
    background: #e4d8cc;
}
#offcanvasWithBothOptions .offcanvas-header {
    padding: 30px 30px 20px 20px;
    justify-content:end;
}
#offcanvasWithBothOptions .offcanvas-body{
   padding:0px;
   justify-content: end;
}
.fltr-bx {
   border-bottom: 1px solid #9e9e9e;
    margin: 0px 0px 20px 0px;
    padding-bottom: 10px;
}
.fltr-btn {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px;
}
.fltr-btn img {
    width: 25px;
    margin-right: 5px;
}

.prd-btn-bx {
    display: flex;
    justify-content: center;
    gap: 8px;
}
.prd-btn-bx .btn {
    border: 1px solid;
    border-radius: 6px;
    font-size: 13px;
    color: #fff;
    padding: 10px 13px;
}
.btn.view-btn {
    background: #000;
}
.view-btn:hover{
    background:#e4d8cc;
    color:#000!important;
    border-color:#c2b6a9;
}
.btn.enq-btn {
    background: #25d366;
    border-color: #25d366;
}
#lightbox-overlay{
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#lightbox-overlay.show {
  opacity: 1;
  visibility: visible;
}
#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
#lightbox-img{
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  transform: scale(0.9);
  transition: transform 0.4s ease;
}
#lightbox-overlay.show img {
  transform: scale(1);
}

#lightbox-close:hover {
  transform: scale(1.2);
}
#staticBackdrop .modal-content{
    background: #e4d8cc!important;
    border:none;
}
.modal-frm input,
.modal-frm textarea{
    font-size: 15px;
    padding: 10px 15px;
    border: 2px solid #c1b6ac;
    border-radius: 5px;
}
#staticBackdrop .modal-header{
        background: #bca998;
        
}
#staticBackdrop .modal-title{
    color:#fff;
}
form.modal-frm button {
    background: black;
    border-color: black;
    border-radius: 5px;
    padding: 8px 15px;
}
.modal-frm button:hover{
    background:#e4d8cc;
    color:#000!important;
    border-color:#c2b6a9;
}


/*job work page css*/

/* SECTION WRAPPER */
.our-services-print {
    padding: 80px 0 30px;
}


/* HEADINGS */

.print-head h2 {
    font-size: 42px;
    text-align: center;
    font-weight: 800;
    margin-bottom: 10px;
    display: inline-block;
    margin: auto;
    padding: 10px 35px;
    border: 1px solid;
    border-radius: 50px;
}
.print-sell-cont {
    margin-top: 35px;
}
.print-sell-cont .category-heading {
    font-size: 30px;
    font-weight: 800;
    margin-top: 20px;
    margin-bottom: 15px;
    color: #825c37;
}

.category-heading + p {
  font-size: 18px;
  font-family: sans-serif;
  color: #555;
  margin-bottom: 30px;
}

/* CATEGORY BOX */
.cate_box {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.cate_box:hover {
  transform: translateY(-5px);
}

.cate_box img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* BUTTON */
.my-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  background: #f1e2d7;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.btn-center {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

/* RESPONSIVE BREAKPOINTS */

@media (max-width: 992px) {
  .category-heading {
    font-size: 24px;
  }
  .category-heading + p {
    font-size: 16px;
  }
}
@media(max-width:768px){
    .our-services-print {
    padding: 45px 0 0px;
}
        .our-services-print .services_content h2 {
        font-size: 25px;
        padding: 7px 27px;
    }
    .row-bar {
    display: flex;
    justify-content: center;
    padding: 7px;
}
.row-bar .col-6 {
    padding: 5px;
}
.print-sell-cont .category-heading {
    font-size: 25px;
    
}

.category-heading + p {
    margin-bottom:10px;
}

}


/* Extra Income Section */

.extra-income-section {
  padding: 70px 20px;
  background: #f8f8f8;
  margin-top: 40px;
  border-radius: 12px;
}

.extra-container {
  max-width: 1200px;
  margin: auto;
}

.extra-title {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #222;
  text-align: center;
}

.extra-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.extra-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  line-height: 1.5;
  color: #444;
  background: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #e3e3e3;
  transition: 0.3s;
  font-weight:500;
}

.extra-item span {
  font-size: 20px;
  color: #050505;
}

.extra-item:hover {
  background: #f1e2d7;
  transform: translateY(-2px);
}

h4.sub-cate {
    font-size: 20px;
    font-weight: 600;
    margin-top: 16px;
    text-align: center;
}

/* Mobile Fix for Extra Section */
@media (max-width: 480px) {
  .extra-item {
    font-size: 15px;
    padding: 12px;
  }
  .extra-title {
    font-size: 24px;
  }
}



/*End job work page css*/


@media(max-width:768px){
    .choose-quote-tabs {
        margin: 40px auto 30px auto;
    }
    .intro:after{
        display:none;
    }
    .intro p{
        text-align:justify;
        padding-bottom:0px;
    }
    .title-area {
    margin-bottom: 0px;
}

    .title-area .sec-title {
    font-size: 30px !important;
    margin-top: 15px !important;
    margin-bottom: 13px !important;
}
    .product-list .product-wrap {
    padding: 0px 0px;
}
.prd-btn-bx {
    gap: 8px;
    flex-direction: column;
    
}
.prd-btn-bx .btn {
    font-size:13px;
}
.prd-btn-bx .btn {
        width: 125px;
    margin: auto;
}
    .cate_content p {
    font-size: 12px;
    display:none;
        
    }
    .cate_box{
        margin-bottom:1px;
    }
    .gl-rw{
        padding:0px 15px;
    }
    .team-rw1, .team-rw2{
        padding: 20px 15px 50px;
    }
    .team-details {
    padding-left: 0px;
}
.tema-details2 h2, .tema-details2 h5 {
    text-align: left;
}
.tema-details2 {
    padding-right: 0px;
}
.count-item{
    flex: 0 0 47%;
}
.count-item img {
    width: 60px;
}

.Count-num {
    font-size: 40px;
}
.vision-head {
    margin-bottom: 0px;
    
}
.vision-head h2{
    font-size: 25px;
    margin-bottom: 0px;
    line-height: 35px;
}
.vision-content {
    padding: 24px 20px;
}
.vision-content h3 {
    font-size: 30px;
}
.vision-content p {
    font-size: 18px;
    line-height: 1.7;
    padding: 14px 0px;
}
.wht-off-ul li{
    font-size: 15px;
    margin-bottom: 10px;
 }
 .wht-off-ul {
    padding-left: 15px;
}
.cat-pg-sec {
    margin: 10px;
    padding: 30px 0px;
}
.cat-pg-sec .cate_content{
    left: 10px;
}
.cat-pg-sec .cate_content h3{
    font-size: 16px;
    font-weight: 600;
}
.cat-pg-sec .cate_content p{
    font-size: 13px;
}
.our-services {
    padding: 40px 0 10px;
}
.services_content h2 {
    font-size: 30px;
    
}
.cate_content h3 {
    font-size: 16px;
    font-weight: 600;
}
a.my-btn {
    margin: 10px 0px 10px;
    font-size:15px;
}
.con-detail .mt-5 {
    margin-top: 0px !important;
}
.con-detail h3 {
    margin-top: 35px;
}
.inner-page-banner-wrapper h2 {
    font-size:35px;
}
.why-we .sec-title {
    font-size: 30px;
}
.team-name {
    font-size: 25px;
}
.projects-one.pr {
    padding: 30px 12px 50px;
}
.project-container-three {
    width: 47% !important;
    padding: 5px;
    margin-bottom: 15px;
    border-radius: 10px;
  box-shadow: #837d77 0px 5px 12px;
    
}
.arcont h6 {
    font-size: 15px;
    padding: 10px 5px;
}
.project-container-three img {
    border-radius: 10px;
}
    .project-img-ontainer:hover::after {
        height: 0px!important;
    }
    .project-img-ontainer:hover .project-btn{
        color:#fff!important;
    }
    .cate_content {
        left: 5px;
        padding: 5px 10px;
    }
    .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
}
.logo-container .header-logo {
    width: 80px;
}
}








