* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Neue Haas Grotesk Display Pro"; */
    /* font-family: 'Transpass', sans-serif; */
    /* text-transform: uppercase; */
}

html,body {
    width: 100vw;
}

body {
    background-color: rgb(255, 255, 255);
    /* font-family: 'Transpass', sans-serif; */
    font-family: "Neue Haas Grotesk Display Pro";

}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
}

h1 {
    text-align: center;
    font-size: 10vw;
    font-weight: 300;
    line-height: 100%;
}

h2 {
    font-size: 2.5vw;
    font-weight: 500;
    line-height: 100%;
}

p {
    font-size: 12px;
    font-weight: 500;
    line-height: 100%;
}

.model {
    position: fixed;
    width: 100%;
    height: 100vh;
    /* background:#fefdfd; */
    /* background-color: rgba(0, 0, 0, 0.4); */
    z-index: 1;
}



section {
    position: relative;
    /* z-index: -1; */
}

.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: 300% 300%;
    background-image: linear-gradient(-45deg, rgb(221, 13, 214) 0%, #00c8ff 25%, rgb(30, 255, 195) 51%, #ffff5a 100%);
    -webkit-animation: AnimateBG 5s ease infinite;
            animation: AnimateBG 5s ease infinite;
    font-family: "Neue Haas Grotesk Display Pro";
}

@-webkit-keyframes AnimateBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes AnimateBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.clouds_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.hero h1 {
    margin-bottom: 0.25em;
    z-index: 1;
    font-family: "Neue Haas Grotesk Display Pro";
}

.hero p {
  width: 50%; 
  text-align: center;
  z-index: 1;
  align-items: right;
  justify-content: right;
}

.new_arrivals {
  font-size: 5vh;
  margin-bottom: 2vh;
}

#mb_slider {
  display: none;
  transition: 0.5s;
}

#video_heading {
  font-family: "Neue Haas Grotesk Display Pro";
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  text-align:center;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;

}

.sidenav a:hover{
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.nav {
    width: 100%;
    display: flex;
    gap: 2em;
    justify-content: right;
    position: fixed;
    z-index: 5;
    margin-top: 3vh;
    padding-right: 5vh;
    top: 0;
}


.nav a{
    font-size: 15px;
    color:#000;
}

.nav a:visited {
  color: #000;
}

.nav a:hover {
    color: rgb(255, 255, 255);
    cursor: pointer;
}

.nav a:active {
  color: rgb(0, 0, 0);
}

.nav span {
  display: none;
}

.marquee img{
  height:15vh;
  width:15vh;
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  /* background: #111; */
  padding: 10px 0;
  position: relative;
}

.marquee-content {
  display: flex;
  gap: 20px;
  animation: marquee 10s linear infinite;
}

@keyframes marquee {
  from {
      transform: translateX(0);
  }
  to {
      transform: translateX(-50%);
  }
}

.buy_now {
    /* font-size: 2vw; */
    padding: 0.25em 0.5em;
    color:rgb(0, 0, 0);
    border: 1px solid rgb(0, 0, 0);
    border-radius: 0.125em;
    border-width: 0.07em;
    margin-top: -0.75vh;
    font-size: 15px;
}

.buy_now:hover {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    cursor: pointer;
}

.arrow2 {
    animation: slide2 1s ease-in-out infinite;
}

@keyframes slide2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(3px, -3px) rotate(0deg);
  }
}

.info {
    gap:8em;
}

.info .tags {
    width: 60%;
    display: flex;
    gap: 2em;
}

.info h2{
    width: 75%; 
    text-align: center;
}

.info p {
    width: 60%;
    text-align: center;
}

.scan-info {
    position: absolute;
    top: 0;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    padding: 2em;
}

.scan-container {
    width: 280px;
    height: 550px;
    margin-top: 50px;
    border: 1px solid #000;
    border-radius: 0.5em;

}

.barcode {
    position: absolute;
    bottom: 1em;
    left: 2em;
    width: 200px;
    height: 100px;
}

.purchased {
    /* position: f; */
    bottom: 8em;
    /* right: 2em; */
    padding: 0.5em 4em;
    color:rgb(0, 0, 0);
    border: 1px solid rgb(0, 0, 0);
    border-radius: 1em;
}

.purchased p {
    font-size: 1em;
}


.outro h2 {
    width: 70%; 
    text-align: center;
}

