* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

body {

    font-family: 'Lato', sans-serif;
    color: #3f3f3f;
    /* overflow-x: hidden; */
    font-size: 16px;

}

.parsley-required{
    color:red;
}
p {
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    line-height: 28px;
    color: #3f3f3f;
}

a {
    font-size: 16px;
    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: 'Lato', sans-serif;
    color: #3f3f3f;
}

a:hover {
    text-decoration: none;
    outline: none;
}
 
ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

button:focus,
input:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
    transition: all 500ms ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lato', serif;
    margin: 0px;
    color: #252525;
}

p {
    margin: 0px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.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;
}

.site-width {
    max-width: 1250px;
    margin: 0px auto;
}

@media screen and (max-width:1518px) and (min-width:1368px) {
    .site-width {
        max-width: 1372px;
    }
}

@media screen and (max-width:1708px) and (min-width:1519px) {
    .site-width {
        max-width: 1552px;
    }
}

@media screen and (max-width:1920px) and (min-width:1709px) {
    .site-width {
        max-width: 1642px;
    }
}

@media screen and (max-width:2500px) and (min-width:1921px) {
    .site-width {
        max-width: 1842px;
    }
}

@media screen and (max-width:1280px) and (min-width:1024px) {
    .site-width {
        padding: 0px 40px;
        max-width: 1200px;
    }
}

@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: 0px 15px;
    }
}




/* 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: #938f2c;
    --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: #938f2c;
    --text: #fff;
    --font-size: 16px;
    --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: #938f2c;
    --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: #938f2c;
    --text: #fff;
    --font-size: 16px;
    --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, #ecf3fd, #e8f2ff);
}

.head-top-bar .top-head-welcome .textth {
    color: #fff;
}

.topHeadMessage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 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: #938f2c;
}

.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: #938f2c;
}

.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: 38%;
    margin: 0px auto;
}

.marqueeWrapper a {
    color: #ffff;
    font-size: 13px;
}


.topHeadMessage ul.marqueeWrapper li {
    display: block;
    width: 100%;
}

.afterhdr-marquee {
    background: #0061b008;
    position: relative;
    z-index: 3;
}

.afterhdr-marquee h6 {
    font-size: 13px;
    margin: 0px 0px 0px 0px;
    padding: 0px;
    color: #ffff;
}

.topHeadContact {
    margin-right: 20px;
}

.topHeadContact.topHeadLogin {
    margin-right: 0px;
}

.topHeadContact ol {
    display: flex;
    margin-bottom: 0px;
    padding: 0px;
}

.topHeadContact ol li {
    margin-right: 10px;
}

.topHeadContact.topHeadLogin ol li:last-child {
    margin-right: 0px;
}

.topHeadContact ol li a {
    color: #2e2c2c;
    font-size: 14px;
}

.topHeadContact ol li i {
    color: #938f2c;
    margin-right: 5px;
    font-size: 13px;
}

.headerMiddle {
    padding: 6px 0px;
    background-image: linear-gradient(90deg, #ffffff, #ffffff), url(../img/bg/menu-bg.jpg);
    background-size: contain;
}

.middleHeaderWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.searchbar {
    position: relative;
}

.searchbar .seachInput {
    width: 500px;
    height: 44px;
    border: 1px solid #004bad13;
    border-radius: 30px;
    padding: 8px 16px;
    overflow: hidden;
    background: #fbfbfb;
}

.searchbar .seachInput.searchCity {
    width: 200px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
    cursor: pointer;
}

.searchbar .seachInput.searchPr {
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
}

.searchbar .seachInput:focus {
    border-color: #004bad42;
}

.searchbar .searchButton {
    position: absolute;
    right: 1px;
    padding: 10px 34px;
    border: none;
    outline: none;
    border-radius: 30px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    height: fit-content;
    font-size: 15px;
    color: #fff;
    background: linear-gradient(180deg, #4c2d0c, #aaa32a);
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
}

.searchbarWrapper .suggestions {
    border: 1px solid #d7d7d78f;
    padding: 5px;
    display: none;
    position: absolute;
    z-index: 3;
    background: #fff;
    width: 100%;
    border-radius: 20px;
    padding: 13px 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 solid #00af3833;
    padding: 5px 10px;
    cursor: pointer;
}

.searchbarWrapper .suggestions div:hover {
    background: #d4ffc63d;
    ;
}

.searchbarWrapper .suggestions div:first-child {
    padding-top: 0px;
}

.searchbarWrapper .suggestions div:last-child {
    border-color: transparent;
    padding-bottom: 0px;
}

.button1 a,
.button1 button {
    padding: 13px 22px;
    background: linear-gradient(0deg, #005d0f, #00bb2a);
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
}


.headerMain {
    position: relative;
    background: linear-gradient(180deg, #bdbc31, #4c2d0c);
}

.headerMain.sticky {
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 5;
}

.mainHeaderWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 85px;
}

.logoSection {
    width: 106px;

}

.logoSection img {
    width: 100%;
}

.mainHeaderNav {
    display: flex;
    justify-content: space-between;
}

.mainHeaderNav ul {
    display: flex;
    align-items: center;
}

.mainHeaderNav ul li {
    margin: 0px 0px 0px 18px;
}

.mainHeaderNav ul li:first-child {
    margin-left: 0px;
}

.mainHeaderNav ul li a {
    color: #ffffff;
    padding: 10px 12px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.mainHeaderNav ul li a.active,
.mainHeaderNav ul li a:hover {
    background: #e9f3fd;
    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: #000000;
    bottom: 0px;
    left: 0px;
    transition: 0.4s ease-in-out;
}

.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: 900px;
    height: auto;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s 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: 378px;
    overflow: hidden;
    overflow-y: auto;
    width: max-content;
    min-height: 378px;
    min-width: 900px;
}

.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;
}

.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(0deg, #005d0f, #00bb2a);
    color: #ffff;
}

.dropDownCol {
    width: 33.33%;
}

.mainHeaderNav ul li .dropDownCol a {
    padding: 0px;
    width: 100%;
}

.mainHeaderNav ul li .dropDownCol a:hover {
    background: unset;
    color: unset;
    padding: initial;
}

.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;
}

.dropDownCard:hover {
    background: #006f201c;
}

.dropDownImg {
    width: 50px;
    height: fit-content;
    border-radius: 5px;
    margin-right: 8px;
    overflow: hidden;
    border: none;
}

.dropDownImg img {
    width: 100%;
}

.dropDownName h4 {
    font-size: 17px;
    font-weight: 700;
}

.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;
    position: relative;
}

.headCartNum {
    position: absolute;
    top: 10px;
    right: 6px;
}

.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;

}

.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: 100% 100%;
    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: 25px;
    transform: translateX(50px);
}

.hero-slider .swiper-button-prev:before {
    font-family: "Font Awesome 5 Free";
    content: "\f060";
    font-size: 15px;
    color: #938f2c;
    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: 25px;
    transform: translateX(-50px);
}

.hero-slider .swiper-button-next:before {
    font-family: "Font Awesome 5 Free";
    content: "\f061";
    font-size: 15px;
    color: #938f2c;
    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: #fff;
    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: 425px;
    transition: all .4s ease;
}

.SliderContentsWrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.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: 9%;
    right: 0px;
    top: 0px;
    margin: auto;
    bottom: 0px;
    width: 41%;
    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: 42px;
    font-weight: 800;
    line-height: 50px;
    color: #2c2c2d;
    margin-bottom: 0px;
    text-transform: capitalize;
    transition: all .4s ease;
}

.hero-style .slide-title h2 span {
    color: #fc0000;
    font-size: 54px;
    font-family: 'Kalnia';
    font-weight: 500;
}

@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: 18px;
    color: #343434;
    margin: 0 0 20px;
    transition: all .4s ease;
    margin-top: 15px;
}

.hero-style .slide-text p span {
    color: #009a4e;
    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: 16px;
        font-size: 1rem;
        font-weight: normal;
        margin: 0 0 30px;
    }
}

.hero-style .slide-btns>a:first-child {
    margin-right: 10px;
}

.aboutCompany {
    height: 100%;
    width: 34%;
    padding: 0px 23px;
}

.bannerWrapperSection {
    display: flex;
    height: 100%;
    align-items: center;
    background: #938f2c;
}

.hero-slider {
    width: 100%;
}

.bgColor1 {
    background: linear-gradient(180deg, #ffffffe0, #ffffffe8), url(../img/bg/texture-1.jpg);
    background-size: 100%;
}

.bgcolor3 {
    background: linear-gradient(180deg, #f2f8ffd9, #f2f8ffd9), url(../img/bg/texture-5.jpg);
    background-size: 100%;
}

.featuresWrapper {
    max-width: 100%;
    margin: 0px auto;
}

.featuresCard {
    padding: 20px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #009aca29;
    min-height: 144px;
    box-shadow: rgb(0 0 0 / 4%) 0px 3px 12px;
    transition: 0.4s ease-in-out;
}

.featuresCard:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.096) 0px 25px 20px -20px;
}

.fCardImg {
    width: 33%;
    margin: 0px auto;
    margin-bottom: 10px;
}

.fCardImg img {
    width: 100%;
    /* filter: hue-rotate(255deg); */
}

