HEX
Server: nginx/1.24.0
System: Linux DGT-WORDPRESS-VM-SERVER 6.14.0-1014-azure #14~24.04.1-Ubuntu SMP Fri Oct 3 20:52:11 UTC 2025 x86_64
User: ubuntu (1000)
PHP: 8.4.12
Disabled: NONE
Upload Files
File: /mnt/data/dreamssalon-wp-market/wp-content/themes/dreamsalon/assets/scss/pages/_offer.scss
/*============================
    28. Offer
============================*/

@use "../utils/mixins" as *;
@use '../variables' as *;

.offer-section {
    background: $darkmode-dark;
    .offer-bg1 {
        right: 10px;
        top: -10%;
        animation: sparkleFloat 5s ease-in-out infinite;
    }
    .offer-bg2 {
        left: 2%;
        bottom: 10%;
        animation: sparkleFloat 5s ease-in-out infinite;
    }
}
.offer-item {
    .offer-icon {
        width: 90px;
        aspect-ratio: 1 / 1;
        background: $pink-100;
        clip-path: polygon(
        50% 0%, 93% 25%, 93% 75%,
        50% 100%, 7% 75%, 7% 25%
        );
        &.offer-icon-two {
            background: $teal-100;
        }
        &.offer-icon-three {
            background: $purple-100;
        }
    }
    .price {
        color: $heading-color;
    }
}

// offer item
.offer-section-five {
    background: transparent;
    .offer-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid $border-color;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .element-one {
        bottom: 0;
        left: -315px;
    }
}