* {
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -moz-tap-highlight-color: rgba(0, 0, 0, 0);
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #000000;
    border-radius: 10px;
}

::-webkit-scrollbar {
    width: 7px;
    background-color: #707070;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #cfbf93;
    background-image: -webkit-linear-gradient(
        90deg,
        transparent,
        rgba(0, 0, 0, 0.4) 50%,
        transparent,
        transparent
    );
}

input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* font family */

@font-face {
    font-family: Aclonica-Regular;
    src: url(../fonts/aclonica/Aclonica-Regular.ttf);
}

@font-face {
    font-family: Inter-Regular;
    src: url(../fonts/inter/Inter-Regular.ttf);
}

@font-face {
    font-family: Inter-SemiBold;
    src: url(../fonts/inter/Inter-SemiBold.ttf);
}

/* animations */

.fade-in {
    animation: fadeIn 2s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    font-family: Inter-Regular;
}

p {
    font-family: Inter-Regular;
    font-size: 15px;
    line-height: 23px;
    font-weight: 100;
    margin-bottom: 0rem !important;
}

h4,
h5,
h6 {
    font-family: Inter-Regular;
}

h1 {
    font-family: Aclonica-Regular;
    font-size: 55px;
    font-weight: 100;
    line-height: 55px;
}

h3 {
    font-family: Inter-SemiBold;
    margin-bottom: 0 !important;
}

h2 {
    font-family: Aclonica-Regular;
    font-size: 34px !important;
    font-weight: 100;
    line-height: 48px;
}

h2 span {
    color: #c5a797;
}

/* header */

.fr-und-ln.active {
    color: #652368 !important;
    font-family: inter-medium;
    position: relative;
}

.fr-und-ln.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    right: 0;
    left: 0;
    border-radius: 10px;
    bottom: -3px;
    margin: 0 auto;
    position: absolute;
    background: #652368;
}

.fl {
    height: 100%;
    width: 100%;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none !important;
}

.fl ul li {
    list-style: none !important;
    margin: 40px 0;
}

.fl span {
    display: inline-block;
}

.mb-menu a {
    text-decoration: none !important;
    color: #fff;
    transition: all 0.3s;
}

.mb-menu li a {
    font-size: 20px;
    /* font-weight: bold; */
    /* padding: 10px 0; */
}

.nv-container,
.nv-menu-wrapper {
    height: 100%;
}

.hamburger-init {
    /* width: 35px; */
    height: 30px;
    position: relative;
    cursor: pointer;
    z-index: 3;
    display: none;
}

.bar {
    position: absolute;
    height: 3px;
    width: 100%;
    background: #ffffff;
    transition: all 0.3s;
}

.hamburger {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
    width: fit-content;
}

