/** Shopify CDN: Minification failed

Line 2313:38 Expected ":"

**/
/*
 * ----- Levitate Global Stylesheet -----
 * --------------------------------------------------------------------------------------------------------
 * This global stylesheet contains generalised styling for the entire website.
 * Only modify styles, don't add styles directly to it.
 * --------------------------------------------------------------------------------------------------------
*/

/*
* =============================================
* Initial styling
* ============================================= 
*/

/*=====Custom Fonts=====*/
@font-face {
  font-family: "Adobe Garamond Pro";
  src: url(/cdn/shop/files/AGaramondPro-Regular.woff?v=1749036380);
}
@font-face {
  font-family: "Manasco Bold";
  src: url(/cdn/shop/files/Manasco_Bold_Bold.otf?v=1748592619);
}
@font-face {
  font-family: "Sharp Sans";
  src: url(/cdn/shop/files/SharpSansSemibold.otf?v=1749040440);
  font-weight: 600;
}
@font-face {
  font-family: "Sharp Sans Bold";
  src: url(/cdn/shop/files/SharpSansBold.otf?v=1749109883);
  font-weight: bold;
}
:root {
  font-size: 16px;
  --primary: #010023;
  --secondary: #D4AF37;
  --dark: #010023;
  --darkAlt: #000000;
  --light: #fff;
  --grid-desktop-horizontal-spacing: 15px;
  --grid-desktop-vertical-spacing: 15px;
  --grid-mobile-horizontal-spacing : 15px;
  --grid-mobile-vertical-spacing:15px;

  /* Fonts */
  --headings: "Adobe Garamond Pro", sans-serif;
  --text: "Sharp Sans", sans-serif;
  --button: "Sharp Sans", sans-serif;
  --newheadings: "Adobe Garamond Pro";

  /* Animations */
  --ease: all 0.35s ease;
  --cubic: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

*:focus-visible {
  outline: none;
  outline-offset: unset;
  box-shadow: none;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  color: var(--dark);
}

body {
  font-family: var(--text);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0;
}

/*
* =============================================
* Headings
* ============================================= 
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--headings);
  font-weight: bold;
  line-height: 115%;
  margin: 0;
  font-weight: normal;
  letter-spacing: 0;
}

h1 {
  font-size: 2.75rem;

  @media (min-width: 768px) {
    font-size: 3.5rem;
  }

  @media (min-width: 1500px) {
    font-size: 4rem;
  }
}

h2 {
  font-size: 2.5rem;

  @media (min-width: 768px) {
    font-size: 3rem;
  }
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.1rem;
}

/*
* =============================================
* Text, lists, inputs, links
* ============================================= 
*/

p,
ul,
ol {
  font-size: 1rem;
  line-height: 200%;
  font-weight: 500;

  @media (min-width: 768px) {
    font-size: 1.1rem;
  }
}

p {
  margin-bottom: 1rem;

  &:last-child {
    margin-bottom: 0;
  }
}

ul,
figure {
  margin: 0;
}

/* Set font-family on inputs */
input {
  font-family: var(--text);
}
/*
*
* ---=======Header=====-----
*
*/
.header {
  position: relative;
  z-index: 777;
  width: 100%;
  max-width: 1512px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem !important;
  @media screen and (max-width: 567px) {
    padding: 1rem 1rem !important;
  }
}
/*
.header__icons {
  padding-right: 0;
}
.header__menu-item span {
  font-size: 16px;
  font-family: var(--text);
}
a#cart-icon-bubble {
  span.svg-wrapper {
    width: 50px;
    svg.icon.icon-cart-empty {
      width: 45px !important;
      height: 45px !important;
    }
  }
}*/
/*.header__icon--cart {
  margin-right: 0rem;
}
.header__icon,
.header__icon--cart .icon {
  height: auto;
  width: 35px;
}
*/
/*
* =============================================
* Heading Wrapper
* ============================================= 
*/

.headingWrapper {
  display: flex;
  gap: 2rem;
  padding: 0;
  text-align: left;

  @media (min-width: 768px) and (max-width: 1199px) {
    align-items: center;
    text-align: center;
  }

  h2 {
    @media (min-width: 768px) and (max-width: 1199px) {
      margin: auto;
      max-width: 75%;
      text-align: inherit;
    }
  }
}

/*
* =============================================
* Rows & Wrappers
* ============================================= 
*/

/* Row */
.row:not(.banner) {
  padding: 0;
  width: 100%;
}

/* Wrapper */
.wrapper {
  width: 100%;
  max-width: 1512px;
  margin: 0 auto;
  padding: 5rem 1.5rem;

  @media (min-width: 768px) and (max-width: 1199px) {
    padding: 5rem 2rem;
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  @media (min-width: 1200px) {
    padding: 5rem 3rem;
  }

  @media (min-width: 1500px) {
    padding: 5rem 3rem;
  }
  @media screen and (max-width: 768px) {
    padding: 5rem 2rem;
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  @media (max-width:567px) {
    padding: 3rem 1rem;
  }
}
/* Wrapper ------ Centered */
.wrapper.centered {
  justify-content: center;
  align-items: center;
  gap: 3rem;
  text-align: center;

  @media (min-width: 768px) {
    gap: 5rem;
  }

  .headingWrapper {
    @media (min-width: 768px) {
      align-items: center;
      text-align: center;

      .divider {
        justify-content: center;
      }

      h1,
      h2,
      p {
        margin: 0 auto;
      }
    }
  }
}
/* SplitCols*/
.splitCols {
  display: flex;
  flex-direction: row;
  gap: 6rem;
  align-content: center;
  .cols {
    flex-basis: calc(50% - 3rem);
    @media screen and (max-width: 1199px) {
      flex-basis: 100%;
    }
    @media screen and (max-width: 991px) {
      /*aspect-ratio: auto !important;
      width: 100%;*/
    }
    @media screen and (max-width: 767px) {
      aspect-ratio: auto;
      width: 100%;
    }
  }
  @media screen and (max-width: 1199px) {
    gap: 3rem;
  }
}

/* Wrapper ------ Mobile Centered */
.wrapper.mobileCentered {
  .headingWrapper {
    @media (min-width: 767px) {
      align-items: center;
      text-align: center;

      .divider {
        justify-content: center;
      }

      h1,
      h2,
      p {
        margin: 0 auto;
      }
    }
  }
}
a {
  text-decoration: none;
}

/* Wrapper ------- Dual Cols */
.wrapper.dualCols {
  @media (min-width: 1200px) {
    flex-direction: row;
  }

  @media (min-width: 1500px) {
    gap: 5rem;
  }

  .col {
    flex-direction: column;
  }
}

/* Wrapper ----- Reverse rows on desktop */
.wrapper.dualCols.reversed {
  @media (min-width: 1200px) {
    flex-direction: row-reverse;
  }
}

/* Wrapper ----- Reverse cols on tablet */
.wrapper.dualCols.tabletColReversed {
  @media (min-width: 768px) and (max-width: 1199px) {
    flex-direction: column-reverse !important;
  }
}

/* Wrapper ------ Specified Padding rules */
@media all {
  /* Wrapper ----- No Padding Top */
  .noPaddingTop .wrapper {
    padding-top: 0;
  }
  /* Wrapper ----- No Padding Bottom */
  .noPaddingBottom .wrapper {
    padding-bottom: 0;
  }
}

@media (min-width: 1200px) {
  /* Wrapper ----- No Padding Right */
  .noPaddingRight .wrapper {
    padding-right: 0;
  }
  /* Wrapper ----- No Padding Left */
  .noPaddingLeft .wrapper {
    padding-left: 0;
  }
}

/*===Specific Padding Rule====*/
.wrapper.padTop {
  padding-top: 4rem;
}
.wrapper.padBottom {
  padding-bottom: 4rem;
}
.wrapper.padTopBottom {
  padding-bottom: 4rem;
  padding-top: 4rem;
}
/*
* =============================================
* Banners
* ============================================= 
*/
.banner {
  background-repeat: no-repeat;
  background-size: cover;
  align-items: center;
  justify-content: center;
  position: relative;

  @media (min-width: 768px) {
    background-position: center center;
  }
  /* Set height and padding for .wrapper */
  .wrapper {
    justify-content: center;
    padding-top: 8rem;
    padding-bottom: 8rem;
    z-index: 1;

    @media (min-width: 1200px) {
      min-height: calc(80vh - 5rem);
      justify-content: center;
      padding-top: 8rem;
      padding-bottom: 8rem;
    }
    @media screen and (max-width: 1199px) {
      padding-top: 4rem;
      padding-bottom: 4rem;
    }
    @media screen and (max-width: 767px) {
      padding-top: 4rem;
      padding-bottom: 4rem;
    }
  }
}
.innerBanner {
  .wrapper {
    min-height: auto;
  }
}
/*==OverlayBanner==*/
.overlay-yes {
  position: relative;
  &:after {
    content: "";
    background-image: linear-gradient(90deg, rgb(0 0 0 / 50%) 0%, #0000 60%);
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    opacity: 1;
    @media screen and (max-width: 1199px) {
      opacity: 1;
      background-color: #000;
      background-image: none;
    }
  }
  &:before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    background-image: linear-gradient(
      180deg,
      #f8d3d8 7%,
      rgb(248 211 216 / 0%) 50%
    );
    z-index: 1;
  }
}
/*
* =============================================
* Home Banner
* ============================================= 
*/
html {
  .homeBanner {
    .wrapper {
      @media screen and (max-width: 1199px) {
        justify-content: center;
        align-items: center;
        text-align: center;
      }
    }
  }
}
/*
* =============================================
* Dividers
* ============================================= 
*/

.divider {
  display: flex;
  width: auto;

  svg {
    width: 100%;

    @media (min-width: 576px) {
      width: auto;
    }
  }
}

.divider.primary svg {
  fill: var(--primary);
}

.divider.secondary svg {
  fill: var(--secondary);
}
.divider.light svg {
  fill: var(--light);
}

.divider.dark svg {
  fill: var(--dark);
}
/*
* =============================================
* Small Title Highlight
* ============================================= 
*/
.gradientColorprimary {
  strong {
    background-color: var(--primary);
    color: var(--dark);
  }
}
.gradientColorsecondary {
  strong {
    background-color: var(--secondary);
    color: var(--dark);
  }
}
/*
* =============================================
* Buttons
* ============================================= 
*/

.buttons {
  flex-direction: row !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding: 0;

  @media (min-width: 768px) {
    justify-content: center;
  }

  @media (min-width: 1200px) {
    justify-content: flex-start;
  }
}
.buttons.end {
  @media (min-width: 1200px) {
    justify-content: flex-end;
  }
}

.buttons.centered {
  @media (min-width: 768px) {
    justify-content: center;
  }
}

/* Buttons */

.btn-combs {
  display: flex;
  gap: 15px;
  flex-direction: row;
  @media screen and (max-width: 1400px) {
    gap: 20px;
  }
  @media screen and (max-width: 1199px) {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  @media screen and (max-width: 767px) {
    flex-direction: column;
    align-items: center;
  }

  a {
    font-size: 14px;
    line-height: 54px;
    font-family: var(--headings);
    border: 2px solid;
    padding: 0 1.2rem;
    font-weight: 600;
    display: flex;
    border-radius: 40px;
    transition: var(--ease);
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    svg {
      width: 20px;
      margin-left: 15px;
      transition: var(--ease);
      top: -1px;
      position: relative;
    }
    &:hover {
      svg {
        transform: translateX(0.2rem);
      }
    }
    @media screen and (max-width: 767px) {
      font-size: 14px;
    }
    @media screen and (max-width: 400px) {
      font-size: 10px;
      line-height: 40px;
    }
  }
}
.btnClass {
  font-size: 16px;
  line-height: 60px;
  font-family: var(--button);
  border: 2px solid;
  padding: 0 2rem;
  font-weight: 600;
  display: flex;
  border-radius: 10px;
  transition: var(--ease);
  justify-content: center;
  align-items: center;
  svg {
    width: 20px;
    margin-left: 15px;
    transition: var(--ease);
  }
  &:hover {
    svg {
      transform: translateX(0.2rem);
    }
  }
  @media screen and (max-width: 767px) {
    font-size: 14px;
  }
}
/* Gradient Btns */
.btn-combs {
  a.gradientBtn {
    background: var(--gradient);
    border: none;
    line-height: 62px;
    color: var(--dark);
  }
  a.borderBtn {
    border-color: var(--light);
    color: var(--light);
    svg {
      path {
        stroke: var(--light);
      }
    }
    &:hover {
      background-color: var(--primary);
      border-color: var(--primary);
      color: var(--light);
      svg {
        path {
          stroke: var(--light);
        }
      }
    }
  }
  a.darkBtn {
    background-color: var(--dark);
    border-color: var(--dark);
    color: var(--light);
  }
  a.primaryBtn {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--light);
    svg {
      fill: var(--light);
      transition: var(--ease);
      path {
        stroke: var(--light);
      }
    }
    &:hover {
      svg {
        transform: translateX(0.2rem);
      }
    }
  }
  .secondaryBtn {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--light);
    svg {
      fill: var(--light);
      transition: var(--ease);
    }
    &:hover {
      svg {
        transform: translateX(0.2rem);
      }
    }
  }

  a.whiteBtn {
    background-color: var(--light) !important;
    border-color: var(--light) !important;
    color: var(--primary) !important;
    svg {
      fill: var(--primary) !important;
      transition: var(--ease) !important;
    }
    &:hover {
      svg {
        transform: translateX(0.2rem) !important;
      }
    }
  }

  .secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
    svg {
      fill: var(--primary);
      transition: var(--ease);
    }
    &:hover {
      svg {
        transform: translateX(0.2rem);
      }
    }
  }
}
.light-combs {
  .btn-combs {
    a.secondaryBtn {
      color:var(--dark);
      svg {
        fill: var(--dark);
      }
    }
    .borderBtn {
      border-color:var(--light);
      svg {
        fill: var(--secondary);
        path {
          stroke: var(--secondary);
        }
      }
    }
  }
}
/* Ken Burns style Effect */
@media (min-width: 1200px) {
  .kenBurns {
    background-size: 100%;
    animation: kenBurns 60s ease-in-out infinite;

    @keyframes kenBurns {
      0% {
        background-size: 100%;
      }

      100% {
        background-size: 170%;
      }
    }
  }
}

.full-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

/* Banner */
.common-banner {
  min-height: 750px;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  .wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
    align-content: center;
    align-items: end;
  }
}
/* Colors*/
.lightText {
  color: var(--light);
}

