@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");
@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");

:root {
    --white: #fff;
    --black: #000;
    --primary: #ff7403;
    --secondary: #747474;
}

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

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

/* main{
  height: 100%;
} */

@media (min-width: 1700px) {
    .container {
        max-width: 1380px;
    }
}

.df {
    display: flex;
}

.aic {
    align-items: center;
}

.ais {
    align-items: flex-start;
}

.aie {
    align-items: flex-end;
}

.jcfs {
    justify-content: flex-start;
}

.jcc {
    justify-content: center;
}

.jcsb {
    justify-content: space-between;
}

.jcfe {
    justify-content: flex-end;
}

.frr {
    flex-direction: row-reverse;
}

.fw {
    flex-wrap: wrap;
}

.fnw {
    flex-wrap: nowrap;
}

.gap1 {
    gap: 1rem;
}

.gap2 {
    gap: 2rem;
}

section {
    position: relative;
    padding: 6rem 0;
}

p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--black);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: "Poppins", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

.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;
}

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

figure {
    margin: 0;
}

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

.navbar-brand img {
    max-height: 150px;
    transition: 0.3s ease-in-out;
}

header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 11;
    top: 0;
    width: 100%;
}

header.sticky {
    position: fixed;
}

header.sticky .navbar-brand img {
    max-width: 100px;
}

.navbar-nav {
    gap: 1rem 2rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1;
    padding: 0 0 0.25rem;
    position: relative;
}

.navbar-nav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    background-color: #fff;
    transition: all 0.4s linear;
    height: 2px;
}

.navbar-nav .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  background-color: var(--primary);
  transition: all 0.3s 0.2s linear;
  height: 2px;
}

.navbar-nav .nav-item.active .nav-link::before,
.navbar-nav .nav-item .nav-link:hover::before{
  width: 100%;
}

.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}

.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
  width: 0;
}

.themeBtn {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--white);
    display: inline-block;
    background: var(--primary);
    border-radius: 0;
    padding: 1em 1.5em;
    text-transform: uppercase;
    line-height: 1;
    border: 2px solid var(--primary);
}

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

header .themeBtn {
    font-size: 14px;
}

.form-inline {
    gap: 1.5rem;
    margin-left: 2.5rem;
}

.form-inline a {
    color: var(--white);
}

.form-inline a i {
    font-size: 1.5rem;
}

.form-inline a:hover i {
    color: var(--primary);
}

h2.secHeading {
    color: var(--black);
    font-size: 3.5rem;
    font-weight: 700;
    font-family: "Raleway", sans-serif;
    line-height: 1.1;
    text-transform: uppercase;
}

h2.secHeading span {
    display: block;
    font-size: 1.875rem;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    line-height: 1;
}

/* loader */
.reveal,
.reveal2 {
    visibility: hidden;
    position: relative;
    overflow: hidden;
}

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

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

.preLoader.white {
    z-index: 20;
    background-color: var(--primary);
}

/* aboutSec */
.aboutSec {
    background: url(../images/aboutBg.png) left center/auto no-repeat;
}

.aboutSec .logoImg {
    position: absolute;
    right: 0;
    bottom: -6rem;
}

.productSec {
    background: #f8f8f8 url(../images/productBg.png) no-repeat top center/ cover;
    padding: 6rem 0 8rem;
}

.proCard {
    background: var(--white);
    padding: 2rem 0 0;
    height: 100%;
}

.proCard figure {
    text-align: center;
    min-height: 244px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1rem;
}

.proCard .content {
    padding: 0 1.5rem;
}

.proCard .content h2 {
    font-size: 0.9375rem;
    color: #828282;
}

.proCard .content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 0.8rem;
    padding-right: 2rem;
}

.proCard .content span i {
    color: #eac15c;
}

.proCard ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgb(112 112 112 / 30%);
    padding: 0rem 0 0 1.5rem;
    margin: 1.3rem 0 0;
}

.proCard ul li span {
    font-size: 1.25rem;
    color: var(--black);
    font-weight: 600;
}

