.description .full-container {
    --bs-gutter-x: 0;
}

.description .description-background {
    background-color: #c6c6f0;
}

.description .block-separator {
    position: absolute;
    top: -96px;
    height: 100px;
    min-height: 100px;
    max-height: 100px;
    background: url("./split-desc-mobile.png") no-repeat center bottom;
    background-size: auto 100px;
}

.description .text-desc {
    font-size: 1.2rem;
    line-height: 1.8;
}

.description .text-desc .list-group {
    margin-bottom: 4rem;
}

.description .text-desc .list-group-item {
    --bs-list-group-bg: #e2e2fa;
    --bs-list-group-border-color: #c6c6f0;
    position: relative;
    padding-left: 3rem;
    line-height: 1.3;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

.description .text-desc .list-group-item .icon {
    display: block;
    position: absolute;
    left: 1.2rem;
    top: calc(50% - 0.8rem);
}

.description .wavelines {
    width: 100%;
    height: auto;
    overflow: visible;
}

.description polyline {
    --_height: 15;
    --_count: 3;
    --_y: (var(--_height) * var(--i) / var(--_count)) * 1px;
    --_offset: (var(--_height) / var(--_count)) * 0.5px;
    fill: none;
    stroke: #483e8ca0;
    stroke-linecap: round;
    stroke-width: 1.2;
    transform-box: fill-box;
    transform-origin: center;
    translate: 0 calc(var(--_y) - var(--_offset));
}

@media (min-width: 640px) {
    .description polyline {
        --_height: 8;
        --_count: 3;
        --_y: (var(--_height) * var(--i) / var(--_count)) * 1px;
        --_offset: (var(--_height) / var(--_count)) * 0.5px;
        stroke-width: 0.5;
        translate: 0 calc(var(--_y) - var(--_offset));
    }
}

@media (min-width: 1024px) {
    .description .block-separator {
        top: -116px;
        height: 120px;
        min-height: 120px;
        max-height: 120px;
        background: url("./split-desc.png") no-repeat center bottom;
        background-size: auto 120px;
    }
}

@media (min-width: 1200px) {
    .description .text-desc .list-group-item .icon {
        top: 0.9rem;
    }
}