/** Shopify CDN: Minification failed

Line 2150: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=====*/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@font-face {
  font-family: "Sharp Sans";
  src: url(/cdn/shop/files/SharpSansMedium.woff?v=1762860648);
  font-weight:500;
}
@font-face {
  font-family: "Sharp Sans";
  src: url(/cdn/shop/files/SharpSansSemibold.woff?v=1762860648);
  font-weight:600;
}
@font-face {
  font-family: "Sharp Sans";
  src: url(/cdn/shop/files/SharpSansBold.otf?v=1763018856);
  font-weight:bold;
}
:root {
  font-size: 16px;
  --primary: #E51C39;
  --secondary: #000000;
  --dark: #0C0C0C;
  --light: #fff;

  /* Fonts */
  --headings: "Bebas Neue";
  --text: "Sharp Sans", sans-serif;
  --button: "Sharp Sans", sans-serif;

  /* 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;
}
* {
    scroll-behavior: smooth;
  }
html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

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

/*
* =============================================
* 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: 300;

  @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: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0rem !important;
   @media screen and (max-width: 1199px) {
    max-width: 100%;
    padding: 1rem 1.5rem !important;
   }
  @media screen and (max-width: 567px) {
    padding: 10px !important;
  }
  .small-hide {
    @media (max-width:750px) {
      display: flex !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: 75px;
    svg.icon {
      width: 100px !important;
      height: 100px !important;
    }
  }
}
.header__icon--cart {
  margin-right: 0rem;
}
.header__icon,
.header__icon--cart .icon {
  height: auto;
  width: 50px;
}
/*
* =============================================
* 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: 8rem 3rem;
  }

  @media (min-width: 1500px) {
    padding: 8rem 5rem;
  }
  @media screen and (max-width: 768px) {
    padding: 5rem 2rem;
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
/* 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
* ============================================= 
*/
.levitateBanner {
    display: flex;
}
.banner,
.innerBanner
{
  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(75vh - 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 {
    display: flex;
    align-items: anchor-center;
    justify-content: flex-start;
  }
}
/*==OverlayBanner==*/
.overlay-yes {
  position: relative;
  &:after {
    content: "";
    background-image: linear-gradient(45deg, #000, #000000);
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    opacity: .5;
    @media screen and (max-width: 1199px) {
      background-color: #000;
      background-image: none;
    }
  }
}
/*
* =============================================
* 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(--light);
  }
}
.gradientColorsecondary {
  strong {
    background-color: var(--secondary);
    color: var(--light);
  }
}
/*
* =============================================
* 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: 30px;
  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: 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;
    svg {
      width: 20px;
      margin-left: 15px;
      transition: var(--ease);
    }
    &:hover {
      svg {
        transform: translateX(0.2rem);
      }
    }
    @media screen and (max-width: 767px) {
      font-size: 14px;
    }
  }
}
.btnClass {
  font-size: 13px;
  line-height: 60px;
  font-family: var(--button);
  border: 2px solid;
  padding: 0 2rem;
  font-weight: 400;
  display: flex;
  border-radius: 80px;
  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);
    &:hover {
      background-color: var(--primary);
      border-color: var(--primary);
      color: var(--dark);
    }
  }
  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);
    }
    &:hover {
      background-color: var(--secondary);
      border-color: var(--secondary);
      color: var(--light);
      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 {
    background-color: var(--primary);
    border-color: var(--primary);
      svg {
        transform: translateX(0.2rem);
      }
    }
  }

  a.white {
    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);
      }
    }
  }
}
/* 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: 991px) {
    flex-direction: row;
  }
}

.description p {
  margin-top: 0;
  font-size: 17px;
  line-height: 28px;
  letter-spacing: 0;
  font-weight: 500;
}
/* 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;
  }
  .smallTitle {
    font-size: 15px;
    font-family: var(--text);
    font-weight: bold;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    @media (max-width:567px) {
      flex-direction:row;
      font-size:11px;    
      gap: 10px;
      .sepSmall {
        svg {
          width:10px;
        }
      }
    }
  }
  .mainTitle {
    font-family: var(--headings);
    font-size: 40px;
    line-height: 51px;
    text-transform: uppercase;
    font-weight: 400;
    /*@media screen and (max-width: 991px) {
      font-size: 30px;
      line-height: 36px;
    }
    @media screen and (max-width: 500px) {
      font-size: 100%;
      line-height: 130%;
    }*/
    @media (max-width:467px) {
      font-size: 30px;
      line-height: 41px;
    }
  }
}
/* 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;
  }
}
/*========DARK COLOR========*/

.dark-combs {
  .smallTitle {
    color: var(--dark);
  }
  .mainTitle {
    color: var(--dark);
  }
  .description * {
    color: var(--dark);
  }
  .btn-combs {
    a.borderBtn {
      border-color: var(--dark);
      color: var(--dark);
      svg {
        fill: var(--dark);
      }
      &:hover {
        border-color: var(--primary);
        color: var(--light);
        svg {
          fill: var(--light);
        }
      }
    }
  }
}

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

.light-combs {
  .smallTitle {
    color: var(--light);
  }
  .mainTitle {
    color: var(--light);
  }
  .description * {
    color: var(--light);
  }
  .gradientColorprimary {
    strong {
      background-color: var(--light);
      color:var(--dark);
    }
  }
}
/* =====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;
    @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;
    @media (max-width:567px) {
      gap:0;
    }
  }
  .slick-list.draggable {
    padding: 0 !important;

    @media (max-width:567px) {
      overflow:hidden;
    }
  }
  .arrows {
    border: 2px solid white;
    padding: 0;
    border-radius: 100%;
    display: flex !important;
    height: 56px;
    line-height: 56px;
    width: 56px;
    text-align: center;
    align-items: center;
    justify-content: center;
    transition:var(--ease);
    svg {
      width: 30px;
    }
    &:hover {
      transition:var(--ease);
      background-color:var(--primary) !important;
      svg {
        stroke:#fff;
      }
    }
  }
  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: 27px;
    height: 27px;
    margin: 0 5px;
    border: 2px solid var(--primary);
    border-radius: 100px;
    transition: var(--ease);
  }
  li.slick-active {
    width: 54px;
    background-color: var(--primary);
    transition: var(--ease);
  }
  button {
    opacity: 0;
  }
}
/* ----partnerLogos----- */
.partnerLogos figure {
  width: 150px;
  margin: 0;
  height: 60px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  @media screen and (max-width: 500px) {
    width: 110px;
    height: 40px;
  }
}

/*=====Instagram=====*/
.instagramWrapper {
  figure {
    margin: 0;
    width: 100%;
    height: 550px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    background-size: cover;
    border-radius: 16px;
    @media (max-width:567px) {
      height: 315px;
    }
  }
  a {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgb(57 85 66 / 70%);
    top: 0;
    z-index: 1;
    bottom: 0;
    transition: var(--ease);
    transform: translateY(200vh);
    svg {
      fill: white;
      path {
        fill: white;
      }
    }
  }
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: var(--ease);
  &:hover {
    a {
      transition: var(--ease);
      transform: translateY(0vh);
      border-radius: 20px;
    }
  }
}

@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(--light);
}
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(--light);
      margin-right: 15px;
    }
    a.link {
      color: var(--light);
      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(--light);
  }

  @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: white;
  top: 0;
  position: absolute;
  left: -2rem;
}
@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("https://cdn.shopify.com/s/files/1/0923/9347/2384/files/list.webp?v=1748848486");
      background-repeat: no-repeat;
      background-position: left center;
      width: calc(50% - 1rem);
      flex-basis: calc(50% - 1rem);
      @media screen and (max-width: 1199px) {
        width: auto;
        flex-basis: auto;
      }
    }
  }
}