.proCard ul li a {
    background: var(--primary);
    width: 3.125rem;
    height: 3.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

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

.productArrow {
    position: relative;
    width: 100%;
}

.productArrow .swiper-button-next {
    left: inherit;
    right: -7rem;
    background: var(--black);
    width: 3.125rem;
    height: 3.125rem;
    top: 14rem;
    color: var(--white);
    font-size: 1.5rem;
    display: inline-grid;
    place-items: center;
    transition: 0.3s ease-in-out;
}

.productArrow .swiper-button-prev {
    left: -7rem;
    right: inherit;
    background: var(--black);
    width: 3.125rem;
    height: 3.125rem;
    top: 14rem;
    color: var(--white);
    font-size: 1.5rem;
    display: inline-grid;
    place-items: center;
    transition: 0.3s ease-in-out;
}

.productArrow .swiper-button-next:hover,
.productArrow .swiper-button-prev:hover {
    background: var(--primary);
    color: var(--white);
}

/* storeSection */
.storeSection {
    background: url(../images/exclusiveBg.png) center/cover no-repeat;
}

.storeCard {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.75rem;
}

.storeCard img {
    transition: 0.3s ease-in-out;
}

.storeCard .content {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    padding: 6rem 4rem;
}

.storeCard .content span {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 5px;
    color: var(--white);
}

.storeCard .content .tag {
    background: var(--primary);
    padding: 2px 5px;
    clip-path: polygon(100% 0, 100% 75%, 93% 100%, 0 100%, 0 0);
}

.storeCard .content h3 {
    font-family: "Raleway", sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
    color: var(--white);
}

.storeCard .content p {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    font-family: "Raleway", sans-serif;
}

.storeCard .content .themeBtn {
    font-size: 1rem;
    padding: 0.75em 1em;
}

.storeCard:hover img {
    transform: scale(1.125);
}

.exclusiveCard .content {
    padding: 2rem;
}

.exclusiveCard h4 {
    font-family: "Raleway", sans-serif;
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1;
    margin: 0;
    color: var(--white);
}

.storeCard .content h2 {
    font-size: 3.125rem;
    color: var(--white);
    font-weight: bold;
    font-family: "Raleway", sans-serif;
    margin: 0;
    line-height: 1;
}

.exclusiveCard .content .themeBtn {
    font-size: 11px;
}

.exclusiveCard.last .content {
    left: 50%;
}

/* ctaBnner */
.ctaBnner {
    padding: 8rem 0;
    z-index: 1;
    background: url(../images/ctaBnnr.jpg) center/cover no-repeat;
}

.ctaBnner .secHeading {
    color: var(--white);
    font-size: 3.125rem;
    margin-bottom: 0;
    text-transform: capitalize;
}

.ctaBnner span.tag {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 5px;
    color: var(--white);
    background: var(--primary);
    padding: 5px;
    clip-path: polygon(100% 0, 100% 75%, 93% 100%, 0 100%, 0 0);
}

.ctaBnner p {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    font-family: "Raleway", sans-serif;
}

.ctaBnner p span {
    color: var(--primary);
}

.ctaBnner .btmImage {
    position: absolute;
    right: 1rem;
    bottom: -6rem;
}

/* faqSection */
.faqSection {
    background: #f8f8f8 url(../images/faqBg.png) center/cover no-repeat;
}

.faqSection #accordion .card {
    background: transparent;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 8px 0px rgba(0, 0, 0, 0.03);
    border-radius: 5px;
    padding: 0;
}

.faqSection #accordion .card .btn-link {
    --height: 5rem;
    --width: 4.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    color: #000;
    padding: 0;
    border: 0;
    font-size: 1.125rem;
    font-weight: 400;
    text-decoration: none;
    border-radius: 0;
    overflow: hidden;
    padding-left: 1.7rem;
    border-left: 7px solid var(--primary);
}

.faqSection #accordion .card .btn-link span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--width);
    height: var(--height);
    background: #232323;
    margin-right: 2rem;
}

