@import url("https://use.typekit.net/nlh4zsy.css");
@import 'normalize.css';

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

#fitParsedBody {
    overflow-x: hidden;
}

/***/

:root {
    --site-border: 20vw;
    --site-center-gap: 20px;
    --text-border: 72px;
    --text2-border: 10vw;
    --site-header-height: 60px;
    --site-content-width: 50vw;
    --site-image-border: 20px;
    --content-viewport-height: calc(100vh - var(--site-header-height));
    --content-video-height: calc(100vh - var(--site-header-height) - 24px);
    --content-text-background-color: rgba(0, 0, 0, 0.0);
    --primary-color: #fc5b05;
    --secondary-color: #FFA126;
    --tertiary-color: #0f2e66;
}

/***/

.CSite *, .CSite *:before, .CSite *:after {

    position: relative;

    font-family: "adelle-sans", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    color: #000000;

    margin: 0;
    padding: 0;

    box-sizing: border-box;

    scroll-behavior: smooth;
}

img, video {
    width: auto;
    height: auto;
}

@media (min-width: 1800px) {
    :root {
        --site-border: 16vw;
    }

    .CSite *, .CSite *:before, .CSite *:after {
        font-size: 30px;
    }
}

#fitParsedBody {
    background-color: #ffffff;
}

.CSite {
    position: relative;
    width: 100%;
    min-height: 100vh;

    overflow-x: hidden;

    background-color: #ffffff;
}

.CSiteHeader {
    position: fixed;

    left: 0px;
    top: var(--site-header-height);

    width: 100%;
    height: 60px;

    background-color: #ffffff;
}

.CSiteHeader:after {
    position: absolute;

    display: inline-block;

    left: 0px;
    bottom: -10px;

    width: 100%;
    height: 10px;

    background-image: linear-gradient(to bottom, rgba(0,0,0, 0.03), rgba(0,0,0, 0.0));
    content: "";
}

.CSiteHeader a {
    position: absolute;

    display: block;

    left: 26px;
    top: 13px;

    width: 84px;
    height: 34px;
}

.CSiteHeaderLogo {
    width: 84px;
    height: 34px;
}

.CSiteHeaderOverlay {
    position: absolute;

    left: 0px;
    top: 0px;

    width: 100%;
    height: 122px;

    background-color: #ffffff;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.CSiteHeaderOverlay img {
    position: relative;

    width: 185px;
    height: 75px;
}

/***/

.CContentContainer {
    width: 100%;

    display: grid;

    grid-template-columns: [start] 1fr [content-start] var(--site-content-width) [content-end] 1fr [end];
    grid-template-rows: auto;

    text-align: left;
}

.CQuoteContainer {
    width: 100%;

    padding-top: calc(var(--site-content-width) * 0.55);
}

.CEndContainer {
    width: 100%;

    padding-top: 230px;
}

.CQuoteImage {
    position: absolute;

    left: 50%;
    top: 0px;

    width: var(--site-content-width);

    transform: translateX(-50%);

    background-color: white;

    box-sizing: border-box;
    border: 20px solid #ffffff;

    font-size: 0px;
}

.CQuoteImage:before {
    position: absolute;
    display: inline-block;

    left: calc(50% - 31px);
    bottom: -51px;

    width: 62px;
    height: 32px;

    content: url('../res/svg/quote-arrow.svg');
}

.CQuoteImage:after {
    position: absolute;
    display: inline-block;

    left: calc(50% - 29px);
    bottom: 30px;

    width: 58px;
    height: 48px;

    content: url('../res/svg/quote.svg');
}

.CQuoteImage img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.CEndImage {
    position: absolute;

    left: 50%;
    top: 0px;

    width: 300px;
    height: 300px;

    transform: translateX(-50%);

    background-color: white;
    border-radius: 150px;

    box-sizing: border-box;
    border: 20px solid #ffffff;

    font-size: 0px;
    overflow: hidden;
}

