* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

body {

    font-family: "Marcellus", serif;
    ;
    color: #0c0c0c;
    font-size: 17px;

}

p {
    font-size: 17px;
    font-family: "Marcellus", serif;
    ;
    line-height: 24px;
    color: #0c0c0c;
    font-weight: 500;
}

a {
    font-size: 17px;
    text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    font-family: "Marcellus", serif;
    line-height: 24px;
    color: #111;
    font-weight: 500;
}

a:hover {
    text-decoration: none;
    outline: none;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

li {
    line-height: 24px;
    color: #0c0c0c;
    font-weight: 500;
    font-family: "Marcellus", serif;
}

button:focus,
input:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
    transition: all 500ms ease;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Open Sans', serif;
    margin: 0px;
    color: #0a0909;
    font-family: "Marcellus", serif;
}

p {
    margin: 0px;
    font-family: "Marcellus", serif;
}

.pt-50 {
    padding-top: 50px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-30 {
    padding-bottom: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.justify-center {
    justify-content: center;
}

.mt-20 {
    margin-top: 20px;
}

.align-item-center {
    align-items: center;
}

.justify-content-space-between {
    justify-content: space-between;
}

.flex-end {
    justify-content: flex-end;
}

.site-width {
    max-width: 1250px;
    margin: 0px auto;
}

@media screen and (max-width:1518px) and (min-width:1368px) {
    .site-width {
        max-width: 1372px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:1708px) and (min-width:1519px) {
    .site-width {
        max-width: 1450px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:1920px) and (min-width:1709px) {
    .site-width {
        max-width: 1642px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:2500px) and (min-width:1921px) {
    .site-width {
        max-width: 1842px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:1280px) and (min-width:1024px) {
    .site-width {
        padding: 0px 40px;
        max-width: 1200px;
        padding: 0px 40px;
    }
}

@media screen and (max-width:1024px) and (min-width:888px) {
    .site-width {
        padding: 0px 40px;
    }
}

@media screen and (max-width:888px) and (min-width:769px) {
    .site-width {
        padding: 0px 40px;
    }
}

@media screen and (max-width:768px) {
    .site-width {
        padding: 6px 20px;
    }
}



/* Btn */
button.button1cls.dark {
    --background: #2F3545;
    --shadow: 0 2px 8px -1px rgba(21, 25, 36, 0.32);
    --shadow-hover: 0 4px 20px -2px rgba(21, 25, 36, 0.5);
}

button.button1cls.white {
    --background: #fff;
    --text: #275efe;
    --shadow: 0 2px 8px -1px rgba(18, 22, 33, 0.04);
    --shadow-hover: 0 4px 20px -2px rgba(18, 22, 33, 0.12);
}

button.button1cls.fast {
    --duration: .32s;
}

button.button1cls {
    --background: #275efe;
    --text: #fff;
    --font-size: 14px;
    --duration: .44s;
    --move-hover: -4px;
    --shadow: 0 2px 8px -1px rgba(39, 94, 254, 0.32);
    --shadow-hover: 0 4px 20px -2px rgba(39, 94, 254, 0.5);
    --font-shadow: var(--font-size);
    padding: 16px 32px;
    font-family: "Roboto";
    font-weight: 500;
    line-height: var(--font-size);
    border-radius: 24px;
    display: block;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    text-decoration: none;
    font-size: var(--font-size);
    letter-spacing: 0.5px;
    background: var(--background);
    color: var(--text);
    box-shadow: var(--shadow);
    transform: translateY(var(--y)) translateZ(0);
    transition: transform var(--duration) ease, box-shadow var(--duration) ease;
}

button.button1cls div {
    display: flex;
    overflow: hidden;
    text-shadow: 0 var(--font-shadow) 0 var(--text);
}

button.button1cls div span {
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-style: normal;
    transition: transform var(--duration) ease;
    transform: translateY(var(--m)) translateZ(0);
}

button.button1cls:hover {
    --y: var(--move-hover);
    --shadow: var(--shadow-hover);
}

button.button1cls:hover span {
    --m: calc(var(--font-size) * -1);
}

button.button1cls.reverse {
    --font-shadow: calc(var(--font-size) * -1);
}

button.button1cls.reverse:hover span {
    --m: calc(var(--font-size));
}


/* For Anchor */
a.button1cls.dark {
    --background: #2F3545;
    --shadow: 0 2px 8px -1px rgba(21, 25, 36, 0.32);
    --shadow-hover: 0 4px 20px -2px rgba(21, 25, 36, 0.5);
}

a.button1cls.white {
    --background: #fff;
    --text: #275efe;
    --shadow: 0 2px 8px -1px rgba(18, 22, 33, 0.04);
    --shadow-hover: 0 4px 20px -2px rgba(18, 22, 33, 0.12);
}

a.button1cls.fast {
    --duration: .32s;
}

a.button1cls {
    --background: #275efe;
    --text: #fff;
    --font-size: 14px;
    --duration: .44s;
    --move-hover: -4px;
    --shadow: 0 2px 8px -1px rgba(39, 94, 254, 0.32);
    --shadow-hover: 0 4px 20px -2px rgba(39, 94, 254, 0.5);
    --font-shadow: var(--font-size);
    padding: 16px 32px;
    line-height: var(--font-size);
    border-radius: 24px;
    display: block;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    text-decoration: none;
    font-size: var(--font-size);
    letter-spacing: 0.5px;
    background: var(--background);
    color: var(--text);
    box-shadow: var(--shadow);
    transform: translateY(var(--y)) translateZ(0);
    transition: transform var(--duration) ease, box-shadow var(--duration) ease;
}

a.button1cls div {
    display: flex;
    overflow: hidden;
    text-shadow: 0 var(--font-shadow) 0 var(--text);
}

a.button1cls div span {
    display: block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-style: normal;
    transition: transform var(--duration) ease;
    transform: translateY(var(--m)) translateZ(0);
    margin: -1px 5px 2px 0px;
}

a.button1cls div span:last-child {
    margin-right: 0px;
}


a.button1cls:hover {
    --y: var(--move-hover);
    --shadow: var(--shadow-hover);
}

a.button1cls:hover span {
    --m: calc(var(--font-size) * -1);
}

a.button1cls.reverse {
    --font-shadow: calc(var(--font-size) * -1);
}

a.button1cls.reverse:hover span {
    --m: calc(var(--font-size));
}


/* Btn */

/* CSS Start */

.topHeader {
    background: linear-gradient(180deg, #47206e, #311952);
}

.head-top-bar .top-head-welcome .textth {
    color: #fff;
}

.topHeadMessage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0px;
}

.topHeadMessage ul {
    display: flex;
    color: #ddd;
}

.topHeadMessage ul li h6 {
    font-size: 14px;
    color: #fff;
}

.topHeadMessage ul li {
    color: #fff;
    font-size: 14px;
}

.topHeadMessage ul li a {
    color: #fff;
    font-size: 13px;
    width: 22px;
    height: 22px;
    border-radius: 100%;
    text-align: center;
    display: inline-block;
    line-height: 24px;
    margin: 0px 0px 0px 10px;
}

.topHeadMessage ul li a:hover i.fa-facebook-f {
    color: #1877F2;
}

.topHeadMessage ul li a:hover i.fa-instagram {
    background: -webkit-linear-gradient(#fccc63, #fbad50, #cd486b, #4c68d7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.topHeadMessage ul li a:hover i.fa-linkedin-in {
    color: #0077b5;
}

.topHeadMessage ul li a:hover i.fa-x-twitter {
    color: #000;
}

.topHeadMessage ul li:first-child {
    margin-right: 5px;
}

.topHeadMessage ul li a:hover {
    background: #fff;
}

.marqueeWrapper {
    width: 100%;
    margin: 0px auto;
    padding: 5px 0px;
    border-top: 1px dashed #f0eaf1;
    position: relative;
}

.marqueeWrapper::after {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    bottom: 0px;
    width: 100px;
    height: 100%;
    background: #d4b6ff;
    z-index: 1;
}

.marqueeWrapper a {
    font-size: 13px;
    color: #484848;
}


.topHeadMessage ul.marqueeWrapper li {
    display: block;
    width: 100%;
}

.afterhdr-marquee {
    background: #fff;
    /* position: relative; */
    /* z-index: 3; */
    display: flex;
    align-items: center;
}

.afterhdr-marquee h5 {
    position: relative;
    /* left: 0px; */
    z-index: 2;
    /* padding: 0px 10px 0px 0px; */
    font-size: 14px;
    /* background: #fff; */
    font-weight: 500;
}

.afterhdr-marquee h5::after {
    position: absolute;
    content: '';
    right: 0px;
    width: 1px;
    height: 80%;
    visibility: hidden;
    top: 0px;
    bottom: 0px;
    margin: auto;
    background: #f0eaf1;
    ;
}

.afterhdr-marquee h6 {
    font-size: 13px;
    margin: 0px 0px 0px 0px;
    padding: 0px;
}

.topHeadContact {
    margin-right: 20px;
}

.topHeadContact ol {
    display: flex;
    margin-bottom: 0px;
    padding: 0px;
}

.topHeadContact ol li {
    margin-right: 10px;
}

.topHeadContact ol li a {
    color: #ffff;
    font-size: 14px;
}

.topHeadContact ol li i {
    color: #ddd;
    margin-right: 5px;
    font-size: 13px;
}

.headerMiddle {
    padding: 10px 0px;
    position: relative;
}

.headerMiddle::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 4px;
    background: #462673;
    visibility: hidden;
}

.middleHeaderWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.searchbar {
    position: relative;
}

.searchbar .seachInput {
    min-width: 510px;
    height: 42px;
    border: 1px solid #845987;
    border-radius: 8px;
    padding: 10px 18px;
    overflow: hidden;
    transition: 0.3s ease-in-out;
}

.searchbar .seachInput::placeholder {
    color: #a0a0a0;
}

.searchbar .seachInput:focus {
    border-color: #2e232a;
    border-width: 2px;
    transition: 0.3s ease-in-out;
}

.searchbar .searchButton {
    position: absolute;
    right: 0px;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 7px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    height: fit-content;
    font-size: 15px;
    color: #111;
    background: transparent;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    height: 42px;
    padding: unset;
    width: 50px;
}

.searchbarWrapper .suggestions {
    border: 1px solid #d7d7d78f;
    padding: 5px;
    display: none;
    position: absolute;
    z-index: 3;
    background: #fff;
    width: 100%;
    border-radius: 7px;
    padding: 20px 18px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    max-height: 400px;
    overflow-y: auto;
}

.searchbarWrapper .suggestions::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    max-height: 30%;
    height: 30%;
}

.searchbarWrapper .suggestions::-webkit-scrollbar {
    width: 4px;
    background-color: #F5F5F5;
    display: block;

}

.searchbarWrapper .suggestions::-webkit-scrollbar-thumb {
    background-color: #000000;
    border: 2px solid #555555;
    border-radius: 10px;
}

.searchbarWrapper::-webkit-scrollbar-track-piece:end {
    background: transparent;
    margin-bottom: 10px;
}

.searchbarWrapper::-webkit-scrollbar-track-piece:start {
    background: transparent;
    margin-top: 10px;
}

.searchbarWrapper {
    position: relative;
}

.searchbarWrapper .suggestions div {
    border-bottom: 1px dashed #e8e8e8;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 14px;
    color: #525252;
}

.searchbarWrapper .suggestions div:hover {
    background: #441c6214;
    ;
}

.searchbarWrapper .suggestions div:first-child {
    padding-top: 5px;
}

.searchbarWrapper .suggestions div:last-child {
    border-color: transparent;
    padding-bottom: 5px;
}

.button1 a,
.button1 button {
    padding: 13px 22px;
    background: linear-gradient(0deg, #2a085a, #462673);
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
}

.middleheadBtn {
    display: flex;
}

.midMobBtn {
    display: flex;
    align-items: center;
    padding-right: 5px;
}

.midMobBtn li {
    position: relative;
    margin-right: 5px;
    top: -1px;
    padding-right: 10px;
}

.midMobBtn li::after {
    content: '';
    position: absolute;
    right: 0px;
    width: 1px;
    height: 130%;
    background: #ddd;
    margin-top: auto;
    margin-bottom: auto;
    top: 0px;
    bottom: 0px;
}

.midMobBtn li i {
    font-size: 14px;
    color: #4b2472;
    /* margin-right: 5px; */
    position: relative;
    top: 1px;
}

.midMobBtn li a {
    font-weight: 600;
}

.midheadbtnul {
    display: flex;
    gap: 22px;
    align-items: center;
}

.midheadbtnul li {}

.midheadbtnul li a {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-direction: column;
    font-size: 15px;
    font-weight: 500;
    position: relative;
}
.midheadbtnul li a sub { position: absolute;
    width: 15px;
    height: 15px;
    top: -2px !important;
    right: -5px;
    color: #FFF;
    background: #bd00a9;
    border-radius: 100%;
    DISPLAY: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
font-family: Arial, Helvetica, sans-serif; }

.midheadbtnul li a svg {
    transition: 0.3s ease-in-out;
}

.midheadbtnul li a:hover svg {
    transform: scale(1.08);
}

.topHeaderSection {
    background: linear-gradient(90deg, #fbc7ff, #fccdff);
}

/* Text Animation */
p.animate-text {
    margin: 0;
    overflow: hidden;
    font-size: 16px;
    padding: 5px 0px;
    text-align: center;
}

p.animate-text span {
    display: none;
}

p.animate-text span.text-in {
    display: block;
    animation: textIn .5s ease;
}

p.animate-text span.text-out {
    animation: textOut .5s ease;
}

@keyframes textIn {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0%);
    }
}

@keyframes textOut {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-100%);

    }
}


.headerMain {
    position: relative;
    background: #fff8ff;
    border-top: 1px dashed #fee7ff;
    border-bottom: 1px dashed #fee7ff;
}

.headerMain.sticky {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 99;
}

.mainHeaderWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 85px;
}

.logoSection {
    width: 186px;

}

.logoSection img {
    width: 100%;
}

.mainHeaderNav {
    display: flex;
    justify-content: space-between;
}

.mainHeaderNav ul {
    display: flex;
    align-items: center;
}

.mainHeaderNav ul.deepdropDown {
    flex-direction: column;
    width: 100%;
    margin-top: 7px;
}

.mainHeaderNav ul li {
    margin: 0px 0px 0px 18px;
}

.mainHeaderNav ul li:first-child {
    margin-left: 0px;
}

.mainHeaderNav ul li a {
    color: #111;
    padding: 10px 12px;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.mainHeaderNav ul li a.headerEnquiryBtn {
    background: linear-gradient(45deg, #9c00a7, #ff6dcf);
    color: #fff;
    border-radius: 30px;
    width: 130px;
    text-align: center;
    height: 38px;
    line-height: 16px;
}

.mainHeaderNav ul li a.headerEnquiryBtn:hover {
    color: #fff;
    padding: 10px 12px;
}

.mainHeaderNav ul li a.headerEnquiryBtn::after {
    display: none;
}

.mainHeaderNav ul li a.active,
.mainHeaderNav ul li a:hover {
    color: #1d1e1e;
    padding: 9px 12px;
}

.mainHeaderNav ul li.hasMegaMenu a {
    padding-right: 22px;
}

.mainHeaderNav ul li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 3px;
    background: #a500b3;
    bottom: 0px;
    left: 0px;
    transition: 0.4s ease-in-out;
    border-radius: 30px;
}

.hasMegaMenu i {
    color: #fff;
    font-size: 13px;
    position: relative;
    left: -18px;
    transition: 0.4s ease-in-out;
}

.mainHeaderNav ul li.hasMegaMenu:hover i {
    color: #00480a;
}

.mainHeaderNav ul li a:hover:after,
.mainHeaderNav ul li a.active:after {
    width: 100%;
}

.mainHeaderNav ul li a.contactBtn {
    padding: 10px 20px;
    border-radius: 15px;
    background: linear-gradient(70deg, #a82710, #d54e00);
    color: #fff;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.mainHeaderNav ul li a.contactBtn::after {
    position: absolute;
    content: '';
    width: 0%;
    height: 120%;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    margin: auto;
    background: #111111;
    z-index: 1;
    transition: 0.4s ease-in-out;
}

.mainHeaderNav ul li a.contactBtn:hover:after {
    width: 120%;
}

.mainHeaderNav ul li a.contactBtn span {
    position: relative;
    z-index: 2;
    transition: 0.4s ease-in-out;

}

.mainHeaderNav ul li a.contactBtn:hover span {
    color: #ffffff;
}

.dropDownMenu {
    position: absolute;
    top: -5%;
    left: 100%;
    right: 0px;
    margin: auto;
    /* max-width: 1200px; */
    max-width: 310px;
    height: auto;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s ease-in-out;
    background: #ffff;
    box-shadow: rgb(99 99 99 / 10%) 0px 20px 10px 0px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    overflow: hidden;
    z-index: 2;
    border-radius: 15px;
    border: 1px solid #dddddd90;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    max-height: 363px;
    overflow: hidden;
    overflow-y: auto;
    width: max-content;
    min-height: 363px;
    min-width: 310px;
}

.dropDownMenu.onlysingle {
    max-height: inherit;
    min-height: inherit;
}

.dropDownMenu.onlysingle .dropDownCard {
    padding: 2px 10px;
}

.mainHeaderNav ul li.hasMegaMenu:hover .dropDownMenu {
    top: 0px;
    visibility: visible;
    opacity: 1;
    left: 100%;
}

.dropDownMenu::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    max-height: 30%;
    height: 30%;
}

.dropDownMenu::-webkit-scrollbar {
    width: 4px;
    background-color: #F5F5F5;
    display: block;

}

.dropDownMenu::-webkit-scrollbar-thumb {
    background-color: #000000;
    border: 2px solid #555555;
    border-radius: 10px;
}

.dropDownMenu ::-webkit-scrollbar-track-piece:end {
    background: transparent;
    margin-bottom: 10px;
}

.dropDownMenu ::-webkit-scrollbar-track-piece:start {
    background: transparent;
    margin-top: 10px;
}




.subMenuImgDis {
    width: 100%;
    background: linear-gradient(45deg, #a6240a, #ce4800);
    padding: 15px;
    height: 100%;
    border-radius: 15px;

}

.subMenuImgDis img {
    width: 100%;
    border-radius: 15px;
}

.subMenuImgDis h5 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 11px;
    color: #fff;
}

.subMenuImgDis p {
    text-align: left;
    color: #ffebeb;
    line-height: 24px;
    margin-top: 6px;
}

.dropDownMenuRow {
    display: flex;
    flex-wrap: wrap;
    padding: 4px;
    flex-direction: column;
}

.advanceSearch {
    text-align: center;
    margin-top: 5px;
    position: absolute;
    width: fit-content;
    margin: 3px auto;
    left: 0px;
    right: 0px;
}

.advanceSearch a {
    font-weight: 700;
    position: relative;
    font-size: 13px;
    color: #02991e;
}

.advanceSearch a::after {
    position: absolute;
    content: '';
    width: 84%;
    height: 1px;
    background-color: transparent;
    bottom: -4px;
    left: 0px;
    right: 0px;
    margin: auto;
    margin-right: 0px;

}

.advanceSearch i {
    font-size: 14px;
    margin-right: 5px;
}

.advanceSearchModal .middleheadBtn {
    margin: 0px auto;
}

.advanceSearchModal .modal-content {
    border-radius: 20px;
}

.advanceSearchModal .modal-header .modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #111111;
}

.advanceSearchModal .form-group label {
    margin-bottom: 5px;
}

.advanceSearchModal .form-group input {
    margin-bottom: 15px;
    border-radius: 30px;
    height: 44px;
}

.advanceSearchModal .form-group input:focus {
    box-shadow: none;
    border-color: #00480a;
}

.btnAdvanceSearch {
    text-align: center;
}

.btnAdvanceSearch a {
    display: inline-block;
    padding: 8px 21px;
    background: #fff;
    box-shadow: 0px 4px 5px #dddddd5c;
    border-radius: 30px;
    margin-top: 10px;
    border: 1px solid #ddddddcf;
    font-weight: 500;
    transition: 0.0s ease-in-out;
}

.btnAdvanceSearch a:hover {
    background: linear-gradient(45deg, #9c00a7, #ff6dcf);
    color: #ffff;
}

.dropDownCol {
    width: 100%;
}

.mainHeaderNav ul li .dropDownCol a {
    padding: 4px 10px;
    width: 100%;
}

.mainHeaderNav ul li .dropDownCol a:hover {
    background: #fff;
    color: unset;
    padding-left: 20px;
}

.mainHeaderNav ul li .dropDownCol a:hover:after {
    display: none;
}

.dropDownCard {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    border: 1px dashed #11111124;
    transition: 0.4s ease-in-out;
    margin: 4px 4px;
    flex-direction: column;
}


.dropDownImg {
    width: 50px;
    height: fit-content;
    border-radius: 5px;
    margin-right: 8px;
    overflow: hidden;
    border: none;
}

.dropDownImg img {
    width: 100%;
}

.dropDownName h4 {
    font-size: 14px;
    font-weight: 500;
    color: #2c2c2d;
}

.headOtherButtons ul {
    display: flex;
    align-items: center;
    gap: 12px;
}

.headOtherButtons ul li a {
    display: inline-flex;
    align-items: center;
    flex-direction: column;
    padding: 10px 16px;
    border-radius: 20px;
}

.headOtherButtons ul li a:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.headOtherButtons ul li a i {
    font-size: 18px;
    color: #ff8b3f;
}


.hasmenu>li>a {}

.browseCateMenus {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    transition: 0.4s ease-in-out;
    flex-direction: column;
    background: #ffffff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 20px;
    width: 290px;
}

.hasmenu>li:hover .browseCateMenus {
    visibility: visible;
    opacity: 1;
    top: 100%;
    z-index: 2;

}

.browseCateMenus>li>a img {
    width: 25px;
    margin-right: 10px;
}

.browseCateMenus>li>a span {}

.mainHeaderNav ul li .browseCateMenus li {
    margin: 0px;
    width: 100%;
    border-bottom: 1px dashed #ddd;
}

.mainHeaderNav ul li .browseCateMenus li:last-child {
    border: none;
}

.mainHeaderNav ul li .browseCateMenus>li>a {
    color: #2c2c2d;
}

.mainHeaderNav ul li .browseCateMenus>li>a {
    width: 100%;
    position: relative;
}

.mainHeaderNav ul li .browseCateMenus>li>a::after {
    position: absolute;
    content: '\f105';
    font-size: 15px;
    font-family: 'FontAwesome';
    right: 12px;
    width: 10px;
    height: 10px;
    background: none;
    left: auto;
    top: 14px;
    /* display: none; */

}

.mainHeaderNav ul li .browseCateMenus>li>a:hover {
    padding: 10px 12px;
    background: transparent;
    padding-left: 21px;
}

.browseCateMenus {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    transition: 0.4s ease-in-out;
    flex-direction: column;
    background: #ffffff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 20px;
    width: 290px;
}

.hasmenu>li:hover .browseCateMenus {
    visibility: visible;
    opacity: 1;
    top: 100%;
    z-index: 2;

}

.browseCateMenus>li>a img {
    width: 25px;
    margin-right: 10px;
}

.browseCateMenus>li>a span {}

.mainHeaderNav ul li .browseCateMenus li {
    margin: 0px;
    width: 100%;
    border-bottom: 1px dashed #ddd;
}

.mainHeaderNav ul li .browseCateMenus li:last-child {
    border: none;
}

.mainHeaderNav ul li .browseCateMenus>li>a {
    color: #2c2c2d;
}

.mainHeaderNav ul li .browseCateMenus>li>a {
    width: 100%;
    position: relative;
}

.mainHeaderNav ul li .browseCateMenus>li>a::after {
    position: absolute;
    content: '\f105';
    font-size: 15px;
    font-family: 'FontAwesome';
    right: 12px;
    width: 10px;
    height: 10px;
    background: none;
    left: auto;
    top: 14px;

}

.mainHeaderNav ul li .browseCateMenus>li>a:hover {
    padding: 10px 12px;
    background: transparent;
    padding-left: 21px;
}


/* slider start*/
.hero-slider {
    width: 100%;
    height: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0;
}

@media (max-width: 991px) {
    .hero-slider {
        height: 380px;
    }
}

@media (max-width: 767px) {
    .hero-slider {
        height: 240px;
    }
}

.hero-slider .swiper-slide {
    overflow: hidden;
    color: #fff;
}

.hero-slider .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-slider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    background: transparent;
    width: 32px;
    height: 47px;
    line-height: 50px;
    margin-top: -30px;
    text-align: center;
    border: 1px solid #fffffe;
    border-radius: 55px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {

    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: none;
    }
}

.hero-slider .swiper-button-prev {
    left: 8px;
    transform: translateX(50px);
}

.hero-slider .swiper-button-prev:before {
    font-family: "Font Awesome 5 Free";
    content: "\f060";
    font-size: 15px;
    color: #340459;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
    line-height: 5px;
    position: relative;
    top: -4px;
}

.hero-slider .swiper-button-next {
    right: 8px;
    transform: translateX(-50px);
}

.hero-slider .swiper-button-next:before {
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    font-size: 15px;
    color: #340459;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
    position: relative;
    top: -4px;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    text-align: left;
    line-height: 12px;
    font-size: 12px;
    color: #000;
    opacity: 0.3;
    background: #4b2572a6;
    transition: all .2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
    bottom: 30px;
}

@media screen and (min-width: 992px) {

    .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
    .hero-slider .swiper-pagination-custom,
    .hero-slider .swiper-pagination-fraction {
        /*     display: none; */
    }
}

.swiper-pagination {
    text-align: left;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 50px;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 767px) {
    .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
        bottom: 6px;

    }
}

/*--------------------------------------------------------------
      #hero-style
  --------------------------------------------------------------*/
.hero-style {
    height: 512px;
    transition: all .4s ease;
}

.SliderContentsWrapper {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1250px;
    margin: 0px auto;

}

.SliderContentsWrapper::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    bottom: 0px;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    background-image: url(../img/bg/bg1.png);
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    -webkit-animation: mover 7s infinite alternate;
    animation: mover 7s infinite alternate;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
        transform: scale(1.025);
    }

    100% {
        transform: translateY(0px);
        transform: scale(1);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
        transform: scale(1.025);
    }

    100% {
        transform: translateY(0px);
    }
}


