:root {
  --circle-size: 0px;
  /* CSS variable to hold circle size */
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  /* Prevent horizontal scrolling */
  font-family: "Silkscreen", sans-serif;
  font-weight: 400;
  font-style: normal;
  scroll-snap-type: y proximity;
  background-color: #000000;

}

body {
  min-height: 100vh;
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available;

}

::-webkit-scrollbar {
  display: none;
}

html {
  height: -webkit-fill-available;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

@supports (-webkit-touch-callout: none) {
  body {
    /* The hack for Safari */
    height: -webkit-fill-available;
  }
}

/* Ensure content stretches in landscape */
@media screen and (orientation: landscape) {

  #container,
  .reel-container,
  .content-section,
  .footer {
    max-width: 100%;
  }
}

.video-resize {
  display: none;

}

video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  width: auto;
}

@keyframes example {
  from {
    min-width: 100%;
    width: auto;
    height: auto;
  }

  to {
    min-width: 0%;
    width: 100%;
    height: 100%;
  }
}

#reel.video-active {
  min-width: 0%;
  width: 100%;
  height: 100%;
  animation-name: example;
}

@media (max-width: 768px) {
  #reel.video {
    min-width: 0%;
    width: 100%;
    height: 100%;
    animation-name: example;

  }
}

.reel-container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
  background-color: black;
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width:768px) {
  .reel-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: -webkit-fill-available;
    object-fit: contain;

  }
}

canvas {
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  z-index: -1;
  filter: blur(20px);
}

#avpContainer {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  pointer-events: none;
  overflow: visible;
}

section {
  scroll-snap-align: start;
}

.content-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  /* Ensures at least the height of the viewport */
  background-color: #f0f0f0;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  height: -webkit-fill-available;
}

#container>* {
  scroll-snap-align: start;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

h1,
p {
  margin: 0;
  padding: 10px;
  font-size: 1.35rem;
}

.footer {
  padding: 1.5rem;
  background-color: #333;
  /* Footer background color */
  color: white;
  /* Text color */
  display: flex;
  flex-direction: row;
  align-items: center;
  /* Centers content vertically */
  align-content: center;
  /* min-height: 50vh; */
  height: 100%;
  text-align: center;
  justify-content: space-around;

  /* Centers content horizontally */
}

@media screen and (max-width:768px) {
  .footer {
    flex-wrap: wrap;
  }
}


input[type=text],
textarea {
  height: 1.5em;
  width: 100%;
  border: 1px;
  border-radius: 5px;
  background-color: #636363;
}




h1 {
  font-size: 3rem;
  padding: 10px;
}

.stickyfooter {
  display: flex;
  color: white;
  /* Text color */
  bottom: 0px;
  width: 100%;
  flex-direction: row;
  text-align: center;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: black;
  justify-content: space-around;
}

.footerContainer {}

@keyframes wipe-enter {
  0% {
    clip-path: circle(0%);
  }

  100% {
    clip-path: circle(100%);
  }
}

.circle {
  display: inline-flex;
  /* Aligns children inline but allows flex properties */
  align-items: center;
  /* Centers children vertically */
  position: relative;
  /* Needed for absolute positioning of ::before */
  white-space: nowrap;
}

.color-1 {
  position: relative;
  display: inline-block;
  color: #000000;
}

.color-1-anim {
  position: relative;
  display: inline-block;
  color: #000000;
}

.color-1-anim::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  color: rgb(255, 0, 0);
  /* Change the color to see the overlay effect */
  opacity: 1;
  /* Optional: adjust opacity to see both texts */
  pointer-events: none;
  /* Ignore mouse events on the overlay */
  animation: wipe-enter 1s;
}

.color-2 {
  position: relative;
  display: inline-block;
  color: #000000;
}

.color-2-anim {
  position: relative;
  display: inline-block;
  color: #000000;
}

.color-2-anim::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  color: #fdb930;
  /* Change the color to see the overlay effect */
  opacity: 1;
  /* Optional: adjust opacity to see both texts */
  pointer-events: none;
  /* Ignore mouse events on the overlay */
  animation: wipe-enter 1s;
}

.color-3 {
  position: relative;
  display: inline-block;
  color: #000000;
}

.color-3-anim {
  position: relative;
  display: inline-block;
  color: #000000;
}

.color-3-anim::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  color: #61b393;
  /* Change the color to see the overlay effect */
  opacity: 1;
  /* Optional: adjust opacity to see both texts */
  pointer-events: none;
  /* Ignore mouse events on the overlay */
  animation: wipe-enter 1s;
}

.color-4-anim::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  color: #0785ac;
  /* Change the color to see the overlay effect */
  opacity: 1;
  /* Optional: adjust opacity to see both texts */
  pointer-events: none;
  /* Ignore mouse events on the overlay */
  animation: wipe-enter 1s;
}

.color-5-anim::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  color: #c51888;
  /* Change the color to see the overlay effect */
  opacity: 1;
  /* Optional: adjust opacity to see both texts */
  pointer-events: none;
  /* Ignore mouse events on the overlay */
  animation: wipe-enter 1s;
}

.color-4 {
  position: relative;
  display: inline-block;
  color: #000000;
}

.color-4-anim {
  position: relative;
  display: inline-block;
  color: #000000;
}

.color-5 {
  position: relative;
  display: inline-block;
  color: #000000;
}

.color-5-anim {
  position: relative;
  display: inline-block;
  color: #000000;
}

#casestudy-container {
  width: 100vw;
  height: 100vh;
  background-color: rgb(223, 223, 223);
  display: flex;
}

.casestudy-article {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background-image: url("../assets/casestudies-jose-poster.jpg");
}


.contactForm {
  display: inline-flex;
  flex-direction: column;
  padding-right: 2em;

}

textarea {
  height: 4em;
  resize: none;
  overflow: hidden;

}

.form-control {
  color: white;
  text-align: center;
  font-family: "Silkscreen", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: large;
}

.contactInputs {
  display: inline-flex;
  flex-direction: column;
}

.btn,
.btn-primary {
  background-color: #c9c9c9;
  color: #000000;
  display: block;
  margin: 0 auto;
  display: flex;
  font-family: "Silkscreen", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: .35em 1em;
  margin-top: 10px;
  font-size: large;
  text-decoration: none;
  border: 0;
  vertical-align: middle;
  height: fit-content;
  align-self: center;
  justify-content: center;
  text-align: center;
}

.privacyNote{
  font-size:smaller;
  color: #888;
}

.social_svgs {
  height: 15px;
}

.error {
  border: 1px solid red;
}

.message {
  padding: 10px;
  margin-top: 10px;
  border-radius: 4px;
}

.message.success {
  background-color: #d4edda;
  color: #155724;
}

.message.error {
  background-color: #f8d7da;
  color: #721c24;
}