.fCardContent {
    text-align: center;
}

.fCardContent h4 {
    font-size: 16px;
    font-weight: 700;
    color: #674f15;
    margin-bottom: 5px;
    margin-top: 13px;
}

.aboutVisionMission .fCardContent h4 {
    font-size: 24px;
}


.sectionTitle {
    text-align: center;
    position: relative;
}

.sectionTitle::after {
    content: '';
    position: absolute;
    width: 100px;
    margin: auto;
    height: 3px;
    background: #674f15;
    left: 0px;
    right: 0px;
    border-radius: 30px;
    bottom: -10px;
}

.sectionTitle::before {
    content: '';
    position: absolute;
    width: 16px;
    margin: auto;
    height: 16px;
    background: #111111;
    left: 0px;
    right: 0px;
    border-radius: 100%;
    bottom: -16px;
    border: 3px solid #f6fafd;
    z-index: 1;
}

.sectionTitle h4 {
    font-size: 34px;
    font-weight: 700;
    color: #674f15;
}


.featured-swiper-container {
    margin-top: 50px;
    position: relative;
}

.featured-swiper-container {
    overflow: hidden;
}

.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: #938f2c;
}

.featured-swiper-container2 .swiper-button-prev:hover {
    background-color: #938f2c;
}

.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;
}

.journalImg {
    width: 170px;
    border-radius: 100%;
    overflow: hidden;
    border: 3px solid #fff;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
    position: relative;
}

.journalImg img {
    width: 100%;
    border-radius: 20px;
    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;*/
}

.journalContent p {
    font-size: 13px;
}

.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;
}

.featured-swiper-container .swiper-button-next,
.featured-swiper-container .swiper-button-prev {
    background-size: 14px 20px;
}

.useforDefault {
    width: fit-content;
    margin: 0px auto;
}

.categoriesSect {
    background: radial-gradient(#fffffffa, #f1f1f1e0), url(../img/bg/texture-2.jpg);
    background-size: 100% 100%;
}

.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: 16px;
    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(180deg, #674f15, #938f2c);
    color: #ffff;
    border: none;
}

.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);
}




.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;
}

.secTitle {
    position: relative;
}

.secTitle .subTitle {
    color: #a6240a;
    background: #a8271029;
    display: inline-block;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 17px;
    margin-bottom: 12px;
}

.secTitle .mainTitle {
    color: #343434;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.defaultListView .title {
    font-size: 18px;
}

.defaultListView ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
}

.defaultListView ul li {
    width: 100%;
    padding-left: 25px;
    background-image: url(../img/icons/check.png);
    background-size: 18px;
    background-position: left top 5px;
    background-repeat: no-repeat;
    line-height: 30px;
}

.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 a,
.defaultBtn button {
    padding: 10px 20px;
    border-radius: 30px;
    background: linear-gradient(70deg, #a82710, #d54e00);
    color: #fff;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.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%;
}

.homeAboutPara .defaultBtn {
    margin-top: 30px;
}

.homeAboutPara p {
    margin-bottom: 12px;
    text-align: justify;
}

.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;
}

.twoFeatureCard {
    position: relative;
}

.twoFeatureTitle {
    position: absolute;
    z-index: 2;
    top: 0px;
    bottom: 0px;
    margin: auto;
    height: fit-content;
    left: 7%;
}

.twoFeatureTitle h4 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #4c4c4c;
}

.twoFeatureTitle h5 {
    font-size: 17px;
    font-weight: 700;
}

.twoFeatureTitle h5 span {
    font-size: 28px;
    margin-right: 8px;
    margin-left: 8px;
    color: #2d6e06;
    font-weight: 900;
}

.featurebnrImg {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

.featurebnrImg::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ffffffa3, transparent);
    z-index: 1;
    left: 0px;
    top: 0px;
    bottom: 0px;
    border-radius: 18px;

}

.featurebnrImg img {
    width: 100%;
    border-radius: 18px;
    transition: 0.4s ease-in-out;
}

.twoFeatureCard:hover .featurebnrImg img {
    transform: scale(1.05);
}

.twoFeatureCard .btnAdvanceSearch {
    text-align: left;
}

.popularCities {
    background: radial-gradient(#fffffffa, #f1f1f1e0), url(../img/bg/texture-3.png);
    background-size: 100% 100%;
}

.popularCities .journalImg {
    border-radius: 20px;
    width: 100%;
    height: auto;
}

.productTabbingSec {
    margin-top: 40px;
}

.productTabbingSec .nav-tabs {
    justify-content: center;
    border: none;
    border-bottom: 1px dashed #ddddddb5;
}

.productTabbingSec .nav-tabs .nav-link {
    min-width: 150px;
    color: #343434;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    transition: 0.3s ease-in-out;
}

.productTabbingSec .nav-tabs .nav-item.show .nav-link,
.productTabbingSec .nav-tabs .nav-link.active {
    color: #000;
    border: none;
    border-bottom: 2px solid #938f2c;
}

.productSlider {
    margin-top: 10px;
    position: relative;
    padding-bottom: 40px;
}

.productSlider {
    overflow: hidden;
    position: relative;
}

.productSlider.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 0px;
}

