
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: #000;
}
body {
  height: 100%;
  overflow-x: hidden;
  font-family: "Roboto", monospace;
  font-optical-sizing: auto;
  scroll-behavior: smooth;
}
strong {
  font-weight: bold;
}

h2 {
  font-size: 38px;
  line-height: 48px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
h2 span {
  color: red;
}

h2.slide-title {
  font-size: 10vw;
  line-height: 20rem;
  font-weight: bold;
  margin: 35px 0;
  text-transform: uppercase;
  display: inline-block;
  width: 100%;
  text-align: center;
}
h2.slide-title span {
  color: red;
}



p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 25px;
  color: #fff;
}





.hamburger {
  position: fixed;
  left: 20px;
  top: 20px;
  z-index: 10000;
  padding: 10px;
  min-width: 50px;
  min-height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  .hamburger {
    left: 15px;
    top: 15px;
    padding: 8px;
    min-width: 45px;
    min-height: 45px;
  }
}

@media only screen and (max-width: 480px) {
  .hamburger {
    left: 10px;
    top: 10px;
    padding: 6px;
    min-width: 40px;
    min-height: 40px;
  }
}
.hamburger .line{
  width: 30px;
  height: 3px;
  background-color: #fff;
  display: block;
  margin: 4px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  
}

@media only screen and (max-width: 768px) {
  .hamburger .line {
    width: 30px;
    height: 3px;
    margin: 3px auto;
  }
}


.hamburger:hover{
  cursor: pointer;
}
.hamburger:hover .line{
  background-color: red;
}
#hamburger-6.is-active{
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
 
}

#hamburger-6.is-active .line:nth-child(2){
  width: 0px;
  background-color: #fff;
}

#hamburger-6.is-active .line:nth-child(1),
#hamburger-6.is-active .line:nth-child(3){
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
  background-color: #fff;
}

#hamburger-6.is-active .line:nth-child(1){
  -webkit-transform: translateY(9px);
  -ms-transform: translateY(9px);
  -o-transform: translateY(9px);
  transform: translateY(9px);
  background-color: #fff;
}

#hamburger-6.is-active .line:nth-child(3){
  -webkit-transform: translateY(-13px) rotate(90deg);
  -ms-transform: translateY(-13px) rotate(90deg);
  -o-transform: translateY(-13px) rotate(90deg);
  transform: translateY(-13px) rotate(90deg);
  background-color: #fff;
}
#hamburger-6.is-active:hover .line {
  background-color: red;
}

.wrap {
  transition: all .2s ease-in;
}
.wrap.scale {
  /* transform: scale(0.95); */
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  z-index: 1000;
  background: #000;
  padding: 20px;
  /* width: 100%; */
  width: 100%;
  height: 100%;
  transition: all 350ms cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
  transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
}
.nav.on {
  transform: translateX(0);

}

.nav ul {
  list-style: none;
  /* display: flex;
  width: 100%;
  justify-content: space-between; */
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:  center;
}

.wrap {
    transition: transform 0.4s ease; /* smooth scaling */
    transform-origin: center center; /* pivot from center for 3D effect */
    /* optional for 3D effect */
    perspective: 1000px;
}

.wrap.scale {
    transform: scale(0.8) translateZ(0); /* scale down slightly */
}


.nav ul li {
  margin-bottom: 10px;
  text-align: left;
  margin: 0;
  width: 100%;
  display: inline-block;
}

.nav ul li a {
  text-decoration: none;
  color: #fff;
  padding: 10px 10px;
  margin-left: 110px;
  transition: all .2s ease-in;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 54px;
  line-height: 34px;
  display: inline-block;
  width: calc(100% - "118px");
  font-weight: bold;
}

@media only screen and (max-width: 768px) { 
  .nav ul li { 
    margin: 0;
  }
  .nav ul li a { 
    margin: 0;
    font-size: 28px;
    padding: 8px 15px;
    width: 100%;
    line-height: 1.2;
  }
}

