@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap');

body {
    padding: 0;
    margin: 0;
    font-family: "Instrument Sans", sans-serif;
    font-style: normal;
    font-size: 15px;
    line-height: 22px;
    color: var(--body-color);
    background-color: var(--white-bg-color);
    overflow-x: hidden;
}

:root {
    --white-bg-color: #fff;
    --body-color: #666;
    --black-color: #000;
    --white-color: #fff;
    --primary-color: #D99759;
    --primary-hover: #df842f;
}

* {
    box-sizing: border-box;
}

.container {
    max-width: 100%;
    padding-left: 150px;
    padding-right: 150px;
}

img {
    max-width: 100%;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    transition: .6s;
    -webkit-transition: .6s;
    display: inline-block;
    text-decoration: none;
    color: #666;
}

a:hover {
    color: var(--primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black-color);
}
.h2, h2 {
    font-size: 1.50rem;
}
.h3, h3 {
    font-size: 1.2rem;
}
p:last-child {
    margin-bottom: 0;
}

.p-tb {
    padding-top: 60px;
    padding-bottom: 60px;
}

.pt {
    padding-top: 80px;
}

.pb {
    padding-bottom: 80px;
}

input,
select {
    outline: none !important;
    box-shadow: none !important;
}

.btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
    outline: none;
    box-shadow: none;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    transition: .6s;
    -webkit-transition: .6s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:before {
    position: absolute;
    content: "";
    height: 0;
    bottom: 0;
    top: auto;
    background-color: var(--primary-hover);
    z-index: -1;
    transition: .6s;
    width: 100%;
    left: 0;
    right: 0;
}

.btn:hover:before {
    height: 100%;
    bottom: auto;
    top: 0;
}

.btn:hover{
    background-color: var(--primary-color);
    color: #fff !important;
    border-color: var(--primary-color) !important;
}

.secondary-btn {
    background-color: #2F3E46;
    color: var(--white-color);
    border-radius: 8px;
    padding: 12px 8px;
    font-weight: 600;
    border: none;
    outline: none;
    box-shadow: none;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    transition: .6s;
    -webkit-transition: .6s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.secondary-btn:before {
    position: absolute;
    content: "";
    height: 0;
    bottom: 0;
    top: auto;
    background-color: #4b545a;
    z-index: -1;
    transition: .6s;
    width: 100%;
    left: 0;
    right: 0;
}

.secondary-btn:hover:before {
    height: 100%;
    bottom: auto;
    top: 0;
}

.secondary-btn:hover{
    background-color: #2F3E46;
    color: #fff !important;
    border-color: #2F3E46;
}

.primary-btn {
    background-color: #2F3E461A;
    color: #2F3E46;
    border-radius: 8px;
    padding: 12px 8px;
    font-weight: 600;
    border: 0;
    outline: none;
    box-shadow: none;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    transition: .6s;
    -webkit-transition: .6s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-btn:before {
    position: absolute;
    content: "";
    height: 0;
    bottom: 0;
    top: auto;
    background-color: #2F3E461A;
    z-index: -1;
    transition: .6s;
    width: 100%;
    left: 0;
    right: 0;
}

.primary-btn:hover:before {
    height: 100%;
    bottom: auto;
    top: 0;
}

.primary-btn:hover{
    color: #2F3E46 !important;
}

.primary-btn img{
    filter: brightness(0.4);
    width: 17px !important;
}

.fs14{
    font-size: 14px;
    line-height: 20px;
}

.fs12{
    font-size: 12px;
    line-height: 16px;
}

/*PAGE CSS START*/
.top-header {
    background-color: #103A3A;
}

.dropdown-selected {
    background: #ffffff;
    color: #000000;
    padding: 6px 12px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    width: 110px;
}

.dropdown-selected img {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    object-fit: cover;
}

.dropdown-list {
    padding: 0;
    background: #fff;
    border-radius: 6px;
    display: none;
    max-height: 250px;
    overflow-y: auto;
    position: absolute;
    top: 100%;
    border: 1px solid #eee;
    z-index: 1;
}

.dropdown-list li {
    padding: 2px 10px;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
    font-size: 14px;
}

.dropdown-list li img {
    width: 16px;
    height: 12px;
    object-fit: contain;
}

.dropdown-list li:hover {
    background: #ededed;
    color: #000;
}

.toggle-navigation-button {
    opacity: 0;
    visibility: hidden;
    margin-inline-end: 0;
    width: 0;
    transition: visibility .3s, opacity .3s, width .3s, margin-inline-end .3s;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.StickyHeader .toggle-navigation-button {
    opacity: 1;
    visibility: visible;
    margin-inline-end: 1.2rem;
    width: 1.5rem;
}

.menu-drawer-button .hamburger-line {
    position: absolute;
    top: 50%;
    width: 26px;
    height: 2px;
    background: #000;
    transition: transform .2s ease;
}

.menu-drawer-button .hamburger-line:after,
.menu-drawer-button .hamburger-line:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background: #000;
}

.menu-drawer-button .hamburger-line:before {
    top: -8px;
    transition: top .2s ease .22s, opacity .2s ease, width .2s ease;
}

.menu-drawer-button .hamburger-line:after {
    bottom: -8px;
    transition: bottom .2s ease .22s, transform .2s ease, width .2s ease;
}

.header-support .btn{
    font-size: 14px;
    padding: 7px 12px;
    border-radius: 9px;
    line-height: 22px;
}

.header-support .btn:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100px;
    background-image: linear-gradient(120deg, rgba(239,239,239, 0) 30%, rgba(239,239,239, .5), rgba(239,239,239, 0) 70%);
    animation: shine 5s infinite linear; 
}

@keyframes shine {
    0% {left: -100px}
    20% {left: 100%}
    100% {left: 100%}
}

.cart {
    width: 35px;
    height: 35px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 14px;
}

.header-menu .tab-content a:before{
    display: none;
}

.cart span {
    width: 15px;
    height: 15px;
    font-size: 10px;
    position: absolute;
    top: -5px;
    right: 0;
    background: #c7301d;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

#tabs-nav li a {
    background: transparent;
    border-radius: 5px;
    padding: 10px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#tabs-nav li.active a {
    background: #eee;
}

.tab-content {
    display: block !important;
    transform: translateX(10%);
    transition: all .8s ease-in-out 0s;
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.tab-content.active {
    display: block;
    transform: translateX(0%);
    opacity: 1;
    visibility: visible;
}

.main-header {
    border-bottom: 1px solid #d9d9d9;
}

.DropdownMenu .menu-item:after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding-left: 5px;
}

.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: .6s;
    transform: translateY(-280%);
    z-index: -1;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    min-width: 250px;
    min-height: auto;
    overflow-y: auto;
    overflow-x: hidden;
    margin-top: 1px;
}

