File: /mnt/data/dreamssalon-wp-market/wp-content/themes/dreamsalon/assets/scss/pages/_pricing.scss
/*============================
38. Pricing
============================*/
@use "../utils/mixins" as *;
@use '../variables' as *;
.pricing-item {
margin-bottom: 20px;
.pricing-item-one {
.pricing-item-list {
border-radius: $border-radius-lg;
h5 {
padding-bottom: 20px;
margin-bottom: 20px;
border-bottom: 1px dashed $gray-100;
}
.pricing {
border-bottom: 1px dashed $gray-100;
.price {
font-size: 32px;
font-weight: $font-weight-bold;
@include respond-below(lg) {
font-size: 28px;
}
}
.badge {
padding: 7px 8px;
font-size: 14px;
font-weight: $font-weight-medium;
}
}
}
}
}
// Statistics section five
.statistics-section-five {
background: url(../img/home-5/bg/statistics-bg.jpg) no-repeat center center;
background-size: cover;
.stat-item {
text-align: center;
position: relative;
&:before {
content: '';
position: absolute;
bottom: 7px;
left: 0;
width: 0%;
height: 5px;
background: $primary-linear-gradient;
margin: auto;
right: 0;
transition: all 0.3s ease-in-out;
}
h3 {
font-size: 52px;
font-weight: $font-weight-bold;
color: $darkmode-white;
}
}
&:hover {
.stat-item {
&:before {
width: 43%;
}
}
}
}