.CEndImage:after {
    position: absolute;
    display: inline-block;

    left: calc(50% - 29px);
    bottom: 30px;

    width: 58px;
    height: 48px;

    content: url('../res/svg/quote-white.svg');
}

.CEndImage img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.ATextColor1 {
    color: var(--primary-color) !important;
}

.ABlueBackground {
    background-color: var(--tertiary-color);
}

.CIntersectionContainer {
    width: 100%;

    display: grid;

    grid-template-columns: [start] 1fr [content-start] var(--site-content-width) [content-end] 1fr [end];
    grid-template-rows: auto;
    text-align: center;


}
.CCenterTextContainer {
    grid-column-start: content-start;
    grid-column-end: content-end;

    padding-top: var(--text-border);
    padding-bottom: var(--text-border);
}

.CContentVideoContainer, .CContentInlineVideoContainer {

    height: var(--content-video-height);
    grid-column-start: start;
    grid-column-end: end;

    font-size: 0px;

    overflow: hidden;
}

.CContentVideo {
    object-fit: cover;
    width: 100% !important
}

.CVideoPlay {
    position: absolute;

    left: 50%;
    top: 50%;
}

.CVideoPlayHidden {
    display: none;
}

.CVideoPlayButton {
    position: relative;

    opacity: 0.8;

    left: -5vw;
    top: -5vw;

    width: 10vw;
    height: 10vw;

    border-radius: 5vw;

    background-color: #FFA126;

    cursor: pointer;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transition-property: background-color;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

.CVideoPlayButton:hover {
    background-color: var(--primary-color);
}

.CVideoPlayButton svg {
    left: 5%;
    width: 50%;
    height: 50%;
}



.CVideoPause {
    position: absolute;

    left: 2vw;
    bottom: 2vw;
}

.CVideoPauseHidden {
    display: none;
}

.CVideoPauseButton {
    position: relative;

    opacity: 0.8;

    left: 0px;
    top: 0px;

    width: 5vw;
    height: 5vw;

    border-radius: 2.5vw;

    background-color: #FFA126;

    cursor: pointer;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transition-property: background-color;
    transition-duration: 0.3s;
    transition-timing-function: ease;
}

.CVideoPauseButton:hover {
    background-color: var(--primary-color);
}

.CVideoPauseButton svg {
    width: 40%;
    height: 40%;
}

.CContentInlineVideo {

    object-fit: cover;
    width: 100% !important;

    pointer-events: all;
}

.CContentVideoOverlay {
    object-fit: cover;
    width: 100% !important;
}

.CContentImageContainer {

    grid-column-start: start;
    grid-column-end: end;

    font-size: 0px;
}

.CContentImageContainer img {
    object-fit: cover;
    width: 100% !important;
}

/***/

.CColorSpacer {
    position: relative;

    width: 100%;
    height: 4px;
    overflow: hidden;
}

.CColorSpacer img {
    width: 100% !important;
    object-fit: fill;
}

/***/

.CContentGalery {
    display: block;

    width: 100%;
    height: calc(((100vw - (var(--site-center-gap) * 2)) / 3) * 0.6666);

    grid-column-start: start;
    grid-column-end: end;

    grid-template-columns: auto;
    grid-template-rows: [galery-item-start] 50vh [galery-item-end];

    grid-column-gap: 2vw;

    overflow: hidden;

    z-index: 3;
}

.CGaleryItemContainer {
    position: absolute;

    left: 0px;
    top: 0px;

    height: 100%;

    white-space: nowrap;
    text-align: left;

    transition-property: transform;
    transition-duration: 0.3s;
    transition-timing-function: ease;

    font-size: 0px;
}

.CGaleryItem {
    display: inline-block;

    width: calc((100vw - (var(--site-center-gap) * 2)) / 3);
    height: 100%;

    overflow: hidden;
}

.CGaleryItemSpacer {
    display: inline-block;

    width: var(--site-center-gap);
    height: 100%;
}

.CGaleryItem img {
    width: 100% !important;
    object-fit: cover;
}

.CGaleryLeftArrow {
    position: absolute;

    opacity: 0.6;

    left: 0px;
    top: 0px;

    width: 60px;
    height: 100%;

    background-color: rgba(255,255,255, 0.0);

    cursor: pointer;
    pointer-events: all;
}

.CGaleryLeftArrow svg, .CGaleryRightArrow svg {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 25px;
    height: 50px;

    transform: translateX(-50%) translateY(-50%);
}

.CGaleryRightArrow {
    position: absolute;

    opacity: 0.6;

    right: 0px;
    top: 0px;

    width: 60px;
    height: 100%;

    background-color: rgba(255,255,255, 0.0);

    cursor: pointer;
    pointer-events: all;
}


.CSite p {
    font-size: 1em;
    line-height: 1.75em;
}

.ATextBold {
    font-size: inherit !important;
    font-family: inherit !important;
    font-style: inherit !important;
    color: inherit !important;
    font-weight: 700;
}

.ATextIntro {
    font-size: 1.1428em !important;
    font-style: italic;
}

.ATextItalic {

    font-size: inherit;
    font-family: inherit;
    color: inherit;
    font-style: italic;
}

.ATextBoldItalic {

    font-size: inherit;
    font-family: inherit;
    color: inherit;
    font-weight: 700;
    font-style: italic;
}

.CSite h1 {
    font-family: "adelle-sans", sans-serif;
    font-weight: 700;
    font-size: 0.9em;
    line-height: 1.5em;

    text-transform: uppercase;

    color: var(--primary-color);
}

.CSite h2 {
    font-family: "adelle-sans", sans-serif;
    font-weight: 400;
    font-style: italic;

    font-size: 1.6em;
    line-height: 1.4em;

    color: #ffffff;

    padding-top: 1em;
    padding-bottom: 0.8em;
}

.CSite h3 {
    font-family: "adelle-sans", sans-serif;
    font-weight: 400;
    font-style: italic;

    font-size: 0.8em;
    line-height: 1.5em;

    color: var(--primary-color);
}

.CSite h4 {
    font-family: "adelle-sans", sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 2.4em;
    line-height: 1.4em;

    color: #000000;
    margin-bottom: 1em;
}


.CSite h4:after {
    position: absolute;
    display: inline-block;

    left: 0px;
    bottom: 0px;

    width: 92px;
    height: 4px;

    content: url('../res/svg/headline-marker.svg');
}

.CSite h5 {
    font-family: "adelle-sans", sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 1.2em;
    line-height: 1.4em;

    color: #000000;

    margin-top: 4em;
    margin-bottom: 2em;
}

.CSite h6 {
    font-family: "adelle-sans", sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 2.4em;
    line-height: 1.4em;

    color: #ffffff;
}


.CSite h5:after {
    position: absolute;
    display: inline-block;

    left: 0px;
    bottom: 0px;

    width: 92px;
    height: 4px;

    content: url('../res/svg/headline-marker.svg');
}

.CSite a {
    color: var(--primary-color);
}

.CIntextLink {
    color: inherit !important;
}

.CSite a:hover {
    text-decoration: none;
}

.CInlineGraphic {
    display: inline-block;
    height: 1em;
}

.CButton {
    display: inline-block;

    font-family: "adelle-sans", sans-serif;
    font-weight: 300;
    font-style: italic;

    font-size: 1.6em !important;

    text-decoration: none;

    background-color: var(--tertiary-color);

    color: #ffffff !important;

    padding-left: 100px;
    padding-right: 100px;
    padding-top: 20px;
    padding-bottom: 20px;


    border-radius: 50px;

    cursor: pointer;
    pointer-events: all;

    transition: background-color 0.3s ease;
}

.CButton:hover {
    background-color: var(--primary-color);
}

.CTextSpacer40 {
    width: 100%;
    height: 40px;
}

.CTextSpacer5vh {
    width: 100%;
    height: 5vh;
}


.AContentArrowPrefix:after {
    position: absolute;
    display: inline-block;

    left: calc(50% - 30px);
    top: -30px;

    width: 60px;
    height: 60px;

    border-radius: 30px;
    background-color: var(--tertiary-color);

    content: url('../res/svg/arrow-yellow.svg');
}
.AContentArrowPostfix:after {
    position: absolute;
    display: inline-block;

    left: calc(50% - 30px);
    bottom: -30px;

    width: 60px;
    height: 60px;

    border-radius: 30px;
    background-color: var(--tertiary-color);

    content: url('../res/svg/arrow-yellow.svg');
}

.ALazyLoad {
    opacity: 0;
    transform: translateX(50px) translateY(0px);

    transition-property: opacity, transform;
    transition-duration: 2.0s, 2.0s;
    transition-delay: 0.0s, 0.0s;
    transition-timing-function: ease, ease;
}

.ALazyLoadVisible {
    opacity: 1;
    transform: translateX(0px) translateY(0px);
}


@keyframes AnimationWaveRightToLeft {
    0% {
        opacity: 1;
        transform: translateX(100vw);
    }
    100% {
        opacity: 1;
        transform: translateX(-200vw);
    }
}

.CBlend {
    position: fixed;

    left: 0px;
    top: 0px;

    width: 100vw;
    height: 100vh;

    pointer-events: none;

    background-color: var(--primary-color);

    animation-name: AnimationBlend;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
    animation-duration: 1s;
    animation-delay: 0.1s;
}

@keyframes AnimationBlend {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.CPreloader {
    position: fixed;
    opacity: 1;

    left: 0px;
    top: 0px;

    width: 100%;
    height: 100%;

    background-color: var(--tertiary-color);
    background-image: url("../res/img/workday-tt.png");
    background-size: 100px 100px;
    background-position: center center;
    background-repeat: no-repeat;

    z-index: 99;

    transition: opacity 0.5s ease;
}

.CPreloader img {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 100px;
    height: 100px;

    transform: translateX(-50%) translateY(-50%);

    animation-name: AnimationPreloadRotate;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes AnimationPreloadRotate {
    0% {
        transform: translateX(-50%) translateY(-50%) rotate(0deg);
    }
    100% {
        transform: translateX(-50%) translateY(-50%) rotate(360deg);
    }
}

.CPreloaderBlendOut {
    opacity: 0;
}

.CPreloaderHidden {
    display: none;
    opacity: 0;
}

@media screen and (max-aspect-ratio: 16/9) {
    .CContentVideo {
        object-fit: cover;
        width: auto !important;
        height: 100% !important;
    }

    .CContentInlineVideo {
        object-fit: cover;
        width: auto !important;
        height: 100% !important;
    }

    .CContentVideoOverlay {
        object-fit: cover;
        width: auto !important;
        height: 100% !important;
    }
}

@media (max-width: 960px) {

    :root {
        --site-border: 8vw;
        --text-border: 36px;
        --site-header-height: 60px;
        --site-content-width: 80vw;
        --content-viewport-height: calc(100vh - var(--site-header-height));
        --content-video-height: calc(100vw * 0.5625);
    }

    .CButton {

        font-size: 1.6em !important;

        padding-left: 50px;
        padding-right: 50px;

    }

    .CEndContainer {
        padding-top: 270px;
    }

    .CContentVideoContainer {
        margin-top: calc(var(--site-header-height) + 122px);
    }

    .CSite *, .CSite *:before, .CSite *:after {
        font-size: 14px;
    }

    .CContentGalery {
        width: 100%;
        height: calc(100vw * 0.6666);
    }

    .CGaleryItemSpacer {
        display: inline-block;

        width: 0px;
        height: 100%;
    }

    .CGaleryItem {
        width: 100vw;
    }

    .CContentVideo {
        object-fit: cover;
        width: auto !important;
        height: 100% !important;
    }

    .CContentInlineVideo {
        object-fit: cover;
        width: 100vw !important;
        height: auto !important;
    }
}