/* Image On Right */
.wrapper.imageRight {
  flex-direction: row-reverse;
  @media screen and (max-width: 1199px) {
    flex-direction: row;
  }
  @media screen and (max-width: 991px) {
    flex-direction: row;
  }
}

.description p {
  margin-top: 0;
  font-size: 17px;
  line-height: 28px;
  letter-spacing: 0;
  font-weight: 500;
  @media (max-width:567px) {
    font-size: 13px;
    line-height: 24px;
  }
}
/* Rev Combination */
.rev-combs {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-self: center;
  @media screen and (max-width: 1199px) {
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
  }
  @media screen and (max-width: 767px) {
    max-width: 100% !important;
  }
  .smallTitle {
    font-size: 12px;
    font-family: var(--text);
    font-weight: bold;
    display: flex;
    align-items: center;
    text-transform: uppercase;
  }
  .mainTitle {
    font-family: var(--headings);
    font-size: 44px;
    line-height: 49px;
    text-transform: capitalize;
    @media screen and (max-width: 991px) {
      
    }
    @media screen and (max-width: 500px) {
      font-size: 100%;
      line-height: 130%;
    }
    strong {
      -webkit-text-stroke-width: 1px;
      stroke-width: 1px;
      letter-spacing: 2px;
    }
  }
}
/* Center titles */
.rev-combs.centerIt {
  justify-content: center;
  align-items: center;
  text-align: center;
}
.rev-combs.rightIt {
  align-items: flex-end;
  @media screen and (max-width: 1199px) {
    align-items: center;
  }
}
.type-highLight {
  strong {
    padding: 3px 15px;
    margin-right: 10px;
    border-radius: 4px;
    font-weight: 700;
  }
}
/*========DARK COLOR========*/