.DropdownMenu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%);
}

.tab-content:last-child {
    position: unset;
}

.dropdown-menu {
    min-width: 310px;
}

.search-form {
    width: 500px;
}

.search-form select {
    width: 200px;
}

.header-menu {
    transition: .1s;
}

.StickyHeader .header-menu {
    position: absolute;
    top: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

#StickyHeader .toggleMenu {
    opacity: 1;
    visibility: visible;
    position: unset;
}

.main-header:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
}

.toggle-navigation-button.active .hamburger-line {
    transform: rotate(45deg);
    transition-delay: .22s;
}

.toggle-navigation-button.active .hamburger-line:before {
    top: 0;
    opacity: 0;
    width: 100%;
    transition: top .2s ease, opacity .2s ease .22s, width .1s ease;
}

.toggle-navigation-button.active .hamburger-line:after {
    bottom: 0;
    transform: rotate(-90deg);
    width: 100%;
    transition: bottom .2s ease, transform .2s ease .22s, width .1s ease;
}

.menu-item {
    padding-bottom: 15px;
    font-weight: 600;
}

.header-menu li a:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 15px;
    background: #000;
    height: 1px;
    transition: .6s;
    width: 0;
}

.full-video video {
    height: 80vh;
    width: 100%;
    object-fit: cover;
    display: block;
}

.header-menu li a:hover:before {
    right: auto;
    width: 100%;
}

.mega-menu li a {
    position: relative;
}

.mega-menu.normal li a {
    padding-bottom: 15px;
}

.mega-tabs li a:before {
    display: none;
}

.categories-slider figure {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background: #ececec;
    margin: 0 auto 10px;
}

.categories-slider .slide {
    text-align: center;
}

.categories-slider:hover .slick-prev {
    left: 0;
}

.categories-slider:hover .slick-next {
    right: 0;
}

.categories-slider .slick-prev,
.categories-slider .slick-next {
    z-index: 1;
    opacity: 0;
    transition: .6s;
}

.slick-prev:before,
.slick-next:before {
    color: #000000;
}

.categories-slider h6:after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding-left: 5px;
    font-size: 12px;
    transition: .6s;
    position: relative;
    left: -5px;
    opacity: 0;
    visibility: hidden;
}

.categories-slider .slide:hover h6:after {
    opacity: 1;
    visibility: visible;
    left: 0px;
}

.categories-slider:hover .slick-prev,
.categories-slider:hover .slick-next {
    opacity: 1;
}

.categories-slider h6 {
    margin-bottom: 0;
    font-size: 13px;
}

.hero-slider img {
    transition: all 1s cubic-bezier(0.3, 0, .6, 1);
    transform: scale(1.2);
    border-radius: 20px;
    height: 600px;
    width: 100%;
    object-fit: cover;
}

.hero-slider .slick-active img {
    transform: scale(1);
}

.hero-slider .slide {
    overflow: hidden;
    border-radius: 20px;
}

.hero-slider .slick-dots li button:before {
    display: none;
}