.faqSection #accordion .card .btn-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    width: var(--width);
    height: var(--height);
    margin-left: auto;
    /* background: var(--primary); */
}

.faqSection #accordion .card .btn-link i::before {
    content: "\f068";
}

.faqSection #accordion .card .btn-link.collapsed i::before {
    content: "\f067";
}

.faqSection #accordion .card .btn-link.collapsed i {
    color: var(--black);
    /* background: #232323; */
}

.faqSection #accordion .card + .card {
    margin-top: 2rem;
}

.faqSection #accordion .card .card-body {
    padding: 0;
}

.faqSection #accordion .card .card-body p {
    color: #9e9e9e;
    font-size: 1rem;
    font-weight: 400;
    padding-left: 1.83em;
    margin: 0;
    border-left: 7px solid var(--primary);
    line-height: 33px;
}

.faqSection #accordion .card .btn-link.collapsed {
    border-color: var(--black);
}

/* .reviewSec */
.reviewSec {
    background: url(../images/testimonialBg.png) bottom/cover no-repeat;
}

.testimonialBox {
    background-color: #1D1D1D;
    position: relative;
    border-radius: 1.6875rem;
    padding: 3rem 3.125rem 1rem 2.5rem;
    margin: 4rem 10px 4rem 0px;
}

.testimonialBox .quote {
    position: absolute;
    top: -2.8125rem;
    left: 1.875rem;
}

.testimonialBox p {
    font-size: 1rem;
    color: var(--white);
}

.userContent {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: -4rem;
    gap: 2rem;
}

.userName h6 {
    color: var(--white);
    font-size: 1.375rem;
}

.userName ul {
    display: flex;
    gap: 5px;
}

.userName ul li i {
    font-size: 1.125rem;
    color: var(--primary);
}

.userContent figure {
    border: 3px solid var(--white);
    border-radius: 100%;
}

.sponsorSec {
    padding: 3rem 0;
}

.sponsorIco {
    display: grid;
    place-items: center;
}

.instaCard {
    position: relative;
}

.instaCard .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    animation: none;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out;
    transform-origin: center;
    transform: scale(0);
    background-color: rgba(255, 116, 3, 0.4);
}

.instaCard a {
    font-size: 4rem;
    color: var(--white);
}

.instaCard:hover .content {
    transform: scale(1);
}

/*footer*/

footer {
    padding: 5em 0 0rem;
    background: #1D1D1D;
}

