@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;600;700;800;900&display=swap");

/* Start Default */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Cairo", sans-serif;
    direction: rtl;
}

::-moz-selection {
    color: #fff;
    background: #e3ca6f;
}

::selection {
    color: #fff;
    background: #e3ca6f;
}

body {
    width: 100%;
}

body::-webkit-scrollbar {
    width: 5px;
}

body::-webkit-scrollbar-track {
    background: #fff;
}

body::-webkit-scrollbar-thumb {
    background: #e3ca6f;
}

@media (max-width: 900px) {
    body::-webkit-scrollbar {
        width: 0px;
    }
}

html {
    width: 100%;
    scroll-behavior: smooth;
}

html,
body {
    max-width: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}
@media (max-width: 480px) {
    header {
        font-size: 0.85rem;
    }
    .pb50 {
        padding-bottom: 25px !important;
    }
    .Pageheader img,
    .Pageheader {
        min-height: 25vh !important;
        min-height: 25dvh !important;
    }
    .itemsInner .item:has(h1) {
        grid-column: 2 span;
        margin: auto;
    }
    .ser-img::after {
        display: none;
    }
    .cats {
        padding-block: 25px !important;
    }
    .dfc {
        padding-block: 0px !important;
    }
}

a {
    text-decoration: none;
    color: #000;
}

button {
    border: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* clears the â€˜Xâ€™ from Internet Explorer */
input[type="search"]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #333333;
    /* Border color */
    border-radius: 4px;
    outline: none;
    transition: 0.3s;
}

/* Change the color of the checkbox when checked */
input[type="checkbox"]:checked {
    border-color: #333333;
    /* Border color when checked */
    background-color: #333333;
    /* Background color when checked */
}

/* Style the checkmark inside the checkbox */
input[type="checkbox"]::before {
    content: "✓";
    /* Unicode character for checkmark */
    display: block;
    width: 13px;
    height: 13px;
    margin: 2px;
    font-size: 14px;
    color: #fff;
    /* Checkmark color */
    line-height: 16px;
    text-align: center;
    visibility: hidden;
}

/* Show the checkmark when the checkbox is checked */
input[type="checkbox"]:checked::before {
    visibility: visible;
}

input[type="search"]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

/* clears the â€˜Xâ€™ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
}

.js-scroll {
    opacity: 0;
}

.js-scroll.scrolled {
    opacity: 1;
}

.scrolled.fade-left {
    animation: fadeleft 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.scrolled.fade-right {
    animation: faderight 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.scrolled.fade-top {
    animation: fadetop 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.scrolled.fade-btm {
    animation: fadebtm 800ms cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.links .gg {
    max-width: 85px;
    max-height: 85px;
    margin-top: 20px;
}

@media (max-width: 1150px) {
    .links .gg {
        margin-top: 0px;
        margin-bottom: 30px;
    }
    nav {
        height: 130px !important;
    }
}

@keyframes fadeleft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

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

@keyframes faderight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

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

@keyframes fadetop {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

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

@keyframes fadebtm {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

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

.opacity {
    opacity: 0;
}

.opacity-ani {
    opacity: 0;
    animation: opacityani 800ms ease 500ms forwards;
}

@keyframes opacityani {
    100% {
        opacity: 1;
    }
}

/* End Default */
.box {
    max-width: 1400px;
    width: 100%;
    padding: 0 20px;
}

.box2 {
    max-width: 1400px;
    width: 100%;
    padding: 0 20px;
}

.box3 {
    max-width: 1400px;
    width: 100%;
    padding: 0 20px;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background-color: transparent;
    transition: 0.2s;
    z-index: 10;
    background-color: #fff;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.251);
    border-top: 5px solid #caa756;
}

.goTop {
    display: none;
    position: fixed;
    bottom: 5%;
    right: 20px;
    z-index: 5;
}

.goTop span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #1c1e22;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.251);
    cursor: pointer;
    transition: 0.2s;
}

.goTop span:hover {
    background-color: #162135;
}

.goTop span:hover i {
    color: #fff;
}

.goTop span i {
    color: #fff;
    font-size: 1.5em;
}

.f-s {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 70px;
    -o-object-fit: contain;
    object-fit: contain;
}

.links {
    display: flex;
    align-items: center;
}

.mainLinks {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    margin: 0;
}

.link {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.1em;
    color: #333333;
    font-weight: 600;
    text-transform: capitalize;
}

.navdl {
    color: #fff;
}

.link img {
    width: 7px;
}

.link {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    height: 90px;
    gap: 5px;
    transition: 0.3s all ease;
    white-space: nowrap;
    text-decoration: none;
}

.link.active {
    color: #c5af61;
}

.link.active::after {
    left: 0;
}

.menu {
    display: none;
    flex-direction: column;
    position: relative;
    height: 80px;
    width: 35px;
    border: none;
    outline: none;
    background-color: transparent;
}

.menu span {
    height: 2px;
    width: 30px;
    border-radius: 2px;
    background-color: #c5af61;
    position: absolute;
    transition: 0.3s;
}

.menu span:nth-child(1) {
    top: 28px;
}

.menu span:nth-child(2) {
    top: 40px;
}

.menu span:nth-child(3) {
    top: 52px;
}

.activeMenu .box2 .menu span:nth-child(1) {
    transform: rotate(45deg);
    top: 40px;
    background-color: red;
}

.activeMenu .box2 .menu span:nth-child(2) {
    width: 0;
    opacity: 0;
}

.activeMenu .box2 .menu span:nth-child(3) {
    transform: rotate(-45deg);
    background-color: red;
    top: 40px;
}

.ls {
    display: flex;
    gap: 20px;
}

.ls .mLinks {
    display: none;
}

.last {
    display: flex;
    align-items: center;
    gap: 20px;
}