.hero-slider .slick-dots li {
    width: auto;
    height: auto;
    padding: 0 5px 30px;
}

.hero-slider .slick-dots li button {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    margin: auto;
    transition: .6s;
    opacity: .5;
}

.hero-slider .slick-dots .slick-active button {
    width: 35px;
    border-radius: 10px;
    opacity: 1;
}

.hero-slider .slick-prev, .hero-slider .slick-next, .hero-slider .slick-prev:before, .hero-slider .slick-next:before {
    width: 22px;
    height: 22px;
    top: auto;
    bottom: 12px;
    z-index: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 0;
}

.hero-slider .slick-prev {
    left: 46%;
}

.hero-slider .slick-next {
    right: 46%;
}

.zoom-eff, .zoom-eff2 img{
    transition: .6s;
}

.zoom-eff:hover, .zoom-eff2:hover img{
    transform: scale(1.1);
}

.slick-dots {
    bottom: 0;
}

.slick-dots li {
    margin: 0;
}

.hero-content h2 {
    font-size: 38px;
}

.hero-content h2 span {
    color: var(--primary-color);
}

.hero-content {
    max-width: 680px;
    padding: 15px;
}

.hero-slider .slide:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #000;
    z-index: 1;
    opacity: .5;
}

.ProductItem img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.solutions-slider .slick-prev, .solutions-slider .slick-next {
    top: auto;
    bottom: -70px;
    z-index: 1;
    right: 0;
}

.solutions-slider .slick-prev {
    left: auto;
    right: 55px;
}

.brand-logos {
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-duration: 20s;
    animation-name: scrolling-left;
}

@keyframes scrolling-left {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

.brand-logos:hover {
    animation-play-state: paused;
}

.aboutCatImg {
    width: 80%;
    height: 360px;
    object-fit: cover;
}

.aboutCatLeft img+img {
    margin-top: -30%;
    margin-left: 24%;
}

.brand-logos {
    gap: 0 100px;
    white-space: nowrap;
}

.gallary-right img {
    height: 250px;
    object-fit: cover;
}

.gallary-con:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: #000000;
    opacity: .7;
    filter: blur(30px);
    z-index: -1;
}

.gallary-left img{
    height: 525px;
    object-fit: cover;
}

.hover-active:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: .5;
    z-index: 1;
}

.header-support {
    margin-top: -15px;
}

.gallery-item video {
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    transition: .6s;
}

.gallery-item {
    padding: 0 10px;
}

.gallery-video .slick-next {
    right: 0;
    z-index: 1;
}

.gallery-video .slick-prev {
    left: 0;
    z-index: 1;
}

.gallery-inner {
    cursor: pointer;
    border-radius: 20px;
}

.gallery-inner:hover video {
    transform: scale(1.1);
}

.gallery-item .fa-play {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: #ffffff;
    filter: brightness(0.6) opacity(0.6);
    opacity: 0;
    visibility: hidden;
    transition: .6s;
}

.gallery-inner:hover .fa-play {
    opacity: 1;
    visibility: visible;
}

.gallery-pro img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.reel-slider {
    max-width: 1050px;
    margin: 0 auto;
}

.reel-slider .slick-slide {
    transform: scale(0.6);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.reel-slider .slick-center {
    transform: scale(1);
    opacity: 1;
    z-index: 2;
}

.reel-slider-item {
    width: 350px;
}

.reel-slider .slick-slide video {
    border-radius: 10px;
    height: 600px;
    object-fit: cover;
}

#reelModal .modal-content {
    position: relative;
    background: #000;
    padding: 20px;
    height: 100vh;
    justify-content: center;
}

#reelModal .close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.slick-prev:before {
    content: "\f104";
}

.slick-next:before {
    content: "\f105";
}

.slick-prev:before,
.slick-next:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #b1b0b0;
}

.slick-prev,
.slick-next,
.slick-prev:before,
.slick-next:before {
    width: 40px;
    height: 40px;
}

.reel-slider-item .gallery-pro {
    display: none;
}

.reel-slider .slick-center .gallery-pro {
    display: block;
}

.testimonial-inner {
    max-width: 500px;
    margin: 0 auto;
}

.testimonial-slider .slick-list {
    margin: 0 -400px;
}

.testimonial-item {
    opacity: 0.1;
    padding: 0 20px;
}

.testimonial-item.slick-current+.testimonial-item {
    opacity: 1;
}

.testimonial-slider .slick-next {
    right: 25%;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: .6s;
}

.testimonial-slider .slick-prev {
    left: 25%;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: .6s;
}

.testimonial-slider:hover .slick-next,
.testimonial-slider:hover .slick-prev {
    opacity: 1;
    visibility: visible;
}

.circle-box {
    width: 130px;
    height: 130px;
    background-color: var(--primary-color);
    right: -50px;
}

.circle-text {
    animation: rotateText 10s linear infinite;
}

