/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
  
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  overflow-y: scroll;
}
.card-row {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  margin-top: 0px;
  max-width: 1500px;
}


.with-text {
  display: grid;
  grid-template-columns: 330px;
  grid-template-rows: 210px 80px 220px;
  grid-template-areas: "image" "title" "text";
}
.no-text {
  display: grid;
  grid-template-columns: 330px;
  grid-template-rows: 210px 300px;
  grid-template-areas: "image" "title-no-text";
}

.card {
   
  font-family: Poppins;
  color: black;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
  background: white;
  margin: 15px;
  
  transition: 0.5s ease;
  cursor: pointer;
  
  @media max-width: 
}

.card-image {
  grid-area: image;
  background-color: red;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-size: cover;
}
.card-images {
  height: 210px;
  width: 330px;
  background-color: red;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.card-text {
  grid-area: text;
  display: flex;
  align-items: top;
  justify-content: center;
  margin-top: 20px;
}

.card-title {
  grid-area: title;
  display: flex;
  align-items: center;
  justify-content: center; 
  color: Black;
  margin-top: 2rem;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
}
.card-title-no-text {
  grid-area: title-no-text;
  display: flex;
  align-items: center;
  justify-content: center; 
  color: Black;
  
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
}
.card-text p {
  color: grey;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  line-height: 1.3rem;
}


.card:hover {
  transform: scale(1.15);
  box-shadow: 0px 0px 15px rgb(0,0,0,0.1);
}