/*  */

.bg-image {
  /*background-size: cover;*/
  /*background-position: center;*/
  object-fit: cover;
  object-position: center;
  height: 100vh;
  width: 100%;
  top: 0;
  z-index: -1;
  position: fixed;
  opacity: 30%;
}

.stickyThings {
  top: 0px;
  position: sticky;
}

h1 {
  font-size: 5rem;
  font-weight: bolder;
}



.heroH2 {
  font-size: 3rem;
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.animate {
  animation: animate 2s ease-in-out;
}

.standard-animate {
  animation: animate 10s ease-in-out;
  /* transition: all 10s ease-in; */
}

.fifty-view {
  height: 50vh;
}

.seventy-five {
  height: 75vh;
}
.ebook-gradient-container h2 {
  text-align: left;
}

.ebook-gradient-container {
  background: linear-gradient(135deg, #eef1f3 0%, #acb3cc 60%, #e7e1ee 100%);
  border: 1.5px solid #e0e0e0;
  transition: box-shadow 0.3s;
  height: 80vh;
  width: 40vw;
  text-align: justify;
}
.ebook-gradient-container:hover {
  box-shadow: 0 8px 32px 0 rgba(60, 60, 120, 0.18);
}

.contact-change {
  text-decoration: none;
  background: #fff;
}

span {
  font-size: 12px;
}


#why svg {
  background-color: black;
  padding: 2px;
  height: 40px;
  border-radius: 10px;
}

/* footer {
  position: absolute;
  bottom: 0;
  width: 100vw;
} */

@media (max-width: 767px) {
  .bg-image {
      background-size: contain;
      background-position: top center;
  }

  .ebook-gradient-container {
    text-align: center;
    height: 100%;
    width: 100%;
  }
}