.last .mLinks {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ls {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
}

.home {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-bottom: 7px solid #e3ca6f;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.homeImg {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: left;
    object-position: left;
}

.dn {
    display: none;
}

.md2 {
    display: none;
}

.cart i {
    font-size: 1.5em;
    color: #c5af61;
}

.fxd {
    display: none;
    gap: 10px;
    align-items: center;
}

.fxd .fa-magnifying-glass {
    font-size: 1.7em;
    color: #c5af61;
}

@media (max-width: 400px) {
    .gg {
        width: 100% !important;
        margin: 0 auto 20px auto !important;
    }
}

.swiper {
    width: 100%;
    height: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
@media (min-width: 2100px) {
    .homeSwiper img {
        max-height: calc(50vh - 130px);
    }
}

.homeSwiper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 33vh;
    min-height: 33dvh;
    padding-bottom: 2rem;

    position: relative;
}
.homeSwiper img {
    max-height: calc(100vh - 130px);
}
.homeSwiper,
.homeSwiper img {
    /* max-height: 700px; */
}
.homeSwiper .next,
.homeSwiper .prev {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #333333;
    z-index: 2;
    transition: 0.3s all ease;
    cursor: pointer;
}

.homeSwiper .next:hover,
.homeSwiper .prev:hover {
    background-color: #c5af61;
    border: 2px solid #c5af61;
}

.homeSwiper .next:hover i,
.homeSwiper .prev:hover i {
    color: #fff;
}

.homeSwiper .next i,
.homeSwiper .prev i {
    color: #333333;
    font-size: 1.5em;
    transition: 0.3s all ease;
}

.homeSwiper .next {
    right: 20px;
}

.homeSwiper .prev {
    left: 20px;
}

.homeSwiper .next.swiper-button-disabled {
    opacity: 0.5;
}

.homeSwiper .prev.swiper-button-disabled {
    opacity: 0.5;
}

@media (max-width: 976px) {
    .homeSwiper .next,
    .homeSwiper .prev {
        display: none;
    }
}

.sw {
    overflow: hidden;
}

.sw .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.center {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    /* gap: 20px; */
}

header h1 {
    font-size: 2.5em;
}

header span {
    color: #c5af61;
}
@media (max-width: 768px) {
    .addToCart {
        font-size: 0px !important;
        max-width: fit-content;
        flex-grow: initial;
        gap: 0px !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.cats {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    overflow: hidden;
    gap: 30px;
    flex-wrap: wrap;
}

.cat {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    width: 175px;
    position: relative;
    overflow: hidden;
}
.cat img {
    max-height: 175px !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    width: 100%;
    border: 2px solid #c5af61;
    border-radius: 10px;
}

.cat h1 {
    text-align: center;
    font-size: 1.1em;
    color: #333333;
    font-weight: 500;
}

.homeVideo {
    width: 100%;
}

@media (max-width: 1200px) {
    .homeSwiper {
        height: auto;
    }
}

@media (max-width: 700px) {
    header h1 {
        font-size: 2em;
    }

    header span {
        font-size: 0.9em;
    }
}

@media (max-width: 500px) {
    header h1 {
        font-size: 1.7em;
    }
}

@media (max-width: 500px) {
    .cats {
        gap: 20px;
    }

    /* .cat {
        width: 150px;
        flex-grow: 1;
    } */

    .cat h1 {
        font-size: 0.9em;
    }
    /*
    .cat img {
        height: 180px;
    } */
}

@media (max-width: 370px) {
    header h1 {
        font-size: 1.7em;
    }

    header span {
        font-size: 0.8em;
    }
}

.vanItem {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
    position: relative;
    overflow: hidden;
    flex-direction: column;
}

.vanItem a {
    width: 100%;
    height: 350px;
}

.vanItem a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.vanText {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-top: 10px;
    padding-right: 2px;
}

.vanText p {
    font-size: 1.2em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vanText i {
    font-size: 1.4em;
    cursor: pointer;
    transition: 0.3s all ease;
}

.vanText .fa-solid {
    color: red;
}

.vabprice {
    display: flex;
    justify-content: left;
    width: 100%;
    text-align: left;
    padding-top: 5px;
    font-weight: 500;
    font-size: 1.2em;
}

@media (max-width: 800px) {
    .vanItem {
        width: 300px;
    }

    .vanItem a {
        height: 300px;
    }
}

@media (max-width: 655px) {
    .vanItem {
        width: calc(50% - 10px);
    }

    .vanItem a {
        height: 250px;
    }

    .vanText {
        gap: 5px;
    }

    .vanText p {
        font-size: 1em;
    }

    .vabprice {
        font-size: 1em;
    }
}

@media (max-width: 370px) {
    .vanItem {
        width: 100%;
    }

    .vanItem a {
        height: 300px;
    }
}

.item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
    position: relative;
    overflow: hidden;
    flex-direction: column;
}

.item h3 {
    padding-top: 10px;
    text-align: center;
    font-weight: 400;
    font-size: 1.1em;
}

.item h3:nth-child(3) {
    padding-top: 20px;
}

.item:hover .i {
    top: 15px;
}

.item .i {
    position: absolute;
    top: -70px;
    right: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 4;
    transition: 0.3s all ease;
}

.item .i i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    font-size: 1.7em;
    cursor: pointer;
    color: #000;
    transition: 0.3s all ease;
}

.item .i span {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 40px;
    right: 0;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    background-color: rgba(51, 51, 51, 0.6901960784);
    padding: 10px;
    color: #fff;
    font-size: 0.8em;
    font-weight: 500;
    border-radius: 5px;
    opacity: 0;
    transition: 0.3s all ease;
    white-space: nowrap;
}

.item .aandi,
.item .a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 350px;
    height: 350px;
    position: relative;
    overflow: hidden;
}

.item .aandi a,
.item .a a {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 350px;
    height: 350px;
    position: relative;
}

.item .aandi a img,
.item .aandi a video,
.item .a a img,
.item .a a video {
    width: 100%;
    height: 100%;
    transition: 0.3s all ease;
    -o-object-fit: cover;
    object-fit: cover;
}

.item .aandi button,
.item .a button {
    width: 100%;
    height: 45px;
    background-color: #c5af61;
    color: #333333;
    position: absolute;
    font-weight: 600;
    bottom: -100px;
    transition: 0.4s all ease;
    font-size: 1em;
}

.i.addedToFav i {
    color: red;
}

.item:hover button {
    bottom: 0;
}

.item:hover a img {
    width: 150%;
    height: 150%;
}

.item.addedToFav i {
    color: red;
}

.itemData {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.addD {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
}

.addD span {
    font-weight: 500;
    text-transform: uppercase;
}

.addD button {
    height: 35px;
    padding: 0 20px;
    background-color: #c5af61;
    color: #000;
    border-radius: 7px;
    font-weight: 500;
}

.items-slider {
    width: 100%;
    overflow: hidden;
    padding: 10px 20px;
}

.sw2 .vanItem {
    width: 100%;
}

.pb50 {
    padding-bottom: 50px;
}

.mb50 {
    margin-bottom: 50px;
}

.banner {
    width: 100%;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: none;
}

.banner img,
.banner video {
    border: none;
    width: 100%;
    height: 80vh;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 1250px) {
    .banner img,
    .banner video {
        height: auto;
    }
}

@media (max-width: 450px) {
    .item {
        height: 400px;
    }
}

.fl {
    padding: 20px 20px 0 20px;
    transform: translateY(30px);
}

footer {
    width: 100%;
    display: flex;
    margin-top: auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 0 0 0;
    background-color: #c5af61;
}

.footer {
    display: flex;
    justify-content: space-between;
    z-index: 5;
}

.footerLogo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footerLogo img {
    width: 180px;
}

.footerLogo .aboutText {
    width: 400px;
}

.footerLogo .aboutText article p {
    font-size: 1em;
}

.footerLinkGroup {
    display: flex;
    gap: 50px;
}

.linkGroup {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.linkGroup h2 {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 5px;
    text-transform: capitalize;
    color: #333333;
    font-weight: 600;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.3em;
}

.linkGroup ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 10px;
}

.linkGroup ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
    line-height: 1.7;
    color: #333333;
    text-transform: uppercase;
    transition: 0.2s all ease;
    font-weight: 500;
}

.linkGroup ul li a img {
    width: 8px;
    -o-object-fit: contain;
    object-fit: contain;
}

.cont {
    width: 290px;
}

.cont ul li:nth-child(1) a {
    line-height: 1.5;
}

.cont ul li a {
    line-height: 2;
}

.cont ul li a img {
    width: 20px;
}

.media {
    display: flex;
    gap: 20px;
    transform: translateY(-10px);
}

.media a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
}

.media a i {
    color: #333333;
    font-size: 1.5em;
    transition: 200ms all ease;
}