.SliderContents {
    position: absolute;
    left: 0%;
    right: 0px;
    top: 0px;
    margin: auto;
    bottom: 0px;
    width: 42%;
    height: fit-content;
    z-index: 1;
    margin-left: 0px;
}

/* .SliderContentsWrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: linear-gradient(360deg, #000000bd -100px, transparent);
} */

@media (max-width: 991px) {
    .hero-style {
        height: 480pxpx;
    }
}

@media (max-width: 767px) {
    .hero-style {
        height: 240px;
    }
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btn {
    max-width: 750px;
    margin: 0px auto;
}

.hero-style .slide-title h2 {
    font-size: 46px;
    font-weight: 600;
    color: #2c2c2d;
    margin-bottom: 0px;
    text-transform: capitalize;
    transition: all .4s ease;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-style .slide-title h2 span {
    /* color: #42246c; */
    font-weight: 800;
    background: -webkit-linear-gradient(93deg, #4b2373, #47009d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 1199px) {
    .hero-style .slide-title h2 {
        font-size: 75px;
    }
}

@media (max-width: 991px) {
    .hero-style .slide-title h2 {
        font-size: 50px;
        margin: 0 0 35px;
    }
}

@media (max-width: 767px) {
    .hero-style .slide-title h2 {
        font-size: 35px;
        margin: 0 0 30px;
    }
}

.hero-style .slide-text p {
    font-size: 16px;
    color: #343434;
    margin: 0 0 20px;
    transition: all .4s ease;
    margin-top: 15px;
}

.hero-style .slide-text p span {
    color: #3e2266;
    font-weight: 600;
}

.hero-style .slide-btn a {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(90deg, #f4be6a, #ff1800 143%);
    border-radius: 30px;
    color: #fff;
    position: relative;
    animation: mover1 3s infinite linear;

}

@keyframes mover1 {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(3px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-style .slide-btn a::after {
    position: absolute;
    content: '';
    width: 96%;
    height: 5px;
    bottom: -10px;
    left: 0px;
    background: #2c2c2d;
    right: 0px;
    margin: auto;
    filter: blur(3px);
    border-radius: 100%;
    opacity: 0.3;
    animation: shadowEffector 3s infinite linear;
}

@keyframes shadowEffector {
    0% {
        opacity: 0.3;
        transform: translateY(0px);
    }

    50% {
        opacity: 0.8;
        transform: translateY(-3px);
    }

    100% {
        opacity: 0.3;
        transform: translateY(0px);
    }

}

.hero-style .slide-btn a i {
    transform: rotate(-90deg);
    margin-left: 6px;
}

@media (max-width: 767px) {
    .hero-style .slide-text p {
        font-size: 14px;
        font-size: 1rem;
        font-weight: normal;
        margin: 0 0 30px;
    }
}

.hero-style .slide-btns>a:first-child {
    margin-right: 10px;
}

.sliderElements {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    margin: auto;
}

.sliderDot {
    position: absolute;
    left: 46%;
    top: 10%;
    animation: upanddownmove 6s infinite linear;
}

.sliderCMove1 {
    bottom: 16%;
    position: absolute;
    left: 50%;
    animation: movers 5s infinite linear;
}

.sliderCMove2 {
    position: absolute;
    right: 8%;
    top: 30%;
    animation: movers 10s infinite linear;
}

.sliderProduct {
    animation: upanddownmove 10s infinite linear;
    position: absolute;
    width: 100%;
    height: 100%;
}

.sliderSurface {
    position: absolute;
    bottom: 12%;
    right: 4%;
    z-index: 1;
}

.sliderProductImg {
    position: absolute;
    bottom: 1%;
    right: 4%;
    z-index: 2;
}

.sliderProductImg.two {
    bottom: 12%;
    right: 4%;
    height: 90%;
}

.sliderFeature span {
    width: 116px;
    display: inline-block;
}

@keyframes movers {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes upanddownmove {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}



.aboutCompany {
    height: 100%;
    width: 34%;
    padding: 0px 23px;
}

.bannerWrapperSection {
    display: flex;
    height: 100%;
    align-items: center;
    /* background: #005ba8; */
}

.hero-slider {
    width: 100%;
}

.bgColor1 {
    background: #f5fff8;
}

.bgColor3 {
    background: #fff;
}

.features {
    padding-top: 50px;
}

.featuresWrapper {
    max-width: 100%;
    margin: 0px auto;
}

.featuresCard {
    padding: 20px;
    background: linear-gradient(359deg, #f7f7f7, #47206e00, #f7f7f7);
    border-radius: 10px;
    border: none;
    /* min-height: 216px; */
    position: relative;
}

.fCardImg {
    margin: 0px auto;
    margin-bottom: 0px;
    position: unset;
    top: -40px;
    left: 0px;
    right: 0px;
    background: transparent;
    width: 100px;
    height: 100px;
    padding: 10px 16px 5px;
    border-radius: 10px;
}

.fCardImg img {
    width: 100%;
    /* filter: hue-rotate(82deg); */
}

.fCardContent {
    text-align: center;
    padding-top: 0px;
    position: relative;
    z-index: 2;
    margin-top: 0px;
}

.fCardContent h4 {
    font-size: 20px;
    font-weight: 700;
    color: #47236b;
    margin-bottom: 5px;
    margin-top: -10px;
}

.fCardContent a {
    font-weight: 700;
    margin-top: 11px;
    display: inline-block;
    border: 1px solid #4d216a24;
    padding: 6px 20px;
    border-radius: 30px;
}

.fCardContent a i {
    font-size: 14px;
}


.productSlider {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.productSlider .swiper-button-next {
    transform: translateY(-50%);
    top: 50%;
    background-color: #ffffff87;
    background-size: 18px;
    width: 37px;
    height: 37px;
    backdrop-filter: blur(5px);
    border-radius: 5px;
    border: 1px solid #f3f3f3;
    box-shadow: 0px 0px 10px #5a5a5a12;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" x="0" y="0" viewBox="0 0 25 24" xml:space="preserve"><g><path fill="%23000" fill-rule="evenodd" d="M20.25 11c-2.438 0-4.66-2.22-4.66-4.66v-1h-2v1c0 1.774.778 3.438 1.999 4.66H3.25v2h12.339c-1.221 1.222-1.999 2.886-1.999 4.66v1h2v-1c0-2.439 2.222-4.66 4.66-4.66h1v-2z" clip-rule="evenodd" opacity="1"></path></g></svg>');
    right: 0px;
}

.productSlider .swiper-button-prev {
    transform: translateY(-50%)scaleX(-1);
    top: 50%;
    background-color: #ffffff87;
    background-size: 18px;
    width: 37px;
    height: 37px;
    backdrop-filter: blur(5px);
    border-radius: 5px;
    border: 1px solid #f3f3f3;
    box-shadow: 0px 0px 10px #5a5a5a12;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" x="0" y="0" viewBox="0 0 25 24" xml:space="preserve"><g><path fill="%23000" fill-rule="evenodd" d="M20.25 11c-2.438 0-4.66-2.22-4.66-4.66v-1h-2v1c0 1.774.778 3.438 1.999 4.66H3.25v2h12.339c-1.221 1.222-1.999 2.886-1.999 4.66v1h2v-1c0-2.439 2.222-4.66 4.66-4.66h1v-2z" clip-rule="evenodd" opacity="1"></path></g></svg>');
    left: 0px;
}

.whats-new-sec {
    border-radius: 8px;
    position: relative;
}

.whats-new-sec::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 80%;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: #faf2f9;
    border-radius: 27px;
    z-index: 1;
    border: 1px dashed #ddd;
}

.addtoWishlist {
    position: absolute;
    z-index: 2;
    right: 16px;
    top: 16px;
    background: #ffffffc7;
    width: 40px;
    height: 40px;
    border-radius: 16px;
    line-height: 39px;
    backdrop-filter: blur(7px);
}

.addtoWishlist:hover,
.addtoWishlist.active {
    color: red;
}

.offerStatuInfo {
    display: inline-block;
    position: absolute;
    left: 10px;
    background: linear-gradient(45deg, #8f035994, #89025291);
    border-radius: 22px;
    top: 10px;
    height: 30px;
    padding: 0px 13px;
    backdrop-filter: blur(8px);
}

.whats-new-sec .offerStatuInfo p {
    line-height: 29px;
    color: #ffff;
    font-size: 13px;
}

.whats-new-sec-img {
    background-color: #fff;
    width: 90%;
    border: 1px solid rgba(221, 221, 221, 0.713);
    text-align: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
    margin: auto;
    border-radius: 27px;
    position: relative;
    z-index: 2;
}

.whats-new-sec-img img {
    width: 100%;
}

.whats-new-content {
    padding: 0px 19px;
    padding-top: 15px;
    position: relative;
    z-index: 2;
    padding-bottom: 15px;
    min-height: 185px;
    max-height: 176px;
}

.ratingShow {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.listprOtherInfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.listprOtherInfo .ratingShow span {
    font-family: "Open Sans", sans-serif;
    ;

}

.ratingShow i {
    color: #edbe00;
    margin-right: 7px;
}

.listprPrice {
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
    font-weight: 500;
}

.listprPrice span {
    color: #aa0fad;
}

.whats-new-sec h4.listPrTitle {
    font-size: 18px;
    margin-bottom: 0px;
    line-height: normal;
    font-weight: 500;
    margin-top: 8px;
}

.whats-new-sec p {
    line-height: 20px;
    margin-bottom: -5px;
}

.whats-new-sec-wrapper p {
    margin-top: 0px;
    font-weight: 400;
    color: #000;
    font-size: 12px;
    line-height: 18px;
}

.whats-new-sec .defaultBtn a {
    height: 38px;
    padding: 7px 20px;
    position: relative;
    top: 0px;
    border-radius: 30px;
    margin-top: 20px;
}


.sectionTitle {
    text-align: center;
    position: relative;
}

.sectionTitle::after {
    content: '';
    position: absolute;
    width: 100px;
    margin: auto;
    height: 3px;
    background: #a500b3;
    left: 0px;
    right: 0px;
    border-radius: 30px;
    bottom: -10px;
}

.sectionTitle::before {
    content: '';
    position: absolute;
    width: 22px;
    margin: auto;
    height: 22px;
    left: 0px;
    right: 0px;
    border-radius: 100%;
    bottom: -18px;
    border: 3px solid #f6fafd;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns%3D%22http%3A//www.w3.org/2000/svg%22 version%3D%221.1%22 xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22 width%3D%22512%22 height%3D%22512%22 x%3D%220%22 y%3D%220%22 viewBox%3D%220 0 512 512%22 style%3D%22enable-background%3Anew 0 0 512 512%22 xml%3Aspace%3D%22preserve%22 class%3D%22%22%3E%3Cg%3E%3Cpath d%3D%22M406.069 52.966H105.931L0 158.897l256 300.137 256-300.137z%22 style%3D%22%22 fill%3D%22%2300c3ff%22 data-original%3D%22%2300c3ff%22 class%3D%22%22%3E%3C/path%3E%3Cpath d%3D%22M406.069 52.966 256 459.034l256-300.137z%22 style%3D%22%22 fill%3D%22%2387daff%22 data-original%3D%22%2387daff%22%3E%3C/path%3E%3Cpath d%3D%22m105.931 52.966 39.153 105.931H0z%22 style%3D%22%22 fill%3D%22%2300aaf0%22 data-original%3D%22%2300aaf0%22 class%3D%22%22%3E%3C/path%3E%3Cpath d%3D%22M256 52.966 145.084 158.897h221.832z%22 style%3D%22%22 fill%3D%22%2387daff%22 data-original%3D%22%2387daff%22%3E%3C/path%3E%3Cpath d%3D%22M366.916 158.897H512L406.069 52.966z%22 style%3D%22%22 fill%3D%22%23a5e9ff%22 data-original%3D%22%23a5e9ff%22%3E%3C/path%3E%3Cpath d%3D%22M0 158.897h145.084L256 459.034z%22 style%3D%22%22 fill%3D%22%230096dc%22 data-original%3D%22%230096dc%22 class%3D%22%22%3E%3C/path%3E%3C/g%3E%3C/svg%3E');
    background-size: 100%;
    z-index: 1;
    background-color: #fff;
}

.sectionTitle h4 {
    font-size: 36px;
    font-weight: 500;
    color: #2d2229;
    letter-spacing: -1px;
}

.sectionTitle.light h4 {
    color: #fff;
}

.sectionTitle.light::before {
    background: #451e6d;
}

.sectionTitle.light::after {
    background: #f7f7f7;
}

.featured-swiper-container {
    position: relative;
    overflow: hidden;
}


.featured-swiper-container.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 0px;
}

.featured-swiper-container .swiper-button-next {
    transform: translateY(-50%);
    top: 50%;
    background-color: #ffffff87;
    background-size: 18px;
    width: 37px;
    height: 37px;
    backdrop-filter: blur(5px);
    border-radius: 5px;
    border: 1px solid #f3f3f3;
    box-shadow: 0px 0px 10px #ddd;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" x="0" y="0" viewBox="0 0 25 24" xml:space="preserve"><g><path fill="%23000" fill-rule="evenodd" d="M20.25 11c-2.438 0-4.66-2.22-4.66-4.66v-1h-2v1c0 1.774.778 3.438 1.999 4.66H3.25v2h12.339c-1.221 1.222-1.999 2.886-1.999 4.66v1h2v-1c0-2.439 2.222-4.66 4.66-4.66h1v-2z" clip-rule="evenodd" opacity="1"></path></g></svg>');
}

.featured-swiper-container .swiper-button-prev {
    transform: translateY(-50%)scaleX(-1);
    top: 50%;
    background-color: #ffffff87;
    background-size: 18px;
    width: 37px;
    height: 37px;
    backdrop-filter: blur(5px);
    border-radius: 5px;
    border: 1px solid #f3f3f3;
    box-shadow: 0px 0px 10px #ddd;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" x="0" y="0" viewBox="0 0 25 24" xml:space="preserve"><g><path fill="%23000" fill-rule="evenodd" d="M20.25 11c-2.438 0-4.66-2.22-4.66-4.66v-1h-2v1c0 1.774.778 3.438 1.999 4.66H3.25v2h12.339c-1.221 1.222-1.999 2.886-1.999 4.66v1h2v-1c0-2.439 2.222-4.66 4.66-4.66h1v-2z" clip-rule="evenodd" opacity="1"></path></g></svg>');
}



.sectionTitle.light h4 {
    color: #fff;
}

.shopbyPriceWrapper {
    margin-top: 50px;
}

.shopbyPrice {
    background: url(../img/bg/shop-by-price-bg.jpg);
    background-size: contain;
    padding: 50px 300px;
}

.shopbyPriceCard {
    width: 100%;
    margin-bottom: 20px;
}

.shopbyPriceCard img {
    width: 100%;
}

.journelCards {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    padding: 8px;
    /* background: #fff; */
    /* box-shadow: rgb(149 157 165 / 13%) 0px 8px 24px; */
    min-height: 355px;
}

.journalImg {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid #fff;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.journalImg img {
    width: 100%;
    border-radius: 20px;
    transition: 0.4s ease;
}

.journelCards:hover .journalImg img {
    transform: scale(1.2);
}

.journalContent {
    position: relative;
    text-align: center;
    padding: 16px 20px 10px;
}

.journalContent h4 {
    font-size: 18px;
    font-weight: 600;
    color: #343434;
    margin-bottom: 5px;
    margin-top: 10px;
    /* margin: 15px 0px 5px; */
}

.journalContent p {
    font-size: 13px;
    line-height: 20px;
}

.journalContent p span:first-child {
    font-weight: 600;
}

.middleheadBtn.FeatureviewBtn {
    position: absolute;
    top: -20px;
    right: 0px;
    left: 0px;
    margin: auto;
    width: fit-content;
}

.middleheadBtn.FeatureviewBtn .button1 a {
    padding: 10px 20px;
    letter-spacing: 0px;
}

.bg1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-image: url(../img/bg/white-patterned-wallpaper.jpg);
    background-color: #ffffffe3;
    background-blend-mode: overlay;
    background-size: contain;
    z-index: -1;
}

.bg2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-image: url(../img/bg/white-patterned-wallpaper.jpg);
    background-color: #fffffff7;
    background-blend-mode: overlay;
    background-size: contain;
    z-index: -1;
}

.featured-swiper-container {
    position: relative;
}

.featured-swiper-container {
    overflow: hidden;
    padding: 0px 3px;
}

.featured-swiper-container.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 0px;
}

.featured-swiper-container2 {
    margin-top: 50px;
    position: relative;
    padding-bottom: 40px;
}

.featured-swiper-container2 {
    overflow: hidden;
    position: relative;
}

.featured-swiper-container2.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 0px;
}

.featured-swiper-container2 .swiper-button-prev {
    position: absolute;
    left: 46%;
    top: 91%;
    background-size: 10px;
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    box-shadow: #00000029 0px 1px 4px;
    z-index: 3;
}

.featured-swiper-container2 .swiper-button-next {
    position: absolute;
    right: 46%;
    top: 91%;
    background-size: 10px;
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    box-shadow: #00000029 0px 1px 4px;
    z-index: 3;
}

.featured-swiper-container2 .swiper-button-next:hover {
    background-color: #00459f2d;
}

.featured-swiper-container2 .swiper-button-prev:hover {
    background-color: #00459f2d;
}

.essentialsSec {
    background: #faf2f9;
}

.essentialWrap {
    margin-top: 50px;
}

.essentialCard {
    width: 100%;
    position: relative;
    transition: 0.3s ease-in-out;
}

.essentialCard:hover {
    transform: translateY(-7px);
}

.essentialImg {
    width: 100%;
    position: relative;
    border-radius: 27px;
    overflow: hidden;
}

.essentialImg::after {
    content: "";
    height: 30px;
    width: 30px;
    position: absolute;
    bottom: 0;
    left: auto;
    background-image: url(../img/shapes/top-shape.png);
    background-size: 100%;
    background-repeat: no-repeat;
    right: 0px;
    top: 203px;
}

.essentialImg::before {
    content: "";
    height: 30px;
    width: 30px;
    position: absolute;
    bottom: 0;
    left: auto;
    background-image: url(../img/shapes/top-shape.png);
    background-size: 100%;
    background-repeat: no-repeat;
    right: 79px;
    bottom: 0px;
}

.essentialImg img {
    width: 100%;
}

.btnEssentials {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 90px;
    height: 90px;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    border-radius: 0;
    background: #faf2f9;
    padding: 10px;
    border-top-left-radius: 27px;
}

.btnEssentials i {
    width: 100%;
    display: inline-block;
    height: 100%;
    background: #111;
    border-radius: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btnEssentials svg {
    width: 26px;
    fill: #fff;
    height: fit-content;
}


.offerbanerImg {
    width: 100%;
    border-radius: 27px;
    overflow: hidden;
}

.offerbanerImg img {
    width: 100%;
}

.journelCards {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    padding: 8px;
    /* background: #fff; */
    /* box-shadow: rgb(149 157 165 / 13%) 0px 8px 24px; */
    min-height: 230px;
    position: relative;
}

.journelCards::after {
    content: '';
    position: absolute;
    right: 0px;
    background: url(../img/icons/line.png);
    width: 4px;
    height: 80%;
    top: 0px;
    bottom: 0px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    display: none;
}

.featured-swiper-container .swiper-slide.my-custom-class .journelCards::after {
    content: none;
    display: none;
}

.journalImg {
    width: 190px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #ac19a8;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
    position: relative;
}

.journalImg img {
    width: 100%;
    border-radius: 0px;
    transition: 0.4s ease;
}

.productDiscount {
    width: 40px;
    position: absolute;
    top: 0px;
    z-index: 8;
    background: #ddd;
}

.journelCards:hover .journalImg img {
    transform: scale(1.2);
}

.journalContent {
    position: relative;
    text-align: center;
    padding: 2px 8px 2px;
}

.journalContent h4 {
    font-size: 17px;
    font-weight: 700;
    color: #343434;
    margin-bottom: 5px;
    margin-top: 12px;
    /* margin: 15px 0px 5px; */
    font-family: 'Marcellus';
}

.journalContent p {
    font-size: 13px;
}

.journalContent p span:first-child {
    font-weight: 600;
}

.useforDefault {
    width: fit-content;
    margin: 0px auto;
}


.topFeaturesListings {
    margin-top: 50px;
}

.tiffinBookingCard {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #fafffb;
    box-shadow: 0px 0px 13px #dddddd91;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #dddddd78;
    margin-bottom: 30px;
}

.tbcIco {
    width: 17%;
    border-radius: 15px;
    overflow: hidden;
    margin-right: 33px;
}

.tbcIco img {
    width: 100%;
}

.tbcContent {
    width: 83%;
}

.tbcContent h3 {
    font-size: 22px;
    color: #007a49;
    font-weight: 800;
}

.tbcContent h5 {
    font-size: 14px;
    color: #343434;
    margin: 1px 0px;
    font-weight: 600;
    margin-bottom: 10px;
}

.tbcContent p {
    font-size: 15px;
    font-weight: 400;
    text-align: justify;
}


.tbcContent p span {
    font-weight: 600;
}

.tbcContent a {
    color: #111111;
}

.cardButtonSection {
    display: flex;
    align-items: center;

}

.cardButtonSection .btnAdvanceSearch {
    text-align: left;
    margin-right: 12px;
}

.btnAdvanceSearch.coloredbg a {
    background: linear-gradient(0deg, #005d0f, #00bb2a);
    color: #ffff;

}

.cardButtonSection .btnAdvanceSearch a {
    transition: 0.1s ease-in-out;
}

.btnAdvanceSearch.coloredbg a:hover {
    background: #fff;
    color: #111111;
}

.btnAdvanceSearch.coloredbg a i {
    margin-right: 5px;
}

.cardButtonSection .btnAdvanceSearch a i {
    margin-right: 5px;
}

.cardButtonSection .btnAdvanceSearch a {
    padding: 5px 20px;
}

.cardButtonSection .btnAdvanceSearch a:hover {
    transform: translateY(-2px);
}


.giftingGuideSec {
    background: #faf2f9;
    padding: 50px 300px;
}

.giftingGuideWrapper {
    margin-top: 50px;
}

.giftingGuideCard {
    position: relative;
    transition: 0.3s ease-in-out;
    margin-bottom: 30px;
}

.giftingGuideCard:hover {
    transform: translateY(-5px);
}

.giftingGuideCard::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 10px;
    bottom: -20px;
    left: 0px;
    right: 0px;
    background-color: #11111175;
    filter: blur(5px);
    z-index: 1;
    border-radius: 100%;
    margin: auto;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.giftingGuideCard:hover::after {
    visibility: visible;
    opacity: 1;
}

.giftingGuideImage {
    width: 100%;
    position: relative;
}

.giftingGuideImage img {
    width: 100%;
    position: relative;
    z-index: 2;
}


.goldprSlider {
    overflow: hidden;
}

.goldCard {
    width: 100%;
    position: relative;
}

.goldImgCard {
    width: 100%;
}

.goldImgCard img {
    width: 100%
}

.goldContentText h4 {
    text-align: center;
    margin-top: 11px;
}


.shopbyPrice.shopSomeOther {
    background: url(../img/bg/light-cream-bg.png);
}

.shopbyPriceWrapper.shopSomeOtherWrapper {
    margin-top: 0px;
}

.shopbyPriceWrapper.shopSomeOtherWrapper .shopbyPriceCard {
    border-radius: 27px;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
}

.shopbyPriceWrapper.shopSomeOtherWrapper .shopbyPriceCard img {
    transition: 0.3s ease-in-out;
}

.shopbyPriceWrapper.shopSomeOtherWrapper .shopbyPriceCard:hover img {
    transform: scale(1.08);
}

.shopbyPriceWrapper.shopSomeOtherWrapper .shopbyPriceCard h4 {
    position: absolute;
    z-index: 2;
    bottom: 30px;
    left: 30px;
    color: #fff;
    font-size: 22px;
}



.giftingGuideSec.essentialGiftSec {
    background: #fff;
}

.giftingGuideSec.essentialGiftSec .giftingGuideWrapper {
    margin-top: 20px;
}


.essentialsSec.shopbyColor {
    background: url(../img/bg/bycolorbg.jpg);
    background-size: 100%;
}

.essentialsSec.shopbyColor .btnEssentials {
    left: 0px;
    right: 0px;
    margin: auto;
    border-radius: 30px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.essentialsSec.shopbyColor .btnEssentials {
    background: #f2e6da;
}

.essentialsSec.shopbyColor .sectionTitle::before {
    background-color: #f2e6da;
    border: 3px solid #f2e6da;
}

.essentialsSec.shopbyColor .essentialImg::before {
    left: -120px;
    right: 0px;
    margin: auto;
    background-image: url(../img/shapes/top-shape-two.png);

}

.essentialsSec.shopbyColor .essentialImg::after {
    right: -120px;
    left: 0px;
    margin: auto;
    transform: rotate(90deg);
    bottom: 0px;
    top: auto;
    background-image: url(../img/shapes/top-shape-two.png);

}

.essentialsSec.shopbyColor .shopbyColorCard {
    margin-bottom: 40px;
}



.latestCollectionCard {
    width: 100%;
    position: relative;
}

.latestCollectionBg {
    width: 100%;
    border-radius: 17px;
    overflow: hidden;
}

.latestCollectionBg img {
    width: 100%;
}

.latestcollectionimgs ul {
    display: flex;
    width: 90%;
    margin: auto;
    align-items: center;
    gap: 13px;
    margin-top: -90px;
}

.latestcollectionimgs ul li {
    width: 31%;
    box-shadow: 0px 0px 10px #2f2f2f3b;
    border-radius: 13px;
    overflow: hidden;
    border: 4px solid #fff;
}

.latestcollectionimgs ul img {

    width: 100%;
}

.latestCollectionWrapper {
    margin-top: 50px;

}



.testimonialsWrapper {
    overflow: hidden;
    margin-top: 50px;
}

.testimonialsWrapper .swiper-button-next,
.testimonialsWrapper .swiper-button-prev {
    display: none;
}

.testimonials {
    position: relative;
    overflow: hidden;
}

.testimonialCard {
    padding: 30px;
    background: #faf2f9;
    border-radius: 30px;
    position: relative;
    padding-top: 100px;
    margin-top: 50px;
}

.testimonialImg {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    overflow: hidden;
    padding: 0px;
    margin-right: 15px;
    position: absolute;
    top: -41px;
    left: 0px;
    right: 0px;
    margin: auto;
    border: 4px solid #fff;
}

.testimonialImg img {
    width: 100%;

}

.testimonialsContent .tcMessage p {
    text-align: justify;
}

.tcAuthor {
    display: flex;
    align-items: center;
    margin-top: 14px;
    justify-content: center;
}

.tcAuthor h2 {
    font-size: 20px;
    font-weight: 600;
    color: #a500b3;
}

.tcAuthor p {
    font-size: 14px;
    color: #3e3e3e;
    margin-bottom: -4px;
}

.reviewRatings {
    display: flex;
    align-items: center;
    position: absolute;
    top: 66px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: fit-content;
}

.reviewRatings li {
    margin: 0px 0px 0px 0px;
}

.reviewRatings li i {
    font-size: 12px;
    color: #ffec13;
}

.testimonials-bg {
    width: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
    left: 0px;
    bottom: 0px;
    height: 100%;
    z-index: -1;
}

.testimonials-bg img {
    width: 100%;
}

.testiContainer {
    position: relative;
    z-index: 2;

}


.getknowmore {
    background: linear-gradient(90deg, #fbc7ff, #fccdff);
    text-align: center;
    padding: 8px 0px;
}

.getknowmore a {
    text-align: center;
    display: block;
}

.SecWrap {
    position: relative;
    z-index: 3;
}

.secImg {
    width: 100%;
    position: relative;
}

.secImg img.image-i {
    width: 86%;
    border-radius: 15px;
}

.secImg img.image-ii {
    position: absolute;
    bottom: -35px;
    right: 20px;
    width: 290px;
    border-radius: 15px;
    border: 3px solid #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.videoPop {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    position: absolute;
    top: 50%;
    left: 84%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    z-index: 1;
    background-color: #48216f;
    display: flex;
    align-items: center;
    justify-content: center;
}

img.imagepop {
    width: 60px;
}

.videoPop::after,
.videoPop::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 100%;
    z-index: -1;
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    background-color: #48216f;
}

.videoPop:before {
    animation: animationSignal1;
    animation-iteration-count: infinite;
    animation-duration: 3s;
    -webkit-animation: animationSignal1;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 3s;
}

.videoPop:after {
    animation: animationSignal2;
    animation-iteration-count: infinite;
    animation-duration: 3s;
    -webkit-animation: animationSignal2;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 3s;
}

@keyframes animationSignal1 {

    /*Video Popup*/
    0% {
        opacity: 0.8;
        transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        -webkit-transform: scale(0.9);
    }

    100% {
        transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
        -webkit-transform: scale(1.5);
        opacity: 0;
    }
}

@-webkit-keyframes animationSignal1 {

    /*Video Popup*/
    0% {
        transform: scale(0.9);
        -moz-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
        -webkit-transform: scale(0.9);
    }

    100% {
        transform: scale(1.5);
        -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
        -o-transform: scale(1.5);
        -webkit-transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes animationSignal2 {

    /*Video Popup*/
    0% {
        transform: scale(0.9);
        -moz-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
    }

    100% {
        transform: scale(1.9);
        -moz-transform: scale(1.9);
        -webkit-transform: scale(1.9);
        -ms-transform: scale(1.9);
        -o-transform: scale(1.9);
        opacity: 0;
    }
}

@-webkit-keyframes animationSignal2 {

    /*Video Popup*/
    0% {
        transform: scale(0.9);
        -moz-transform: scale(0.9);
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        -o-transform: scale(0.9);
    }

    100% {
        transform: scale(1.9);
        -moz-transform: scale(1.9);
        -webkit-transform: scale(1.9);
        -ms-transform: scale(1.9);
        -o-transform: scale(1.9);
        opacity: 0;
    }
}

.secbg.bgcolor2 {
    width: 44%;
    background: linear-gradient(269deg, #4a2471e0, #30085bc9), url(../img/other/plant2.jpg);
    opacity: 1;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    left: 0px;
    margin-left: 0px;
}

.secbg.right {
    right: 0px;
    margin-left: 0px;
    opacity: 0.5;
    width: 956px;
    margin-left: auto;
}

.homeAboutPara.inner.sec2 {
    margin-top: 50px;
}

.homeAboutPara.inner.sec2 p {
    text-align: justify;
}

.homeAboutPara.inner.sec2 h4 {
    font-weight: 600;
}

.homeAboutPara.inner p {
    margin-top: 8px;
    text-align: justify;
}

.homeAboutPara.companyProfile {
    padding-left: 60px;
}

.testiWrapper {
    padding-left: 7%;
}

.teamSlidWrap {
    margin-right: 40px;
}

.teamMainSlider {
    overflow: hidden;

}

.teamMainSlider .teamMainSliderCard {
    overflow: hidden;
    padding: 20px;
    background: linear-gradient(2deg, #ffffff, #ffffff), url(../img/texture/texture6.jpg);
    background-size: 100% 100%;
    border-radius: 15px;
    border: 1px solid #dddddd4d;
    background-size: cover;
    min-height: 330px;
}

.testibg {
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    width: 46%;
}

.testibg img {
    width: 100%;
}

.teamCardImg {
    margin: 0px auto;
    margin-bottom: 13px;
    width: 141px;
    height: 141px;
    border-radius: 20px;
    overflow: hidden;
    /* margin-top: -70px; */
    position: relative;
    background: #f4e6ff;
    border-radius: 100%;
    padding: 20px;
    border: 1px dashed #5d387d73;


}

.teamCardImg:before {
    position: absolute;
    top: 0;
    left: -85%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.teamMainSliderCard:hover .teamCardImg:before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.teamCardImg img {
    width: 100%;
}

.teamCardContents {
    text-align: center;

}

.teamCardContents h4 {
    /* font-weight: 22px; */
    font-weight: 700;
    color: #5a1469;
    margin-bottom: 6px;
}

.teamCardContents h6 {
    color: #404040;
    font-size: 18px;
    margin: 10px 0px;
    font-weight: 700;
    font-family: 'Optima';
}

.teamCardContents a {
    display: inline-block;
    margin-top: 10px;
    color: #440000;
}

.teamSlidWrap .swiper-button-prev,
.teamSlidWrap .swiper-button-next {
    display: none;
}

.companyProfile .cuspadPara {
    /* padding-right: 30%; */
    text-align: justify;
    margin-bottom: 19px;
}

.countersWrap {
    margin-top: 40px;
}

.countersWrap .common-box {
    background: linear-gradient(268deg, #e3e0ff91, white), url(../img/texture/texture1.jpg);
    padding: 20px 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 15px;
    margin-bottom: 16px;
    position: relative;
    background-size: contain;
    min-height: 115px;
    padding: 13px 20px;
}

.countersWrap .common-box.left {
    background: linear-gradient(268deg, white, #e3e0ff91), url(../img/texture/texture1.jpg);
}

.countersWrap .common-box .counter-num {
    font-size: 30px;
    color: #52196b;
    font-family: 'Open Sans';
    font-weight: 800;
}

.countersWrap .common-box .counter-text {
    font-size: 14px;
    font-weight: 700;
    width: 70%;
    line-height: 18px;
}

.coutnerIco {
    position: absolute;
    right: 13px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    width: 80px;
    height: 80px;
    opacity: 0.9;

}

.coutnerIco img {
    width: 100%;
    opacity: 0.6;
    filter: hue-rotate(189deg);
}

.common-box.year-exp-card {
    position: absolute;
    right: 8%;
    z-index: 2;
    width: fit-content;
    /* text-align: center; */
    bottom: -36px;
    background: #fff;
    padding: 28px 35px;
    z-index: 4;
    box-shadow: 0px 0px 30px #00000024;
    /* border-radius: 14px; */
    border-bottom: 4px solid #c31c00;
    display: flex;
    align-items: center;
    animation: dzMove1 12s linear infinite;
}

.common-box.year-exp-card .counter-num {
    font-size: 52px;
    line-height: 47px;
    font-weight: 700;
    margin-right: 12px;
    letter-spacing: 0;
    color: #c31c00;
}

.common-box.year-exp-card .counter-text {
    letter-spacing: 0;
    font-family: 'Souvenir';
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}


.secTitle {
    position: relative;
}

.secTitle .subTitle {
    color: #462673;
    display: inline-block;
    padding: 0px;
    border-radius: 10px;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
    position: relative;
    padding-bottom: 3px;
}

.secTitle .subTitle::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 2px;
    background: #34343403;
    bottom: 0px;
    left: 0px;
}

.secTitle .mainTitle {
    color: #343434;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.defaultListView .title {
    font-size: 18px;
    margin-top: 20px;
}

.defaultListView ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.defaultListView ul li {
    width: 48%;
    padding-left: 25px;
    background-image: url(../img/icons/check.png);
    background-size: 18px;
    background-position: left center;
    background-repeat: no-repeat;
    line-height: 24px;
}

.secbg {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    width: 842px;
    z-index: 1;
    opacity: 0.3;
    margin-right: 0px;
}

.secbg img {
    width: 100%;
}

.defaultBtn.centered {
    text-align: center;
}

.defaultBtn a,
.defaultBtn button {
    padding: 8px 20px;
    border-radius: 7px;
    background: linear-gradient(45deg, #9c00a7, #ff6dcf);
    color: #fff;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    display: inline-block;
    height: 40px;
}

.defaultBtn a i,
.defaultBtn button i {
    margin-left: 5px;
}

.defaultBtn a::after,
.defaultBtn button::after {
    position: absolute;
    content: '';
    width: 0%;
    height: 120%;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    margin: auto;
    background: #111111;
    z-index: 1;
    transition: 0.4s ease-in-out;
}

.defaultBtn a span,
.defaultBtn button span {
    position: relative;
    z-index: 2;
    transition: 0.4s ease-in-out;
}

.defaultBtn a:hover span,
.defaultBtn button:hover span {
    color: #ffffff;
}

.defaultBtn a:hover:after,
.defaultBtn button:hover:after {
    width: 120%;
}

.defaultBtn.light a {
    background: #fff;
    color: #2f075a;
}

.homeAboutPara .defaultBtn {
    margin-top: 30px;
}

.texture3 {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 140px;
    z-index: 2;
    animation: circleMover 10s infinite linear;
    opacity: 0.4;
}

.texture3 img {
    width: 100%;
}


@keyframes circleMover {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.defaultListView {
    margin-top: 10px;
}

.middleheadBtn.leftheadBut {
    width: fit-content;
    margin-top: 20px;
}


.categoryCard {
    border: 1px dashed #2e095530;
    display: flex;
    align-items: center;
    padding: 8px;
    border-radius: 10px;
    background: linear-gradient(270deg, white, #52196b0d 49%, white);
    margin-bottom: 20px;
}

.ourPrBtn {
    margin-top: 20px;
}

.categoryImg {
    width: 20%;
    display: inline-block;
    background: #ddd;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ddd;
    margin-right: 10px;
}

.categoryImg img {
    width: 100%;
}

.categoryContent {
    width: 73%;
    display: inline-block;
}

.categoryContent h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0c0c0c;
}

.moreContent {
    display: none;
}

.sponcersSwiper {
    overflow: hidden;
    position: relative;
}

.sponcerSlider {
    margin-top: 40px;
}

.soponcerimg {
    height: 85px;
    background: #ffffff;
    border: 1px solid #dddddd59;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
}

.soponcerimg img {
    height: 100%;
}

.internationVentures {
    background: #f0eaf1;
}

.homectfrombg {
    position: absolute;
    z-index: 2;
    width: 62%;
    height: 100%;
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    transform: scale(1);

}

.SecWrap.globalWrapper {
    max-width: 500px;
}

.SecWrap.globalWrapper .pq-form-box {
    padding: 30px;
    /* margin: 0 auto; */
    box-shadow: 0px 0px 30px 0px rgb(21 21 21 / 11%);
    text-align: center;
    /* margin-bottom: -60px; */
    background: linear-gradient(0deg, #2a085a, #462673d6), url(../img/bg/bg2.jpg);
    position: relative;
    z-index: 1;
    margin-left: 40px;
    border-radius: 15px;
    background-size: cover;
    margin: 0px auto;
    margin-right: 0px;
    border: 1px solid #dddddd52;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;

}

.pq-form-box {
    padding: 45px;
    /* margin: 0 auto; */
    box-shadow: 0px 0px 30px 0px rgb(21 21 21 / 11%);
    text-align: center;
    /* margin-bottom: -60px; */
    background: #fff;
    position: relative;
    z-index: 1;
    margin-left: 40px;
    border-radius: 15px;
}

.pq-applyform {
    border-radius: 12px;
}

.pq-form-box input,
.pq-form-box textarea,
.pq-form-box input.form-control {
    background: #f4f6f9;
    border: 1px solid #f4f6f9;
    color: #343434;
    margin-bottom: 30px;
    width: 100%;
    float: left;
    font-size: 14px;
    font-weight: 400;
    padding: 0 15px;
    height: 46px;
    line-height: 54px;
    outline: none;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    border-radius: 10px;
    overflow-y: auto;
    color: #0c0c0c;
}

.pq-form-box input::placeholder,
.pq-form-box textarea::placeholder {
    color: #a0a0a0;
}

.pq-form-box input:focus,
.pq-form-box input:hover,
.pq-form-box textarea:focus,
.pq-form-box textarea:hover,
.pq-form-box .form-control:focus {
    border-color: #4b1c6c;
    outline: none;
    box-shadow: none;
}

.secbg.right.global-img {
    width: 620px;
    height: fit-content;
    margin-bottom: 0px;
}

.pq-applyform-whitebg {
    margin-top: 40px;
}

.bgfull {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    opacity: 0.3;
    visibility: hidden;
}

.bgfull img {
    width: 100%;
}

.blogsWrapper {
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}

.blogSwiper {
    padding: 0px 0px;
}


.blogSwiperCard {
    background: linear-gradient(268deg, white, #f1f1f1), url(../img/texture/texture1.jpg);
    border-radius: 8px;
    /* overflow: hidden; */
    padding: 12px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    transition: 0.4s ease-in-out;
    position: relative;
    z-index: 2;
    margin: 15px 0px;
}

.blogSwiperCard::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    margin: auto;
    z-index: 1;
    transition: 0.4s ease-in-out;
    border-radius: 8px;
}

.blogSwiperCard:hover:before {
    height: 105%;
    width: 100.5%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: #fff;
}

.blogCardImg {
    width: 100%;
    position: relative;
    z-index: 2;
}

.blogCardImg img {
    width: 100%;
    border-radius: 6px;
}

.blogSwiperCard:hover .blogCardImg:before {
    -webkit-animation: zoom-hover 0.75s;
    animation: zoom-hover 0.75s;
}

.blogCardImg:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 2;
}

@-webkit-keyframes zoom-hover {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@keyframes zoom-hover {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}


.blogviewBtn {
    display: flex;
    padding-top: 10px;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.blogviewBtn p {
    color: #340459;
    font-weight: 600;
}

.blogviewBtn a {
    font-weight: 600;
    width: 30px;
    height: 30px;
    background: #f2f2f2;
    border-radius: 8px;
    color: #4b1c6c;
    text-align: center;
    line-height: 30px;
}

.blogviewBtn a:hover {
    background: #4b1c6c;
    color: #e9e5f0;
}

.blogHeader {
    position: relative;
    z-index: 2;
}

.blogHeader ul {
    display: flex;
    align-items: center;
    /* border-bottom: 1px solid #dddddd70;
    border-top: 1px solid #dddddd70; */
    padding: 0px 0px 0px;
    justify-content: space-between;
}

.blogHeader ul li {
    font-size: 13px;
    color: #626262;
}

.blogHeader ul li i {
    color: #343434;
}

.blogHeader h4 {
    font-size: 15px;
    color: #0c0c0c;
    margin-bottom: 12px;
    margin-top: 6px;
    line-height: 22px;
    font-weight: 600;
}


.blogCardContent p {
    text-align: justify;
    line-height: 22px;
    margin-bottom: 8px;
}

.blogs .serviceWrapper .swiper-slide.swiper-slide-active {
    box-shadow: rgba(0, 0, 0, 0) 0px 10px 50px;
}

.blogs .serviceBtn a {
    color: #2f075a;
}

.blogSwiper .swiper-button-next {
    background-size: 11px;
    background-color: #ffffffed;
    width: 40px;
    height: 40px;
    border-radius: 15px;
    border: 1px solid #ddd;
    right: 5px;
}

.blogSwiper .swiper-button-prev {
    background-size: 11px;
    background-color: #ffffffed;
    width: 40px;
    height: 40px;
    border-radius: 15px;
    border: 1px solid #ddd;
    left: 5px;
}

/* Footer  */


.footer-section {
    width: 100%;
    background-image: url(../images/background/bg-2.jpg);
    background-size: cover;
    background-color: #1d1d1df5;
    background-blend-mode: multiply;
    padding: 80px 0px;
    position: relative;
}

.footer-section .site-width {
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
}

.footer-logo img {
    width: 220px;
    margin: 0px 0px 0px 0px;
    margin-bottom: 14px;
    filter: invert(3) brightness(2.5);
}

.footer-co-description p {
    font-size: 15px;
    color: #fff;
    margin-top: 15px;
    line-height: 22px;
    text-align: justify;
}

.footer-links {
    padding-left: 20px;
}

.footer-title h4 {
    color: #fbf6f4;
    font-size: 22px;
    position: relative;
    display: inline;
}

.footer-title h4::after {
    position: absolute;
    width: 30%;
    content: "";
    height: 2px;
    background: linear-gradient(45deg, #a500b3, #262626);
    bottom: -4px;
    left: 0;
    transition: 0.4s ease-in, 0.4s ease-out;
}

.footer-links:hover .footer-title h4:after {
    width: 100%;
    background: linear-gradient(90deg, #262626, #a500b3);
}

.footer-links ul {
    padding-left: 0px;
    margin-top: 48px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.4s ease-in-out;
    line-height: 22px;
}

.footer-links ul li a:hover {
    color: #a500b3;
}

.footer-links .address-sec li {
    margin-bottom: 12px;
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
}

/* .footer-links .address-sec li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
} */
.footer-links .address-sec li i {
    margin-right: 10px;
    color: #a500b3;
    font-size: 14px;
}

.follow-us-on-text {
    color: #fff;
    margin-bottom: 5px;
}

.footer-social-links {
    display: flex;
    margin-top: 5px !important;
}

.footer-social-links li a {
    display: flex;
    width: 31px;
    height: 31px;
    background: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin: 0px 10px 0px 0px;
}

.footer-social-links .fa-facebook-f {
    color: #0075ea !important;
    font-size: 14px;
}

.footer-social-links .fa-instagram {
    background: -webkit-linear-gradient(#556db3, #ea3367, #ff4f28, #ffad57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 15px;
}

.footer-social-links .fa-twitter {
    color: #009feb !important;
    font-size: 14px;
}

.footer-social-links .fa-youtube {
    color: #f70000 !important;
    font-size: 14px;
}

.footer-social-links .fa-linkedin-in {
    color: #0079b5;
    font-size: 14px;
}



.footer-links .address-sec li a i {
    margin-right: 14px;
    color: #8107df;
    font-size: 15px;
}

.footer-links ul li a i {
    font-size: 12px;
}

.footer-links ul li a i {
    font-size: 9px;
    margin-right: 5px;
}

.footer-social-links i.fa-x-twitter {
    color: #000;
    font-size: 12px;
}

.footer-links ul.footer-social-links i {
    margin: 0px;
}

.copyright-section {
    width: 100%;
    background: #1d1d1d;
    padding: 12px 0px;
}

.copyright-section p {
    margin: 0px;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
}

span {
    font-family: 'Open Sans', serif;
}



/* Go to Top */

#button {
    display: inline-block;
    background: linear-gradient(45deg, #9c00a7, #ff6dcf);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 50%;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
    font-size: 10px;
    animation: breathing 2s ease-out infinite normal;
}

#button::after {
    content: "\f077";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    line-height: 50px;
    color: #fff;
}

#button:hover {
    cursor: pointer;
    background-color: #151e25;
}

#button:active {
    background-color: #151e25;
}

#button.show {
    opacity: 1;
    visibility: visible;
}


@keyframes breathing {
    0% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    25% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    60% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
        transform: scale(0.9);
    }
}






.hamburger .line {
    width: 32px;
    height: 3px;
    background-color: #000000;
    display: block;
    margin: 6px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* @keyframes widthMenu {
    0%{
        width: 32px;
    }
    50% {
        width: 28px;
    }
    100%{
        width: 32px;
    }
} */

.hamburger {
    display: none;
}

.hamburger:hover {
    cursor: pointer;
}

#hamburger-11 {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#hamburger-11.is-active {
    animation: smallbig 0.6s forwards;
}

#hamburger-11.is-active .line {
    width: 32px;
}

@keyframes smallbig {

    0%,
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
    }
}

#hamburger-11.is-active .line:nth-child(1),
#hamburger-11.is-active .line:nth-child(2),
#hamburger-11.is-active .line:nth-child(3) {
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

#hamburger-11.is-active .line:nth-child(2) {
    opacity: 0;
}

#hamburger-11.is-active .line:nth-child(1) {
    -webkit-transform: translateY(9px) rotate(45deg);
    -ms-transform: translateY(9px) rotate(45deg);
    -o-transform: translateY(9px) rotate(45deg);
    transform: translateY(9px) rotate(45deg);
}

#hamburger-11.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-9px) rotate(-45deg);
    -ms-transform: translateY(-9px) rotate(-45deg);
    -o-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
}

.quickSearchMob {
    display: none;
}

.innerBanner {
    background-size: cover;
    min-height: 400px;
    width: 100%;
}



.innerBannerNav {
    min-height: 120px;
    background: linear-gradient(90deg, #00ff3f14, white), url(../img/texture/t1.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    border-bottom: 1px solid #dddddd82;
}

.inbnrNavWrap {
    min-height: 120px;
}

.inbnrNavWrap .row {
    min-height: 120px;
}

.inbnrNavTitle {
    text-align: left;
}

.inbnrNavTitle h2 {
    font-weight: 800;
    font-size: 22px;
    color: #004912;
}

.inbnrNavList {
    display: flex;
    justify-content: flex-end;
}

.inbnrNavList ul {
    display: flex;
    align-items: center;
}

.inbnrNavList ul li {
    margin: 0px 6px 0px 6px;
}

.inbnrNavList ul li a {
    font-size: 14px;
    font-weight: 600;
}

.inbnrNavList ul li a.active {
    color: #006d14;
}

.sectionTitle.left {
    text-align: left;
    margin-bottom: 30px;
}

.sectionTitle.left h4 {
    display: inline-block;
}

.sectionTitle.left::after {
    margin-left: 0px;
}

.sectionTitle.left::before {
    margin-left: 0px;
}

.secTitle .mainTitle.contact {
    font-size: 20px;
}

.contactqueryForm .form-control {
    height: 45px;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 14px;
}

.contactqueryForm .form-control.textarea {
    height: auto;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 14px;
}

.contactqueryForm .form-control:focus {
    box-shadow: none;
    border-color: #006d14;
}

.contactDWrapper {
    padding: 40px;
}

.contactDWrapper.contactInfo {
    background: linear-gradient(0deg, #005d0f, #00bb2a);
    border-radius: 30px;
}

.contactDWrapper.contactInfo .secTitle .mainTitle.contact {
    color: #fff;
}

.contactDWrapper.contactInfo hr {
    color: #fff;
}

.contactDWrapper.contactInfo p {
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
}

.contactDWrapper.contactInfo p strong {
    color: #fff;
}

.contactDWrapper.contactInfo p strong i {
    margin-right: 5px;
}

.contactDWrapper.contactInfo a {
    color: #fff;
}

.contactUsIn {
    background-image: linear-gradient(90deg, #fffffff7, #fffffff6), url(../img/bg/menu-bg.jpg);
    background-size: contain;
}

.catListingAside {
    background: #dddddd2e;
    border-radius: 20px;
    overflow: hidden;
    padding: 14px 14px;
    position: sticky;
    top: 90px;

}

.catListingAside .catListingSideTitle {
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    background: linear-gradient(0deg, #05991d, #00bb2a);
    padding: 10px 16px;
    border-radius: 14px;
}

.catListingUl {
    overflow-y: auto;
    height: 400px;
}

.catListingUl ul li a {
    display: block;
    padding: 6px 14px;
    border-bottom: 1px solid #00bd2f40;
}

.catListingUl ul li a:hover {
    background: #ddd;
}

.catListingUl::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.141);
    background-color: #F5F5F5;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    max-height: 30%;
    opacity: 0.5;
    height: 30%;
}

.catListingUl::-webkit-scrollbar {
    width: 4px;
    background-color: #F5F5F5;
    display: block;
    opacity: 0.5;

}

.catListingUl::-webkit-scrollbar-thumb {
    background-color: #00000032;
    border: 2px solid #5555550f;
    opacity: 0.3;
    border-radius: 10px;
}

.catListingUl::-webkit-scrollbar-track-piece:end {
    background: transparent;
    margin-bottom: 10px;
}

.catListingUl::-webkit-scrollbar-track-piece:start {
    background: transparent;
    margin-top: 10px;
}

.vendorImg {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.vendorImg img {
    width: 100%;
}

.cardButtonSection.fordetailp {
    flex-direction: column;
    align-items: self-start;
}

.tbcContent.fordetailp {
    width: 100%;
}

.catListingUl.vendorContactL ul li a {
    border: none;
    padding: 0px;
}

.catListingUl.vendorContactL ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 10px;
    border-bottom: 1px solid #dddddd8a;
    padding-bottom: 10px;
}

.catListingUl.vendorContactL ul li i {
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 46px;
    margin-right: 9px;
    background: #ace5c2;
    color: #004912;
    border-radius: 12px;
}

.catListingUl.vendorContactL ul li span {
    width: 84%;
}

.sectionTitle.mainVendorTitle h4 {
    font-size: 22px;
    font-weight: 700;
}

.tiffinBookingCard.magazineCard .tbcIco {
    width: 24%;
    margin-right: 18px;
}

.postrequirment .customborder {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
}

/*  */
/* .innerBnrNav {
   
} */
.inrBrnImgandTitle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 65px;
    text-align: center;
    background: #ffffff;
    position: relative;
}

.inrBrnImgandTitle h4 {
    color: #462673;
    color: #462673;
    /* margin-bottom: 12px; */
    font-weight: 700;
    font-size: 30px;
}

.inrBrnImgandTitle p {
    color: #ddd;
}

.bnrNav {
    padding: 10px 0px;
    background: #faf8fa;
}

.bnrNavWrap ul {
    display: flex;
    align-items: center;
    position: relative;
}

.bnrNavWrap ul li {
    padding-right: 16px;
    position: relative;
    margin-right: 10px;
}

.bnrNavWrap ul li.gotoProductList {
    position: absolute;
    right: 0px;
    padding-right: 0px;
    margin-right: 0px;
}

.bnrNavWrap ul li.gotoProductList i {
    font-size: 10px;
}

.bnrNavWrap ul li::after {
    position: absolute;
    content: '';
    right: 0px;
    background-image: url(../img/icons/right-arrow-nav.png);
    width: 8px;
    height: 8px;
    background-size: contain;
    top: 0px;
    bottom: 0px;
    margin: auto;
}

.bnrNavWrap ul li:last-child:after {
    display: none;
}

.bnrNavWrap.listings ul li:nth-last-child(-n+2):after {
    display: none;
}

.bnrNavWrap ul li:nth-last-child(-n+2) a {
    color: #4b2572;
}

.bnrNavWrap ul li a {
    color: #000;
    font-weight: 600;
    font-size: 11px;
}

.bnrNavWrap ul li:last-child a {
    color: #4b2572;
    font-weight: 600;
}

.productPara {
    background: #fcfafd;
    background: #fbfafd;
    padding: 22px;
    border-radius: 6px;
}

.productPara p {
    text-align: justify;
    margin-top: 0px;
}

.prparaReadBtn {
    color: #4b2572;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.5px;
}

.productListingWrap {
    padding-top: 40px;
}

.prlistMorePara {
    display: none;
}

.productListingWrap .whats-new-sec {
    margin-top: 0px;
    margin-bottom: 60px;
}

.productDetailWrapper {
    padding-left: 20px;
}

.productTitle {
    margin-bottom: 13px;
}

.productTitle h2 {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #462673;
}
.productTitle h5 {
    color: #777;
    font-size: 17px;
    margin-top: 10px;
    font-weight: 600;
}

.productTitle p {
    font-weight: 700;
    color: #585858;
    margin-top: 5px;
    font-size: 16px;
}

.productPrice {
    margin-bottom: 10px;
}

.productPrice>* {
    font-size: 18px;
    font-weight: 700;
    color: #323232;
}

.productPrice span {
    font-size: 22px;
    color: #4b2572;
}

.productFeature ul {
    margin: 5px 0px;
}

.productFeature ul li {
    padding-left: 23px;
    background-image: url(../img/icons/bullet-point.png);
    background-size: 16px;
    background-position: left top 4px;
    background-repeat: no-repeat;
    line-height: 24px;
}

.productImgWrap {
    display: flex;
    flex-direction: column;
}

.productMainImg {
    width: 100%;
    margin-left: 5px;
}

/* 
.produThumbWrap {
    width: 20%;
} */

.productdTab2 {
    margin-top: 22px;
    box-shadow: rgb(149 157 165 / 8%) 0px 8px 24px;
    padding: 4px;
    border-radius: 6px;
    border: 1px solid #dddddd1c;
}

.productdTab2 .brand-outer {

    max-height: 530px;

    overflow-y: auto;

    overflow-x: hidden;
}

.productdTab2 .brand-outer::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    max-height: 30%;
    height: 30%;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.productdTab2 .brand-outer::-webkit-scrollbar {
    width: 4px;
    background-color: #F5F5F5;
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;

}

.productdTab2 .brand-outer:hover:-webkit-scrollbar {
    visibility: visible;
    opacity: 1;

}

.productdTab2 .brand-outer:hover::-webkit-scrollbar-track {
    visibility: visible;
    opacity: 1;

}

.productdTab2 .brand-outer::-webkit-scrollbar-thumb {
    background-color: #0000001e;
    border: 2px solid #55555517;
    border-radius: 10px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.productdTab2 .brand-outer:hover::-webkit-scrollbar-thumb {
    visibility: visible;
    opacity: 1;
}

.productdTab2 .brand-outer::-webkit-scrollbar-track-piece:end {
    background: transparent;
    margin-bottom: 10px;
}

.productdTab2 .brand-outer::-webkit-scrollbar-track-piece:start {
    background: transparent;
    margin-top: 10px;
}

/* .productdTab {
    background: #fcf7fe;
    padding: 25px 30px;
    border-radius: 8px;
} */
.productFeature {
    background: #fcf7fe;
    padding: 25px 30px;
    border-radius: 8px;
    border: 1px solid #dddddd4a;
}

/* Product Details */
.tile {
    width: 100%;
    margin: 30px auto 0px;
}

#tile-1 .tab-pane {
    padding: 25px;
    padding: 0px 0px 0px;
    background: #fcfafd00;
    /* background: #fdfdfd; */
    /* background: #f8f8f8; */
    border-radius: 6px;
    /* max-width: 1000px; */
    margin: 0px auto;
}

#tile-1 .nav-tabs {
    position: relative;
    border: none !important;
    background-color: #fff;
    /*   box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2); */
    border-radius: 6px;
    justify-content: unset;
    align-items: unset;
    max-width: 900px;
    margin: 0px auto;
}

#tile-1 .nav-tabs::after {
    position: absolute;
    content: '';
    width: 99.4%;
    height: 1px;
    bottom: -1px;
    left: -4px;
    right: 0px;
    margin: auto;
    background: #4b257240;

}

#tile-1 .nav-tabs li {
    margin: 0px 5px 0px 1px !important;
}

#tile-1 .nav-tabs li a {
    position: relative;
    margin-right: 0px !important;
    padding: 12px 30px !important;
    font-size: 15px;
    border: none !important;
    color: #343434;
    width: 100%;
    background: #f0eaf1;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 700 !important;
}

#tile-1 .nav-tabs a:hover {
    /* background-color: transparent !important;
    border: none; */
    background-color: #4b2572 !important;
    border: none;
    color: #fff;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

#tile-1 .slider {
    display: inline-block;
    width: 30px;
    height: 100%;
    border-radius: 3px;
    background-color: #462673;
    position: absolute;
    z-index: 1;
    bottom: 0;
    transition: all 0.3s linear;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;

}

#tile-1 .nav-tabs .active {
    background-color: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600;
    z-index: 2;
}

.tab-content h1,
.tab-content h2,
.tab-content h3,
.tab-content h4,
.tab-content h5,
.tab-content h6,
.tab-content p strong {
    margin-top: 12px;
    font-weight: 700;
    font-size: 18px;
}

.tab-content ul {
    margin-top: 10px;
}

.tab-content ul li {
    padding-left: 23px;
    background-image: url(../img/icons/bullet-point.png);
    background-size: 16px;
    background-position: left top 4px;
    background-repeat: no-repeat;
    line-height: 24px;
}

.product-content {
    display: flex;
    align-items: baseline;
    line-height: 24px;
    color: #0c0c0c;
    font-weight: 500;
}

.brand-outer .product-content:nth-child(even) {
    background: #f9f3ff94;
}

.brand-outer .product-content:nth-child(odd) {
    background: #FFF
}

.product-content .brand {
    width: 34%;
    padding: 6px 10px;
    /* border-bottom: 0.5px solid #dddddd26; */
    /* background: #f8f3ff59; */
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: bold;
    color: #747474;
}

.product-content .brand-content {
    width: 66%;
    padding: 5px 10px;
    /* border-bottom: 0.5px solid #dddddd26; */
    /* background: #faf7ff; */
    margin-bottom: 0px;
    margin-left: 0px;
    display: flex;
    align-items: center;
    line-height: 20px;
}

.product-content .brand-content .dot {
    position: relative;
    left: -13px;
}

.productVideoTab {
    max-width: 700px;
    margin: 0px auto;
    background: #fcf7fe;
    padding: 25px 30px;
    border-radius: 8px;
    border: 1px solid #dddddd4a;
}

.productVideoTab iframe {
    border-radius: 6px;
}

.right-sidebar-box {
    background-color: #f8f8f800;
    border-radius: 6px;
    padding: 0px;
    max-width: 894px;
    margin: 0px auto;
    background: #fcf7fe;
    padding: 25px 30px;
    border-radius: 8px;
    border: 1px solid #dddddd4a;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    position: relative;
    left: -2px;
}

.right-sidebar-box .custom-form label {
    color: #565656;
    display: block;
    font-size: 15px;
    margin-bottom: calc(2px + 0.3125vw);
    font-weight: 600;
}

.right-sidebar-box .custom-form .custom-input {
    position: relative;
}

.right-sidebar-box .custom-form .custom-input .form-control {
    border: none;
    padding: calc(14px + 0.3125vw) calc(14px + 0.3125vw) calc(14px + 0.3125vw) calc(38.8px + 0.6875vw);
}

.right-sidebar-box .custom-form .custom-input i {
    align-items: center;
    color: #4a5568;
    display: flex;
    font-size: 15px;
    left: 0;
    line-height: 1;
    padding: 15px;
    position: absolute;
    top: 0px;

}

.form-control {
    background-color: #fff;
}

textarea.form-control {
    min-height: calc(1.5em + 0.75rem + var(--bs-border-width)*2);
}

.right-sidebar-box .custom-form .custom-input textarea {
    height: 180px;
}

.right-sidebar-box .custom-form .custom-input .form-control {
    border: 1px solid #dddddd80 !important;
    padding: 10px 40px;
    border-radius: 6px;
}

.right-sidebar-box .custom-form .custom-input .form-control::placeholder {
    font-size: 14px;
}

.right-sidebar-box .custom-form .custom-input .form-control:focus {
    box-shadow: none;
}

.tab-content h5 {
    position: relative;
    padding-bottom: 5px;
}

.tab-content h5::after {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    background-color: #340459;
    bottom: 0px;
    left: 0px;
}

.downloadTab {
    /* text-align: center;
    max-width: 420px;
    padding: 30px;
    background: #fffd;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 6px;
    margin: 0px auto; */
    text-align: center;
    max-width: 443px;
    padding: 30px;
    background: #fcf7fe;
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
    border-radius: 6px;
    margin: 0px auto;
    border: 1px solid #dddddd4a;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    position: relative;
    left: -1px;
}

.prdwnbtnIco {
    position: relative;
    width: 100px;
    height: auto;
    margin: 0px auto;
}

.prdwnbtnIco img {
    width: 100%;
    position: relative;
    z-index: 2;
    animation: upanddownmove 4s infinite linear;
}

.prdwnbtnIco::after {
    position: absolute;
    width: 94%;
    height: 100%;
    bottom: 0px;
    left: 10px;
    right: 0px;
    content: '';
    background-color: #2f075a29;
    border-radius: 100%;
    transform: scaleX(1) scaleY(0.1);
    margin-bottom: 0px;
    top: 59%;
    z-index: 1;
    margin: 0px auto;
    opacity: 0.4;
}

.downloadprdcontent h6 {
    margin-top: 30px;
    margin-bottom: 5px;
}

.features.visionmission {
    background: #f9f3ff94;
}

.features.visionmission .featuresCard {
    background: #fff;
}

/* Product Details end */



.contactUsCard {
    padding: 25px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 36px;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px; */
    box-shadow: rgb(0 0 0 / 5%) 0px 4px 12px;
    border: 1px solid #dddddd4a;
}

.contactUsCard::after {
    position: absolute;
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 0px 30px 86px;
    border-color: transparent transparent #462673 transparent;
    transform: rotate(0deg);
    right: 0px;
    bottom: 0px;
}

.contactCHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contactIco {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #462673, #1b00b3);
    color: #fff;
    border-radius: 100%;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
}

.contactTitle {
    width: 86%;

}

.contactTitle h5 {
    font-size: 18px;
    font-weight: 700;
    color: #462673;

}

.contactTitle p {
    font-size: 14px;
    line-height: 16px;
}

.contactMain {
    margin-top: 10px;
}

.contactMain a {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    /* display: block; */
}

.contactWrapper {
    margin-top: 50px;
}

.enquireNowForm.contactPage .right-sidebar-box {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin-left: 20px;
}

.enquireNowForm.contactPage .right-sidebar-box h5 {
    font-size: 18px;
    font-weight: 700;
    color: #462673;

}

.enquireNowForm.contactPage .right-sidebar-box .custom-form .custom-input textarea {
    height: 104px;
}


.blogSwiperCard.videoContainer {
    text-align: center;
    min-height: 384px;
}

.blogSwiperCard.videoContainer .blogHeader h4 {
    font-size: 16px;
}

.blogCardImg.videoWrap {
    width: 100%;
    height: 213px;
    border-radius: 8px;
    overflow: hidden;
}

.videoPlayThumb {
    width: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 22px;
    background: #fff;
    border: 1px solid #ddddddd9;
}

.videoPlayThumb img {
    width: 100%;
}

.video-player {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    color: #fff;
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.pulse i {
    background-color: #000f2d94;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    font-size: 28px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    overflow: hidden;
    columns: #fff;
    -webkit-animation: video-pulse-presentation 2s linear infinite;
    animation: video-pulse-presentation 2s linear infinite;
}

.pulse i:hover {
    background-color: #FFF;
    color: #451e6d;
}

@-webkit-keyframes video-pulse-presentation {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(171, 45, 255, 0.7), 0 0 0 0 rgba(171, 45, 255, 0.7);
        box-shadow: 0 0 0 0 rgba(171, 45, 255, 0.7), 0 0 0 0 rgba(171, 45, 255, 0.7);
    }

    40% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 rgba(171, 45, 255, 0.7);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 rgba(171, 45, 255, 0.7);
    }

    80% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }
}

@keyframes video-pulse-presentation {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(171, 45, 255, 0.7), 0 0 0 0 rgba(171, 45, 255, 0.7);
        box-shadow: 0 0 0 0 rgba(171, 45, 255, 0.7), 0 0 0 0 rgba(171, 45, 255, 0.7);
    }

    40% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 rgba(171, 45, 255, 0.7);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 0 rgba(171, 45, 255, 0.7);
    }

    80% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
        box-shadow: 0 0 0 0 rgb(245 112 9 / 0%), 0 0 0 30px rgb(245 112 9 / 0%);
    }
}


.productVideoCard {
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
    margin-top: 40px;
}

.productVideoCard .defaultBtn {
    display: flex;
}

.subTitleSec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 12px 20px;
    position: relative;
}

