/** Shopify CDN: Minification failed

Line 125:2 "jusify-content" is not a known CSS property
Line 126:2 "jusify-self" is not a known CSS property
Line 133:3 "jusify-content" is not a known CSS property
Line 134:3 "jusify-self" is not a known CSS property
Line 195:0 Unexpected "$"
Line 195:18 Unexpected "{"
Line 195:27 Expected ":"
Line 195:56 Unexpected ";"
Line 198:2 Unexpected "0%"
Line 199:2 Unexpected "100%"

**/


/* CSS from section stylesheet tags */
.banner-carousel-section {
  position: relative;
  width: calc(100% - {{ section.settings.margin | times: 2 }}px);
  margin: 2.5vw ;
  overflow: hidden;
  border-radius: 20px;
  background-color: rgb (0,0,0);
}

.banner-carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.banner-slide.active {
  opacity: 1;
  z-index: 1;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-banner-image {
  display: none;
}

.banner-video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner-video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  max-width: 80%;
  z-index: 2;
}

.banner-heading {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.banner-text {
  font-size: 1.2em;
  margin-bottom: 1em;
}

.banner-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.banner-button:hover {
  background-color: #333333;
}

.banner-nav-button {
  width: 50px;
  height: 50px;
  position: absolute;
  display: flex;
  top: 50%;
  transform: translateY(-50%);
  background-color: #5271FF;
  color: #ffffff;
  border: none;
  font-size: 24px;
  padding: 15px;
  cursor: pointer;
  z-index: 1;
  transition: background-color 0.3s ease;
  border-radius: 100px;
  jusify-content: center;
  jusify-self: center;
  align-items: center;
  align-self: center
}

 .banner-nav-button {
   img {
   jusify-content: center;
   jusify-self: center;
   align-items: center;
   align-self: center
  } 
 }

.banner-nav-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.banner-prev {
  left: 20px;
}

.banner-next {
  right: 20px;
}

@media screen and (max-width: 767px) {
  .desktop-banner-image {
    display: none;
  }
  
  .mobile-banner-image {
    display: block;
  }
  
  .banner-heading {
    font-size: 1.8em;
  }
  
  .banner-text {
    font-size: 1em;
  }

  .banner-nav-button {
    width: 40px;
    height: 40px;
    font-size: 18px;
    padding: 8px 12px;
  }

  .banner-prev {
    left: 10px;
  }

  .banner-next {
    right: 10px;
  }
}
.brand-carousel-wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

@mixin white-gradient {
  background: linear-gradient(to right,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
}

$animationSpeed: {{ section.settings.animation_speed }}s;

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 7))}
}

.slider {
  background: white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 960px;
  
  &::before,
  &::after {
    @include white-gradient;
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
  }
  
  &::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
  }

  &::before {
    left: 0;
    top: 0;
  }
  
  .slide-track {
    animation: scroll $animationSpeed linear infinite;
    display: flex;
    width: calc(250px * 14);
  }
  
  .slide {
    height: 100px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }
  }
}

