#cardz .wrapper {
  max-width: 1210px;
  margin: 0px auto;
}
#cardz .flex {
  display: flex;
  flex-wrap: wrap;
}
#cardz .card {
  position: relative;
  padding: 10px;
  max-width: fit-content;
  background: #F8F4F4;
  border: 1px solid #FFFFFF;
  box-shadow: 0px 16px 40px rgb(0 0 0 / 25%);
  border-radius: 20px;
  margin: 20px;
  font-size: 18px;
  font-weight: 500;
}
#cardz .card img {
  max-width: 340px;
  display: block;
  margin: 0px auto;
  transition: .5s;
  transform: scale(1);
  position: relative;
  left: 0px;
}
#cardz .card:hover img {
  transition: .5s;
  transform: scale(1.1);
  position: relative;
  left: -90px;
}
#cardz .card h3 {
  max-width: 340px;
  position: absolute;
  right: 20px;
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
  color: #E62724;
  margin-top: 10px;
}
#cardz .card h4 {
  max-width: 340px;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  color: #747272;
  margin-bottom: 0px;
}
#cardz .card h5 {
  max-width: 340px;
}
#cardz .card h6 {
  max-width: 340px;
}
#cardz .card a {
  background: #419B3F;
  border: 2px solid #FFFFFF;
  box-sizing: border-box;
  box-shadow: 0px 5px 12px rgb(0 0 0 / 50%);
  color: white;
  padding: 15px 25px;
  border-radius: 29px;
}
#cardz .card button {
  max-width: 340px;
  background: #F8F4F4;
  border: 2px solid #005755;
  box-sizing: border-box;
  box-shadow: 0px 5px 12px rgb(0 0 0 / 50%);
  border-radius: 38px;
  font-weight: normal;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  color: #005755;
  padding: 15px 50px;
}
#cardz .card-text-more {
  display: none;
}
#cardz .btns {
  justify-content: space-around;
  gap: 10px;
}
#cardz .card-open .card-top {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: flex-start;
}
#cardz .card-open {
  display: inline-block;
}
#cardz .card-open .card-text-more {
  display: inline-block;
}
#cardz .card-text-more {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #646464;
  margin-bottom: 20px;
}
#cardz .card-open .btns {
  justify-content: flex-end;
  gap: 10px;
}
#cardz .top-flex {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 20px;
}
#cardz .top-flex .btns {
  justify-content: flex-end;
}
.best-price {
  background: #005755;
  border-radius: 13.1395px;
  text-align: center;
  color: white;
  display: inline-block;
  padding: 5px 15px;
  font-size: 14px;
  position: absolute;
  top: -28px;
  right: 10px;
}
.exk {
  background: #c11919;
  border-radius: 13.1395px;
  text-align: center;
  color: white;
  display: inline-block;
  padding: 5px 15px;
  font-size: 14px;
  position: absolute;
  top: -28px;
  right: 10px;
}
@media (max-width: 800px)  {
  #cardz .top-flex {
	flex-wrap: wrap;
  }
}

#cardz .card button:after {
  transition: .5s;
  content: "Новьё!"; /* Добавляемый текст */ 
  color: #333; /* Цвет текста */ 
  background-color: #fc0; /* Цвет фона */ 
  font-size: 10%; /* Размер шрифта */ 
  padding: 2px; /* Поля вокруг текста */ }


#cardz .card button:hover:after {
  transition: .5s;
  content: "Новьё!"; /* Добавляемый текст */ 
  color: #333; /* Цвет текста */ 
  background-color: #fc0; /* Цвет фона */ 
  font-size: 90%; /* Размер шрифта */ 
  padding: 2px; /* Поля вокруг текста */ }