.productSlider .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;
}

.productSlider .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;
}

.productSlider .swiper-button-next:hover {
    background-color: #938f2c;
}

.productSlider .swiper-button-prev:hover {
    background-color: #938f2c;
}

.productSlideWrapper .item {
    padding: 10px;
    padding-bottom: 40px;
}

.productSlideWrapper .journelCards {
    overflow: visible;
    padding: 20px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;

}

.productSlideWrapper .journalImg {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: none;
}

.productSlideWrapper .journelCards:hover .journalImg img {
    transform: scale(1.04);
}

.productSlideWrapper .journalContent {
    padding-bottom: 13px;
    transition: 0.4s ease-in-out;
}

.productSlideWrapper .journelCards:hover .journalContent {
    margin-top: -20px;
}

.productSlideWrapper .journalContent h6 {
    font-size: 15px;
}

.productSlideWrapper .journalContent h6 span {
    font-weight: 800;
}

.productSlideWrapper .journalContent h4 {
    max-width: 100%;
}

.productSlideWrapper .journalContent h4.max-text {
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: break-word;
    overflow: hidden;
    max-height: 4.5em;
    line-height: 1.5em;
}

.productSlideWrapper .journalContent h5 {
    font-size: 17px;
    font-weight: 700;
}

.productSlideWrapper .journalContent h5 span.originalPrice {
    color: #858585;
    text-decoration: line-through;
    margin: 0px 4px;
}

.productSlideWrapper .journalContent h5 span.currentPrice {
    font-size: 20px;
    font-weight: 800;
    margin: 0px 3px;
}

.productSlideWrapper .journelCards .btnAdvanceSearch {
    position: absolute;
    left: 0px;
    right: 0px;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s ease-in-out;
    margin-top: 30px;
}

.productSlideWrapper .journelCards:hover .btnAdvanceSearch {
    visibility: visible;
    opacity: 1;
    margin-top: 0px;
}

.productSlider.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    left: 46%;
    width: 40px;
    height: 40px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border-radius: 100%;
    font-size: 15px;
    top: 86%;
}

.productSlider.owl-carousel .owl-nav .owl-next {
    position: absolute;
    right: 46%;
    width: 40px;
    height: 40px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border-radius: 100%;
    font-size: 15px;
    top: 86%;
}

