.col-d-50 img{
    margin-top:0px;
    width: 100%;
    object-fit:cover;
}

.image-content{
    padding-left: 193px;
}

.circle-outer-container{
    margin-top:70px;
    position:relative;

}

.small-circle{
    position:absolute;
    width:60%;
    aspect-ratio:1/1;
    border-radius: 50%;
    top: 0;
    right:-25%;
    z-index:-1;
    transform: scale(0.1);
    transition: transform 1s ease-in-out; /* Smooth transition for the size change */
}

/* This class will be added by JavaScript */
.grow {
  transform: scale(1); /* Makes the circle 1.5 times larger */
  transform: translateY(-60%) translateX(25%);
}

@media (max-width:425px){
    .image-content{
        padding-left: 0px;
    }
}