@keyframes rotateText {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.circle-text span {
    position: absolute;
    left: 50%;
    font-size: 10px;
    transform-origin: 0 65px;
    color: #fff;
}

.info-tabs-img img {
    height: 450px;
    object-fit: cover;
    width: 100%;
}

.info-tabs-img {
    transform: none;
}

.info-tabs .nav-link {
    background: transparent !important;
    box-shadow: none;
    outline: none;
    padding: 0;
    border-radius: 0 !important;
    border-bottom: 1px solid #dfdfdf;
    width: 100%;
    text-align: left;
    padding: 15px 0;
    font-size: 22px;
    color: #8d8a8a;
    font-weight: 400;
    transition: 1s;
    position: relative;
}

.info-tabs .nav-link.active {
    color: #000;
}

.info-tabs .nav-link:after {
    content: '';
    position: absolute;
    height: 1px;
    left: 0;
    right: 0;
    bottom: -1px;
    background: #000;
    width: 0;
}

.info-tabs .nav-link.active:after {
    width: 100%;
    transition: 5s;
}

.requirement-sec {
    background-color: #FCF8F3;
}

.requirement-head {
    background-color: #F1ECE3;
}

.requirement-head h3 {
    color: #DE5408;
    font-weight: 700;
}

.requirement-item {
    box-shadow: 0px 4px 10px 0px #0000001A;
}

.requirement-item:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -32px;
    background-image: url(../img/check-box.svg);
    background-repeat: no-repeat;
    background-position: bottom center;
    width: 50px;
    height: 50px;
    margin: auto;
}

.requirement-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.requirement-work figure {
    width: 65px;
    height: 65px;
    margin: 0;
    border-radius: 16px;
    background: #E4E6F8;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.requirement-work:last-child .requirement-work-con {
    border: 0;
    padding-bottom: 0;
}

.requirement-work-con {
    width: calc(100% - 65px);
    border-bottom: 1px solid #e3dfdf;
    padding-bottom: 22px;
}

.requirement-work:nth-child(2) figure {
    background: #DBECE7;
}

.requirement-work:nth-child(3) figure {
    background: #F1ECE3;
}

.requirement-work:nth-child(4) figure {
    background: #E6D7C5;
}

.requirement-work:before {
    content: '';
    position: absolute;
    left: 30px;
    top: 40px;
    width: 1px;
    height: 100%;
    background: #e3dfdf;
}

.requirement-work {
    position: relative;
    padding-top: 22px;
}

.requirement-work:last-child:before {
    display: none;
}

.requirement-form .title {
    background: #132C45;
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 18px;
    margin-bottom: 0;
    font-style: italic;
}

.requirement-form .title span {
    color: #FF7422;
}

.form-control::placeholder{
    color: #c7c5c5;
}

#preview {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    object-fit: cover;
    border: 1px solid #eee;
    margin-top: 5px;
    display: none;
}

.file-upload button {
    outline: none !important;
    height: 134px;
    font-size: 14px;
    color: #978e8e;
    gap: 10px;
    box-shadow: none !important;
}

.file-format li {
    font-size: 12px;
    line-height: normal;
}

.requirement-form{
    margin-top: -130px;
}

footer * {
    font-size: 14px;
}

.WhatsApp {
    background: #00A63E33;
    border: 1px solid #00A63E33;
    color: #00A63E;
    white-space: nowrap;
}

.ViewDetail {
    background: #D9975933;
    border: 1px solid #D9975933;
    color: var(--primary-color);
    white-space: nowrap;
}

.WhatsApp.btn:before {
    background-color: #00A63E;
}

.WhatsApp.btn:hover {
    background-color: #00A63E;
    color: #fff !important;
    border-color: #00A63E !important;
}

.PopularItem img {
    height: 280px;
    width: 100%;
    object-fit: cover;
}

.PopularItem {
    background-color: var(--primary-color);
}

.progress-bar {
    width: 90%;
    height: 2px;
    background: #eee;
    margin-top: 30px;
}

.progress-bar .progress {
  width: 0%;
  height: 100%;
  background: #000;
  transition: width 0.5s ease;
}

.banner-text-bg {
    background-color: #0000004f;
    padding: 20px;
    border-radius: 10px;
}

.solutions-slider .slide {
    padding: 0 10px;
}

.listingSecFirst{
    background-color: #2F5D9F;
}

.WorkProductsSlider {
    margin-bottom: -85px;
    background-color: #fff;
    border-radius: 35px;
}

.WorkProductsSlider img {
    width: 100%;
    height: 325px;
    object-fit: cover;
}

.WorkProductsSlider .slick-prev, .WorkProductsSlider .slick-next {
    top: auto;
    bottom: 0;
}

.WorkProductsSlider .slick-prev {
    left: -115px;
}

.WorkProductsSlider .slick-next {
    right: auto;
    left: -60px;
}

.SideBarHeading:after {
    content: "\f106";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding-left: 5px;
}

