@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    position: relative;
    font-family: 'Poppins', sans-serif;
    background: var(--black);
    overflow-x: hidden;
}


/*.container {
    max-width: 1170px;
}*/

@font-face {
    font-family: 'HandelGothicEF';
    src: url('../fonts/HandelGothicEF-Bold.eot');
    src: url('../fonts/HandelGothicEF-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/HandelGothicEF-Bold.woff2') format('woff2'), url('../fonts/HandelGothicEF-Bold.woff') format('woff'), url('../fonts/HandelGothicEF-Bold.ttf') format('truetype'), url('../fonts/HandelGothicEF-Bold.svg#HandelGothicEF-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Handel Gothic';
    src: url('../fonts/HandelGothic.eot');
    src: url('../fonts/HandelGothic.eot?#iefix') format('embedded-opentype'), url('../fonts/HandelGothic.woff2') format('woff2'), url('../fonts/HandelGothic.woff') format('woff'), url('../fonts/HandelGothic.ttf') format('truetype'), url('../fonts/HandelGothic.svg#HandelGothic') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --white: #ffffff;
    --black: #000;
    --gary-color: #727272;
    --lightgary-color: #b2b9bd;
    --theme-color: #ef4937;
    --primary-color: #93292d;
}

p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 2;
    color: #828282;
    font-family: 'Raleway', sans-serif;
}

h1,
h2,
h3 {
    font-family: 'Handel Gothic';
}

h4,
h5 {
    color: #000;
    font-family: 'Raleway', sans-serif;
}

h6 {
    font-family: 'Poppins', sans-serif;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-family: 'Raleway', sans-serif;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

figure {
    margin: 0;
}

section {
    padding: 5rem 0;
}


/* loader */

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.preLoader.black {
    background-color: var(--black);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--theme-color);
}

.preLoader img {
    width: 80%;
}


/* loader */


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}


/* Cursor End */


/* btn css */

.themeBtn {
    background: linear-gradient(rgb(237, 237, 237) 0%, rgb(139, 137, 138) 100%);
    font-size: 1.125rem;
    color: rgb(12, 12, 12);
    text-transform: uppercase;
    font-weight: 400;
    display: inline-block;
    padding: 0.7em 1.36em;
    border-radius: 50px;
    line-height: normal;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
}

.themeBtn.borderBtn {
    background: transparent;
    border: 1px solid #fff;
    padding: 1.04em 2em;
}


/* btn css */


/* mouse animation css  */

.bounce-element {
    animation: bounce 0.9s infinite alternate;
    -webkit-animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

.mouse {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 11;
    text-align: center;
}


/* mouse animation css  */


/* sraachbar start */

#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 10000;
}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

#search input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff!important;
    background: rgba(0, 0, 0, 0);
    font-size: 55px;
    line-height: 65px;
    text-align: center;
    border: 0px;
    margin: 0px auto;
    margin-top: -51px;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-family: arial;
}

#search .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: 61px;
    margin-left: -45px;
    background-color: limegreen;
    border: black;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    color: #fff;
    opacity: 1;
    padding: 10px 17px;
    font-size: 27px;
}

#search input[type="search"]::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #fff;
}

#search input[type="search"]::-moz-placeholder {
    /* Firefox 19+ */
    color: #fff;
    opacity: 1;
}

#search input[type="search"]:-ms-input-placeholder {
    /* IE 10+ */
    color: #fff;
}

#search input[type="search"]:-moz-placeholder {
    /* Firefox 18- */
    color: #fff;
    opacity: 1;
}

.srch-btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.srch-btn .themeBtn {
    padding: 15px 120px;
    font-size: 20px;
}


/* sraachbar end */


/* navigation css */

.topBar {
    background-color: transparent;
    background-image: linear-gradient(180deg, #8B898A 0%, #EDEDED 100%);
    padding: 0.6rem 0;
}

.topBar p {
    text-align: center;
    font-size: 1.0625rem;
    color: var(--black);
    margin: 0;
    font-weight: 600;
}

.navbar-nav {
    align-items: center;
    justify-content: space-between;
    /* width: 100%; */
    gap: 1rem;
    margin-right: 3rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.15rem;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    padding: 0 0;
    display: inline-block;
}

.an-navbar {
    background: var(--theme-color);
    padding: 1.35rem 0;
}

.navbar-collapse .form-inline {
    gap: 1rem;
}

.navbar-collapse .form-inline a {
    font-size: 1.125rem;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--white);
    position: relative;
}

.navbar-brand img {
    width: 250px;
}

.main-navigate {
    padding: 1.5rem 0;
}

.headerSub-btn {
    gap: 1rem;
}


/* navigation css */


/* slider css */

.mainSlider {
    height: 600px;
    position: relative;
    z-index: 1;
    padding: 0;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.homeSlider .slide-inner:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(0 0 0 / 54%);
}

.slideContent {
    text-align: center;
}

.slideContent p {
    font-size: 1.25rem;
    color: var(--white);
    margin: 0 0 1.7rem;
}


/* slider css */