@media only screen and (max-width: 480px) { 
  .nav ul li a { 
    font-size: 24px;
    padding: 10px 15px;
  }
}

.nav ul li a:hover {
  text-decoration: none;
  border-color: red;
  background-color: red;
}
.nav ul li a:hover .glitch:before, 
.nav ul li a:hover .glitch:after { 
  background-color: red;
}
.slide {
  /* height: 100vh;  */
  width: 100%;
  position: relative;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  color: #fff;
  overflow-x: hidden;
  margin-bottom: 75px;
}

@media only screen and (max-width: 768px) {
  .slide {
    min-height: auto;
    height: auto;
    padding: 0 10px;
  }
}



.content {
  text-align: center;
  /* transform: translateY(100px); */
  /* opacity: 0; */
  position: relative;
  z-index: 100;
}

.content-flex {
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: flex-start;   /* align columns top-to-top (or use center if you prefer) */
  flex-wrap: wrap;           /* allow wrapping on small screens */
  gap: 40px;                 /* space between columns */
  height: 100%;
  padding: 50px;
  box-sizing: border-box;
  font-size: 18px;
}



.content-flex > div {
  flex: 1 1 45%;     
  /* background: rgba(255,255,255,0.1); */
  padding: 3rem;
  flex-grow: 1;
}
@media only screen and (max-width: 768px) { 
  .content {
    opacity: 1;
    padding: 20px;
  }
}
.content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.content p {
  font-size: 1.4rem;
  line-height: 2.4em;
}
.content .gallery-item-text {
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  padding: 0;
  display: flex;
  align-items: center;
  text-align: left;
  justify-content: center;
  width: 100%;
  z-index: 10;

}
.content .gallery-item-text div {
  padding: 50px;  
  background: #000;

}
.content .gallery-item-text p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 35px;
}
.content .gallery-item-text p strong {
  font-size: 24px;
  line-height: 26px;
  margin-bottom: 0;
  margin-top: 65px;
  display: inline-block;
}
@media only screen and (max-width: 768px) { 
  .content .gallery-item-text p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .content .gallery-item-text div {
    padding: 30px 20px;
  }
}

@media only screen and (max-width: 480px) { 
  .content .gallery-item-text p {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 15px;
  }
  .content .gallery-item-text div {
    padding: 20px 15px;
  }
}
.content .gallery-item-text h2 {
  font-size: 120px;
  line-height: 120px;
  margin-bottom: 20px;
  color: red;
  text-align: center;
  letter-spacing: -6px;
  font-weight: bold;
  transition: all .2s ease-in;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
  display: inline-block;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) { 
  .content .gallery-item-text h2 { 
    font-size: 80px;
    line-height: 80px;
    letter-spacing: -2px;
  }
}

@media only screen and (max-width: 480px) { 
  .content .gallery-item-text h2 { 
    font-size: 50px;
    line-height: 50px;
    letter-spacing: -1px;
  }
}

.content .gallery-item-text h2 span {
  color: #fff;
 }
[data-parallax] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.tog-dsp {
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease-in;
  position: absolute ;
  top: 50%;
  width: 100%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.gallery-item:hover h2 {
  opacity: 0;
  visibility: hidden;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);

} 
.gallery-item:hover .tog-dsp {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(-50%);
} 
@media only screen and (min-width: 600px) {  
  .tog-dsp {
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease-in;
    position: absolute ;
    top: 50%;
    width: 100%;
    left: 50%;
    transform: translateY(-60%) translateX(-50%) scale(0.1);
  }
  .gallery-item:hover h2 {
    opacity: 0;
    visibility: hidden;
    left: 50%;
    transform: translateY(-80%) translateX(-50%) scale(0.8);
  
  } 
  .gallery-item:hover .tog-dsp {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-50%) scale(1);
  } 

}

.bio-wrap {
  grid-area: 1 / 1 / 2 / 4;
}
.bio-box {
  margin: auto; /* Centers the bio-box */
  background: #fff;
  position: relative;
  padding: 15px;
}

