/* Import Google Font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
section {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  perspective: 1000px;
}
section::before {
  content: "";
  position: absolute;
  height: 240px;
  width: 240px;
  border-radius: 50%;
  transform: translate(-150px, -100px);
  background: linear-gradient(90deg, #9c27b0, #f3f5f5);
  box-shadow: 2px 2px 10px rgb(222, 119, 200);

}
section::after {
  content: "";
  position: absolute;
  height: 240px;
  width: 240px;
  border-radius: 50%;
  transform: translate(150px, 100px);
  background: linear-gradient(90deg, #9c27b0, #f3f5f5);
  box-shadow: 2px 2px 10px rgb(222, 119, 200);

}
.container {
  position: relative;
  height: 225px;
  width: 375px;
  z-index: 100;
  transform-style: preserve-3d;
  /* transform: rotateY(deg); */
  transform-style: preserve-3d;
  transition: all 1s ease-in-out;
}
.container:hover {
  transform: rotateY(180deg);
}
.container .card {
  position: absolute;
  height: 100%;
  width: 100%;
  padding: 25px;
  border-radius: 25px;
  backdrop-filter: blur(25px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backface-visibility: hidden;
}
.samor_cha_face header,
.samor_cha_face .thappa {
  display: flex;
  align-items: center;
}
.samor_cha_face header {
  justify-content: space-between;
}
.samor_cha_face .thappa img {
  width: 48px;
  margin-right: 10px;
}
h5 {
  font-size: 16px;
  font-weight: 400;
}
.samor_cha_face .chip {
  width: 50px;
}
.samor_cha_face .card-ki-details {
  display: flex;
  margin-top: 40px;
  align-items: flex-end;
  justify-content: space-between;
}
h6 {
  font-size: 10px;
  font-weight: 400;
}
h5.number {
  font-size: 18px;
  letter-spacing: 1px;
}
h5.name {
  margin-top: 20px;
}
.card.magcha_bhag {
  border: none;
  padding: 15px 25px 25px 25px;
  transform: rotateY(160deg);
  transition: 0.8s ease-in-out;
}
.card.magcha_bhag h6 {
  font-size: 8px;
}
.card.magcha_bhag .magnetic-strip {
  position: absolute;
  top: 40px;
  left: 0;
  height: 45px;
  width: 100%;
  background: #000;
}
.card.magcha_bhag .signature {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 80px;
  height: 40px;
  width: 85%;
  border-radius: 6px;
  background: repeating-linear-gradient(
    #fff,
    #fff 3px,
    #efefef 0px,
    #efefef 9px
  );
}
.signature i {
  color: #000;
  font-size: 12px;
  padding: 4px 6px;
  border-radius: 4px;
  background-color: #fff;
  margin-right: -30px;
  z-index: -1;
}
.card.magcha_bhag h5 {
  font-size: 8px;
  margin-top: 15px;
}

@media  screen and (max-width:600px) {
  .container:hover{
    width: 345px;
    
  }
  .card{
    transition: 1s ease-in-out;
    transform: scale(0.8);
  }
  section::before {
    height: 200px;
    width: 200px;
    box-shadow: 2px 2px 10px rgb(222, 119, 200);

    transition: background-color 1s;
    background: linear-gradient(90deg, #b41188, #f3f5f5);
    transform: translate(-100px, -80px);
    transition: 1s cubic-bezier(.51,.92,.24,1.15) all;
   
  }
  section::after {
    box-shadow: 2px 2px 10px rgb(222, 119, 200);
    height: 200px;
    width: 200px;
    transform: translate(100px, 80px);
    /* transform: rotateY(160deg); */
    background: linear-gradient(90deg, #b41188, #f3f5f5);
    transition: 1s cubic-bezier(.51,.92,.24,1.15);
  }

  
  
}