body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-ExtraBold.woff2') format('woff2'),
        url('../fonts/OpenSans-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

.left,
.right{
    min-height: 691px;
}


.left {
    width: 37%;
    max-width: 500px;
    height: 100%;
    float: left;
    position: relative;
    z-index: 1;
    box-shadow: 10px 0px 20px 0 rgba(0,0,0,0.25);
    background: #fff;
}
.left:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:  url(../img/helm-ag-logo.jpg);
    background-position: center center;
    background-repeat: no-repeat;
     -webkit-background-size: contain;
    -moz-background-size: contain ;
    -o-background-size: contain ;
    background-size: contain ;
    z-index: 1;
}
.left:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:  linear-gradient(0,rgba(255, 255, 255, 1) 50%, rgba(6, 95, 93, 1) 50%);
    z-index: -1;
}
.right {
    min-width: calc(100% - 500px);
    width: 63%;
    height: 100%;
    float: right;
    display: flex;
    justify-content: center;
    align-items: end;
    overflow-y: auto;
    background: url(../img/helm-ag-background.jpg) no-repeat center center;
     -webkit-background-size: cover ;
    -moz-background-size: cover ;
    -o-background-size: cover ;
    background-size: cover ;
}

.right .inner{
    margin: 30px auto;
    padding: 30px;
    text-align: center;
}

.right .inner .headline {
    padding: 30px;
    box-shadow: 0px 0px 20px 0 rgba(0,0,0,0.25);
    border-radius: 10px;
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    background: #fff;
    color: #065f5d;
}

.clear{
    clear: both;
}

.iframe{
    width:580px;
    max-width: 100%;
    min-height: 570px;
    height: 100%;
    position: relative;
    margin: auto;
}

.iframe iframe{
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}