.subTitleSec::after {
    position: absolute;
    content: '';
    width: 100px;
    height: 4px;
    background-color: #2a085a;
    bottom: -1px;
    left: 21px;
}

.subTitleSec::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #2a085a12;
    bottom: 0px;
    left: 0px;
}

.productVideoCard .contactWrapper {
    margin-top: 0px;
    padding: 10px 20px;
}

.galleryImgWrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.galleryImgWrap .galleryImg {
    width: 32.5%;
    display: inline-block;
    margin: 10px 0px;
}

.galleryImg {
    background-color: #fff;
    width: 100%;
    border: 1px solid rgb(255 255 255 / 71%);
    text-align: center;
    overflow: hidden;
    border-radius: 8px;
    padding: 5px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.galleryImg img {
    width: 100%;
    border-radius: 5px;
}

.galleryImg a {
    display: block;
    position: relative;
}

.galViewer {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00000021;
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
    transition: 0.3s ease-in-out;
}

.galleryImg a:hover .galViewer {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.galViewer i {
    font-size: 24px;
    color: #fff;
}

.gridPage .blogSwiperCard {
    margin: 15px 2px;
}

.blogDetailWrap img {
    width: 100%;
}

.blogDetailWrap .secImg {
    height: 479px;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-radius: 8px;
}

.blogDetailWrap .blogTitle {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

.blogsmInfo {
    margin-top: 30px;
    margin-bottom: 20px;
}

.blogsmInfo ul {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 16px;
}

.blogsmInfo ul li i {
    color: #462673;
}

.blogsmInfo ul li span {
    color: #606060;
}

.blogdSidebar {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: sticky;
    top: 60px;
}

.blogdSidebar h5.sidebarTitle {
    font-weight: 600;
    position: relative;
    padding: 16px 0px 8px;
    margin-left: 18px;
}

.blogdSidebar h5.sidebarTitle::after {
    position: absolute;
    content: '';
    width: 50px;
    height: 3px;
    background: #4b2572;
    bottom: 0px;
    left: 0px;
}

.latest-post {
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #ddd;
    padding: 15px;
}

.blogdSidebar .latest-post:last-child {
    border-bottom: none;
}

.thumbnail {
    margin-right: 10px;
}

.thumbnail a {
    display: block;
}

.thumbnail a img {
    border-radius: 5px;
    max-height: 100px;
    object-fit: cover;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
}

.blog-meta li {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #606060;
}

.post-content h6.siderTitle a {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0;
    display: inline-block;
    margin-top: 5px;
}

/* New */
.contactMain {
    margin-top: 10px;
    font-weight: 700;
}

.contactUsCard {
    margin-bottom: 22px;
}

.headerSection span {
    font-family: "Marcellus", serif;
}

.innerJewlBanner {
    width: 100%;
}
.innerJewlBanner img {
    width: 100%;
}



/* Price Range */
.range-slider {
	width: 300px;
	margin: auto;
	text-align: center;
	position: relative;
	height: 6em;
}

.range-slider svg,
.range-slider input[type=range] {
	position: absolute;
	left: 0;
	bottom: 0;
}

input[type=number] {
	border: 1px solid #ddd;
	text-align: center;
	-moz-appearance: textfield;
    font-size: 17px;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

input[type=number]:invalid,
input[type=number]:out-of-range {
	border: 2px solid #ff6347;
}

input[type=range] {
	-webkit-appearance: none;
	width: 100%;
}

input[type=range]:focus {
	outline: none;
}

input[type=range]:focus::-webkit-slider-runnable-track {
	background: #2497e3;
}

input[type=range]:focus::-ms-fill-lower {
	background: #2497e3;
}

input[type=range]:focus::-ms-fill-upper {
	background: #2497e3;
}

input[type=range]::-webkit-slider-runnable-track {
	width: 100%;
	height: 5px;
	cursor: pointer;
	animate: 0.2s;
	background: #2497e3;
	border-radius: 1px;
	box-shadow: none;
	border: 0;
}

input[type=range]::-webkit-slider-thumb {
	z-index: 2;
	position: relative;
	box-shadow: 0px 0px 0px #000;
	border: 1px solid #2497e3;
	height: 18px;
	width: 18px;
	border-radius: 25px;
	background: #a1d0ff;
	cursor: pointer;
	-webkit-appearance: none;
	margin-top: -7px;
}

input[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	cursor: pointer;
	animate: 0.2s;
	background: #2497e3;
	border-radius: 1px;
	box-shadow: none;
	border: 0;
}

input[type=range]::-moz-range-thumb {
	z-index: 2;
	position: relative;
	box-shadow: 0px 0px 0px #000;
	border: 1px solid #2497e3;
	height: 18px;
	width: 18px;
	border-radius: 25px;
	background: #a1d0ff;
	cursor: pointer;
}

input[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	cursor: pointer;
	animate: 0.2s;
	background: transparent;
	border-color: transparent;
	color: transparent;
}

input[type=range]::-ms-fill-lower,
input[type=range]::-ms-fill-upper {
	background: #2497e3;
	border-radius: 1px;
	box-shadow: none;
	border: 0;
}

input[type=range]::-ms-thumb {
	z-index: 2;
	position: relative;
	box-shadow: 0px 0px 0px #000;
	border: 1px solid #2497e3;
	height: 18px;
	width: 18px;
	border-radius: 25px;
	background: #a1d0ff;
	cursor: pointer;
}
/* Price Range end */


.accordionCategoriesFilter {
    display: flex;
    align-items: center;
    gap: 10px;
    background: unset;
    padding: 0px;
    margin: 0px;

}
.accordionCategoriesFilter .accordion-item {
    border: none;
    position: relative;
}
.accordionCategoriesFilter .accordion-item .accordion-button {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    padding: 8px 12px 8px 14px;
}
.accordionCategoriesFilter .accordion-item .accordion-button::after {
    background-size: 13px;
    background-position: right center;
}
.accordionCategoriesFilter .accordion-item .accordion-button:focus {
    box-shadow: none;
}
.accordionCategoriesFilter .accordion-body {
    position: absolute;
    top: 100%;
    left: 0px;
    right: 0px;
    z-index: 9;
    background: #fff;
    width: fit-content;
    box-shadow: 0px 0px 10px #ddd;
    border-radius: 10px;
    min-width: 240px;
    border: 1px solid #ddd;
}
.shortByFeature {
    display: flex;
    width: 22%;
    align-items: center;
}
.productSideBar.productListingSidebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    width: 100%;
}
.shortByFeature span {
    width: 38%;
}
.shortByFeature select {
    width: 62%;
}
.shortByFeature select:focus {
    box-shadow: none;
}
.productMainListTitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 10px;
}
.productListCards {
    margin-top: 30px;
}
.productListCards .whats-new-sec  {
    margin-bottom: 20px;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-button:not(.collapsed) {
    background: #ffd3f06e;
    border-color: #ffd3f0;
    color: #111;
}

/* product Details */
.productTitle h2 {
    font-size: 28px;
    font-weight: 800;
    padding-right: 60px
}
.productPrice h5 {
    font-size: 16px;
    margin: 10px 0px 0px;
    font-weight: 700;
}
.productPrice h5 span.originalPrice {
    color: #858585;
    text-decoration: line-through;
    margin: 0px 4px;
}

.productPrice h5 span.currentPrice {
    font-size: 26px;
    font-weight: 600;
    margin: 0px 3px;
}
.productReivewsandRatings {
    margin: 3px 0px;
    border-bottom: 1px dashed #dddddd9e;
    padding-bottom: 12px;
}
.productReivewsandRatings .starratings i{
    color: #fbad50;
    font-size: 13px;
}
.productReivewsandRatings .starratingInfo span{
    color: whitesmoke;
    font-weight: 600;
    background: #12bd02;
    padding: 2px 11px 4px;
    border-radius: 8px;
    margin-left: 6px;
}
.productPrice .yoursave span{
    color: #12bd02;
    font-weight: 600;
}
.gotoReviewSec {
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.product-enquire-btn {
    margin-top: 18px;
}

.product-enquire-btn a {
    background-color: #00449b;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    border-radius: 30px;
    border: 1px solid #0049a7;
    transition: 0.4s ease;
}

.product-enquire-btn a:hover {
    background-color: #fff;
    color: #0049a7;
    border: 1px solid #0049a7;
    transition: 0.4s ease;
}

.pr-enquire-btn-style-2 a {
    width: 165px;
    display: inline-block;
    text-align: center;
}

.pr-enquire-btn-style-2 a:first-child {
    background-color: #fff;
    color: #0049a6;
    margin-right: 15px;
}

.qty-counter {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 10px;
    margin-left: 10px
}

.qty-up,
.qty-down {
    display: block;
    color: #222020;
    font-size: 20px;
    padding: 1px 20px;
    margin: 5px;
    box-sizing: border-box;
    cursor: pointer;
    border-radius: 0;
    /* width: 0; */
    line-height: 32px;
    height: 38px;
    user-select: none;
    background: #fff;
    border: none;
    border-radius: 20px;
}

.qty-up:hover,
.qty-down:hover {
    background-color: #006e96;
    color: #fff;

}

.pr-quantity {
    display: flex;
    align-items: center;
}

.pr-quantity input {
    appearance: none;
    border: 0;
    background: white;
    text-align: center;
    width: 62px;
    line-height: 35px;
    font-size: 15px;
    border-radius: 2px;
    border: none;
    background: #f5f8fb;
}

.protherbutn {
    margin-top: 16px;
}

.protherbutn a {
    font-size: 16px;
    display: inline-block;
    margin-right: 20px;
}

.protherbutn a i {

    color: #00459b;
    font-size: 15px;
    margin-right: 2px;
}

.productDetailMail {
    margin-left: 30px;
}

.proudctMainDescription {
    margin-top: 15px;
}
.proudctMainDescription h4 {
    font-size: 18px;
    font-weight: 700;
    color: #323232;
    margin-bottom: 10px;
}
.proudctMainDescription p {
    text-align: justify;
    line-height: 26px;
}
.productBrand {
    margin-bottom: 13px;
}
.productBrand h5 {
    font-size: 15px;
    font-weight: 700;
    line-height: 26px;
}
.prparaReadBtn {
    color: #00459b;
    font-weight: 600;
}

.productBrand h5 span {
    color: #003984;
}

.pr-quantity-title {
    margin-top: 15px;
}

.pr-quantity-title h4 {
    font-size: 18px;
    font-weight: 700;
    color: #252525
}
.somebenefits {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 20px;
}
.somebenefits .featuresCard {
    width: 48%;
    display: flex;
    align-items: center;
    padding: 3px;
    background: transparent;
    border: 1px dashed #ddd;
}
.somebenefits .fCardImg {
    margin: 0px;
    width: 60px;
    height: 60px;
    padding: 7px;
    margin-right: 8px;
}
.checkdelivery {
    margin-top: 20px;
}
.checkdelivery h4 {
    font-size: 18px;
    font-weight: 700;
    color: #323232;
    margin-bottom: 10px;
}
.checkdelvform {
    position: relative;
}
.checkdelvform input.form-control{
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 8px 20px;
}
.checkdelvform input.form-control:focus {
    box-shadow: none;
}
.checkdelvform button.btn {
    background: -webkit-linear-gradient(45deg, #9c00a7, #ff6dcf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 7px 12px;
}
.productAction {
    margin-top: 20px;
}
.purchaseBtns {
    display: flex;
    align-items: center;
    gap: 12px;
}
.purchaseBtns a {
    padding: 10px 20px;
    border-radius: 30px;
    width: 180px;
    display: inline-block;
    text-align: center;
}
.purchaseBtns a:nth-child(1) {
    border-color: #9c00a7;
    color: #9c00a7;
    border: 1px solid;
}
.purchaseBtns a:nth-child(2) {
    background: linear-gradient(45deg, #9c00a7, #ff6dcf);
    color: #fff;
    border: 1px solid;
}
.proudctMainDescription ul, .proudctMainDescription ol  {
    padding-left: 20px;
}
.proudctMainDescription ul, .proudctMainDescription li {
    list-style-type: disc;
} 

.tile {
    width: 100%;
    margin: 50px auto 0px;
}

#tile-1 .tab-pane {
    padding: 25px;
    padding: 20px;
    background: #ffeffb;
    border-radius: 6px;
    /* max-width: 1000px; */
    margin: 0px auto;
}

#tile-1 .nav-tabs {
    position: relative;
    border: none !important;
    background-color: #fff;
    /*   box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12), 0 3px 1px -2px rgba(0,0,0,0.2); */
    border-radius: 6px;
    justify-content: unset;
    align-items: unset;
    max-width: 720px;
    margin: 0px auto;
}

#tile-1 .nav-tabs::after {
    position: absolute;
    content: '';
    width: 99.4%;
    height: 1px;
    bottom: -1px;
    left: -4px;
    right: 0px;
    margin: auto;
    background: #4b257240;

}

#tile-1 .nav-tabs li {
    margin: 0px 5px 0px 1px !important;
}

#tile-1 .nav-tabs li a {
    position: relative;
    margin-right: 0px !important;
    padding: 12px 30px !important;
    font-size: 15px;
    border: none !important;
    color: #343434;
    width: 100%;
    background: #f0eaf1;
    border-radius: 0px;
    font-size: 16px;
    font-weight: 700 !important;
}

#tile-1 .nav-tabs a:hover {
    /* background-color: transparent !important;
    border: none; */
    background-color: #ff6400 !important;
    border: none;
    color: #fff;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

#tile-1 .slider {
    display: inline-block;
    width: 30px;
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, #fd6a00, #ffa000);
    position: absolute;
    z-index: 1;
    bottom: 0;
    transition: all 0.3s linear;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;

}

