.cwrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
max-width: 1100px;
}

.card {
	width: 100%;
	position: relative;
	justify-content: center;
	align-items: center;
	display: flex;
	flex-direction: column;
	word-wrap: break-word;
	background-color: white;
	background-clip: border-box;
	border-width: 0px;
	border-style: none;
	border-radius: 0.25rem;
	box-shadow: 0 5px 10px #ccc;
	text-decoration: none;
	margin-top: 12px;
}

.card-image {
	position: absolute;
	top: -1rem;
	width: 90%;
	height: 11rem;
	box-sizing: border-box;
	border-width: 5px;
	border-style: solid;
	border-color: rgb(254, 254, 254);
	border-radius: 5px;
	object-fit: cover;
}


.card:hover .card-image {
	border-width: 5px;
	border-style: solid;
	border-color: orange;
	transition: .5s;
}


.card-box {
	padding: 11rem 1rem 1rem;
	color: rgb(102, 102, 102);
}

.card-title {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: bold;

}

.card-description {
    margin-bottom: 0.5rem;
    line-height: 1.5;
text-align: left;
}

@media screen and (min-width: 768px) {
 
  .card {
    width: 31%;
  }


}