.bio-box p {
  color: #000;
  font-size: 1.4rem;
  line-height: 24px;
}


.bio-title {
  font-size: 3.6rem;
  line-height: 1;
  margin: 0;
  padding: 20px;
  background: #fff;
  color: #000;
  display: inline-block;
}
.bio-gallery {
  grid-area: 2 / 1 / 3 / 4; 
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
  justify-items: center;
  align-items: center;
  
}
.bio-gallery .gallery-item {
  width: 150px;
  height: 150px;
  
}


#gridCanvas1,
#gridCanvas2,
#gridCanvas3,
#gridCanvas4   {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: -1; /* Behind the content */
}
#gridCanvas2 {
  z-index: 1; /* Behind the content */
}
#gridCanvas3 {
  z-index: 2; /* Behind the content */
}
#gridCanvas4 {
  z-index: 3; /* Behind the content */
}
#slide1:after,
#slide2:after,
#slide3:after,
#slide4:after {
  /* content: ""; */
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0) 80%, rgba(0,0,0,1) 100%);
  z-index: 3;
}



@media only screen and (max-width: 600px) {
  #gridCanvas1 {
    position: fixed;
  }
  #gridCanvas2,
  #gridCanvas3,
  #gridCanvas4  {
    display: none;
  }
  #slide1:after,
  #slide2:after,
  #slide3:after,
  #slide4:after  {
    display: none;
  }
}


.circle-bg {
  /* width: 90%; 
  height: 70%; 
  max-height: 70%;
  max-width: 90%; */
  background: radial-gradient(circle, rgba(255,255,255,1) 35%, rgba(255,255,255,0) 100%); 
  color: red; /* Text color */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* margin-left: 5%; */
  padding: 10px; /* Adjust the padding as needed */
  box-sizing: border-box; /* Ensures padding doesn't affect the size of the circle */
}
@media only screen and (min-width: 600px) {
  .circle-bg {
    border-radius: 50%;
    width: 80%; /* Adjust the width as needed */
    height: 80%; /* Make the height equal to the width */
    max-height: 80%;
    max-width: 80vw;
    padding: 100px; /* Adjust the padding as needed */
  }
}


.circle-bg p {
  font-size: 18px;
  display: block;
}
.circle__white {
  background: #fff; /* Background color of the circle */

}
.circle__black {
  background: rgb(0,0,0);
  background: radial-gradient(circle, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
  color: #fff; /* Text color */
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px; /* Adjust the padding as needed */
  box-sizing: border-box; /* Ensures padding doesn't affect the size of the circle */
  




}
@media only screen and (min-width: 600px) {
  .circle-bg {
    /* border-radius: 50%;
    padding: 100px; 
    width: 80vh; 
    height: 80vh; 
    max-height: 80vw;
    max-width: 80vw;
    margin: 0;
    background: #000;  */

    /* position: relative; */

    


  }
  .circle-bg {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(1);
      border-radius: 50%;
      width: 80vh;
      height: 80vh;
      max-width: 80vw;
      max-height: 80vw;
      background: rgba(0, 0, 0, 1);
      z-index: -1;
      transition: none;
      will-change: transform, border-radius;
  }
}









/* Main container to ensure the circular shape */
.gallery-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80vh;
  height: 80vh;
  max-height: 80vh;
  max-width: 80vh;

  overflow: hidden;
  margin: auto;
  position: relative;
}
.gallery-container__black {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80vw;
  height: 80vw;
  max-height: 80vh;
  max-width: 80vh;
  border-radius: 50%;
  background: #000;
  overflow: hidden;
  margin: auto;
  position: relative;
  transition: all .3s ease-in;
}

@media only screen and (max-width: 1000px) { 
  .gallery-container__black {
    width: 95vw;
    height: 95vh;
    max-height: 95vh;
    max-width: 95vw;
    border-radius: 0;
  }
  .gallery-container {
    width: 95vw;
    height: 95vh;
    max-height: 95vh;
    max-width: 95vw;
  }
}

