@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.eot');
    src: url('../fonts/Montserrat-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat-Medium.woff2') format('woff2'),
        url('../fonts/Montserrat-Medium.woff') format('woff'),
        url('../fonts/Montserrat-Medium.ttf') format('truetype'),
        url('../fonts/Montserrat-Medium.svg#Montserrat-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-ExtraBold.eot');
    src: url('../fonts/Montserrat-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Montserrat-ExtraBold.woff2') format('woff2'),
        url('../fonts/Montserrat-ExtraBold.woff') format('woff'),
        url('../fonts/Montserrat-ExtraBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'LEMON MILK';
    src: url('../fonts/LEMONMILK-MediumItalic.eot');
    src: url('../fonts/LEMONMILK-MediumItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/LEMONMILK-MediumItalic.woff2') format('woff2'),
        url('../fonts/LEMONMILK-MediumItalic.woff') format('woff'),
        url('../fonts/LEMONMILK-MediumItalic.ttf') format('truetype'),
        url('../fonts/LEMONMILK-MediumItalic.svg#LEMONMILK-MediumItalic') format('svg');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'LEMON MILK';
    src: url('../fonts/LEMONMILK-RegularItalic.eot');
    src: url('../fonts/LEMONMILK-RegularItalic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/LEMONMILK-RegularItalic.woff2') format('woff2'),
        url('../fonts/LEMONMILK-RegularItalic.woff') format('woff'),
        url('../fonts/LEMONMILK-RegularItalic.ttf') format('truetype'),
        url('../fonts/LEMONMILK-RegularItalic.svg#LEMONMILK-RegularItalic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'LEMON MILK';
    src: url('../fonts/LEMONMILK-Regular.eot');
    src: url('../fonts/LEMONMILK-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/LEMONMILK-Regular.woff2') format('woff2'),
        url('../fonts/LEMONMILK-Regular.woff') format('woff'),
        url('../fonts/LEMONMILK-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'LEMON MILK';
    src: url('../fonts/LEMONMILK-Medium.eot');
    src: url('../fonts/LEMONMILK-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/LEMONMILK-Medium.woff2') format('woff2'),
        url('../fonts/LEMONMILK-Medium.woff') format('woff'),
        url('../fonts/LEMONMILK-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
:root {
    --primaryColor: #ec1e28;
    --primaryHoverColor: #b30c14;
    --secondaryColor: #abd478;
    --blackColor: #000000;
    --darkColor: #28272F;
    --darkColor2: #333333;
    --whiteColor: #FFFFFF;
    --lightColor : #F2F2F2;
    --grayColor: #CBCBCB;
    --baseFont: 'Montserrat';
    --lemonMilk: 'LEMON MILK';
}
html, body {
    scroll-behavior: smooth;
        overflow-x: hidden;
}
body {
    color: var(--blackColor);
    font-family: var(--baseFont);
    font-weight: normal;
    font-size: 14px;
    overflow-x: hidden;
}
img {
    max-width: 100%;
}
ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
a, a:hover {
    text-decoration: none;
    color: inherit;
}
a, .btn {
    -webkit-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    transition: all 500ms ease-in-out 0s;
}
a:hover, a:focus, .btn:focus {
    text-decoration: none;
    outline: none;
}
:focus, .form-control:focus, .btn:focus, button, button:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}


/*************************/

.btn_primary {
    background-color: var(--primaryColor);
    font-size: 20px;
    color: var(--whiteColor);
    font-family: var(--lemonMilk);
    font-weight: 500;
    font-style: italic;
    border: 0;
    border-radius: 0;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
    padding: 8px 25px;
    position: relative;
}
.btn_primary:hover {
    background-color: var(--primaryHoverColor);
    color: var(--whiteColor);
    clip-path: polygon(0 0, 100% 0, 100% 88%, 100% 100%, 0 100%, 0 12%);
}
.btn_primary:before {
    content: "";
    position: absolute;
    left: 20%;
    right: 20%;
    border-radius: 8px;
    top: 0;
    bottom: 0;
    opacity: 0;
    z-index: -1;
    border-radius: 0;
    background: var(--primaryHoverColor);
    -webkit-transition: all 300ms ease-in-out 0s;
    -moz-transition: all 300ms ease-in-out 0s;
    -ms-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.btn_primary:hover:before {
    left: 0%;
    right: 0%;
    opacity: 1;
}
.headerTopCol {
    background-color: var(--blackColor);
    padding: 12px 0;
    text-align: center;
}
.headerTopLinks > ul {
    display: flex;
    flex-wrap: wrap;
}
.headerTopLinks > ul > li {
    color: var(--whiteColor);
    font-size: 17px;
    flex: 1 1 auto;
    text-align: center;
    padding: 0 15px;
    opacity: 0.8;
    -webkit-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    transition: all 500ms ease-in-out 0s;
}
.headerTopLinks > ul > li:hover {
    opacity: 1;
}
.headerSection {
    position: fixed;
    left: 0;
    right: 0;
    top: 49px;
    background-color: var(--whiteColor);
    padding: 15px 0 0;
    -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
    z-index: 3;
}
.headerSection.stickyHeader {
    top: 0;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgb(0 0 0 / 9%);
}
.toggle {
    width: 45px;
    height: 30px;
    position: relative;
    margin-left: auto;
    cursor: pointer;
    display: block;
}
.bar {
    width: 100%;
    height: 5px;
    position: absolute;
    background-color: var(--blackColor);
    z-index: 1;
    -webkit-transition: all 500ms ease-in-out 0s;
    -o-transition: all 500ms ease-in-out 0s;
    transition: all 500ms ease-in-out 0s;
    top: 12px;
}
.bar:nth-child(1) {
  top: 0px;
}
.bar:nth-child(3) {
    top: 24px;
}
.navCol {
    padding: 20px;
}
.navCol > ul > li {
    display: block;
}
.navCol > ul > li + li {
    margin-top: 18px;
}
.navCol > ul > li > a {
    font-size: 18px;
    color: var(--darkColor2);
    position: relative;
}
.navCol > ul > li > a:hover {
    color: var(--primaryColor);
}
.navCol > ul > li > a::before {
    content: "";
    left: 50%;
    right: 50%;
    position: absolute;
    bottom: 0;
    border-bottom: 2px solid var(--primaryColor);
        -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.navCol > ul > li > a:hover::before {
    left: 0;
    right: 0;
}
.menuCol {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    background-color: var(--whiteColor);
    z-index: 99;
    width: 350px;
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
    border-top: 1px solid rgba(38, 38, 38, 0.5);
    border-bottom: 1px solid rgba(38, 38, 38, 0.5);
    padding: 60px 20px 20px;
    -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.actNav .menuCol {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
.menuCloseIcon {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}
.menuCloseIcon > img {
    min-width: 20px;
}
body.actNav {
    overflow: hidden;
}
.menuBackDrop {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
    z-index: 9;
}
.actNav .menuBackDrop, .actCart .menuBackDrop {
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
}
/*  .actNav .bar:nth-child(1) {
transform: rotate(135deg);
top: 8px;
}
.actNav .bar:nth-child(2) {
transform: translate(-100%, 0);
opacity: 0;
}
.actNav .bar:nth-child(3) {
transform: rotate(-135deg);
top: 8px;
width: 100%;
}*/
.toggle::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9;
}
.headerLeftOptions, .headerRightOptions {
    width: 350px;
}
  .headerLeftOptions > ul > li, .headerRightOptions > ul > li  {
    display: inline-block;
    vertical-align: middle;
}
.headerLeftOptions > ul > li > a {
    font-size: 18px;
    font-family: var(--lemonMilk);
    font-weight: normal;
    font-style: italic;
    position: relative;
}
.stickyHeader .headerLeftOptions > ul > li > a {
    font-size: 16px;
}
.headerLeftOptions > ul > li > a:hover {
    color: var(--primaryColor);
}
.headerLeftOptions > ul > li > a::before, .footerLinks > ul > li > a::before {
    content: "";
    left: 50%;
    right: 50%;
    position: absolute;
    bottom: 0;
    border-bottom: 2px solid var(--primaryColor);
}
.headerLeftOptions > ul > li > a.toggle::before {
    display: none;
}
.headerLeftOptions > ul > li > a:hover::before, .footerLinks > ul > li > a:hover::before {
    left: 0;
    right: 0;
}
.headerLeftOptions > ul > li + li, .headerRightOptions > ul > li + li {
    margin-left: 35px;
}
.logo {
    width: 250px;
    margin: 0 auto;
}
.stickyHeader .logo {
    width: 140px;
}
.cartCol > a {
    width: 40px;
    display: block;
    position: relative;
}
.stickyHeader .cartCol > a {
    width: 30px;
}
.cartCol > a::before {
    content: "5";
    background-color: var(--secondaryColor);
    width: 20px;
    height: 20px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: -12px;
    top: -6px;
    font-size: 12px;
    line-height: 2;
}
.stickyHeader .cartCol > a::before {
    width: 16px;
    height: 16px;
    font-size: 10px;
}
.headerRightOptions > ul > li > img {
    max-width: 230px;
}
.headerRightOptions {
    text-align: right;
}
.stickyHeader .headerRightOptions > ul > li > img {
    max-width: 180px;
}
.logo, .headerLeftOptions > ul > li > a, .headerLeftOptions > ul > li > a::before, 
.headerRightOptions > ul > li > img, .cartCol > a::before, .footerLinks > ul > li > a::before {
    -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.stickyHeader .bar {
    height: 4px;
}
.shippingCol {
    text-align: center;
    position: relative;
    max-width: 200px;
    margin-right: 30px;
}
.shippingCol > h4 {
    font-size: 11px;
    text-transform: uppercase;
    font-family: var(--lemonMilk);
    font-weight: 500;
    text-align: left;
    border: 1px  solid;
    border-radius: 8px;
    padding: 5px 10px;
    margin: 0;
    background-color: var(--whiteColor);
    z-index: -2;
}
.shippingCol > span {
    display: block;
    font-size: 10px;
    padding-top: 5px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}
.shippingCol > span.shippingMapImg {
    position: absolute;
    right: -30px;
    top: -10px;
    bottom: 0;
    width: 75px;
    height: 75px;
    background-color: var(--whiteColor);
    border-radius: 50%;
    z-index: 1;
}
.shippingMapImg > img {
    width: 62px;
}

.cartSideBarCol {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    background-color: var(--whiteColor);
    z-index: 99;
    width: 420px;
    -webkit-transform: translateX(200%);
    -ms-transform: translateX(200%);
    transform: translateX(200%);
    border-top: 1px solid rgba(38, 38, 38, 0.5);
    border-bottom: 1px solid rgba(38, 38, 38, 0.5);
    padding: 0 15px;
    -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.actCart .cartSideBarCol {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
.menuCloseIcon {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}
.menuCloseIcon > img {
    min-width: 20px;
}
.cartTitle > h2 {
    font-size: 26px;
    margin: 0;
}
.cartHeader {
    padding: 15px 0;
}
.cartProCol {
    border-bottom: 1px solid var(--grayColor);
    padding: 10px 0;
    margin-top: 10px;
}
.cartProText > h4, .cartPriceText > h4 {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--darkColor2);
}
.cartPriceText, .prTotalPrice {
    width: 65px;
    text-align: end;
}
.prCardImg {
    width: 105px;
    height: 105px;
}
.prCardImg > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.proCardText > h3 {
    font-size: 18px;
    margin: 0;
    padding-bottom: 5px;
}
.proCardText > span {
    color: var(--darkColor2);
    display: block;
    font-size: 14px;
    padding-bottom: 4px;
}
.quantityField {
    border-radius: 50px;
    padding: 10px 15px;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    width: 138px;
    height: 48px;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.2);
}
.ProductListingSection{
    margin: 50px 0;
}
.qtyBtn {
    margin: 0px;
    width: 26px;
    height: 26px;
    background: var(--bs-white);
    outline: none;
    cursor: pointer;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    border: 0;
}
.qty {
    width: calc(100% - 56px);
    text-align: center;
    padding: 4px;
    font-weight: 500;
    line-height: 1;
}
.prTotalPrice > h3 {
    font-size: 15px;
}
.cartInner {
    padding-top: 25px;
    height: calc(100vh - 250px);
    overflow-y: auto;
}
.deleteIcon {
    width: 15px;
}
.cartCloseIcon > img {
    width: 16px;
    cursor: pointer;
}
.cartFooter {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px;
    background-color: var(--whiteColor);
}
.footerLeftText > h3 {
    font-size: 22px;
    margin: 0;
}
.footerRight  > h3 {
    font-size: 16px;
}
.cartFooter > p {
    color: var(--darkColor2);
    display: block;
    font-size: 14px;
    padding-top: 10px;
}
.cartBtn .btn_primary {
    width: 100%;
    font-size: 15px;
    clip-path: polygon(5% 0, 100% 0, 100% 70%, 95% 100%, 0 100%, 0 30%);
}









.blackbgImg{
    position: relative;
}
.blackImgText {
    position: absolute;
    color: #fff;
    bottom: 40%;
    left: 15%;
    text-align: center;
}
.blackImgText h2{
    font-family: var(--lemonMilk);
    font-size: 45px;
    font-weight: 500;
    font-style: italic;
}
.blackImgText i{
    font-size: 64px;
}


.blackImgTwoText {
    position: absolute;
    color: #fff;
    bottom: 30%;
    left: 18%;
    text-align: center;
}
.blackImgTwoText h2{
    font-family: var(--lemonMilk);
    font-size: 28px;
    font-weight: 500;
    font-style: italic;
}
.blackImgTwoText i{
    font-size: 40px;
}
.categoryPrice > div{
    display: flex;
    justify-content: center;
    position: relative;
}
.categoryPrice > div > h6{
    padding: 0 5px;
}
.categoryCardBody{
    text-align-last: center;
    padding-top: 10px;
    margin-bottom: 20px;
}

.offerRed{
    position: absolute;
    left: 40%;
    bottom: 40%;
}
.offerRed label{
    border: 1px solid #ec1f28;
    width: 30px;
    rotate: 145deg;
}
.blackImgSize img {
    height: 100%;
}
.categoryNameStyle h5{
    font-family: var(--lemonMilk);
    font-size: 28px;
    font-weight: 500;
    font-style: italic;
    text-align-last: center;
    padding-top: 10px;
}
.categoryCardBody h5{
    font-family: var(--lemonMilk);
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    text-align-last: center;
    padding-top: 10px;
}
.loadMoreBtn {
    text-align-last: center;
    padding-top: 40px;
}
.categoryProductColor{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
}
.categoryProductColor label{
    padding: 8px;
    background: black;
    border-radius: 40px;
    margin: 0 5px 0 0;
}
.categoryProductColor p{
    margin: 0  0 0;
}
.catalogueBodyDescription{
    font-size: 16px;
}
.categoryPrice p{
    margin-bottom: 5px!important;
}
.modalForm input{
    font-size: 14px;
    padding: 14px;
    border-radius: 0;
}
.modalForm textarea{
    font-size: 14px;
    border-radius: 0;
}
.offerImg {
    position: absolute;
    top: 5px;
    left: 20px;
}
.offerImg img{
    width: 20%;
}
.offerHide{
    display: none;
}
.modalHeaderStyle{
    font-family: var(--lemonMilk);
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
}



.new-sticker {
    margin: 0;
    position: relative;
    display: inline-block;
  }
  .new {
    background-color: #ec1f28;
    color: #fff;
    font: .8em/1 'Archivo Narrow', sans-serif;
    letter-spacing: .09em;
    position: absolute;
    left: .1em;
    top: 10px;
    line-height: 14px;
    transform: rotate(-15deg);
    text-align-last: center;
  }
  .sticker {
    height: 45px;
    width: 45px;
    background: #ec1f28;
    position: absolute;
  }
  .sticker:before {
    height: 45px;
    width: 45px;
    background: #ec1f28;
    content:"";
    position: absolute;
    /* Rotate */
    transform: rotate(30deg);
  }
  .sticker:after {
    height: 45px;
    width: 45px;
    background: #ec1f28;
    content:"";
    position: absolute;
    /* Rotate */
    transform: rotate(-30deg);
  }



  .formSelectOpt > div {
    display: flex;
}

/**************************************/

.spaceTop {
    margin-top: 145px;
}
.bannerSectionOne{
    position: relative;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}
.bannerSection {
/*    padding: 200px 0;*/
    background-image: url(../images/banner-slider1.jpg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.bannerSection::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background-image: url(../images/banner-shape.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50px;
    z-index: 100;
}
.bannerContent {
    max-width: 600px;
    position: absolute;
    bottom: 245px;
}
.bannerContent > h1 {
    color: var(--whiteColor);
    font-size: 80px;
    font-family: var(--lemonMilk);
    font-weight: 500;
    font-style: italic;
    line-height: 1;
}
.bannerContent > p {
    color: var(--whiteColor);
    font-size: 22px;
    padding: 10px 0 35px;
    margin: 0;
}
.bannerBtn .btn_primary {
    min-width: 232px;
    padding: -1px 30px;
}
.bannerSection .carousel-indicators {
    margin-bottom: 0;
    left: auto;
    margin-right: 7%;
    margin-left: 0;
    bottom: 8%;
}
.bannerSection .carousel-indicators .active {
    background-color: var(--primaryColor);
}
.bannerSection .carousel-caption {
    position: inherit;
    right: 0;
    left: 0;
    padding: 0;
    bottom: 0;
    text-align: left;
}


/***************************/

.formSection {
    background-image: url(../images/search-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 127px 0;
    margin-top: -30px;
    z-index: 1;
    position: relative;
}
.searchCol {
    width: 500px;
    position: relative;
    padding-right: 35px;
}
.searchFld {
    font-size: 16px;
    border: 0;
    border-radius: 0;
    padding: 15px 130px 15px 20px;
}
.searchFld::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgba(0, 0, 0, 0.4);
}
.searchFld::-moz-placeholder { /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.4);
}
.searchFld:-ms-input-placeholder { /* IE 10+ */
  color: rgba(0, 0, 0, 0.4);
}
.searchFld:-moz-placeholder { /* Firefox 18- */
  color: rgba(0, 0, 0, 0.4);
}
.searchCol .btn_primary {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    min-width: 145px;
}
.selectCol select.form-select {
    border: 0;
    border-radius: 0;
    padding: 15px 40px 15px 20px;
    font-size: 20px;
}
.formSelectOpt > ul > li {
    display: inline-block;
    vertical-align: middle;
}
.applyBtn .btn_primary {
    padding: 16px;
    min-width: 152px;
}
.searchFld, .selectCol select.form-select, .applyBtn .btn_primary, .searchCol .btn_primary {
    height: 58px;
}

/************************/

.sectionSpace {
    padding: 100px 0;
}
.titleCol > h2 {
    font-family: var(--lemonMilk);
    font-weight: 500;
    font-style: italic;
    padding-bottom: 30px;
}
.lgTitle {
    font-size: 50px;
}
.mdTitle {
    font-size: 45px;
}
.smTitle {
    font-size: 37px;
}
.pText {
    font-size: 20px;
}

/*******************/

.cardSection {
    padding-top: 50px;
}
.cardStyle {
    position: relative;
            -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.blankLinks {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
}
.borderStyle {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 20px;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
    visibility: hidden;
    cursor: pointer;
}
.cardStyle:hover .borderStyle {
    opacity: 1;
    visibility: visible;
}
.borderStyle > span {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
}
.border1 {
    border-left: 1px solid var(--primaryColor);
    border-bottom: 1px solid var(--primaryColor);
    margin-top: 50px;
    margin-right: 50px;
}
.border1::before {
    content: "";
    position: absolute;
    left: 24px;
    top: -60px;
    background-color: var(--primaryColor);
    height: 71px;
    width: 1px;
    transform: rotate(45deg);
}
.border2 {
    border-right: 1px solid var(--primaryColor);
    border-top: 1px solid var(--primaryColor);
    margin-left: 50px;
    margin-bottom: 50px;
}
.border2::before {
    content: "";
    position: absolute;
    right: 24px;
    bottom: -60px;
    background-color: var(--primaryColor);
    height: 71px;
    width: 1px;
    transform: rotate(45deg);
}
.cardStyle::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1;
}
.cardImg {
    position: relative;
    width: 100%;
    height: 100%;
}
.cardImg > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.cardStyle:hover .cardImg > img {
    filter: inherit;
}
.cardText {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    z-index: 1;
    text-align: center;
    transform: translate(0, -50%);
    padding: 35px;
    cursor: pointer;
}
.cardText > a > h3 {
    color: var(--whiteColor);
    font-family: var(--lemonMilk);
    font-weight: 500;
    font-style: italic;
    line-height: 1.1;
}
.lgText {
   font-size: 70px; 
}
.mdText {
   font-size: 54px; 
}
.cardText > a > span {
    font-size: 20px;
    color: var(--whiteColor);
    display: block;
}
.smCardStyle .cardImg{
    height: 300px;
}
.cardStyle.lgCardStyle {
    height: 100%;
}



/******************************/

.pLogo {
    text-align: center;
}
.pLogo > ul > li {
    display: inline-block;
    vertical-align: middle;
}
.pLogo {
    text-align: center;
}
.pLogo > ul > li {
    display: inline-block;
    vertical-align: middle;
    padding: 15px 30px;
}
.pLogo > ul > li > img {
    max-width: 140px;
    height: 70px;
    object-fit: contain;
}
.pLogoSection {
    padding: 60px 0;
}
.cateCardStyle {
    position: relative;
}
.cateCardStyleImg {
    position: relative;
}
.cateCardStyleImg::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.8);
    z-index: 1;
    clip-path: polygon(10% 0, 100% 0, 100% 20%, 100% 90%, 90% 100%, 20% 100%, 0 100%, 0 10%);
}
.cateCardStyleImg > img {
    width: 100%;
    height: 365px;
    object-fit: cover;
    clip-path: polygon(10% 0, 100% 0, 100% 20%, 100% 90%, 90% 100%, 20% 100%, 0 100%, 0 10%);
}
.cateCardStyleText {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 1;
    padding: 35px 15px;
}
.cateCardStyleText > h4 {
    color: var(--whiteColor);
    font-family: var(--lemonMilk);
    font-weight: 500;
    font-style: italic;
    font-size: 20px;
    margin: 0;
    text-shadow: 0 2px 8px rgb(0 0 0 / 40%);
        -webkit-transition: all 300ms ease-in-out 0s;
    -o-transition: all 300ms ease-in-out 0s;
    transition: all 300ms ease-in-out 0s;
}
.cateCardStyle > a:hover .cateCardStyleText > h4 {
    color: var(--primaryColor);
}
.customSlider {
    padding-top: 110px;
}
.customSlider .swiper-button-next, .customSlider .swiper-button-prev {
    top: 10px;
    margin-top: 0;
    background-size: 20px 30px;
    height: 35px;
    width: 20px;
    filter: brightness(1) grayscale(1);
}
.customSlider .swiper-button-prev {
    left: 100px;
}
.customSlider .swiper-button-next {
    right: 100px;
}
.sliderTitle {
    position: absolute;
    left: 0;
    right: 0;
    max-width: 950px;
    margin: 0 auto;
}
.bestsellersSlider.customSlider .swiper-button-prev {
    left: 0;
}
.bestsellersSlider.customSlider .swiper-button-next {
    right: 0;
}
.bestsellersSlider .cateCardStyleImg::before {
    display: none;
}
.bestsellersSlider .cateCardStyleImg > img {
    height: 320px;
    clip-path: none;
}
.bestsellersSlider .cateCardStyleText {
    position: initial;
    padding: 0;
    padding-top: 30px;
}
.cateCardStyleText > h5 {
    font-size: 22px;
    padding-bottom: 20px;
}
.cateCardStyleText > h5 > span {
    display: block;
    font-weight: bold;
    font-size: 25px;
    padding-top: 10px;
}

/****************************/

.socailLinks > ul > li {
    display: inline-block;
    vertical-align: middle;
}
.socailLinks > ul > li + li {
    margin-left: 15px;
}
.socailLinks > ul > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background-color: var(--blackColor);
    border-radius: 50%;
}
.socailLinks > ul > li > a:hover {
    background-color: var(--primaryColor);
}
.socailLinks > ul > li > a > img {
    width: 20px;
    height: 20px;
}
.newsLetterLeftOpt .socailLinks {
    padding-top: 35px;
}
.newsLetterLeftOpt  > p {
    font-size: 20px;
    padding-top: 50px;
}
.newsLetterSearch {
    position: relative;
    margin-top: 40px;
}
.newsLetterSearch .form-control {
    border: 0;
    border-bottom: 1px solid #b2b2b2;
    border-radius: 0;
    padding: 0 60px 5px 0;
    font-weight: 500;
    color: #000;
    font-size: 20px;
}
.newsLetterSearch .form-control::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #000;
}
.newsLetterSearch .form-control::-moz-placeholder { /* Firefox 19+ */
  color: #000;
}
.newsLetterSearch .form-control:-ms-input-placeholder { /* IE 10+ */
  color: #000;
}
.newsLetterSearch .form-control:-moz-placeholder { /* Firefox 18- */
  color: #000;
}
.newsLetterSearchIcon {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
}
.newsLetterSearchIcon > img {
    width: 42px;
    cursor: pointer;
}
.newsLetterCard {
    margin-left: 100px;
    position: relative;
}
.newsLetterCard::before {
    content: "";
    position: absolute;
    left: -80px;
    top: -30px;
    bottom: -30px;
    background-color: #e5e5e5;
    width: 660px;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}
.nlCardStyleImg > a {
    display: block;
    position: relative;
    height: 250px;
    overflow: hidden;
}
.nlCardStyleImg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all 800ms ease-in-out 0s;
    -o-transition: all 800ms ease-in-out 0s;
    transition: all 800ms ease-in-out 0s;
}
.nlCardStyleImg > a:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.nlCardStyleIcon {
    position: absolute;
    right: 10px;
    bottom: 10px;
}
.nlCardStyleIcon > img {
    width: 25px;
}
.newsLetterLeftOpt {
    max-width: 300px;
}

/****************************/

.footerSection {
    background-color: var(--whiteColor);
    position: relative;
    padding: 40px 0;
}
.footerSection::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(../images/footer-bg.png);
    background-position: center top;
    background-repeat: repeat;
    background-size: cover;
    top: 200px;
}
.footerLogo {
    max-width: 280px;
}
.footerLinks > ul > li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 30px;
    margin-bottom: 20px;
}
.footerCol {
    max-width: 800px;
}
.footerLinks {
    padding-top: 50px;
}
.footerLinks > ul > li > a {
    font-size: 18px;
    color: var(--darkColor2); 
    position: relative;
}
.footerLinks > ul > li > a.active {
    color: var(--blackColor);
}
.footerLinks > ul > li > a:hover {
    color: var(--primaryColor);
}
.footerLinks2 > ul > li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 0 12px;
}
.footerContent {
    position: relative;
    padding-bottom: 160px;
}
.helpImg {
    max-width: 320px;
    position: relative;
    margin-right: 70px;
}
.helpImg > h3 {
    font-size: 12px;
    text-transform: uppercase;
    font-family: var(--lemonMilk);
    font-weight: 500;
    text-align: left;
    border: 1px solid;
    border-radius: 15px;
    padding: 16px 18px;
    margin: 0;
    background-color: var(--whiteColor);
    z-index: -2;
}
.hiTag {
    position: absolute;
    right: -80px;
    top: -15px;
    width: 112px;
    height: 112px;
    background-color: #3d210b;
    border-radius: 50%;
    padding: 16px;
    border: 14px solid #fff;
}
.hiTag::before {
    content: "5";
    right: 0px;
    top: -10px;
    background-color: var(--secondaryColor);
    width: 28px;
    height: 28px;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    position: absolute;
    line-height: 1;
    font-size: 18px;
}
.hiTag > img {
    margin-top: 6px;
}
.footerBotm {
    position: relative;
    padding-top: 60px;
}
.footerText > p, .footerLinks2 > ul > li > a {
    font-size: 16px;
    color: var(--whiteColor);
    opacity: 0.8;
}
.footerText > ul > li > a:hover {
    opacity: 1;
}
.footerText > p {
    margin: 0;
}
.footerLinks2 > ul > li + li::before {
    content: "";
    position: absolute;
    left: -2px;
    width: 1px;
    height: 12px;
    background-color: rgba(255,255,255,0.7);
    top: 5px;
}