.hamburger .line {
    fill: none;
    stroke: #000000;
    stroke-width: 6;
    transition:
        stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hdr-pln .hamburger .line {
    fill: none;
    stroke: #ffffff;
    stroke-width: 6;
    transition:
        stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
        stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger .line1 {
    stroke-dasharray: 55 207;
    stroke-width: 4;
}

.hamburger .line2 {
    stroke-dasharray: 55 60;
    stroke-width: 4;
}

.hamburger .line3 {
    stroke-dasharray: 55 207;
    stroke-width: 4;
}

.hamburger.open .line1 {
    stroke-dasharray: 60 160;
    stroke-dashoffset: -140;
    stroke-width: 4;
    stroke: #ffffff;
}

.hamburger.open .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 4;
}

.hamburger.open .line3 {
    stroke-dasharray: 60 207;
    stroke-dashoffset: -142;
    stroke-width: 4;
    stroke: #ffffff;
}

.nv-menu-wrapper {
    background: rgb(0, 0, 0);
    transition: all 0.3s;
    transform: scale(0);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.nv-menu-wrapper.visible {
    transform: scale(1);
    border-radius: 0;
}

.mb-menu {
    position: absolute;
    max-width: 400px;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nv-menu-wrapper li {
    opacity: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.mb-menu.menu-active li:nth-child(1) {
    animation: moveItems 0.5s linear 0s forwards;
}

.mb-menu.menu-active li:nth-child(2) {
    animation: moveItems 0.5s linear 0.2s forwards;
}

.mb-menu.menu-active li:nth-child(3) {
    animation: moveItems 0.5s linear 0.5s forwards;
}

.mb-menu.menu-active li:nth-child(4) {
    animation: moveItems 0.5s linear 0.8s forwards;
}

.mb-menu.menu-active li:nth-child(5) {
    animation: moveItems 0.5s linear 1s forwards;
}

.mb-menu.menu-active li:nth-child(6) {
    animation: moveItems 0.5s linear 1.4s forwards;
}

.mb-menu.menu-active li:nth-child(7) {
    animation: moveItems 0.5s linear 1.7s forwards;
}

.menu-item-has-children {
    position: relative;
}

/* Animations */

@keyframes rotateHamburger {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(180deg);
    }
}

@keyframes moveItems {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    30% {
        transform: translateY(-15px);
        opacity: 0.2;
    }

    50% {
        transform: translateY(-10px);
        opacity: 0.3;
    }

    80% {
        transform: translateY(-5px);
        opacity: 0.4;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes showClickGuide {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* .header {
    padding: 15px 0 10px 0;
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 4;
} */

.fr-up {
    overflow: hidden;
    padding-left: 50px;
    margin-left: -50px;
}

.msk {
    position: relative;
    width: 100%;
    overflow: hidden;
    visibility: hidden;
}

.header-tp {
    padding: 10px 0;
    width: 100%;
    background-color: #ddd4cf;
}

.hdr-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hdr-tp-lft {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hdr-tp-rgt {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hdr-tp-lft-inr-flx {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hdr-tp-lft-inr-flx p {
    color: #000;
}
.hdr-tp-lft-inr-flx i {
    color: #000;
}

.hdr-tp-rgt-inr-flx {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hdr-tp-rgt-inr-flx i {
    font-size: 22px;
    color: #000;
}

.hdr-logo img {
    height: 50px;
    object-fit: contain;
}

.hdr-btm {
    padding: 30px 0 60px 0;
    background-image: linear-gradient(to bottom, #000, #00000000);
    position: absolute;
    top: 42px;
    left: 0;
    right: 0;
    z-index: 1;
}

.hdr-btm-flx {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pages ul {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 0 !important;
}

.pages ul li a p {
    color: #fff;
    font-size: 15px;
}

.hdr-cnt-btn p {
    padding: 10px 30px;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
    width: fit-content;
}

.hdr-btm-rgt {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Menu Button */
.menu-btn2 {
    /* position: fixed; */
    top: 20px;
    right: 20px;
    z-index: 1001;
    width: 30px;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

.menu-btn2 span {
    display: block;
    height: 3px;
    background: #ffffff;
    margin: 6px 0;
    transition: 0.3s;
}

/* Overlay */
.menu-overlay2 {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 1000;
}
.sldr-scl h3 {
    font-size: 18px !important;
}
.sldr-scl ul {
    margin-top: 20px !important;
}
.sldr-scl li {
    margin: 10px 0 !important;
}
.sldr-scl a {
    font-size: 15px !important;
}

/* Menu */
.mobile-menu2 {
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1002;
    padding: 30px;
}

/* Active State */
.mobile-menu2.active {
    transform: translateX(0);
}

.menu-overlay2.active {
    opacity: 1;
    visibility: visible;
}

/* Menu Content */
.mobile-menu2 ul {
    list-style: none;
    padding: 0;
}

.mobile-menu2 li {
    margin: 20px 0;
}

.mobile-menu2 a {
    text-decoration: none;
    font-size: 18px;
    color: #000;
}

.mobile-menu2 ul li p {
    font-size: 16px;
}

.mobile-menu2 ul {
    margin-top: 50px;
}

/* Close Button */
.close-btn2 {
    background: none;
    border: none;
    font-size: 28px;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

/* ----------------header close -------------- */

/*------------------ index ------------------ */

.ind1 {
    height: 96vh;
    width: 100%;
    background-image: url(..//imgs/bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.ind1::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #00000034;
}

.ind1-cont-flx {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mn-cont-fl {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mn-cont {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    background-color: #0000004d;
    padding: 40px 50px;
    backdrop-filter: blur(5px);
    border-radius: 30px;
    border: 1px solid #fff;
    color: #fff;
    margin-top: 100px;
    box-shadow: 0px 0px 10px #00000047;
    position: relative;
    z-index: 2;
}

.mn-cont-rgt {
    height: 350px;
    width: 50%;
}

.mn-cont-rgt img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #fff;
}

.mn-cont-lft {
    width: 50%;
    height: fit-content;
}

.mn-btns {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.mn-btns p {
    padding: 8px 30px;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
    width: fit-content;
    box-shadow: 0px 0px 10px #00000047;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.mn-btns p::after {
    content: "";
    position: absolute;
    height: 190px;
    width: 104%;
    bottom: -169px;
    border-radius: 50%;
    left: -156px;
    background-color: #ddbdab;
    transition: 0.3s;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.mn-btns p:hover::after {
    width: 104% !important;
    width: 0;
    bottom: -74px;
    left: -4px;
    transition: all 0.4s ease-in-out;
}

.mn-btns p:hover {
    color: #000000;
}

.mn-btn1 p {
    backdrop-filter: blur(3px);
}

.mn-hlt {
    background-image: linear-gradient(to bottom, #fbe9de, #c39e89);
    padding: 8px 20px;
    width: fit-content;
    border-radius: 5px;
    margin-top: 18px;
    box-shadow: 0px 0px 10px #00000047;
}

.mn-hlt p {
    color: #000;
    font-weight: 600;
}

.ind2 {
    padding: 100px 0;
}

.sec-tab {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sec-tab-ln {
    height: 4px;
    background-color: #c5a797;
    margin: 3px 0;
}

.sec-tab-ln.ln1 {
    width: 35px;
}

.sec-tab-ln.ln2 {
    width: 25px;
}

.sec-tab-ln.ln3 {
    width: 15px;
}

.sec-tab h3 {
    font-size: 18px;
    color: #c5a797;
}

.ind-tp-bx {
    width: 340px;
    height: 180px;
    background-color: #f6f2ef;
    position: absolute;
    top: -100px;
    left: -20px;
    z-index: -1;
}

.ind2-cont {
    position: relative;
}

.ind2-cont h2 {
    margin: 10px 0;
}

.ind2-cont-rgt-img {
    width: 100%;
}

.ind2-cont-rgt-img img {
    width: 100%;
    object-fit: contain;
}

.ind2-cont-rgt {
    position: relative;
}

.dt-img {
    width: 250px;
    object-fit: contain;
    position: absolute;
    bottom: -20px;
    left: 30px;
    z-index: -1;
}

.ind2-cont-rgt-rnd {
    width: 160px;
    height: 160px;
    border-radius: 100%;
    background-color: #ddd4cf;
    border: 3px solid #fff;
    position: absolute;
    top: -40px;
    right: 80px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ind2-cont-rgt-rnd h3 {
    color: #000000;
    font-size: 23px;
}

.ind2-cont-rgt-rnd h3 span {
    font-size: 17px;
}

.ind2-pnt-rnd {
    height: 12px;
    width: 8px;
    background-color: #c39e89;
    border-radius: 10px;
}

.ind2-pnt-flx {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.ind2-pnt-flx h3 {
    font-size: 17px;
    color: #a67d67;
}

.ind2-pnts {
    margin-top: 20px;
}
.ind2-btn {
    width: fit-content;
}

.ind2-btn p {
    padding: 8px 30px;
    border-radius: 50px;
    background-image: linear-gradient(to bottom, #ddd4cf, #b39d91);
    width: fit-content;
    margin: 10px 0;
    color: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: 0px 0px 5px #b39d91;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}

.ind2-btn p::after {
    content: "";
    position: absolute;
    height: 190px;
    width: 104%;
    bottom: -169px;
    border-radius: 50%;
    left: -156px;
    background-color: #ffffff;
    transition: 0.3s;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.ind2-btn p:hover::after {
    width: 104% !important;
    width: 0;
    bottom: -74px;
    left: -4px;
    transition: all 0.4s ease-in-out;
}

.ind2-btn p:hover {
    color: #000000;
}

.ind2-bg-txt {
    font-size: 130px !important;
    color: #f7f7f7;
    position: absolute;
    top: 39%;
    left: 21%;
    z-index: -1;
}

.ind3 {
    padding: 80px 0;
    position: relative;
}

.ind3-cont h2 {
    max-width: 730px;
    margin: 10px 0;
    font-size: 46px !important;
}

.ind3-h3 {
    font-size: 15px;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 30px !important;
    left: 80px;
    width: fit-content;
}

.ind3-h3::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #000000;
    bottom: -5px;
    left: -50px;
    z-index: -1;
}

.ind3-cont p {
    max-width: 600px;
    position: relative;
    left: 25%;
    margin-top: 70px;
}

.ind3-trngl1 {
    width: 700px;
    height: 700px;
    background-color: #fafafa;
    position: absolute;
    left: 0;
    top: -80px;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.ind3-trngl2 {
    width: 44%;
    height: 42vw;
    background-color: #fafafa;
    position: absolute;
    right: 0;
    top: 30px;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    background-image: url(..//imgs/2.jpg);
    background-position: -20% 0%;
    background-size: cover;
    background-repeat: repeat;
}

.ind3-cont {
    margin-top: 130px;
}

.ind3-ln1 {
    width: 2px;
    height: 300px;
    background-color: #000000;
    position: absolute;
    top: 0;
    right: 50%;
    z-index: -1;
}

.ind3-ln1 {
    width: 1px;
    height: 105%;
    background-color: #d1d1d1;
    position: absolute;
    top: 12px;
    right: 31%;
    z-index: -1;
    rotate: -47deg;
}

.ind3-ln2 {
    width: 1px;
    height: 91%;
    background-color: #d1d1d1;
    position: absolute;
    top: -97px;
    right: 42%;
    z-index: -1;
    rotate: -47deg;
}

.ind3-sml-bx-flx {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 0;
}

.ind3-sml-bx {
    width: 12px;
    height: 12px;
    background-color: #a67d67;
}

.ind4-cont-lft-img {
    width: 100%;
    height: 500px;
}

.ind4-cont-lft-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ind4 {
    padding: 130px 0 80px 0;
}

.ind4-cont-rgt {
    padding-left: 15px;
}

.ind4-cont-rgt .row {
    justify-content: left;
}

.ind4-cont-rgt h2 {
    margin: 10px 0;
}

.ind4-cont-lft {
    position: relative;
    padding-right: 50px;
}

.hlf-rnd {
    width: 220px;
    object-fit: contain;
    position: absolute;
    top: -100px;
    right: -50px;
    z-index: -2;
}

.ind4-trngl1 {
    width: 300px;
    height: 300px;
    background-color: #353535;
    position: absolute;
    top: -20px;
    right: 30px;
    z-index: -1;
    clip-path: polygon(0% 0%, 100% 0, 100% 100%);
}

.ind4-trngl2 {
    width: 300px;
    height: 300px;
    background-color: #353535;
    position: absolute;
    bottom: -20px;
    left: -20px;
    z-index: -1;
    clip-path: polygon(0% 100%, 0% 0, 100% 100%);
}

.ind4-pnt-flx h2 {
    font-size: 19px !important;
    color: #c5a797;
}

.ind4-cont-rgt .row {
    margin-top: 20px;
}

.ind4-pnt-flx {
    margin: 10px 0;
}

.ind4-btn p {
    padding: 8px 30px;
    border-radius: 50px;
    background-image: linear-gradient(to bottom, #ddd4cf, #b39d91);
    width: fit-content;
    margin: 10px 0;
    color: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: 0px 0px 5px #b39d91;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.ind4-btn p::after {
    content: "";
    position: absolute;
    height: 190px;
    width: 104%;
    bottom: -169px;
    border-radius: 50%;
    left: -156px;
    background-color: #ffffff;
    transition: 0.3s;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}

.ind4-btn p:hover::after {
    width: 104% !important;
    width: 0;
    bottom: -74px;
    left: -4px;
    transition: all 0.4s ease-in-out;
}

.ind4-btn p:hover {
    color: #000000;
}

/* ----------------goto------------------------- */

.goto-flx {
    display: flex;
    gap: 20px;
}

.goto-inr-flx {
    display: flex;
    gap: 70px;
    align-items: center;
}

.gap-ln {
    width: 2px;
    height: 100%;
    background-color: #eae8e8;
}

.wth-pls {
    display: flex;
    align-items: baseline;
    justify-content: left;
    gap: 5px;
}

.count2 span {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
}

.goto {
    display: flex;
    gap: 20px;
    width: fit-content;
    margin-top: 50px;
    width: 100%;
    padding: 40px 35px;
    justify-content: center;
    z-index: 2;
    position: relative;
    border-radius: 7px;
    border: 1px solid #fff;
    margin-bottom: 50px;
    margin-top: 20px;
}

.wth-pls span .sqm {
    font-size: 16px !important;
}

.wth-pls .sqm-flx {
    display: flex;
    gap: 5px;
}

.goto .count {
    font-size: 65px !important;
    font-weight: 100;
    color: transparent;
    -webkit-text-stroke: 1px #b39d91;
    font-family: Aclonica-Regular;
}

.goto .count-txt {
    font-size: 57px !important;
    font-weight: 100;
    color: #b39d91;
}

.wth-pls span p {
    font-size: 37px !important;
    font-weight: 600;
    color: #b39d91;
}

.count2 p {
    margin-top: 20px !important;
    max-width: 225px;
    font-size: 14px !important;
    line-height: 18px;
    font-weight: 600;
    color: #464646;
    margin-bottom: 0 !important;
}

.count2 {
    margin: 5px 0;
    min-width: 150px;
}

.count2 h2 {
    font-size: 45px;
}

.wth-pls span {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ----------------------------------------- */

.ind5-cont {
    position: relative;
}

.ind5-cont::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #e6e6e6;
    position: absolute;
    bottom: -10px;
    left: 0px;
    z-index: -1;
}

.ind6 {
    padding: 80px 0;
    position: relative;
}

.ind6-cont-lft h2 {
    margin: 15px 0;
    max-width: 520px;
}

.ind6-cont-rgt p {
    text-align: end;
    max-width: 600px;
    margin-left: auto;
}

.prdct-slider {
    margin-top: 50px;
}

.prdct-slider .item {
    width: 100%;
    height: 260px;
    margin: 0 10px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.prdct-slider .item::after {
    content: "";
    width: 100%;
    height: 70%;
    background-image: linear-gradient(to top, #000, #0000);
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.prdct-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prdct-slider-cont {
    position: absolute;
    bottom: -70px;
    left: 0;
    width: 100%;
    padding: 20px 30px;
    text-align: center;
    color: #ffffff;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

.prdct-slider-nm h3 {
    font-size: 20px !important;
}

.prdct-slider-nm {
    margin-bottom: 40px !important;
    transition: all 0.3s ease-in-out;
}

.prdct-slider-btn p {
    padding: 8px 20px;
    background-image: linear-gradient(to bottom, #ddd4cf, #b39d91);
    width: fit-content;
    margin: 10px auto;
    border-radius: 5px;
    color: #ffffff;
}

.prdct-slider .item:hover .prdct-slider-cont {
    bottom: 8px;
    transition: all 0.3s ease-in-out;
}

.prdct-slider .item:hover .prdct-slider-nm {
    margin-bottom: 20px !important;
    transition: all 0.3s ease-in-out;
}

.ind7 {
    padding: 80px 0;
    position: relative;
    background-color: #fdf9f6;
    min-height: 500px;
}

.ind7-bg-lft {
    position: absolute;
    top: 0px;
    left: 0px;
    /* z-index: -1; */
    width: 250px;
    object-fit: contain;
}

.ind7-bg-rgt {
    position: absolute;
    top: 0px;
    right: 0px;
    /* z-index: -1; */
    width: 250px;
    object-fit: contain;
}
.ind7-hdng p {
    max-width: 500px;
    margin-left: auto;
}

.ind7-cont h2 {
    max-width: 600px;
    margin: 10px 0;
}

.ind7-btn p {
    padding: 8px 30px;
    border-radius: 50px;
    background-image: linear-gradient(to bottom, #ddd4cf, #b39d91);
    width: fit-content;
    margin: 10px 0;
    color: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: 0px 0px 5px #b39d91;
    margin-top: 30px;
    max-width: 500px;
    margin-left: auto;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.ind7-btn p::after {
    content: "";
    position: absolute;
    height: 190px;
    width: 104%;
    bottom: -169px;
    border-radius: 50%;
    left: -156px;
    background-color: #ffffff;
    transition: 0.3s;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}
.ind7-btn p:hover::after {
    width: 104% !important;
    width: 0;
    bottom: -74px;
    left: -4px;
    transition: all 0.4s ease-in-out;
}
.ind7-btn p:hover {
    color: #000000;
}

.ind7-cont-bx-fl {
    padding: 15px;
    /* padding-bottom: 70px; */
    background-color: #ffffff;
    box-shadow: 0px 0px 10px #00000027;
    border-radius: 10px;
    position: relative;
}

.ind7-cont-bx-img {
    width: 100%;
    height: 200px;
}

.ind7-cont-bx-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.ind7-cont-bx-inr-cont h3 {
    font-size: 20px !important;
    margin: 10px 0;
}

.ind7-cont-bx-inr-cont h4 {
    font-size: 15px !important;
    font-weight: 600 !important;
    margin: 10px 0;
}

.ind7-cont-bx-inr-cont h3 span {
    font-size: 25px !important;
    color: #b39d91;
    font-weight: 600 !important;
}

.ind7-cont-bx-inr-cont-flx {
    display: flex;
    align-items: start;
    gap: 10px;
    margin: 15px 0;
}

.ind7-cont-bx-inr-cont-rnd {
    height: 12px;
    width: 8px;
    background-color: #b39d91;
    border-radius: 10px;
    flex-shrink: 0;
}

.ind7-cont-bx-inr-cont-flx p {
    margin-top: -5px;
    font-size: 13px;
}

.ht-2 {
    margin-top: 50px;
}

.ht-3 {
    margin-top: 100px;
}

.ht-4 {
    margin-top: 150px;
}

.ind7-cont-bx-inr-cont h2 {
    font-size: 50px !important;
    color: #f7f7f7;
    position: absolute;
    bottom: 0px;
    right: 20px;
}

.ind8 {
    padding: 80px 0;
    position: relative;
}

.ind8-cont {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.ind8-cont-rgt {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
}

.ind8-cont-lft {
    max-width: 430px;
    padding-top: 50px;
}

.ind8-cont-lft h2 {
    margin: 10px 0;
}

.ind8-btn p {
    padding: 8px 30px;
    border-radius: 50px;
    background-image: linear-gradient(to bottom, #ddd4cf, #b39d91);
    width: fit-content;
    margin: 10px 0;
    color: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: 0px 0px 5px #b39d91;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}
.ind8-btn p::after {
    content: "";
    position: absolute;
    height: 190px;
    width: 104%;
    bottom: -169px;
    border-radius: 50%;
    left: -156px;
    background-color: #ffffff;
    transition: 0.3s;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}
.ind8-btn p:hover::after {
    width: 104% !important;
    width: 0;
    bottom: -74px;
    left: -4px;
    transition: all 0.4s ease-in-out;
}
.ind8-btn p:hover {
    color: #000000;
}

.ind8-cont-rgt {
    width: 100%;
    height: 500px;
    position: relative;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 0px 10px #0000001f;
    margin-left: 50px;
    padding: 20px;
}

.ind8-cont-rgt-inr-lft {
    height: 100%;
    width: 350px;
    overflow-y: scroll;
    border-radius: 10px;
    flex-shrink: 0;
    padding-right: 5px;
}

.ind8-cont-rgt-inr-lft-flx {
    display: flex;
    gap: 9px;
    align-items: center;
    flex-wrap: wrap;
}

.ind8-cont-rgt-inr-lft-flx-bx {
    width: 48%;
    height: 200px;
    margin: 5px 0;
    position: relative;
}

.ind8-cont-rgt-inr-lft-flx-bx::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-image: linear-gradient(to top, #000, #00000000);
    border-radius: 10px;
    border-radius: 0 0 10px 10px;
}

.ind8-cont-rgt-inr-lft-flx-bx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.dtl-slct {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 10px;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    z-index: 1;
    color: #ffffff;
}

.ind8-cont-rgt-inr-rgt {
    width: 100%;
    padding: 20px;
    padding-right: 0;
}

.ind8-cont-rgt-inr-rgt-lft input {
    height: 35px;
    border: 1px solid #b39d91;
    border-radius: 5px;
    padding: 0 10px;
    width: 100%;
    margin-bottom: 10px;
    outline: none;
}

.ind8-cont-rgt-inr-rgt-lft label {
    font-size: 13px;
}

.ind8-cont-rgt-inr-rgt-lft p {
    font-size: 13px;
    color: #777777;
}

.bt-ln {
    height: 1px;
    width: 100%;
    background-color: #afafaf;
    margin-top: 30px;
}

.bt-ln2 {
    height: 1px;
    width: 80%;
    background-color: #afafaf;
    margin: 0 auto;
    margin-top: 10px;
}
.amn-bx-scl {
    height: 300px;
    overflow-y: scroll;
    margin-top: 10px;
}
.amnd-bx {
    padding: 10px 20px 10px 10px;
    background-color: #f8f8f8;
    width: 100%;
    border-radius: 8px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: relative;
}
.amnd-bx-img {
    width: 60px;
    height: 70px;
    flex-shrink: 0;
}
.amnd-bx-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amnd-bx h3 {
    font-size: 15px;
}

.add-img {
    width: 100%;
}

.add-img img {
    width: 100%;
    object-fit: contain;
}

.add {
    padding-bottom: 50px;
}

.ind9 {
    padding: 80px 0;
    position: relative;
    box-shadow: 0px 0px 10px #0000001f;
    background-color: #ffffff;
}

.ind9-hdng {
    text-align: center;
    margin-bottom: 30px;
}

.ind9-hdng p {
    max-width: 700px;
    margin: 0 auto;
}

.calendar-container {
    width: 100%;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.calendar-header h2 {
    font-size: 25px !important;
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #d6c8c8;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6a5555;
    font-size: 15px;
    transition: 0.3s;
}

.nav-btn:hover {
    background: #f1e7e7;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.day-card {
    height: fit-content;
    border-radius: 8px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    padding: 0px 10px 23px;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.day-card:hover {
    transform: translateY(-3px);
}

.day-number {
    font-size: 25px;
    font-weight: bold;
    color: #1a0505;
    text-align: center;
}

.day-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: #ffffff;
    padding: 0 5px;
    /* border-radius: 0 0 8px 8px; */
    background-image: linear-gradient(to top, #121212, #989898);
}

.day-name p {
    font-size: 11px;
    margin-bottom: 0;
}

.empty {
    visibility: hidden;
}

#monthYear {
    margin-bottom: 0 !important;
}

/* TODAY */
.today {
    border: 2px solid #5c5c5c;
    background: #fff4f4;
}

/* SELECTED DATE */
.selected-date {
    background: #2b0f0f;
}

.selected-date .day-number {
    color: #fff;
}

.selected-date .day-name {
    background-image: linear-gradient(to top, #000, #3d3d3d);
}

/* PREVIOUS DAYS */
.past-day {
    opacity: 0.35;
    pointer-events: none;
}

.time-sec {
    padding: 20px;
    margin-top: 10px;
}

.time-sec h3 {
    font-size: 17px;
}

.time-bx {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.time-bx p {
    padding: 7px 20px;
    box-shadow: 0px 0px 5px #0000001f;
    border-radius: 5px;
    margin: 5px;
    border: 1px solid #0000001f;
    cursor: pointer;
    font-size: 14px;
    width: fit-content;
    transition: 0.3s;
}

.time-bx p.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.ind9-cont-rgt {
    width: 100%;
    padding-top: 75px;
}

.inp-div {
    margin: 5px 0;
}

.inp-div input {
    width: 100%;
    height: 40px;
    border: 1px solid #00000044;
    border-radius: 30px;
    padding: 0 15px;
    font-size: 14px;
}

.inp-div input:focus {
    outline: #b39d91;
}

.inp-div textarea {
    min-width: 100%;
    max-width: 100%;
    min-height: 100px;
    max-height: 150px;
    border: 1px solid #00000044;
    border-radius: 30px;
    padding: 15px;
    font-family: Inter-Regular;
    outline: #b39d91;
    font-size: 14px;
}

.inp-div label {
    font-size: 14px;
    color: #727272;
    margin-bottom: 8px;
}

.ind9-frm-btn {
    padding: 8px 30px;
    border-radius: 50px;
    background-image: linear-gradient(to bottom, #ddd4cf, #b39d91);
    width: fit-content;
    margin: 10px 0;
    color: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: 0px 0px 5px #b39d91;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}
.ind9-frm-btn p {
    color: #ffffff;
    transition: all 0.4s ease-in-out;
}
.ind9-frm-btn::after {
    content: "";
    position: absolute;
    height: 190px;
    width: 104%;
    bottom: -169px;
    border-radius: 50%;
    left: -156px;
    background-color: #ffffff;
    transition: 0.3s;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}
.ind9-frm-btn:hover::after {
    width: 104% !important;
    width: 0;
    bottom: -74px;
    left: -4px;
    transition: all 0.4s ease-in-out;
}
.ind9-frm-btn:hover p {
    color: #000000;
}

.ind10 {
    padding: 80px 0;
}

.ind10-hdng {
    text-align: center;
}

.ind10-hdng p {
    max-width: 700px;
    margin: 0 auto;
}

.testimoni {
    margin-top: 50px;
}

.testi-hdr {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-right: 30px;
}

.testi-prfl {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-prfl img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.testi-prfl h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0px;
}

.ratng-str {
    display: flex;
    align-items: center;
    gap: 5px;
}

.testi-prfl {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}
.prfl-rnd {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.prfl-rnd.clr1 {
    background-color: #1fcdd3;
    color: #ffffff;
}

.ratng-str i {
    color: #f0c000;
    font-size: 15px;
}

.test-cont {
    padding: 20px;
}

.testi-cont p {
    font-style: italic;
}

.ggl-ic img {
    width: 30px;
    object-fit: contain;
    margin-top: 12px;
}

.testi-btns p {
    padding: 10px 40px;
    border-radius: 50px;
    background-image: linear-gradient(to bottom, #ddd4cf, #b39d91);
    width: fit-content;
    margin: 10px auto;
    color: #ffffff;
    border: 1px solid #ffffff;
    box-shadow: 0px 0px 5px #b39d91;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.testi-btns p::after {
    content: "";
    position: absolute;
    height: 190px;
    width: 104%;
    bottom: -169px;
    border-radius: 50%;
    left: -156px;
    background-color: #ffffff;
    transition: 0.3s;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}
.testi-btns p:hover::after {
    width: 104% !important;
    width: 0;
    bottom: -74px;
    left: -4px;
    transition: all 0.4s ease-in-out;
}
.testi-btns p:hover {
    color: #000000;
}

/* -------------- index close ----------- */

/* -----------------about ------------------*/

.page-header {
    height: 350px;
    width: 100%;
    background-image: url(..//imgs/12.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: end;
    background-position: 50% 100%;
    position: relative;
}

.page-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-image: linear-gradient(to top, #000, #00000000);
}

.brd-crmb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}

.page-header-cont {
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-header-cont p {
    color: #ffffff;
}

.page-header-cont i {
    color: #ffffff;
}

.page-header-cont h2 {
    color: #ffffff;
}

.abt1 {
    padding: 80px 0 30px 0;
}

.abt1-cont-lft-flx {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.abt1-cont-lft-flx.fr-rvrs-mrgn {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.abt1-cont-lft {
    position: relative;
}

.abt-img1 {
    width: 220px;
    height: 230px;
    object-fit: cover;
    margin-bottom: -50px;
    margin-left: 70px;
}

.abt-img2 {
    width: 320px;
    height: 290px;
    object-fit: cover;
}

.abt-img4 {
    width: 220px;
    height: 250px;
    object-fit: cover;
    margin-top: -50px;
    margin-right: 30px;
}

.abt-img3 {
    width: 360px;
    height: 300px;
    object-fit: cover;
}

.abt1-cont-rgt {
    padding-left: 50px;
}

.fr-btm {
    margin-bottom: 70px;
}

.abt-dt {
    position: absolute;
    width: 250px;
    object-fit: contain;
    top: 30%;
    left: 150px;
    z-index: -1;
}

.abt2 {
    padding: 30px 0;
}

.abt3 {
    padding: 30px 0 80px 0;
}

.abt3-cont-hdng {
    text-align: center;
    margin-bottom: 30px;
}

.abt3-cont-hdng p {
    max-width: 700px;
    margin: 0 auto;
}

.team-slder .item {
    height: 320px;
    width: 100%;
    margin: 0 10px;
    position: relative;
}

.team-slder .item::after {
    content: "";
    width: 100%;
    height: 60%;
    background-image: linear-gradient(to top, #000, #00000000);
    bottom: 0;
    left: 0;
    position: absolute;
    border-radius: 0 0 10px 10px;
}

.team-slder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.team-dtls {
    position: absolute;
    bottom: 20px;
    left: 25px;
    width: fit-content;
    z-index: 1;
}

.team-dtls h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 5px !important;
}

.team-dtls p {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 0px;
}

/* --------------about close---------------*/

/*--------------- products --------------- */

.prdct1 {
    padding: 40px 0 80px 0;
}

.prdct-slder .item {
    height: 250px;
    width: 100%;
    position: relative;
}

.prdct-slder .item::after {
    content: "";
    width: 100%;
    height: 60%;
    background-image: linear-gradient(to top, #000, #00000000);
    bottom: 0;
    left: 0;
    position: absolute;
    border-radius: 0 0 10px 10px;
}

.prdct-slder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.prdct-hdng {
    padding: 50px 0 30px 0;
}

.prdct-hdng h2 {
    font-size: 30px !important;
}

.prdct-itm-img {
    position: relative;
    overflow: hidden;
}

.prdct-itm-img:after {
    content: "";
    padding-top: 80%;
    display: block;
}

.prdct-itm-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    border-radius: 8px;
}

.prdct-itm-dtls h4 {
    font-size: 19px;
    margin-bottom: 5px;
    font-weight: 600 !important;
    margin: 8px 0;
}

.prdct-itm-dtls h5 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600 !important;
    margin: 8px 0;
}

.prdct-itm-dtls p {
    font-size: 15px;
    margin-bottom: 5px !important;
}

.prdct-itm-dtls h6 {
    margin-bottom: 0px !important;
    font-size: 14px;
}

.prdct-itm-dtls-flx {
    display: flex;
    align-items: center;
    gap: 10px;
}

.prdct-btn p {
    padding: 6px 20px;
    border-radius: 50px;
    background-image: linear-gradient(to bottom, #ddd4cf, #b39d91);
    width: fit-content;
    margin: 5px 0;
    color: #ffffff;
    border: 1px solid #ffffff;
    font-size: 13px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
    box-shadow: 0px 0px 8px #0000001f;
}

.prdct-btn p::after {
    content: "";
    position: absolute;
    height: 190px;
    width: 104%;
    bottom: -169px;
    border-radius: 50%;
    left: -156px;
    background-color: #ffffff;
    transition: 0.3s;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}
.prdct-btn p:hover::after {
    width: 104% !important;
    width: 0;
    bottom: -74px;
    left: -4px;
    transition: all 0.4s ease-in-out;
}
.prdct-btn p:hover {
    color: #000000;
}

.prdct-itm-bx {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #e6e6e6;
    box-shadow: 0px 0px 5px #e6e6e6;
    margin-bottom: 25px;
}

.prdct-itms-sec .row {
    justify-content: left !important;
}

/*------------ products Close ------------ */

/*--------------- products dtls -------------- */

.prdct-dtl1 {
    padding: 80px 0;
}

.prdct-dtl-lft {
    display: flex;
    align-items: start;
    gap: 10px;
    position: relative;
}

.prdct-dtl-lft img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.prdct-dtl-rgt {
    padding-top: 20px;
}

.prdct-dtl-rgt h2 {
    margin: 10px 0;
    font-size: 28px !important;
}

.prdct-dtl-mn {
    /* max-width: 30vw; */
    width: 100%;
    max-height: 32vw;
    /* height: 100%; */
    position: relative;
    cursor: crosshair;
}

.prdct-dtl-mn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: crosshair;
    border-radius: 5px;
}

.prdct-dtl-lft {
    /* height: 100%; */
    display: flex;
    gap: 10px;
    padding: 10px;
    border: 1px solid #999999;
    border-radius: 5px;
    position: relative;
}

.prdct-dtl-sub-prdct {
    max-height: 27vw;
    overflow-y: scroll;
    height: 100%;
    padding-right: 5px;
    flex-shrink: 0;
}

.prod1-lft-sub-img {
    width: 130px;
    height: 130px;
    margin-bottom: 10px;
    cursor: pointer;
}
.prod1-lft-sub-img.active {
    border: 2px solid #000;
}

.prod1-lft-sub-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* === ABSOLUTE RIGHT-SIDE ZOOM BOX === */
.zoom-popup {
    position: absolute;
    width: 30vw;
    height: 60vh;
    border: 1px solid #ccc;
    background-repeat: no-repeat;
    background-color: #fff;
    display: none;
    pointer-events: none;
    border-radius: 6px;
    overflow: hidden;
    z-index: 990;
}

/* Main image zoom */
#zoomPopupMain {
    top: 0;
    left: calc(31vw + 80px);
}

/* Top option image zoom */
#zoomPopupTop {
    top: 0%;
    right: 100%;
    width: 21vw;
    height: 40vh;
}

#zoomLens {
    width: 100px;
    height: 100px;
    position: fixed;
    /* IMPORTANT for perfect tracking */
    pointer-events: none;
    border: 2px solid red;
    display: none;
    box-sizing: border-box;
    z-index: 9999;
}

.prc-dtls {
    display: flex;
    align-items: end;
    gap: 10px;
    margin: 10px 0;
}

.prc-dtls h3 {
    font-size: 21px !important;
    font-weight: 600 !important;
    color: #c5a797;
}

.prc-dtls h4 {
    font-size: 16px !important;
    margin-bottom: 0 !important;
}

.prc-dtls p {
    line-height: 15px;
}

.dtl-undr-ln {
    width: 100%;
    height: 1px;
    background-color: #dedede;
    margin: 25px 0;
}

.dscrptn h3 {
    font-size: 17px !important;
    font-weight: 600 !important;
    color: #c5a797;
    position: relative;
    width: fit-content;
    margin-bottom: 20px !important;
}

.dscrptn h3::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #cfcfcf;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.dtl-pnts-flx {
    display: flex;
    align-items: start;
    gap: 10px;
    margin: 10px 0;
}

.dtl-pnts-flx-rnd {
    height: 15px;
    width: 8px;
    border-radius: 8px;
    background-color: #c5a797;
}

.dtl-pnts-flx h4 {
    font-size: 16px;
    font-weight: 600;
}

.dtl-btns p {
    padding: 8px 20px;
    border-radius: 50px;
    background-image: linear-gradient(to bottom, #ddd4cf, #b39d91);
    width: 100%;
    color: #ffffff;
    border: 1px solid #ffffff;
    text-align: center;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
    box-shadow: 0px 0px 10px #00000047;
}
.dtl-btns p::after {
    content: "";
    position: absolute;
    height: 190px;
    width: 104%;
    bottom: -195px;
    border-radius: 50%;
    left: -266px;
    background-color: #ffffff;
    transition: 0.3s;
    z-index: -1;
    transition: all 0.4s ease-in-out;
}
.dtl-btns p:hover::after {
    width: 104% !important;
    width: 0;
    bottom: -74px;
    left: -4px;
    transition: all 0.4s ease-in-out;
}
.dtl-btns p:hover {
    color: #000000;
}

.dtl-btm-ln {
    width: 80%;
    height: 1px;
    background-color: #dedede;
    margin: 30px auto 0 auto;
}

.prd-dtl-qstn h2 {
    font-size: 28px !important;
}

.prd-dtl-qstn {
    margin-top: 30px;
}

.prd-dtl-qstn-hdng h2 {
    /* text-align: center; */
    margin: 30px 0;
}

.prd-dtl-qstn-bg {
    width: 100%;
    height: 100%;
    padding: 40px 0 80px 0;
    background-color: #f6f6ee;
}

.prdct-dtl2 {
    padding-bottom: 50px;
}

.faq-2 {
    max-width: 900px;
    margin-top: 23px;
    padding-bottom: 5px;
    border-bottom: 1px solid #c5a797;
    cursor: pointer;
}

.qustn header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qustn h3 {
    font-size: 18px;
    margin-bottom: 10px !important;
}

.qustn i {
    color: #c5a797;
}

.faq.active i {
    transform: rotate(180deg);
}

.faq-2 .ansr-2 {
    height: 0;
    transition: all 0.3s linear;
    overflow: hidden;
}

/*------------ products dtls Close ------------ */

/*------------------ gallery ------------------ */

.gal1-cont-img {
    width: 100%;
    height: 550px;
}

.gal1-cont-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.gal1 {
    padding: 80px 0;
}

.gal1-cont-img {
    margin-bottom: 25px;
}

.gal1-cont .row {
    justify-content: left;
}

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden !important;
    position: fixed !important;
    background: #000000d0 !important;
    opacity: 1 !important;
}

.mfp-title {
    display: none !important;
}

img.mfp-img {
    max-height: 90vh !important;
    cursor: auto !important;
    max-width: 1000px !important;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder {
    cursor: auto !important;
}

.mfp-close {
    cursor: pointer !important;
}

.mfp-counter {
    display: none !important;
}

/*--------------- gallery Close --------------- */

/* -------------------faq--------------------- */

.faq1 {
    padding: 80px 0;
}

.faq-hdng {
    text-align: center;
    margin-bottom: 80px;
}

.faq-hdng h2 {
    max-width: 700px;
    margin: 10px auto;
}

.faq-hdng p {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-tabs {
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 40px;
}

.faq-tabs button {
    border: none;
    background-color: transparent;
}

.faq-cont.active {
    display: block;
}
.faq-cont1 {
    display: none;
    margin-top: 50px;
}

.faq-cont1.active {
    display: block;
}

.swpr1 {
    margin-right: 0 !important;
    max-width: 850px;
    width: 100% !important;
    margin: 0 auto !important;
    justify-content: center !important;
}

.mySwiper .swiper-slide {
    background: #ffffff00 !important;
}

.swiper-wrapper {
    justify-content: flex-start;
}

.mySwiper.swpr1 .swiper-slide {
    width: auto !important;
    flex-shrink: 0;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cat-conts {
    margin: 0 20px;
    cursor: pointer;
}

.cat-conts p {
    color: #000000 !important;
}

.swiper-slide {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cat-conts {
    width: fit-content;
    background: #fff;
    padding-bottom: 25px;
}

.tab-btn p {
    width: fit-content;
    position: relative;
    padding-bottom: 10px;
}

.tab-btn p::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 10px;
    clip-path: polygon(50% 100%, 0% 0, 100% 0%);
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    background: #c5a797;
    transition: all 0.3s linear;
    opacity: 0;
}

.tab-btn.active p::after {
    opacity: 1;
}

.faq-undr-ln {
    width: 90%;
    height: 1px;
    margin: 0 auto;
    background: #c5a797;
    margin-top: -65px;
    position: relative;
    z-index: 2;
}

/* ----------------faq close ------------------ */

/* -------------------testimonial------------------ */

.testi1 {
    padding: 80px 0;
}

/* -----------------testimonial close ---------------- */

/* ----------------------contact---------------------- */

.contact1 {
    padding: 80px 0;
    box-shadow: 0px 0px 10px #0000001e;
    margin-top: 80px;
}

/* -------------------contact close------------------- */

/* footer  */

footer {
    padding: 80px 0 40px 0;
    height: 100%;
    width: 100%;
    background-color: #fff9f5;
}

.ftr-logo img {
    width: 100%;
    object-fit: contain;
}

.ftr-logo {
    width: 250px;
    /* margin: 0 auto; */
    margin-bottom: 15px;
}

.ftr-hdr p {
    text-align: center;
}

.ftr-conts {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.ftr-conts-lft {
    width: 42%;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 10px;
}

.ftr-conts-rgt {
    width: 45%;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 10px;
}

/* .ftr-conts{
    margin-top: 50px;
} */
.ftr-conts h3 {
    font-size: 17px;
    margin-bottom: 15px !important;
}

.ftr-conts ul {
    padding-left: 0px;
}

.ftr-conts ul li {
    margin: 20px 0;
}

.ftr-conts ul li a {
    color: #000;
    display: flex;
    align-items: start;
    gap: 10px;
}

.ftr-conts p {
    max-width: 320px;
}

.ftr-conts ul li a i {
    margin-top: 3px;
    font-size: 20px;
}

.copy-rt {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    margin-top: 20px;
}

.copy-rt img {
    height: 16px;
    object-fit: contain;
    position: relative;
}

.copy-rt p {
    font-size: 13px;
    text-align: center;
}

.bk-tp-btn {
    position: fixed;
    right: 60px;
    bottom: 8%;
    z-index: 3;
}

.wtsapp {
    width: 50px;
    object-fit: contain;
    position: fixed;
    right: 30px;
    bottom: 170px;
    z-index: 3;
}

.bk-tp-btn button {
    background-image: linear-gradient(#cfbf93, #817656);
    padding: 5px 10px;
    color: #ffffff;
    border: none;
    border-radius: 7px;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
}

.srv-img-an2 {
    transform: translatey(0px);
    -webkit-animation: float2 3s ease-in-out infinite;
    animation: float2 3s ease-in-out infinite;
}

@keyframes float2 {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-15px);
    }

    100% {
        transform: translatey(0px);
    }
}

/* footer close  */

#loadMoreBtn {
    background-image: linear-gradient(to bottom, #fbe9de, #c39e89);
    border: none;
    padding: 10px 30px;
}
.loadMoreBtn-sec {
    display: flex;
    justify-content: center;
}

/* toggel button */

.hk-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
  position: relative;
  top: -20px;
}
.hk-toggle span {
  font-size: 13px;
  opacity: 0.8;
}

.hk-toggle input {
  display: none;
}
.hk-toggle label {
    width: 45px;
    height: 25px;
    border-radius: 40px;
    position: relative;
    cursor: pointer;
}
.hk-toggle label::after {
    content: "";
    width: 18px;
    height: 18px;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 50%;
    transition: 0.35s;
}

/* 2 iOS */
.hk-tg-2 label {
 background: #cfbf93;
}
.hk-tg-2 label::after {
  background: #fff;
}
/* .hk-tg-2 input:checked + label {
  background: #34c759;
} */
.hk-tg-2 input:checked + label::after {
    transform: translateX(18px);
}



@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(106, 92, 255, 0.7);
  }
  100% {
    box-shadow: 0 0 0 14px rgba(106, 92, 255, 0);
  }
}
.cm-m-prd-txt {
    position: absolute;
    right: 19px;
    bottom: 3px;
    font-size: 12px ! important;
}