@media only screen and (max-width: 768px) { 
  .gallery-container__black {
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    max-width: 100vw;
    border-radius: 0;
  }
  .gallery-container {
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    max-width: 100vw;
  }
}
.gallery-container__black--alt {
  background: none;
  border-radius: 0;
}
.gallery-container__black:hover {
 
  border-radius: 0;
}
/* Carousel container */
.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Carousel slide */
.carousel-slide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in;
  box-sizing: border-box;
  /* padding: 200px; */
}
.carousel-slide--alt {
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, 1fr);
  position: relative;
  width: 100%;
  height: 100%;
  /* background: #000; */
}
@media (max-width: 768px) { /* Adjust max-width as needed for mobile */
  .carousel-slide {
    padding: 20px;
    gap: 20px;
  }
  .carousel-slide--alt {
    background: #000;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .carousel-slide {
    padding: 10px;
    gap: 15px;
  }
  .carousel-slide--alt {
    padding: 15px;
  }
}

.carousel-slide--circle:after {
  content: "";
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: #000;
  /* opacity: 0.8; */
  overflow: hidden;
  margin: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: all .3s ease-in;
  /* padding: 80px; */
}
@media only screen and (max-width: 768px) { 
  .carousel-slide--circle:hover:after {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
}

@media only screen and (max-width: 768px) { 
  .carousel-slide--circle {
    padding: 20px;
    border-radius: 0;
  }
  .carousel-slide--circle:after { 
    border-radius: 0;
  }
}

@media only screen and (max-width: 480px) { 
  .carousel-slide--circle {
    padding: 10px;
  }
}
.carousel-slide--cross:after {
  content: "";
  border-radius: 0;
  width: 80%;
  height: 80%;
  background: #000;
  overflow: hidden;
  margin: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0) scale(1);
  transition: all .3s ease-in;
  clip-path: polygon(
    40% 0%, 60% 0%, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 
    60% 100%, 40% 100%, 40% 60%, 0% 60%, 0% 40%, 40% 40%
  )
}
.carousel-slide--triangle:after {
  content: "";
  border-radius: 0;
  width: 80%;
  height: 80%;
  background: #000;
  overflow: hidden;
  margin: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0) scale(1);
  transition: all .3s ease-in;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.carousel-slide--square:after {
  content: "";
  border-radius: 0;
  width: 80%;
  height: 80%;
  background: #000;
  overflow: hidden;
  margin: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  transition: all .3s ease-in;
}
.carousel-slide--square:hover:after {
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(1);
  
  /* padding: 80px; */
}
.carousel-slide--cross:hover:after,
.carousel-slide--triangle:hover:after {
  opacity: 0;
  transform: scale(1) translate3d(-50%, -50%, 0) ;
}
/* Adjustments for each gallery item */
.gallery-item {
  cursor: pointer;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 768px) { 
  .gallery-item {
    min-height: 120px;
  }
}

@media only screen and (max-width: 480px) { 
  .gallery-item {
    min-height: 100px;
  }
}
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  transition: clip-path 0.5s ease, filter 0.3s ease; /* Smooth transition for clip-path and filter */
  object-fit: cover;
  /* filter: grayscale(1); */
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); /* Default square shape */
  transition: all .2s ease-in;
}

/* Triangle Mask */
.gallery-item.triangle .triangle-text, 
.gallery-item.triangle img {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

/* Circle Mask */
.gallery-item.circle .circle-text, 
.gallery-item.circle img {
  clip-path: circle(50%); /* Using a circular clip */
  transition: clip-path 0.5s ease, filter 0.3s ease; /* Ensuring transition works for the circle */
}

/* Cross Mask */
.gallery-item.cross .cross-text, 
.gallery-item.cross img {
  clip-path: polygon(
    40% 0%, 60% 0%, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 
    60% 100%, 40% 100%, 40% 60%, 0% 60%, 0% 40%, 40% 40%
  )
}

/* Hover effect to turn image to full color and make it square */
.gallery-item img:hover {
  filter: grayscale(0);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); /* Default square shape */
  /* clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);  */
}
.gallery-item:hover img {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); /* Default square shape */
  /* clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);  */
}