#tile-1 .nav-tabs .active {
    background-color: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600;
    z-index: 2;
}

.tab-content h1,
.tab-content h2,
.tab-content h3,
.tab-content h4,
.tab-content h5,
.tab-content h6,
.tab-content p strong {
    font-weight: 700;
    font-size: 18px;
}

.tab-content ul {
    margin-top: 10px;
}

.tab-content ul li {
    padding-left: 0;
    background-image: url(../img/icons/bullet-point.png);
    background-size: 16px;
    background-position: left top 4px;
    background-repeat: no-repeat;
    line-height: 24px;
    padding: 19px;
    background: #fff;
    border-radius: 20px;
}


.tab-content h5 {
    position: relative;
    padding-bottom: 5px;
}

.tab-content h5::after {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    background-color: #340459;
    bottom: 0px;
    left: 0px;
}

.cusReviewCreate .comment-list>.comment .comment-body {
    position: relative;
    /* padding-left: 100px; */
    margin-bottom: 0px;
    min-height: 95px;
    border-bottom: 1px solid rgba(34, 34, 34, .1);
    padding-bottom: 25px;
}

.cusReviewCreate .comment-list>.comment .comment-body .comment-author .avatar {
    position: absolute;
    left: 0;
    height: 80px;
    width: 80px;
    border-radius: 100%;
}