.dark-combs {
  .smallTitle {
    color: var(--dark);
  }
  .mainTitle {
    color: var(--dark);
    strong {
      -webkit-text-stroke-color: var(--dark);
      stroke: var(--dark);
      color:transparent;
    }
  }
  .description * {
    color: var(--dark);
  }
  .btn-combs {
    a.borderBtn {
      border-color: var(--dark);
      color: var(--dark);
      svg {
        fill: var(--dark);
        path {
          stroke: var(--dark);
        }
      }
      &:hover {
        border-color: var(--primary);
        color: var(--light);
        svg {
          fill: var(--light);
          path {
            stroke: var(--light);
          }
        }
      }
    }
    .secondaryBtn {
      color: var(--dark);
    }
  }
}

/*========Light COLOR========*/

.light-combs {
  .smallTitle {
    color: var(--light);
  }
  .mainTitle {
    color: var(--light);
    strong {
      -webkit-text-stroke-color: #FFFFFF;
      stroke: #FFFFFF;
    }
  }
  .description * {
    color: var(--light);
  }
}
/* =====Split Cols for image and content===== */
.image {
  figure {
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 15px;
    margin: 0;
    box-shadow: 15px 15px var(--primary);
    @media screen and (max-width: 1199px) {
      min-height: 600px;
      min-width: fit-content;
      aspect-ratio: 1;
    }
    @media screen and (max-width: 991px) {
      min-height: 500px;
    }
    @media screen and (max-width: 767px) {
      aspect-ratio: auto;
    }
  }
}

