cd ../../../../../../../
Also another useful navigation tip is if for example lets say you keep switching from a directory (call it A) to another (call it B) that’s 7 directories up, in your case.
So if you’re in directory A:
A> cd ../../../../../../../
B> // Now you're in directory B and want to go back to A
B> cd -
That will move right back to directory A. - expands to the previous directory you were in.