.cusReviewCreate .comment-list>.comment .comment-body .comment-author .fn {
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 8px;
    display: block;
}

.cusReviewCreate .comment-list>.comment .comment-body .star-rating {
    font-size: 14px;
    margin-bottom: 10px;
}

.cusReviewCreate .text-secondary {
    color: #ffc822 !important;
}

.cusReviewCreate .comment-list>.comment .comment-body p {
    font-size: 14px;
    text-align: justify;
    line-height: normal;
}
.custreviewWrapper {
    max-height: 611px;
    overflow-y: auto;
}


.becomePartnerForm.contactQueryFrom.commentReview {
    box-shadow: none;
    position: sticky;
    top: 94px;
}

.becomePartnerForm.contactQueryFrom.commentReview {
    box-shadow: none;
    position: sticky;
    top: 94px;
}

.becomePartnerForm #stars {
    display: flex;
    margin-left: 10px;
}

.becomePartnerForm #stars li i {
    color: #dddd;
}

.becomePartnerForm #stars li i:hover {
    color: #ffc822 !important;
}

.commentReviewForm {
    padding: 20px 0px 20px 20px;
}

.commentReviewForm .formTitle {
    margin-bottom: 10px;
}

.commentReviewForm .form-control {
    border-radius:10px;
    padding: 10px 20px;
}