/*
*
******==========Carousel Slider=================***** 
*
*/
.levitateCarouselMaster {
  .slick-track {
    display: flex;
    gap: 2rem;
  }
  .slick-list.draggable {
    padding: 0 !important;
  }
  .arrows {
    border: 2px solid white;
    padding: 0;
    border-radius: 100%;
    display: inline-block !important;
    height: 70px;
    line-height: 74px;
    width: 70px;
    text-align: center;
    svg {
      width: 30px;
      fill: var(--light);
    }
  }
  span.prev.arrows {
    transform: rotate(180deg);
  }
}

/* ----Arrow center----- */
.arrowCenter {
  position: relative;
  .arrows {
    position: absolute;
    top: calc(50% - 70px);
    z-index: 1;
    left: 0;
  }
  span.next.arrows {
    right: 0;
    left: auto;
  }
}
/*==Center But Out Arrows==*/
.arrowOuter {
  padding: 0 80px;
  @media screen and (max-width: 767px) {
    padding: 0 0px;
  }
  .slick-list.draggable {
  }
}
/* ====No Arrows==== */
.arrowHide .arrows {
  display: none !important;
}
/* ----Arrow Top----- */
.arrowTop {
  position: relative;
  .arrows {
    top: -140px;
    right: 0;
    position: absolute;
    left: auto;
    border-radius: 45px;
    width: 120px;
    background-color: var(--primary);
    border-color: var(--primary);
  }
  span.prev.arrows {
    right: 140px;
    background-color: var(--secondary);
    border-color: var(--secondary);
  }
}
/*=Arrow Right Top=*/
.arrowTopRight {
  position: relative;
  .arrows {
    right: auto;
    left: 140px;
  }
  span.prev.arrows {
    left: 0px;
    right: auto;
  }
}

ul.slick-dots {
  padding: 0;
  list-style: none;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
  transition: var(--ease);
  li {
    width: 60px;
    height: 7px;
    margin: 0 5px;
    /*border: 2px solid var(--primary);
    border-radius: 100px;*/
    transition: var(--ease);
    background-color: var(--primary);
    @media (max-width:567px) {
      width: 40px;
      height: 4px;
    }
  }
  li.slick-active {
    background-color: var(--secondary);
    transition: var(--ease);
  }
  button {
    opacity: 0;
  }
}
/* ----partnerLogos----- */
.partnerLogos figure {
  width: 100%;
  margin: 0;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: white;
  background-size: 120px;
  transition: var(--ease);
  @media screen and (max-width: 500px) {
    width: 100%;
    height: 60px;
  }
  &:hover {
    transition: var(--ease);
    background-color: rgb(211 211 211 / 29%);
  }
}

/*=====Instagram=====*/
.instagramWrapper {
  figure {
    margin: 0;
    width: 100%;
    height: 315px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    background-size: cover;
  }
  a {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 60%);
    top: 0;
    z-index: 1;
    bottom: 0;
    transition: var(--ease);
    transform: translateY(125vh);
    svg {
      fill: var(--secondary);
      width: 50px;
      path {
        stroke: var(--secondary);
      }
    }
  }
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  transition: var(--ease);
  &:hover {
    a {
      transition: var(--ease);
      transform: translateY(0vh);
      border-radius: 5px;
    }
  }
}

@media screen and (min-width: 750px) {
  .newsletter-form {
    align-items: center !important;
    margin: 0 auto !important;
    max-width: 1100px !important;
  }
}
.field:after,
.select:after,
.customer .field:after,
.customer select:after,
.localization-form__select:after {
  display: none;
}

