html, body {height: 100%; /* IMPORTANT!!! Stretches viewport to 100% */}
#wrapper {min-height: 100%; /* Minimum height for a modern browser */height:auto !important; /* Important rule for a modern browser */height:100%; /* Minimum height for Internet Explorer */overflow: hidden !important; /* Firefox scroll-bar */}
.Contact {display: flex; /* full width by default */min-height: 100vh; /* use full height of viewport, at a minimum */}
.left {flex: 0 0 60%;background-color: tomato;}
.right {flex: 1;background-color: pink;}
body { margin: 0; } /* remove default margins */
<div class="Contact"><section class="left"><div class=""><h1>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</h1></div></section><section class="right"><img /></section></div>
<!--vw: hundredths of the viewport width.vh: hundredths of the viewport height.vmin: hundredths of whichever is smaller, the viewport width or height.vmax: hundredths of whichever is larger, the viewport width or height.--><div class="wrapper"><div class="left">Left</div><div class="right">Right</div></div>