.aboutUsbg {
    background: radial-gradient(#f8f8f885, #9b9126), url(../img/bg/texture-4.png);
}

.aboutUs .journalImg {
    width: 130px;
    height: 130px;
    position: relative;
}

.aboutUs .journalImg img {
    position: relative;
    z-index: 3;
}

.aboutUs .journalImg::after {
    position: absolute;
    content: '';
    width: 90%;
    height: 90%;
    border: 1px dashed #ff8f4e48;
    z-index: 2;
    border-radius: 100%;
    transition: 0.2s ease-in-out;
}

.aboutUs .journalContent {
    margin-top: 10px;
}

.aboutUs .journalContent p {
    font-size: 15px;
    margin-top: 9px;
}

.aboutSerImg {
    width: 100%;
}

.aboutSerImg img {
    width: 100%
}

.aboutFirstTile {
    margin-top: 150px;
}

.aboutFourthTile {
    margin-top: 150px;
}

.aboutSerImg {
    margin-top: -150px;
    animation: upandDown 6s ease-in-out infinite alternate-reverse both;
}

@keyframes upandDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.aboutUs .journelCards:hover .journalImg::after {
    animation: rotate360 5s linear infinite;
    border: 1px dashed #ff904e;
}

@keyframes rotate360 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.counter-wrapper {
    position: relative;
    z-index: 2;
}

.counter-wrapper .common-box {
    text-align: center;
    /* padding: 10px;
    border-radius: 14px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px; */
}

.counter-wrapper .common-box .timer {
    font-size: 50px;
    color: #938f2c;
}

.counter-wrapper .common-box span {
    font-size: 50px;
    font-weight: 800;
    color: transparent;
    /* -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: ##674f15; */
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    color: ##674f15;
}

.counter-wrapper .common-box:hover span {
    color: ##674f15;
}

.counter-wrapper .common-box .counter-text {
    font-size: 17px;
    font-weight: 700;
    color: #343434;
    margin-bottom: 5px;
    margin-top: 0px;
    /* margin: 15px 0px 5px; */
}

.counterIco {
    width: 70px;
    margin-left: auto;
    margin-right: auto;
}

.counterIco img {
    width: 100%;
}

.countersSec {
    background-image: linear-gradient(#ffffff80, #ffffffad), url(../img/bg/mg-1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.counter-wrapper {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 30px 20px;
    border-radius: 20px;
    padding-bottom: 20px;
    background: radial-gradient(white, #f9f9f9d1), url(../img/bg/texture-5.jpg);
    background-size: 100%;
}

.counters {
    margin-top: 40px;
}

.topPrListCard {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 20px;
    overflow: hidden;
}

.topPrListTitle {
    padding: 11px 20px;
    background: #938f2c;
    padding-bottom: 18px;
}

.topPrListTitle h4 {
    font-size: 22px;
    position: relative;
    font-weight: 800;
    color: #fff;
}

.topPrListTitle h4::after {
    position: absolute;
    content: '';
    width: 60px;
    height: 2px;
    top: 110%;
    left: 0px;
    background-color: #ffffff;
}

.topListContent {
    display: flex;
    align-items: center;
    padding: 0px;
    border-bottom: 1px dashed #ddd6;

}

.topListContentImg {
    width: 90px;
    margin-right: 6px;
    padding: 10px;
}

.topListContentImg img {
    width: 100%;
}

.topListContentText {
    width: 70%;
}

.topListContentText h4 {
    font-size: 16px;
    font-weight: 700;
    color: #343434;
    margin-bottom: 0px;
    margin-top: 0px;
    /* margin: 15px 0px 5px;*/
    max-width: 100%;
}

.topListContentText h4.max-text {
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: break-word;
    overflow: hidden;
    max-height: 4.5em;
    line-height: 1.5em;
}

.topListContentText h5 {
    font-size: 15px;
    font-weight: 700;
}

.topListContentText h5 span {}

.topListContentText h5 span.originalPrice {
    color: #858585;
    text-decoration: line-through;
    margin: 0px 4px;
}

.topListContentText h5 span.currentPrice {
    font-size: 17px;
    font-weight: 800;
    margin: 0px 3px;
}

.popularBrands {
    margin-top: 40px;
}

.forBnrWrap {
    width: 100%;
    overflow: hidden;
    border: 3px solid #fff;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 20px;
}

.forBnrWrap img {
    width: 100%;
    transition: 0.4s ease-in-out;
}

.forBnrWrap:hover img {
    transform: scale(1.05);
}

.bgColor2 {
    background: linear-gradient(180deg, #ffffffe0, #ffffffe8), url(../img/bg/texture-1.jpg);
    background-size: 100%;
}

.blogCard {
    width: 100%;
}

.blogImg {
    width: 100%;
    overflow: hidden;
    border: 3px solid #fff;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 20px;
}

.blogImg img {
    width: 100%;
    transition: 0.4s ease-in-out;
}

.blogCard:hover .blogImg img {
    transform: scale(1.04);
}

.blogContent {
    padding: 0px 25px;
    margin-top: 14px;
}

.blogContent h6 {
    font-size: 14px;
    font-weight: 600;
    color: #626262;
    margin-bottom: 10px;
    margin-top: 9px;
}

.blogContent h4 {
    font-size: 18px;
    font-weight: 700;
}

.dateAuthor {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dateAuthor span {
    font-size: 15px;
    font-weight: 600;
}

.dateAuthor span i {
    font-size: 14px;
    color: #938f2c;
}

.blog-carousel {
    margin-top: 40px;
}

.blog-carousel .item {
    padding: 10px;
}


/* Footer  */


.footer-section {
    width: 100%;
    background-image: url(../img/bg/Banner.png);
    background-size: 100%;
    background-color: #fbfbfb;
    background-blend-mode: multiply;
    padding: 50px 0px;
    background-position: center;
}

.footer-logo {
    display: flex;
}

.footer-logo img {
    width: 80px;
    margin: 0px 0px 0px 0px;
}

.footer-co-description p {
    font-size: 15px;
    margin-top: 15px;
    line-height: 22px;

    text-align: justify;
}

.footer-links {
    padding-left: 20px;
}

.footer-title h4 {
    font-size: 22px;
    position: relative;
    display: inline;
}

.footer-title h4::after {
    position: absolute;
    width: 30%;
    content: "";
    height: 2px;
    background: linear-gradient(45deg, #938f2c, #262626);
    bottom: -4px;
    left: 0;
    transition: 0.4s ease-in, 0.4s ease-in;
}

.footer-links:hover .footer-title h4:after {
    width: 100%;
    background: linear-gradient(45deg, #262626, #938f2c);
}

.footer-links ul {
    padding-left: 0px;
    margin-top: 15px;
}

.footer-links ul li a {
    text-decoration: none;
    font-size: 15px;
    transition: 0.4s ease-in-out;
    line-height: 26px;
    font-weight: 600;
}

.footer-section p.footerNewsletter {
    font-weight: 600;
    margin: 13px 0px;
}

.footer-links ul li a:hover {
    color: #000e12;
}

.footer-links .address-sec li {
    margin-bottom: 5px;
}

.footer-links .address-sec li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.follow-us-on-text {
    margin-bottom: 5px;
    font-weight: 600;
}

.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;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 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 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: 600;
}

.footer-links .address-sec li a i {
    margin-right: 14px;
    color: #0048a5;
    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;
}



/* Go to Top */

#button {
    display: inline-block;
    background: linear-gradient(180deg, ##674f15, #00449f);
    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;
}




.innerBannerNav {
    min-height: 120px;
    background: linear-gradient(90deg, #002bff14, 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: 32px;
    color: #938f2c;
}

.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: #938f2c;
}

.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;
}

.contactUsMain {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.contactqueryForm .form-control {
    height: 45px;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
}

.contactqueryForm .form-control.textarea {
    height: auto;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
}

.contactqueryForm .form-control:focus {
    box-shadow: none;
    border-color: #004aa8cc;
}


.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;
}

.contactInfoWrapper {
    padding: 40px 30px;
}

.contactInfoWrapper .button1 a,
.contactInfoWrapper .button1 button {
    padding: 13px 22px;
    background: linear-gradient(180deg, #674f15, #938f2c);
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    border: none;
}

.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;
}

.searchPopBtn {
    display: none;
}


/* inner */
.innerBanner {
    padding-top: 0px;
    padding-bottom: 0px;
    background: linear-gradient(#ffffff7d, #ffffff6b), url(../img/bg/why-choose-bg.jpg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100%;
}

.innerBannerContent {
    display: flex;
    align-items: center;
    justify-content: left;
    height: 500px;
    padding-left: 4%;
    padding-top: 0px;

}

.inrbnrMain {
    height: fit-content;
    text-align: center;
}

.inrbnrMain h2 {
    font-size: 54px;
    font-weight: 600;
    color: #fff;
}

.inrbrnNav {
    display: flex;
    align-items: center;
    margin-top: 3px;
    justify-content: left;
}

.inrbrnNav li a {
    color: #ffffff;


}

.inrbrnNav li a i {
    font-size: 13px;
    margin-right: 3px;
    position: relative;
    top: -1px;
}

.inrbrnNav li {
    position: relative;
    border-right: 1px solid #4c4c4c;
    padding: 0px 10px;
}

.inrbrnNav li:last-child {
    border: none;
}

.inrbrnNav li:last-child a {
    color: #ff8b41;
    font-weight: 600;
}

.innerbnrextImg {
    width: 35%;
    position: absolute;
    right: 10%;
    bottom: 0px;
    top: 0px;
    height: fit-content;
    margin: auto;
}

.innerbnrextImg img {
    width: 100%;
    animation: upandDown 6s ease-in-out infinite alternate-reverse both;
}

.aboutUsBg {
    background-image: linear-gradient(90deg, #000000c2, transparent), url(../img/bg/aboutbg.jpg);
}


.aboutImg {
    border: 3px solid #fff;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 20px;
}

.contactInfoWrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contactInfoCard {
    margin-bottom: 20px;
    width: 45%;
}

.contactInfoCard h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.contactInfoCard h4 i {
    font-size: 16px;
    color: #938f2c;
    margin-right: 1px;
}

.normalText p {
    text-align: justify;
    margin-bottom: 16px;
}

.normalText h4 {
    margin: 26px 0px 8px;
    font-weight: 700;
    font-size: 26px;
}




/* inner Listings */
.prListingWrap {
    width: 100%;
    display: flex;
}

.productSideBar {
    width: 24%;
    margin-right: 20px;
    position: sticky;
    top: 100px;
}

.productMailListing {
    width: 76%;
}

.prcatAccordList {
    width: 100%;
}

.productSideBar .accordion-item {
    overflow: hidden;
}

.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: #938f2c;
}

.productSideBar .accordion-button {
    padding: 14px 20px;
    font-family: 'Lato', serif;
    font-weight: 600;
}

.productSideBar button:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}

.productSideBar .accordion-body {
    padding: 0px;
}

.productSideBar .accordion-button.JustaTitle {
    background: linear-gradient(180deg, #674f15, #938f2c);
    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;
}

.productSideBar .accordion {
    margin-bottom: 20px;
}

.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;
}

/* Product Details */
.tile {
    width: 100%;
    margin: 50px auto 0px;
}

#tile-1 .tab-pane {
    padding: 25px;
    padding: 20px;
    background: #fcfafd00;
    /* background: #fdfdfd; */
    background: #f5f8fb;
    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: 400px;
    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: #938f2c !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: #938f2c;
    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;
}

.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;
}

.ListSideBar {
    position: sticky;
    top: 110px;
}

.producOtherDetails .table {
    background: transparent;
}

.producOtherDetails .table th,
.producOtherDetails .table td {
    background: transparent;
}

.producOtherDetails .table th {
    border-right: 1px solid #ddd;
}

.producOtherDetails .table thead th {
    border-top: 1px solid #ddd;
    background: #938f2c;
    color: #fff;
}

.producOtherDetails .table thead th:last-child {
    border-right: none;
}

.ckeditor p {
    text-align: justify;
    margin-bottom: 10px;
}

.productDetailbnrTitle .inbnrNavTitle h2 {
    font-size: 22px;
}

.productDetailbnrTitle.innerBannerNav {
    min-height: 80px;
}

.productDetailbnrTitle .inbnrNavWrap {
    min-height: 80px;
}

.productDetailbnrTitle .inbnrNavWrap .row {
    min-height: 80px;
}

.commentReviewForm {
    padding: 20px 0px 20px 20px;
}

.commentReviewForm .formTitle {
    margin-bottom: 10px;
}

.commentReviewForm .form-control {
    border-radius: 30px;
    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;
}

.defaultBtn button,
.defaultBtn a {
    background: linear-gradient(180deg, #674f15, #938f2c);
    color: #ffff;
    border: none;
}

.defaultBtn button:hover,
.defaultBtn a:hover {
    background: #f6ffff;
    color: #938f2c;
    border: none;
}

.productTitle h2 {
    font-size: 28px;
    font-weight: 800;
}
.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: 800;
    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: #938f2c;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    border-radius: 30px;
    border: 1px solid #938f2c;
    transition: 0.4s ease;
}

.product-enquire-btn a:hover {
    background-color: #fff;
    color: #938f2c;
    border: 1px solid #938f2c;
    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: #938f2c;
    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: #938f2c;
    font-size: 15px;
    margin-right: 2px;
}

.productDetailMail {
    margin-left: 30px;
}

.proudctMainDescription {
    margin-top: 15px;
}

.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: #938f2c;
    font-weight: 600;
}

.productBrand h5 span {
    color: #938f2c;
}

.pr-quantity-title {
    margin-top: 15px;
}

.pr-quantity-title h4 {
    font-size: 18px;
    font-weight: 700;
    color: #252525
}
.blkodrtoptext {
    margin-bottom: 20px;
}
.blkodrtoptext > *{
    font-weight: 700;
}

.cartWrapper {
    margin-top: 40px;
}

.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: #938f2c;
    color: #fff;
}

.input-box {
    width: 38px;
    text-align: center;
    border: none;
    padding: 8px 10px;
    font-size: 16px;
    outline: none;
}

/* 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;
}

.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;
}

.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);
}

.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: #938f2c;
}

.pr-enquire-btn-style-2.cartCheckoutbtn a:first-child {
    width: 100%;
    background-color: #938f2c;
    color: #fff;
}

.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: #938f2c;
    color: #fff;
}

.normalheading h3 {
    font-size: 18px;
    position: relative;
    margin-bottom: 30px;
}

.normalheading h3::after {
    position: absolute;
    content: '';
    width: 61px;
    height: 2px;
    background: #010a42;
    bottom: -6px;
    left: 0px;
    right: 0px;
    /* margin: auto; */
}