/* =====================Footer============================= */
/* Footer*/
.footer__content-top.page-width {
  padding-bottom: 0;
}
.footer-block__details-content > li:not(:last-child) {
  margin-right: 0 !important;
  display: flex;
  padding-bottom: 15px;
}
.footer__content-bottom-wrapper.page-width {
  color: var(--dark);
}
footer.footer {
  background-position: center;
  background-size: cover;
  .footer-block__image-wrapper {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    .list-social__link {
      align-items: center;
      display: flex;
      padding: 20px 10px;
      color: var(--primary);
      .svg-wrapper {
        width: 30px;
        height: 30px;
      }
    }
  }
  .footer-block--menu {
    padding-left: 30px;
    .list-unstyled svg {
      fill: var(--dark);
      margin-right: 15px;
    }
    a.link {
      color: var(--dark);
      font-size: 16px;
      padding: 0;
    }
    @media screen and (max-width: 767px) {
      padding-left: 0px;
      margin: 0;
    }
  }
  h2.footer-block__heading.inline-richtext,
  h2.footer-block__heading.rte {
    position: relative;
    color: var(--dark);
  }

  @media screen and (max-width: 767px) {
    .footer-block__details-content {
      margin-bottom: 2rem;
    }
    .footer-block__image-wrapper {
      margin-bottom: 0rem;
    }
    ul.footer-block__details-content.list-unstyled li {
      display: flex;
    }
    .footer-block.grid__item {
      margin: 0rem 0;
    }
  }
}
.footer__content-bottom {
  border-top: none !important;
}
.footer-block--menu:before {
  content: "";
  height: 100%;
  width: 1px;
  background: var(--dark);
  top: 0;
  position: absolute;
  left: 0rem;
}
@media screen and (max-width: 1199px) {
  .footer-block--menu:before {
    left: 0rem;
  }
}
@media screen and (max-width: 1023px) {
  .footer-block--menu:before {
    display: none;
  }
}
@media screen and (max-width: 1400px) {
  .footer__content-top.page-width {
    padding: 0 2.5rem;
  }
}
@media screen and (max-width: 1199px) {
  .footer__content-top.page-width {
    padding: 0 1.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .grid--4-col-tablet .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
  }
  .footer__content-top .grid {
    row-gap: 2rem;
  }
}
/* Content */
.description {
  ul {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 1rem;
    font-weight: 500;
    flex-wrap: wrap;
    @media screen and (max-width: 1199px) {
      justify-content: center;
    }
    @media screen and (max-width: 567px) {
      flex-direction: column;
      align-items: anchor-center;
    }
    li {
      padding-left: 40px;
      background-image: url("/cdn/shop/files/group.webp?v=1747214132");
      background-repeat: no-repeat;
      background-position: left center;
      @media screen and (max-width: 1199px) {
        width: auto;
        flex-basis: auto;
      }
    }
  }
}

/*=======Blog Home Slider========*/
.blogWrapper {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 415px;
  display: flex;
  transition: var(--ease);
  align-items: end;
  @media screen and (max-width: 767px) {
    justify-content: center;
  }
  figure {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    background-position: center;
    z-index: -1;
    &:after {
      content: "";
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgb(0 0 0 / 50%);
      position: absolute;
    }
  }
  .featureContent {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    transition: var(--ease);
    transform: translateY(85px);
    @media screen and (max-width: 1199px) {
      align-items: center;
      text-align: center;
    }
    .authorDate {
      display: flex;
      gap: 1rem;
      @media screen and (max-width: 567px) {
        flex-direction: column;
      }
      span {
        display: flex;
        color: var(--light);
        font-size: 15px;
        align-items: center;
        svg {
          width: 25px;
          height: 25px;
          margin-right: 5px;
          path {
            stroke: var(--light);
          }
        }
      }
    }
    a.titleBlog {
      color: white;
      font-size: 22px;
      line-height: 30px;
      font-family: var(--headings);
    }
    a.btnBlog {
      border-color: var(--light);
      color: var(--light);
      font-size: 16px;
      line-height: 56px;
      font-family: var(--text);
      border: 2px solid;
      padding: 0 20px;
      font-weight: 600;
      display: flex;
      border-radius: 80px;
      transition: var(--ease);
      min-width: 191px;
      justify-content: center;
      gap: 10px;
      align-items: center;
      svg {
        fill: white;
        width: 15px;
      }
      &:hover {
        background-color: var(--primary);
        border-color: var(--primary);
        color: var(--light);
      }
    }
  }
  &:hover {
    .featureContent {
      transform: translateY(0px);
      transition: var(--ease);
    }
  }
}