.gallery-item.triangle .triangle-text,
.gallery-item.circle .circle-text,
.gallery-item.cross .cross-text {
  width: 100%;
  height: 100%;
}
.content-gallery {
  position: relative;
  display: flex;
  padding: 50px;
  justify-content: space-around;
}
.content-gallery img {
  position: relative;
  width: 150px;
  height: 150px;
}


@media (max-width: 1024px) {
  .gallery-container {
    border-radius: 0;
    max-width: 90vw;
  }
  .carousel-slide {
    padding: 15px;
  }

  .gallery-item {
    width: 100%;
    height: 100%;
  }

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

@media (max-width: 768px) {
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 768px) { /* Mobile */
  .carousel-slide {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
  }
  .carousel-slide--alt {
    max-height: auto;
    max-width: 100vw;
    height: auto;
    border-radius: 0;
    clip-path: none;
    padding: 20px;
  }
}

@media (max-width: 480px) { /* Small Mobile */
  .carousel-slide {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 10px;
    padding: 15px;
  }
  .carousel-slide--alt {
    padding: 15px;
  }
}


/* Styles for the lightbox */
.lightbox {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 1);
}

.lightbox-content {
  display: block;
  max-width: 80%;
  max-height: 80%;
  margin: auto;
  position: absolute;
  top: 0; bottom: 0; left: 0; right: 0;
}

@media only screen and (max-width: 768px) {
  .lightbox-content {
    max-width: 95%;
    max-height: 70%;
  }
}

@media only screen and (max-width: 480px) {
  .lightbox-content {
    max-width: 98%;
    max-height: 60%;
  }
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 6rem;
  line-height: 1;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  padding: 10px;
  min-width: 60px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 768px) {
  .close {
    font-size: 4rem;
    top: 15px;
    right: 20px;
    padding: 8px;
    min-width: 50px;
    min-height: 50px;
  }
}

@media only screen and (max-width: 480px) {
  .close {
    font-size: 3rem;
    top: 10px;
    right: 15px;
    padding: 6px;
    min-width: 40px;
    min-height: 40px;
  }
}

.close:hover,
.close:focus {
  color: red;
  text-decoration: none;
  cursor: pointer;
}



.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  /* padding: 80px; */
  /* background-color: #000; */
}

.carousel-prev--alt, 
.carousel-next--alt, 
.carousel-prev, 
.carousel-next {
  /* background: rgba(0, 0, 0, 0.5); */
  border: none;
  color: red;
  font-size: 16rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 1000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all .2s ease-in;
  background: none;
}
.carousel-prev--alt, .carousel-next--alt {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1001;
}
.carousel-prev:hover, .carousel-next:hover {
  /* background: rgba(255, 255, 255, 0.9); */
  color: #fff;


}
.carousel-prev--alt:hover, .carousel-next--alt:hover {
  /* background: rgba(255, 255, 255, 1); */
  color: #fff;

}
.carousel-prev--alt,
.carousel-prev {
  left: 20px;
  position: absolute;
}

.carousel-next--alt, 
.carousel-next {
  right: 20px;
  position: absolute;
}