/********************************
***** MEDIA QUARY ********
********************************/

@media (min-width:1430px) {
  .container {
    max-width: 1400px;
  }
}

@media (max-width:1400px) {
    .headerTopLinks > ul > li {
        font-size: 14px;
        padding: 0 10px;
    }
    .logo {
        width: 200px;
    }
    .headerRightOptions > ul > li > img {
        max-width: 200px;
    }
    .cartCol > a {
        width: 30px;
    }
    .cartCol > a::before {
        width: 16px;
        height: 16px;
        right: -10px;
        top: -4px;
        font-size: 12px;
    }
    .newsLetterCard {
        margin-left: 50px;
    }
    .newsLetterCard::before {
        left: -60px;
        width: 620px;
    }
    .pLogo > ul > li {
        padding: 15px 20px;
    }
    .bannerContent > h1 {
        font-size: 70px;
    }
    .headerLeftOptions > ul > li + li, .headerRightOptions > ul > li + li {
        margin-left: 20px;
    }
    .bannerContent > p {
        font-size: 20px;
    }
    .pText {
        font-size: 18px;
    }
    .lgTitle {
        font-size: 40px;
    }
    .mdText {
        font-size: 44px;
    }
    .lgText {
        font-size: 56px;
    }
    .cardText > a > span {
        font-size: 16px;
    }
    .pLogo > ul > li > img {
        max-width: 120px;
        height: 60px;
    }
    .mdTitle {
        font-size: 40px;
    }
    .cateCardStyleText > h5 {
        font-size: 18px;
        padding-bottom: 15px;
    }
}
@media (max-width:1199px) {
    .btn_primary {
        font-size: 18px;
    }
    .headerLeftOptions > ul > li > a {
        font-size: 16px;
    }
    .toggle {
        width: 40px;
        height: 24px;
    }
    .bar {
        height: 3px;
        top: 11px;
    }
    .bar:nth-child(3) {
        top: 22px;
    }
    .headerRightOptions > ul > li > img {
        max-width: 180px;
    }
    .logo {
        width: 160px;
    }
    .headerLeftOptions, .headerRightOptions {
        width: 300px;
    }
    .spaceTop {
        margin-top: 100px;
    }
    .searchFld {
        font-size: 14px;
        padding: 15px 90px 15px 15px;
    }
    .btn_primary {
        font-size: 16px;
    }
    .searchCol {
        width: 400px;
    }
    .searchCol .btn_primary {
        min-width: 110px;
    }
    .selectCol select.form-select {
        padding: 12px 35px 12px 15px;
        font-size: 16px;
    }
    .applyBtn .btn_primary {
        min-width: 130px;
    }
    .bannerSection {
        padding: 160px 0;
    }
    .sectionSpace {
        padding: 80px 0;
    }
    .pText {
        font-size: 16px;
    }
    .cardSection {
        padding-top: 30px;
    }
    .mdText {
        font-size: 34px;
    }
    .cardText {
        padding: 20px;
    }
    .lgText {
        font-size: 42px;
    }
    .cardText > a > span {
        font-size: 14px;
    }
    .cateCardStyleText > h4 {
        font-size: 16px;
    }
    .cateCardStyleText > h5 > span {
        font-size: 20px;
    }
    .newsLetterLeftOpt {
        max-width: 260px;
    }
    .nlCardStyleImg > a {
        height: 200px;
    }
    .footerLinks > ul > li {
        margin-right: 15px;
        margin-bottom: 10px;
    }
    .footerLinks > ul > li > a {
        font-size: 16px;
    }
    .smTitle {
        font-size: 30px;
    }
    .newsLetterLeftOpt  > p {
        font-size: 16px;
        padding-top: 30px;
    }
    .newsLetterLeftOpt .socailLinks {
        padding-top: 0;
    }
    .footerLogo {
        max-width: 200px;
    }
    .formSection {
        padding: 100px 0;
        margin-top: -20px;
    }
    .border1 {
        margin-top: 35px;
        margin-right: 35px;
    }
    .border2 {
        margin-left: 35px;
        margin-bottom: 35px;
    }
    .border1::before {
        left: 16px;
        top: -42px;
        height: 49px;
    }
    .border2::before {
        right: 16px;
        bottom: -42px;
        height: 49px;
    }
}   