/*=========================Blog Page Inner==============================*/
.blogPostPage {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  @media screen and (max-width: 1199px) {
    text-align: left;
  }
  .blogPageWrapper {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    @media screen and (max-width: 991px) {
      flex-direction: column;
    }
    figure {
      flex-basis: 35%;
      margin: 0;
      display: flex;
      background-size: cover;
      background-repeat: no-repeat;
      border-radius: 25px;
      @media screen and (max-width: 991px) {
        aspect-ratio: 3;
      }
      @media screen and (max-width: 767px) {
        aspect-ratio: 2;
      }
      @media screen and (max-width: 500px) {
        aspect-ratio: 1;
      }
    }
    .featureContent {
      display: flex;
      flex-direction: column;
      flex-basis: 65%;
      padding: 40px 20px;
      color: var(--light);
      gap: 1.5rem;
      align-items: flex-start;
      @media screen and (max-width: 991px) {
        padding: 0px;
        align-items: center;
        text-align: center;
      }
      .authorDate {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 2rem;
        span {
          display: flex;
          gap: 15px;
          font-size: 16px;
          align-items: center;
          svg {
            width: 25px;
            height: 25px;
            path {
              stroke: var(--secondary);
            }
          }
        }
      }
      .titleBlog {
        font-size: 30px;
        color: var(--light);
        font-family: var(--headings);
        line-height: 40px;
      }
      .content {
        font-size: 18px;
        letter-spacing: 0;
        line-height: 28px;
      }
      a.btnBlog {
        /*font-size: 16px;
        line-height: 60px;
        font-family: var(--text);
        border: 2px solid;
        padding: 0 20px;
        font-weight: 600;
        display: flex;
        border-radius: 80px;
        transition: var(--ease);
        min-width: 191px;
        justify-content: center;
        background: var(--gradient);
        border: none;
        line-height: 62px;
        color: var(--dark);
        display: flex;
        gap: 10px;
        align-items: center;*/
        svg {
          width: 20px;
          height: 20px;
        }
      }
    }
  }
}
.blogColor-dark {
  .blogPageWrapper {
    figure {
    }
    .featureContent {
      color: var(--dark);
    }
    .authorDate {
      span {
        svg {
          path {
            stroke: var(--secondary);
          }
        }
      }
    }
    .titleBlog {
      color: var(--dark) !important;
    }
    .content {
    }
    a.btnBlog {
      background: var(--primary);
      border-color: var(--primary);
      color: var(--light);
      svg {
      }
    }
  }
}
/*=================FAQs Section=================*/
.faqWrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  .accordion {
    margin-top: 0;
    margin-bottom: 0;
    border-top: none;
    border-bottom: none;
    details {
      background-color: var(--secondary);
      padding: 25px 25px;
      border-radius: 50px;
      .accordion__content {
        margin-bottom: 0;
        word-break: break-word;
        overflow-x: auto;
        padding: 0 0;
      }
      summary {
        padding: 0;
      }
      .accordion__title {
        color: var(--dark);
        font-family: var(--headings);
        letter-spacing: 0;
        font-size: 26px;
        @media screen and (max-width: 767px) {
          font-size: 16px;
          max-width: calc(100% - 35px);
        }
      }
      .accordion__content * {
        color: var(--dark);
        font-family: var(--texts);
        line-height: 28px;
        font-size: 16px;
      }
      .icon-caret {
        height: 1rem;
        @media screen and (max-width: 767px) {
          right: 0;
          height: 10px;
          top: calc(50% - 5px);
        }
        path {
          fill: var(--dark);
        }
      }
    }
    details[open] {
      background-color: var(--primary);
      .accordion__content {
        padding-top: 20px;
      }
    }
  }
}

/*====Contact Page====*/
.contactFromSection {
  margin-top: 60px;
  max-width: 700px;
  margin: auto;
  margin-top: 40px;
}
.contact__fieldsForm {
  display: flex;
  flex-direction: column;
  gap: 25px;

  .colsHalf {
    display: flex;
    gap: 20px;
    justify-content: center;
    @media screen and (max-width: 767px) {
      flex-direction: column;
    }
    .fieldForm {
      display: flex;
      width: 100%;
      flex-direction: column;
      .field__inputForm {
        border: 1px solid var(--primary);
        padding: 20px 25px;
        display: flex;
        font-size: 18px;
        border-radius: 30px;
        background-color: transparent;
        color: black;
      }
    }
  }
  textarea {
    border: 1px solid var(--primary);
    padding: 20px 25px;
    display: flex;
    font-size: 18px;
    border-radius: 30px;
    background-color: transparent;
    color: black;
  }
  .contact__buttonForm {
    display: flex;
    align-items: center;
    justify-content: center;
    button.buttonForm {
      font-size: 16px;
      font-family: var(--button);
      padding: 0 20px;
      font-weight: 400;
      display: flex;
      border-radius: 80px;
      transition: var(--ease);
      min-width: 220px;
      justify-content: center;
      background: var(--primary);
      border: none;
      line-height: 62px;
      color: var(--light);
      text-transform: uppercase;
    }
  }
}
.contact__fieldsForm ::placeholder {
  color: var(--dark);
}

.needBoxesyes {
  max-width: 1100px;
  margin: auto;
  margin-top: 60px;
  display: flex;
  gap: 4rem;
  justify-content: space-between;
  @media screen and (max-width: 1023px) {
    gap: 2rem;
  }
  @media screen and (max-width: 991px) {
    flex-direction: column;
  }
  .conatctBox {
    flex-basis: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    border: 2px solid rgb(255 255 255 / 70%);
    border-radius: 50px;
    padding: 25px 35px;
    gap: 2rem;
    @media screen and (max-width: 991px) {
      flex-direction: column;
      max-width: 100%;
      margin: auto;
      width: 600px;
    }
    .iconBox {
      flex-basis: 102px;
      text-align: center;
      height: 102px;
      line-height: 102px;
      border: 2px solid var(--secondary);
      border-radius: 100px;
      align-items: center;
      display: flex;
      justify-content: center;
      min-width: 102px;
      svg,
      svg * {
        fill: var(--primary);
        width: 35px;
        height: 35px;
      }
    }

    .contentBox {
      flex-basis: calc(100% - 112px);
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
      p {
        margin: 0;
      }
      * {
        color: white;
        line-height: 22px;
        font-family: var(--texts);
      }
      a {
        font-size: 25px;
        font-family: var(--headings);
        line-height: 40px;
        color: var(--primary);
      }
    }
  }
}

