.sale {
  padding: 50px 0;
  background: #f5f5f5;
}

/* ===== CARD ===== */
.sale-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.sale-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.sale-content {
  position: absolute;
  top: 25px;
  left: 25px;
  color: #fff;
}

.sale-title {
	font-size: 26px;
	margin-bottom: 10px;
	font-weight: 600;
}

.sale-link {
	font-size: 14px;
	text-decoration: none;
	color: #fff;
	border-bottom: 1px solid #fff;
	font-weight: 600;
}

/* BADGE */
.sale-badge {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 25px;
	border-top-left-radius: 60px;
	text-align: center;
	background-image: url('https://www.myeventzpro.com/public/MYEVENTZPRO/themeaB9xY12z/assets/images/about/badge.svg');
	width: 190px;
	height: 173px;
	display: flex;
	align-items: end;
	justify-content: end;
	flex-direction: column;
}

.sale-percent {
  display: block;
  font-size: 32px;
  font-weight: bold;
  color: #e25430;
}

.sale-text {
  font-size: 14px;
}

/* ===== CENTER ===== */
.sale-center {
	background: #000;
	border-radius: 20px;
	padding: 60px 20px;
	text-align: center;
	color: var(--color-1);
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.sale-heading {
	font-size: 40px;
	line-height: 1.3;
	margin-bottom: 20px;
	font-family: var(--font-03);
	font-weight: 600;
}

.sale-btn {
	display: inline-block;
	padding: 12px 30px;
	background: #fff;
	color: #e25430;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	width: max-content;
	margin: 0 auto;
}

.sale-subtext {
  margin-top: 25px;
  font-size: 14px;
  letter-spacing: 1px;
}

/* MOBILE */
@media (max-width: 991px) {
  .sale-center {
    padding: 40px 20px;
  }
}