body, html
{
}

html {
}

.CSite *, .CSite *:before, .CSite *:after {
    font-family: MetricWeb, sans-serif;

    margin: 0;
    padding: 0;

    pointer-events: none;
    box-sizing: border-box;

    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.CSite {
    position: relative;

    width:100%;
    min-height: 100%;

    background-color: #ffffff;
    /*background-color: #333333;*/

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    overflow-x: hidden;
}

.CSiteBackground {
    position: fixed;

    left: 0px;
    top: 0px;

    width: 100%;
    height: 100%;

    overflow: hidden;
}

.CSiteBackgroundItem {
    position: absolute;

    display: block;
    opacity: 0;

    left: 0px;
    top: 50%;

    transform: translateY(-50%);

    transition-property: opacity;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
}

.CSiteBackgroundItemActive {
    display: block;
    opacity: 1;
}

.CSiteBackgroundItemMap {
     position: relative;
     width: auto;
     height: 100vh;
 }

.CSiteBackgroundItemText {
     position: absolute;

     left: 20px;
     top: calc(20px + 60px);
 }

.CSiteBackgroundItemOverlay {
     position: absolute;

     left: 0px;
     top: 0px;

     width: auto;
     height: 100vh;
 }

.CSiteScreenCollection {
    position: relative;

    width: 100%;
}

.CSiteScreen {
    position: relative;

    width: 100%;
    height: 100vh;
}

.CSiteScreenBlend {
    position: absolute;

    left: 0px;
    top: 0px;

    width: 120vw;
    height: 100%;

    background-color: rgba(0, 0, 0, 0.5);
}

.CSiteScreenHalf {
    height: 50vh !important;
}

.CSiteScreenTextContainer {
    position: fixed;

    opacity: 0;

    left: 0px;
    top: 0px;

    width: 100%;
    height: 100vh;

    transition-property: opacity, transform;
    transition-duration: 0.3s, 0.3s;
    transition-timing-function: ease, ease;
}

.CSiteCenterRow {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    text-align: center;
}

.CSiteRightRow {
    display: flex;
    flex-direction: column;

    align-items: flex-end;
    justify-content: center;

    width: 100%;
    height: 100%;

    text-align: center;
}

.CSiteRowItem {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
    width: 50vw;
}

.CSiteTextPanel {
    position: relative;

    max-width: 700px;

    background-color: rgba(255, 255, 255, 0.7);
    padding: 50px;

    text-align: left;
}

.CBorder {
    border: 1px solid #2E6E77;
}

.CSite p {
    font-size: 18px;
    font-weight: normal;
    line-height: 1.4;

    color: #243746;
}

.CSite p a {
    pointer-events: all;
}

.CSite h1 {
    font-size: 80px;
    font-weight: normal;
    line-height: 1.2;

    color: #243746;

    margin-bottom: 80px !important;
}

.CSite h2 {
    font-size: 20px;
    font-weight: normal;
    line-height: 1.2;
}

.CSite h3 {
    position: relative;
    font-size: 26px;
    font-weight: normal;
    line-height: 1.2;

    color: #243746;

    margin-bottom: 40px !important;
}

.CSite h3::after {

    content: "";
    position: absolute;

    display: inline-block;

    left: 0px;
    bottom: -10px;

    width: 100px;
    height: 1px;

    background-color: #EB0337;
}

.CSite h4 {
    position: relative;
    font-size: 26px;
    font-weight: normal;
    line-height: 1.2;

    color: #243746;

    margin-bottom: 40px !important;
}

.CSite h5 {
    position: relative;
    font-size: 17px;
    font-weight: normal;
    line-height: 1.2;

    color: #253746;

    margin-bottom: 20px !important;
}

.CSite h5::after {

    content: "";
    position: absolute;

    display: inline-block;

    left: 0px;
    bottom: -10px;

    width: 100px;
    height: 1px;

    background-color: #253746;
}

.CTooltipPanel p, .CTooltipPanel2 p {
    position: relative;
    font-size: 15px;
    font-weight: normal;
    line-height: 1.2;

    color: #253746;
}

.CSiteFontPanel {

    position: relative;

    background-color: rgba(255, 255, 255, 0.7);

    padding: 20px;

    width: 100%;
    max-width: 600px;
}

.CHeader {
    position: fixed;

    left: 0px;
    top: 60px;
    width: 100%;
}

.CArticleButton {
    position: absolute;

    pointer-events: all;

    right: 20px;
    top: 25px;

    width: 170px;
    height: 30px;

    background-color: #ff1443;

    cursor: pointer;

    transition-property: background-color;
    transition-duration: 0.3s;
    transition-timing-function: ease;

    color: #ffffff;
    font-size: 14px;
    text-align: center;
    line-height: 30px;
}

.CArticleButton:hover {
    background-color: #ff869e;
}

.CScrollProgress {
    position: absolute;

    left: 0px;
    top: 0px;
    width: 100%;
    height: 5px;
    background-color: #D9E9F3;
}

.CScrollProgressLine {
    position: absolute;

    left: 0px;
    top: 0px;
    width: 0%;
    height: 5px;

    background-color: #007079;

    transition-property: width;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

.CHotspot {
    position: absolute;

    left: 0px;
    top: 0px;

    display: block;

    pointer-events: all;
    cursor: pointer;

    transform: scale(1.5);
}

.CHotspot svg {
    position: absolute;

    width: 20px;
    height: 16px;

    fill: #243746;

    transform: translateX(-50%) translateY(-50%);
}

.CHotspotArea {
    position: absolute;

    left: -14px;
    top: -14px;

    display: block;

    width: 28px;
    height: 28px;

    border-radius: 14px;

    pointer-events: all;
}

.CHotspot:hover > svg {
    fill: #eb0337;
}

.CHotspot:hover > .CHotspotRing1 {
   border: 0px solid #243746;
   background-color: rgba(255, 18, 67, 0.3);
}

.CHotspot:hover > .CHotspotRing2 {
    border: 0px solid #243746;
    background-color: rgba(255, 18, 67, 0.27);
}

.CHotspot:hover > .CHotspotRing3 {
    border: 0px solid #243746;
    background-color: rgba(255, 18, 67, 1);
}

.CHotspotRing1 {
    position: absolute;

    left: -34px;
    top: -34px;

    display: block;

    width: 68px;
    height: 68px;

    border-radius: 34px;

    border: 1px solid #243746;

    transition-property: background-color;
    transition-duration: 0.5s;
    transition-timing-function: ease;

    animation-name: animation_hotspot1;
    animation-iteration-count: infinite;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
}
@keyframes animation_hotspot1 {
    0% 		{ opacity: 1; transform: scale(1); }
    50% 	{ opacity: 1; transform: scale(1.2); }
    100% 	{ opacity: 1; transform: scale(1); }
}
@keyframes animation_hotspot2 {
    0% 		{ opacity: 1; transform: scale(1); }
    50% 	{ opacity: 1; transform: scale(1.1); }
    100% 	{ opacity: 1; transform: scale(1); }
}

.CHotspotRing2 {
    position: absolute;

    left: -25px;
    top: -25px;

    display: block;

    width: 50px;
    height: 50px;

    border-radius: 25px;

    border: 1px solid #243746;

    transition-property: background-color;
    transition-duration: 0.5s;
    transition-timing-function: ease;

    animation-name: animation_hotspot2;
    animation-iteration-count: infinite;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
}

.CHotspotRing3 {
    position: absolute;

    left: -14px;
    top: -14px;

    display: block;

    width: 28px;
    height: 28px;

    border-radius: 14px;

    background-color: #243746;

    text-align: center;
    line-height: 28px;
    color: #ffffff;

    transition-property: background-color;
    transition-duration: 0.5s;
    transition-timing-function: ease;

    pointer-events: all;
}

.CTooltip {
    position: fixed;

    left: 0px;
    top: 0px;

    opacity: 0;

    transition-property: opacity;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

.CTooltipPanel {
    position: relative;

    left: 10px;
    top: 10px;

    width: 100%;
    max-width: 350px;

    padding: 20px;

    background-color: #ffffff;

    border: 1px solid #EB384A;

    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px;
}

.CTooltip2 {
    position: absolute;

    opacity: 1;

    transition-property: opacity;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

.CTooltipPanel2 {
    position: relative;

    left: 10px;
    top: 10px;

    width: 100%;
    max-width: 300px;

    padding: 20px;

    background-color: #ffffff;

    border: 1px solid #EB384A;

    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px;
}

.CTooltipPanelEcke {
    position: absolute;

    left: 24px;
    top: -10px;

    height: 11px;
}

.CTooltipPanelEckeDown {
    position: absolute;

    left: 24px;
    bottom: -10px;

    height: 11px;

    transform: rotate(180deg);
}

.CTooltipPanelEckeLeftBottom {
    position: absolute;

    left: -15px;
    bottom: 20px;

    height: 11px;

    transform: rotate(-90deg);
}

.CScrollHint {
    position: fixed;

    left: 50%;
    bottom: 50px;
    text-align: center;

    transform: translateX(-50%);
}

.CScrollHint svg {
    display: inline-block;
    width: 40px;
}

.CTooltipCloseButton {
    position: absolute;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    pointer-events: all;
    cursor: pointer;

    right: 0px;
    top: 0px;

    width: 30px;
    height: 30px;

    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

.CTooltipCloseButton:hover {
    transform: rotate(90deg);
}

.CTooltipCloseButton svg {
    position: relative;

    display: inline-block;

    width: 15px;
    height: 15px;

    fill: #243746;
}

.CSpacer {
    position: relative;

    width:100%;
    height: 20px;
}

@media (min-aspect-ratio: 16/9) {

    /*
    .CSiteBackgroundItemMap {
        width: 100vw;
        height: auto;
    }
    .CSiteBackgroundItemOverlay {
        width: 100vw;
        height: auto;
    }

     */
}

@media only screen
and (max-width: 1800px)
{
    .CHotspot {
        transform: scale(1.0);
    }


    .CSite p {
        font-size: 14px;
    }

    .CSite h1 {
        font-size: 80px;

        margin-bottom: 80px !important;
    }

    .CSite h2 {
        font-size: 14px;
    }

    .CSite h3 {
        font-size: 16px;

        margin-bottom: 40px !important;
    }

    .CSite h5 {
        font-size: 17px;

        margin-bottom: 20px !important;
    }

    .CScrollHint {
        bottom: 20px;
    }

    .CScrollHint svg {
        width: 20px;
    }


    .CTooltipPanel p, .CTooltipPanel2 p {
        font-size: 12px;
    }
}

@media only screen
and (max-width: 1500px)
{
    .CHotspot {
        transform: scale(1.0);
    }


    .CSite p {
        font-size: 12px;
    }

    .CSite h1 {
        font-size: 80px;

        margin-bottom: 80px !important;
    }

    .CSite h2 {
        font-size: 14px;
    }

    .CSite h3 {
        font-size: 16px;

        margin-bottom: 40px !important;
    }

    .CSite h4 {
        font-size: 18px;

        margin-bottom: 40px !important;
    }

    .CSite h5 {
        font-size: 14px;

        margin-bottom: 20px !important;
    }

    .CScrollHint {
        bottom: 20px;
    }

    .CScrollHint svg {
        width: 20px;
    }


    .CTooltipPanel p, .CTooltipPanel2 p {
        font-size: 12px;
    }
}



@media only screen
and (max-width: 500px)
{

    .CSiteBackgroundItem {

        left: -20vw;
        top: 40%;

        transform: translateY(-50%);

        transition-property: opacity;
        transition-duration: 0.3s;
        transition-timing-function: ease-in-out;
    }

    .CSiteTextPanel {
        max-width: 600px;
        padding: 20px;
    }

    .CSiteRightRow {
        align-items: center;
        justify-content: end;
    }

    .CSiteRowItem {
        width: 90vw;
        margin-bottom: 10vh;
    }

    .CSite p {
        font-size: 8px;
        line-height: 1;
    }

    .CSite h1 {
        font-size: 32px;

        margin-bottom: 40px !important;
    }

    .CSite h2 {
        font-size: 10px;
    }

    .CSite h3 {
        font-size: 14px;

        margin-bottom: 20px !important;
    }

    .CSite h4 {
        font-size: 14px;

        margin-bottom: 20px !important;
    }

    .CSite h5 {
        font-size: 10px;
    }


    .CTooltipPanel p, .CTooltipPanel2 p {
        font-size: 8px;
    }
}