@media only screen and (max-width: 768px) { 
  .carousel-prev--alt, 
  .carousel-next--alt, 
  .carousel-prev, 
  .carousel-next {
    font-size: 4rem;
    padding: 20px;
    min-width: 60px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  .carousel-prev--alt, 
  .carousel-next--alt {
    color: #000 !important;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    z-index: 1001;
  }
  .carousel-next--alt, 
  .carousel-next {
    right: 10px;
    position: absolute;
  }
  .carousel-prev--alt,
  .carousel-prev {
    left: 10px;
    position: absolute;
  }
}

@media only screen and (max-width: 480px) { 
  .carousel-prev--alt, 
  .carousel-next--alt, 
  .carousel-prev, 
  .carousel-next {
    font-size: 3rem;
    padding: 15px;
    min-width: 50px;
    min-height: 50px;
    z-index: 1000;
  }
  .carousel-prev--alt, 
  .carousel-next--alt {
    color: #000 !important;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    z-index: 1001;
  }
  .carousel-next--alt, 
  .carousel-next {
    right: 5px;
  }
  .carousel-prev--alt,
  .carousel-prev {
    left: 5px;
  }
}



.gallery-grid {
  display: flex;
  overflow: hidden;
  width: 100%;
}
.carousel-slide--alt, 
.carousel-slide {
  min-width: 100%;
}




.lightbox-description {
  color: white;
  text-align: center;
  position: fixed;
  bottom: 2rem;
  padding: 2rem;
  max-width: 80vw;
  margin: 0 auto;
  left: 0;
  right: 0;
  font-size: 14px;
  line-height: 24px;
  background: #000;
}
.lightbox-description h2 {
  font-size: 24px;
  line-height: 44px;
}

.lightbox-description p {
  font-size: 14px;
  line-height: 24px;
}
.lightbox-description a {
  color: red;
  text-decoration: underline;
}
.lightbox-description a:hover {
  color: red;
}

.lightbox-nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-nav button {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 4rem;
  cursor: pointer;
  transition: all .2s ease-in;
  padding: 20px;
  min-width: 60px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 768px) {
  .lightbox-nav button {
    font-size: 3rem;
    padding: 15px;
    min-width: 50px;
    min-height: 50px;
  }
}

@media only screen and (max-width: 480px) {
  .lightbox-nav button {
    font-size: 2.5rem;
    padding: 10px;
    min-width: 40px;
    min-height: 40px;
  }
}
.lightbox-nav button:hover {
  background: rgba(0, 0, 0, 1);
}

#lightbox-prev {
  position: absolute;
  left: 5vw;
  top: 50%;
  transform: translateY(-50%);
}
#lightbox-next {
  position: absolute;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
}
#lightbox-prev:hover,
#lightbox-next:hover {
  color: red;
}  


.glitch {
  color: white;
  font-size: 7vw;
  line-height: 10vh;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 10px;
}
@media only screen and (max-width: 768px) {  
  .glitch {
    font-size: 8vw;
    line-height: 8vh;
    padding: 15px;
  }
}

@media only screen and (max-width: 480px) {  
  .glitch {
    font-size: 10vw;
    line-height: 10vh;
    padding: 10px;
  }
}

@keyframes noise-anim {
  0% {
    clip: rect(27px, 9999px, 18px, 0);
  }
  5% {
    clip: rect(42px, 9999px, 45px, 0);
  }
  10% {
    clip: rect(30px, 9999px, 47px, 0);
  }
  15% {
    clip: rect(60px, 9999px, 40px, 0);
  }
  20% {
    clip: rect(90px, 9999px, 4px, 0);
  }
  25% {
    clip: rect(9px, 9999px, 57px, 0);
  }
  30% {
    clip: rect(57px, 9999px, 66px, 0);
  }
  35% {
    clip: rect(63px, 9999px, 97px, 0);
  }
  40% {
    clip: rect(26px, 9999px, 90px, 0);
  }
  45% {
    clip: rect(67px, 9999px, 8px, 0);
  }
  50% {
    clip: rect(10px, 9999px, 12px, 0);
  }
  55% {
    clip: rect(56px, 9999px, 84px, 0);
  }
  60% {
    clip: rect(85px, 9999px, 67px, 0);
  }
  65% {
    clip: rect(4px, 9999px, 73px, 0);
  }
  70% {
    clip: rect(1px, 9999px, 62px, 0);
  }
  75% {
    clip: rect(76px, 9999px, 72px, 0);
  }
  80% {
    clip: rect(43px, 9999px, 52px, 0);
  }
  85% {
    clip: rect(43px, 9999px, 66px, 0);
  }
  90% {
    clip: rect(80px, 9999px, 38px, 0);
  }
  95% {
    clip: rect(34px, 9999px, 93px, 0);
  }
  100% {
    clip: rect(8px, 9999px, 2px, 0);
  }
}
.glitch:after {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  text-shadow: -1px 0 red;
  top: 0;
  color: white;
  background: black;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  padding: 10px;
  animation: noise-anim 9s infinite linear alternate-reverse;
}

