@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@700&family=Poppins:wght@400;500;600&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
 
.header-11{
  text-align: left;
  padding: 15px;
  color: white;
}

body{
  font-family: 'Open Sans', sans-serif;
}
.all-card-14 {
  background-color: rgb(71, 71, 71);
  height: 800px;
}



.animation-card-14{
  position: relative;
  width: 360px;
  height: 450px;
  /* height: 185px; */
  background-color: #333;
  transition: 0.5s;
  margin-top: 100px;
}

.animation-card-14:hover{
  height: 460px;
}

.animation-card-14 .card{
  position: absolute;
  background-color: #000;
  inset: 0;
  overflow: hidden;
}


.animation-card-14 .card::before{
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 600px;
  height: 120px;
  background: linear-gradient(transparent, red, red, red, transparent);
  animation: animate 4s linear infinite;
  transform: translate(-50%, -50%);

}

@keyframes animate {
  0%{
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100%{
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.animation-card-14 .card::after{
  content: '';
  position: absolute;
  inset: 3px;
  background: #292929;
}


.animation-card-14 .images{
  top: -50px;
  left: 50%;
  position: absolute;
  transform: translate(-50%);
  height: 150px;
  width: 150px;
  transition: 0.5s;
  background-color: #000;
  z-index: 10;
  overflow: hidden;
}

.animation-card-14:hover .images{
  width: 250px;
  height: 250px;

}

.animation-card-14 .images::before{
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(transparent, rgb(109, 220, 253), rgb(109, 220, 253), rgb(109, 220, 253), transparent);
  height: 150px;
  width: 500px;
  animation: animate2 6s linear infinite ;
}

@keyframes animate2 {
  0%{
    transform: translate(-50%, -50%) rotate(360deg);
  }

  100%{
    transform: translate(-50%, -50%) rotate(0deg);
  }
}


.animation-card-14 .images::after{
  content: '';
  position: absolute;
  inset: 3px;
  background-color: #292929;
}


.animation-card-14 .images img{
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  filter: grayscale(1);
}


.animation-card-14 .title{
  height: 100%;
  width: 100%;
  position: absolute;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  
}

.animation-card-14 .title .details{
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 40px;
  transition: 0.5s;
  transform: translateY(145px);
  margin-bottom: -50px;
  
}

/* .animation-card-14:hover .title .details {
  transform: translateY(0px);

} */

.animation-card-14 .title .details h2{
  font-size: 1.25rem;
  font-weight: 600;
  color: rgb(109, 220, 253);
}

.animation-card-14 .title .details h2 span{
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
}

.animation-card-14 .title .details .biodata{
  display: flex;
  justify-content: space-between;
  /* margin: 20px 0; */
}

.animation-card-14 .title .details .biodata h3{
  font-size: 1rem;
  color: rgb(131, 213, 238);
  line-height: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;


}

.animation-card-14 .title .details .btn{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.animation-card-14 .title .details .btn button{
  padding: 10px 30px;
  border: none;
  outline: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  background-color: rgb(49, 181, 221);
  color: #fff;
  cursor: pointer;
  opacity: 0.8;

}

.animation-card-14 .title .details .btn button:nth-child(2){
  background-color: #fff;
}

.animation-card-14 .title .details .btn button:hover{
  opacity: 1;
}
@media screen and (max-width: 768px){
  .all-card-14{
    height: 2000px !important;
  }
}


