.blue-dots {
    position: relative;
} 
.blue-dots::after {
    position: absolute;
    content: '';
    background: #0275E1;
    width: 10px;
    left: 5px;
    height: 10px;
    bottom: 14px;
    color: #0275E1;
    border-radius: 50px;
}   
.empower-banner {
    display: flex;
    column-gap: 128px;
    align-items: center;
}
.empower-banner .col-left {
    width: 39%;
}
.empower-banner .col-right {
    width: 61%;
}
@media(max-width: 1024px){
.empower-banner {
    column-gap: 60px;
}  
.blue-dots::after {
    width: 8px;
    height: 8px;
} 
}
@media(max-width: 767px){
.empower-banner {
    row-gap: 40px;
   flex-wrap: wrap;
} 
.empower-banner .col-right, .empower-banner .col-left  {
    width: 100%;
}  
}