.feature-image-section {
    display: flex;
    align-items: center;
}

.feature-image-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.feature-content {
    padding:8% 5%;
    background-color: #13ACB7; /* Adjust this color to match your design */
    color: white;
    position: absolute;
    width: 45%;
    height: 100%;
    opacity:0.9;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.feature-image {
    flex: 1;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    min-height: 100px;
}

/* Adjust text styles as needed */
.feature-content .intro:before {
    content: '';
    background: #8331A7;
    width: 11px;
    height: 11px;
    position: absolute;
    margin-top: 7px;
    margin-left: -13px;
}

.feature-content .intro {
    font-size: 1rem;
    color: #e4e4e4;
    margin-left:15px;
}

.feature-content .title {
    font-size: 2.25rem;
    color:#fff;
    
}

.feature-content .title span {
    color: #fff; /* Adjust this color to match your design */
}

.feature-content .description {
    font-size: 1.125rem;
    color: #ffffff;
}


@media(max-width:991px ) {
    .feature-content .title {
        font-size:1.25rem;
    }
}

@media(max-width:620px ) {
    .feature-content .title {
        font-size:0.75rem;
    }
.feature-content {
    padding:5% 5%;
}

.feature-content .intro {
    margin-bottom: 0.5rem;
}
.feature-content .intro:before {
    margin-top: 4px;
    margin-left: -15px;
}

}