/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
.container-core-main{
display: flex;
 
}
.container-core {
 display: flex;
  width: 1340px;
  flex-wrap:inherit;
  justify-content: space-evenly;
}
.card {
  margin: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  width: 400px;
	
}
.card-header img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  min-height: 250px;
}
.card-body h4 {
	font-size: 14px !important;
	font-family: "Poppins" , sans-serif;
}
.card-body p {
  font-size: 13px;
	font-family: "Poppins" , sans-serif;
  margin: 0 0 40px;
}

