
.el-features-section{
    position: relative;
}
.el-features-inner{
    background-color: #c3c8ff90;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 100px 30px;
    align-items: flex-end;
    border-radius: 10px;
    width: 100%;
    display: grid;
    grid-template-columns: 55% 1fr;
    grid-gap: 30px;
}
@media (max-width: 992px){
    .el-features-inner{
        grid-template-columns: 1fr;
    }
}
.el-features-section .anim-illustration {
    position: absolute;
    left: auto;
    right: 25%;
    top: -5%;
}

.el-features-section .anim-illustration.bottom {
    position: absolute;
    width: 100px;
    left: auto;
    right: 40%;
    top: auto;
    bottom: -7%;
}

.el-feature-items {
    --softgen-feature-circle-bd: rgba(75, 132, 255, 0.3);
    --softgen-feature-count-color: #fff;
    --softgen-line-color: #bbb;
    position: relative;
    max-width: 370px;
    margin-top: 40px;
}

.el-feature-item {
    position: relative;
    padding-left: 70px;
    
    display: flex;
}

.el-feature-items .el-feature-item:not(:last-of-type) {
    padding-bottom: 25px;
}

.el-feature-count {
    background: #fff;
    color: var(--softgen-dark, #110718);
    font-family: var(--softgen-secondary-font, "DM Sans");
    font-size: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.3);
    transition-duration: 0.4s;
}

.el-feature-line {
    background-image: repeating-linear-gradient(to right, var(--softgen-line-color) 0, var(--softgen-line-color) 4px, transparent 0, transparent 100%), repeating-linear-gradient(to right, var(--softgen-line-color) 0, var(--softgen-line-color) 4px, transparent 0, transparent 100%), repeating-linear-gradient(to bottom, var(--softgen-line-color) 0, var(--softgen-line-color) 4px, transparent 0, transparent 100%), repeating-linear-gradient(to bottom, var(--softgen-line-color) 0, var(--softgen-line-color) 4px, transparent 0, transparent 100%);
    background-position: left top, left bottom, left top, right top;
    background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
    background-size: 8px 1px, 8px 1px, 1px 8px, 1px 8px;
    width: 2px;
    height: 100%;
    margin-left: 0;
    position: absolute;
    left: 15px;
    z-index: -1;
}

.el-feature-line-progress {
    background-color: var(--softgen-primary-color, #4b83ff);
    height: 0%;
    width: 2px;
    position: absolute;
    left: 15px;
    top: 0;
    transition-duration: 0.4s;
}

.el-feature-info h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.el-feature-items .el-feature-item:last-child p {
    margin: 0;
}

/* Images */

.el-features-img-holder{
    position: relative;
}

.el-features-img-holder .music {
    width: 50px;
    height: auto;
    position: absolute;
    left: 25%;
    top: -10%;
}

.el-features-img-holder .music:nth-child(3) {
    width: 15px;
    left: auto;
    right: 25%;
    top: -10%;
    animation-delay: 300ms;
}

.el-features-img-holder .music:nth-child(4) {
    width: 60px;
    left: auto;
    right: 12%;
    top: 18%;
    animation-delay: 500ms;
}

.el-features-img-holder .mockup {
    position: absolute;
    left: -10%;
    top: 25%;
}

@media (max-width: 992px){
    .el-features-img-holder .mockup {
        left: 5%;
    }
    .el-features-img-holder .music:nth-child(3) {
        top: 5%;
    }
    .el-features-img-holder .music:nth-child(4) {
        right: 10%;
        top: 18%;
    }
    .el-features-img-holder .music {
        top: 5%;
    }
}