@media screen and (max-width: 720px) {

    .old, .new {
        height: 60%;
        transition: height 0.4s ease;
    }

    .old {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 75%, 0% 100%);
        clip-path: polygon(0 0, 100% 0, 100% 75%, 0% 100%);
        left: 0;
        top: 0;
        right: 0;
        
    }

    .old > img {
        content: url("img/final2022_2.webp");
    }

    .new {
        -webkit-clip-path: polygon(0 25%, 100% 0, 100% 100%, 0% 100%);
        clip-path: polygon(0 25%, 100% 0, 100% 100%, 0% 100%);
        left: 0;
        bottom: 0;
        right: 0;
    }

    .old:hover ~ .new{
        height: 45%;
    }

    .old:hover, .new:hover {
        height: 75%;
    }

    .titleHeader {
        height: calc(2.5em + .5em);
        line-height: 1;
        font-size: 2em;
    }
}

@media screen and (max-height: 390px) {
    .new > .contentText {
        left: 10%;
    }
}