.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: #938f2c;
}

.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;
}

/* Product Details end */

.partnerWithUsFormWrapper {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border: 1px solid #dddddd7a;
    border-radius: 20px;
    overflow: hidden;
    padding: 25px;
    background: #ffffff00;
    backdrop-filter: blur(5px);
}

.loginForm .right-sidebar-box {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background: #ffffff7d;
    backdrop-filter: blur(6px);
    background-color: #f8f8f800;
    border-radius: 6px;
    padding: 0px;
    max-width: 894px;
    margin: 0px auto;
    padding: 25px 30px;
    border-radius: 8px;
    border: 1px solid #dddddd4a;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    position: relative;
    left: -2px;
}

.loginForm .toggle-password {
    position: absolute;
    right: 10px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    height: fit-content;
}

.loginForm .form-control {
    height: 45px;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
}

.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: 8px;
    border-top-right-radius: 8px;
    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 .form-select:focus {
    box-shadow: none;
}

.right-sidebar-box .custom-form .form-select {
    border: 1px solid #dddddd80 !important;
    padding: 7px 14px;
    border-radius: 6px;
}

.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: 30px;
}

.right-sidebar-box .custom-form .custom-input textarea {
    height: 92px;
}

.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;
}

.captcha {
    padding: 0px;
    width: 177px;
    position: relative;
}

.captcha img {
    width: 100%;
    border-radius: 6px;
    border: 1px solid #dddddd80 !important;
}

.refreshcaptcha {
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin: auto;
    right: -29px;
    height: fit-content;
}

.submitandclear {
    display: flex;
    gap: 12px;
}

.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;
}

.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-color: #938f2c;
    border-color: #938f2c;
    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;
}

.userMainContentWrapper {
    overflow: visible;
    padding: 30px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    position: relative;
    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;
}


/* ProgressBar */
.productSelectorSec {
    background: linear-gradient(#0000009c, #000000a3), url(../img/bg/product-selector-bg.jpg);
    background-size: 100% 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.productSelectorSec >* {
    color: #fff;
}
.productSelectorSec * {
    color: #fff;
}
.productSelectorWrapper  {
    max-width: 700px;
    width: 100%;
    margin: 0px auto;
   
}
.productSelectorWrapperContainer {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 20px;
    overflow: hidden;
    background: #00000042;
    backdrop-filter: blur(5px);
}
.productSelectorWrapperContainer .title h4{
    margin: 0px;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 30px;
    text-align: center;
    margin-top: 20px;
}

.prslStatusbar.progress-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 100%;
    width: 100%;
}

.prslStatusbar.progress-container::before {
    content: '';
    background-color: #fff;
    position: absolute;
    top: 18px;
    height: 4px;
    width: 100%;
    z-index: 1;
    left: 0px;
    right: 0px;
    margin: auto;
    border-radius: 20px;
}

.prslStatusbar .progress {
    background-color: #06af00;
    position: absolute;
    top: 18px;
    left: 0px;
    height: 4px;
    max-width: 100%;
    width: 0%;
    z-index: 2;
    border-radius: 20px;
    transition: width 0.4s ease;
}

.prslStatusbar .text-wrap {
    display: inline-block;
    text-align: center;
    width: 10%;
}

.prslStatusbar .text-wrap p {
    font-weight: 400;
    font-size: 12px;
    color: #111;
}

.prslStatusbar .text-wrap.active p {
    font-weight: 500;
    color: #111;
}

.prslStatusbar .circle {
    background-color: #dfd;
    border: 3px solid #111;
    color: #111;
    font-weight: 600;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
}

.prslStatusbar .text-wrap.active div.circle {
    border-color: #938f2c;
    color: #000;
}

.prslStatusbar .btn {
    background-color: #000;
    color: white;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    font-family: inherit;
    padding: 10px 30px;
    margin: 5px;
    font-size: 14px;
}

.prslStatusbar .btn:active {
    transform: scale(0.98);
}

.prslStatusbar .btn:focus {
    outline: 0;
}

.prslStatusbar .btn:disabled {
    background-color: #eee;
    cursor: not-allowed;
    color: #000;
}

.percentageInfo {
    text-align: center;
    margin-top: 40px;
}
.prslBox {
    width: 100%;
}
.prslBox {
    width: 100%;
    max-height: 374px;
    overflow-y: scroll;
    overflow-x: hidden;

}
.familySelector  {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    padding: 20px;
  
}
.familySelector::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.068);
    background-color: #F5F5F5;
}

