.card-container {
  /* display: grid; */
  /* grid-auto-rows: 2.7fr; */
  /* border: 2px solid #ccc; */
  /* grid-template-columns: repeat(auto-fill, minmax(312px, 1fr)); */
  /* max-width: 1248px; */
  /* margin: auto; */
}

@media screen and (max-width: 1264px) {
  .card-container {
    max-width: 936px;
  }
}

@media screen and (max-width: 952px) {
  .card-container {
    max-width: 624px;
  }
}

.card {
  position: relative;
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  border-radius: 14px;
  text-align: center;
  display: grid;
  background-image: linear-gradient( 
90deg
, #37434b8f 0%, #9db0bc 36%, #0099ff 100%);
  /* background: #fff; */
  /* width: 280px; */
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.9);
  transition: 0.5s ease;
  margin: 16px;
  min-width: 250px;
}

@media screen and (max-width: 640px) {
  .card {
     grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }

  .card-container {
    grid-template-columns: calc(100% - 32px);
    width: calc(100% - 32px);
  }
}



.card .card-header {
  /* position: absolute; */
  border-radius: 14px;
  top: 0;
  left: 0;
  right: 0;
   padding: 0px 1px;
}
   

.card-text .card-img {
   /* background: #ccc; */
   padding: 15px 0px;
   /* border: 7px solid #ccc; */
   /* box-shadow: 2px 5px 15px rgb(0 0 0 / 90%); */
}

.card-img i {
   
  background: linear-gradient(90deg, #d400ff 0%, #d108a5 36%, #ff006a 100%);
  border-radius: 15px;
}

.card-text h2 {
  margin: 22px;
  margin-bottom: 2px;
  font-size: 17px;
  color: #fff;
}

.card-text h5 {
  margin: 0;
  color: #ffffff;
  font-size: 12px;
  /* text-transform: uppercase; */
  letter-spacing: 2px;
  line-height: 1.3em;
  height: 40px;
}

.card-text p {
  font-weight: 400;
  font-size: 11px;
  color: var(--fore);
  margin: 0px auto;
  /* width: 180px; */
}

.card-text button {
  border-radius: 20px;
  text-transform: uppercase;
  border: none;
  padding: 10px 12px;
  /* width: 180px; */
  font-weight: 700;
  color: white;
  /* margin-top: 20px; */
  margin: 10px;
  background-image: linear-gradient(
    90deg,
    #53616a 0%,
    #2b9fec 36%,
    #54626b 100%
  );
}

.card-stats {
  display: flex;
  justify-content: space-around;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  padding: 4px 16px;
}

.card-stats .stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px 0;
  color: #fff;
}

.card-stats .type {
  font-size: 9px;
  font-weight: 400;
  color: grey;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.main_card_h{
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: -15px;
 } 
 .snap_cl{
 border-left: 8px solid #91999f;
    border-bottom: 10px solid #ffffff;
    border-right: 8px solid #91999e;
    border-top: 10px solid #fff;
    width: 195px;
    height: 200px;
	} 
.card-stats .value {
  font-size: 16px;
  font-weight: 500;
}

.socials i {
  margin-left: 10px;
  font-size: 24px;
  background-clip: text;
  /* background: -webkit-linear-gradient(0deg, #d400ff 0%, #ff006a 100%); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card:hover {
  transform: scale(1.1);
}