#about{
    position: relative;
}
#about::after {
    content: '';
    width: 10vw;
    height: 10vw;
    border-radius: 1000px;
    position: absolute;
    right: 68px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    filter: blur(50px);
    opacity: .6;
}

#about::before {
    content: '';
    width: 7vw;
    height: 7vw;
    border-radius: 1000px;
    position: absolute;
    left: -45px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    filter: blur(20px);
    opacity: .6;
}

#about .row{
    flex-direction: row-reverse;
}

#about .row .col-lg-6 img{
    box-shadow: 1px 1px 10px #00000024;
    border-radius: 10px;
}