.familySelector::-webkit-scrollbar {
    width: 4px;
    background-color: #F5F5F5;
    transition: all 0.4s ease-in-out;
}

.familySelector::-webkit-scrollbar-thumb {
    background-color: #858585;
    border: 1px solid #858585;
}
.familySelector .form-check  {
    width: 48%;
    padding: 20px;
    box-shadow: rgb(0 0 0 / 7%) 0px 4px 12px;
    text-align: center;
    position: relative;
    border-radius: 20px;
    border: 1px solid #a1a1a142;
    overflow: hidden;
    margin-bottom: 20px;
    cursor: pointer;
}

.famslIcon {
    width:45%;
    margin: 0px auto;

}

.famslIcon img {
    width: 100%;
}
.familySelector .form-check .form-check-input {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    background: none;
    border: none;
    border-radius: 20px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: 0.4s ease-in-out;
}
.familySelector .form-check .form-check-input:hover {
    border: 1px solid #ffffff;
    background: #ffffff14;
}
.familySelector .form-check-input:checked {
    border: 1px solid #ffffff;
    box-shadow: none;
    background: #ffffff14;
}
.prslstepsBtnSec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 25px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.prslstepsBtnSec button {
    border: none;
    outline: none;
}
.prslstepsBtnSec .slbackBtn button {
    background: none;
    border: none;
    outline: none;
}
.prslstepsBtnSec button:focus{
    box-shadow: none;
}
.prslStatusbarContainer {
    padding: 20px 0px;
}
.sectionTitle.light *{
    color: #fff;
}
.sectionTitle.light::after{
    background: #ffffff;
}
.familySelector .famslForm {

}
.familySelector .famslForm .form-check {
    width: 100%;
    border: none;
    text-align: left;
    padding: 0px;
}
.familySelector .famslForm .form-check .form-check-input {
    width: 25px;
    height: 25px;
    position: unset;
    background: initial;
    border: 1px solid #dfdd;
    border-radius: initial;
    border-radius: 100%;
    margin-right: 10px;
}
.familySelector .famslForm .form-check-input:checked {
    
}
.familySelector .famslForm .form-check-input:checked {
    background: url('data:image/svg+xml,%3csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 20 20\'%3e%3cpath fill=\'none\' stroke=\'%23fff\' stroke-linecap=\'round\' stroke-linejoin=\'round\' stroke-width=\'3\' d=\'m6 10 3 3 6-6\'/%3e%3c/svg%3e');
    background-position: center;
    background-size: 20px;
    background-repeat: no-repeat;
}
.familySelector .famslForm.contactqueryForm .form-control {
    background: #ffffff42;
    border: 1px solid #dddddd52;
    color: #ffff;
}
.familySelector .famslForm.contactqueryForm .form-control::placeholder {
    color: #e0e0e0;
}
.bulkOrderForm .form-group {
    display: flex;
    align-items: center;
    gap: 15px;
}
.contactqueryForm.bulkOrderForm .form-group .bulkLabel {
    width: 18%;
    text-align: right;
}
.contactqueryForm.bulkOrderForm .form-group .bulkInput {
    width: 82%;
}
.contactqueryForm.bulkOrderForm .form-group .bulkInput.qty-counter {
    justify-content: flex-start;
    border: 1px solid #dddd;
    width: fit-content;
    border-radius: 40px;
    margin: 0px;
    height: 44px;
}
.deleteProduct {
    position: absolute;
    bottom: 28px;
    left: 40%;
    width: fit-content;
}
.bulkOrderForm .form-check .form-check-input{
    margin: 0px;
}
.bulkOrderForm .form-check {
    min-height: unset;
    padding: 0px;
    margin: 0px;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 6px;
}

.contactqueryForm.bulkOrderForm .form-group .bulkInput.radioInput {
    display: flex;
    align-items: center;
    gap: 30px;
}
.contactqueryForm .form-select  {
    height: 45px;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
}
.contactqueryForm .form-select:focus {
    box-shadow: none;
    border-color: #938f2c;
}
.captcha-img {
    width: 153px;
    border-radius: 30px;
    border: none;
    padding: 8px;
}
.captcha-img img{
    width: 100%;
}
.contactInfoWrapper .contactqueryForm.bulkOrderForm .button1 a, .contactInfoWrapper .contactqueryForm.bulkOrderForm .button1 button {
    padding: 11px 21px;
}
.input-group.captchaInput input {
    border-top-left-radius: 30px !important;
    border-bottom-left-radius: 30px !important;
}




.wrapper.priceRange {
    width: 100%;
    padding: 15px;
}
.wrapper.priceRange header h2 {
    font-size: 24px;
    font-weight: 600;
}

.wrapper.priceRange header p {
    margin-top: 5px;
    font-size: 16px;
}

.wrapper.priceRange .price-input {
    width: 100%;
    display: flex;
    margin: 0px 0px 20px;
}

.wrapper.priceRange .price-input .field {
    display: flex;
    width: 100%;
    height: 35px;
    align-items: center;
}

.wrapper.priceRange .field input {
    outline: none;
    font-size: 16px;
    margin-left: 6px;
    border-radius: 5px;
    text-align: left;
    border: none;
    -moz-appearance: textfield;
    width: 56%;
}

.wrapper.priceRange input[type="number"]::-webkit-outer-spin-button,
.wrapper.priceRange input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.wrapper.priceRange .price-input .separator {
    width: 52px;
    display: flex;
    font-size: 19px;
    align-items: center;
    justify-content: center;
}

.wrapper.priceRange .priceSlider {
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}

/* .wrapper.priceRange .priceSlider .progress {
    height: 100%;
    left: 25%;
    right: 25%;
    position: absolute;
    border-radius: 5px;
    background: #17a2b8;
} */
.wrapper.priceRange .priceSlider .progress {
    height: 100%;
    left: 0%;
    right: 0%;
    position: absolute;
    border-radius: 5px;
    background: #17a2b8;
}

.wrapper.priceRange .range-input {
    position: relative;
}

.wrapper.priceRange .range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: #17a2b8;
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

input[type="range"]::-moz-range-thumb {
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: #17a2b8;
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}







.blogWrapper .quickTutorText .tutorName {
    margin: 0px;
    margin-bottom: 7px;
}


.newsWrapper {
    margin-top: 40px;
}

.newsCard {
    padding: 10px;
}

