@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;
  --theme-color: #7d36ba;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Poppins", sans-serif;
}
/* 
@media (min-width: 1700px) {
  .container {
    max-width: 1366px;
  }
} */

.container-fluid {
  max-width: 1480px;
  margin: 0 auto;
}

@font-face {
  font-family: "Silk Serif";
  src: url("../fonts/Silk-Serif.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.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: 8rem 0;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #828288;
}

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;
}
.topRow {
  padding: 5px 0;
  background: #1f2020;
}
.topRow p {
  text-align: center;
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  color: var(--white);
}
header {
  /* position: absolute; */
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99999;
  top: 0;
  width: 100%;
  background: var(--white);
  transition: 0.3s ease-in-out;
}

header.sticky {
  position: fixed;
}

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

.navbar-nav {
  gap: 1rem 2.5rem;
}
.navbar-nav .nav-item .nav-link {
  font-size: 1.25rem;
  font-family: "Silk Serif";
  font-weight: normal;
  color: #404558;
  text-transform: capitalize;
  line-height: 1;
  padding: 0;
  position: relative;
}
.navbar-nav .nav-item .nav-link::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: transform 0.3s ease-in-out;
  background-color: var(--theme-color);
  transform-origin: center;
  transform: scaleX(0);
}

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

.navbar-nav .nav-item.active .nav-link::after,
.navbar-nav .nav-item .nav-link:hover::after {
  transform: scaleX(1);
}
.form-inline {
  gap: 1.5rem;
}
.form-inline a {
  color: #404558;
  font-size: 1.25rem;
}
.cartBtn {
  position: relative;
}
.cartBtn span {
  border-radius: 50%;
  font-size: 8px;
  color: var(--white);
  text-align: center;
  position: absolute;
  right: -5px;
  top: -5px;
  display: inline-grid;
  place-items: center;
  background-color: var(--theme-color);
  width: 15px;
  height: 15px;
}
.main-slider {
  position: relative;
}
.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  text-align: left;
  align-items: center;
  justify-content: center;
}

.main-slider h2 {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 2px;
}
.main-slider h2 span.line {
  background-color: var(--white);
  width: 230px;
  vertical-align: middle;
  display: inline-block;
  height: 1px;
}
.main-slider h3 {
  font-size: 2.5rem;
  font-family: "Silk Serif";
  color: var(--white);
  line-height: 1.2;
  text-align: left;
}
.main-slider p {
  font-size: 2.1875rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  display: inline-block;
  position: relative;
}
.main-slider p::before {
  content: "";
  position: absolute;
  height: 12px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: var(--theme-color);
}
.main-slider .btn-group {
  gap: 1rem;
  margin-top: 0.5rem;
}

.themeBtn {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--white);
  display: inline-block;
  background: var(--theme-color);
  border-radius: 50px;
  padding: 0.5em 1.5em;
  text-transform: uppercase;
  line-height: 1;
  border: 2px solid var(--theme-color);
}
.themeBtn:hover {
  color: var(--theme-color);
  background: var(--white);
}
.main-slider .themeBtn {
  background: var(--white);
  color: #06070b;
  border-color: var(--white);
}
.main-slider .themeBtn:hover {
  background: var(--theme-color);
  color: var(--white);
}
.playBtn {
  font-size: 12px;
  color: var(--white);
  background: var(--theme-color);
  height: 3.125rem;
  width: 3.125rem;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--theme-color);
}
.playBtn:hover {
  background: var(--white);
  color: var(--theme-color);
}
.absImg1 {
  position: absolute;
  left: 5rem;
  z-index: 1;
  bottom: -5rem;
  animation: pulse infinite 2s;
}
.absImg2 {
  position: absolute;
  right: 10rem;
  z-index: 1;
  bottom: -5rem;
  animation: wobble infinite 5s;
}