.heading {
    font-size: 3.75rem;
    color: var(--white);
    font-weight: bold;
    font-family: 'Handel Gothic';
    text-align: center;
    margin: 0 0 3rem;
}

.proBox {
    background: var(--white);
    position: relative;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
    border-radius: 23px;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin-bottom: 1.3rem;
}

.proBox span {
    position: absolute;
    left: 8px;
    top: 10px;
    background: #ef4937;
    font-size: 14px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    word-break: break-all;
    z-index: 1;
}

.proBox .iconShow {
    position: absolute;
    right: 10px;
    transform: translateX(60px);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    top: 10px;
    z-index: 1;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.proBox .proImg figure {
    position: relative;
    overflow: hidden;
}

.proBox .proImg figure img {
    -webkit-transition: all 2s ease;
    transition: all 2s ease;
}

.proBox .proImg figure img+img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: scale(1);
    opacity: 0;
}

.proContent h2 {
    font-size: 20px;
    color: #333333;
    font-family: 'Handel Gothic';
    line-height: 1.3;
}

.proContent {
    padding: 15px 13px;
}

.proContent h6 {
    font-size: 12.6px;
    color: #ef4937;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 0 15px;
}

.proContent h6 del {
    color: #bbbbbb;
    font-weight: 400;
}

.proContent p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.offerBtn {
    background: #f3f3f3;
    padding: 10px 20px;
    font-size: 15px;
    display: block;
    text-align: center;
    color: #3e3e3e;
    text-transform: uppercase;
    font-weight: 600;
}

.proBox .iconShow li a {
    width: 50px;
    height: 45px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 1.2rem;
}

.proBox .proImg:hover figure img+img {
    opacity: 1;
    transform: scale(1.1);
}

.proBox:hover .iconShow {
    transform: translateX(0px);
}

.offerBtn:hover {
    background: #e0e0e0;
    color: #3e3e3e;
}

.allpro {
    font-size: 1rem;
    color: var(--white);
    font-weight: 700;
    display: inline-block;
    margin: 0 0 25px;
}

.moneyMain {
    padding: 3.5rem 0;
}

.moneyMain ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.moneyMain ul li figure {
    flex-shrink: 0;
}

.moneyMain ul li h4 {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 700;
    margin: 0 0 5px;
}

.moneyMain ul li p {
    font-size: 14px;
    color: var(--white);
    margin: 0;
}

.quickList h2 {
    font-size: 1.875rem;
    color: var(--white);
    font-weight: bold;
    margin: 0 0 1.5rem;
}

.quickList ul li a {
    font-size: 1.125rem;
    color: var(--white);
    font-weight: 400;
}

.quickList ul li+li {
    margin: 0.8rem 0 0;
}

.copyRight {
    border-top: 1px solid var(--white);
    margin-top: 5rem;
    align-items: center;
    padding: 0.8rem 0;
}

.copyRight p {
    margin: 0;
    font-size: 1.125rem;
    color: var(--white);
}

.copyRight ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.copyRight ul li a {
    background-color: #222222;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
}

footer {
    padding-top: 6rem;
}

.quickList ul li a:hover,
.navbar-nav .nav-item .nav-link:hover {
    color: var(--theme-color);
}

.copyRight ul li a:hover {
    background: var(--theme-color);
    color: var(--white);
}

.themeBtn:hover {
    background: var(--theme-color);
    color: var(--white);
}

.innerBanner {
    padding: 0;
    position: relative;
}

.innerBanner img.w-100 {
    height: 340px;
    object-fit: cover;
}

.innerBanner h2 {
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    font-size: 4.0625rem;
    color: var(--white);
    font-weight: bold;
    margin: 0;
    top: 0;
}

.innerBanner:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(0 0 0 / 22%);
}

.aboutContent h2 {
    font-size: 2.8125rem;
    color: var(--white);
    font-weight: bold;
    margin: 0 0 1rem;
}

.aboutContent p {
    font-size: 1.1875rem;
    color: #c2c2c2;
    line-height: 1.7;
    margin: 0;
}

.shopSidebar h4 {
    font-size: 1.5rem;
    background: var(--white);
    margin: 0 -1.2rem;
    font-weight: bold;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
}

.shopSidebar {
    background-color: #272727;
    height: 100%;
}

.shopSidebar ul {
    padding: 2rem 1rem 3rem;
}