.SideBarWrap.active .SideBarItem {
    display: block;
}

.FiltersWrap {
    position: sticky;
    top: 100px;
}

.SideBarWrap.active .SideBarHeading:after {
    content: "\f107";
}

.SideBarHeading {
    cursor: pointer;
}

.SideBarItem {
    display: none;
}

.form-check-input:checked {
    background-color: #000000;
    border-color: #000000;
}

.form-check-input[type=checkbox] {
    border-radius: 0;
}

.ProInfo {
    background-color: #FCF8F3;
}

.price-input input[type="number"]::-webkit-outer-spin-button,
.price-input input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.pro-slider {
  height: 5px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
}
.pro-slider .progress {
  height: 100%;
  left: 25%;
  right: 25%;
  position: absolute;
  border-radius: 5px;
  background: var(--primary-color);
}
.range-input input {
  position: absolute;
  width: 100%;
  height: 4px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.range-input input[type="range"]::-webkit-slider-thumb {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: var(--primary-color);
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
.range-input input[type="range"]::-moz-range-thumb {
  height: 15px;
  width: 15px;
  border: none;
  border-radius: 50%;
  background: var(--primary-color);
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.VerifiedPartners li {
    transition: 1s;
}

.VerifiedPartners li:hover {
    transform: translateY(-5px);
}

/* PRELOADER CSS START*/
.page-loader {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: #272727;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.spinner {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1s infinite ease-in-out;
    animation: sk-scaleout 1s infinite ease-in-out;
}
@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
}
100% {
    -webkit-transform: scale(1);
    opacity: 0;
}
}
@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
}
100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
}
}
/* PRELOADER CSS END */

.tab-nav {
    width: 120px;
    gap: 15px;
}

.tab-for {
    width: calc(100% - 120px);
}

.tab-for img, .tab-for video  {
    height: 580px;
    width: 100%;
    object-fit: cover;
    border-radius: 40px;
}

.tab-nav img, .tab-nav video {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 20px;
    cursor: pointer;
    display: block;
}

.pro-detail-slider .tab-content {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: unset;
}

.tab-nav .nav-link {
    padding: 0;
    background: transparent !important;
    border: 2px solid transparent;
    border-radius: 20px;
    cursor: pointer;
}

.tab-nav .nav-link.active {
    border-color: #d99759;
}

.cursor{
    cursor: pointer;
}

.pro-detail-sec {
    margin-top: -125px;
}

.product-info{
    background-color: #374957;
}

.product-type {
    background-color: #FFFBF6;
    border: 1px #d1d1d1;
    border-style: dashed;
}

.product-type span {
    width: 115px;
}

.grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.grid-3 img {
    height: 130px;
    object-fit: cover;
}

.border-das {
    border-style: dashed !important;
}

.DeliveryType {
    width: 87%;
    margin-left: auto;
}

.rating-number {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: conic-gradient(
        #f28c28 0% 80%,
        #e5e5e5 80% 100%);
    font-size: 20px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.rating-number:before {
    content: "";
    width: 75px;
    height: 75px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
}

.star-text span{
    color:#f5a623;
}

.bar-bg{
    flex:1;
    height:7px;
    background:#ddd;
    border-radius:20px;
    overflow:hidden;
}

.bar-fill{
    height:100%;
    width:0;
    background:#333;
    border-radius:20px;
    transition:2s ease;
}

.count-num{
    width:50px;
    color:#000;
}

.ProductReviews {
    background-color: #FFF7ED;
}

.ReviewLists{
    transform: none;
}

.ReviewListsNav .nav-link.active{
    background-color: #EBEBEB;
}

#ProductPopup .tab-pane img, #ProductPopup .tab-pane video {
    width: 100%;
    height: 700px;
    max-width: 700px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin: auto;
}

#ProductPopup .nav button {
    border: 2px solid #dfdfdf !important;
    padding: 0;
    border-radius: 5px !important;
    width: 100%;
    background: #fff;
}

#ProductPopup .nav button img, #ProductPopup .nav button video {
    border-radius: 5px;
    width: 100%;
    height: 55px;
    object-fit: contain;
    display: block;
}

#ProductPopup .nav {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

#ProductPopup .tab-content {
    width: calc(100% - 310px);
}

#ProductPopup .NavItem {
    width: 310px;
}

#ProductPopup .nav button.active{
    border-color: #D99759 !important;
}

.pro-detail-wrap {
    position: sticky;
    top: 100px;
}