.footerLinks ul li a {
    color: var(--white);
    font-size: 1.125rem;
    line-height: 1.5;
    display: inline-block;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.footerLinks ul li a:hover {
    color: var(--primary);
}

.footerSubtitle {
    color: var(--white);
}

.contactInfo a {
    gap: 1rem;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contactInfo a span {
    display: block;
}

.socialIo {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.5rem;
    padding: 0;
    list-style: none;
    align-items: center;
}

.socialIo li a {
    height: 3.125rem;
    width: 3.125rem;
    display: inline-grid;
    place-items: center;
    color: #757c85;
    border-radius: 50%;
    background: var(--white);
}

.socialIo li a:hover {
    background: var(--primary);
    color: var(--white);
}

.copyright {
    border-top: 1px solid rgba(238, 232, 227, 0.2);
    margin-top: 2rem;
    align-items: center;
    padding: 1.5rem 0;
}

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

.split-parent {
    overflow: hidden;
}

/*Inner Pages Start*/
.banner {
    position: relative;
}

.banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .overlay h2 {
    color: var(--white);
    font-size: 6.0625rem;
    font-weight: 800;
    line-height: 1;
    margin: 0;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
}

.banner .btmImg {
    position: absolute;
    right: 0;
    bottom: -10rem;
}

/*About page CSS Start*/
.abtSec {
    padding-top: 12rem;
}

/*About page CSS End*/
/*Product page CSS Start*/
.productIner .proCard {
    box-shadow: 0px 0px 21px 2px #d9d9d996;
}

.productIner .col-md-3 {
    margin: 2rem 0;
}

/*Product page CSS End*/
/*Shop page css start*/


.productBox {
    border: 1px solid #BEBEBE;
}

.head {
    background: #FF7403;
    padding: 1rem;
}

.shopSec .col-md-4 {
    margin: 1rem 0;
}

.head h4 {
    color: #fff;
    text-transform: uppercase;
    font-size: 1.125rem;
    font-weight: 600;
    padding-left: 1.2rem;
    margin: 0;
}

.productBox ul li {
    display: flex;
    justify-content: space-between;
    padding: 13px 2rem;
    border-top: 1px solid #bebebe99;
}

.productBox ul li a {
    color: #000;
    font-size: 1.125rem;
    font-weight: 500;
}

.productBox ul li span {
    color: #FF7403;
    font-weight: 600;
}

.checkArea {
    border: 1px solid #BEBEBE;
    border-radius: 10px;
    margin: 2rem 0;
    padding: 1rem 2rem;
}

.checkArea h4 {
    font-size: 1.125rem;
    font-weight: 500;
    padding-bottom: 10px;
}

.checkArea input {
    height: 18px;
    width: 18px;
}

.checkPath {
    display: flex;
    align-items: center;
    gap: 0 0.5rem;
    line-height: 1.9;
}

.checkPath label {
    margin: 0;
}

/*shop page css End*/
/*Blogs page css Start*/
.eventContent {
    background: var(--white);
    box-shadow: 0 13px 16px rgb(138 138 138 / 16%);
    width: 94%;
    display: table;
    margin-left: auto;
    margin-top: -2rem;
    position: relative;
    padding: 1.8rem;
}

.eventContent ul {
    display: flex;
    align-items: center;
    margin: 0 0 1rem;
}

.eventContent ul li {
    font-size: 15.69px;
    color: #888888;
    padding: 0 1rem;
}

.eventContent h2 {
    font-size: 2.2rem;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--black);
}

.eventContent p {
    color: var(--black);
    margin: 0;
    line-height: 2;
}

.eventContent ul li i {
    padding-right: 0.6rem;
}

.blogSec .col-md-6 {
    margin: 2rem 0;
}

/*Blogs page css End*/
/*Contact page css Start*/

.cntctPage {
    padding: 9rem 0;
}

.loctnLst ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.loctnLst ul li span {
    border-radius: 50%;
    background-color: #FF7403;
    width: 75px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    box-shadow: 0 0 0px 6px #ff74038c;
    flex-shrink: 0;
}

.lctnContent h2 {
    font-size: 1.1875rem;
    margin: 0 0 5px;
}

.lctnContent p {
    font-size: 1.125rem;
    color: #000000;
    margin: 0;
    line-height: 28px;
}

.lctnContent a {
    font-size: 1rem;
    color: #000000;
}

.loctnLst ul li + li {
    margin: 3rem 0 0;
}

.cntctForm span {
    display: block;
    position: relative;
}

.cntctForm span input {
    /* border-radius: 10px; */
    background-color: #fff;
    box-shadow: 0px 0px 3px 1px rgb(0 0 0 / 14%);
    height: 80px;
    width: 100%;
    font-size: 1.125rem;
    border: 0;
    padding: 0 3.3rem;
    margin: 0 0 2rem;
}

.cntctForm span i {
    position: absolute;
    top: 27px;
    left: 15px;
    font-size: 1.5rem;
    color: #959595;
}

.cntctForm span textarea {
    background-color: #fff;
    box-shadow: 0px 0px 3px 1px rgb(0 0 0 / 14%);
    height: 209px;
    width: 100%;
    font-size: 1.125rem;
    border: 0;
    padding: 1.5rem 3.3rem;
}

.chkOne label {
    margin: 0 0 0 10px;
    font-size: 1.125rem;
    color: #828282;
    font-weight: 400;
}

.chkOne input {
    width: 20px;
    height: 20px;
}

.chkOne .themeBtn {
    display: table;
    border: 0;
    margin-top: 2rem;
}

.chkOne {
    margin-top: 1.5rem;
}


/*Contact page css End*/
/*Inner Pages ENd*/