/* MAIN 
------------------------------------------------------------------------ */
/* Landing Section
-----------------------------------------*/

/******************
**** LANDSCAPE ****
*******************/
@media (orientation: landscape) {
    main .landing-section .image-wrapper img {
        transform: translateY(-12vw);
    }
}
/******************
***** MEDIUM ******
*******************/
@media (max-width: 991px) {
    main .landing-section .image-wrapper img {
        transform: translateY(0);
    }
}


/* Projects
-----------------------------------------*/

/* Studentisches Wohnen */
main .project-image.stud-wohnen .image-wrapper img.preview-image {
    transform: translateY(-3vw);
}
/******************
***** MEDIUM ******
*******************/
@media (max-width: 991px) {
    main .project-image.stud-wohnen .image-wrapper img.preview-image {
        transform: translateY(-5vw);
    }
}
/******************
*** EXTRA SMALL ***
*******************/
@media (max-width: 575px) {
    main .project-image.stud-wohnen .image-wrapper img.preview-image {
        transform: translateY(0);
        transform: translateX(-3%);
    }    
}