@media (max-width: 1001px) {
    .footer {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 601px) {
    .footerLinkGroup {
        flex-direction: column;
        gap: 30px;
    }

    .linkGroup {
        width: 100%;
    }

    .cont {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .footerLogo img {
        width: 150px;
    }

    .footerLogo .aboutText {
        width: 100%;
    }
}

.copy {
    font-size: 0.9em;
    width: 100%;
    padding: 20px 10px;
    background-color: #c5af61;
    color: #333333;
    text-align: center;
    font-weight: 500;
}

.vanLeo {
    display: flex;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 30px;
}

.vanLeo img {
    width: 100%;
    opacity: 0;
}

.vanLeo .logoImg {
    position: absolute;
    transition: 1.5s all ease;
    top: 100%;
}

.vanLeo.reachedLogo .logoImg {
    top: 30px;
    opacity: 1;
}

.pb0 {
    padding-bottom: 0;
}

.p0 {
    padding: 0 20px;
}

.tr50 {
    transform: translateY(50px);
}

@media (max-width: 1250px) {
    .tr50 {
        transform: translateY(0);
        padding-top: 50px;
        padding-bottom: 20px;
    }
}

.md {
    position: absolute;
    top: 20px;
    left: 20px;
}

.md a {
    font-size: 0.9em;
    font-weight: 500;
}

.md a:nth-child(2) {
    padding-left: 10px;
}

.itemsInner {
    width: 100%;
    display: grid;
    row-gap: 40px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    column-gap: 40px;
    justify-content: center;
}

.itemsInner .productCard {
    max-width: 300px;
}

@media (max-width: 480px) {
    .itemsInner {
        grid-template-columns: 1fr 1fr !important;
    }
    .itemsInner .productCard {
        min-width: 0px;
    }
}
.itemsInner .productCard {
    max-width: 300px;
}

@media (max-width: 976px) {
    .itemsInner .item,
    .sw2 .item {
        height: 400px;
    }
}

@media (max-width: 800px) {
    .itemsInner {
        column-gap: 20px;
    }
    .itemsInner .item {
        width: calc(50% - 10px);
        height: 400px;
    }

    .itemsInner .item .i {
        top: 20px !important;
    }

    .sw2 .item {
        width: 100%;
        gap: 0;
        height: -moz-fit-content !important;
        height: fit-content !important;
    }

    .sw2 .item h3 {
        padding: 10px !important;
    }

    .sw2 .item .aandi {
        width: -moz-fit-content;
        width: fit-content;
        height: 200px;
    }

    .sw2 .item .aandi img {
        width: 100%;
        height: 200px;
        -o-object-fit: contain !important;
        object-fit: contain !important;
    }
}

@media (max-width: 500px) {
    .sw2 .item h3 {
        font-size: 0.9em !important;
    }

    .sw2 .item .i {
        top: 20px !important;
    }

    .itemsInner .item {
        gap: 0;
        width: calc(50% - 10px);
        height: -moz-fit-content !important;
        height: fit-content !important;
    }

    .itemsInner .item h3 {
        padding: 10px !important;
        font-size: 0.9em;
    }

    .itemsInner .item .aandi {
        height: 200px;
    }

    .itemsInner .item .aandi img {
        width: 100%;
        height: 200px;
        -o-object-fit: contain !important;
        object-fit: contain !important;
    }
}

@media (max-width: 370px) {
    .itemsInner .item,
    .sw2 .item {
        width: 100%;
    }

    .itemsInner .item .aandi,
    .sw2 .item .aandi {
        height: 300px;
    }

    .itemsInner .item .aandi img,
    .sw2 .item .aandi img {
        width: 100%;
        height: 300px;
        -o-object-fit: cover !important;
        object-fit: cover !important;
    }
}

.dfc {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 80px 20px;
    margin: 0 auto;
}

.paginationCont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    padding-left: 20px;
    position: relative;
    direction: ltr;
    background-color: #f0f0f0;
    margin-top: 50px;
}

.page {
    font-size: 0.9em;
    color: #333333;
    font-weight: 500;
}

.page span {
    color: #333333;
    font-weight: 600;
}

@media (max-width: 471px) {
    .paginationCont {
        justify-content: center;
        padding: 0 20px;
    }

    .page {
        position: absolute;
        top: -27px;
        left: 5px;
    }
}

.paginations {
    display: flex;
    justify-content: center;
    align-items: center;
    direction: ltr;
}

.paginations button {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e3ca6f;
    border-radius: 50%;
    margin: 0 10px;
}

.paginations button img {
    width: 7px;
}

.spans {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    list-style: none;
    padding: 0 10px;
}

.spans li:nth-child(1) .page-link {
    background-color: #fff;
}

.spans li:nth-child(1) .page-link.active {
    background-color: #fff;
}

.spans li:nth-child(1) .page-link.active:hover {
    background-color: #c7c7c8;
}

.spans li:nth-child(7) .page-link {
    background-color: #fff;
}

.spans li:nth-child(7) .page-link.active {
    background-color: #fff;
}

.spans li:nth-child(7) .page-link.active:hover {
    background-color: #c7c7c8;
}

.spans li .page-link.active {
    background-color: #e3ca6f;
    color: #fff;
}

.spans li .page-link.active:hover {
    background-color: #e3ca6f;
}

.spans li .page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #fff;
    color: #e3ca6f;
    transition: 0.2s;
    cursor: pointer;
    font-size: 0.8em;
}

.spans li .page-link img {
    width: 7px;
}

.spans li .page-link:hover {
    background-color: #e3ca6f;
    color: #fff;
}