/* Rotating Logo*/
@keyframes spinnerText {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.image {
  /* Spinning*/

  .mySpinner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
    border-radius: 50%;
    padding: 0rem;
    border: 1px solid var(--green);
    @media screen and (max-width: 767px) {
      width: 100%;
      margin-top: 10px;
    }
  }
  .spinnerInner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 239px;
    height: 239px;
    background-color: var(--secondary);
    border-radius: 100%;
    position: absolute;
    left: -2rem;
    top: -80px;
    z-index: 10;
    padding: 10px;
    @media screen and (max-width: 1350px) {
      right: 0;
      width: 200px;
      height: 200px;
    }
    @media screen and (max-width: 1199px) {
      right: 0;
      width: 156px;
      height: 156px;
    }
    @media screen and (max-width: 992px) {
      right: 0;
      width: 156px;
      height: 156px;
    }
    @media screen and (max-width: 767px) {
      width: 156px;
      height: 156px;
      position: relative;
      left: 0;
      right: 0;
      margin: auto;
      bottom: 0;
    }
    .centerLogo {
      position: absolute;
      inset: 0;
      z-index: 1;
      width: 40%;
      height: 100%;
      margin: auto;
      object-fit: contain;
    }
  }
  .homeSpinner {
    .vectorText {
      animation: spinnerText 20s linear infinite;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
    }
  }

  @media (min-width: 1600px) {
    .spinnerInner {
      width: 260px;
      height: 260px;
      h3 {
        font-size: 15px;
        letter-spacing: 10px;
      }
    }
  }
  @media (min-width: 1400px) {
    .homeSpinner {
      padding: 1rem;
    }
  }
}

/* ===================== Scrolling Text ========================*/
.a-section {
  line-height: 60px;
  .a-section-marquee-box {
    display: flex;
    align-items: center;
    overflow: hidden;

    span {
      white-space: nowrap;
      text-transform: uppercase;
      font-size: 14px;
      font-weight: bold;
      flex-shrink: 0;
      padding: 0 10px;
      width: max-content;
      display: flex;
      align-items: center;
      transform: translateX(0);
      color: var(--dark);
      animation: a-text-scroll 20s linear infinite;
    }
  }
}
@keyframes a-text-scroll {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    transform: translate3d(0%, 0, 0);
  }
}

/*--For Reverse Direction--*/
@keyframes b-text-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.scrollingDiv {
  .scrollWrapper {
    display: flex;
    align-items: center;
    overflow: hidden;
    span {
      white-space: nowrap;
      text-transform: uppercase;
      font-size: 100px;
      font-weight: 400;
      flex-shrink: 0;
      padding: 0 10px;
      width: max-content;
      display: flex;
      align-items: center;
      transform: translate(0);
      animation: b-text-scroll 20s linear infinite;
      color: rgb(167 177 206 / 60%);
      font-family: var(--headings);
      line-height: 1;
      @media screen and (max-width: 767px) {
        font-size: 50px;
      }
    }
  }
}
/* Testimonial Headings */
.testimonialRow .rev-combs {
  max-width: 100%;
  @media screen and (max-width: 1199px) {
    max-width: 100%;
  }
}

/* ===================Cta============================ */
.ctaRow {
}
.levitateCta {
  .ctaRow {
  }
  .rev-combs {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    @media screen and (max-width: 1199px) {
      flex-direction: column;
    }
    .mainTitle {
      font-size: 40px;
      max-width: 50%;
      text-transform: uppercase;
      @media screen and (max-width: 1199px) {
        font-size: 30px;
        max-width: 100%;
      }
    }
  }
}

/*==Counter==*/
.levitateCounter {
  display: flex;
  justify-content: space-between;
  text-align: center;
  @media screen and (max-width: 767px) {
    flex-direction: column;
    gap: 2rem;
  }
}

@media screen and (max-width: 1199px) {
  header-drawer {
    display: flex !important;
    width: 25%;
    margin-left: 0 !important; 
  }
  .header__inline-menu {
    display: none !important;
  }
}
@media screen and (max-width: 567px) {
  header-drawer {
    display: flex !important;
    margin-left: 0 !important; 
    width: 20%;
  }
}

/* Menu Color */
.header__menu-item {
  span {
    color: var(--light);
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    font-family: var(--headings);
    position: relative;
    @media screen and (min-width: 1500px) {
      font-size: 18px;
    }
    &:after {
      content: "" !important;
      background-image: url(/cdn/shop/files/image_-_2025-02-28T163742.185_1.png?v=1741253113);
      position: absolute;
      width: 100%;
      height: 10px;
      display: inline-block !important;
      left: 0;
      bottom: -15px;
      background-repeat: no-repeat;
      background-size: contain;
      opacity: 0;
      transition: var(--ease);
      transform: translateY(2vh);
    }
  }
  &:hover {
    span:after {
      opacity: 1;
      transition: var(--ease);
      transform: translateY(0vh);
    }
  }
}
span.header__active-menu-item:after {
  content: "" !important;
  background-image: url(/cdn/shop/files/image_-_2025-02-28T163742.185_1.png?v=1741253113);
  position: absolute;
  width: 100%;
  height: 10px;
  display: inline-block !important;
  left: 0;
  bottom: -15px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
  transform: translateY(0vh);
}

.seprator {
  display: flex;
}
/* Spe Colors */
.secondarySep {
  fill:var(--secondary);
  width: 138px;
}

.spinner-yes {
  position: relative;
}
.instagramSlider {
  margin-top: 4rem;
}