.newsImg {
    border-radius: 10px;
    overflow: hidden;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.newsImg img {
    width: 100%;
}

.newsContent {
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 0px;
    width: 100%;
    padding: 13px 10px;
    / margin-top: -50px; /
    position: relative;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    text-align: center;
}

.newsContent h4 {
    font-size: 15px;
    font-weight: 600;
    color: #232a47;
    margin: 10px 0px;
    text-align: center;
    line-height: 20px;
}

.newsDate ul {
    display: flex;
    justify-content: space-between;
    width: 98%;
    margin: auto;
    padding: 6px 10px;
    background: #ffffff;
    border-radius: 5px;
    margin-top: -33px;
}

.newsDate ul li {
    display: flex;
    align-items: center;
}

.newsDate ul li i {
    color: #232a47;
    font-size: 13px;
    margin-right: 7px;
}

.newsDate ul li p {
    font-size: 14px;
}
.blogImg {
    width: 100%;
}
.blogImg img{
    width: 100%;
}
.blogDetailWrap .newsDate ul {
    margin-top: 10px;
    margin-bottom: 20px;
}

.blogSideWrap {
    position: sticky;
    top:85px;
}
.blogSideWrap .newsCard {
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
    border-bottom: 1px dashed #ddd;
}
.blogSideWrap .newsContent {
    background: transparent;
    box-shadow: none;
    width: 70%;
    text-align: left;
    padding: 6px 12px;
}
.blogSideWrap .newsDate ul {
    background: transparent;
    display: none;
}

.blogSideWrap .newsImg {
    width: 42%;
    border-radius: 10px;
}
.blogSideWrap .newsImg img{
    width: 100%;
}
.blogSideWrap .newsContent h4 {
    margin: 0px;
    text-align: left;
}
.blogSideWrap .newsContent p {
    margin: 0px;
    text-align: left;
}
.ckeditorContent p{
    text-align: justify;
    margin-bottom: 8px;

}
@media only screen and (max-width:1326px) and (min-width: 1025px) {
    .searchbar .seachInput {
        width: 400px;
    }

    .mainHeaderNav ul li a {
        font-size: 14px;
    }

    .hero-style {
        height: 315px;
    }

    .journalImg {
        width: 110px;
        height: 110px;
    }

    .journalContent h4 {
        font-size: 14px;
    }

    .featured-swiper-container2 .swiper-button-prev {
        left: 44%;
    }

    .featured-swiper-container2 .swiper-button-next {
        right: 44%;
    }

    .productSlider.owl-carousel .owl-nav .owl-prev {
        left: 44%;
    }

    .productSlider.owl-carousel .owl-nav .owl-next {
        right: 44%;
    }

    .dropDownMenu {
        max-width: 648px;
        min-height: 369px;
        min-width: 100%;
    }

    .dropDownCard {
        padding: 6px;
    }

    .dropDownImg {
        width: 30px;
    }

    .dropDownCol {
        width: 33.33%;
    }
}

@media only screen and (max-width:1024px) and (min-width: 769px) {
    .searchbar .seachInput.searchCity {
        width: 140px;
    }

    .searchbar .seachInput {
        width: 250px;
    }

    .mainHeaderNav ul li {
        margin: 0px 0px 0px 8px;
    }

    .mainHeaderNav ul li a {
        font-size: 10px;
        padding: 10px;
    }

    .hero-style {
        height: 225px;
    }

    .productSlideWrapper .journelCards {
        padding: 10px;
    }

    .journalImg {
        width: 110px;
        height: 110px;
    }

    .journalContent h4 {
        font-size: 14px;
    }

    .featured-swiper-container2 .swiper-button-prev {
        left: 44%;
    }

    .featured-swiper-container2 .swiper-button-next {
        right: 44%;
    }

    .productSlider.owl-carousel .owl-nav .owl-prev {
        left: 44%;
    }

    .productSlider.owl-carousel .owl-nav .owl-next {
        right: 44%;
    }

    .counter-wrapper .common-box .timer {
        font-size: 30px;
    }

    .counter-wrapper .common-box span {
        font-size: 30px;
    }

    .counter-wrapper .common-box .counter-text {
        font-size: 14px;
    }

    .topPrListTitle h4 {
        font-size: 13px;
    }

    .topListContentText h4 {
        font-size: 14px;
    }

    .topListContentText h4 {
        padding: 10px 8px;
    }

    .fCardContent h4 {
        font-size: 12px;
    }

    .blogContent {
        padding: 0px 13px;
        margin-top: 14px;
    }

    .dateAuthor span {
        font-size: 10px;
        font-weight: 600;
    }

    .dateAuthor span {
        font-size: 10px;
        font-weight: 600;
    }

    .blogContent h4 {
        font-size: 13px;
        font-weight: 700;
    }

    .blogContent h4 {
        font-size: 13px;
        font-weight: 700;
    }

    .footer-title h4 {
        font-size: 16px;
    }

    .footer-links ul li a {
        text-decoration: none;
        font-size: 10px;
        transition: 0.4s ease-in-out;
        line-height: 14px;
        font-weight: 600;
    }

    .footer-section p.footerNewsletter {
        font-size: 10px;
        line-height: 15px;
    }

    .dropDownMenu {
        max-width: 518px;
        min-height: 289px;
        min-width: 100%;
    }

    .dropDownCard {
        padding: 6px;
    }

    .dropDownImg {
        width: 30px;
    }

    .dropDownCol {
        width: 33.33%;
    }

    .browseCateMenus {
        width: 180px;
    }

    .mainHeaderNav ul li .browseCateMenus>li>a {
        padding: 5px 10px;
    }

    .mainHeaderNav ul li .browseCateMenus>li>a:hover {
        padding: 5px 10px;
    }

    .mainHeaderNav ul li .browseCateMenus>li>a::after {
        font-size: 11px;
        top: 10px;
    }

    .dropDownName h4 {
        font-size: 13px;
        font-weight: 700;
    }
}

@media screen and (max-width:768px) {
    .headerMain {
        position: fixed;
        top: 128px;
        display: none;
        z-index: 2;
        width: 100%;
        height: 100vh;
    }

    .searchbar .seachInput {
        width: 100%;
    }

    .logoSection {
        width: 80px;
    }

    .hamburger {
        display: block;
        margin-left: 16px;
        position: absolute;
        right: 3%;
    }

    .searchbar .searchButton {
        background: none;
        color: #111111;
        padding: 10px;
        top: auto;
        right: 30px;
        bottom: 21px;
    }

    .searchbarWrapper .suggestions {
        width: 94%;
        left: 0px;
        right: 0px;
        margin: auto;
        top: 65px;
    }

    .quickSearchMob {
        display: block
    }

    .searchbar {
        position: fixed;
        top: 128px;
        z-index: 2;
        width: 90%;
        left: 0px;
        right: 0px;
        margin: auto;
        background: #fff;
        border-radius: 11px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        padding: 20px;
    }

    .searchbar .seachInput.searchCity {
        width: 100%;
        border-bottom-right-radius: 30px;
        border-top-right-radius: 30px;
        cursor: pointer;
        margin: 15px 0px;
        margin-top: 0px;
    }

    .searchbar .seachInput.searchPr {
        border-bottom-left-radius: 30px;
        border-top-left-radius: 30px;
    }

    .advanceSearch {
        position: unset;
    }

    .searchbarWrapper {
        text-align: center;
    }

    .quickSearchMob i {
        font-size: 14px;
        margin-right: 5px;
    }

    .quickSearchMob a {
        font-weight: 700;
        position: relative;
    }

    .mainHeaderNav ul {
        flex-direction: column;
    }

    .mainHeaderNav ul li {
        width: 100%;
        margin: 0px;
    }

    .mainHeaderNav ul li.hasMegaMenu {
        position: relative;
    }

    .mainHeaderNav ul li a {
        display: block;
        border-bottom: 1px solid #dddddd2b;
    }

    .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;
        left: unset;
        right: unset;

    }

    .mainHeaderNav ul li.hasMegaMenu .dropDownMenu {
        top: 100%;
        visibility: visible;
        opacity: 1;
        display: none;
        transition: initial;
        position: relative;
        background: #938f2c;
        border: none;
        max-width: 100%;
        min-height: 240px;
        max-height: 340px;
        min-width: 100%;
        border-radius: 0px;
        transition: unset;
    }

    .dropDownName h4 {
        color: #fff;
    }

    .mainHeaderNav ul li.hasMegaMenu i.active {
        color: #ffffff;
        transform: rotate(180deg);
    }

    .dropDownCard {
        margin: 0px;
        padding: 8px;
        padding-left: 49px;
    }

    .dropDownMenuRow {
        flex-direction: column;
        padding: 0px;
    }

    .mainHeaderNav ul li .browseCateMenus>li>a::after {
        color: #fff;
    }

    .dropDownImg {
        width: 23px;
    }

    .dropDownCol {
        width: 100%;
    }

    .mainHeaderNav ul li a.active,
    .mainHeaderNav ul li a:hover {
        background: unset;
        color: #ffffff;
    }

    .mainHeaderNav ul li.hasMegaMenu:hover i {
        color: #ffff;
    }

    .hero-style {
        height: 126px;
    }

    .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;
    }

    .headsearchbtn i {
        font-size: 18px;
        color: #ff8b3f;
    }

    .middleHeaderWrap {
        justify-content: unset;
        gap: 27%;
    }

    .searchPopBtn {
        display: block;
    }

    .searchbar {
        display: none;
    }

    .mainHeaderNav {
        flex-direction: column;
    }

    .mainHeaderNav ul li a::after {
        height: 2px;
        background: #ffffffba;
    }

    .hasmenu>li:hover .browseCateMenus {
        visibility: unset;
        opacity: unset;
        top: unset;
        z-index: unset;
    }

    .browseCateMenus {
        visibility: unset;
        opacity: unset;
        position: unset;
        transition: 0.4s ease-in-out;
        flex-direction: unset;
        background: #938f2c;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        border-radius: 0px;
        width: 100%;
        display: none;
    }

    .mainHeaderNav ul .browseCateMenus {
        display: none;
        transition: unset;
    }

    .browseCateMenus>li>a img {
        filter: brightness(5) invert(1);
    }

    .browseCateMenus>li>a span {
        color: #fff;
    }

    .hasmenu>li:first-child {
        position: relative;
    }

    .hasmenu>li:first-child::after {
        position: absolute;
        content: '\f105';
        font-size: 15px;
        font-family: 'FontAwesome';
        right: 12px;
        width: 10px;
        height: 10px;
        background: none;
        left: auto;
        top: 14px;
        transform: rotate(90deg);
        color: #Fff;

    }
}