.GranLine {
    border: 2px solid transparent;
    border-image-source: linear-gradient(45deg, #d99759, #fff3cd);
    border-image-slice: 1;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item {
    max-width: 300px;
}

.inner-page{
    margin-top: -70px;
}

.inner-page img{
    height: 500px;
    width: 100%;
    object-fit: cover;
}

.blog-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.IdeasInfo {
    background-color: #FCF8F3;
}

.IdeasInfo img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.OurPlatform {
    background-color: #F3F3F380;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 10px 0px 0px #D99759,
    -8px 4px 0px 0px #D997594D,
    8px 4px 0px 0px #D997594D;
}

.RecentBlog{
    position: sticky;
    top: 100px;
}

.WorkPoints ul {
    opacity: 0;
    visibility: hidden;
    transition: .6s;
    width: max-content;
}

.WorkPoints:hover ul {
    opacity: 1;
    visibility: visible;
}

.OrderMenu a:before{
    display: none;
}

.yellow-light{
    background-color: #F9F4EF;
}

.text-warning {
    color: #D99759 !important;
}

.border-warning-subtle {
    border-color: #d99759 !important;
}

.services-item img {
    height: 180px;
    object-fit: cover;
    width: 100%;
}

.step-form h6 span {
    display: inline-flex;
    width: 30px;
    height: 30px;
    border: 1px solid #000;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.step-form .line{
    width: 115px;
    height: 2px;
    background: #000;
}

.step-form h6.active {
    color: #d99759;
}
.step-form h6.active span {
    border-color: #d99759;
}

.preview-container .preview {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
    margin-top: 10px;
}

.preview-container .preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-container .remove-btn {
    position: absolute;
    top: 0px;
    right: 0;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-container .add-more {
    width: 80px;
    height: 80px;
    border: 1px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 8px;
    font-size: 24px;
    flex-direction: column;
    margin-top: 10px;
    text-align: center;
}

.preview-container .add-more span {
    font-size: 12px;
    line-height: normal;
}

.copied-msg {
    display: none;
}

.whyChoose-img-left img {
    height: 450px;
    object-fit: cover;
}

.whyChoose-img-right img {
    height: 213px;
    object-fit: cover;
}

.HowItWorks {
    background-image: url(../img/border-shape.png);
    background-repeat: no-repeat;
    background-position: 54%;
    background-size: 59% auto;
}

.ReadyToGrow:before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: #e9ecef;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.ReadyToGrow img {
    width: 280px;
}

.client-feedback .slick-dots li button:before {
    font-size: 40px;
}

.client-feedback .slick-dots {
    bottom: -30px;
}

.custom-radio .form-check-input:checked:before {
    content: '✓';
    color: #fff;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -3px;
}

#TeakWood {
    background: #8c532d;
    border-color: #8c532d;
}

#SheeshamWood {
    background: #142b2b;
    border-color: #142b2b;
}

#OakWood {
    background: #a58564;
    border-color: #a58564;
}

#MangoWood {
    background: #a1876b;
    border-color: #a1876b;
}

#Natural {
    background: #975c33;
    border-color: #975c33;
}

#Salnut {
    background: #61311a;
    border-color: #61311a;
}

#Honey {
    background: #af6e2b;
    border-color: #af6e2b;
}

#DarkBrown {
    background: #412e24;
    border-color: #412e24;
}

#Custom {
    background: #c9c7c7;
    border-color: #c9c7c7;
}

#NoCostion {
    background: #0a2a29;
    border-color: #0a2a29;
}

#Fabric {
    background: #c2bbb5;
    border-color: #c2bbb5;
}

#Leather {
    background: #c7c1bd;
    border-color: #c7c1bd;
}

#Custom2 {
    background: #c9c7c7;
    border-color: #c9c7c7;
}

.grid-2 {
    grid-template-columns: 1fr 1fr;
}

.MobileBottomMenu {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    box-shadow: 0 0 2px 2px #e5e5e5;
}

.center-item .fa-plus {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #d99759;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 0 1px 1px #b9b9b9;
    border: 4px solid #f3caa3;
    top: -10px;
}

.center-item i:after {
    content: '';
    position: absolute;
    right: -5px;
    top: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FF5722;
    z-index: 1;
    border: 1px solid #FFEB3B;
}

.line-break {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.AddtoCart img {
    filter: brightness(9);
}

.ViewDetail img {
    width: 16px !important;
    transition: .6s;
}

.ViewDetail:hover img {
    filter: brightness(9);
}

#TermsConditions i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ebebeb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    flex-shrink: 0;
}

#TermsConditions ul li {
    list-style: disc;
    margin-left: 30px;
}

.heading-hover * {
    transition: .6s;
}

.heading-hover:hover * {
    color: #d99759 !important;
}

.whatsapp {
    background: #25d366;
    color: #fff !important;
    position: fixed;
    bottom: 15px;
    left: 15px;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 5;
}


@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

.step-icon {
    width: 72px;
    height: 72px;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: #fff;
    font-size: 30px;
    color: #d99759;
}

.serve-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    margin-bottom: 25px;
}






/*Media Css Start*/
@media (max-width: 1599px) {
   .container{
    padding-left: 50px;
    padding-right: 50px;
}

.progress-bar {
    width: 85%;
}

.DeliveryType {
    width: auto;
}
}