.rating-stars ul#stars {
    display: flex;
    align-items: center;
    margin-top: 0px;
}

.rating-stars ul#stars li {
    padding: 0px;
}

.rating-stars ul#stars li:hover i {
    color: #fbad50;
}
.commentReviewForm .tpriceBooking {
    box-shadow: none;
    padding: 0px;

}
.fCardContent {
    z-index: inherit;
}
.productDetailMail .prContent {
    position: relative;
}
.shareandcart {
    position: absolute;
    right: 0px;
    top: 0px;
}
.shareandcart i svg {
    fill: #9c00a7;
    width: 20px;
}


.cartCard {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 1px solid #dddddd7a;
    border-radius: 20px;
    overflow: hidden;
}

.quantity {
    display: flex;
    border: 2px solid #d4eef9;
    border-radius: 10px;
    overflow: hidden;
    height: 34px;
    align-items: center;
}

.quantity button {
    background-color: #d4eef9;

    border: none;
    cursor: pointer;
    font-size: 20px;
    width: 26px;
    height: auto;
    text-align: center;
    transition: background-color 0.2s;
}

.quantity button:hover {
    background-color: #2980b9;
    color: #fff;
}

.input-box {
    width: 38px;
    text-align: center;
    border: none;
    padding: 8px 10px;
    font-size: 16px;
    outline: none;
    font-family: 'Open Sans';
}

/* Hide the number input spin buttons */
.input-box::-webkit-inner-spin-button,
.input-box::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.input-box[type="number"] {
    -moz-appearance: textfield;
}

.thumbnail {
    width: 55px;
    display: inline-block;
}

.thumbnail img {
    width: 100%;
}

.cartCard th {
    vertical-align: middle;
    background: #f5f8fb;
    padding: 12px 10px;
}

.cartCard td {
    vertical-align: middle;
    padding: 12px 10px;
    font-family: 'Open Sans';
}
.billDetails {
    position: sticky;
    top: 120px;
    transition: 0.4s ease-in-out;
    padding: 20px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 30px;
}

.billDetails .button {
    margin-left: 0px;
}

.text-bill-bold {
    color: #0049a7;
}

