.hero-container {
  position: relative;
  width: 100%;
  min-height: 90vh;
  /* padding: 40px; */
  background-image: url(../Assets/running.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: 50%;
  padding-left: 6rem;
}
.hero-content h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.5s linear 0.5s forwards ;
}
.hero-content h1 {
  margin: 0;
  font-size: 2.6rem;
  opacity: 0;
  animation: fadeUp 0.5s linear 1.5s forwards ;
}

.hero-content hr {
  width: 50px;
  height: 3px;
  background-color: blue;
  position: absolute;
  opacity: 0;
  animation: fadeUp 0.5s linear 2s forwards ;
}
.hero-content p {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.5s linear 2.5s forwards ;
}

.hero-container .btn {
  display: inline-block;
  padding: 15px 40px;
  color: white;
  background: linear-gradient(to right, #56a4fe 0%, #1eace3 50%, #56a4fe 100%);
  border-radius: 10px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  text-transform: capitalize;
  box-sizing: 0 4px 6px rgba(50, 50, 93, 0.1);
  transform: all 0.3s;
  opacity: 0;
  animation: fadeUp 0.5s linear 3s forwards ;
}

.hero-container .btn:hover {
  background-position: right center;
}

@media only screen and (max-width: 700px) {
  .hero-content {
    padding-left: 10px;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
}
