/* Write your css codes here */
.coupon-card {
    width: 100%;
    border: 1px solid hsl(var(--black)/0.05);
    border-radius: 12px;
    padding: 17px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: 0.2s ease-in-out;
}

.coupon-card:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px) scale(1.02);
    transition: 0.3s ease-in-out;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.coupon-card .card-ribbon-wrap {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.coupon-card .fav-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    height: 26px;
    width: 26px;
    background: hsl(var(--base)/0.08);
}

.coupon-card .fav-cta i {
    color: hsl(var(--base));
}

.coupon-card .ex-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 4px 7px;
    border-radius: 4px;
    background: hsl(var(--yellow)/.2);
}

.coupon-card .ex-cta p {
    font-size: 14px;
}

.coupon-card .card-thumb {
    margin-bottom: 16px;
}



.coupon-card .card-content-wrap {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 16px;
	padding: 17px;
	background:rgba(242, 242, 255, 0.48);
	border-radius: 12px;
}

.coupon-card .card-content-wrap .card-title {
    font-size: 16px;
    font-weight: 600;
}

.coupon-card .card-content-wrap .card-action {
    font-size: 14px;
    font-weight: 600;
}

.coupon-card-2 {
    width: 100%;
    border-radius: 12px;
    background-color: hsl(var(--white));
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    gap: 16px;
    transition: 0.2s ease-in-out;
}

.coupon-card-2:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px) scale(1.02);
    transition: 0.3s ease-in-out;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.coupon-card-2 .icon-wrap {
    width: 64px;
    height: 64px;
    background: hsl(var(--base)/0.08);
    border-radius: 14px;
    margin-bottom: 8px;
}

.coupon-card-2 .title-cat {
	font-size: 20px;
	font-weight: 700;
	line-height: 22px;
	color: hsl(var(--black));
    transition: .3s all;
}
.coupon-card-2 .title-cat:hover {
	color: hsl(var(--base));
}

.coupon-card-2 span {
    color: hsl(var(--black)/0.6);
}

.coupon-card-3 {
    width: 100%;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    transition: 0.2s ease-in-out;
    border: 1px solid hsl(var(--black)/0.05);
}

.coupon-card-3:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px) scale(1.02);
    transition: 0.3s ease-in-out;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.coupon-card-3 .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
}

.coupon-card-3 span {
    width: 38px;
    height: 3px;
    background-color: hsl(var(--black)/0.06);
}

.card-bg {
    background-color: hsl(var(--base)/0.05) !important;
}
.banner-section .banner-thumb .content h1 {
  color: #b8b08d !important;
  padding: 0;
  font-size: 140px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  width: 70%;
  line-height: 128px;
}
.splitting .word {
  color: #b8b08d !important;
    --word-percent: calc(var(--word-index) / var(--word-total));
    --line-percent: calc(var(--line-index) / var(--line-total));
}