/* Search Box */
.searchBox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1111;
  height: 100%;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgb(0 0 0 / 50%);
}
.searchBox .form-group {
  width: 100%;
  max-width: 50%;
  margin: 0 auto;
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.searchBox input {
  min-height: 60px;
  width: 100%;
  border: none;
  padding: 1rem;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}
.searchBox button {
  background: #fff;
  color: #000;
  width: 60px;
  min-height: 60px;
  border: none;
}
.searchBox .searchClose {
  position: absolute;
  display: block;
  right: 2rem;
  top: 2rem;
  color: #fff;
  font-size: 2.15rem;
  cursor: pointer;
}

.secHeading {
  font-family: "Silk Serif";
  font-size: 3.125rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1;
  position: relative;
  margin-bottom: 1.5rem;
  text-transform: capitalize;
}
.secHeading::before {
  content: "";
  position: absolute;
  left: 50%;
  height: 1px;
  bottom: -1rem;
  width: 230px;
  background-color: #06070b;
  transform: translateX(-50%);
}
.secHeading::after {
  content: "";
  position: absolute;
  left: 50%;
  height: 1px;
  bottom: -1.375rem;
  width: 160px;
  background-color: #06070b;
  transform: translateX(-50%);
}

/* Product Section*/
.product-section {
  padding-bottom: 10rem;
}
.product-section .absImg3 {
  position: absolute;
  left: 3rem;
  bottom: -5rem;
}
.product-section .absImg4 {
  position: absolute;
  right: 0rem;
  bottom: -10rem;
}
.pro-card {
  margin-bottom: 1.75rem;
  display: block;
  transition: 0.3s ease-in-out;
}
.pro-card .imgWrap {
  display: block;
  overflow: hidden;
}
.pro-card .imgWrap img {
  width: 100%;
  /* transition: 0.3s ease-in-out; */
}
.pro-card .content {
  text-align: center;
  padding: 1.25rem;
  border: 1px solid #d7d7d7;
  background: var(--white);
  /* height: 167px; */
}
.pro-card .content h3 {
  font-size: 1.875rem;
  font-weight: 400;
  color: #2b2b2b;
  line-height: 1;
}
.pro-card .content p {
  font-size: 14px;
  color: #5e5e5e;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.pro-card .content a {
  font-size: 1rem;
  color: #2b3044;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: underline !important;
}
/* .pro-card:hover .imgWrap img {
  transform: scale(1.125);
} */
.pro-card:hover .content a {
  color: #9d57d8;
}
.pro-card:hover {
  box-shadow: 0px 4px 24px 0px rgb(209 209 209 / 80%);
}

/* cta-banner */
.cta-banner {
  background: url(../images/leftImg.jpg) left/auto no-repeat,
  url(../images/rightImg.png) right/auto no-repeat;
  background-color: var(--theme-color);
}

.cta-banner h2 {
  font-family: "Silk Serif";
  font-size: 4.75rem;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
}
.cta-banner p {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--white);
}

.cta-banner .themeBtn {
  background: var(--white);
  color: #06070b;
  border-color: var(--white);
}
.cta-banner .themeBtn:hover {
  background: var(--theme-color);
  color: var(--white);
}

/* featured-section */

.feature-card {
  position: relative;
}
.feature-card .saleTag {
  border-radius: 50%;
  background: #151a28;
  display: inline-grid;
  place-items: center;
  width: 49px;
  height: 49px;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  color: var(--white);
  font-size: 14px;
}
.feature-card .imgWrap {
  background: #f4f4f4;
  padding: 1rem 0 2rem;
  display: grid;
  place-items: center;
}
.feature-card .content {
  padding: 0.5rem 0 1rem;
  border-bottom: 1px solid #e1e1e1;
}
.feature-card .content p {
  margin: 0;
  font-weight: 600;
  color: #919191;
  font-size: 14px;
}
.feature-card .content p strong {
  color: var(--black);
  font-weight: 600;
  margin-left: 5px;
}
.feature-card .content h3 {
  font-size: 1rem;
  color: #333333;
  font-weight: 700;
  line-height: 1.625;
  margin-bottom: 0em;
}
.feature-card .content h3 span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #494949;
  line-height: 1;
}
.feature-card .content ul {
  display: flex;
  align-items: center;
}
.feature-card .content ul li {
  font-size: 14px;
  color: #938b96;
}
.feature-card .arrowBtn {
  border: 1px solid #d7d7d7;
  width: 34px;
  height: 34px;
  font-size: 1rem;
  color: #938b96;
  display: inline-grid;
  place-items: center;
}

.feature-card .arrowBtn:hover {
  background: var(--theme-color);
  color: var(--white);
  border-color: var(--theme-color);
}

.featured-slider .swiper-button-next::after,
.featured-slider .swiper-button-prev::after {
  display: none;
}
.featured-section .swiper-button-next {
  color: var(--black);
  font-size: 1.25rem;
  right: 0;
  background: none;
}
.featured-section .swiper-button-prev {
  color: var(--black);
  font-size: 1.25rem;
  left: 0;
  background: none;
}

/* other-section */
.other-card {
  text-align: center;
}
.other-card h3 {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #494949;
  line-height: 1.182;
}

.other-card p {
  font-size: 12px;
  color: #4f4f4f;
  line-height: 1.833;
}

/* Footer Css */
footer {
  position: relative;
}
footer .absImg5 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 16rem;
}
footer .absImg6 {
  position: absolute;
  right: 0;
  bottom: 0;
}
footer .container {
  padding-top: 4rem;
  border-top: 1px solid #d7d7d7;
}

