@font-face {
  font-family: DMSans;
  src: url('/fonts/DMSans.ttf') format('truetype');
  font-style: normal;
}

/* * {
  outline: 1px solid red;
} */

* {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

body {
  cursor: none;
  font-family: DMSans;
  margin: 0px;
  padding: 0px;
}

.section-container {
    display: flex;
}

@media (max-width: 1400px) {
  .section-container {
    flex-direction: column;
  }
}

.section-container-column-reverse {
  display: flex;
}

@media (max-width: 1400px) {
  .section-container-column-reverse {
    flex-direction: column-reverse;
  }
}

.section-container-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 800px;
  width: 50vw;
}

@media (max-width: 1400px) {
  .section-container-child {
    height: 700px;
    width: 100%;
  }
}

.section-container-child-solo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 800px;
  width: 100%;
}

@media (max-width: 1400px) {
  .section-container-child-solo {
    height: 700px;
  }
}

.illustration {
  width: 650px;
}

.illustration-small {
  width: 500px;
}

.section-one-circle-button-container {
  display: flex;
  margin-top: 24px;
  gap: 6px;
}

.section-six-circle-button-container {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  gap: 6px;
}

.circle-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.video-container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-one-illustration-container {
    display: flex;
    position: relative;
    height: 485px;
  }

.section-one-illustration-brad {
    align-self: flex-end;
  }

.section-one-illustration-drone {
  position: absolute;
  width: 250px;
  background-size: cover;
  top: -165px;
  left: 340px;
  -webkit-backface-visibility:hidden;
  transform: translateZ(0);
}

