:root {
  --shared-height: calc(500px + 2vh + 12vw);
}

html {
  scroll-behavior: smooth;
  color: #000;
}

body {
  background-color: rgb(44, 44, 44);
  transition-delay: 1s;
  height: 100%;
  min-height: 110vh;
  margin-top: 0;
  padding: 0;
  margin: 0;
  transition: opacity 0.5s ease-in-out;
}

.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}


.dither {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* Ensures overlay doesn't interfere with interaction */
  background: url(/images/dither1.png);
  /* Base64 encoded image of a dither pattern */
  background-size: 200px 200px;
  opacity: 0.05;
  /* Adjust the opacity for the desired dither effect */
  mix-blend-mode: multiply;
  /* Ensures blending with the background */
  z-index: -1;
  /* To ensure it's on top */
  animation: ditherAnimation 1s infinite linear;
  /* Animation for dither effect */
}

@keyframes ditherAnimation {
  0% {
    background-position: 0 0;
    /* Initial position of the pattern */
  }

  50% {
    background-position: 100% 100%;
    /* Mid-point shift of the pattern */
  }

  100% {
    background-position: 0 0;
    /* Return to the initial position */
  }
}





/* VVV -- SCAN LINE ELEMENTS -- VVV */
.scanlines {
  position: fixed;
  z-index: -3;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  background: repeating-linear-gradient(transparent 0,
      rgba(0, 0, 0, .3) 4px,
      transparent 1px);
}

/* ^^^ -- SCAN LINES ELEMENTS -- ^^^ */


.scanlines2 {
  position: fixed;
  /* Keep it fixed behind content */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(45deg,
      rgba(0, 0, 0, 0.1) 0px, rgba(255, 255, 255, 0.1) 1px,
      rgba(0, 0, 0, 0.1) 2px, rgba(255, 255, 255, 0.1) 3px,
      rgba(0, 0, 0, 0.1) 4px, rgba(255, 255, 255, 0.1) 5px);
  z-index: -1;
  /* Ensure it's behind other content */
  animation: glitchy-effect 0.2s infinite linear;
}

/* Animation to make the static flicker */
@keyframes glitchy-effect {
  0% {
    background-position: 0 0;
  }

  25% {
    background-position: -5px -5px;
  }

  50% {
    background-position: 5px 5px;
  }

  75% {
    background-position: -10px -10px;
  }

  100% {
    background-position: 0 0;
  }
}


/* VVV -- MAKE HIGHLIGHT PINK -- VVV */
::selection {
  background: #ff00fa;
}

::-moz-selection {
  background: #ff00fa;
}

/* ^^^ -- MAKE HIGHLIGHT PINK -- ^^^ */



.hugeleft {
  display: none;
}





.workhider:link {
  position: absolute;
  margin-top: calc(3px + .6vw);
  font-size: calc(7px + .8vw);
  font-weight: normal;
  opacity: .5;
  font-family: 'Rubik', sans-serif;
  font-weight: 100;
  text-align: left;
  color: #00f6ff;
  text-decoration: none;
  margin-left: calc(1px + .1vw);
  transition: all 0.2s linear;
  text-shadow: 0px -1px 3px rgba(0, 0, 0, .7);
}

a.workhider:hover {
  color: #00f6ff !important;
  opacity: 1;
}

a.workhider:visited {
  color: #00f6ff;
}


.workslist {
  display: block;
}








.main {
  width: 100%;
  min-width: 300px;
  max-width: 2000px;
  margin: 0 auto;
  overflow: hidden;
  display: grid;
  align-content: center;
  grid-template-columns: calc(50px + 20vw) 75%;
  display: grid;

}

.leftside {
  margin-left: 7%;
}

.rightside {
  display: flex;
  justify-self: center;
  width: 77%;
  margin: 0 auto;
  padding-left: 3%;
}

.rightside_full {
  display: flex;
  justify-self: center;
  width: 90%;
  margin: 0 auto;
  margin-left: calc(20px + 1vw);
}

.headerspacer {
  padding-top: 10vh;
}

.topnav {
  display: none;
}


.navblack {
  position: fixed;
  background-color: #000000;
  top: 0;
  height: var(--shared-height);
  /* calc(270px + 10vh + 12vw); initially */
  width: 3.4em;
  padding-right: 4%;
  z-index: -2;
  left: 0;
  animation: glitchy-effect 10s infinite linear;
  background: repeating-linear-gradient(45deg,
      rgba(0, 0, 0, .5) 0px, rgba(0, 0, 0, .7) 1px,
      rgba(0, 0, 0, 0.7) 2px, rgba(0, 0, 0, .5) 3px,
      rgba(0, 0, 0, 0.5) 4px, rgba(0, 0, 0, 1) 5px);
  /*
    background: repeating-linear-gradient(45deg,
      rgba(52, 20, 62, 0.693) 0,
      rgba(37, 37, 79, 0.9) 3px,
      rgb(0, 0, 0) 4px
    );
    */
}

.navblack .nb-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px; /* thickness of the line */
  height: 100%;
  background-color: rgba(0, 200, 255,.9);
  z-index: -1; /* behind content, but above background if needed */
}


/* Blue vertical line on the right */
.navblack::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  /* Thickness of the vertical line */
  background-color: rgb(0, 200, 255);
  right: -4px;
  /* Position the line on the right */
}

/* Blue horizontal line at the bottom */
.navblack::before {
  content: "";
  position: absolute;
  bottom: -4px;
  /* Position the line below the element */
  left: 0;
  width: 100%;
  /* Make it span the entire width of the element */
  height: 1px;
  /* Thickness of the horizontal line */
  background-color: rgb(0, 200, 255);
}

/* Animation to make the static flicker */
@keyframes glitchy-effect {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 100px 5px;
  }
}

























.headerspacermain {
  background-color: rgba(30, 30, 30, .3);
  line-height: 4vw;
  color: rgba(255, 255, 255, .9);
  opacity: .9;
  z-index: -1;
  padding: 2.2vw;
  border: 1px solid rgba(255, 12, 250, 1);
  border-top: none;
  border-bottom: none;
  background: repeating-linear-gradient(rgba(10, 10, 20, .5) 0,
      rgba(10, 10, 20, .9) 3px,
      rgba(20, 10, 00, .9) 1px);

  padding-top: 1vh;
}



.intro {
  position: relative;
  top: 0;
  left: 0;
  background-color: rgba(30, 30, 30, .3);
  font-size: 1.77vw;
  font-weight: normal;
  font-family: 'Rubik', sans-serif;
  line-height: 3.3vw;
  color: rgba(255, 255, 255, .9);
  margin-right: 0%;
  opacity: 1;
  /* Start fully visible */
  font-weight: 100;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 1), -2px 0px 1px rgba(255, 12, 250, .4);
  margin-bottom: 10%;
  z-index: -1;
  padding: 0;
  padding-bottom: 0;
  border: 1px solid rgba(255, 12, 250, 1);
  border-top: none;
  background: repeating-linear-gradient(rgba(10, 10, 20, .5) 0,
      rgba(10, 10, 20, .9) 3px,
      rgba(20, 10, 00, .9) 1px);
  height: var(--shared-height);
  top: 0px;
  z-index: 10;
  transition: height 0.4s ease-in-out, opacity 0.6s ease;
  margin-bottom: 0.6s ease;
  /* Added opacity transition */
  transition: height 0.6s ease, opacity 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Ensures no extra space when shrinking */
  text-align: justify;
  word-spacing: normal;
  hyphens: auto;

}

/* Expanded state */
.intro.expanded {
  height: var(--shared-height);
}

/* Shrink state */
.intro.shrink {
  height: 10vh;
  opacity: 0;
  transition: height 0.6s ease, opacity 0.6s ease;
}




.intro-flex {
  display: flex;
  margin-top: -5vh;
  align-items: stretch; /* Make both children the same height */
  gap: 1rem;
  z-index: 5;
}

.intro-image {
  flex: 1; /* 1/3 of total space */
  display: flex;
  align-items: stretch;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  /* 👇 Rounded and dark border */
  border-radius: 6px;              /* adjust as needed (e.g., 4px, 8px) */
  border: 2px solid rgba(0, 0, 0, 0.6); /* dark semi-transparent border */
}