footer h3 {
  font-size: 1.375rem;
  font-family: "Silk Serif";
  color: #494949;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1.5rem;
  position: relative;
}

footer h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 1px;
  width: 60px;
  background: var(--black);
}

footer .links li a {
  font-size: 14px;
  color: #404558;
  line-height: 1;
  display: inline-block;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

footer .cntctInfo li a {
  font-size: 14px;
  font-weight: 400;
  color: #404558;
  line-height: 1.571;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.copyRight {
  border-top: 1px solid #d7d7d7;
  margin-top: 4rem;
  padding: 1rem 0;
  align-items: center;
}
.copyRight p {
  font-size: 1rem;
  color: #404558;
  line-height: 1;
  margin: 0;
  text-align: center;
}
.socialIo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.socialIo li a {
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 50%;
  font-size: 1.125rem;
  display: inline-grid;
  place-items: center;
  color: #404558;
  border: 1px solid #e1e1e1;
}
.socialIo li a:hover {
  background-color: var(--theme-color);
  color: var(--white);
}

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

/* loader */

.preLoader {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
}

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

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

/*Inner pages CSS start*/

/*About page css start*/
.banner {
  position: relative;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlay h2 {
  font-size: 3.75rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
  position: relative;
  z-index: 1;
  font-family: "Silk Serif";
  display: inline-block;
}
.overlay h2::before {
  content: "";
  position: absolute;
  height: 12px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: var(--theme-color);
}

.banner .absImg3 {
  position: absolute;
  right: 15rem;
  bottom: -18rem;
  z-index: 1;
  animation: wobble infinite 5s;
}

.InerHeading {
  font-size: 4.375rem;
  font-weight: 800;
  font-family: 'Silk Serif';
}
.abtSec{
  padding-top: 14rem;
}
.abtSec p + p {
  padding-top: 3rem;
}
/*About page css end*/

/*Blog page css Start*/
.blogSec{
  padding-top: 12rem;
}
.blogSec .pro-card {
  margin-bottom: 1.75rem;
  display: block;
  transition: 0.3s ease-in-out;
}
.blogSec .pro-card .imgWrap {
  display: block;
  overflow: hidden;
}
.blogSec .pro-card .imgWrap img {
  width: 100%;
  /* transition: 0.3s ease-in-out; */
}
.blogSec .pro-card .content {
  text-align: center;
  padding: 1.25rem;
  border: 1px solid #d7d7d7;
  background: var(--white);
  /* height: 167px; */
}
.blogSec .pro-card .content h3 {
  font-size: 1.75rem;
  font-weight: 500;
  color: #2b2b2b;
  line-height: 1;
}
.blogSec .pro-card .content p {
  font-size: 14px;
  color: #5e5e5e;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.blogSec .pro-card .content a {
  font-size: 1rem;
  color: #2b3044;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: underline !important;
}

.blogSec .pro-card:hover .content a {
  color: #9d57d8;
}
.blogSec .pro-card:hover {
  box-shadow: 0px 4px 24px 0px rgb(209 209 209 / 80%);
}
.date {
  background: var(--theme-color);
  width: 23%;
  height: 14%;
  position: absolute;
  bottom: 15.1rem;
  text-align: center;
}
.date h2 {
  font-size: 2.125rem;
  font-weight: 600;
  color: #fff;
  margin: 10px 0 0;
}

.date h6 {
  color: #fff;
  font-weight: 600;
  font-size: 1.625rem;
}
/*Blog page css end*/

/*Contact page css Start*/
.contactSec {
  background: #f7f7f7;
}
.contactSec input {
  height: 3.9rem;
  width: 100%;
  border: none;
  margin: 0.7rem 0;
  padding-left: 1rem;
}
.contactSec textarea {
  width: 100%;
  padding-left: 1rem;
  border: none;
  padding-top: 1rem;
  margin: 0.7rem 0;
}
.contactSec button {
  border-radius: 0;
  padding: 1.3rem 1.9rem;
  border: none;
}

.cntctPage .container-fluid{
  max-width: 100%;
}
.cntctPage {
  background: var(--theme-color);
  padding: 0;
  margin-bottom: 1rem;
}


.loctnLst {
  padding: 4rem 0 4rem 21rem;
  color: #fff;
}
.lctnContent p , .lctnContent a {
  color: #fff;
}
.loctnLst h4 {
  margin: 0;
  font-size: 1.7rem;
}
.loctnLst ul li {
  display: flex;
  align-items: center;
  padding: 1rem 0 3rem 0;
  border-bottom: 1px solid #9d9b9b;
}
.lctnContent h2 {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 5px;
}

.loctnLst i {
  font-size: 3rem;
  padding: 0 1rem;
}
/*Contact page css end*/

/*Inner pages CSS End*/