@media (max-width:991px) {
    .container {
        max-width: 100%;
    }
   .newsLetterLeftOpt {
        max-width: 100%;
        margin-bottom: 70px;
    }
    .headerTopCol {
        display: none;
    }
    .headerSection {
        top: 0;
    }
    .navCol {
        padding: 20px 0;
    }
    .navCol > ul > li + li {
        margin-top: 15px;
    }
    .navCol > ul > li, .navCol > ul > li > a {
        font-size: 16px;
    }
    .spaceTop {
        margin-top: 86px;
    }
    .bannerContent > h1 {
        font-size: 60px;
    }
    .bannerContent > p {
        font-size: 18px;
    }
    .bannerBtn .btn_primary {
        min-width: auto;
    }
    .searchCol {
        width: 100%;
        margin-bottom: 10px;
    }
    .formSection {
        padding: 95px 0;
    }
    .lgTitle {
        font-size: 30px;
    }
    .titleCol > h2 {
        padding-bottom: 15px;
    }
    .pText {
        font-size: 14px;
    }
    .mdText {
        font-size: 24px;
    }
    .lgText {
        font-size: 30px;
    }
    .cardText {
        padding: 15px;
    }
    .smCardStyle .cardImg {
        height: 250px;
    }
    .pLogoSection {
        padding: 40px 0;
    }
    .mdTitle {
        font-size: 32px;
    }
    .customSlider {
        padding-top: 80px;
    }
    .newsLetterCard {
        margin-left: 0;
    }
    .newsLetterCard::before {
        left: 0;
        width: 100%;
        top: -20px;
        bottom: -20px;
    }
    .nlCardStyleImg > a {
        height: 300px;
    }
    .footerText {
        max-width: 200px;
    }
    .headerLeftOptions, .headerRightOptions {
        width: 50px;
    }
     .helpImg {
        margin-top: 40px;
    }
}
@media (max-width:767px) {
    .logo {
        width: 120px;
    }
    .cartCol > a {
        width: 26px;
    }
    .spaceTop {
        margin-top: 64px;
    }
    .bannerSection {
        padding: 120px 0;
    }
    .bannerSectionHome{
        padding: 34px 0px 0 0;
        margin-top: 60px!important;
    }
    .bannerSection::before {
        z-index: 1;
    }
    .bannerContent > h1 {
        font-size: 50px;
    }
    .bannerSectionOne {
    height: unset;
    }
    .bannerSectionOne img{
        
    height: 50vh;
    object-fit: cover;

    }
    .ProductListingSection{
        padding: 50px 10px!important;
    }
    .bannerContentHome{
        bottom: 120px!important;
    }
    .bannerContent {
        max-width: 100%;
        text-align: center;
        bottom: 30px;
    }
    .bannerSection .carousel-indicators {
         bottom: 5%;
    }
    .bannerContent > p {
        font-size: 16px;
    }
    .btn_primary {
        font-size: 14px;
    }
    .searchFld, .selectCol select.form-select, .applyBtn .btn_primary, .searchCol .btn_primary {
        height: 55px;
    }
   .stickyHeader .logo {
        width: 100px;
    }
    .sectionSpace {
        padding: 60px 0;
    }
    .cardStyle.lgCardStyle, .smCardStyle .cardImg {
        height: 250px;
    }
    .lgText, .mdText {
        font-size: 22px;
    }
    .pLogo > ul > li > img {
        max-width: 80px;
        height: 40px;
    }
    .mdTitle {
        font-size: 24px;
    }
    .customSlider .swiper-button-next, .customSlider .swiper-button-prev {
        top: 0;
        background-size: 14px 24px;
        height: 24px;
        width: 15px;
    }
    .customSlider .swiper-button-next {
        right: 20px;
    }
    .customSlider .swiper-button-prev {
        left: 20px;
    }
    .customSlider {
        padding-top: 60px;
    }
    .cateCardStyleImg > img, .cateCardStyleImg::before {
        clip-path: polygon(8% 0, 100% 0, 100% 22%, 100% 92%, 92% 100%, 22% 100%, 0 100%, 0 8%);
    }
    .btn_primary {
        padding: 10px 20px;
    }
    .bestsellersSlider .cateCardStyleText {
        padding-top: 20px;
    }
    .cateCardStyleText > h5 {
        font-size: 16px;
        padding-bottom: 5px;
    }
    .cateCardStyleText > h5 > span {
        font-size: 16px;
    }
    .smTitle {
        font-size: 24px;
    }
    .socailLinks > ul > li + li {
        margin-left: 8px;
    }
    .socailLinks > ul > li > a {
        width: 32px;
        height: 32px;
    }
    .socailLinks > ul > li > a > img {
        width: 15px;
        height: 15px;
    }
    .newsLetterSearch .form-control {
        font-size: 14px;
    }
    .newsLetterSearch {
        margin-top: 20px;
    }
    .footerLogo {
        max-width: 150px;
    }
    .footerLinks > ul > li > a {
        font-size: 14px;
    }
    .footerText {
        max-width: 100%;
        text-align: center;
    }
    .footerSection {
        padding: 15px 0;
    }
    .helpImg {
        margin-top: 20px;
        margin-right: 0;
        max-width: 280px;
    }
    .helpImg > h3 {
        font-size: 11px;
        border-radius: 12px;
        padding: 14px;
    }
    .hiTag {
        right: -65px;
        top: -10px;
        width: 90px;
        height: 90px;
        padding: 15px;
        border: 12px solid #fff;
    }
    .hiTag::before {
        top: -2px;
        width: 20px;
        height: 20px;
        font-size: 15px;
    }
    .mobileContainer{
        padding: 0;
    }
    .formSelectOpt > div {
        display: block;
    }
    .catalogueImgMobile{
        height: 380px;
    margin-bottom: 15px;
    }
}
@media (max-width:585px) {
    .bannerContent > h1 {
        font-size: 40px;
    }
    .spaceTop {
        margin-top: 54px;
    }
    .bannerContent > p {
        font-size: 14px;
    }
    .navCol > ul > li, .navCol > ul > li > a {
        font-size: 14px;
    }
    .navCol {
        text-align: center;
    }
    .menuCol, .cartSideBarCol {
        width: 100%;
    }
    .prCardImg {
        width: 85px;
        height: 85px;
    }
    .quantityField {
        padding: 10px;
        width: 120px;
        height: 40px;
    }
    .proCardText > h3 {
        font-size: 16px;
    }
    .footerRight  > h3 {
        font-size: 14px;
    }
    .footerLeftText > h3 {
        font-size: 18px;
    }
    .cartBtn .btn_primary {
        font-size: 14px;
    }
    .selectCol {
        margin-bottom: 10px;
    }
    .shippingCol {
        margin: 0 auto;
    }
}

