/* main */
#hero {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 30px;
    padding: 30px 0;
    background-image: linear-gradient(to top, rgb(6, 38, 61), black);
}

   @media (max-width: 1300px) {
    #hero {
      flex-direction: column;
      padding: 0px 0;
      gap: 0;
     }
   }

#heroImg {
  width: 100%;
  height: auto;
  padding-bottom: 30px;
}

#headers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  margin-top: 70px;
  font-family: 'Heebo', sans-serif;
  padding: 0px 60px 0 60px;
  max-width: 50%;
}

@media (max-width: 1300px) {
    #headers {
      max-width: 100%;
      padding: 60px 60px 0 60px;
     }
   }

#headers.show {
  opacity: 1;
  transform: translateY(0);
}
.show {
  opacity: 1;
  transform: translateY(0);
}

#hero h1 {
    color: white;
    font-size: clamp(40px, 3vw, 70px);
    font-weight: 900;
    margin: 0;
}

#hero h2 {
    color: rgb(0, 160, 184);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 900;
    margin: 0;
}

#heroCta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: 'Heebo', sans-serif;
  padding: 30px 0 60px 0 ;
}

#arrowSpan {
  display: inline-block;
  animation: arrowSpan 2s infinite;
  font-size: 50px;
  font-weight: bold;
  width: 100px;
  fill: rgb(182, 182, 182);
}

@keyframes arrowSpan {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

#h2Span {
  color: white;
  font-size: clamp(28px, 3vw, 50px);
  font-weight: 900;
}

#heroImage {
  max-width: 100%;
  width: 30%;
}

   @media (max-width: 1300px) {
    #heroImage {
        width: 80%;
        margin-top: 0;
     }
   }


#sceneContainer {
  position: relative;
  width: 600px;
  height: 400px;
}

@media (max-width: 1300px) {
  #sceneContainer {
    /* display: none; */
        width: 80%;
        margin-top: 0;
     }
   }

.illustration {
  position: absolute;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.computer {
  left: 13%;
  top: 10%;
  transform: translate(-50%, -50%) scale(1.1);
  z-index: 1;
  width: 70%;
}

.person1 {
  left: 10%;
  top: 30%;
  z-index: 2;
  width: 40%;
}

.person2 {
  left: 40%;
  top: 5%;
  z-index: 2;
  width: 50%;
}

   @media (max-width: 1300px) {
     #sceneContainer {
       width: 400px;
       height: 200px;
       margin-bottom: 120px;
     }
   }

   @media (max-width: 768px) {
     #sceneContainer {
       width: 300px;
       height: 100px;
     }
   }

   #ctaA {
    display: block;
    text-align: center;
    border: none;
    border-radius: 50px;
    padding: 20px 150px;
    font-size: clamp(18px, 3vw, 22px);
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    cursor: pointer;
    color: white;
    margin-bottom: 20px;
    background-image: linear-gradient(to right, rgb(133, 3, 129), rgb(0, 160, 184));
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

   #ctaA:hover {
    background-image: linear-gradient(to right, rgb(0, 160, 184), rgb(133, 3, 129));
    transform: scale(1.07) translateY(-2px);
   }

      @media (max-width: 768px) {
      #ctaA {
        padding: 20px 20px;
        width: 100%;
     }
   }