svg.icon.icon-cart {
  width: 40px !important;
  height: 40px !important;
}

/*---FAQs----*/
.faqBlocks {
  margin: 20px 0;
  .myContainer {
    background-color: var(--light);
    margin-bottom: 25px;
    border-radius: 10px;
    padding: 17px 45px 17px 30px;
    box-shadow: 5px 5px 25px 0 rgb(0 0 0 / 10%);
    padding-left: 70px;
    background-image: url(/cdn/shop/files/icon_box.webp?v=1748602461);
    background-repeat: no-repeat;
    background-position: left 25px top 15px;
    background-size: 30px;
    .question {
      font-size: 16px;
      font-weight: 600;
      position: relative;
      display: flex;
      align-items: center;
      cursor: pointer;
      color: var(--dark);
      font-family: var(--text);

      @media screen and (max-width: 767px) {
        padding-right: 30px;
      }
       @media (max-width:479px) {
         font-size: 15px;
       }
    }
    .question::after {
      content: "\002B";
      font-size: 2.2rem;
      position: absolute;
      right: -30px;
      transition: 0.2s;
      @media screen and (max-width: 767px) {
        right: -30px;
      }
    }

    .question.active::after {
      transform: rotate(45deg);
    }

    .answercont {
      max-height: 0;
      overflow: hidden;
      transition: 0.3s;
      color: var(--dark);
    }

    .answer {
      padding: 15px 0 0;
      line-height: 1.5rem;
      text-align: left;
      * {
        font-size: 14px;
      }
      p:first-child {
        margin-top:0; 
      }
    }

    .question.active + .answercont {
    }
    &:last-child {
      margin-bottom: 0;
    }
    @media (max-width:479px) {
      background-image:none !important;
      padding-left: 20px;
    }
  }
  .myContainer.active {
    background-color: var(--primary);
    background-image: url('/cdn/shop/files/icon_box_4cbc699c-eb41-4746-8fff-5a8f6155f335.webp?v=1748602650');
    .question,
    .answercont {
      color: var(--light);
    }
  }
}


@media (max-width:991px) {
  .facets-container {
     .medium-hide {
      display: flex !important;
    } 
  }
}


/*============CART CSS===========*/
.is-empty {
  .cart__empty-text {
    font-size: 30px;
  }
  .button {
    font-size: 13px;
    line-height: 60px;
    font-family: var(--button);
    border: 2px solid;
    padding: 0 2rem;
    font-weight: 400;
    border-radius: 80px;
    transition: var(--ease);
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--light);
    &:after,
    &:before {
      display: none;
    }
  }
  .cart__login-title {
    font-size: 25px;
    margin-top: 35px;
  }
}
.cart__checkout-button {
  font-size: 13px;
  line-height: 60px;
  font-family: var(--button);
  border: 2px solid;
  padding: 0 2rem;
  font-weight: 400;
  border-radius: 80px;
  transition: var(--ease);
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--light);
  &:after,
    &:before {
      display: none;
    }
}
@media screen (max-width:1250px) {
  .cart-item {
    display: flex;
    max-width: 100%;
    flex-direction: column;
    gap: 2rem;
    &>td+td {
      padding-left: 0rem;
    }
    .cart-item__quantity {
      padding-left: 0rem;
    }
  }
}
@media (max-width:1023px) {
  table.cart-items {
    display: flex !important;
    max-width: 100%;
    flex-direction: column !important;
    .cart-item {
      display: flex !important;
      max-width: 100%;
      flex-direction: column !important;
      gap: 25px;
      td {
        max-width: 100%;
        padding: 0 !important;
        text-align: left !important;
        justify-content: flex-start;
        .price--end {
          text-align: left;
        }
      }
    }
  }
  .cart__footer * {
      text-align: left !important;
      width: 100% !important;
      align-items: flex-start;
      max-width: 100% !important;
      margin-right: auto !important;
    }
    shopify-accelerated-checkout-cart {
      --shopify-accelerated-checkout-inline-alignment: flex-start;
  }
}
/* Side Cart */
.drawer__close {
    min-width: 1.4rem;
    min-height: 1.4rem;
}
.cart-drawer {
  h2.drawer__heading,
  .totals>h2,
  .totals__total-value
  {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--headings);
    @media (max-width:550px) {
      font-size: 20px;
    }
  }
  .cart__checkout-button {
    font-size: 13px;
    line-height: 60px;
    font-family: var(--button);
    border: 2px solid;
    padding: 0 3rem;
    font-weight: 900;
    display: flex;
    border-radius: 80px;
    transition: var(--ease);
    justify-content: center;
    align-items: center;
    text-transform: uppercase; 
    background-color: var(--primary);b
  }
  .cart-item__name {
    text-decoration: none;
    display: block;
    font-family: var(--headings);
    font-weight: bold;
    line-height: 28px;
  }
  .summary__title {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--headings);
    @media (max-width:550px) {
      font-size: 16px;
    }
  }
  @media (max-width:479px) {
    .cart-item {
      display: flex !important;
      flex-direction: column !important;
    }
    .cart-item__totals {
      justify-content: flex-start !important;
    }
    .totals {
      display: flex;
      align-items: flex-start;
      flex-direction: column;
      justify-content: flex-start;
      text-align: left;
      gap: 12px;
      p.totals__total-value {
        margin-left:0; 
      }
    }
  }
}
.drawer__close {
    min-width: 1.4rem !important;
    min-height: 1.4rem !important;
}