
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* //////////////////////////// HERO ////////////////////// */
.hero {
  margin-top: 70px;
  margin-bottom: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-heading-container {
  z-index: 1;
  text-align: center;
}

.animation-div {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
.animation-div img {
  width: 200px;
}

.hero-heading-container h1 {
  margin-bottom: 0px;
  font-size: 80px;
  font-weight: 800;
  color: rgb(59, 59, 59);
  animation: fadeIn 1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.hero-heading-container .text-change {
  font-size: 130px;
  font-weight: 800;
  color: #7c00c4;
  /* color: rgb(255, 72, 0); */
  animation: fadeIn 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.hero-heading-container .image-change {
  animation: fadeIn 2.1s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.hero-para{
  margin-top: -20px;
}

.button-container {
  width: 70%;
  margin: auto;
  margin-top: 30px;
}
.button-container p {
  font-size: 15px;
  color: #808080;
}

#explore-button {
  padding: 10px 20px;
  font-size: 1.6em;
  background-color: #007bff;
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
  transition: 0.1s ease-in-out;
}
#explore-button:hover {
  background-color: #004b9b;
}
#explore-button:active {
  animation: bounce 0.5s;
}

@media (max-width: 1024px) {
  .hero-heading-container h1 {
    font-size: 80px; /* Adjust the font size as needed */
  }
  .hero-heading-container .text-change {
    margin-top: 0px;
    font-size: 100px; /* Adjust the font size as needed */
  }
  .hero-heading-container .image-change {
    margin-top: -20px;
    font-size: 10vh;
  }
  .button-container {
    width: 80%;
  }
  .button-container p {
    font-size: 16px;
  }
  #explore-button {
    font-size: 17px;
  }
}

@media (max-width: 834px) {
  .hero-heading-container h1 {
    font-size: 40px; /* Adjust the font size as needed */
  }
  .hero-heading-container .text-change {
    margin-top: 0px;
    font-size: 50px; /* Adjust the font size as needed */
  }
  .hero-heading-container .image-change {
    margin-top: -20px;
    font-size: 10vh;
  }
  .animation-div {
    flex-direction: column;
  }
  .animation-div img{
    width: 150px;
  }
  .button-container {
    width: 905;
  }
  .button-container p {
    font-size: 15px;
    color: #808080;
  }
}