.section-one-title {
  font-size: 75px;
  color: rgb(100, 109, 228);
  font-optical-sizing: auto;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.section-one-description {
  font-size: 72px;
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  margin-top: 3px;
}

.section-two-title {
  font-size: 60px;
  line-height: 1.1;
  font-weight: 300;
}

.section-two-description {
  font-size: 18px;
  margin-top: 50px;
  line-height: 1.8;
  max-width: 600px;
}

.section-three-container {
  margin-top: 100px;
  margin-right: 100px;
}

@media (max-width: 1400px) {
  .section-three-container {
    margin-top: 50px;
  }
}

.section-three-timeline-wrapper {
  position: relative;
  display: flex;
}

.section-three-timeline-line-container {
  position: relative;
  width: 4px;
  display: flex;
  left: 100px;
  justify-content: center;
}

.section-three-timeline-track {
  position: absolute;
  width: 4px;
  background: rgb(240, 240, 240);
  height: 100%;
  z-index: 1;
  border-radius: 999px;
}

.section-three-timeline-fill {
  position: absolute;
  width: 4px;
  background: rgb(100, 109, 228);
  height: 0;
  z-index: 2;
  opacity: 0; /* 🔹 Start invisible for fade-in */
  border-radius: 999px;
}

.section-three-timeline-marker {
  position: absolute;
  left: -8px; /* match the track's left */
  width: 20px; /* depends on section-three-timeline-fill width */
  height: 20px;
  background: rgb(240, 240, 240);
  /* border: 3px solid rgb(100, 109, 228); */
  border-radius: 50%;
  z-index: 3;
}

.section-three-timeline-marker .fill {
  width: 100%;
  height: 100%;
  background-color: rgb(100, 109, 228);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.section-three-timeline-items {
  display: flex;
  width: 100%;
  margin-left: 100px; /* Offset from track */
  padding-left: 40px;
  margin-top: 200px;
}

.section-three-timeline-columns {
  display: flex;
  width: 100%;
  gap: 40px;
}

.section-three-timeline-left-column {
  flex: 1;
  max-width: 55%;
}

@media (max-width: 1000px) {
  .section-three-timeline-left-column {
    max-width: 100%;
  }
}

.section-three-timeline-right-column {
  flex: 1;
  max-width: 45%;
  position: relative;
}

@media (max-width: 1000px) {
  .section-three-timeline-right-column {
    display: none;
  }
}

.section-three-timeline-item {

}

.section-three-timeline-item-date {
  font-size: 24px;
}

.section-three-timeline-item-company {
  margin-top: 25px;
  font-size: 60px;
  font-weight: 600;
  margin-right: 60px;
}

.section-three-timeline-item-title {
  font-size: 24px;
  font-weight: 500;
  margin-top: 8px;
  color: rgb(100, 109, 228)
}

.section-three-timeline-item-description {
  font-size: 18px;
  margin-top: 50px;
  margin-bottom: 100px;
  margin-right: 60px;
  max-width: 600px;
  line-height: 1.8;
}

@media (max-width: 1000px) {
  .section-three-timeline-item-description {
    margin-right: 0px;
    max-width: unset;
  }
}

.section-three-sticky-box {
  position: sticky;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80vh;
  top: 10vh;
  background: black;
  border-radius: 48px;
}

.section-three-sticky-box img {
  width: 200px;
}

.section-four-container {
  position: relative;
  padding-top: 600px; /* match with gsap value, when cards stick, rn 70 */
  margin-bottom: 150px; /* add space on bottom with this */
}

@media (max-width: 1400px) {
  .section-four-container {
    margin-bottom: 70px;
  }
}

.section-four-video-container video {
  height: 600px;
  display: block; /* or else a small padding appears at the bottom of video */
}

.card-container {
  position: relative;
}

.card-container-wrapper {
  margin-left: 100px;
  margin-right: 100px;
}

@media (max-width: 1000px) {
  .card-container-wrapper {
    margin-left: 25px;
    margin-right: 25px;
  }
}

/* add children here */
.card-container-wrapper:nth-child(1) {
  margin-bottom: 150px;
}

.card {
  display: flex;
  height: 600px;
  width: 100%;
  border-radius: 48px;
  overflow: hidden;
}

.card-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
}

.section-four-card-one-text-container {
  margin-left: 75px;
  margin-right: 75px;
}

.section-four-card-one-title {
  color: white;
  font-weight: 500;
  font-size: 60px;
}

.section-four-card-one-description {
  color: white;
  font-size: 18px;
  margin-top: 35px;
  line-height: 1.8;
  max-width: 600px;
}

.section-four-card-two-title {
  color: white;
  font-weight: 500;
  font-size: 60px;
  text-align: center;
  margin-left: 75px;
  margin-right: 75px;
}

.section-four-card-two-img {
  width: 75%;
  fill: white;
  max-width: 400px;
}

.section-five-title {
  font-size: 72px;
  text-align: center;
  line-height: 1.1;
  font-weight: 400;
}

.section-six-title {
  font-size: 48px;
  text-align: center;
  font-weight: 300;
  margin-top: 65px;
}

.drone-click-area {
  position: absolute;
  height: 235px;
  width: 235px;
  left: 345px;
  top: -50px;
  border-radius: 50%;
  -webkit-backface-visibility:hidden;
  transform: translateZ(0);
  /* border: 2px dashed #333; */
}

.animated-div-up {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animated-div-up.show {
  opacity: 1;
  transform: translateY(0);
  animation: diagonalWipe 0.5s ease-out forwards;
  mask-image: linear-gradient(135deg, transparent 50%, black 50%);
  mask-size: 200% 200%;
  mask-position: 0% 0%;
}

.animated-div-up.normal {
  opacity: 1;
  transform: translateY(0);
}

@keyframes diagonalWipe {
  to {
    mask-position: 100% 100%
  }
}

.animated-div-down {
  opacity: 0;
  transform: translateY(-45px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animated-div-down.show {
  opacity: 1;
  transform: translateY(0);
}

.grey {
  background-color: rgb(248, 250, 253);
}

.yellow {
    background-color: rgb(236, 255, 30);
}

.blue {
    background-color: DodgerBlue;
}

.primary {
  background-color: rgb(100, 109, 228);;
}

.black {
  background-color: rgb(36,41,46);
}

.section-margin {
  margin-left: 100px;
  margin-right: 100px;
}

@media (max-width: 1400px) {
  .section-margin {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.section-margin-50 {
  margin-left: 50px;
  margin-right: 50px;
}

.margin-top-150 {
  margin-top: 150px;
}

.mf-cursor.-md:before {
	opacity: .75;
	transform: scale(1.4);
}