@media (max-width:485px) {
    .formSection {
        background-color: var(--blackColor);
        margin: 0;
        padding: 50px 0;
    }
    .borderStyle {
        left: 10px;
        right: 10px;
        top: 10px;
        bottom: 10px;
    }
}

@media (max-width:385px) {
.prCardImg {
    width: 70px;
    height: 70px;
}
.prTotalPrice > h3 {
    font-size: 14px;
}
.quantityField {
    padding: 8px;
    width: 100px;
    height: 35px;
}
.cartPriceText, .prTotalPrice {
    width: 55px;
}
.searchFld, .selectCol select.form-select, .applyBtn .btn_primary, .searchCol .btn_primary {
    height: 40px;
}
.selectCol select.form-select {
    padding: 10px 35px 10px 15px;
    font-size: 14px;
}
.searchFld {
    padding: 10px 90px 10px 15px;
}
.applyBtn .btn_primary {
    padding: 10px;
}
.lgTitle {
    font-size: 24px;
}
.cardSection {
    padding-top: 0;
}
.pLogo > ul > li {
    padding: 15px;
}
.pLogo > ul > li > img {
    max-width: 70px;
    height: 35px;
}
.mdTitle {
    font-size: 20px;
}
.customSlider .swiper-button-next {
    right: 15px;
}
.customSlider .swiper-button-prev {
    left: 15px;
}
.pLogo > ul > li {
    padding: 12px;
}
.footerContent {
    padding-bottom: 80px;
}
.helpImg > h3 {
    font-size: 10px;
    border-radius: 10px;
    padding: 11px;
}
.helpImg {
    max-width: 250px;
}
.hiTag {
    right: -50px;
    top: -10px;
    width: 70px;
    height: 70px;
    padding: 10px;
    border: 10px solid #fff;
}
.hiTag::before {
    width: 18px;
    height: 18px;
    font-size: 12px;
    top: -5px;
}
}