@keyframes noise-anim-2 {
  0% {
    clip: rect(15px, 9999px, 33px, 0);
  }
  5% {
    clip: rect(46px, 9999px, 95px, 0);
  }
  10% {
    clip: rect(93px, 9999px, 53px, 0);
  }
  15% {
    clip: rect(17px, 9999px, 58px, 0);
  }
  20% {
    clip: rect(58px, 9999px, 88px, 0);
  }
  25% {
    clip: rect(20px, 9999px, 21px, 0);
  }
  30% {
    clip: rect(66px, 9999px, 14px, 0);
  }
  35% {
    clip: rect(33px, 9999px, 69px, 0);
  }
  40% {
    clip: rect(99px, 9999px, 2px, 0);
  }
  45% {
    clip: rect(90px, 9999px, 17px, 0);
  }
  50% {
    clip: rect(47px, 9999px, 46px, 0);
  }
  55% {
    clip: rect(85px, 9999px, 21px, 0);
  }
  60% {
    clip: rect(16px, 9999px, 98px, 0);
  }
  65% {
    clip: rect(19px, 9999px, 93px, 0);
  }
  70% {
    clip: rect(23px, 9999px, 2px, 0);
  }
  75% {
    clip: rect(39px, 9999px, 78px, 0);
  }
  80% {
    clip: rect(68px, 9999px, 28px, 0);
  }
  85% {
    clip: rect(100px, 9999px, 31px, 0);
  }
  90% {
    clip: rect(44px, 9999px, 66px, 0);
  }
  95% {
    clip: rect(41px, 9999px, 70px, 0);
  }
  100% {
    clip: rect(86px, 9999px, 17px, 0);
  }
}
.glitch:before {
  content: attr(data-text);
  position: absolute;
  left: -2px;
  text-shadow: 1px 0 blue;
  top: 0;
  color: white;
  background: black;
  padding: 10px;
  overflow: hidden;
  clip: rect(0, 900px, 0, 0);
  animation: noise-anim-2 10s infinite linear alternate-reverse;
}


@keyframes scroll {
	0% {
		transform: translateY(0);
	}
	30% {
		transform: translateY(100px);
	}
}

svg #wheel {
	animation: scroll ease 1.5s infinite;
}

#scroll-icon {
  position: fixed;
  bottom: 50px;
  left: 50%;
  z-index: 101;
  margin-left: -20px;
}



section.contact-us #contact {
  position: relative;
  display: block;
  height: auto;
  padding: 40px;
  margin-left: auto;
  margin-right: auto;
  width: 50vh;
  background: #fff;
}

section.contact-us .section-heading {
  position: relative; 
  display: block;
  margin-bottom: 50px;
  font-size: 40px;
  text-transform: uppercase;
}
section.contact-us .section-heading h2 {
  font-weight: 400;
  font-size: 36px;
  letter-spacing: 0.5px;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  section.contact-us .section-heading h2 {
    font-size: 28px;
  }
  section.contact-us .section-heading {
    font-size: 32px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 480px) {
  section.contact-us .section-heading h2 {
    font-size: 24px;
  }
  section.contact-us .section-heading {
    font-size: 28px;
    margin-bottom: 25px;
  }
}
section.contact-us .inputField {
  width: 100%;
  max-width: 100%;
}
input, textarea {
  width: 100%;
  max-width: 100%;
  position: relative;
  display: block;
  background-color: #000;
  font-size: 12px;
  font-weight: 500;
  border: none;
  box-shadow: none;
  border-radius: 5px;
  outline-color: #9e9e9e;
  font-family: "Roboto Mono", monospace;
  color: #fff;
}

@media only screen and (max-width: 768px) {
  section.contact-us .inputField {
    width: 100%;
    max-width: 90vw;
  }
  input, textarea {
    width: 100%;
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 12px 15px;
  }
  section.contact-us #contact {
    padding: 20px;
  }
}