.lenis.lenis-smooth
{
    scroll-behavior: auto ! important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped
{
    overflow: clip;
}

.lenis.lenis-smooth iframe
{
    pointer-events: none;
}

section .air{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(https://1.bp.blogspot.com/-xQUc-TovqDk/XdxogmMqIRI/AAAAAAAACvI/AizpnE509UMGBcTiLJ58BC6iViPYGYQfQCLcBGAsYHQ/s1600/wave.png);
    background-size: 1000px 100px;
    z-index: 0;
}
section .air.air1{
    animation: wave 30s linear infinite;
    z-index: 1000;
    opacity: 1;
    animation-delay: 0s;
    bottom: 0;
    z-index: 0;
}
section .air.air2{
    animation: wave2 15s linear infinite;
    z-index: 999;
    opacity: 0.5;
    animation-delay: -5s;
    bottom: 10px;
    z-index: 0;
}
section .air.air3{
    animation: wave 30s linear infinite;
    z-index: 998;
    opacity: 0.2;
    animation-delay: -2s;
    bottom: 15px;
    z-index: 0;
}
section .air.air4{
    animation: wave2 5s linear infinite;
    z-index: 997;
    opacity: 0.7;
    animation-delay: -5s;
    bottom: 20px;
    z-index: 0;
}
@keyframes wave{
    0%{
        background-position-x: 0px; 
    }
    100%{
        background-position-x: 1000px; 
    }
}
@keyframes wave2{
    0%{
        background-position-x: 0px; 
    }
    100%{
        background-position-x: -1000px; 
    }
}


/*  .......................................................................... */

/* Float four columns side by side */
.column {
    float: left;
    width: 25%;
    padding: 0 10px;
    z-index: 1;
}

/* Remove extra left and right margins, due to padding */
.row {
    margin: 0 -5px;
    text-align: center;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
    
}

/* Responsive columns */
@media screen and (max-width: 600px) {
.column {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}
}

/* Style the counter cards */
.card {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
    padding: 16px;
    text-align: left;
    background-color: #ffffff;
    border-radius: 1vh;
}

.container {
    padding: 5em 2em;
    z-index: 1;
}

.container h3 {
    font-size: 2vw;
    padding: 2em 0 1em 0 ;
}

.container h2 {
    margin-top: 1em;
    font-size: 1.5vw;
}

.container p {
    padding-top: 0.5em;
}

.container img {
    height: 35vh;
    object-fit: cover;
    border-radius: 1.5em;
}

.container a {
    color: #000;
}


#myVideo {
    width: 100%;
    z-index: -100;
    filter: blur(5px);
}

.responsive-cell-block {
    min-height: 75px;
  }
  
.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  line-height: 25px;
  height: 50%;
  width: 100%;
}

img {
  object-fit: cover;
}

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.responsive-container-block.bg {
  width: 100%;
  height: auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1320px;
  margin: 50px 0 50px 0;
}

.text-blk.title {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 40px;
  line-height: 45px;
  font-weight: 350;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin: 0 0 15px 0;
}

.text-blk.desc {
  text-align: center;
  font-size: 15px;
  line-height: 28px;
  height: auto;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  max-width: 750px;
}

.responsive-container-block.blocks {
  width: 100%;
  min-height: 0px;
  justify-content: space-between;
  max-width: 1320px;
}

.responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content {
  width: 30%;
  height: auto;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.text-blk.info-block {
  width: 85%;
  height: auto;
  font-size: 13px;
  line-height: 30px;
  margin-top: 30px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
  margin: 30px 0 30px 0;
}

.responsive-container-block.person {
  width: 90%;
  min-height: 0px;
  height: auto;
  margin-top: 0px;
  margin-right: 31.25px;
  margin-bottom: 20px;
  margin-left: 31.25px;
}

.responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.icon-block {
  width: 22%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.text-block {
  width: 78%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.text-blk.name {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  height: auto;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
}

.text-blk.desig {
  line-height: 16px;
  height: auto;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

.profile-img {
  width: 60px;
  height: 60px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
}

.responsive-container-block.big-container {
  justify-content: center;
  padding: 0 50px 0 50px;
}

@media (max-width: 1024px) {
  .responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content {
    width: 47%;
  }

  .responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content.bottom {
    margin-top: 5%;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 25%;
  }

  .text-blk.desc {
    width: 70%;
  }

  .responsive-container-block.person {
    margin-top: 5%;
    margin-right: 31.25px;
    margin-bottom: 0px;
    margin-left: 31.25px;
  }

  .text-blk.title {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.person {
    margin-top: 21.9375px;
    margin-right: 31.25px;
    margin-bottom: 20px;
    margin-left: 31.25px;
  }

  .text-blk.info-block {
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 25px;
    margin-left: 0px;
  }
}

@media (max-width: 768px) {
  .responsive-container-block.person {
    margin-top: 0px;
    margin-right: 31.25px;
    margin-bottom: 0px;
    margin-left: 31.25px;
  }

  .text-blk.info-block {
    height: 50%;
    font-size: 17px;
  }

  .responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5%;
    margin-left: 0px;
  }

  .text-blk.desc {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 80px;
    margin-left: 0px;
    width: 85%;
    font-size: 17px;
  }

  .text-blk.title {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    font-size: 30px;
  }

  .responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content.bottom {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.blocks {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.bg {
    flex-wrap: nowrap;
  }

  .responsive-container-block.person {
    margin-top: 0px;
    margin-right: 31.25px;
    margin-bottom: 20px;
    margin-left: 31.25px;
  }

  .text-blk.info-block {
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
  }

  .text-blk.desc {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
  }

  .text-blk.desig {
    font-size: 15px;
  }

  .text-blk.name {
    font-size: 17px;
  }
}

@media (max-width: 500px) {
  .responsive-cell-block.wk-desk-1.wk-tab-1.wk-mobile-1.wk-ipadp-1.content {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 8%;
    margin-left: 0px;
  }

  .text-blk.desc {
    width: 90%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    font-size: 16px;
    line-height: 24px;
  }

  .text-blk.title {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    font-size: 26px;
  }

  .text-blk.info-block {
    margin-top: 30px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
    font-size: 16px;
    line-height: 26px;
    margin: 30px 0 20px 0;
  }

  .text-blk.desc {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
  }

  .responsive-container-block.big-container {
    padding: 0 30px 0 30px;
  }

  .text-blk.name {
    font-size: 17px;
  }

  .text-blk.desig {
    font-size: 15px;
  }
}

#test_head {
  font-weight: 500;
  font-size: 4.5rem;
  line-height: 1; 
  color: #010101; 
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
  line-height: 1em;
  letter-spacing: -.05em;
}

footer {
    background-color: #8c8c8c;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
}

footer ul{
  padding-left: 5vh;
  list-style-type: none;
  text-align : left;
}

footer div{
  display: flex;
  justify-content: center;
}

footer p{
  align-self: flex-end;
  margin-right:10px;
}

footer a {
  text-decoration: none;
  color : white;
  font-size:1.5vh;
}

footer a:hover {
  color : rgb(0, 179, 255);
}

@media (max-width:550px) {
  .hero h1{
      font-size: 15vw;
      margin-top: 15vw;
  }

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

  .hero p {
    margin-bottom: 25vw;
    width: 90%;
  }

  .hero h2 {
    margin-top: 100vw;
    font-size: 3vh;
  }

  .nav {
    margin-top: 1vh;
    padding-right: 3vh;
  }

  .nav p{
    display: none;
  }

  .nav span {
    display: block;
  }

  .nav-button {
    display: block;
  }

  .new_arrivals {
    font-size: 3vh;
  }

  #mb_slider {
    display: block;
  }

  #pc_slider {
    display: none;
  }

  #product_name {
    font-size: 3vh;
  }

  #product_desc {
    font-size: 1.5vh;
  }
  
  .mySlides {
    display: none;
    transition: visibility 0s, opacity 0.5s linear;
  }

  #video_heading {
    margin: 0vh 1vh 0vh 1vh;
  }

  #test_head {
    font-size: 7vh;
    font-weight: 500;
    line-height: 1; 
    color: #010101; 
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
    line-height: 1em;
    letter-spacing: -.05em;
  }

}


/*  */

  .product-banner-1 {
    margin: 4vh;
  }
  .product-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .product {
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 20px;
  }

  .product.large {
    flex: 2;
    min-height: 500px;
  }

  .product-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 300px;
  }

  .product.small {
    flex: 1;
    min-height: 240px;
  }

  .text h1, .text h2 {
    margin-bottom: 5px;
  }

  .text p {
    font-weight: 300;
    font-size: 0.9em;
  }

  /* Responsive Breakpoints */
  @media (max-width: 1024px) {
    .product-grid {
      flex-direction: column;
    }

    .product.large,
    .product.small {
      width: 100%;
      min-height: 300px;
    }

    .product-column {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 20px;
    }

    .product.small {
      flex: 1;
      min-height: 200px;
    }
  }

  @media (max-width: 600px) {
    .product-banner-1 {
      margin: 0vh;
    }

    .product {
      border-radius: 0px;
    }

    .product-column {
      flex-direction: column;
      gap: 0px;
    }

    .product-grid {
      gap: 0px;
    }

    .product.large,
    .product.small {
      min-height: 180px;
    }

    .text h1, .text h2 {
      font-size: 1.2rem;
    }

    .text p {
      font-size: 0.85rem;
    }
  }


/*  */