.intro-texte {
  flex:2;
  background-color: rgba(0, 0, 0, 0.744);
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  line-height: 1.5em;
  z-index: 5;
}

.intro-content {
  width: 85%;
  /* Keeps text from stretching */

}

.intro-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 21, 255, 0.06);
  z-index: -1;
  /* push it behind the text */
  border-radius: 4px;
  /* optional, looks nice */
  
}

.highlighttext {
  font-weight: bolder;
  color: rgba(255, 12, 250, 1);
}

/* Chevron animation */
.chevron {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 40px;
  /* Places it below the .intro */
  width: 40px;
  height: 40px;
  opacity: 1;
  animation: bounce 1.5s infinite ease-in-out;
  visibility: visible;
  /* Initially visible */
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 0;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* Shrink state for chevron */
.intro.shrink .chevron {
  opacity: 0;
  /* Makes the chevron fade out */
  visibility: hidden;
  /* Completely hides the chevron */
}

.intro_image-container {
  display: flex;
  justify-content: center;
  /* Centers the images in the container */
  gap: 60px;
  /* Space between the images */
}

.small-image {
  width: 50px;
  /* Adjust size of the images */
  height: auto;
  /* Maintain aspect ratio */
}




/* FOR COMPUTER ANIMATION */

.containerholderimage {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.containerimage {
  opacity: 85%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  height: 100px;
}

.icon {
  font-size: 3rem;
  z-index: 1;
  /* In front of the line */
}

.line {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background: #d000ff;
  width: 90%;
  transform-origin: left;
  transform: scaleX(0) translateY(-50%);
  animation: transmitPingPong 4s ease-in-out infinite;
  z-index: 0;
  margin-left: 5%;
  box-shadow: 0 0 15px 2px rgba(255, 0, 157, 0.7), 0 0 20px 3px rgba(0, 255, 242, 0.7);
  /* Vaporwave glow effect */
  border-radius: 2px;
  /* Optional: rounded edges for the line */
  background: linear-gradient(90deg, #f700ff, #ffffff, #f700ff);
  /* Gradient from bright pink to teal */

}

@keyframes transmitPingPong {
  0% {
    transform: scaleX(0) translateY(-50%);
    transform-origin: left;
    opacity: 1;
  }

  15% {
    transform: scaleX(1) translateY(-50%);
    transform-origin: left;
    opacity: 1;
  }

  25% {
    transform: scaleX(0) translateY(-50%);
    transform-origin: right;
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  50% {
    transform: scaleX(0) translateY(-50%);
    transform-origin: right;
    opacity: 0;
  }

  51% {
    transform: scaleX(0) translateY(-50%);
    transform-origin: right;
    opacity: 0;
  }

  65% {
    transform: scaleX(1) translateY(-50%);
    transform-origin: right;
    opacity: 1;
  }

  75% {
    transform: scaleX(0) translateY(-50%);
    transform-origin: left;
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: scaleX(0) translateY(-50%);
    transform-origin: left;
    opacity: 1;
  }
}


#middle-icon {
  display: inline-block;
  font-size: 48px;
  /* Adjust size to fit your design */
  transition: opacity 0.5s ease-in-out, transform 0.s ease-in-out;
  position: relative;
  z-index: 1;
}

.glitch {
  background-color: rgb(0, 0, 0);
  /* Background color */
  padding: 10px;
  /* Optional padding to make it more visible */
  border-radius: 5px;
  /* Optional rounded corners */
  transform: translateY(-50%);
  animation: scan 3s steps(10) infinite, flicker 0.15s infinite alternate;
  /* Added stutter effect */
}

@keyframes scan {
  0% {
    height: 00%;
    /* Start with no height */
    transform: translateY(0%);
    width: 0%;
    padding: 20px;
    /* Optional padding to make it more visible */
  }

  20% {
    width: 15%;
  }

  30% {
    width: 10%;
  }

  50% {
    height: 50%;
    /* Expand to 50% of the screen height */
    font-size: 6rem;
  }

  80% {
    width: 15%;
  }

  90% {
    width: 10%;
  }

  100% {
    height: 100%;
    /* Expand to full screen height */
    font-size: 8rem;
    transform: translateY(0%);
    padding: 100px;
    /* Optional padding to make it more visible */
  }
}

@keyframes flicker {
  0% {
    opacity: 0.5;
    box-shadow: 0 0 15px 2px rgb(255, 0, 157), 0 0 20px 13px rgb(0, 255, 242);
    /* Vaporwave glow effect */
    border-radius: 2px;
    /* Optional: rounded edges for the line */
    background: linear-gradient(90deg, #f700ff, #ffffff, #f700ff);
    /* Gradient from bright pink to teal */
  }

  100% {
    opacity: 1;
    /* Simulates a subtle flicker */
  }
}




.indexlabels {
  background: repeating-linear-gradient(rgba(0, 75, 110, 0.686) 1px,
      rgba(118, 0, 132, 0.614) 3px,
      rgba(0, 0, 0, 1) 3px);
  animation: indexlabeltiwtch 0.5s ease-in-out infinite;
  padding-top: 0.5rem;

}

@keyframes indexlabeltiwtch {
  0% {
    background: repeating-linear-gradient(rgba(0, 75, 110, 0.686) 1px,
        rgba(118, 0, 132, 0.614) 5px,
        rgba(0, 0, 0, 1) 3px);
  }

  50% {
    background: repeating-linear-gradient(rgba(0, 75, 110, 0.686) 2px,
        rgba(118, 0, 132, 0.614) 3px,
        rgba(0, 0, 0, 1) 3px);
  }

  100% {
    background: repeating-linear-gradient(rgba(0, 75, 110, 0.686) 2px,
        rgba(118, 0, 132, 0.614) 3px,
        rgba(0, 0, 0, 1) 3px);
  }
}












h2 {
  font-size: 3vw;
  font-weight: normal;
  font-family: 'Rubik', sans-serif;
}

h3 {
  font-size: 2.8vw;
  font-weight: normal;
  font-family: 'Rubik', sans-serif;
  text-align: right;
  line-height: 2vw;
  color: rgba(255, 255, 255, .9);

  background-color: #eaeaea38;


  padding-top: 1vw;
  margin-right: 0%;
  opacity: .95;
  text-shadow: 0px 1px 1px rgb(255, 255, 255), -2px 0px 1px rgba(255, 12, 250, .4), 2px 0px 1px rgba(0, 229, 255, .8);
  text-transform: uppercase;
}



h5 {
  font-size: 2.8vw;
  font-weight: normal;
  font-family: 'Rubik', sans-serif;
  text-align: left;
  line-height: 2vw;
  color: rgb(255, 255, 255);
  margin-right: 0%;
  opacity: .95;
  text-shadow: 0px 1px 1px rgb(255, 255, 255), -2px 0px 1px rgba(255, 12, 250, .4), 2px 0px 1px rgba(0, 229, 255, .8);
  text-transform: uppercase;
  margin-bottom: 5%;

  background-color: #eaeaea38;
}

h4 {
  width: 98%;
  font-size: 2.8vw;
  font-weight: normal;
  font-family: 'Rubik', sans-serif;
  text-align: justify;
  line-height: 3vw;
  font-weight: 500;
  color: rgba(255, 255, 255, .9);
  margin-right: 0%;
  opacity: .9;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 1), -2px 0px 1px rgba(255, 12, 250, .4), 2px 0px 1px rgba(0, 229, 255, .8);
}

hr.new1 {
  width: 100%;
  margin-right: 0px;
  color: #ffffff;
}

hr.new2 {
  width: 100%;
  margin-left: 0px;
  color: #ffffff;
}



















/* VVV -- FOR ALL PAGE NAV BAR -- VVV */

.navbar {
  position: fixed;
  width: calc(230px + 1.8vw);
  float: left;
  margin-left: 20px;
  text-align: left;
  font-size: calc(16px + 1vw);
  line-height: .45em;
  text-decoration: none;
  font-family: 'Rubik', sans-serif;
  height: 95vh;
  overflow-y: auto;
  /* Enables vertical scrolling */
  overflow-x: hidden;
}





/* Scrollbar styling */
.navbar::-webkit-scrollbar {
  width: 8px;
  /* Width of the vertical scrollbar */
}

.navbar::-webkit-scrollbar-thumb {
  background-color: rgb(0, 200, 255);
  /* Color of the scrollbar thumb */
  border-radius: 4px;
  /* Rounded edges for the thumb */
  border: 2px solid #000;
  /* Optional: creates a border around the thumb */
}

.navbar::-webkit-scrollbar-track {
  background-color: #333;
  /* Background color of the scrollbar track */
  border-radius: 4px;
  /* Rounded edges for the track */
}

.navbar::-webkit-scrollbar-button {
  display: none;
  /* Optional: hides the buttons (usually up/down) */
}


.workspacer {
  padding-top: 1vh;
  padding-bottom: .2vh;
}

.navbarhor1 {
  margin-top: 5%;
  margin-bottom: 6%;
  width: 50%;
  min-width: 180px;
  max-width: 250px;
  opacity: .6;
}

.navbarhor2 {
  margin-top: 5%;
  margin-bottom: 5%;
  width: 50%;
  min-width: 180px;
  max-width: 250px;
  opacity: .6;
}


.highlighttext {
  text-shadow: 0px 0px 1px rgba(255, 255, 255, 1), -1px 0px 1px rgb(255, 0, 251), 1px 0px 1px rgba(0, 229, 255, .8);
  animation: chromaticMove 5000ms ease infinite;
  animation-direction: alternate;
  -moz-animation: chromaticMove 5000ms ease infinite;
  -moz-animation-direction: alternate;
  background-size: cover;
  color: rgb(255, 255, 255);
}

/*
.logotext{
  font-weight: 700;
  font-family: 'Rubik', sans-serif;
  width: 35vw;
  margin-top: calc(20px + 1vw);
  font-size: calc(56px + 1vw);
  line-height: .6em;
  text-shadow: 0px 0px 1px rgba(255, 255, 255,.8), -3px 0px 1px rgba(255, 12, 250,.4), 3px 0px 1px rgba(0, 229, 255,.8);
  animation: chromaticMove 5000ms ease infinite;
  animation-direction: alternate;
  -moz-animation: chromaticMove 5000ms ease infinite;
  -moz-animation-direction: alternate;
  background: url(images/temp/textGlitch.png) no-repeat center center;
  background-size: cover;
  color: #ffffff;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  -moz-text-fill-color: transparent;
  -moz-background-clip: text;

}

.logotextalt{
  display: inline-block;
  font-size: .63em;
  transform: scaleY(1.2);
  padding-left: .04em;
  background: url(images/temp/textGlitch.png) no-repeat center center;
  background-size: cover;
  color: #ffffff;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

*/


.logotext {
  width: clamp(100px, 35vw, 180px);
  /* won’t get too small or too wide */
  margin-top: clamp(20px, calc(2vh + 1vw), 60px);
  font-size: calc(56px + 1vw);
}

.logolink {
  text-decoration: none;
  max-width: 185px;
  width: 185px;
  min-width: 100px;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}


.logolink img {
  transition: filter 0.5s ease-in-out;
}

.logolink:hover img {
  filter:
    drop-shadow(2px 0 0px #ff00fb)
    /* Pink shadow to the right */
    drop-shadow(3px 0 0px #00ffff);
  /* Blue shadow slightly further right with blur */
  ;
}

.logolink,
.logotext {
  overflow: visible;
}


@keyframes neonCycle {
  0% {
    filter: drop-shadow(0 0 6px #ff00fb);
  }

  33% {
    filter: drop-shadow(0 0 6px #00ffff);
  }

  66% {
    filter: drop-shadow(0 0 6px #ff00fb);
  }

  100% {
    filter: drop-shadow(0 0 6px #00ffff);
  }
}




@keyframes chromaticMove {
  0% {
    text-shadow: 0px 0px 1px rgba(0, 0, 0, .8), -3px 0px 1px rgba(255, 12, 250, .4), 3px 0px 1px rgba(0, 229, 255, .8)
  }

  50% {
    text-shadow: 0px -2px 1px rgba(0, 0, 0, .4), 0px -4px 5px rgba(255, 12, 250, .8), 4px 0px 5px rgba(0, 229, 255, 1)
  }

  100% {
    text-shadow: 0px 0px 1px rgba(0, 0, 0, .8), -6px 0px 5px rgba(255, 12, 250, .8), 6px 0px 2px rgba(0, 229, 255, .5)
  }
}




a.navlink:link,
a.navlinkcurrent:link,
a.navlinknon:link {
  color: #ffffff;
  text-decoration: none;
  padding-left: 5%;
  line-height: 1em;
  transition: all 0.2s linear;
  text-shadow: 0px -1px 3px rgba(0, 0, 0, .7);
  padding-right: 5%;
  
}

a.navlink:hover,
a.navlinknon:hover {
  color: #ff00fa !important;
}

a.navlink:visited,
a.navlinknon:visited {
  color: #e0e0e0;
}


a.navlinkcurrent:link {
  color: #ff00fa;
}

a.navlinkcurrent:hover {
  color: #00f6ff !important;
}

a.navlinkcurrent:visited {
  color: #ff00fa;
}



a.workheaderitem {
  color: #ffffff;
  opacity: 1;
  text-decoration: none;
  font-size: .6em;
  line-height: 1.8em;
  padding-left: 3em;
  padding-right: 5%;
  font-weight: 100;
  transition: all .5s linear;
}

a.workheaderitem:hover {
  color: #00f6ff !important;
  opacity: 1;
}

a.workheaderitem:visited {
  color: #e0e0e0;
}



a.navlinksmall:link {
  color: #cecece;
  font-size: .6em;
  line-height: .8em;
  padding-left: 5%;
  font-weight: 100;
  text-decoration: none;
  transition: all 0.2s linear;
  opacity: .8;
}

a.navlinksmall:hover {
  color: #ff00fa !important;
  opacity: 1;
}

a.navlinksmall:visited {
  color: #cecece;
}



/* ^^^ -- FOR ALL PAGE NAV BAR -- ^^^ */



.cvpdf {
  width: 100%;
  height: 75vh;
  margin-bottom: 5%;
}




/* VVV -- FOR MAIN PAGE CONTENT SQUARES -- VVV */

.container {
  display: grid;
  grid-gap: 0.9rem;
  grid-template-columns: repeat(auto-fill, minmax(21vw, 2fr));


}



.current {
  display: grid;
  grid-gap: 1.9rem;
  grid-template-columns: repeat(auto-fill, minmax(21vw, fr));
}


.content {
  position: relative;
  width: 100%;
  max-width: 150%;
  height: 98%;
  max-height: 380px;
  margin: auto;
  overflow: hidden;
  border: 1px solid #ffffff;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;

  -webkit-filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, .6));
  /* Safari 6.0 - 9.0 */
  filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, .6));
}

.content .content-overlay {
  background: rgba(40, 40, 40, 0.0);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.content:hover {
  border-color: #ffffff;
  -webkit-filter: drop-shadow(0px 0px 5px rgba(255, 20, 250, 1));
  /* Safari 6.0 - 9.0 */
  filter: drop-shadow(0px 0px 5px rgba(255, 20, 250, 1));
}

.content:hover .content-image {
  filter: blur(50px);
}

.content:hover .content-overlay {
  opacity: 1;
}

.content:hover .imgtext2 {
  opacity: 0;
  filter: blur(100px);

}

.content:hover .imgtext {
  opacity: 0;
  filter: blur(100px);

}






.content-image {
  width: 100%;
  -webkit-transition: all 0.4s linear 0s;
  -moz-transition: all 0.4s linear 0s;
  transition: all 0.4s linear 0s;
}


.content-video {
  width: 100%;
  -webkit-transition: all 0.4s linear 0s;
  -moz-transition: all 0.4s linear 0s;
  transition: all 0.4s linear 0s;
}

.content-details {
  position: absolute;
  text-align: left;
  padding-left: 3em;
  padding-right: 3em;
  padding-top: 10em;
  padding-bottom: 10em;
  width: 90%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.content:hover .content-details {
  top: 50%;
  left: 50%;
  opacity: 1;
  background-color: rgba(0, 0, 0, .9);
}

.content-details {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 1), -2px 0px 2px rgba(255, 12, 250, .4), 2px 0px 2px rgba(0, 229, 255, .4);
  color: #f2f2f2;
  font-weight: 300;
  font-family: 'Rubik', sans-serif;
  text-align: left;
}

.content-details p {
  color: rgba(20, 250, 255, .7);
  font-family: 'Rubik', sans-serif;
  font-size: 1.7vw;
  font-weight: 400;
  text-align: right;
}

.fadeIn-bottom {
  top: 80%;
}

.imgtext {
  position: absolute;
  background-color: rgba(60, 60, 60, .95);
  width: 100%;
  padding-top: .5%;
  line-height: 2.5vw;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, .3);
  text-align: center;
  text-indent: .5vw;
  bottom: 0%;
  color: rgba(255, 255, 255, .9);
  opacity: 1;
  font-size: 1.6vw;
  font-family: 'Rubik', sans-serif;
  font-weight: 200;

  -webkit-transition: all 0.4s linear 0s;
  -moz-transition: all 0.4s linear 0s;
  transition: all 0.4s linear 0s;
}

.imgtext2 {
  position: absolute;
  background-color: rgb(21, 21, 21);
  width: 100%;
  padding-top: .5%;
  line-height: 2.5vw;
  text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
  text-align: center;
  font-weight: bolder;
  text-indent: .5vw;
  bottom: 0%;
  color: rgba(255, 255, 255, 1);
  opacity: 1;
  font-size: 1.6vw;
  font-family: 'Rubik', sans-serif;
  font-weight: 200;
  -webkit-transition: all 0.4s linear 0s;
  -moz-transition: all 0.4s linear 0s;
  transition: all 0.4s linear 0s;
}

/* ^^^ -- FOR MAIN PAGE CONTENT SQUARES -- ^^^ */



.welcomebanner {

  margin: auto;
  width: 90%;
  padding-top: .5%;
  line-height: 5.5vw;
  text-align: center;
  color: rgba(255, 255, 255, .7);
  opacity: .85;
  font-size: 4.6vw;
  font-family: 'Rubik', sans-serif;
  font-weight: 200;
  height: auto;

  background: repeating-linear-gradient(transparent 0,
      rgba(50, 50, 50, .8) 4px,
      transparent 1px);


  animation: welcomeMove 5000ms ease-in-out infinite;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, .8), -2px 0px 5px rgba(255, 12, 250, .8), 2px 0px 2px rgba(0, 229, 255, .5);


  -webkit-box-sizing: border-box;
  /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;
  /* Firefox, other Gecko */
  box-sizing: border-box;
  /* Opera/IE 8+ */

  border: 15px solid #ffffff;
  border-image: url('images/box.png') 34% repeat;
}


@keyframes welcomeMove {
  0% {
    text-shadow: 0px 0px 1px rgba(255, 255, 255, .8), 1px 0px 1px rgba(255, 255, 255, .8), -3px 0px 1px rgba(255, 12, 250, .4), 3px 0px 1px rgba(0, 229, 255, .8)
  }

  50% {
    text-shadow: -1px 0px 4px rgba(255, 255, 255, .8), 0px 0px 1px rgba(255, 255, 255, .8), 0px 7px 5px rgba(255, 12, 250, .8), 0px -7px 10px rgba(0, 229, 255, .5)
  }

  100% {
    text-shadow: 0px 0px 1px rgba(255, 255, 255, .8), 1px 0px 2px rgba(255, 255, 255, .8), -3px 0px 1px rgba(255, 12, 250, .4), 3px 0px 1px rgba(0, 229, 255, .8)
  }
}


/* VVV -- ARTWORK PAGE CLASSES -- VVV */




.art-header {
  width: 100%;
  margin: 0 auto;
  margin-top: 1vh;
}


.art_slideshow {
  display: inline-block;
  opacity: 1;
  text-align: center;
  border: 1px solid rgba(255, 10, 250, .5);
}




.back_button {
  position: absolute;
  width: 5%;
  float: left;

  max-width: 80px;
  min-width: 100px;
}

.back_button:hover .back_button_imageA {
  -webkit-filter: drop-shadow(-2px 0px 1px #ff00fa);
  /* Safari 6.0 - 9.0 */
  filter: drop-shadow(-2px 0px 1px #ff00fa);
  padding-left: 5%;
}

.back_button_imageA {
  width: 3.5vw;
  max-width: 40px;
  min-width: 10px;
  height: auto;
  transition: all .4s linear;
}





.b_button {
  float: right;
  padding: 1%;
  min-width: 40%;
  max-width: 40%;
  color: #ffffff;
  font-size: 2.2vw;
  font-family: 'Rubik', sans-serif;
  font-weight: 100;
  text-align: center;
  line-height: 1.5em;
  text-decoration: none;
  border: 1px solid white;
  background: repeating-linear-gradient(transparent 0,
      rgba(100, 100, 100, .5) 4px,
      transparent 1px);
  transition: all .4s linear;
}

.b_button:hover {
  color: #ff00fa;
  border: 1px solid #ff00fa;
  -webkit-filter: drop-shadow(-5px 0px 3px #ff00fa);
  /* Safari 6.0 - 9.0 */
  filter: drop-shadow(-5px 0px 3px #ff00fa);
}


.b_button_back {
  display: block;
  /* Ensures the button behaves as a block-level element */
  margin: 0 auto;
  /* Centers the button horizontally */
  padding: 1%;
  width: 92%;
  color: #000000;
  font-size: 3vw;
  font-family: 'Rubik', sans-serif;
  font-weight: 200;
  text-align: center;
  line-height: 1.5em;
  text-decoration: none;
  border: 1px solid #ff00fa;
  background: rgba(255, 255, 255, .8);
  transition: all .4s linear;
  margin-bottom: 2vh;

}

.b_button_back:hover {
  color: #ffffff;
  border: 1px solid #ff00fa;
  -webkit-filter: drop-shadow(-5px 0px 3px #ff00fa);
  /* Safari 6.0 - 9.0 */
  filter: drop-shadow(-5px 0px 3px #00eeff);
}









.biobuttons {
  text-align: center;
}


.b_button_long {
  display: inline-block;
  width: 90%;
  padding: 1.5%;
  color: #ffffff;
  font-size: 2.1vw;
  font-family: 'Rubik', sans-serif;
  font-weight: 100;
  line-height: 1.5em;
  text-decoration: none;
  border: 1px solid #00f6ff;
  background: repeating-linear-gradient(transparent 0,
      rgba(100, 100, 200, .5) 4px,
      transparent 1px);
  transition: all .4s linear;
}

.b_button_long:hover {
  color: #ffffff;
  border: 1px solid #ff00fa;
  -webkit-filter: drop-shadow(-2px 0px 1px #ff00fa);
  /* Safari 6.0 - 9.0 */
  filter: drop-shadow(-2px 0px 1px #ff00fa);
}









a.biolink:link {
  font-family: 'Rubik', sans-serif;
  color: #ffffff;
  text-decoration: none;
  font-weight: 100;
  line-height: 1em;
  transition: all 0.2s linear;

}

a.biolink:hover {
  color: #00f6ff !important;
}

a.biolink:visited {
  color: #ffffff;
}




.bio-background {
  background-color: rgba(30, 30, 30, .3);
  z-index: -1;
  padding: 2.2vw;
  margin-bottom: 15vw;
  border: 1px solid #00f6ff;
  background: repeating-linear-gradient(rgba(10, 10, 20, .5) 0,
      rgba(10, 10, 20, .9) 3px,
      rgba(20, 10, 00, .9) 1px);
}

.bio-text {
  background-color: #1a1a1a;
  width: 50.7vw;
  /* 90% of 51.4vw */
  padding: 1rem 2.35vw;
  box-sizing: border-box;

  margin: 0 auto;
  /* centers the block inside its parent */
  display: block;
  /* needed for margin auto to work */

  font-size: clamp(1rem, 1.95vw, 1.5rem);
  font-weight: 100;
  font-family: 'Rubik', sans-serif, 'Helvetica Neue', sans-serif;
  color: #ffffff;
  opacity: 0.9;
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  word-spacing: normal;
}

.bio-header {
  width: 100%;
  margin: 0 auto;
  margin-top: 9%;
}

.bio-image {
  width: 100%;
  height: auto;
  border: 1px solid #ff00fa;
}


.imgtextcontainer {
  position: relative;
  text-align: center;
}

.bioimgtext {
  position: absolute;
  background-color: #000000;
  line-height: 2vw;
  text-align: left;
  text-indent: .5vw;
  bottom: 5px;
  right: 0px;
  color: #ffffff;
  opacity: 0.65;
  font-size: 1vw;
  font-family: 'Rubik', sans-serif;
  font-weight: 200;
}









.art-background {
  background-color: rgba(10, 10, 10, 0.63);
  z-index: 0;
  padding: 2.2vw;
  margin-bottom: 2vh;
  border: 2px solid #ffffff;
  background: repeating-linear-gradient(transparent 0,
      rgba(20, 20, 22, .9) 3px,
      transparent 1px);

  -webkit-filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, .5));
  /* Safari 6.0 - 9.0 */
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, .5));
}

.art-image {
  width: 100%;
  height: auto;
  border: 1px solid darkgrey;
}

.art-text {

  background-color: #1a1a1a !important;
  display: inline-block;
  font-size: 2vw;
  min-width: 100%;
  font-weight: 100;
  font-family: 'Rubik', sans-serif;
  color: #ffffff;
  line-height: 3vw;

  text-align: justify;
  /* Justify the text */
  text-justify: inter-word;
  /* Adjust word spacing to minimize gaps */

}

.art-text--bold {
  font-weight: 400;
  font-size: 1.4em;
  opacity: 1;
  text-shadow: 0px -1px 3px rgba(255, 20, 250, .7);
}

.art-text--small {
  font-weight: 100;
  font-size: .9em;
  line-height: 1.8rem !important;
  text-align: justify;
  /* Justify the text */
  text-justify: inter-word;
  /* Adjust word spacing to minimize gaps */
}

.art-text--small p {
  margin: 0.5em 0;
  /* Top and bottom margins */
}



.contact-header {
  width: 100%;
  margin: 0 auto;
  margin-top: 5%;
}



.c_buttons {
  text-align: center;
  padding-top: 5%;
  padding-bottom: 5%;
  color: #ff00fa;
  font-weight: 400;
  font-size: 3vw;
  font-family: 'Rubik', sans-serif;
  font-weight: 100;

}

.c_button {
  display: inline-block;
  text-align: center;
  width: 99%;
  color: #ffffff;
  font-size: 2.7vw;
  font-family: 'Rubik', sans-serif;
  font-weight: 100;
  line-height: 2.1em;
  text-decoration: none;
  border: 1px solid #00f6ff;
  background: repeating-linear-gradient(transparent 0,
      rgba(100, 100, 250, .5) 4px,
      transparent 1px);
  transition: all .2s linear;
}

.c_button:hover {
  border: 1px solid #ff00fa;
  -webkit-filter: drop-shadow(-2px 0px 1px #ff00fa);
  /* Safari 6.0 - 9.0 */
  filter: drop-shadow(-2px 0px 1px #ff00fa);
}

.c_rolodex {
  color: #ffffff;
  font-size: 2.3vw;
  font-family: 'Rubik', sans-serif;
  font-weight: 100;
  line-height: 1em;
}


.contact_typer {
  padding-bottom: 2%;
}

.contact_typer h6 {
  width: 86%;
  color: #ff00fa;
  font-weight: 400;
  font-size: 3vw;
  font-family: 'Rubik', sans-serif;
  font-weight: 100;
  overflow: hidden;
  /* Ensures the content is not revealed until the animation */
  border-right: .5em solid #00f6ff;
  /* The typwriter cursor */
  white-space: nowrap;
  /* Keeps the content on a single line */
  margin: 0 auto;
  /* Gives that scrolling effect as the typing happens */
  letter-spacing: .01em;
  /* Adjust as needed */
  animation:
    typing 3.5s steps(40, end),
    blink-caret .75s step-end infinite;

  -webkit-filter: drop-shadow(0px 0px 4px #ff00fa);
  /* Safari 6.0 - 9.0 */
  filter: drop-shadow(0px 0px 4px #ff00fa);
}

/* The typing effect */
@keyframes typing {
  from {
    width: 0
  }

  to {
    width: 86%
  }
}

/* The typewriter cursor effect */
@keyframes blink-caret {

  from,
  to {
    border-color: transparent
  }

  60% {
    border-color: #00f6ff;
  }
}




.cv-background {
  background-color: rgba(30, 30, 30, .3);
  z-index: -1;
  padding: 2.2vw;
  margin-bottom: 15vw;
  border: 1px solid #ffffff;
  background: repeating-linear-gradient(rgba(10, 10, 20, .5) 0,
      rgba(0, 0, 0, .9) 2px,
      rgba(255, 255, 255, .4) 3px);
}


.solutions-background {
  background-color: rgba(30, 30, 30, .3);
  z-index: -1;
  padding: 2.2vw;
  margin-bottom: 15vw;
  border: 1px solid #000000;
  background: repeating-linear-gradient(rgba(10, 10, 20, .5) 0,
      rgba(50, 50, 60, .9) 2px,
      rgba(255, 255, 255, .1) 3px);

}


br1 {
  display: block;
  margin: 2vw 0;
}

br2 {
  display: block;
  margin: 1.5vw 0;
}


.solutions-text {
  width: 90%;
  display: inline-block;
  padding-top: 5%;
  padding-bottom: 3%;
  padding-left: 5%;
  padding-right: 5%;
  font-size: 1.8vw;
  font-weight: 100;
  font-family: 'Rubik', sans-serif;
  color: #fefefefe;
  opacity: .9;
  line-height: 3vw;
  text-align: justify;
  background: repeating-linear-gradient(rgba(10, 10, 20, .5) 0,
      rgba(0, 0, 0, .9) 2px,
      rgba(0, 0, 0, .5) 3px);
}



.solutions_header {
  width: 100%;
  display: inline-block;
  position: relative;
  padding-top: 6%;
  padding-bottom: 6%;
  height: 1em;
  padding-left: 0%;
  padding-right: 0%;
  font-size: 5vw;
  animation: solutionMove 5000ms ease-in-out infinite;
  font-weight: 500;
  font-family: 'Rubik', sans-serif;
  color: rgba(0, 0, 0, 1);
  opacity: 1;
  line-height: 3.5vw;
  text-align: center;
  border: 1px solid rgba(0, 255, 255, .5);
  text-shadow: 0px -3px 4px rgba(255, 20, 200, 1), 0px 3px 1px rgba(0, 200, 255, 1);
  background: repeating-linear-gradient(rgba(10, 10, 20, .5) 0,
      rgba(0, 0, 0, .9) 2px,
      rgba(0, 0, 0, .5) 3px);

}

@keyframes solutionMove {
  0% {
    text-shadow: 0px 0px 1px rgba(255, 255, 255, .8), 1px 0px 1px rgba(255, 255, 255, .8), -3px 0px 1px rgba(255, 12, 250, .4), 3px 0px 1px rgba(0, 229, 255, .8)
  }

  50% {
    text-shadow: -1px 0px 4px rgba(255, 255, 255, .8), 0px 0px 1px rgba(255, 255, 255, .8), 0px 7px 5px rgba(255, 12, 250, .8), 0px -7px 10px rgba(0, 229, 255, .5)
  }

  100% {
    text-shadow: 0px 0px 1px rgba(255, 255, 255, .8), 1px 0px 2px rgba(255, 255, 255, .8), -3px 0px 1px rgba(255, 12, 250, .4), 3px 0px 1px rgba(0, 229, 255, .8)
  }
}




.solutions_header_text {
  position: absolute;
  margin-top: 2.6%;
  width: 12.3em;
}






.solutions_slideshow {
  width: 90%;
  display: inline-block;
  padding-top: 5%;
  padding-left: 4.9%;
  padding-right: 5%;
  font-size: 1.4vw;
  font-weight: 100;
  font-family: 'Rubik', sans-serif;
  color: #fefefefe;
  opacity: 1;
  line-height: 3vw;
  text-align: center;
  border: 1px solid rgba(0, 255, 255, .5);
  background: repeating-linear-gradient(rgba(10, 10, 20, .5) 0,
      rgba(0, 0, 0, .9) 2px,
      rgba(0, 0, 0, .5) 3px);
}

.solutions-header {
  width: 100%;
  margin: 0 auto;
  margin-top: 6%;
}

.art-slshcholder {
  width: 100%;
  padding-bottom: 1%;
  background: repeating-linear-gradient(transparent 0,
      rgba(20, 20, 20, .8) 3px,
      transparent 1px);
}




/* SLIDESHOW STUFF */

/* Portfolio */
.portfolio .sy-controls {
  display: block;
}

.portfolio .sy-pager {
  margin: 1.5em 0;
}

.portfolio .external-captions {
  background-color: #ffffff;
  padding: 1em;
}


.art-slshcholder .sy-pager {
  text-align: center;
  padding-left: 3.2%;
}

.art-slshcholder .sy-pager li a {
  max-width: 10px !important;
  max-height: 10px !important;
}

.art-slshcholder .sy-pager li.sy-active a {
  background-color: #ff00fa;
}

.art-slshcholder .sy-pager li a {
  background-color: #ffffff;
}



.art_interdiv {
  background-color: rgba(10, 10, 10, .5);
  padding: 2%;
  padding-top: 5%;
  padding-bottom: 7%;
}

a.artwork-slides-link:link {
  transition: all .4s linear;
  opacity: 1;
}

a.artwork-slides-link:hover {
  -webkit-filter: brightness(150%) saturate(150%);
  filter: brightness(150%) saturate(150%);
  opacity: 0.9;
}

a.artwork-slides-link:visited {
  opacity: 1;
}


/* ^^^ -- ARTWORK PAGE CLASSES -- ^^^ */




















/**/
/* SCREEN SIZES */
/**/




@media only screen and (max-width: 800px) and (max-height: 500px) {

  .navbar {
    font-size: calc(8px + 1vw);
    line-height: .35em;
    height: 95vh;
  }

  .navbarhor1 {
    margin-top: 5%;
    margin-bottom: 6%;
    width: 50%;
    min-width: 50px;
    max-width: 250px;
    opacity: .6;
  }

  .navbarhor2 {
    margin-top: 5%;
    margin-bottom: 5%;
    width: 50%;
    min-width: 50px;
    max-width: 250px;
    opacity: .6;
  }

  .logotext {
    width: clamp(100px, 35vw, 130px);
    /* won’t get too small or too wide */
    margin-top: clamp(20px, calc(2vh + 1vw), 60px);
    font-size: calc(56px + 1vw);
  }

}




@media only screen and (min-width: 702px) and (max-height: 499px) {

  .intro.expanded {
    height: 80vh;
  }

  .intro-texte {
    background-color: rgba(0, 0, 0, 0.744);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
  }
}





/* VVV -- SPECIAL INSTRUCTIONS FOR SMALL WINDOW AND MOBILE -- VVV */

@media all and (max-width: 700px) {


  .headerspacermain {
    padding-top: calc(80px + 10vh + 10vw);
  }

  .intro-flex {
    display: flex;
    margin-top: -5vh;
    align-items: stretch; /* Make both children the same height */
    gap: 1rem;
  }

  .intro-image {
    flex: 1; /* 1/3 of total space */
    display: flex;
    align-items: stretch;
  }

  .intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    /* 👇 Rounded and dark border */
    border-radius: 6px;              /* adjust as needed (e.g., 4px, 8px) */
    border: 2px solid rgba(0, 0, 0, 0.6); /* dark semi-transparent border */
  }

  .intro {
    margin-top: 0vw;
    padding-top: 25%;
    font-size: 3.7vw;
    line-height: 8vw;
    transition: height 0.4s ease-in-out, opacity 0.6s ease;
    margin-bottom: 0.6s ease-in-out;
    word-spacing: normal;
    hyphens: auto;
    /* Added opacity transition */
  }

  .intro.shrink {
    margin-bottom: 100px;
    /* Shrink back up */
    opacity: 0;
    /* Fades the intro */
    /* Removed visibility: hidden to allow opacity transition */
  }

  .intro-texte {
    background-color: rgba(0, 0, 0, 0.744);
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    line-height: 1.7em;
    font-size: 1.2rem;

  }

  .intro.expanded {
    margin-bottom: 100px;
    /* Shrink back up */
    opacity: 1;
    /* Fades the intro */
    height: 80vh;
  }

  .logolink {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: flex-start;
    /* Align it to the top */
    width: 100%;
    min-height: 200px;
    max-height: 300px;
    text-decoration: none;
    margin: 0;
    position: relative;
  }

  .logolink img {
    width: 90vw;
    /* Adjust the image width */
    max-width: 500px;
    min-height: 140px;
    max-height: 150px;
    position: absolute;
    /* Absolute positioning */
    transform: translateX(-50%);
    /* Ensure it’s perfectly centered horizontally */
  }

  .logolink:hover img {
    filter:
      drop-shadow(0px 10px 0px #ff00fb)
      /* Pink shadow to the right */
      drop-shadow(0px 10px 0px #00ffff);
    /* Blue shadow slightly further right with blur */
    ;
  }

  .main {
    grid-template-columns: 100%;
  }

  .leftside {
    display: none;
  }

  .rightside {
    width: 99%;
    padding-right: 2%;
    margin-right: 0%;
    padding-left: 0%;
  }

  .rightside_full {
    width: 100%;
    margin-right: 0%;
    padding-left: 0%;
    margin-left: 0;
  }

  h3 {
    font-size: 4vw;
    line-height: 2vw;
    text-indent: 2%;
    margin-right: 0%;
    text-align: center;
    width: 50%;
    margin: 0 auto;
  }

  h5 {
    font-size: 4vw;
    line-height: 2vw;
    text-indent: 2%;
    margin-right: 0%;
    text-align: center;
    width: 50%;
    margin: 0 auto;
  }

  h4 {
    font-size: 4vw;
    line-height: 4vw;
  }

  hr.new1 {
    width: 100%;
  }

  hr.new2 {
    width: 100%;
  }

  .headerspacer {
    margin-top: 27vw;
  }

  .container {
    grid-template-columns: repeat(auto-fill, minmax(40vw, 2fr));
  }





  .content-title {
    font-size: 20px;
  }


  .content-details p {
    font-size: 16px;
  }









  /* TOP NAVIGATION */


  .topnav {
    position: fixed;
    /* Locks it to the top of the screen */
    top: 0;
    left: 0;
    height: 10px;
    width: 100vw;
    min-height: 150px;
    max-height: 200px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: glitchy-effect 10s infinite linear;

    background: repeating-linear-gradient(45deg,
        rgb(255, 255, 255) 0px, rgba(0, 0, 0, .7) 1px,
        rgb(0, 0, 0) 4px, rgba(0, 0, 0, .5) 3px,
        rgb(0, 0, 0) 4px, rgba(0, 0, 0, 1) 5px);

    border-bottom: 2px solid rgba(255, 0, 200, 0.749);
    z-index: 9999;

  }


  /*
  .logotext2 {
    font-weight: 700;
    font-family: 'Rubik', sans-serif;
    margin-top: calc(40px + 1vw);
    margin-bottom: calc(30px + 1vw);
    font-size: calc(40px + 1vw);
    line-height: .2em;
    text-shadow: 0px 0px 1px rgba(255, 255, 255,.8), -3px 0px 1px rgba(255, 12, 250,.4), 3px 0px 1px rgba(0, 229, 255,.8);
    animation: chromaticMove 5000ms ease infinite;
    animation-direction: alternate;
    -moz-animation: chromaticMove 5000ms ease infinite;
    -moz-animation-direction: alternate;
    background: url(images/temp/textGlitch.png) no-repeat center center;
    background-size: cover;
    color: #ffffff;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    -moz-text-fill-color: transparent;
    -moz-background-clip: text;
    text-align: center;
    white-space: nowrap;
  }
  */




  .logotext2 {
    margin: 0;
    /* remove margin to help vertical centering */
    text-shadow:
      0px 0px 1px rgba(255, 255, 255, 0.8),
      -3px 0px 1px rgba(255, 12, 250, 0.4),
      3px 0px 1px rgba(0, 229, 255, 0.8);
  }


  /* Button Styling */
  /* Button Styling */
  .dropbtn {
    font-weight: bold;
    font-family: 'Rubik', sans-serif;
    background-color: #000;
    color: #ffffff;
    padding: 5px 100vw;
    line-height: calc(50px + 1vw);
    border: none;
    font-size: calc(20px + 1vw);
    border: none;
    cursor: pointer;
    transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out, font-weight 0.2s ease-in-out, filter 0.4s;
    text-align: center;
    z-index: 99;
    background: repeating-linear-gradient(235deg,
        rgb(0, 0, 0) 0px, rgba(0, 0, 0, .7) 1px,
        rgb(35, 35, 35) 2px, rgba(0, 0, 0, 1) 3px,
        rgb(0, 0, 0) 4px, rgba(0, 0, 0, 1) 5px);
  }



  .dropbtn:hover {
    font-weight: bolder;
    font-family: 'Rubik', sans-serif;
    background-color: rgb(0, 200, 255);
    color: #ff00fa;
    padding: 5px 100vw;
    font-size: calc(20px + 1vw);
    border: none;
    cursor: pointer;
    transition: background-color 0.4s, font-weight 0.2s, filter 0.4s;
    text-align: center;
    z-index: 99;
  }

  .dropdown {
    position: absolute;
    /* Locks it inside .topnav */
    bottom: 0;
    /* Pins it to the bottom */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
  }


  /* Dropdown Content - Now Always Fits */
  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    /* Ensures it starts below the button */
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    overflow-y: auto;
    min-width: 50vw;
    max-width: 100vw;
    /* Prevents it from being too wide on smaller screens */
    max-height: 60vh;
    /* Ensures it never exceeds 60% of the viewport height */
    overflow-y: auto;
    /* Allows scrolling if needed */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: opacity 0.4s, visibility 0.4s;
    border-radius: 8px;
    z-index: 99;
    width: 100%;
    font-weight: 100;
    font-family: 'Rubik', sans-serif;

  }

  /* Dropdown Links */
  .dropdown-content a {
    font-weight: 100;
    font-family: 'Rubik', sans-serif;
    color: #ff00fa;
    font-size: calc(20px + 1vw);
    line-height: 13vw;
    text-decoration: none;
    display: block;
    z-index: 99;
    padding: 1vw 0;
    animation: glitchy-effect 10s infinite linear;
    background: repeating-linear-gradient(45deg,
        rgba(255, 255, 255, 0.1) 0px, rgba(0, 0, 0, .7) 1px,
        rgba(255, 255, 255, 0.1) 2px, rgba(0, 0, 0, .5) 3px,
        rgba(0, 0, 0, .1) 4px, rgba(0, 0, 0, 1) 5px);
  }

  /* Dropdown Links */
  .dropdown-content a:hover {
    background: rgb(0, 200, 255);
    color: black;
  }

  /* Hover Effects */
  .dropdown:hover .dropdown-content {
    display: block;
  }


  /* Scrollbar styling */
  .dropdown-content::-webkit-scrollbar {
    width: 8px;
    /* Width of the vertical scrollbar */
  }

  .dropdown-content::-webkit-scrollbar-thumb {
    background-color: rgb(0, 200, 255);
    /* Color of the scrollbar thumb */
    border-radius: 4px;
    /* Rounded edges for the thumb */
    border: 2px solid #000;
    /* Optional: creates a border around the thumb */
  }

  .dropdown-content::-webkit-scrollbar-track {
    background-color: #333;
    /* Background color of the scrollbar track */
    border-radius: 4px;
    /* Rounded edges for the track */
  }

  .dropdown-content::-webkit-scrollbar-button {
    display: none;
    /* Optional: hides the buttons (usually up/down) */
  }

  /* END TOP NAVIGATION */







  .imgtext {
    line-height: 4.5vw;
    text-indent: 1vw;
    font-size: 3vw;
    opacity: .9;
  }


  .b_button {
    font-size: 3.7vw;
  }


  .b_button_back {
    width: 98% !important;
    margin-left: 8%;
    font-size: 2rem;
  }
















  .contact-header {
    width: 80%;
    margin: 0 auto;
    margin-top: 200px;
    margin-right: 16%;
  }


  .art-header {
    width: 80%;
    margin: 0 auto;
    margin-top: 150px;
    margin-right: 20%;
  }


  .art-background {
    z-index: -1;
    padding: 2.2vw;
    width: 117%;
  }

  .art-image {
    width: 99%;
    height: auto;
  }

  .art-text {
    width: 100%;
    min-width: 100%;
    display: inline-block;
    font-size: 4vw;
    font-weight: 100;
    font-family: 'Rubik', sans-serif;
    color: #ffffff;
    line-height: 6vw;
    margin-left: 0vw;
    text-align: justify;

  }


  .welcomebanner {

    line-height: 6vw;
    font-size: 5.5vw;
  }






  .bio-header {
    width: 100%;
    margin-top: 45%;
  }

  .bio-background {
    width: 100%;
    margin-left: 8%;
  }

  .bio-text {
    width: 100%;
    display: inline-block;
    font-size: 3.3vw;
    line-height: 7vw;
    margin-left: 0vw;
  }


  .b_button_long {
    font-size: 5.2vw;
    line-height: 1.5em;
  }


  .c_button {
    font-size: 4vw;
    line-height: 9vw;
  }



  .c_buttons {
    font-size: 4vw;
  }

  .c_rolodex {
    font-size: 3.4vw;
  }


  .contact_typer h6 {
    width: 77%;
    color: #ff00fa;
    font-weight: 100;
    font-size: 4vw;
    animation:
      typing 3.5s steps(40, end),
      blink-caret .75s step-end infinite;
  }

  /* The typing effect */
  @keyframes typing {
    from {
      width: 0
    }

    to {
      width: 77%
    }
  }




  .solutions-text {
    font-size: 3vw;
    line-height: 5vw;

  }



  .solutions_slideshow {
    font-size: 2.4vw;
    line-height: 4.5vw;

  }


  .solutions_header {
    font-size: 8vw;
    line-height: 4vw;

  }

  .solutions-header {
    margin-top: 42%;
  }



  .solutions_header_text {
    margin-top: 4.5%;
    width: 11.3em;
  }

  .imgtext2 {
    font-size: 2.7vw;
    line-height: 2.3vh;
  }



  /* VVV -- SPECIAL INSTRUCTIONS FOR SMALL WINDOW AND MOBILE FOR FIREFOX-- VVV */
  @-moz-document url-prefix() {}

  /* ^^^ -- SPECIAL INSTRUCTIONS FOR SMALL WINDOW AND MOBILE FOR FIREFOX-- ^^^ */
}

/* ^^^ -- SPECIAL INSTRUCTIONS FOR SMALL WINDOW AND MOBILE-- ^^^ */


@media all and (max-width: 500px) {

  .intro-image {
    display: none;
  }

  .intro-image img {
    display: none;
  }


   .intro {
    padding-top: 33%;

  }

 

}





/* VVV -- SPECIAL INSTRUCTIONS FOR LARGE WINDOW -- VVV */

@media all and (min-width: 2000px) {

  .main {
    width: 2000px;
    max-width: 2000px;
    grid-template-columns: 500px 1500px;
    justify-content: center;

  }

  .leftside {
    margin-left: 100px;
  }

  .rightside {
    margin-right: 100px;

  }

  .headerspacermain {
    padding-top: 20px;
  }


  .intro {
    font-size: 40px;
    line-height: 1.6em;

  }


  .navbar {
    font-size: 40px;
    line-height: .45em;
  }

  .workspacer {
    padding-top: 20px;
    padding-bottom: 0px;
  }

  .navbarhor1 {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 50%;
  }

  .navbarhor2 {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .logotext {
    margin-top: 50px;
    line-height: .6em;

  }

  a.workheaderitem {
    padding-left: 100px;
  }

  .navblack {
    display: none;
  }


  .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    /* adjust min size as needed */
    gap: 50px;
  }

  .content {
    aspect-ratio: 1 / 1;
    width: 100%;
    background-color: lightgray;
    /* just for visibility */
    object-fit: cover;
  }


  .content-title {
    font-size: 40px;
  }

  .content-text {
    font-size: 30px;
  }

  h2 {
    font-size: 80px;
  }

  .content-details p {
    font-size: 40px;
  }


  .imgtext {
    width: 100%;
    line-height: 60px;
    text-indent: 10px;
    font-size: 20px;

  }

  .indexlabels {
    padding-top: 1.9rem;

  }




  .art-text {
    width: 1035px;
    font-size: 30px;
    line-height: 45px;
    margin-left: 10px;


  }

  .art-background {
    z-index: -1;
    padding: 40px;
    margin-bottom: 15vw;
  }


  h3 {
    width: 1250px;
    font-size: 80px;
    line-height: 10px;
  }

  h5 {
    width: 1250px;
    font-size: 80px;
    line-height: 10px;
  }

  h4 {
    font-size: 80px;
    line-height: 10px;
  }

  .workhider:link {
    margin-top: 13px;
    font-size: 24px;
    margin-left: calc(1px + .1vw);
  }

  hr.new1 {
    width: 1000px;
  }

  hr.new2 {
    width: 1000px;
  }

  .content-details p {
    font-size: 30px;
  }

  .content-details {
    padding-left: 10%;
  }

  .logotext {
    font-weight: 700;
    font-family: 'Rubik', sans-serif;
    width: 200px;
    margin-top: calc(20px + 1vw);
    font-size: 89px;
    line-height: .6em;
  }


  .welcomebanner {

    line-height: 100px;
    font-size: 89px;
  }


  .headerspacer {
    padding-top: 30px;
  }








  br1 {
    display: block;
    margin: 2vw 0;
  }

  br2 {
    display: block;
    margin: 1.5vw 0;
  }


  .solutions-text {
    font-size: 40px;
    line-height: 45px;

  }


  .solutions_slideshow {
    font-size: 35px;
    line-height: 65px;
  }

  .solutions-header {
    margin-top: 20px;
  }

  .solutions_header {
    font-size: 100px;
    line-height: 40px;
    padding-top: 4%;
    padding-bottom: 4%;
    height: 80px;
  }

  .solutions_header_text {
    position: absolute;
    margin-top: 20px;
    width: 1150px;
  }








  a.navlink:link,
  .navlinkcurrent:link {
    padding-left: 0px;
    margin-left: 0px;
  }

  a.workheaderitem {
    padding-left: 50px;
  }

  a.navlinksmall:link {
    padding-left: 0px;
  }


  .bio-text {
    width: 100%;
    font-size: 45px;
    line-height: 90px;

  }

  .bioimgtext {
    line-height: 40px;
    font-size: 20px;

  }



  .b_button {
    font-size: 40px;
    line-height: 45px;
  }

  .b_button_long {
    font-size: 50px;
    line-height: 100px;
  }


  .c_button {
    font-size: 50px;
    ;
    line-height: 70px;
  }

 

  .c_buttons {
    font-size: 50px;
  }

  .cvpdf {
    width: 100%;
    height: 58vh;
  }



  .c_rolodex {
    color: #ffffff;
    font-size: 60px;
    font-family: 'Rubik', sans-serif;
    font-weight: 100;
    line-height: 80px;
  }


  .contact_typer {
    padding-bottom: 2%;
  }

  .contact_typer h6 {
    width: 850px;
    color: #ff00fa;
    font-weight: 400;
    font-size: 55px;
    font-family: 'Rubik', sans-serif;
    font-weight: 100;
    overflow: hidden;
    /* Ensures the content is not revealed until the animation */
    border-right: .5em solid #00f6ff;
    /* The typwriter cursor */
    white-space: nowrap;
    /* Keeps the content on a single line */
    margin: 0 auto;
    /* Gives that scrolling effect as the typing happens */
    letter-spacing: .01em;
    /* Adjust as needed */
  }



  .hugeleft {
    min-height: 120vh;
    display: block;
    position: fixed;
    background-color: black;
    left: 0;
    top: 0;
    bottom: 0;
    right: calc(500px + 50vw);

    animation: glitchy-effect 10s infinite linear;
    background: repeating-linear-gradient(45deg,
        rgba(0, 0, 0, .5) 0px, rgba(0, 0, 0, .7) 1px,
        rgb(0, 0, 0) 2px, rgba(0, 0, 0, .5) 3px,
        rgba(0, 0, 0, 0.5) 4px, rgba(0, 0, 0, 1) 5px);
  }

  /* Blue vertical line on the right */
  .hugeleft::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    /* Thickness of the vertical line */
    background-color: rgb(0, 200, 255);
    right: -4px;
    /* Position the line on the right */
  }

  .content-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures video covers the entire area */
    position: absolute;
    /* Ensures it fills the parent div */
    top: 0;
    left: 0;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear 0s;
    -moz-transition: all 0.4s linear 0s;
    transition: all 0.4s linear 0s;
  }


  .imgtext2 {
    z-index: 99999;

  }


  a.navlinknon:link {
    padding-left: 0%;
  }


  .intro.expanded {
    height: calc(800px + 2vh + 0.4vw);
  }

}

/* ^^^ -- SPECIAL INSTRUCTIONS FOR LARGE WINDOW -- ^^^ */

























/**/
/* BROWSERS */
/**/




/* VVV -- SPECIAL INSTRUCTIONS FOR MICROSOFT EDGE -- VVV */

@supports (-ms-ime-align:auto) {


  hr.new1 {
    display: none;
  }

  hr.new2 {
    display: none;
  }



  .logotext {
    font-weight: 700;
    font-family: 'Rubik', sans-serif;
    width: 35vw;
    margin-top: calc(20px + 1vw);
    font-size: calc(56px + 1vw);
    line-height: .6em;
    text-shadow: 0px 0px 1px rgba(255, 255, 255, .8), -3px 0px 1px rgba(255, 12, 250, .4), 3px 0px 1px rgba(0, 229, 255, .8);
    animation: none;
    animation-direction: alternate;
    -moz-animation: none;
    -moz-animation-direction: alternate;

    background-size: cover;
    color: rgba(255, 12, 250, 1);
  }

  .logotextalt {
    display: inline-block;
    font-size: .63em;
    transform: scaleY(1.2);
    padding-left: .04em;
    background-size: cover;
    color: rgba(255, 12, 250, 1);

  }





  /* VVV -- SPECIAL INSTRUCTIONS FOR MICROSOFT EDGE AND SMALL WINDOW AND MOBILE  -- VVV */
  @media all and (max-width: 770px) {
    .rightside {
      margin-top: 0vw;
    }
  }

  /* ^^^ -- SPECIAL INSTRUCTIONS FOR MICROSOFT EDGE AND SMALL WINDOW AND MOBILE  -- ^^^ */
}

/* ^^^ -- SPECIAL INSTRUCTIONS FOR MICROSOFT EDGE -- ^^^ */





/* VVV -- SPECIAL INSTRUCTIONS FOR SAFARI -- VVV */
@media not all and (min-resolution:.001dpcm) {

  .contact_typer h6 {
    width: 100%;
  }

  /* The typing effect */
  @keyframes typing {
    from {
      width: 0;
    }

    to {
      width: 100%;
    }
  }

  .solutions_header {
    font-size: 6vw;
    line-height: 5vw;
  }

  .solutions_header_text {
    margin-top: 2.1%;
    width: 12.1em;
  }

}


/* ^^^ -- SPECIAL INSTRUCTIONS FOR SAFARI -- ^^^ */