

header>h1 {
    color: #ff7600e6;
    margin: 5vh;
    margin-top: 6vh;
    margin-left: 6vw;
    margin-right: 10vw;
    font-size: 50px;
    border-left: 3px solid #c55f05e6;
    padding-left: 1.5vw;
    padding: 3w;
    animation: Heading 2s ease-in;
}

@keyframes Heading {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
        color: #a8734581;
    }

    70% {
        opacity: .8;
        color: #da7d2db7;
    }

    100% {
        opacity: 1;
        color: #ff7600e6;
    }
}


.display {
  display: flex;
  justify-content: center;

}

.content-1 ,.content-2{
  margin-top: 5vh;
  height: 3vh;
  width: 88vw;
  height: auto;
  text-align: justify;
  font-size: 3vh;
}

.mem_offer {
  color: #ff7600e6;
  margin: 5vh;
  margin-top: 6vh;
  margin-left: 30vw;
  margin-right: 10vw;
  font-size: 9vh;
  padding-left: 1.5vw;
  text-decoration: underline;

}

.jump-in {
  animation: 2s Member cubic-bezier(0.6, -0.28, 1, -0.19);
  opacity: 1;
  transform: translateY(0);
}

.hidden {
  opacity: 0;
  transform: translateY(50px);
}

@keyframes Member {
  0% {
    transform: translateY(-200px);
    opacity: 0;
  }

  60% {
    transform: translateY(30px);
    opacity: 1;
  }

  80% {
    transform: translateY(-10px);
     opacity: 1;
  }

  100% {
    transform: translateY(0);
  
     opacity: 1;
  }
}

.under_mem_offer {
  color: #94531af9;
  margin: 5vh;
  margin-top: -2vh;
  margin-left: 37vw;
  margin-right: 10vw;
  font-size: 7vh;
  padding-left: 1.5vw;
  text-decoration: none !important;
}

.parent {

  position: relative;
  /* ✅ Needed for ::before to stay inside this box */
  height: 60vh;
  width: 80vw;
  display: flex;
  justify-content: center;
  align-items: center;
  
  /* Hides blur overflow */
  border-radius: 16px;
}

.parent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("/Pages/Membership/books1.jfif");
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  z-index: 0;
}

.card {
  width: 15vw;
  height: 38vh;
  background-color: antiquewhite;
  border: 2px;
  margin-right: 2vw;
  margin-left: 2vh;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  /* THIS is the magic */
  -webkit-backdrop-filter: blur(10px);
  /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  border-radius: 16px;
  z-index: 1;
  object-fit: contain;

  display: flex;
  align-content: center;
  justify-content: center;
}

.card a 
{
  text-decoration: none;
  color: rgb(39, 255, 24);
  
}
.text-in-card {
  margin-top: 15vh;
  font-family: 'Times New Roman', Times, serif;
  font-size: 4vh;
  text-align: center;
  opacity: .8;
}

.card:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
  cursor: grab;
  box-shadow: 0 8px 32px 0 rgba(42, 53, 205, 0.809);
  text-transform: uppercase;
  font-size: 2vh;
}

.card-left {
  animation: 4s Card_left cubic-bezier(0.6, -0.28, 1, -0.19);

}

@keyframes Card_left {
  0% {
    transform: translateX(-200px);
    opacity: 0;
  }

  60% {
    transform: translateX(30px);
    opacity: 1;
  }

  80% {
    transform: translateX(-10px);
     opacity: 1;
  }

  100% {
    transform: translateX(0);
     opacity: 1;
  }
}


.card-right {
  animation: 4s Card_right cubic-bezier(0.6, -0.28, 1, -0.19);
  animation-delay: 1s;
}

@keyframes Card_right {
  0% {
    transform: translateX(200px);
    opacity: 0;
  }

  60% {
    transform: translateX(-30px);
    opacity: 1;
  }

  80% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0);
  }
}