.bulkcard {
	box-sizing: border-box;
	width:90%;
	height: 400px;
	background:url(images/bulk.jpg);
	background-size: cover;
	border: 1px solid white;
	box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(6px);
	border-radius: 17px;
	text-align: center;
	cursor: pointer;
	transition: all 0.5s;
	display: flex;
	align-items: center;
	justify-content: center;
	user-select: none;
	font-weight: bolder;
	color: black;
	margin-left: 60px;
	margin-top: 40px;
	font-size: 40px;
  }

  .bulkcard-head{
	height: 100px;
	background: #ffffff5f;
	padding-top: 20px;
	border-radius: 20px;
	padding-left: 20px;
	padding-right: 20px;
  }

  @media (max-width: 768px) {
	.bulkcard{
		height: 300px;
		margin-left: 20px;
	    margin-top: 20px;
	}

	.bulkcard-head{
		height: fit-content;
		background: #ffffff5f;
		padding-top: 20px;
		border-radius: 20px;
		padding-left: 20px;
		padding-right: 20px;
		font-size: 30px;
		width: 80%;
	  }

  }

  .bulk-features{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 30px 50px 30px 10px;
  }



  .bulk-card {
    width: 252px;
    height: 265px;
    background: white;
    border-radius: 30px;
    box-shadow: 15px 15px 30px #bebebe,
               -15px -15px 30px #ffffff;
    transition: 0.2s ease-in-out;
    margin: 30px 0 30px 60px;
  }
  

  @media (max-width: 768px) {
    .bulk-features{
        flex-direction: column;
        margin: 30px 40px 30px 0px;
    }

    .bulk-card{
        margin-left: 40px;
    }
  }

  .bulk-img {
    width: 100%;
    height: 50%;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    background: linear-gradient(#000000, #363636);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 50px;
  }
  
  
  .bulk-save {
    transition: 0.2s ease-in-out;
    border-radius: 10px;
    margin: 20px;
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .bulk-text {
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: space-around;
  }
  
  
  
  
  
  
  
  .bulk-text .h3 {
    font-family: 'Lucida Sans' sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: black;
  }
  
  .bulk-text .p {
    font-family: 'Lucida Sans' sans-serif;
    color: #999999;
    font-size: 13px;
  }
  
  
  
  .bulk-card:hover {
    cursor: pointer;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.1);
  }