.pr-enquire-btn-style-2.cartCheckoutbtn a:first-child {
    width: 100%;
    background: linear-gradient(45deg, #9c00a7, #ff6dcf);
    color: #fff;
    border: none;
}

.SideBarHeader h3 {
    font-size: 18px;
    position: relative;
    margin-bottom: 30px;
}

.SideBarHeader h3::after {
    position: absolute;
    content: '';
    width: 61px;
    height: 2px;
    background: #010a42;
    bottom: -6px;
    left: 0px;
    right: 0px;
    /* margin: auto; */
}

.coupenForm {
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 20px;
    margin-top: 24px;
    border: 1px solid #dddddd52;
    position: relative;
}

.coupenForm input {
    padding: 10px 14px;
    border-radius: 30px;
    border: 1px solid #ddd;
    width: 100%;
    max-width: 100%;
    min-width: 200px;
}

.coupenForm button {
    position: absolute;
    padding: 10px 20px;
    border: none;
    border-bottom-right-radius: 30px;
    border-top-right-radius: 30px;
    right: 21px;
    top: 0px;
    bottom: 0px;
    height: fit-content;
    margin: auto;
    background: #ebf1f8;
}

.coupenForm button:hover {
    background: linear-gradient(45deg, #9c00a7, #ff6dcf);
    color: #fff;
}

.order-detail table {
    width: 100% !important;
    margin-bottom: 25px;
}

.order-detail table tr td {
    padding: 6px 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
}

.order-detail table tr td.price {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: end;
    color: #9c00a7;
}

.order-detail table tr.charges {
    border-bottom: 1px dashed rgba(34, 34, 34, .2);
}

.order-detail table tr.tax {
    border-bottom: 2px solid rgba(34, 34, 34, .2);
}
/* product Details end */


.checkoutContainerCard {
    padding: 25px;
}

.checkoutForm {}

.checkoutForm .form-control {
    height: 45px;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
}

.checkoutForm .form-control.textarea {
    height: auto;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
}

.checkoutForm .form-control:focus {
    box-shadow: none;
    border-color: #004aa8cc;
}

.checkoutForm .bootstrap-select {
    width: 100% !important;
    border-radius: 30px;
    padding: 10px 20px;
}

.checkoutForm .bootstrap-select>.dropdown-toggle {
    padding: 0px;
    background: none;
    border: none;
}

.checkoutForm .bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
}

.shipping-address {
    display: none;
}

.coupenForm.checkout {
    box-shadow: none;
    padding: 0px;
    border-radius: 0px;
    border: none;
    margin-top: 0px;
}

.coupenForm.checkout input {
    padding: 11px 14px;
    border: 1px solid #cccccc;
}

.checkout.coupenForm button {
    right: 2px;
}
.checkoutForm .bootstrap-select {
    width: 100% !important;
    border-radius: 30px;
    padding: 10px 20px;
}
.form-select {
    width: 100% !important;
    border-radius: 30px;
    padding: 10px 20px;
}

.normalheading h3 {
    font-size: 18px;
    position: relative;
    margin-bottom: 30px;
}

.normalheading h3::after {
    position: absolute;
    content: '';
    width: 61px;
    height: 2px;
    background: #a20aa8;
    bottom: -6px;
    left: 0px;
    right: 0px;
    /* margin: auto; */
}

.userMainContentWrapper {
    overflow: visible;
    padding: 30px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
    width: 100%;
    border-radius: 20px;
}

.userMainContentWrapper .table {
    margin-bottom: 0px;
}

.usercwTitle {
    position: relative;
    margin-bottom: 10px;
}

.usercwTitle h4 {
    font-size: 17px;
    font-weight: 700;
    color: #343434;

}

.userMainContentWrapper .secTitle .mainTitle.contact {
    font-size: 17px;
    font-weight: 700;
    color: #343434;
    margin-bottom: 5px;
}

.userMainContentWrapper hr {
    margin: 12px 0px;
    margin-top: 8px;
}

.userMainContentWrapper .check-btn {
    margin: 0px;
    margin-top: 0px;
    padding: 6px 15px;
    background: #f6fbfd;
    border-radius: 30px;
    border: 1px solid #dddddd5c;
}

.userMainContentWrapper .myaccount-table table td.completed,
.userMainContentWrapper .myaccount-table .table td.completed {
    color: #00bb2a;
}

.userMainContentWrapper .myaccount-table table td.canceled,
.userMainContentWrapper .myaccount-table .table td.canceled {
    color: #bb0000;
}

.review-rating i {
    color: #f4be6a;
}

.review-rating i.notrated {
    color: #f6ffff;
}

.userMainContentWrapper .myaccount-table table td,
.userMainContentWrapper .myaccount-table .table td {
    text-align: left;
}

.perfile-info-form h4 {
    font-size: 17px;
    font-weight: 700;
    color: #343434;
    margin-bottom: 10px;
}

.order-invoice-details ul li {
    font-size: 14px;
    line-height: 24px;

}

.orderplacedTitle h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0px;
}

.browseCateMenus.normalMenu {
    width: 230px;
}



.userpanelSidebar {
    position: relative;
}

.userpanelSidebar .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background: #f5aa4a;
}

.userpanelSidebar .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background: #f5aa4a;
}

.userpanelWrapper .productSideBar {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.userpanelWrapper .productSideBar .accordion-item:first-of-type {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.userpanelWrapper .productSideBar .accordion {
    margin-bottom: 0px;
    display: unset;
}

.userpanelWrapper .prcatAccordList ul li a i {
    font-size: 14px;
    margin-right: 5px;
}


.myaccount-table {
    white-space: nowrap;
    font-size: 14px;
}

.myaccount-table table th,
.myaccount-table .table th {
    padding: 10px;
    font-weight: 600;
    background: linear-gradient(45deg, #9c00a7, #9c00a7);
    border-color: #9c00a7;
    border-bottom: 0;
    font-size: 15px;
    color: #fff;
}

.myaccount-table table td,
.myaccount-table .table td {
    padding: 10px;
    vertical-align: middle;
    border-color: #eee;
    color: #333;
}

.productSideBar .accordion-item:first-of-type {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.productSideBar .accordion-item:last-of-type {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.productSideBar .accordion-button:not(.collapsed) {
    background: #f2f7fb;
    color: #0048a5;
}

.productSideBar button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}

.productSideBar .accordion-body {
    padding: 0px;
}

.productSideBar .accordion-button.JustaTitle {
    background: linear-gradient(45deg, #9c00a7, #ff6dcf);
    color: #fff;
    font-size: 17px;
}

.productSideBar .accordion-button.JustaTitle::after {
    display: none;
}

.prcatAccordList ul li a {
    display: block;
    padding: 8px 20px;
    border-bottom: 1px dashed #d9eaff;
}

.prcatAccordList ul li a:hover,
.prcatAccordList ul li a.active {
    background: #f7fbfd;
}

.prcatAccordList ul li:last-child a {
    border-bottom: none;
}

.prListingWrap {
    width: 100%;
    display: flex;
}

.productSideBar {
    width: 24%;
    margin-right: 20px;
    position: sticky;
    top: 100px;
}

.productSideBar .accordion {
    margin-bottom: 20px;
    margin: 0px;
}

.prListingWrap .productMailListing .journelCards {
    padding: 8px;
    margin-bottom: 20px;
}

.productMainListTitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.productMainListTitle h4 {
    font-weight: 800;
    font-size: 20px;
    line-height: 50px;
}

.productMainListTitle p {
    font-weight: 600;
}

.productSlideWrapper .journalContent {
    background: #fff;
}
.prListingWrap.productSlideWrapper.mainlisting {
    flex-direction: column;
}
.prListingWrap.productSlideWrapper.mainlisting .productSideBar  .accordion-body {
    padding: 10px
}
.mainlisting  .productSideBar.productListingSidebar {
    position: relative;
    top: 0px;
    margin: 0px;
}
.loginForm .right-sidebar-box .custom-form .custom-input .form-control {
    padding: 10px 18px;
}
.loginForm .toggle-password {
    position: absolute;
    top: 0px;
    right: 10px;
    bottom: 0px;
    height: fit-content;
    margin: auto;
    color: #818181;
}
.loginForm  .defaultBtn a, .loginForm  .defaultBtn button {
    height: 48px;
}
.ShopByTheme {
    background: url(../img/bg/light-cream-bg.png);
}
.simple2colWrapper.shopbyPriceWrapper.shopSomeOtherWrapper {
    margin-top: 40px;
    
}
.ShopByTheme.shobyOcasion {
    background: #fff;
}
/* Responsive */

@media screen and (max-width:1366px) and (min-width:1025px) {
 
    /* 17-10-2024 */
    .tcAuthor h2 {
        font-size: 16px;
    }
    .testimonialsContent .tcMessage p {
        text-align: justify;
        font-size: 12px;
        line-height: 20px;
    }
    .footer-links ul li {
        margin-bottom: 3px;
    }
    .footer-logo img {
        width: 160px;
    }
    .footer-co-description p {
        font-size: 12px;
        text-align: left;
    }
    .footer-links ul li a {
        font-size: 12px;
    }
    .footer-links {
        padding-left: 0px;
    }
    .giftingGuideSec {
        padding: 50px 20px;
    }
    .shopbyPrice {
        padding: 50px 20px;
    }
    p.animate-text {
        padding: 1px 0px;
    }
    .topHeaderSection a {
        font-size: 12px;
    }
    .logoSection {
        width: 176px;
    }
    .searchbar .seachInput {
        min-width: 400px;
        font-size: 12px;
    }
    .midheadbtnul li a {
        font-size: 12px;
    }
    .mainHeaderNav ul li a.headerEnquiryBtn {
        line-height: 26px;
    }
    .mainHeaderNav ul li a.headerEnquiryBtn:hover {
        padding: 5px 10px;
    }
    .mainHeaderNav ul li .browseCateMenus>li>a::after {
        top: 1px;
        font-size: 12px;
    }
    .mainHeaderNav ul li .browseCateMenus>li>a:hover {
        padding: 5px 10px;
    }
    .mainHeaderNav ul li a.active, .mainHeaderNav ul li a:hover {
        padding: 5px 10px;
    }
    .mainHeaderNav ul li a {
        font-size: 12px;
        padding: 5px 10px;
    }
    .browseCateMenus {
        border-radius: 12px;
    }
    
    /* until  */
    .site-width {
        max-width: 1000px;
    }

    .SliderContentsWrapper {
        max-width: 1000px;
    }

    .SliderContents {
        width: 50%;
        left: 0%;
    }

    .hero-style {
        height: 395px;
        transition: all .4s ease;
    }

    .sliderProductImg {
        position: absolute;
        bottom: 1%;
        right: 0%;
        z-index: 2;
        width: 50%;
    }

    .sliderSurface {
        position: absolute;
        bottom: 10%;
        right: 0px;
        z-index: 1;
        width: 48%;
    }

    .hero-style .slide-title h2 {
        font-size: 40px;
    }

    .sliderProduct {
        top: 10%;
    }

    .whats-new-sec h4 {
        font-size: 15px;
    }

    .secImg img.image-i {
        width: 100%;
    }

    .secImg img.image-ii {
        bottom: -30%;
        right: 0px;
        width: 280px;
        border: 3px solid #fff;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        left: 0px;
        margin: auto;
    }

    .videoPop {
        top: 71%;
        left: 50%;
    }
}

@media screen and (max-width:1024px) and (min-width:769px) {

    /* 17-10-2024 */
    .footer-title h4 {
        font-size: 16px;
    }
    .tcAuthor h2 {
        font-size: 16px;
    }
    .testimonialsContent .tcMessage p {
        text-align: justify;
        font-size: 12px;
        line-height: 20px;
    }
    .footer-links ul li {
        margin-bottom: 3px;
    }
    .footer-logo img {
        width: 160px;
    }
    .footer-co-description p {
        font-size: 12px;
        text-align: left;
    }
    .footer-links ul li a {
        font-size: 12px;
    }
    .footer-links {
        padding-left: 0px;
    }
    .giftingGuideSec {
        padding: 50px 20px;
    }
    .shopbyPrice {
        padding: 50px 20px;
    }
    p.animate-text {
        padding: 1px 0px;
    }
    .topHeaderSection a {
        font-size: 12px;
    }
    .logoSection {
        width: 176px;
    }
    .searchbar .seachInput {
        min-width: 400px;
        font-size: 12px;
    }
    .midheadbtnul li a {
        font-size: 12px;
    }
    .mainHeaderNav ul li a.headerEnquiryBtn {
        line-height: 26px;
    }
    .mainHeaderNav ul li a.headerEnquiryBtn:hover {
        padding: 5px 10px;
    }
    .mainHeaderNav ul li .browseCateMenus>li>a::after {
        top: 1px;
        font-size: 12px;
    }
    .mainHeaderNav ul li .browseCateMenus>li>a:hover {
        padding: 5px 10px;
    }
    .mainHeaderNav ul li a.active, .mainHeaderNav ul li a:hover {
        padding: 5px 10px;
    }
    .mainHeaderNav ul li a {
        font-size: 12px;
        padding: 5px 10px;
    }
    .browseCateMenus {
        border-radius: 12px;
        width: 200px;
    }
    .mainHeaderNav ul li {
        margin: 0px 0px 0px 5px;
    }
    .dropDownMenu {
        max-height: 210px;
        overflow: hidden;
        overflow-y: auto;
        width: max-content;
        min-height: 204px;
        min-width: 220px;
    }
    .journalImg {
        width: 140px;
        height: 140px;
    }
    .journelCards {
        min-height: 190px;
    }
    .whats-new-content {
        min-height: 150px;
        max-height: 150px;
    }
    .whats-new-sec h4.listPrTitle {
        font-size: 13px;
    }
    .whats-new-sec .defaultBtn a {
        height: 29px;
        padding: 7px 14px;
        position: relative;
        top: 0px;
        border-radius: 30px;
        margin-top: 20px;
        font-size: 10px;
        line-height: normal;
    }
    .full-video {
        height: 380px;
    }
    .videocol {
        min-height: 390px;
    }
    /* until  */

    .logoSection {
        width: 140px;
    }

    .searchbar .seachInput {
        min-width: 230px;
    }

    .middleheadBtn {
        align-items: center;
        flex-direction: column-reverse;
    }

    .SliderContentsWrapper {
        padding: 0px 20px;
    }

    .SliderContents {
        width: 50%;
        left: 2%;
    }

    .hero-style {
        height: 295px;
        transition: all .4s ease;
    }

    .sliderProductImg {
        position: absolute;
        bottom: 1%;
        right: 0%;
        z-index: 2;
        width: 50%;
    }

    .sliderSurface {
        position: absolute;
        bottom: 10%;
        right: 0px;
        z-index: 1;
        width: 48%;
    }

    .hero-style .slide-title h2 {
        font-size: 40px;
    }

    .sliderProduct {
        top: 0%;
    }

    .whats-new-sec h4 {
        font-size: 15px;
    }

    .secImg img.image-i {
        width: 100%;
    }

    .secImg img.image-ii {
        bottom: -30%;
        right: 0px;
        width: 100%;
        border: 3px solid #fff;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        left: 0px;
        margin: auto;
        position: unset;
        margin-top: 15px;
    }

    .videoPop {
        top: 54%;
        left: 50%;
    }

    .midMobBtn li::after {
        display: none;
    }

    .hero-style .slide-title h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .sliderFeature span {
        width: 88px;
    }

    /* .sliderFeature span:first-child img{
        width: 100%;
    } */
    .sliderFeature span img {
        width: 100%;
        position: relative;
    }

    .featuresCard {
        padding: 10px;
    }

    .fCardContent h4 {
        font-size: 15px;
    }

    .fCardContent p {
        font-size: 14px;
        line-height: 19px;
        padding-bottom: 10px;
    }

    .defaultListView ul li {
        width: 50%;
    }

    .defaultListView .title {
        font-size: 16px;
        margin-top: 10px;
    }

    p {
        line-height: 22px;
    }

    .homeAboutPara .defaultBtn {
        margin-top: 14px;
    }

    .secbg img {
        width: 100%;
        height: 100%;
    }

    .categoryImg {
        width: 30%;
        border-radius: 8px;
    }

    .categoryContent h4 {
        font-size: 13px;
    }

    .homeAboutPara.companyProfile {
        padding-left: 20px;
    }

    .coutnerIco {
        width: 40px;
        height: 40px;
    }

    .teamSlidWrap {
        margin-right: 0px;
    }

    .footer-links ul li a {
        display: flex;
        align-items: baseline;
    }

}

@media screen and (max-width:768px) and (min-width:481px) {
    /* 17-10-2024 */
    .searchbar .seachInput {
        height: 40px;
    }

    /* until */

    
    .hero-style {
        height: 380px;
    }

    .SliderContentsWrapper {
        padding: 0px 20px;
    }

    .SliderContents {
        width: 55%;
        left: 14px;
    }

    .hero-style .slide-title h2 {
        font-size: 25px;
        margin: 0px;
        margin-bottom: 10px;
    }

    .hero-style .slide-text p {
        font-size: 13px;
        margin-bottom: 10px;
        line-height: 18px;
    }

    .sliderFeature span {
        width: 60px;
        display: inline-block;
    }

    .sliderFeature span img {
        width: 100%;
    }

    .sliderProductImg {
        width: 42%;
    }

    .sliderSurface {
        position: absolute;
        bottom: 10%;
        right: 4%;
        z-index: 1;
        width: 42%;
    }

    .sliderDot {
        position: absolute;
        left: 55%;
        top: 10%;
        width: 10%;
    }

    .logoSection {
        width: 120px;
    }

    .headerMiddle {
        box-shadow: rgb(100 100 111 / 4%) 0px 7px 29px 0px;
        z-index: 2;
    }

    .sliderCMove1 {
        bottom: 6%;
        left: 57%;
        width: 6%;
    }

    .sliderCMove2 {
        width: 4%;
    }

    .headerMain {
        top: unset;
    }

}

@media screen and (max-width:480px) and (min-width:299px) {
    .hero-style {
        height: 130px;
    }
    

    .SliderContentsWrapper {
        padding: 0px 20px;
        margin: 0px 12px;
    }

    .SliderContents {
        width: 100%;
        left: 0px;
        right: 0px;
        margin-top: 110px;
    }

    .hero-style .slide-title h2 {
        font-size: 18px;
        margin: 0px;
        margin-bottom: 4px;
        text-align: center;
    }

    .hero-style .slide-text p {
        font-size: 11px;
        margin-bottom: 8px;
        line-height: 16px;
        text-align: center;
    }

    .sliderFeature span {
        width: 35px;
        display: inline-block;
    }

    .sliderFeature {
        text-align: center;
    }

    .sliderFeature span img {
        width: 100%;
    }

    .sliderProductImg {
        width: 42%;
        position: absolute;
        right: 0px;
        left: 0px;
        margin: auto;
    }

    .sliderSurface {
        position: relative;
        bottom: 0px;
        right: 0px;
        z-index: 1;
        width: 42%;
        left: 25%;
        top: 73%;
        margin: auto;
        width: 50%;
        margin-bottom: 0px;
    }

    .sliderDot {
        position: absolute;
        left: 55%;
        top: 10%;
        width: 10%;
    }

    .logoSection {
        width: 110px;
        margin-right: 37%;
    }

    .headerMiddle {
        box-shadow: rgb(100 100 111 / 4%) 0px 7px 29px 0px;
        z-index: 2;
    }

    .sliderCMove1 {
        bottom: 6%;
        left: 57%;
        width: 6%;
    }

    .sliderCMove2 {
        width: 4%;
    }

    .headerMain {
        top: unset;
    }
    .midheadbtnul {
        gap: 7px;
    }
    .midheadbtnul li a svg {
        width: 16px;
    }
    .hamburger .line {
        width: 23px;
        height: 2px;
        margin: 4px auto;
    }
    
    .sliderProduct {
        position: relative;
        height: 40%;
    }

    .sectionTitle h4 {
        font-size: 25px;
    }

    .secTitle .mainTitle {
        font-size: 25px;
        margin-top: 20px;
    }

    .defaultListView ul li {
        width: 100% !important;
    }

    .defaultListView ul {
        left: 16%;
        position: relative;
    }

    .footer-links ul li {
        margin-bottom: 5px;
    }

    .footer-links ul {
        margin-top: 22px;
    }

    .footer-section {
        padding: 50px 0px;
    }
}

.mainHeaderNav ul li i {
    display: none;
}
@media screen and (max-width:768px) {
    .mainHeaderNav ul li i {
        display: block;
    }
    .mainHeaderNav ul li .browseCateMenus>li>a::after {
        display: none;
    }
    /* 17-10-2024 */
    .productDetailMail {
        margin-left: 0px;
    }
    .productTitle h2 {
        font-size: 16px!important;
    }
    .productTitle h5 {
        margin-top: 5px;
        font-size: 12px;
    }
    .productDetails {
        margin-top: 80px;
    }
    .mainHeaderNav ul li a.headerEnquiryBtn {
        margin: auto;
        margin-top: 10px;
    }
    .bannerSection{
        margin-top: 83px;
    }
    .topHeaderSection {
        display: none;
    }
    .mainHeaderNav ul li.hasMegaMenu:hover .dropDownMenu {
        left: 0px;
    }
    .browseCateMenus.normalMenu {
        width: 100%;
    }
    .mainHeaderNav ul.browseCateMenus {
        position: unset;
        visibility: visible;
        opacity: 1;
        width: 100%;
        border-radius: 0px;
        display: none;
        transition: inherit;
    }
    .mainHeaderNav {
        flex-direction: column;
        margin-top: 30px;
        transition: 0.3s ease-in-out;
    }
    .headerMain.sticky .mainHeaderNav {
        margin-top: 100px;
    }

    /* until */

    .videoPop {
        top: 100%;
        left: 50%;
    }

    .featured-swiper-container {
        padding: 0px 20px;
    }

    .headerMain {
        position: fixed;
        top: unset;
        display: none;
        z-index: 4;
        width: 100%;
        z-index: 99;
        height: 100vh;
    }

    .bnrNavWrap ul li {
        padding-right: 10px;
        position: relative;
        margin-right: 3px;
    }

    .searchbar .seachInput {
        width: 100%;
    }

    .middleheadBtn {
        display: block;
    }

    .hamburger {
        display: block;
        margin-left: 16px;
    }

    .searchbar .searchButton {
        background: none;
        color: #111111;
        padding: 9px;
    }

    .quickSearchMob {
        display: block
    }

    .searchbar {
        display: block !important;
        position: fixed;
        top: 8.4%;
        z-index: 2;
        width: 100%;
        left: 0px;
        right: 0px;
        margin: auto;
        max-width: 94%;
    }

    .searchbar .seachInput {
        min-width: 100%;
    }

    .advanceSearch {
        position: unset;
    }

    .searchbarWrapper {
        text-align: center;
    }

    .quickSearchMob i {
        font-size: 14px;
        margin-right: 5px;
    }

    .quickSearchMob a {
        font-weight: 700;
        position: relative;
    }

    /* .mainHeaderNav{
        position: relative;
        z-index: 3;
    } */
    .mainHeaderNav ul {
        flex-direction: column;
        height: auto;
        overflow-y: auto;
    }

    .mainHeaderNav ul li {
        width: 100%;
        margin: 0px;
    }

    .mainHeaderNav ul li.hasMegaMenu {
        position: relative;
    }

    .mainHeaderNav ul li a {
        display: block;
        border-bottom: 1px solid #bdbdbd;
    }
    .mainHeaderNav > ul > li > i {
        position: absolute;
        right: 0px;
        top: 18px;
        right: 0;
        width: 30px;
        height: 30px;
        text-align: center;
        font-size: 11px;
    }
    .hasMegaMenu i {
        color: #fff;
        font-size: 13px;
        position: relative;
        left: auto;
        transition: 0.4s ease-in-out;
        position: absolute;
        right: 1px;
        z-index: 3;
        top: 4px;
        padding: 10px;
    }

    .mainHeaderNav ul li.hasMegaMenu:hover .dropDownMenu {
        top: unset;
        visibility: unset;
        opacity: unset;
        margin: 15px 0px;
    }

    .mainHeaderNav ul li.hasMegaMenu .dropDownMenu {
        top: 0px;
        visibility: visible;
        opacity: 1;
        display: none;
        transition: inherit;
        position: relative;
        background: #efefef;
        border: none;
        border-radius: 5px;
        left: 0px;
        width: 100%;
        max-width: 95%;
        height: 100px;
        min-height: 187px;
    }

    .dropDownName h4 {
        color: #0c0c0c;
    }

    .mainHeaderNav ul li.hasMegaMenu i.active {
        color: #ffffff;
        transform: rotate(180deg);
    }

    .dropDownCard {
        margin: 0px;
        margin-bottom: 10px;
    }

    .mainHeaderNav ul li .dropDownCol a {
        border: none;
    }

    .dropDownMenuRow {
        flex-direction: column;
    }

    .dropDownCol {
        width: 100%;
    }

    .mainHeaderNav ul li a.active,
    .mainHeaderNav ul li a:hover {
        color: #0c0c0c;
    }

    .mainHeaderNav ul li.hasMegaMenu:hover i {
        color: #6a6a6a;
    }

    .mainHeaderNav ul li.hasMegaMenu i {
        color: #6a6a6a;
    }

    .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
        bottom: -8px;
    }

    .topHeadMessage ul:last-child {
        display: none;
    }

    .topHeadMessage ul li h6 {
        font-size: 10px;
        color: #fff;
        text-align: center;
    }

    .marqueeWrapper a {
        font-size: 10px;
    }

    .featuresCard {
        margin-bottom: 16px;
    }

    .tiffinBookingCard {
        flex-direction: column;
    }

    .tbcIco {
        width: 100%;
        margin-right: 0px;
    }

    .tbcContent {
        width: 100%;
        text-align: center;
        margin-top: 18px;
    }

    .cardButtonSection {
        flex-direction: column;
    }

    .tbcContent h3 {
        font-size: 18px;
        margin-bottom: 7px;
    }

    .secbg {
        width: 100%;
    }

    .secImg img.image-i {
        display: none;
    }

    .secImg img.image-ii {
        position: unset;
        width: 100%;
    }

    .homeAboutPara {
        text-align: center;
        margin-top: 20px;
    }

    .defaultListView ul li {
        width: 50%;
        background-position: left top 5px;
        line-height: 24px;
        text-align: left;
    }

    .footer-links {
        padding-left: 0px;
        margin-top: 20px;
    }

    .copyright-section {
        text-align: center;
    }

    .ltn__copyright-menu.text-end {
        text-align: center !important;
    }

    #button {
        width: 35px;
        height: 35px;
    }

    #button::after {
        font-size: 1.5em;
        line-height: 37px;
    }

    .teamSlidWrap {
        margin-right: 0px;
    }

    .secbg.bgcolor2 {
        width: 100%;
        opacity: 0.06;
    }

    .homeAboutPara.companyProfile {
        padding-left: 0px;
    }

    .coutnerIco {
        position: unset;
    }

    .countersWrap .common-box {
        display: flex;
        flex-direction: column-reverse;
    }

    .countersWrap .common-box .counter-text {
        width: 100%;
    }

    .homectfrombg {
        width: 100%;
        position: unset;
    }

    .internationVentures {
        padding-top: 0px;
    }

    .productPara {
        padding: 0px;
    }

    #tile-1 .nav-tabs {
        flex-direction: column;
    }

    #tile-1 .slider {
        height: 25%;
        top: 0px;
    }

    #tile-1 .slider {
        display: none;
    }

    #tile-1 .nav-tabs .active {
        background-color: #3a0058 !important;
    }

    .productFeature {
        padding: 15px 20px;
    }

    .productVideoTab {
        padding: 12px;
    }

    .productVideoTab iframe {
        height: 200px;
    }

    .right-sidebar-box {
        padding: 15px;
    }

    .blogCardImg.videoWrap {
        height: auto;
    }

    .videoPlayThumb {
        margin-bottom: 0px;
    }

    .blogSwiperCard.videoContainer {
        min-height: auto;
    }

    .productVideoCard .contactWrapper {
        padding: 0px;
    }

    .galleryImgWrap .galleryImg {
        width: 100%;
    }

    .blogDetailWrap .secImg {
        height: auto;
    }

    .blogsmInfo {
        margin-top: 15px;
        margin-bottom: 0px;
    }

    .blogsmInfo ul {
        justify-content: space-between;
    }

    .blogdSidebar {
        margin-top: 20px;
    }

    .defaultListView {
        overflow-x: hidden;
    }

    .enquireNowForm.contactPage .right-sidebar-box {
        margin-left: 0px;
    }
    .accordionCategoriesFilter {
            flex-wrap: wrap;
        /* overflow-x: auto; */
    }
    .shortByFeature span {
        width: auto;
    }
    .mainlisting .productSideBar.productListingSidebar {
        flex-wrap: wrap;
        gap: 10px;
    }
    .shortByFeature {
        width: 51%;
    }
    .shortByFeature span {
        width: 90px;
        font-size: 10px;
    }
    .shortByFeature select {
        width: 100% !important;
        border-radius: 30px;
        padding: 0px 30px 0px 10px;
        font-size: 11px;
    }
    .range-slider {
        height: 3em;
        width: 100%;
    }
    .innerBannerNav {
        margin-top: 92px;
        min-height: auto;
    }
    .productCart  {
        margin-top: 80px;
    }
    .productSideBar {
        width: 100%;
        position: unset;
    }
    .prListingWrap {
        flex-direction: column;
    }
    .userpanel {
        margin-top: 80px;
    }
    .accordionCategoriesFilter .accordion-item {
        width: 100%;
    }
}