@media only screen and (max-width:768px) and (min-width:481px) {
    .hero-style {
        height: 206px;
    }

    .topHeadContact ol li a {
        font-size: 12px;
    }

    .middleHeaderWrap {
        justify-content: unset;
        gap: 12%;
    }

    .headOtherButtons {
        margin-right: 30px;
    }

    .middleHeaderWrap {
        justify-content: unset;
        gap: 12%;
    }

    .journalImg {
        height: 120px;
        width: 120px;
    }

    .journalContent h4 {
        font-size: 14px;
    }

    .twoFeatureCard {
        margin-bottom: 20px;
    }

    .featured-swiper-container2 .swiper-button-next {
        right: 36%;
    }

    .featured-swiper-container2 .swiper-button-prev {
        left: 36%;
    }

    .journelCards {
        min-height: auto;
    }

    .productSlider.owl-carousel .owl-nav .owl-next {
        right: 36%;
    }

    .productSlider.owl-carousel .owl-nav .owl-prev {
        left: 36%;
    }

    .productSlideWrapper .journelCards {
        margin-bottom: 30px;
        padding: 10px;
    }

    .aboutFirstTile {
        margin-top: 40px;
    }

    .aboutFourthTile {
        margin-top: 40px;
    }

    .aboutSerImg {
        margin-top: 40px;
    }

    .aboutUsContenWrap {
        display: flex;
        flex-direction: column-reverse;
        gap: 6px;
    }

    .topPrListCard {
        margin-bottom: 30px;
    }
}



@media only screen and (max-width:480px) and (min-width:200px) {
    .topHeadContact ol li {
        display: flex;
        align-items: center;
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .hero-style {
        height: 146px;
    }

    .topHeadContact ol li a {
        font-size: 12px;
        line-height: normal;
    }

    .headsearchbtn i {
        font-size: 13px;
        color: #ff8b3f;
    }

    .headsearchbtn p {
        font-size: 12px;
        line-height: normal;
    }

    .headOtherButtons p {
        font-size: 12px;
        line-height: normal;
    }

    .headOtherButtons ul li a i {
        font-size: 13px;
        color: #ff8b3f;
    }

    .middleHeaderWrap {
        justify-content: unset;
        gap: 7%;
    }

    .headOtherButtons {
        margin-right: 30px;
    }

    .middleHeaderWrap {
        justify-content: unset;
        gap: 10%;
    }

    .journalImg {
        height: 120px;
        width: 120px;
    }

    .journalContent h4 {
        font-size: 14px;
    }

    .headOtherButtons ul li a {
        padding: 10px 8px;
    }

    .twoFeatureCard {
        margin-bottom: 20px;
    }

    .featured-swiper-container2 .swiper-button-next {
        right: 36%;
    }

    .featured-swiper-container2 .swiper-button-prev {
        left: 36%;
    }

    .journelCards {
        min-height: auto;
    }

    .productSlider.owl-carousel .owl-nav .owl-next {
        right: 36%;
    }

    .productSlider.owl-carousel .owl-nav .owl-prev {
        left: 36%;
    }

    .productSlideWrapper .journelCards {
        margin-bottom: 30px;
        padding: 10px;
    }

    .aboutFirstTile {
        margin-top: 40px;
    }

    .aboutFourthTile {
        margin-top: 40px;
    }

    .aboutSerImg {
        margin-top: 40px;
    }

    .aboutUsContenWrap {
        display: flex;
        flex-direction: column-reverse;
        gap: 6px;
    }

    .topPrListCard {
        margin-bottom: 30px;
    }

    .twoFeatureTitle h4 {
        font-size: 18px;
    }

    .twoFeatureTitle h5 {
        font-size: 14px;
    }

    .twoFeatureTitle h5 span {
        font-size: 18px;
    }

    .btnAdvanceSearch a {
        padding: 5px 15px;
        font-size: 14px;
    }
}