.popUp {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    height: 100dvh;
    padding: 0 20px;
    position: fixed;
    z-index: 10;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.close {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

.w430 {
    width: 430px;
}

.sForm {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.sForm input {
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    background-color: transparent;
    border: 2px solid #c5af61;
    color: #fff;
    border-radius: 10px;
    padding: 0 15px;
    font-size: 1em;
    background-color: rgba(202, 167, 86, 0.1058823529);
}

.sForm input::-moz-placeholder {
    color: #fff;
    opacity: 0.6;
}

.sForm input::placeholder {
    color: #fff;
    opacity: 0.6;
}

.sForm button {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    padding: 0 15px;
    height: 45px;
    border-radius: 10px 0 0 10px;
    left: 0;
    background-color: #c5af61;
    color: #fff;
    font-size: 1.3em;
    cursor: pointer;
}

.sForm i {
    position: fixed;
    top: 10%;
    right: 10%;
    font-size: 1.3em;
    color: #fff;
    cursor: pointer;
}

.sForm img,
.sForm video {
    width: 100%;
    height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

@media (max-width: 550px) {
    .sForm img,
    .sForm video {
        height: auto;
    }
}

.w550 {
    width: 550px;
}

.w550 img,
.w550 video {
    display: none;
}

@media (max-width: 951px) {
    .w430 {
        width: 100%;
    }

    .w550 {
        width: 100%;
    }
}

.cartt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 25px;
    gap: 20px;
}

.cartInner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 600px;
}
@media (max-width: 550px) {
    .cartInner {
        display: grid;
        grid-template-columns: repeat(2, minmax(100px, 1fr));
    }
}

@media (max-width: 480px) {
    .cartInner h2 {
        font-size: 1rem;
    }
    .cartImgInner {
        min-width: 100% !important;
    }
}

.cartItemData {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    max-width: 400px;
    text-wrap: balance;
    height: 100%;
    gap: 15px;
    align-items: flex-start;
    h2 {
        line-height: 1.2;
    }
}

.cartItemData button {
    padding: 0 15px;
    height: 40px;
    background-color: #c5af61;
    color: #fff;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    gap: 7px;
}

.cartItemData button i {
    font-size: 1.3em;
    color: #fff;
}

.cartItem {
    display: flex;
    width: 100%;
    white-space: nowrap;
    gap: 30px;
    align-items: center;
    position: relative;
}

.cartItem .fa-circle-xmark {
    padding: 15px;
    position: absolute;
    right: -25px;
    top: -25px;
    color: red;
    font-size: 2em;
    cursor: pointer;
}

.cartItem h2 {
    font-weight: 500;
}

.cartImgInner {
    min-width: 175px;
    height: 175px;
    max-height: 400px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cartImgInner img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.3s all ease;
}

.cartImgInner img:hover {
    scale: 140%;
}

.control {
    display: flex;
    border-radius: 5px;
    overflow: hidden;
}

.control span {
    padding: 7px;
    background-color: #333333;
    color: #fff;
}

.control span i {
    color: #fff;
    font-size: 1em;
}

.control span:nth-child(2) {
    padding: 7px 10px;
}

.ckOut {
    display: flex;
    flex-direction: column;
    width: 500px;
    gap: 20px;
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    width: 100%;
    background-color: #333333;
    font-weight: 500;
    color: #fff;
    border-radius: 7px;
    font-size: 1em;
    text-transform: uppercase;
}

.tax {
    font-size: 0.8em;
}

.prl20 {
    padding-left: 20px;
    padding-right: 20px;
}

.row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 2px solid rgba(51, 51, 51, 0.5490196078);
    color: #333333;
}

.row span {
    font-weight: 500;
}

.freeShipping {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.freeShipping span {
    font-size: 0.9em;
}

@media (max-width: 1150px) {
    nav {
        padding: 0 20px;
    }

    .center.pb0 {
        padding-bottom: 50px;
    }

    .cartt {
        flex-direction: column;
    }

    .cartInner {
        max-width: 100%;
    }

    .ckOut {
        width: 100%;
    }
}

@media (max-width: 550px) {
    .cartItem {
        flex-direction: column;
        gap: 20px;
    }

    .cartImgInner {
        width: 100%;
        height: auto;
    }

    .cartImgInner img {
        position: relative;
    }

    .cartImgInner img:hover {
        width: 100%;
        height: 100%;
    }

    .cartItemData {
        width: 100%;
    }
}

.wishlistItems {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.wishlistItems .cartItem {
    width: auto;
    flex-grow: 1;
}

.header {
    width: 100%;
    padding-top: 50px;
}

.header h1 {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    color: #333333;
    padding-right: 20px;
    position: relative;
    text-transform: uppercase;
}

.check {
    display: flex;
    /* align-items: center; */
    gap: 30px;
    padding-bottom: 25px;
}

.w50 {
    width: 50%;
}

.itsIn {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding-bottom: 20px;
}

.itsIn .cartItem {
    gap: 20px;
}

.itsIn .cartItem .cartImgInner {
    width: 80px;
    height: 80px;
}

.itsIn .cartItem h2 {
    font-size: 1.2em;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.form .fa-xmark {
    position: fixed;
    top: 10%;
    right: 10%;
    font-size: 1.3em;
    color: #fff;
    cursor: pointer;
}

.input {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

.input span {
    display: flex;
    color: #333333;
    font-weight: 500;
    gap: 4px;
}

.input span span {
    color: red;
}

.input input,
.input select,
.input textarea {
    border: none;
    outline: none;
    background-color: transparent;
    background-color: #f5f5f5;
    width: 100%;
    padding: 0 15px;
    height: 45px;
    border-radius: 7px;
    font-size: 1em;
    color: #333333;
}

.input select {
    background-color: #333333;
    color: #fff;
    font-weight: 500;
    font-size: 0.8em;
}

.input i {
    position: absolute;
    left: 15px;
    bottom: 23px;
    color: #fff;
}

.input textarea {
    padding: 15px;
    height: 140px;
    resize: none;
}

.ckot .ckOut {
    width: 100%;
}

.pt20 {
    padding-top: 20px;
}

.ways {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 0;
}

.rInput {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
}

.rInput label {
    font-weight: 500;
    color: #333333;
    font-size: 1.2em;
}

.rInput input {
    width: 17px;
    height: 17px;
    accent-color: #333333;
}

.online {
    display: none;
    flex-direction: column;
    gap: 20px;
}

.paypal {
    border: none;
    outline: none;
    background-color: transparent;
    width: 100%;
    padding: 0 15px;
    height: 45px;
    border-radius: 7px;
    font-size: 1em;
    color: #333333;
    border: 1px solid #333333;
}

.payLogo {
    position: absolute;
    right: 0;
    width: 160px;
}

.z2 {
    z-index: 2;
}

.z2 .input span {
    color: #fff;
}

.z2 .input input {
    color: #fff;
    background-color: rgba(51, 51, 51, 0.4745098039);
}

.z2 .input input::-moz-placeholder {
    color: #fff;
    opacity: 0.7;
}

.z2 .input input::placeholder {
    color: #fff;
    opacity: 0.7;
}

.threeIns {
    width: 100%;
    display: flex;
    gap: 15px;
}

.threeIns .input {
    width: 33.3333333333%;
}

.mt10 {
    margin-top: 10px;
}

#show-popUp2 {
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    padding: 0 20px;
    height: 40px;
    font-size: 1em;
    color: #fff;
    background-color: #333333;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    border-radius: 5px;
}

@media (max-width: 900px) {
    .check {
        flex-direction: column;
    }

    .form {
        width: 100%;
    }

    .ckot {
        width: 100%;
    }

    .ckot .ckOut {
        width: 100%;
    }
}
/* start edit */
.aboutCont {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 50px;
}

.aboutCont img {
    width: 300px;
}
.aboutDetails {
  display: flex;
  width: 100%;
  margin-block: 2rem;
  column-gap: 6rem;
  row-gap: 3rem;
  flex-wrap: wrap;
  div {
    flex: 1 1 350px;
  }
  .aboutBanner{
    min-height: 350px;
    max-height: 350px;
  }
}
@media (max-width:480px){
  .aboutBanner::after{
    display: none;
  }
  .aboutCont.box{
    padding: 0;
  }
  .aboutText{
    font-size: 1rem;
  }

}

.aboutDetails.serviceDetails{
  flex-direction:row-reverse;
}

@media (max-width: 1024px){
    .aboutDetails{

        column-gap: 3rem;
    }
}
.aboutText {
  width: 100%;
  /* height: 100%; */
  display: flex;
  flex-direction: column;
  margin: auto;
  /* max-width: fit-content; */
  font-size: 1rem;
  text-align: start;
  align-items: start !important;
  p {
    max-width: 100% !important;
    text-align: start;
    /* text-wrap: balance; */
  }
}
.aboutText h1 {
  position: relative;
  /* padding-left: 20px; */
  text-transform: uppercase;
  margin: 0 !important;
}

.aboutText h1 {
    display: flex;
    gap: 10px;
    align-items: center;
    line-height: 1.5;
    font-weight: 500;
}

.aboutText h1 span {
    display: inline-flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.aboutText h1 span i {
    position: absolute;
    width: 95%;
    height: 3px;
    background-color: #c5af61;
    bottom: 0;
    transition: 0.5s all 0.4s ease;
}

.aboutText article {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    padding-left: 20px;
}

.aboutText article::before {
    position: absolute;
    left: 0;
    content: "";
    width: 4px;
    height: 100%;
    background-color: #c5af61;
}

.aboutText article p {
    position: relative;
    padding-left: 0;
}

.aboutText article p::before {
    display: none;
}

.missionandvission {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    align-items: stretch;
}

.div {
    display: flex;
}

.div video {
    width: 550px;
    -o-object-fit: cover;
    object-fit: cover;
}

.vandmText {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vandmText p span {
    color: #c5af61;
}

.vandmText h2 {
    position: relative;
}

@media (max-width: 1200px) {
    .missionandvission {
        flex-direction: column;
    }

    .missionandvission video {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .vandmText h2 {
        font-size: 1.4em;
    }

    .vandmText p {
        font-size: 0.9em;
    }
}

@media (max-width: 550px) {
    .aboutText h1 {
        font-size: 1.4em;
    }

    .aboutText p {
        font-size: 0.9em;
    }
}

.contact {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact .box {
    display: flex;
    align-items: stretch;
    gap: 50px;
    justify-content: space-between;
    padding: 0 20px 0 20px;
}

.contactForm {
    width: 500px;
    padding: 100px 0;
}

.contactForm form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contactForm form h1 {
    color: #333333;
}

.contactForm form span {
    color: #333333;
}

.cDatax {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    padding-right: 150px;
}

.longT {
    position: absolute;
    top: 0;
    height: 100%;
    width: 150px;
    background-color: #333333;
    right: 0;
}

.dCardr {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #333333;
    padding: 40px 100px 40px 40px;
}

.dCardr::after {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    background-color: #c5af61;
}

.dCardr h1 {
    color: #ffffff;
}

.rw {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.69);
    padding: 10px 0;
    transition: 0.2s all ease;
}

.rw img {
    width: 30px;
    height: 30px;
    -o-object-fit: contain;
    object-fit: contain;
}

.rw:hover {
    scale: 1.1;
}

.loaction {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 350px;
}

.loaction iframe {
    width: 100%;
    height: 100%;
}

.loaction .lc {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.2);
}

.loaction .lc a {
    position: absolute;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 7px;
    height: 45px;
    padding: 0 30px;
    color: #fff;
    font-size: 1em;
    text-transform: uppercase;
    font-weight: 600;
    background-color: #e3ca6f;
    transition: 0.3s all ease;
}

.loaction .lc a:hover {
    background-color: #c5af61;
    color: #e3ca6f;
}

.cForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cForm input,
.cForm textarea {
    border: none;
    outline: none;
    background-color: transparent;
    height: 40px;
    border-bottom: 1px solid #333333;
    font-size: 1em;
    color: #333333;
    border-radius: 0;
}

.cForm input::-moz-placeholder,
.cForm textarea::-moz-placeholder {
    color: #333333;
}

.cForm input::placeholder,
.cForm textarea::placeholder {
    color: #333333;
}

.cForm textarea {
    resize: none;
    height: 75px;
}

.cForm button {
    width: 100%;
    height: 50px;
    background-color: #333333;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 1em;
    text-transform: uppercase;
    margin-top: 30px;
    letter-spacing: 5px;
    font-weight: 500;
}

@media (max-width: 1000px) {
    .contact .box {
        flex-direction: column;
        padding: 0 20px;
        padding-bottom: 30px;
        padding: 30px;
    }

    .contactForm {
        width: 100%;
        padding: 50px 0 0 0;
    }

    .longT {
        display: none;
    }

    .cDatax {
        padding: 0;
    }

    .dCardr {
        width: 100%;
    }

    .dCardr::after {
        top: -15px;
        left: -15px;
    }
}

.item-view {
    width: 100%;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: flex-start;
}

.rows {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

.rows .row {
    font-size: 0.9em;
    border-bottom: 1px solid #333333;
}

.rows .row:last-child {
    border-bottom: none;
}

.rows .row:last-child span {
    white-space: nowrap;
}

.rows .row:last-child span:nth-child(1) {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.rows h1 {
    font-size: 1.5em;
    padding-bottom: 10px;
    font-weight: 500;
}

.diam {
    width: 100%;
}

.diam .head,
.diam .val {
    width: 100%;
    display: flex;
    gap: 10px;
}

.diam .head span,
.diam .val span {
    width: calc(20% - 10px) !important;
    font-size: 0.9em;
}

.diam .val {
    padding-top: 10px;
}

.item-show {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}

.item-show .i {
    right: 25px;
}

.item-show .item {
    width: 100%;
    height: 500px;
}

.item-show .item img {
    display: none;
}

.item-show .item:hover img {
    width: 100%;
    height: 100%;
}

.item-show .item:hover .i {
    top: 25px;
}

.btn2 {
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 20px;
    margin-top: 30px;
    background-color: #c5af61;
    color: #fff;
    transition: 0.3s all ease;
    gap: 10px;
}

.btn2:hover {
    background-color: #333333;
    color: #fff;
}

.pt100 {
    padding-top: 100px;
}

.item-view-d {
    width: 55%;
    display: flex;
    flex-direction: column;
}

.item-view-d h1 {
    font-weight: 500;
}

.item-view-d p {
    opacity: 0.7;
    padding-top: 30px;
    line-height: 2;
    font-size: 0.9em;
    padding-bottom: 10px;
}

.sww {
    padding: 0;
}

.sww .swiper-slide {
    cursor: pointer;
}

.sww .swiper-slide img {
    width: 100%;
    height: 100px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 5px;
}

@media (max-width: 1150px) {
    .sww .swiper-slide img {
        height: 80px;
    }
}

@media (max-width: 1000px) {
    .item-view {
        flex-direction: column;
    }

    .item-show,
    .item-view-d {
        width: 100%;
    }

    .sww .swiper-slide img {
        height: 100px;
    }
}

@media (max-width: 750px) {
    .sw {
        overflow: hidden;
    }

    .sw .swiper-slide img {
        width: 100%;
        height: 100%;
        min-height: 250px;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: top;
        object-position: top;
    }

    .sww .swiper-slide img {
        height: 80px;
    }

    .item-show .item {
        height: 350px;
    }
}

@media (max-width: 400px) {
    .sww .swiper-slide img {
        height: 70px;
    }

    .item-show .item {
        height: 300px;
    }
}

.shopBy {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0 10px;
}

.shopBy li {
    flex-grow: 1;
    display: flex;
    justify-content: left;
    gap: 5px;
    font-weight: 600;
}

.shopBy li i {
    color: #c5af61;
    font-size: 0.8em;
}

.shopBy h2 {
    width: 100%;
    padding: 20px 0;
}

.filter {
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #fff;
    padding: 13px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
}

.filter i {
    color: #333333;
    font-size: 1.2em;
}

.filterInnerx {
    position: absolute;
    width: 400px;
    left: 20px;
    top: 190px;
    background-color: #f3f3f3;
    border-radius: 5px;
    padding: 20px;
    z-index: 5;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: none;
}

.fxWrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-direction: column;
    position: relative;
}

.hxn {
    padding: 20px;
    font-weight: 500;
    font-size: 1.2em;
}

.hxn i {
    color: #c5af61;
    font-size: 1.1em;
}

.itxShl {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.ix {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 15px;
    background-color: #fff;
    border: 1px solid #c5af61;
    font-size: 0.9em;
    color: #c5af61;
    font-weight: 500;
    border-radius: 5px;
    transition: 0.3s ease;
    text-transform: capitalize;
    cursor: pointer;
}

.ix.active {
    background-color: #c5af61;
    color: #fff;
}

#closeFilt {
    position: absolute;
    cursor: pointer;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #c5af61;
    padding: 5px 7px;
    border-radius: 4px;
}

.goBtn {
    padding-bottom: 20px;
    padding-top: 10px;
}

.goBtn button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 7px 30px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 0.9em;
    color: #fff;
    background-color: #c5af61;
    font-weight: 500;
    border-radius: 5px;
    transition: 0.3s ease;
    cursor: pointer;
    text-transform: capitalize;
}

@media (max-width: 550px) {
    .filterInnerx {
        top: 180px;
        width: calc(100% - 40px);
    }

    .filterInnerx .ix {
        flex-grow: 1;
    }
}

.conx {
    display: flex;
    flex-direction: column;
    width: 100% !important;
}

.conIm {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
}

.conIm::after {
    content: "";
    z-index: 2;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(51, 51, 51, 0.2);
}

.conIm .xcdwe {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.logxz {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 600px;
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.3921568627);
}

.logxz img {
    width: 100px;
}

.logxz h2 {
    text-transform: uppercase;
}

@media (max-width: 650px) {
    .logxz {
        width: 100%;
    }
}

.dfx {
    padding: 70px 20px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.txtxx {
    width: 800px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.txtxx p {
    font-size: 1.1em;
    font-weight: 500;
    line-height: 2;
}

.ctx {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.ctx a {
    text-align: center;
    font-size: 1.2em;
    font-weight: 500;
}

.ctx img {
    width: 300px;
}

.workH {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding-top: 10px;
}

.workH span {
    text-transform: uppercase;
    font-size: 1.2em;
    font-weight: 500;
}

@media (max-width: 1200px) {
    .dfx {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .txtxx {
        width: 100%;
    }
}

.wa {
    width: 100%;
    background-color: transparent !important;
    font-size: 0.8em;
}

.wa img {
    width: 80px;
}

.continner {
    display: flex;
    gap: 50px;
    align-items: stretch;
    margin: 0 auto;
}

.ww50 {
    width: 50%;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    min-height: 350px;
}

.fContx {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: #f9f9f9;
}

.fContx .input input,
.fContx .input textarea {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
}

.fContx .input input:focus,
.fContx .input textarea:focus {
    border: 1px solid #c5af61;
}

.fContx .btn {
    background-color: #c5af61;
    transition: 0.3s ease;
}

.fContx .btn:hover {
    background-color: #e3ca6f;
}

.mt20 {
    margin-top: 20px;
}

.twoIn {
    width: 100%;
    display: flex;
    gap: 20px;
}

.twoIn input {
    width: 50%;
}

.twoSX {
    width: 100%;
    display: flex;
    gap: 20px;
}

.twoSX .input {
    width: 50%;
}

.noinput span {
    display: flex;
    color: #333333;
    font-weight: 500;
    gap: 4px;
}

.noinput span span {
    color: red;
}

.ck {
    cursor: pointer;
}

.ck label {
    padding-left: 5px;
}

.checks {
    display: flex;
    gap: 20px;
}

.checks input {
    width: 19px;
    height: 19px;
}

@media (max-width: 1100px) {
    .continner {
        flex-direction: column;
    }

    .ww50 {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .twoIn {
        flex-direction: column;
    }

    .twoIn input {
        width: 100%;
    }

    .twoSX {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .twoSX .input {
        width: 100% !important;
    }

    .twoSX .input input {
        width: 100% !important;
    }

    .checks {
        flex-direction: column;
    }
}

.ttu .row span:nth-child(2) {
    text-transform: uppercase;
}

.quantity {
    display: flex;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.quantity span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 35px;
    background-color: #333333;
    color: #e3ca6f;
    font-weight: 500;
}

.quantity span:nth-child(1) {
    cursor: pointer;
}

.quantity span:nth-child(3) {
    cursor: pointer;
}

.twoBtns {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    flex-wrap: wrap;
}

.twoBtns .btn {
    margin: 0;
    border-radius: 7px;
    max-width: 250px;
    flex-grow: 1;
}

.btn3 {
    background-color: #333333;
    color: #fff;
}

.sw4 {
    display: flex;
    align-items: center;
    width: 100%;
}

.sw4 .swiper-slide {
    width: 100%;
}

.sw4 .swiper-slide img,
.sw4 .swiper-slide video {
    width: 100%;
    height: 550px;
    -o-object-fit: cover;
    object-fit: cover;
}

.sw4 .next,
.sw4 .prev {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #333333;
    z-index: 2;
    transition: 0.3s all ease;
    cursor: pointer;
}

.sw4 .next:hover,
.sw4 .prev:hover {
    background-color: #c5af61;
    border: 2px solid #c5af61;
}

.sw4 .next:hover i,
.sw4 .prev:hover i {
    color: #fff;
}

.sw4 .next i,
.sw4 .prev i {
    color: #333333;
    font-size: 1.5em;
    transition: 0.3s all ease;
}

.sw4 .next {
    right: 20px;
}

.sw4 .prev {
    left: 20px;
}

.sw4 .next.swiper-button-disabled {
    opacity: 0.5;
}

.sw4 .prev.swiper-button-disabled {
    opacity: 0.5;
}

@media (max-width: 650px) {
    .sw4 .swiper-slide img,
    .sw4 .swiper-slide video {
        height: 400px;
    }
}

.item.vs {
    position: absolute;
    top: 0px;
    z-index: 5;
    height: 130px;
    width: 150px;
    right: 0;
}

.pr {
    position: relative;
}

.pag {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: auto;
    gap: 20px;
    flex-wrap: wrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.pag img {
    border-radius: 5px;
    width: 80px;
    height: 80px;
    -o-object-fit: cover;
    object-fit: cover;
}

.pag .swiper-pagination-bullet {
    border: 1px solid #333333;
    opacity: 0.4;
    transition: 0.3s all ease;
}

.pag .swiper-pagination-bullet-active {
    opacity: 1;
    border: 1px solid #e3ca6f;
}

@media (max-width: 450px) {
    .sw4 .next {
        display: none;
    }

    .sw4 .prev {
        display: none;
    }

    .sw4 .swiper-slide img,
    .sw4 .swiper-slide video {
        height: 350px;
    }

    .pag img {
        width: 70px;
        height: 70px;
    }
}

.sw4:hover .item.vs .i {
    top: 25px !important;
}

.message {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    animation: hideMessgae 10ms linear 2500ms forwards;
}

@keyframes hideMessgae {
    100% {
        display: none;
        bottom: -100%;
    }
}

.message span {
    padding: 0 25px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px 5px 0 0;
    color: #fff;
    text-transform: capitalize;
    position: relative;
    background-color: #c5af61;
    overflow: hidden;
    font-size: 0.9em;
    font-weight: 500;
}

.message span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    background-color: red;
    right: 0;
    animation: fadeLine 2500ms linear forwards;
}

@keyframes fadeLine {
    100% {
        right: 100%;
    }
}

@media (max-width: 500px) {
    .message span {
        width: 100%;
        border-radius: 0;
        height: 50px;
    }
}

.afterLogin .logout {
    color: red;
}

.afterLogin .logout .fa-right-from-bracket {
    transform: rotate(180deg);
    color: red;
}

.dflex {
    display: flex;
    gap: 5px;
}

.cart {
    position: relative;
}

.afterLogin a {
    position: relative !important;
    overflow: visible !important;
}

.count {
    position: absolute;
    left: -10px;
    top: -10px;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    font-size: 12px !important;
    background-color: red;
    font-weight: 500;
    color: #fff;
}

.colum {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.raws {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.raws strong {
    font-weight: 600;
}

.raws ul {
    list-style: none;
}

.rawD {
    display: flex;
}

.rawD h2 {
    font-weight: 600;
    display: inline;
}

.rawD ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 40px;
}

@media (max-width: 600px) {
    .raws h2 {
        font-size: 1.5em;
    }

    .raws p {
        font-size: 0.9em;
    }

    .raws ul li {
        font-size: 0.9em;
    }
}

.mainC {
    color: #e3ca6f;
    text-decoration: underline;
    font-weight: 600;
}

.servicesP {
    width: 100%;
    display: flex;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
}

.m0a {
    margin: 0 auto;
}

.card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
    width: 300px;
    padding: 20px;
    height: 200px;
    text-align: center;
    background-color: #c5af61;
    border-radius: 15px;
    color: #fff;
    flex-grow: 1;
}

.card i {
    font-size: 3em;
    color: #fff;
}

.services {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 60px;
    padding: 60px 0;
}

.subTitle {
    width: 100%;
    font-weight: 600;
    font-size: 1.2em;
    padding-bottom: 10px;
    color: #333333;
}

.Pageheader {
    width: 100%;
    min-height: 40vh;
    min-height: 40dvh;
    display: flex;
    justify-content: left;
    align-items: center;
    position: relative;
}
.Pageheader img {
    width: 100%;
    max-height: 280px;
    min-height: 40vh;
    min-height: 40dvh;

    -o-object-fit: cover;
    object-fit: cover;
}

.Pageheader a {
    height: 100%;
    width: 100%;
}

/*start edit*/
.aboutCont {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 64px;
}
/* .aboutCont img {
  width: 300px;
} */
.item-name {
    min-height: 26px;
    max-height: 26px;
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1.4;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.aboutBanner {
    width: 100%;
    max-width: 1000px;
    /* border-radius: 12px; */
    position: relative;
    isolation: isolate;
}
/* .aboutBanner img {
    min-height: 450px;
} */
.dfc {
    position: relative;
    isolation: isolate;
    font-size: 1.2rem;
}
.aboutBanner::after,
.ser-img::after {
    width: 100%;
    border-radius: inherit;
    height: 100%;
    background-color: #c5af61;
    position: absolute;
    content: "";
    z-index: -10;
    right: 4%;
    top: 8%;
}

.aboutBanner:nth-child(odd)::after {
    right: -4%;
}

.ser-img::after {
    right: 8%;
}
.ser-sect:nth-child(even) .ser-img::after {
    right: -8%;
}
.ser-img {
    position: relative;
    width: 100%;
    max-width: 450px;

    isolation: isolate;
}
.ser-img img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}

.aboutBanner.even::after {
    right: -4% !important;
}
/*  */
body[dir="rtl"] .aboutBanner::after,
body[dir="rtl"] .ser-img::after {
    left: 4%;
}

body[dir="rtl"] .aboutBanner:nth-child(odd)::after {
    left: -4%;
}

body[dir="rtl"] .ser-img::after {
    left: 8%;
}
body[dir="rtl"] .ser-sect:nth-child(even) .ser-img::after {
    left: -8%;
}

.vandmText {
    gap: 0 !important;
}
.vandmText p:last-child {
    margin-top: 20px;
}
.vandmText i {
    margin-left: 0.25rem;
}
.aboutBanner img {
    width: 100%;
    max-height: 600px;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.aboutText {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}

/*end edit*/

.pageText {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    z-index: 3;
    gap: 20px;
}

.pageText p {
    max-width: 600px;
    font-weight: 500;
    color: #fff;
}

.pageText h1 {
    font-size: 2.5em;
    color: #fff;
}

@media (max-width: 500px) {
    .pageText p {
        font-size: 0.9em;
    }

    .pageText h1 {
        font-size: 2em;
    }
}

.popUpDfc {
    width: -moz-fit-content;
    width: fit-content;
    z-index: 5;
}

.popUpDfc::-webkit-scrollbar {
    width: 0;
}

.popUpDfc .fa-xmark-circle {
    display: none;
}

.popUpDfc .item-view {
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: -moz-fit-content;
    width: fit-content;
    padding: 20px;
    margin: 0 auto;
}

.popUpDfc .item-view-d {
    width: 400px;
}

.popUpDfc .item-view-d h1 {
    font-size: 1.5em;
}

.popUpDfc .item-view-d p {
    padding: 0;
    font-size: 0.8em;
    padding-top: 10px;
    line-height: 1.7;
}

.popUpDfc .item-show {
    width: 400px;
    height: 370px;
}

.popUpDfc .item-show .swiper-slide img,
.popUpDfc .item-show .swiper-slide video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.sw6 {
    display: flex;
    align-items: center;
}

.sw6 .next2,
.sw6 .prev2 {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: 0.3s all ease;
    cursor: pointer;
}

.sw6 .next2 i,
.sw6 .prev2 i {
    color: #333333;
    font-size: 1.5em;
    transition: 0.3s all ease;
}

.sw6 .next2 i:hover,
.sw6 .prev2 i:hover {
    color: #e3ca6f;
}

.sw6 .next2 {
    right: 15px;
}

.sw6 .prev2 {
    left: 15px;
}

.sw6 .next2.swiper-button-disabled {
    opacity: 0.5;
}

.sw6 .prev2.swiper-button-disabled {
    opacity: 0.5;
}

.zpagi.swiper-pagination-bullets {
    display: flex;
    justify-content: center;
    width: 100%;
    position: absolute;
    bottom: 10px;
    z-index: 6;
}

.zpagi.swiper-pagination-bullets .swiper-pagination-bullet {
    transition: 0.2s all ease;
}

.zpagi.swiper-pagination-bullets .swiper-pagination-bullet-active {
    color: red !important;
}

@media (max-width: 1000px) {
    .popUpDfc {
        height: 100vh;
        padding: 50px 0;
        overflow-y: scroll;
        position: relative;
    }

    .popUpDfc .fa-xmark-circle {
        color: red;
        font-size: 1.5em;
        display: block;
        position: absolute;
        right: 15px;
        top: 65px;
        cursor: pointer;
        z-index: 10;
    }
}

@media (max-width: 750px) {
    .popUpDfc,
    .item-view {
        width: 100% !important;
    }

    .popUpDfc {
        position: relative;
    }

    .popUpDfc .item-show {
        width: 100%;
        height: 370px;
    }

    .popUpDfc .item-view-d {
        width: 100%;
    }
}

.ser-sections {
    width: 100%;
    gap: 60px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.ser-sections .ser-sect:nth-child(even) {
    flex-direction: row;
}

.ser-sections .ser-sect:nth-child(odd) {
    flex-direction: row-reverse;
}

.ser-sect {
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.ser-sect img {
    width: 400px;
    height: 450px;
    -o-object-fit: cover;
    object-fit: cover;
}

.sectionText {
    font-size: 1rem;
    width: 500px;
}

.sectionText h3 {
    width: 100%;
    text-align: center;
    text-transform: capitalize;
}

.sectionText ul {
    list-style: none;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.sectionText ul li {
    font-size: 1em;
    text-align: center;
    line-height: 1.7;
}

.sectionText ul li i {
    font-size: 0.5em;
    color: #c5af61;
    padding-top: 5px;
}

@media (max-width: 1200px) {
    .ser-sect {
        width: 90%;
    }

    .ser-sect img {
        width: 400px;
        height: 450px;
    }

    .sectionText {
        width: 400px;
    }
}

@media (max-width: 1000px) {
    .ser-sect {
        width: 100%;
    }

    .ser-sect img {
        width: 50%;
        height: 400px;
    }

    .sectionText {
        width: 50%;
    }

    .sectionText h3 {
        font-size: 1em;
    }

    .sectionText ul li {
        font-size: 0.9em;
    }
}

@media (max-width: 650px) {
    .ser-sections .ser-sect:nth-child(even) {
        flex-direction: column;
    }

    .ser-sections .ser-sect:nth-child(odd) {
        flex-direction: column;
    }

    .sectionText {
        width: 100%;
    }

    .ser-sect img {
        width: 100%;
        height: 300px;
    }
}

.filtInn {
    position: fixed;
    z-index: 15;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
}

.filtScroll {
    height: 100vh;
    padding: 40px 20px 100px 20px;
    overflow-y: scroll;
    width: min(400px, 90%);
    position: relative;
    left: -300px;
    background-color: #fff;
    box-shadow: 0 10px 15px rgba(51, 51, 51, 0.4784313725);
    z-index: 10000;
}

.filtScroll::-webkit-scrollbar {
    width: 5px;
}

.filtScroll::-webkit-scrollbar-track {
    background: #fff;
}

.filtScroll::-webkit-scrollbar-thumb {
    background: #e3ca6f;
}

.animation {
    animation: t100 400ms ease-in-out forwards;
}

.removeanimation {
    animation: rt100 400ms ease-in-out forwards;
}

@keyframes t100 {
    0% {
        right: -100%;
    }
    100% {
        right: 0;
    }
}
@keyframes rt100 {
    0% {
        right: 0;
    }
    100% {
        right: -100%;
    }
}

#closeFilter {
    width: 100%;
    position: absolute;
    z-index: 1;
    height: 100vh;
    background-color: rgba(51, 51, 51, 0.1803921569);
}

.filtSec {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filtSec h3 {
    text-transform: uppercase;
    color: #333333;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filtSec h3::after {
    content: "";
    width: 40px;
    height: 3px;
    background-color: #c5af61;
    border-radius: 5px;
}

.filtSec .inInners {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 40px;
}

.filtIn {
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.filtIn label {
    cursor: pointer;
}

.filtIn input {
    width: 20px;
    height: 20px;
    accent-color: #333333 !important;
}

.slider-container {
    width: 300px;
    position: relative;
    height: 50px;
}

input[type="range"] {
    position: absolute;
    width: 100%;
    height: 8px;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    pointer-events: all;
    position: relative;
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #c5af61;
    cursor: pointer;
    bottom: 5px;
}

.track {
    position: absolute;
    height: 8px;
    width: 100%;
    background: #ddd;
    border-radius: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.range {
    position: absolute;
    height: 8px;
    background: #c5af61;
    border-radius: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.value-display {
    width: 100%;
    text-align: center;
    padding: 10px 0 20px 0;
    font-weight: 500;
}

.pr {
    position: relative;
}

.tg {
    width: 100%;
    border-collapse: separate;
}

.tg tbody {
    font-size: 14px;
}

.tg tbody tr td {
    width: 25%;
    padding: 15px 10px 10px 0;
    text-align: left !important;
    vertical-align: middle !important;
    background-color: #fff;
    white-space: nowrap !important;
    color: #333333;
    font-weight: 500;
}

.tg tbody tr td input {
    width: 17px;
    height: 17px;
}

.tg tbody tr td:first-child {
    border-top-right-radius: 5px;
}

.tg tbody tr td:last-child {
    border-top-left-radius: 5px;
}

.tg tbody tr td:first-child {
    border-bottom-right-radius: 5px;
}

.tg tbody tr td:last-child {
    border-bottom-left-radius: 5px;
}

@media (max-width: 700px) {
    .taIn {
        overflow: auto;
    }

    .tg tbody tr td {
        width: initial !important;
    }
}

.tg th {
    text-align: left;
    font-size: 14px;
    font-weight: normal;
    overflow: hidden;
    padding: 5px 20px 5px 0 !important;
    text-transform: capitalize;
    white-space: nowrap;
    color: #333333;
    font-weight: 500;
}

.tg th input {
    width: 17px;
    height: 17px;
}

@media (max-width: 701px) {
    .tg th {
        padding: 10px 5px;
    }
}

@media (max-width: 451px) {
    .tg th {
        font-size: 14px;
    }

    .tg tbody tr td {
        font-size: 14px;
    }
}

.servicesText {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.servicesText p {
    width: 100%;
    text-align: center;
    color: #fff;
    line-height: 2;
}

.servicesText h1 {
    color: #fff;
}

#zoom-lens {
    position: absolute;
    border: 1px solid #000;
    width: 120px;
    /* Size of the lens */
    height: 120px;
    /* Size of the lens */
    opacity: 1;
    /* Lens opacity */
    background-color: #fff;
    /* Lens background color */
    display: none;
    pointer-events: none;
}

#cont {
    position: relative;
}

.rowfo {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 15px;
}

@media (max-width: 1200px) {
    .rowfo {
        padding: 0;
    }
}

.inw200 {
    width: 200px;
}

.inw200 .select select {
    background-color: #fff;
    color: #333333;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.2);
    option {
        font-size: 0.9rem;
    }
}

.inw200 .select i {
    color: #333333;
}

@media (max-width: 600px) {
    .filter {
        width: 100%;
    }

    .inw200 {
        width: 100%;
    }
}

.cw100 {
    width: 100%;
    padding: 50px 10%;
    align-items: center;
}

.cw100 #close2.x2 {
    right: 5%;
}

.cw100 .sForm {
    width: 100%;
}

.cw100 #imgSrcx {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

@media (max-width: 550px) {
    .cw100 #imgSrcx {
        position: absolute;
        top: 25%;
    }
}

.wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    position: relative;
    padding: 50px 0;
}

.wrap::-webkit-scrollbar {
    width: 0;
}

.addit {
    width: 100%;
}

.addit h3 {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    padding: 20px 20px 17px 20px;
    background-color: #fff;
    transform: translateY(1px);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: none;
    font-size: 1.1em;
}

.addit h3::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 2px;
    background-color: #e3ca6f;
    left: 0;
}

.tdats {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 40px 50px 40px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    overflow: auto;
}

.tdat {
    display: flex;
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.tdat span {
    width: 50%;
    text-align: left;
    white-space: nowrap;
}

.tdat span:nth-child(1) {
    font-weight: 600;
    color: #333333;
}

@media (max-width: 900px) {
    .tdats {
        padding: 20px 20px 40px 20px;
    }

    .addit {
        width: 100%;
    }

    .addit h3 {
        padding: 15px 20px 13px 20px;
        font-size: 1em;
        font-weight: 500;
    }

    .tdat span {
        font-size: 0.8em;
    }
}

.btn2.w100 {
    width: 100%;
    border-radius: 7px;
    margin-top: 0;
    white-space: nowrap;
}
@media (max-width: 1024px) {
    .btn2.w100{
        font-size: 1rem !important;
    }
}
@media (max-width: 480px) {
    .btn2.w100{
        font-size: 14px !important;
    }
}

.note {
    font-size: 0.8em;
    font-weight: 500;
    padding-top: 3px;
}

@media (max-width: 700px) {
    .note {
        font-size: 0.7em;
    }
}

@media (max-width: 500px) {
    .note {
        font-size: 0.6em;
    }
}

.closeMenu {
    position: fixed;
    top: 235px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
}

.profile {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile i {
    color: #e3ca6f;
    cursor: pointer;
    font-size: 1.2em;
    bottom: 13px;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
}

.otp-inputs input {
    border: none;
    outline: none;
    background-color: transparent;
    width: 40px;
    height: 40px;
    border: 1px solid #333333;
    border-radius: 5px;
}

nav.showAnimation {
    position: fixed;
    top: -300px;
}

nav.stickyNav {
    position: sticky;
    top: 0;
}

body.paddingTop {
    padding-top: 150px;
}

body.noPadding {
    padding-top: 0;
}

.mLinks {
    display: flex;
    align-items: center;
}

@media (max-width: 1150px) {
    .closeMenu {
        display: none;
    }
}

.textContent {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.textContent h1 {
    width: 100%;
    text-align: center;
}

.textContent h2,
.textContent h3 {
    font-size: 1.5rem;
}

.textContent h4,
.textContent h5 {
    font-size: 1.1rem;
}

.textContent img {
    max-width: 500px;
    -o-object-fit: contain;
    object-fit: contain;
    margin: 0 auto;
}

.textContent a {
    color: rgb(0, 72, 255);
    text-decoration: underline;
}

.textContent ul {
    padding-left: 20px;
}

.textContent ul li {
    padding-bottom: 3px;
}

.textContent p,
.textContent li {
    font-size: 1.1rem;
}

@media (max-width: 800px) {
    .textContent img {
        width: 100%;
    }

    .textContent h1 {
        font-size: 1.5rem;
    }

    .textContent h2,
    .textContent h3 {
        font-size: 1.3rem;
    }

    .textContent h4,
    .textContent h5 {
        font-size: 1rem;
    }

    .textContent li,
    .textContent p {
        font-size: 0.9rem;
    }
}

.blogsCards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.blogCard {
    width: 350px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
}

.blogCard img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 770px) {
    .blogCard {
        flex-grow: 1;
    }

    .blogCard img {
        height: 300px;
    }
}

@media (max-width: 500px) {
    .blogCard img {
        height: 200px;
    }
}

.Pageheader2 {
    height: 450px;
}

.blogText {
    width: 100%;
    padding: 20px;
    background-color: #fff;
}

.blogText h2 {
    font-size: 1.3rem;
    padding-bottom: 20px;
}

.blogText a {
    display: block;
    text-decoration: underline;
    padding-top: 20px;
    transition: 0.2s all ease;
}

.blogText a:hover {
    color: #c5af61;
}

.htmlContent {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.flexCenter {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
    transform: translateY(50px);
    padding: 0 20px;
}

.pagination a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-weight: 600;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

.pagination .active {
    color: #e3ca6f;
}

.h1 {
    padding: 0 20px 30px 20px;
}

@media (max-width: 800px) {
    .h1 {
        font-size: 1.3rem;
    }
}

.Pageheader2 img {
    width: 500px;
    height: auto;
    right: 5%;
}

@media (max-width: 600px) {
    .Pageheader2 img {
        width: 100%;
        right: 0;
    }
}

.btn2 .fa-whatsapp {
    font-size: 1.5rem;
}

.pricebf {
    width: 100%;
    display: flex;
    gap: 20px;
    padding: 10px 0;
}

.pricebf del {
    color: #333333;
    font-size: 1.5rem;
    font-weight: 600;
}

.pricebf span {
    color: #c5af61;
    font-size: 1.5rem;
    font-weight: 600;
}

.pricebf2 {
    justify-content: center;
    gap: 10px;
}

.pricebf2 del {
    font-size: 1rem;
    font-weight: 500;
}

.pricebf2 span {
    font-size: 1rem;
    font-weight: 500;
}

.wabtn {
    background-color: #c5af61;
    border-radius: 8px;
    color: #fff;
    padding: 0 20px;
    height: 40px;
    text-transform: capitalize;
    gap: 10px;
    transition: 0.3s all ease;
}

.wabtn i {
    transition: 0.3s all ease;
    font-size: 1.5rem;
}

.wabtn:hover {
    background-color: #e3ca6f;
}

@media (max-width: 500px) {
    .wabtn {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .wabtn i {
        font-size: 1.2rem;
    }

    #product-title {
        font-size: 1.7rem;
    }
}

.pb100 {
    padding-bottom: 100px;
}

@media (max-width: 901px) {
    .menu {
        display: flex;
    }

    .last .mLinks {
        display: none;
    }

    .ls {
        display: flex;
        flex-direction: column;
        position: fixed;
        width: 100%;
        height: calc(100vh - 80px);
        overflow-y: scroll;
        top: 80px;
        left: -100%;
        gap: 0;
        transition: 0.4s;
        background-color: #fff !important;
        padding: 0 0 70px 0;
        z-index: 6;
    }

    .ls .mLinks {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 5%;
    }

    .ls::-webkit-scrollbar {
        width: 0px;
    }

    .mainLinks {
        display: flex;
        flex-direction: column;
        padding: 40px 20px 20px 20px;
        background-color: #fff !important;
        gap: 20px;
        width: 100%;
    }

    .mainLinks li {
        width: 100%;
    }

    .link {
        height: auto;
        padding: 15px 0;
    }

    .activeMenu .ls {
        left: 0 !important;
    }
}

.pt0 {
    padding-top: 0;
}

.productCard {
    width: 100%;
    position: relative;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.oldPrice{
    color: rgba(0, 0, 0, 0.6);
    text-decoration: line-through;
    font-size: 14px;
    padding-inline: 2px;
    display: inline-block;
}

.pImage {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: 100%;
    min-height: 200px;
    aspect-ratio: 1/1;
    border-radius: 20px;
    border: 1px solid #c5af61;
    position: relative;
    overflow: hidden;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}
@media (max-width: 600px) {
    .pImage {
        height: 200px;
    }
}
@media (max-width: 400px) {
    .discount {
        scale: 0.8;
        transform-origin: right;
    }
    .price h3 {
        font-size: 12px;
    }
    .btns button img,
    .btns a img,
    .btns span img {
        width: 16px !important;
    }
    .btns {
        column-gap: 6px;
    }
    .cats {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
    }
    .cat {
        width: initial !important;
    }
    .cat h1 {
        white-space: nowrap;
    }
}

@media (max-width: 320px) {
    .cats,
    .itemsInner,
    .cartInner {
        grid-template-columns: 1fr !important;
    }
    .cartItem {
        max-width: 250px;
    }
}

.pImage img {
    border-radius: inherit;
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: 0.3s all ease;
}

.pImage img:hover {
    scale: 1.15;
}

.pImage a {
    width: 100%;
    height: 100%;
}

.swiper1 {
    padding: 20px;
}

@media (max-width: 500px) {
    .swiper1 {
        padding: 0;
    }
}

.discount {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    background-color: #c5af61;
    text-transform: capitalize;
    padding: 0 15px;
    height: 24px;
    display: flex;
    justify-content: center;
    direction: ltr;
    align-items: center;
    text-align: center;
    white-space: nowrap;
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
}
.item-name{
    margin-top: 8px;
}
.productCard{
    gap: 0 !important;
    p:not(.item-name){
        margin-bottom:8px;
    }
}

.btns {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btns button,
.btns a,
.btns span {
    background-color: #c5af61;
    padding: 0 9px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    white-space: nowrap;
    border-radius: 8px;
    color: #fff;
    font-size: 0.7rem;
    gap: 10px;
    i {
        font-size: 16px;
    }
}

.btns button img,
.btns a img,
.btns span img {
    width: 18px;
}

.btns button:nth-child(1),
.btns a:nth-child(1),
.btns span:nth-child(1) {
    background-color: #2d2d2d;
    flex-grow: 1;
}

/* start of new */

.price,
.addToCart {
    flex-grow: 1;
}
.price {
    min-width: 100%;
    background-color: #c5af61 !important;
}
/*end of new */

.swInner {
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}

.swiper {
    width: 100%;
}

/*# sourceMappingURL=style.css.map */