.shopSidebar ul li a {
    font-size: 14px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.shopSidebar ul li+li {
    margin: 16px 0 0;
}

.productPage {
    padding: 5rem 13rem;
}

.needHelp .heading {
    text-align: left;
    margin: 0 0 1.2rem;
    font-size: 2.5rem;
}

.writeHeading {
    font-size: 1.5625rem;
    color: #8b898a;
    font-weight: 500;
    text-transform: capitalize;
    font-family: 'Handel Gothic';
}

.needHelp p {
    font-size: 15px;
    line-height: 1.7;
    margin-top: 15px;
    margin-bottom: 2rem;
    color: var(--white);
}

.needHelp form input {
    width: 100%;
    height: 57px;
    border: 0;
    font-size: 15px;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.needHelp form input::placeholder {
    color: #757575;
}

.needHelp form textarea {
    width: 100%;
    height: 155px;
    border: 0;
    font-size: 15px;
    padding: 1.5rem 1.5rem;
    margin-bottom: 1rem;
    resize: none;
}

.needHelp form span {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.needHelp form span input {
    width: auto;
    margin: 0;
    width: 24px;
    height: 24px;
}

.needHelp form span label {
    font-size: 1.125rem;
    color: var(--black);
    margin: 0;
}

.needHelp form .themeBtn.inerShadow {
    border: 0;
}

.info .writeHeading {
    margin: 0 0 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
}

.info ul li {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.info ul li figure {
    color: #8B898A;
    font-size: 2.6rem;
    width: 30px;
    text-align: center;
}

.info ul li h4 {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 7px;
    color: var(--white);
    text-transform: capitalize;
}

.info ul li a {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.info ul li p {
    font-size: 17px;
    color: #000000;
    font-weight: 400;
    margin: 0;
}

.info ul li+li {
    margin-top: 1rem;
}

.needHelp form .themeBtn.inerShadow {
    background: var(--white);
    border-radius: 0;
    font-size: 13px;
    color: #3e3e3e;
    font-weight: 600;
}

.needHelp form .themeBtn.inerShadow:hover {
    background: var(--theme-color);
}

.contactPage {
    padding: 6.5rem 0;
}

.needHelp form label {
    color: var(--white);
    font-weight: 300;
    font-size: 14px;
}

.info {
    padding-left: 3.5rem;
}

.contactpgMap {
    padding: 0;
}

.privacyPage ul li {
    font-size: 19px;
    color: var(--white);
    line-height: 30.4px;
    font-family: 'Raleway', sans-serif;
}

.privacyPage ul li strong {
    font-weight: 600;
}

.privacyPage ul li ol {
    margin-top: 1.2rem;
}

.privacyPage ul li ol li {
    margin-bottom: 15px;
}

.privacyPage ul li ol li ul li {
    list-style: disc;
}

.privacyPage ul li ol li ul {
    margin: 15px 0 0;
}

.newsleterMain {
    padding: 7rem 10rem 4rem;
}

.discount {
    position: relative;
    background: url(../images/newslteterbg.png) no-repeat top center/ cover;
    border-radius: 50px;
}

.discount .row {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.discount figure {
    margin: -9.5rem 0 0;
}

.discountContent {
    text-align: center;
    margin-right: 8rem;
}

.discountContent h4 {
    font-size: 1.1875rem;
    color: var(--white);
    font-weight: 400;
    margin: 0 0 1rem;
}

.discountContent h2 {
    font-size: 2.25rem;
    color: var(--white);
    font-weight: bold;
    margin: 0 0 2rem;
    line-height: 1.3;
}

.discountContent h2 strong {
    font-size: 3.375rem;
    color: #48874e;
}

.discountContent form {
    position: relative;
}

.discountContent form input {
    width: 100%;
    height: 65px;
    border: 0;
    border-radius: 50px;
    padding: 0 2rem;
    padding-right: 11rem;
}

.discountContent form button {
    position: absolute;
    right: 2rem;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
    background: #48874e;
    border: 0;
    padding: 10px 35px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
}

a.category-link {
    color: black;
}

.prodtl-txt {
    color: white;
}

.navbar-collapse .form-inline a span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ccc;
    color: #000;
    position: absolute;
    top: -10px;
    right: -10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 500;
}

.navbar-collapse .form-inline a img {
    filter: brightness(0) invert(100);
    width: 40px;
}
.dropdown{
    position: relative;
}
.sub-menu {
    position: absolute;
    width: 220px;
    background-color: var(--white);
    z-index: 2;
    top: calc(100% + 1rem);
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 0 1rem 0 rgba(255,255,255,0.25);
    transition: 0.5s ease;
}
.sub-menu a{
    width: 100%;
    padding: 0.75rem 2rem !important;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--black);
    display: inline-block;
    transition: 0.5s ease;
}
.sub-menu a:hover{
    background: var(--theme-color);
    color: var(--white);
}
.sub-menu li+li{
    border-top: 1px solid #c4c4c4;
}

.dropdown:hover .sub-menu{
    top: 100%;
    opacity: 1;
    visibility: visible;
}


.aboutPage figure img {
    width: 100%;
    height: 775px;
    object-fit: cover;
}
.card-btn {
    display: flex;
    justify-content: space-evenly;
}

.card-btn .offerBtn {
    font-size: 12px;
}

.card-btn .btnbuy {
    border: 2px solid #000;
}
section.check-out-section.chkot-pag .themeBtn {
    text-transform: uppercase;
    border: 0;
}

.order-summery,.order-summery span, section.check-out-section.chkot-pag label, section.check-out-section.chkot-pag .primary-heading,section.check-out-section.chkot-pag p {
    color: white;
}

.aboutPage .card img.card-img-top {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.aboutPage .card-body .card-title + * {
    display: none;
}

.blogInner .aboutContent * {
    color: var(--white) !important;
}

.blogInner .aboutContent :is(a, a *) {
    color: var(--primary) !important;
}


.main-acblty {
    padding: 0;
}