@media screen and (max-width:480px) {
    /*  */
    .somebenefits {
        gap: 7px;
    }
    .productAction label {
        font-size: 12px;
    }
    .purchaseBtns a {
        font-size: 12px;
        padding: 5px 16px;
    }
    .somebenefits .featuresCard {
        width: 46%;
        margin-bottom: 0px;
    }
    .somebenefits .fCardImg {
        width: 40px;
        height: 40px;
        padding: 0px;
    }
    .fCardContent {
        text-align: left;
    }
    .fCardContent p {
        font-size: 12px;
        line-height: 14px;
    }
    .productReivewsandRatings .starratingInfo span {
        padding: 2px;
        font-size: 11px;
        border-radius: 4px;
    }
    .gotoReviewSec a {
        font-size: 10px;
    }
    .productReivewsandRatings .starratings i {
        font-size: 10px;
    }
    /* .accordionCategoriesFilter .accordion-item {
        width: 30%;
    } */

    .userpanelWrapper  .accordionCategoriesFilter .accordion-item .accordion-button {
        padding: 13px;
        font-size: 15px;
    }
    .userpanelWrapper .accordionCategoriesFilter .accordion-item .accordion-button {
        padding: 7px 16px;
        font-size: 14px;
    }
    .userMainContentWrapper {
        margin-top: 20px;
    }
    .contactDWrapper {
        padding: 0px;
    }
    .essentialWrap h4 {
        font-size: 12px;
    }
    .giftingGuideSec {
        padding: 20px 0px;
    }
    .pb-50 {
        padding-bottom: 20px;
    }
    
    .pt-50 {
        padding-top: 20px;
    }
    .whats-new-content {
        padding: 0px 21px;
        min-height: 127px;
        max-height: 116px;
    }
    /*  */

    
    .blogDetailWrap .blogTitle {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .blogviewBtn p {
        font-size: 11px;
        line-height: 17px;
    }

    .bnrNavWrap ul li a {
        font-size: 9px;
    }

    .bnrNavWrap ul {
        flex-wrap: wrap;
    }

    .subTitleSec h5 {
        font-size: 14px;
        font-weight: 600;
    }

    .defaultBtn a,
    .defaultBtn button {
        height: 34px;
        font-size: 14px;
        padding: 4px 9px;
    }

    .defaultBtn a span,
    .defaultBtn button span {
        font-size: 11px;
    }
}



/* 03-04-2024 */
.contactDepartment i {
    font-size: 14px;
    margin-right: 6px;
    color: #462673;
}

.position-sticky {
    position: sticky;
    top: 70px;
}





/* 08-08-2024 */
.categoryListing {
    margin-top: 40px;
}

.catListCard {
    width: 100%;
    padding: 20px;
    background: radial-gradient(white, #f0e6ff);
    border-radius: 10px;
    border: none;
    position: relative;
    text-align: center;
    border-bottom: 2px solid #d4b6ff;
    min-height: 108px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
    margin-bottom: 20px;
}

.catListCard:hover {
    transform: translateY(-5px);
}

.catListCard::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 101%;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    background: radial-gradient(#ffefef, #e3d0ff);
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
    border-radius: 10px;
}

.catListCard::before {
    position: absolute;
    content: '';
    width: 82%;
    height: 7%;
    bottom: -13px;
    left: 0px;
    right: 0px;
    margin: auto;
    background: #4d4d4d4d;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
    border-radius: 100%;
    filter: blur(3px);
}

.catListCard:hover::after {
    visibility: visible;
    opacity: 1;
}

.catListCard:hover::before {
    visibility: visible;
    opacity: 1;
}

.catListTitle {
    position: relative;
    z-index: 2;
}

.catListTitle h4 {
    font-size: 17px;
    font-weight: 700;
    color: #47236b;
}

.catListTitle p {
    color: #6f6f6f;
    font-size: 13px;
}


.catListCard.catlistWithImg {
    padding: 13px;
    text-align: left;
}

.catListImg {
    width: 40%;
    position: relative;
    z-index: 2;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0px 0px 10px #00000017;
    border: 1px dashed #ddd;
}

.catListImg img {
    width: 100%;
}

.catListCard.catlistWithImg .catListTitle {
    width: 60%;
    padding-left: 14px;
}




/* ************ 11/10/2024 ************** */

.videoGuideSec {
    background: #fff;
}

@media (max-width:992px) {
    .shopbyPrice {
        padding: 50px 0;
    }

    .giftingGuideSec {
        padding: 50px 0px;
    }

    .btnEssentials {
        width: 50px;
        height: 50px;
    }

    .btnEssentials svg {
        width: 9px;
    }

    .essentialImg::before,
    .essentialImg::after {
        display: none;
    }

    .latestcollectionimgs ul {
        margin-top: -46px;
    }

    .footer-logo img {
        width: 119px;
    }
}

@media (max-width:768px) {
    .midheadbtnul li a {
        font-size: 10px;
    }

    .quickSearchMob {
        display: none;
    }

    .whats-new-sec h4.listPrTitle {
        font-size: 14px;
    }

    .middleHeaderWrap {
        justify-content: center;
    }

    .headerMiddle {
        position: fixed;
        width: 100%;
        background: #fff;
        top: 0;
        z-index: 999;
    }

    div#hamburger-11 {
        left: 0;
        position: absolute;
    }

    .middleheadBtn {
        position: absolute;
        right: 0;
    }

    .midheadbtnul li i#icon3 {
        margin-right: 16px;
    }

    .midheadbtnul li span {
        display: none;
    }

   
    .midheadbtnul li a svg {
        width: 21px;
    }

}

@media (max-width:680px) {
    .journalImg {
        width: 150px;
        height: 150px;
    }

    .listprPrice {
        font-size: 13px;
    }

    .whats-new-sec .defaultBtn a {
        height: 30px;
        padding: 2px 11px;
        font-size: 12px !important;
    }

    .ratingShow {
        font-size: 12px;
    }

    .whats-new-sec h4.listPrTitle {
        font-size: 12px;
    }
}


@media (max-width:480px) {
    .journalImg {
        width: 100px;
        height: 100px;
    }

    .journelCards {
        min-height: 150px;
    }

    .essentialImg::before {
        display: none;
    }

    .btnEssentials {
        width: 50px;
        height: 50px;
    }

    .btnEssentials svg {
        width: 9px;
    }

    .shopbyPrice {
        padding: 20px 0;
    }

    .giftingGuideSec {
        padding: 20px 0px;
    }

    .latestcollectionimgs ul {
        margin-top: -77px;
    }
    .shopbyPriceWrapper.shopSomeOtherWrapper .row .col-md-6.col-6:nth-child(3) .shopbyPriceCard{
        margin-bottom: 0px;
    }
    .shopbyPriceWrapper.shopSomeOtherWrapper .row .col-md-6.col-6:nth-child(4) .shopbyPriceCard{
        margin-bottom: 0px;
    }
    .latestCollectionCard {
        margin-bottom: 30px;
    }

    .videoGuideSec .swiper-wrapper {
        justify-content: center;
        text-align: center;
    }

    /* .whats-new-content {
        min-height: 210px;
    } */

    .videocontent .card-body {
        position: relative !important;
        bottom: -12px !important;
    }

    .videocontent .card-footer {
        position: relative;
        bottom: -12px;
        border-radius: 0 0 10px 10px;
    }

    .shopbyPriceWrapper.shopSomeOtherWrapper .shopbyPriceCard h4 {
        left: 15px;
        font-size: 11px;
    }
  
}




.full-video {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.full-video video {
    position: absolute;
    right: 0;
    top: 0;
    object-fit: cover;
    z-index: 0;
    width: 100%;
    height: 100%;
    bottom: 0px;
}

.videosec {
    width: 100%;
    position: relative;
}

.videocol {
    width: 100%;
    min-height: 500px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.videocol video {
    position: absolute;
    right: 0;
    top: 0;
    object-fit: cover;
    z-index: 0;
    width: 100%;
    height: 100%;
    bottom: 0px;
}

.videocol video ::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.3);
}

.videocontent {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgb(45 45 45 / 1%) 0%, rgb(0 0 0) 100%) !important;
    border-radius: 10px;
}

.videocontent .card {
    background: #f0f8ff00;
    border: none !important;
}



.videocontent .card-title {
    font-size: 14px;
    color: #fff;
    font-weight: 700;
}

.videocontent .card-text {
    font-size: 14px;
    color: #fff;
    font-weight: 700;
}

.videocontent .card-footer {
    background: #252524;
    border-top: none;
    text-align: center;
}

.videocontent .card-footer a.cart {
    color: #fff;
    text-align: center;
}



/* ******** 15/10/2024 *********** */


.storySlider {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.storySlider .swiper-button-next {
    transform: translateY(-50%);
    top: 50%;
    background-color: #ffffff87;
    background-size: 18px;
    width: 37px;
    height: 37px;
    backdrop-filter: blur(5px);
    border-radius: 5px;
    border: 1px solid #f3f3f3;
    box-shadow: 0px 0px 10px #5a5a5a12;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" x="0" y="0" viewBox="0 0 25 24" xml:space="preserve"><g><path fill="%23000" fill-rule="evenodd" d="M20.25 11c-2.438 0-4.66-2.22-4.66-4.66v-1h-2v1c0 1.774.778 3.438 1.999 4.66H3.25v2h12.339c-1.221 1.222-1.999 2.886-1.999 4.66v1h2v-1c0-2.439 2.222-4.66 4.66-4.66h1v-2z" clip-rule="evenodd" opacity="1"></path></g></svg>');
    right: 0px;
}

.storySlider .swiper-button-prev {
    transform: translateY(-50%)scaleX(-1);
    top: 50%;
    background-color: #ffffff87;
    background-size: 18px;
    width: 37px;
    height: 37px;
    backdrop-filter: blur(5px);
    border-radius: 5px;
    border: 1px solid #f3f3f3;
    box-shadow: 0px 0px 10px #5a5a5a12;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" x="0" y="0" viewBox="0 0 25 24" xml:space="preserve"><g><path fill="%23000" fill-rule="evenodd" d="M20.25 11c-2.438 0-4.66-2.22-4.66-4.66v-1h-2v1c0 1.774.778 3.438 1.999 4.66H3.25v2h12.339c-1.221 1.222-1.999 2.886-1.999 4.66v1h2v-1c0-2.439 2.222-4.66 4.66-4.66h1v-2z" clip-rule="evenodd" opacity="1"></path></g></svg>');
    left: 0px;
}