/*=======Blog Home Slider========*/
.blogPostPage {
  .blogPageWrapper {
      border-bottom: 2px solid rgb(0 0 0 / 20%);
      padding-bottom: 4rem;
  }
  .blogPageWrapper:last-child {
    border-bottom: none;
    padding-bottom: 0rem;
  }
}
.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);
    }
  }
}
.blogPageWrapper.dark-blogs {
  .featureContent {
    color: var(--dark) !important;
    a.titleBlog {
      color: var(--dark);
      font-weight: 900;
    }
    a.btnBlog {
      background-color: var(--primary);
      color: var(--light);
      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;
      border-color: var(--primary);
      text-transform: uppercase;
      gap:15px;
      path {
        fill:white;
      }
    }
  }
}
.blogFilters {
    display: flex;
    gap: 25px;
    margin: 4rem 0 3rem;
    display:none;
     a {
      text-transform: uppercase;
      font-size: 19px;
      font-weight: 700;
      color: var(--primary);
      letter-spacing: 1px;
    }
}

/*=========================Blog Page Inner==============================*/
.blogPostPage {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top:60px;
  counter-reset: section;
  @media screen and (max-width: 1199px) {
    text-align: left;
  }
  .blogPageWrapper {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    &:before {
      counter-increment: section;
        counter-increment: section;
        content: "0" counter(section) "";
        color: #395542;
        font-weight: bold;
        position: absolute;
        right: 0;
        top: 10px;
        font-size: 30px;
        font-family: var(--headings);
    }
    @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: 45px;
        background-color: #F7F7F7;
        color: black;
        line-height: 35px;
      }
    }
  }
  textarea {
    border: 1px solid var(--primary);
    padding: 20px 25px;
    display: flex;
    font-size: 18px;
    border-radius: 30px;
    background-color: #F7F7F7;
    height: 120px;
    color: black;
  }
  .contact__buttonForm {
    display: flex;
    align-items: center;
    justify-content: center;
    button.buttonForm {
      font-size: 16px;
      font-family: var(--headings);
      padding: 0 20px;
      font-weight: 900;
      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,
.routineCircle {
  /* 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%;
  margin: auto;
  @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%;
      }
      @media (max-width:467px) {

      }
    }
  }
}

/*==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;
    margin-left: 0px !important;
  }
  .header__inline-menu {
    display: none;
  }
}

.btn-combs.centerIt {
  justify-content: center;
}

/*  Faqs  */
.faqBlocks {
    margin: 20px 0;
    gap: 2rem;
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
    .myContainer {
        background-color: #F5F5F7;
        margin-bottom: 0px;
        border-radius: 10px;
        padding: 25px 55px 25px 30px;
        box-shadow: 5px 5px 25px 0 rgb(0 0 0 / 10%);
        width: 100%;
        flex-basis: 100%;

        .question {
            font-size: 26px;
            font-weight: 400;
            position: relative;
            display: flex;
            font-family: var(--headings);
            align-items: center;
            cursor: pointer;
            color: var(--dark);
            gap: 15px;
            @media (max-width: 1300px) {
                font-size: 20px;
            }
            @media screen and (max-width: 767px) {
                padding-right: 30px;
            }
        }
        .question::after {
            content: "\002B";
            font-size: 2.2rem;
            position: absolute;
            right: 0px;
            transition: 0.2s;
            @media (max-width:1199px) {
                right: 0px;
            }
        }

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

        .question.active + .answercont {
        }
        &:last-child {
            margin-bottom: 0;
        }
    }
    .myContainer.active {
        .question,
        .answercont {
            color: var(--dark);
        }
    }
}
.divQR .imageQr img {
  width: 400px;
  object-fit: contain;
}

/* Side Cart */
.cart-drawer {
  h2.drawer__heading,
  .totals>h2,
  .totals__total-value
  {
    font-size: 30px;
    font-weight: 700;
    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__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; 
      }
    }
    .quantity {
        width: calc(8rem / var(--font-body-scale) + var(--inputs-border-width) * 2);
        max-width: 100% !important;
    }
    .quantity__button {
      width: calc(2.5rem / var(--font-body-scale));
    }
    .cart-drawer {
    .cart-item__name {
        font-size: 20px !important;
    }
  }
  }
}


/* Mobile Desktop Toggle */
.hideDesktop {
  @media (min-width:501px) {
    display:none !important;
  }
}
@media (max-width:500px) {
  .hideMob {
    display:none !important;
  }
}

.content-for-layout {
  .section {
    display:flex;
    justify-content: center;
    flex-direction:column;
  }
}

.marginTop {
  margin-top:40px;
}


/*==========================Newsletter============================*/
.newsletterWrapper {
  margin-top: 40px;
  .field {
    gap: 0.5rem;
    justify-content: center;
    @media screen and (max-width: 1199px) {
      gap: 20px;
    }
    @media screen and (max-width: 991px) {
      flex-direction: column;
    }
  }
  button#Subscribe {
    font-size: 16px;
    line-height: 60px;
    font-family: var(--text);
    border: 2px solid var(--primary);
    padding: 0 0px;
    font-weight: 600;
    display: flex;
    border-radius: 80px;
    transition: var(--ease);
    min-width: 191px;
    justify-content: center;
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--light);
    text-transform: uppercase;
    font-weight: 800;
  }
}
.newsletterInputWrapper ::placeholder {
  color: var(--dark) !important;
}
.newsletterInputWrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  input {
    width: 315px;
    line-height: 60px;
    padding: 0 30px 0 60px;
    background-color: var(--light);
    border-color: var(--secondary);
    outline: none;
    box-shadow: none;
    border-style: none;
    color: var(--dark);
    font-size: 18px;
    font-family: var(--texts);
    font-weight: 400;
    border-radius: 30px;
    @media screen and (max-width: 991px) {
      width: 100%;
      font-size: 16px;
    }
    @media screen and (max-width: 567px) {
      font-size: 14px;
    }
  }
  &::placeholder {
    color: var(--dark) !important;
  }
  svg {
    position: absolute;
    width: 25px;
    left: 20px;
    height: 30px;
    fill:var(--primary);
    path {
      fill:var(--primary);
      stroke:var(--primary);
    }
  }
}
@media screen and (min-width: 750px) {
  .newsletter-form__message {
    justify-content: center;
    color: white;
    font-size: 20px;
  }
}