@media screen and (max-width: 1000px) {
  .slider {
    width: 100%;
    max-width: 960px;
  }
}
.ViewMoreButton {
    margin: 0 2.5vw 40px;
    display: flex;
    justify-content: center;
    width: max-content;
    padding: 10px 20px;
    border-style: solid;
    border-color: #ddd;    
    border-width: 1px;
    border-radius: 4px;
    text-decoration: none;
    place-self: center;
    position: relative;

    & h4 {
    justify-content: center;
      
    }
  }
 
 .ViewMoreButton:hover {
    background-color: #5439DB;
    border-color: #5439DB; 
 } 
  
  .Container {
    height: max-content;
    position: relative;
    display: flex;
    list-style: none;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin:  1em 2.5vw 2em;
    gap: clamp( 10px, calc(0.05 * var(--item-width)), 24px);
    padding: 0;
}

  .Card {
    position: relative;
  }
  
  .zodok-carousel-item {
      flex-shrink: 0;
      position: relative;
      padding: 0 0;
      scroll-snap-align: start;
  }

  .CardTitle {
    padding: 0 2.5vw;
    font-size: calc(var(--font-heading-scale)* 2rem);
    display:none;
}

  .ProductLink {
    position: absolute;
    background-color: rgba(0, 255, 255, 0);
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

  .CardContent {
    width: max-content;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: white;
    width: 20vw;
}

  .ProductImg {
    width: 100%;
    aspect-ratio: 2/3;
    border-radius: 16px;
}

  .ProductInfo {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: max-content;
    width: 100%;
}

  .BrandName {
    font-size: 10px;
    color: white;
    width: 100%;
    margin: 0;
}

  .ProductTitle {
    font-size: 13px;
    color: white;
    width: max-content;
    width: 100%;
    margin: 0;
}

  .Price {
    display: flex;
    gap: 10%;
    margin: 0;
}

  .Slashed {
    color: #c3c3c3;
    text-decoration: line-through;
    margin: 0;
}

  .Discounted {
  color: #ffffff;
  margin: 0;
}

@media screen and (max-width: 768px) {
    /* For mobile phones: */
    .ProductImg {
        width: 40vw;
}

    .CardContent {
    width: 40vw;
}

    .Price {
    display: flex;
    flex-direction: column;
}

    .ViewMoreButton {
    width: 95vw;

}
  }
.ViewMoreButton {
    margin: 0 2.5vw 40px;
    display: flex;
    justify-content: center;
    width: max-content;
    padding: 10px 20px;
    border-style: solid;
    border-color: #ddd;    
    border-width: 1px;
    border-radius: 4px;
    text-decoration: none;
    place-self: center;
    position: relative;

    & h4 {
    justify-content: center;
      
    }
  }
 
 .ViewMoreButton:hover {
    background-color: #5439DB;
    border-color: #5439DB; 
 } 
  
  .Container {
    height: max-content;
    position: relative;
    display: flex;
    list-style: none;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin:  1em 2.5vw 2em;
    gap: clamp( 10px, calc(0.05 * var(--item-width)), 24px);
    padding: 0;
}

  .Card {
    position: relative;
  }
  
  .zodok-carousel-item {
      flex-shrink: 0;
      position: relative;
      padding: 0 0;
      scroll-snap-align: start;
  }

  .CardTitle {
    padding: 0 2.5vw;
    font-size: calc(var(--font-heading-scale)* 2rem);
    display:none;
}

  .ProductLink {
    position: absolute;
    background-color: rgba(0, 255, 255, 0);
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

  .CardContent {
    width: max-content;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: white;
    width: 20vw;
}

  .ProductImg {
    width: 100%;
    aspect-ratio: 2/3;
    border-radius: 16px;
}

  .ProductInfo {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: max-content;
    width: 100%;
}

  .BrandName {
    font-size: 10px;
    color: white;
    width: 100%;
    margin: 0;
}

  .ProductTitle {
    font-size: 13px;
    color: white;
    width: max-content;
    width: 100%;
    margin: 0;
}

  .Price {
    display: flex;
    gap: 10%;
    margin: 0;
}

  .Slashed {
    color: #c3c3c3;
    text-decoration: line-through;
    margin: 0;
}

  .Discounted {
  color: #ffffff;
  margin: 0;
}

@media screen and (max-width: 768px) {
    /* For mobile phones: */
    .ProductImg {
        width: 40vw;
}

    .CardContent {
    width: 40vw;
}

    .Price {
    display: flex;
    flex-direction: column;
}

    .ViewMoreButton {
    width: 95vw;

}
  }
.test-gradient {
    width:100vw;
    height: 200px;
    background-image: linear-gradient(
        rgb(0, 0, 255, 0) 0%,
        rgb(0, 0, 255, 0.019) 50%,
        rgb(0, 0, 255, 0.037) 65%,
        rgb(0, 0, 255, 0.075) 75.5%,
        rgb(0, 0, 255, 0.15) 82.85%,
        rgb(0, 0, 255, 0.3) 88%,
        rgb(0, 0, 255, 1) 100%
        );
  }
:root{
      --zodok-caurosel-1-item-width: 50vw;
  }
  
  .zodok-caurosel-1-wrapper {
      position: relative;
      background-color: black;
  }
  
  .zodok-caurosel-1-button {
      position: absolute;
      display: flex;
      justify-content: center;
      align-items: center;
      top: 48%;
      height: 50px;
      width: 50px;
      border-radius: 50%;
      border: 0;
      background-color: #5271FF;
      padding: 0;
      display: none;
  }

  .zodok-caurosel-1-button:hover {
    background-color: #000000;
  }
  
  .zodok-caurosel-1-button div {
      height: 20px;
  }
  
  .zodok-caurosel-1-button div img {
      height:20px;
      width: 20px;
      fill: #fefefed0;
  }
  
  .zodok-caurosel-1-button-previous {
      left: 2.5vw;
  }
  
  .zodok-caurosel-1-button-next {
      right: 2.5vw;
  }
  
  .zodok-caurosel-1-list {
      display: flex;
      padding: 16px;
    
      list-style: none;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
  
      mask-image: linear-gradient(to right, rgb(0, 0, 0, 0) 0%, rgba(205, 205, 205) 20%, rgba(205, 205, 205) 80%, rgb(0, 0, 0, 0) 100%);
      mask-mode: alpha;
      
  }
    
  .zodok-caurosel-1-item {
      flex-shrink: 0;
      position: relative;
      
      padding: 0 0 0 clamp( 10px, calc(0.05 * var(--zodok-caurosel-1-item-width)), 24px);
      scroll-snap-align: center;
  }
  
  .zodok-caurosel-1-content {
      width: clamp(270px, var(--zodok-caurosel-1-item-width), 801px);
      height: clamp(180px, calc(2 * var(--zodok-caurosel-1-item-width) / 3), 534px);           
      border-radius: clamp( 10px, calc(0.05 * var(--zodok-caurosel-1-item-width)), 24px);
      background-color: rgb(188, 188, 188);
      overflow: hidden;
      position: relative;
  }
  
  .zodok-caurosel-1-content img {
     height: 100%;
     width: 100%;
     object-fit: cover;
  }
  
  .zodok-caurosel-1-gradiant {
      position: absolute;
      width: 100%;
      border-bottom-left-radius: clamp( 10px, calc(0.05 * var(--zodok-caurosel-1-item-width)), 24px);
      border-bottom-right-radius: clamp( 10px, calc(0.05 * var(--zodok-caurosel-1-item-width)), 24px);
      height: 200%;
      background-image: linear-gradient(
          rgb(51, 51, 51, 0) 0%,
          rgb(51, 51, 51, 0.019) 50%,
          rgb(51, 51, 51, 0.037) 65%,
          rgb(51, 51, 51, 0.075) 75.5%,
          rgb(51, 51, 51, 0.15) 82.85%,
          rgb(51, 51, 51, 0.3) 88%,
          rgb(51, 51, 51, 1) 100%
          );
      left: 0;
      bottom: 0;
  }
  
  .zodok-caurosel-1-content > a {
      position: absolute;
      width: 100%;
      border-bottom-left-radius: clamp( 10px, calc(0.05 * var(--zodok-caurosel-1-item-width)), 24px);
      border-bottom-right-radius: clamp( 10px, calc(0.05 * var(--zodok-caurosel-1-item-width)), 24px);
      height: 100%;
      left: 0;
      bottom: 0;
  }
  
  .zodok-caurosel-1-content  div a {
      position: absolute;
      bottom: clamp(10px, calc(0.05 * var(--zodok-caurosel-1-item-width)), 24px);
      right: clamp(10px, calc(0.05 * var(--zodok-caurosel-1-item-width)), 24px);
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(5px);
      height: clamp(32px, calc(0.16 * var(--zodok-caurosel-1-item-width)), 57.6px);
      width: clamp(32px, calc(0.16 * var(--zodok-caurosel-1-item-width)), 57.6px);
      border: 0;
      border-radius: clamp(8px, calc(0.04 * var(--zodok-caurosel-1-item-width)), 19.2px);
      padding: 0;
  }
  
  .zodok-caurosel-1-content  div a img:hover {
      transform: scale(1.1);
  }
  
  .zodok-caurosel-1-content  div a img {
      height: 50%;
      width: 50%;
      transition: 0.1s;
  }
  
  .zodok-caurosel-1-title {
      font-weight: 600;
      text-align: center;
      padding-left: clamp( 10px, calc(0.05 * var(--item-width)), 24px);
      color: #5271FF;
  }
  
  @media (pointer:fine) {
      .zodok-caurosel-1-button {
          display: flex;
      }
  }
  
  @media only screen and (max-width: 767px) {
  
      .zodok-caurosel-1-content div {
          display: flex;
          align-items: start;
      }
  
      .zodok-caurosel-1-item-info div h2 {
          font-size: 1em;
      }
  
      .zodok-caurosel-1-item-info p {
          display: none;
      }
  
      .zodok-caurosel-1-item-info div {
          height: fit-content;
          margin: 0;
      }
  
      .zodok-caurosel-1-item-info {
          height: 32px;
          padding: 0;
      }
  }
:root{
      --item-width: 20vw;
  } 
  
  .zodok-caurosel-wrapper {
      position: relative;
      background-colour: black;
  }
  
  .zodok-caurosel-button {
      position: absolute;
      display: flex;
      justify-content: center;
      align-items: center;
      top: 48%;
      height: 50px;
      width:  50px;
      border-radius: 50%;
      border: 0;
      background-color: #5439DB;
      padding: 0;
      display: none;
  }

  .zodok-caurosel-button:hover {
    background-color: #000000;
  }
  
  .zodok-caurosel-button div {
      height: 20px;
  }
  
  .zodok-caurosel-button div img {
      height:20px;
      width: 20px;
      fill: #fefefed0;
  }
  
  .zodok-caurosel-button-previous {
      left: 2.5vw;
  }
  
  .zodok-caurosel-button-next {
      right: 2.5vw;
  }
  
  .zodok-caurosel-list {
      display: flex;
      padding: 16px;
    
      list-style: none;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
  
      /* mask-image: linear-gradient(to right, rgb(0, 0, 0, 0) 0%, rgba(205, 205, 205) 20%, rgba(205, 205, 205) 80%, rgb(0, 0, 0, 0) 100%);
      mask-mode: alpha; */
      
  }
    
  .zodok-caurosel-item {
      flex-shrink: 0;
      position: relative;
      
      padding: 0 0 0 clamp( 10px, calc(0.05 * var(--item-width)), 24px);
      scroll-snap-align: center;
  }
  
  .zodok-caurosel-content {
      width: clamp(200px, var(--item-width), 480px);
      height: clamp(300px, calc(1.5 * var(--item-width)), 720px);
      border-radius: clamp( 10px, calc(0.05 * var(--item-width)), 24px);
      background-color: rgb(188, 188, 188);
      overflow: hidden;
      position: relative;
  }
  
  .zodok-caurosel-content img {
      height: 100%;
      width: 100%;
     object-fit: cover;
  }
  
  .zodok-caurosel-item-info {
      display: grid;
      grid-template-rows: 1.5fr 2fr;
      position: absolute;
      width: 67%;
      height: 3.5em;
      left: clamp(10px, calc(0.05 * var(--item-width)), 24px);
      bottom: clamp(10px, calc(0.05 * var(--item-width)), 24px);
      padding-bottom: 5px;
  }
  
  .zodok-caurosel-gradiant {
      position: absolute;
      width: 100%;
      border-bottom-left-radius: clamp( 10px, calc(0.05 * var(--item-width)), 24px);
      border-bottom-right-radius: clamp( 10px, calc(0.05 * var(--item-width)), 24px);
      height: 200%;
      background-image: linear-gradient(
          rgb(51, 51, 51, 0) 0%,
          rgb(51, 51, 51, 0.019) 50%,
          rgb(51, 51, 51, 0.037) 65%,
          rgb(51, 51, 51, 0.075) 75.5%,
          rgb(51, 51, 51, 0.15) 82.85%,
          rgb(51, 51, 51, 0.3) 88%,
          rgb(51, 51, 51, 1) 100%
          );
      left: 0;
      bottom: 0;
  }

  .zodok-caurosel-content > a {
    position: absolute;
    width: 100%;
    border-bottom-left-radius: clamp( 10px, calc(0.05 * var(--zodok-caurosel-1-item-width)), 24px);
    border-bottom-right-radius: clamp( 10px, calc(0.05 * var(--zodok-caurosel-1-item-width)), 24px);
    height: 100%;
    left: 0;
    bottom: 0;
}
  
  .zodok-caurosel-description {
      overflow: auto;
      scrollbar-width: none;
  }
  
  .zodok-caurosel-content div h1 {
      font-size: 1.2em;
      color: #FFF;
      font-weight: 400;
      margin: 0;
      padding: 0;
      height: 100%;
  }
  
  .zodok-caurosel-content div p {
      font-size: 0.8em;
      color: #d3d3d3;
      padding: 0;
      margin: 0;
  }
  
  .zodok-caurosel-content  div a {
      position: absolute;
      bottom: clamp(10px, calc(0.05 * var(--item-width)), 24px);
      right: clamp(10px, calc(0.05 * var(--item-width)), 24px);

      display: flex;
      align-items: center;
      justify-content: center;
      background-color: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(5px);
      height: clamp(32px, calc(0.16 * var(--item-width)), 57.6px);
      width: clamp(32px, calc(0.16 * var(--item-width)), 57.6px);
      border: 0;
      border-radius: clamp(8px, calc(0.04 * var(--item-width)), 19.2px);
      padding: 0;
  }
  
  .zodok-caurosel-content  div a img:hover {
      transform: scale(1.1);
  }
  
  .zodok-caurosel-content  div a img {
      height: 50%;
      width: 50%;
      transition: 0.1s;
  }
  
  .zodok-caurosel-title {
      /* font-weight: 600; */
      padding: 0 5rem;
      font-size: calc(var(--font-heading-scale) * 2rem);
      /* text-align: center; */
      /* padding-left: clamp( 10px, calc(0.05 * var(--item-width)), 24px); */
      color: #ffffff;
  }
  
  @media (pointer:fine) {
      .zodok-caurosel-button {
          display: flex;
      }
  }
  
  @media only screen and (max-width: 767px) {
  
      .zodok-caurosel-content div {
          display: flex;
          align-items: flex-end;
      }

      .zodok-caurosel-title {
      padding: 0 1.5rem;
      }
  
      .zodok-caurosel-item-info div h2 {
          font-size: 1em;
      }
  
      .zodok-caurosel-item-info p {
          display: none;
      }
  
      .zodok-caurosel-item-info div {
          height: fit-content;
          margin: 0;
      }
  
      .zodok-caurosel-item-info {
          height: 32px;
          padding: 0;
      }
  }
.zodok-fixed-button {
    text-align: center;
    position: sticky;
    height: 2.8em;
    top: 0;
    z-index: 2;
  }

  .zodok-fixed-button-button {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  
    overflow: hidden;
    text-decoration: none;
  
    cursor: pointer;
    border: 0px solid #5439DB;
    border-radius: 22px;
    height: 44px;
    width: calc(10em + 8px);
    padding: 0;
    outline: none;
    text-align: center;
    line-height: 250%;
    background-color:#5439DB;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .zodok-fixed-button-button > h1 {
    margin: 0;
    width: 100%;
    font-size: 16px;
    color: white;
    position: relative;
    bottom: 0px;
    text-decoration: none;
    transition: color 0.3s 0.1s ease-out;
  }
  
  .dribble {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  
    background-color: white;
    height: 0px;
    width: 0px;
    border-radius: 100%;
    transition: height 0.3s 0.1s ease-out, width 0.3s 0.1s ease-out, left 0.3s 0.1s ease-out;
  }
  
  .zodok-fixed-button-button:hover {
    .dribble {
      height: 10.9em;
      width: 10.9em;
      left: -0.4em;
    }

    h1 {
      color: #5439DB;
    }
  }