@media only screen and (max-width: 480px) {
  section.contact-us .inputField {
    width: 100%;
    max-width: 95vw;
  }
  input, textarea {
    font-size: 16px;
    padding: 10px 12px;
  }
  section.contact-us #contact {
    padding: 15px;
  }
}

input {
  height: 40px;
  padding: 0px 15px;
}

textarea {
  min-height: 140px;
  max-height: 180px;
  padding: 15px;
  resize: none;
}


.valid_info_name, .valid_info_email, .valid_info_message{
  display: inline-block;
  font-size: 13px;
  margin: 10px 0;
  /* padding: 10px; */
  background: black;
  color: #28ff28;
  /* padding: 20px; */
  display: inline-block;
  width: 100%;
  text-align: left;
}

.valid {
  border: 2px solid #28ff28;
  outline-color: #28ff28;
}

.invalid {
  border: 2px solid #0008ff;
  outline-color:#0008ff;
}

.btn {
  display: inline-flex;
  width: 100%;
  justify-content: flex-end;
}

#form-submit {
  position: relative;
  display: inline-block;
  /* float: right; */
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
  background: #fff;
  /* background: linear-gradient(-145deg, rgba(219,138,222,1) 0%, rgba(246,191,159,1) 100%); */
  padding: 12px 20px;
  border-radius: 5px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all .3s;
  transition: all .3s;
}

#form-submit:disabled {
  border: 1px solid #9e9e9e;
  background: transparent;
  color: #9e9e9e;
  transition: none;
  transform: none;
  cursor: default;
}

#form-submit:hover:disabled{
  border: 1px solid #9e9e9e;
  color: #9e9e9e;
  background: transparent;
  transition: none;
  transform: none;
  cursor: default;
}

/* button:active {
	transform: scale(0.95);
} */

button:focus {
	outline: none;
}

button.ghost {
	background-color: transparent;
	border-color: #FFFFFF;
}

#glitchCanvas {
  /* margin-top: -200px; */
  width: 100%;
  height: 100vh;
  position: relative;
  top: -60px;
  margin-bottom: -60px;
}



#slide2 {
  /* display: none; */
}


p.copy {
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 20px;
  color: #fff;
  z-index: 10;
}

@media only screen and (max-width: 768px) {
  p.copy {
    font-size: 12px;
    line-height: 20px;
    padding: 15px;
  }
}

@media only screen and (max-width: 480px) {
  p.copy {
    font-size: 10px;
    line-height: 18px;
    padding: 10px;
  }
}
p.copy a {
  color: red;
}




#slide4 {
  padding-bottom: 100px;
}

.email_submit {
  display: inline-block;
  margin: 50px 0;
  /* background: red; */
  max-width: 50vw;
  text-align: center;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.email_input {
  padding: 23px 20px;
  line-height: 48px;
  font-size: 24px;
  background: #000;
  border-radius: 5px 0 0 5px;
  border: 1px solid red;;
  width: 300px;
  transition: all .3s ease-in;
}
.email_input:focus {
  outline: none;
  background: #fff;
}
.email_bt {
  padding: 15px 30px;
  font-size: 16px;
  letter-spacing: 0.3em;
  font-weight: bold;
  background: red;
  color: #fff;
  border: none;
  border-radius: 0 5px 5px 0;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s ease-in;
}
.email_bt:hover {
  background: #fff;
  color: #000;
}

.carousel-prev,
.carousel-next {
  display: none;
}

