/* roboto-condensed-300 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/roboto-condensed-v27-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* roboto-condensed-600 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/roboto-condensed-v27-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

html {
    font: normal 20px/1.5 "Roboto Condensed", sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    overflow-y: scroll;
    color: #FFF6EA;
    font-weight: 300;
}
html,
body {
    height: 100%;
    min-height: 100%;
}
body { margin: 0; }
a { background-color: transparent; }
a:active,
a:hover { outline: 0; }
a {
    color: #E6007E;
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    color: #E6007E;
    text-decoration: underline;
}
img {
    box-sizing: border-box;
    border: 0;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}
.page-container {
    position: relative;
    display: table;
    width: 100%;
    min-height: 100%;
    table-layout: fixed;
    background-color: #41173b;
}
.page-content-wrapper {
    box-sizing: border-box;
    display: table-row;
}
.page-content-wrapper { height: 100%; }
.page-content {
    margin: auto;
    padding: 0;
    display: flex;
}
.page-content-left {
    width: calc(100% / 3);
    background: url(../img/Bieselin-GoldnRush.jpg) no-repeat center center;
    background-size: cover;
    height: 100vh;
    position: relative;
    transition: transform 0.5s ease;
    transform-origin: center; 
}

.page-content-left:hover {
    transform: scale(1.02);
  }

.page-content-right {
    width: calc((100% / 3) * 2 );
    height: 100vh;
    /*max-width: 900px;*/
    background: url(../img/GR_Linien.svg) no-repeat top left;
    background-size: contain;
    overflow: scroll;
}
.page-content-right-inner {
    padding: 5vw 10vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 10vw);
}
.page-content-right img {
    margin-bottom: 50px;
    width: 100%;
    max-width: 640px;
}
.page-content-text {
    max-width: 740px;
}

.intro {
    font-size: 26px;
}

.button {
    /*background-color: #f2a34f;*/
    background-color: #f5830a;
    padding: 10px 40px;
    color: #41173b;
    border-radius: 50px;
    font-size: 18px;
    margin-top: 30px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color 0.5s ease;
}

.button:hover {
    background-color: #d66e00;
    color: #41173b;
    text-decoration: none;
}

.fulllink {
    position: absolute;
    width: 100%;
    height: 100%;
}

@media (max-width: 480px) {
    html {
        font: normal 16px/1.5 "Roboto Condensed", sans-serif;
    }
    .page-content {
        flex-direction: column;
    }
    .page-content-left {
        width: 100%;
        height: 45vh;
    }
    .page-content-right { 
        padding-top: 10vw;
        width: calc( 100% - 20vw );
        height: inherit;
        min-height: 55vh;
        padding-bottom: 20vw;
    }
    .page-content-right img {
        max-width: 100%;
        margin-bottom: 30px;
    }
    .page-content-text {
        max-width: 100%;
    }
    .intro {
        font-size: 21px;
    }
}