@media (max-width: 1199px) {
    .circle-icon {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: #f3f3f3;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .header-details .header-menu {
        top: 40px;
        height: 95vh;
    }

    .container{
        padding-left: 15px;
        padding-right: 15px;
    }
    .header-menu {
        height: 82vh;
        opacity: 1 !important;
        visibility: visible !important;
        position: fixed !important;
        left: 0%;
        right: 0;
        top: 111px;
        bottom: 0;
        transform: translateX(-100%);
        overflow: auto;
        display: flex;
        flex-direction: column;
    }

    .toggleActive .header-menu {
        transform: translateX(0%);
    }

    .toggle-navigation-button {
        opacity: 1;
        visibility: visible;
        width: 50px !important;
        margin-inline-end: 0 !important;
    }

    .search-form {
        width: auto;
        margin-right: 50px;
    }

    .mega-menu,
    .DropdownMenu .menu-item:after {
        display: none;
    }

    .toggleActive {
        overflow: hidden;
    }

    .menu-item {
        border-bottom: 1px solid #d9d9d9;
        display: block;
        padding: 15px;
    }

    .StickyHeader .header-menu {
        top: 81px;
    }

    .toggleActive:before {
        content: '';
        position: fixed;
        background: #fff;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

    .reel-slider .slick-prev {
        left: 0;
        z-index: 1;
    }

    .reel-slider .slick-next {
        right: 0;
        z-index: 1;
    }

    .reel-slider {
        max-width: 100%;
    }

    .requirement-form {
        margin-top: 0;
    }

    .gallary-right img {
        height: 264px;
    }

    .gallary-left img {
        height: 550px;
    }

    .DeliveryType {
        flex-wrap: wrap;
        gap: 20px !important;
    }

}

@media (max-width: 1023px) {
    .whatsapp{
        bottom: 80px;
    }
    .side-footer {
        padding-bottom: 80px !important;
    }
    .MobileBottomMenu {
        transition: .6s;
        transform: translateY(120%);
        opacity: 0;
        visibility: hidden;
    }
    .MobileBottomMenu.StickyMobile {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .FiltersWrap{
        position: unset;
    }

    .SideBarOuter {
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        background-color: #ffffff;
        z-index: 3;
        min-height: 100vh;
        transition: .3s;
        overflow: auto;
        transform: translateX(100%);
        width: 80%;
    }

    .pro-detail-wrap {
        position: unset;
    }

    .ProductReviews .SideBarOuter {
        position: unset;
        transform: none;
        width: auto;
        min-height: auto;
        background: transparent;
    }

    .SideBarOuter.active{
        transform: translateX(0%);
    }

    .SideBarWrap {
        padding-left: 15px;
        padding-right: 15px;
    }

    body.active {
        overflow: hidden;
    }

    body.active:before {
        content: '';
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: #000;
        z-index: 3;
        opacity: .6;
    }

    .main-header{
        position: relative !important;
    }

}
.side-logo{
    height: 40px;
}

@media (max-width: 767px) {

    
    .side-logo {
        width: 58px;
        height: auto;
    }

    .ProductItem img.h-auto {
        height: auto !important;
    }
    .StickyHeader .header-menu {
        top: 125px;
    }

    .tab-nav {
        width: 100%;
        gap: 5px;
    }

    .tab-nav img, .tab-nav video {
        width: 60px;
        height: 60px;
        border-radius: 5px;
    }

    .tab-for {
        width: 100%;
        margin-bottom: 20px;
    }

    .tab-for img, .tab-for video {
        height: 350px;
        border-radius: 20px;
    }

    .tab-nav .nav-link{
        border-radius: 5px;
    }

    #ProductPopup .tab-content, #ProductPopup .NavItem {
        width: 100%;
    }

    #ProductPopup .tab-pane img, #ProductPopup .tab-pane video {
        height: 300px;
        max-width: 100%;
    }

    .NavItem {
        padding-top: 20px;
    }

    .search-form {
        width: 100%;
        margin-right: 0;
        position: absolute !important;
        left: 0;
        right: 0;
        top: 65px;
    }

    .header-menu {
        top: 155px;
    }

    .main-header {
        background: #fff;
        height: 125px;
    }

    .menu-drawer-button .hamburger-line {
        width: 25px;
    }

    .toggle-navigation-button {
        width: 40px !important;
        margin-inline-end: 0 !important;
    }

    .search-form * {
        font-size: 14px;
    }

    .hero-slider img {
        height: 350px;
    }

    .hero-content h2 {
        font-size: 22px;
    }

    .ProductItem img {
        height: 180px !important;
    }

    .brand-logos {
        gap: 0 30px;
    }

    .p-tb {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .pt {
        padding-top: 35px;
    }

    .pb {
        padding-bottom: 35px;
    }

    .fullImgCon {
        padding-top: 25px;
        text-align: center;
    }

    .fullImgCon h2 {
        font-size: 32px;
    }

    .gallary-sec img {
        height: 150px !important;
        object-fit: cover;
    }

    .gallary-sec .container>.row {
        overflow: auto;
    }

    .gallary-sec .row {
        flex-flow: nowrap;
        white-space: nowrap;
    }

    .gallary-left,
    .gallary-right .col-12,
    .gallary-right .col-md-6 {
        width: 80%;
    }

    .footer-menu,
    .header-menu li a:before {
        display: none;
    }

    .footer-menu.active {
        display: block;
    }

    .menu-heading {
        position: relative;
        display: flex;
        justify-content: space-between;
        font-size: 16px;
        margin-bottom: 0;
    }

    .menu-heading:after {
        content: "\f107";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        padding-left: 5px;
    }

    .footer-info {
        background-color: #eee;
        border-radius: 20px;
        padding: 20px;
        text-align: center;
    }

    .footer-menu li a {
        border-bottom: 1px solid #eee;
        display: block;
        padding: 10px 0;
    }

    .footer-menu li {
        padding: 0 !important;
    }

    .offcanvas {
        border-radius: 0 !important;
    }

    .testimonial-slider .slick-list {
        margin: 0;
    }

    .testimonial-slider .slick-prev {
        left: 0;
        opacity: 1;
        visibility: visible;
    }

    .testimonial-slider .slick-next {
        right: 0;
        opacity: 1;
        visibility: visible;
    }

    .testimonial-item {
        opacity: 1;
    }

    .info-tabs-img img {
        height: 300px;
    }

    .info-tabs .nav-link {
        padding: 10px 0;
        font-size: 18px;
    }

    .circle-box {
        display: none !important;
    }

    .reel-slider .slick-slide video {
        height: 500px;
    }

    .reel-slider .slick-list {
        padding: 0 !important;
    }

    .slick-prev,
    .slick-next,
    .slick-prev:before,
    .slick-next:before {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .reel-slider .slick-slide {
        transform: unset;
        opacity: 1;
        padding-right: 20px;
    }

    .reel-slider-item {
        width: 350px !important;
    }

    .full-video video {
        height: 300px;
    }

    .progress-bar {
        width: 70%;
        margin-top: 25px;
    }

    .solutions-slider .slick-prev, .solutions-slider .slick-next {
        bottom: -55px;
    }

    .SideBarItem {
        display: none;
    }

    .SideBarWrap.active .SideBarItem {
        display: block;
    }

    .Filter-tabs ul {
        white-space: nowrap;
        overflow: auto;
    }

    .VerifiedPartners {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
    }

    .VerifiedPartners li {
        display: block !important;
        border-radius: 10px !important;
        font-size: 12px;
        line-height: 16px;
        padding: 15px !important;
    }

    .VerifiedPartners i {
        display: block;
        margin-bottom: 5px;
        font-size: 20px;
    }

    .spinner {
        width: 40px;
        height: 40px;
    }

    .grid-3 img {
        height: 70px;
    }

    .inner-page img {
        height: 350px;
    }

    .scroll-tab{
        white-space: nowrap;
        flex-flow: row;
        overflow: auto;
    }

    .preview-container .preview, .preview-container .add-more {
        width: 55px;
        height: 55px;
    }

    .HowItWorks {
        background-image: none;
    }

    h2{
        font-size: 20px;
    }
    h3, h4{
        font-size: 18px;
    }
    h5{
        font-size: 16px;
    }
    p, h6, body{
        font-size: 14px;
        line-height: 20px;
    }

    .btn {
        padding: 8px 12px;
        font-size: 14px;
    }

    .categories-slider figure {
        width: 60px;
        height: 60px;
        margin-bottom: 5px;
    }

    .categories-slider h6:after{
        display: none;
    }

    .categories-slider h6{
        font-size: 12px;
        font-weight: 400;
    }

    .banner-text-bg {
        background-color: #000000b0;
    }

    .gallery-pro {
        max-width: 230px;
    }

    .reel-slider-item .gallery-pro {
        display: block;
    }

    .brand-logos {
        animation-duration: 50s;
    }

    .gallery-item video {
        height: 300px;
    }

    .ProjectOverviewaActive .main-header {
        position: relative !important;
    }

    .ProjectOverview{
        position: sticky;
        top: 0;
        z-index: 2;
        background: #fff;
    }

    .ProjectOverviewaActive .ProjectOverview{
        padding-top: 20px;
    }

}

@media (max-width: 575px) {

   .step-form .line {
    display: none;
}

.PopularItem img {
    height: 200px;
}

.info-tabs-img img {
    height: 180px;
}

.services-item img {
    height: 100px;
}

.hero-slider img {
    height: 250px;
}

.blog-item img {
    height: 100px;
}

.inner-page img {
    height: 280px;
}

.ProInfoWrap * {
    font-size: 12px;
    line-height: 16px;
}

.ProInfoWrap img {
    width: 30px;
}

.TimeSlot br{
    display: none;
}

.TimeSlot li{
    font-size: 12px;
}

}

