.therapist-container {
    position: relative;
    width: 400px;
    height: 600px;
}

.therapist-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.therapist-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.therapist-image.active {
    opacity: 1;
}