:root {
    --blue-primary-light: #4b7bbf;
    --blue-secondary:#3ebaed;
    --blue-secondary-dark:#008aba;
    --grey-400:#bdbdbd;
    --grey-300: #999999;
    --grey-900: #212121;
}

.blue-primary-ligth {
    color: var(--blue-primary-light);
}
.blue-secondary {
    color: var(--blue-secondary);
}
.blue-secondary-dark {
    color: var(--blue-secondary-dark);
}
.grey-900 {
    color: var(--grey-900);
}
.grey-400 {
    color: var(--grey-400);
}
.grey-300 {
    color: var(--grey-300);
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, logo, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

@font-face {
    font-family: Notes-BoldTf;
    src: url("GB_Notes_Bold.ttf");
}
@font-face {
    font-family: Notes-RegularTf;
    src: url("GB_Notes_Reg.ttf");
}
/*
    Now here is when interesting things start to appear.

    We set up <body> styles with default font and nice gradient in the background.
    And yes, there is a lot of repetition there because of -prefixes but we don't
    want to leave anybody behind.
*/
body {
    font-family: 'Notes-BoldTf', sans-serif;
    min-height: 740px;

    background: rgb(255, 255, 255);
    background: -webkit-gradient(radial, 50% 50%, 0, 50% 50%, 500, from(rgb(255, 255, 255)), to(rgb(255, 255, 255)));
    background: -webkit-radial-gradient(rgb(255, 255, 255), rgb(255, 255, 255));
    background:    -moz-radial-gradient(rgb(255, 255, 255), rgb(255, 255, 255));
    background:     -ms-radial-gradient(rgb(255, 255, 255), rgb(255, 255, 255));
    background:      -o-radial-gradient(rgb(255, 255, 255), rgb(255, 255, 255));
    background:         radial-gradient(rgb(255, 255, 255), rgb(255, 255, 255));
}

/*
    Now let's bring some text styles back ...
*/
b, strong { font-weight: bold }
i, em { font-style: italic }

/*
    ... and give links a nice look.
*/
a {
    color: inherit;
    text-decoration: none;
    padding: 0 0.1em;
    background: rgba(255,255,255,0.5);
    text-shadow: -1px -1px 2px rgba(100,100,100,0.9);
    border-radius: 0.2em;

    -webkit-transition: 0.5s;
    -moz-transition:    0.5s;
    -ms-transition:     0.5s;
    -o-transition:      0.5s;
    transition:         0.5s;
}

a:hover,
a:focus {
    background: rgba(255,255,255,1);
    text-shadow: -1px -1px 2px rgba(100,100,100,0.5);
}

/*
    Because the main point behind the impress.js demo is to demo impress.js
    we display a fallback message for users with browsers that don't support
    all the features required by it.

    All of the content will be still fully accessible for them, but I want
    them to know that they are missing something - that's what the demo is
    about, isn't it?

    And then we hide the message, when support is detected in the browser.
*/

.fallback-message {
    font-family: sans-serif;
    line-height: 1.3;

    width: 780px;
    padding: 10px 10px 0;
    margin: 20px auto;

    border: 1px solid #E4C652;
    border-radius: 10px;
    background: #EEDC94;
}

.fallback-message p {
    margin-bottom: 10px;
}

.impress-supported .fallback-message {
    display: none;
}

/*
    Now let's style the presentation steps.

    We start with basics to make sure it displays correctly in everywhere ...
*/

.step {
    position: relative;
    width: 900px;
    padding: 40px;
    margin: 20px auto;

    -webkit-box-sizing: border-box;
    -moz-box-sizing:    border-box;
    -ms-box-sizing:     border-box;
    -o-box-sizing:      border-box;
    box-sizing:         border-box;

    font-family: 'PT Serif', georgia, serif;
    font-size: 48px;
    line-height: 1.5;
}

.multi {
    width: 1920px !important;
}

.left {
    text-align: center;
}

.right {
    text-align: center;
}

/*
    ... and we enhance the styles for impress.js.

    Basically we remove the margin and make inactive steps a little bit transparent.
*/
.impress-enabled .step {
    margin: 0;
    opacity: 0.3;

    -webkit-transition: opacity 1s;
    -moz-transition:    opacity 1s;
    -ms-transition:     opacity 1s;
    -o-transition:      opacity 1s;
    transition:         opacity 1s;
}

.impress-enabled .step.active { opacity: 1 }

/*
    These 'slide' step styles were heavily inspired by HTML5 Slides:
    http://html5slides.googlecode.com/svn/trunk/styles.css

    ;)

    They cover everything what you see on first three steps of the demo.
*/
.slide {
    display: block;

    width: 900px;
    height: 700px;
    padding: 40px 60px;

    background-color: white;
    border: 1px solid rgba(0, 0, 0, .3);
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);

    color: rgb(102, 102, 102);
    text-shadow: 0 2px 2px rgba(0, 0, 0, .1);

    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: -1px;
}

.slide q {
    display: block;
    font-size: 50px;
    line-height: 72px;

    margin-top: 100px;
}

.slide q strong {
    white-space: nowrap;
}

#title {
    padding: 0;
}

#title .try {
    font-size: 64px;
    position: absolute;
    top: -0.5em;
    left: 1.5em;

    -webkit-transform: translateZ(20px);
    -moz-transform:    translateZ(20px);
    -ms-transform:     translateZ(20px);
    -o-transform:      translateZ(20px);
    transform:         translateZ(20px);
}

#title h1 {
    font-size: 180px;

    -webkit-transform: translateZ(50px);
    -moz-transform:    translateZ(50px);
    -ms-transform:     translateZ(50px);
    -o-transform:      translateZ(50px);
    transform:         translateZ(50px);
}

#title .footnote {
    font-size: 32px;
}

#logo{
    font-family: 'Notes-BoldTf', sans-serif;
    width: 1000px;
    text-align: center;
    font-size: 60px;
    line-height: 1;
}


#logo strong,
#logo b {
    display: block;
    font-size: 250px;
    line-height: 250px;
}

#logo .thoughts {
    font-size: 90px;
    line-height: 150px;
}

#who {
    font-family: 'Notes-BoldTf', sans-serif;
    color: var(--grey-900);
    width: 700px;
    text-align: center;
    font-size: 60px;
    line-height: 1;
}

#epilog {
    font-family: 'Notes-BoldTf', sans-serif;
    color: var(--grey-900);
    width: max-content;
    height: max-content;
    text-align: center;
    font-size: 60px;
    line-height: 1;
}


#overview {
    font-family: 'Notes-BoldTf', sans-serif;
    width: 1000px;
    color: var(--grey-900);
    width: 700px;
    text-align: center;
    font-size: 60px;
    line-height: 1;
}

#overview h1{
    font-size: 80px;
    margin-bottom: 50px;
}

#overview b {
    display: inline-block;
    -webkit-transition: 0.5s;
    -moz-transition:    0.5s;
    -ms-transition:     0.5s;
    -o-transition:      0.5s;
    transition:         0.5s;
}

#overview.present .positioning-left {
    -webkit-transform: translate(-20px, 0px) rotate(-5deg);
    -moz-transform:    translate(-20px, 0px) rotate(-5deg);
    -ms-transform:     translate(-20px, 0px) rotate(-5deg);
    -o-transform:      translate(-20px, 0px) rotate(-5deg);
    transform:         translate(-20px, 0px) rotate(-5deg);
}

#overview.present .positioning-left-top {
    -webkit-transform: translate(-20px, -20px);
    -moz-transform:    translate(-20px, -20px);
    -ms-transform:     translate(-20px, -20px);
    -o-transform:      translate(-20px, -20px);
    transform:         translate(-20px, -20px);
}

#overview.present .positioning-left-bot {
    -webkit-transform: translate(-20px, 40px) rotate(5deg);
    -moz-transform:    translate(-20px, 40px) rotate(5deg);
    -ms-transform:     translate(-20px, 40px) rotate(5deg);
    -o-transform:      translate(-20px, 40px) rotate(5deg);
    transform:         translate(-20px, 40px) rotate(5deg);
}

#overview.present .positioning-right {
    -webkit-transform: translate(20px, 0px) rotate(5deg);
    -moz-transform:    translate(20px, 0px) rotate(5deg);
    -ms-transform:     translate(20px, 0px) rotate(5deg);
    -o-transform:      translate(20px, 0px) rotate(5deg);
    transform:         translate(20px, 0px) rotate(5deg);
}

#overview.present .positioning-right-top {
    -webkit-transform: translate(20px, -20px);
    -moz-transform:    translate(20px, -20px);
    -ms-transform:     translate(20px, -20px);
    -o-transform:      translate(20px, -20px);
    transform:         translate(20px, -20px);
}

#overview.present .positioning-right-bot {
    -webkit-transform: translate(20px, 20px);
    -moz-transform:    translate(20px, 20px);
    -ms-transform:     translate(20px, 20px);
    -o-transform:      translate(20px, 20px);
    transform:         translate(20px, 20px);
}

#overview.present .positioning-top {
    -webkit-transform: translateY(-10px);
    -moz-transform:    translateY(-10px);
    -ms-transform:     translateY(-10px);
    -o-transform:      translateY(-10px);
    transform:         translateY(-10px);
}

#overview.present .positioning-bot {
    -webkit-transform: translateY(30px) rotate(-5deg);
    -moz-transform:    translateY(30px) rotate(-5deg);
    -ms-transform:     translateY(30px) rotate(-5deg);
    -o-transform:      translateY(30px) rotate(-5deg);
    transform:         translateY(30px) rotate(-5deg);
}

/*
    ... 'rotating' to rotate a quarter of a second later ...
*/
#overview.present .rotating-left {
    -webkit-transform: rotate(-5deg);
    -moz-transform:    rotate(-5deg);
    -ms-transform:     rotate(-5deg);
    -o-transform:      rotate(-5deg);
    transform:         rotate(-5deg);

    -webkit-transition-delay: 0.25s;
    -moz-transition-delay:    0.25s;
    -ms-transition-delay:     0.25s;
    -o-transition-delay:      0.25s;
    transition-delay:         0.25s;
}

#overview.present .rotating-right {
    -webkit-transform: rotate(5deg);
    -moz-transform:    rotate(5deg);
    -ms-transform:     rotate(5deg);
    -o-transform:      rotate(5deg);
    transform:         rotate(5deg);

    -webkit-transition-delay: 0.25s;
    -moz-transition-delay:    0.25s;
    -ms-transition-delay:     0.25s;
    -o-transition-delay:      0.25s;
    transition-delay:         0.25s;
}

#overview.present .scaling-down {
    -webkit-transform: scale(0.7);
    -moz-transform:    scale(0.7);
    -ms-transform:     scale(0.7);
    -o-transform:      scale(0.7);
    transform:         scale(0.7);

    -webkit-transition-delay: 0.5s;
    -moz-transition-delay:    0.5s;
    -ms-transition-delay:     0.5s;
    -o-transition-delay:      0.5s;
    transition-delay:         0.5s;
}

#overview.present .positioning-neutral-bot {
    -webkit-transform: translateY(20px);
    -moz-transform:    translateY(20px);
    -ms-transform:     translateY(20px);
    -o-transform:      translateY(20px);
    transform:         translateY(20px);
}

#overview.present .key-fact {
    -webkit-transform: translateY(70px) scale(1.2);
    -moz-transform:    translateY(70px) scale(1.2);
    -ms-transform:     translateY(70px) scale(1.2);
    -o-transform:      translateY(70px) scale(1.2);
    transform:         translateY(70px) scale(1.2);
}

#facts1 {
    font-family: 'Notes-BoldTf', sans-serif;
    width: 1000px;
    color: var(--grey-900);
    width: 700px;
    text-align: center;
    font-size: 60px;
    line-height: 1;
}

#facts1 h1{
    font-size: 80px;
    margin-bottom: 50px;
}

/*
    ... so we define display to `inline-block` to enable transforms and
    transition duration to 0.5s ...
*/
#facts1 b {
    display: inline-block;
    -webkit-transition: 0.5s;
    -moz-transition:    0.5s;
    -ms-transition:     0.5s;
    -o-transition:      0.5s;
    transition:         0.5s;
}

/*
    ... and we want 'positioning` word to move up a bit when the step gets
    `present` class ...
*/
#facts1.present .positioning-left {
    -webkit-transform: translate(-20px, 0px) rotate(-5deg);
    -moz-transform:    translate(-20px, 0px) rotate(-5deg);
    -ms-transform:     translate(-20px, 0px) rotate(-5deg);
    -o-transform:      translate(-20px, 0px) rotate(-5deg);
    transform:         translate(-20px, 0px) rotate(-5deg);
}

#facts1.present .positioning-left-top {
    -webkit-transform: translate(-20px, -20px);
    -moz-transform:    translate(-20px, -20px);
    -ms-transform:     translate(-20px, -20px);
    -o-transform:      translate(-20px, -20px);
    transform:         translate(-20px, -20px);
}

#facts1.present .positioning-left-bot {
    -webkit-transform: translate(-20px, 40px) rotate(5deg);
    -moz-transform:    translate(-20px, 40px) rotate(5deg);
    -ms-transform:     translate(-20px, 40px) rotate(5deg);
    -o-transform:      translate(-20px, 40px) rotate(5deg);
    transform:         translate(-20px, 40px) rotate(5deg);
}

#facts1.present .positioning-right {
    -webkit-transform: translate(20px, 0px) rotate(5deg);
    -moz-transform:    translate(20px, 0px) rotate(5deg);
    -ms-transform:     translate(20px, 0px) rotate(5deg);
    -o-transform:      translate(20px, 0px) rotate(5deg);
    transform:         translate(20px, 0px) rotate(5deg);
}

#facts1.present .positioning-right-top {
    -webkit-transform: translate(20px, -20px);
    -moz-transform:    translate(20px, -20px);
    -ms-transform:     translate(20px, -20px);
    -o-transform:      translate(20px, -20px);
    transform:         translate(20px, -20px);
}

#facts1.present .positioning-right-bot {
    -webkit-transform: translate(20px, 20px);
    -moz-transform:    translate(20px, 20px);
    -ms-transform:     translate(20px, 20px);
    -o-transform:      translate(20px, 20px);
    transform:         translate(20px, 20px);
}

#facts1.present .positioning-top {
    -webkit-transform: translateY(-10px);
    -moz-transform:    translateY(-10px);
    -ms-transform:     translateY(-10px);
    -o-transform:      translateY(-10px);
    transform:         translateY(-10px);
}

#facts1.present .positioning-bot {
    -webkit-transform: translateY(30px) rotate(-5deg);
    -moz-transform:    translateY(30px) rotate(-5deg);
    -ms-transform:     translateY(30px) rotate(-5deg);
    -o-transform:      translateY(30px) rotate(-5deg);
    transform:         translateY(30px) rotate(-5deg);
}

/*
    ... 'rotating' to rotate a quarter of a second later ...
*/
#facts1.present .rotating-left {
    -webkit-transform: rotate(-5deg);
    -moz-transform:    rotate(-5deg);
    -ms-transform:     rotate(-5deg);
    -o-transform:      rotate(-5deg);
    transform:         rotate(-5deg);

    -webkit-transition-delay: 0.25s;
    -moz-transition-delay:    0.25s;
    -ms-transition-delay:     0.25s;
    -o-transition-delay:      0.25s;
    transition-delay:         0.25s;
}

#facts1.present .rotating-right {
    -webkit-transform: rotate(5deg);
    -moz-transform:    rotate(5deg);
    -ms-transform:     rotate(5deg);
    -o-transform:      rotate(5deg);
    transform:         rotate(5deg);

    -webkit-transition-delay: 0.25s;
    -moz-transition-delay:    0.25s;
    -ms-transition-delay:     0.25s;
    -o-transition-delay:      0.25s;
    transition-delay:         0.25s;
}

#facts1.present .scaling-down {
    -webkit-transform: scale(0.7);
    -moz-transform:    scale(0.7);
    -ms-transform:     scale(0.7);
    -o-transform:      scale(0.7);
    transform:         scale(0.7);

    -webkit-transition-delay: 0.5s;
    -moz-transition-delay:    0.5s;
    -ms-transition-delay:     0.5s;
    -o-transition-delay:      0.5s;
    transition-delay:         0.5s;
}

#facts1.present .positioning-neutral-bot {
    -webkit-transform: translateY(20px);
    -moz-transform:    translateY(20px);
    -ms-transform:     translateY(20px);
    -o-transform:      translateY(20px);
    transform:         translateY(20px);
}

#facts1.present .key-fact {
    -webkit-transform: translateY(70px) scale(1.2);
    -moz-transform:    translateY(70px) scale(1.2);
    -ms-transform:     translateY(70px) scale(1.2);
    -o-transform:      translateY(70px) scale(1.2);
    transform:         translateY(70px) scale(1.2);
}

#facts2 {
    font-family: 'Notes-BoldTf', sans-serif;
    width: 1000px;
    color: var(--grey-900);
    width: 700px;
    text-align: center;
    font-size: 60px;
    line-height: 1;
}

#facts2 h1{
    font-size: 80px;
    margin-bottom: 50px;
}

/*
    ... so we define display to `inline-block` to enable transforms and
    transition duration to 0.5s ...
*/
#facts2 b {
    display: inline-block;
    -webkit-transition: 0.5s;
    -moz-transition:    0.5s;
    -ms-transition:     0.5s;
    -o-transition:      0.5s;
    transition:         0.5s;
}

#facts2.present .positioning-left {
    -webkit-transform: translate(-20px, 0px) rotate(-5deg);
    -moz-transform:    translate(-20px, 0px) rotate(-5deg);
    -ms-transform:     translate(-20px, 0px) rotate(-5deg);
    -o-transform:      translate(-20px, 0px) rotate(-5deg);
    transform:         translate(-20px, 0px) rotate(-5deg);
}

#facts2.present .positioning-left-top {
    -webkit-transform: translate(-20px, -20px);
    -moz-transform:    translate(-20px, -20px);
    -ms-transform:     translate(-20px, -20px);
    -o-transform:      translate(-20px, -20px);
    transform:         translate(-20px, -20px);
}

#facts2.present .positioning-left-bot {
    -webkit-transform: translate(-20px, 40px) rotate(5deg);
    -moz-transform:    translate(-20px, 40px) rotate(5deg);
    -ms-transform:     translate(-20px, 40px) rotate(5deg);
    -o-transform:      translate(-20px, 40px) rotate(5deg);
    transform:         translate(-20px, 40px) rotate(5deg);
}

#facts2.present .positioning-right {
    -webkit-transform: translate(20px, 0px) rotate(5deg);
    -moz-transform:    translate(20px, 0px) rotate(5deg);
    -ms-transform:     translate(20px, 0px) rotate(5deg);
    -o-transform:      translate(20px, 0px) rotate(5deg);
    transform:         translate(20px, 0px) rotate(5deg);
}

#facts2.present .positioning-right-top {
    -webkit-transform: translate(20px, -20px);
    -moz-transform:    translate(20px, -20px);
    -ms-transform:     translate(20px, -20px);
    -o-transform:      translate(20px, -20px);
    transform:         translate(20px, -20px);
}

#facts2.present .positioning-right-bot {
    -webkit-transform: translate(20px, 20px);
    -moz-transform:    translate(20px, 20px);
    -ms-transform:     translate(20px, 20px);
    -o-transform:      translate(20px, 20px);
    transform:         translate(20px, 20px);
}

#facts2.present .positioning-top {
    -webkit-transform: translateY(-10px);
    -moz-transform:    translateY(-10px);
    -ms-transform:     translateY(-10px);
    -o-transform:      translateY(-10px);
    transform:         translateY(-10px);
}

#facts2.present .positioning-bot {
    -webkit-transform: translateY(30px) rotate(-5deg);
    -moz-transform:    translateY(30px) rotate(-5deg);
    -ms-transform:     translateY(30px) rotate(-5deg);
    -o-transform:      translateY(30px) rotate(-5deg);
    transform:         translateY(30px) rotate(-5deg);
}

/*
    ... 'rotating' to rotate a quarter of a second later ...
*/
#facts2.present .rotating-left {
    -webkit-transform: rotate(-5deg);
    -moz-transform:    rotate(-5deg);
    -ms-transform:     rotate(-5deg);
    -o-transform:      rotate(-5deg);
    transform:         rotate(-5deg);

    -webkit-transition-delay: 0.25s;
    -moz-transition-delay:    0.25s;
    -ms-transition-delay:     0.25s;
    -o-transition-delay:      0.25s;
    transition-delay:         0.25s;
}

#facts2.present .rotating-right {
    -webkit-transform: rotate(5deg);
    -moz-transform:    rotate(5deg);
    -ms-transform:     rotate(5deg);
    -o-transform:      rotate(5deg);
    transform:         rotate(5deg);

    -webkit-transition-delay: 0.25s;
    -moz-transition-delay:    0.25s;
    -ms-transition-delay:     0.25s;
    -o-transition-delay:      0.25s;
    transition-delay:         0.25s;
}

#facts2.present .scaling-down {
    -webkit-transform: scale(0.7);
    -moz-transform:    scale(0.7);
    -ms-transform:     scale(0.7);
    -o-transform:      scale(0.7);
    transform:         scale(0.7);

    -webkit-transition-delay: 0.5s;
    -moz-transition-delay:    0.5s;
    -ms-transition-delay:     0.5s;
    -o-transition-delay:      0.5s;
    transition-delay:         0.5s;
}

#facts2.present .positioning-neutral-bot {
    -webkit-transform: translateY(20px);
    -moz-transform:    translateY(20px);
    -ms-transform:     translateY(20px);
    -o-transform:      translateY(20px);
    transform:         translateY(20px);
}

#facts2.present .key-fact {
    -webkit-transform: translateY(70px) scale(1.2);
    -moz-transform:    translateY(70px) scale(1.2);
    -ms-transform:     translateY(70px) scale(1.2);
    -o-transform:      translateY(70px) scale(1.2);
    transform:         translateY(70px) scale(1.2);
}

#research {
    font-family: 'Notes-BoldTf', sans-serif;
    width: 1000px;
    color: var(--grey-900);
    width: 700px;
    text-align: center;
    font-size: 60px;
    line-height: 1;
}

#research h1{
    font-size: 80px;
    margin-bottom: 50px;
}

/*
    ... so we define display to `inline-block` to enable transforms and
    transition duration to 0.5s ...
*/
#research b {
    display: inline-block;
    -webkit-transition: 0.5s;
    -moz-transition:    0.5s;
    -ms-transition:     0.5s;
    -o-transition:      0.5s;
    transition:         0.5s;
}

#research.present .positioning-left {
    -webkit-transform: translate(-20px, 0px) rotate(-5deg);
    -moz-transform:    translate(-20px, 0px) rotate(-5deg);
    -ms-transform:     translate(-20px, 0px) rotate(-5deg);
    -o-transform:      translate(-20px, 0px) rotate(-5deg);
    transform:         translate(-20px, 0px) rotate(-5deg);
}

#research.present .positioning-left-top {
    -webkit-transform: translate(-20px, -20px);
    -moz-transform:    translate(-20px, -20px);
    -ms-transform:     translate(-20px, -20px);
    -o-transform:      translate(-20px, -20px);
    transform:         translate(-20px, -20px);
}

#research.present .positioning-left-bot {
    -webkit-transform: translate(-20px, 50px) rotate(3deg);
    -moz-transform:    translate(-20px, 50px) rotate(3deg);
    -ms-transform:     translate(-20px, 50px) rotate(3deg);
    -o-transform:      translate(-20px, 50px) rotate(3deg);
    transform:         translate(-20px, 50px) rotate(3deg);
}

#research.present .positioning-right {
    -webkit-transform: translate(20px, 0px) rotate(5deg);
    -moz-transform:    translate(20px, 0px) rotate(5deg);
    -ms-transform:     translate(20px, 0px) rotate(5deg);
    -o-transform:      translate(20px, 0px) rotate(5deg);
    transform:         translate(20px, 0px) rotate(5deg);
}

#research.present .positioning-right-top {
    -webkit-transform: translate(20px, -20px);
    -moz-transform:    translate(20px, -20px);
    -ms-transform:     translate(20px, -20px);
    -o-transform:      translate(20px, -20px);
    transform:         translate(20px, -20px);
}

#research.present .positioning-right-bot {
    -webkit-transform: translate(20px, 20px);
    -moz-transform:    translate(20px, 20px);
    -ms-transform:     translate(20px, 20px);
    -o-transform:      translate(20px, 20px);
    transform:         translate(20px, 20px);
}

#research.present .positioning-top {
    -webkit-transform: translateY(-10px);
    -moz-transform:    translateY(-10px);
    -ms-transform:     translateY(-10px);
    -o-transform:      translateY(-10px);
    transform:         translateY(-10px);
}

#research.present .positioning-bot {
    -webkit-transform: translateY(30px) rotate(-3deg);
    -moz-transform:    translateY(30px) rotate(-3deg);
    -ms-transform:     translateY(30px) rotate(-3deg);
    -o-transform:      translateY(30px) rotate(-3deg);
    transform:         translateY(30px) rotate(-3deg);
}

/*
    ... 'rotating' to rotate a quarter of a second later ...
*/
#research.present .rotating-left {
    -webkit-transform: rotate(-5deg);
    -moz-transform:    rotate(-5deg);
    -ms-transform:     rotate(-5deg);
    -o-transform:      rotate(-5deg);
    transform:         rotate(-5deg);

    -webkit-transition-delay: 0.25s;
    -moz-transition-delay:    0.25s;
    -ms-transition-delay:     0.25s;
    -o-transition-delay:      0.25s;
    transition-delay:         0.25s;
}

#research.present .rotating-right {
    -webkit-transform: rotate(5deg);
    -moz-transform:    rotate(5deg);
    -ms-transform:     rotate(5deg);
    -o-transform:      rotate(5deg);
    transform:         rotate(5deg);

    -webkit-transition-delay: 0.25s;
    -moz-transition-delay:    0.25s;
    -ms-transition-delay:     0.25s;
    -o-transition-delay:      0.25s;
    transition-delay:         0.25s;
}

#research.present .scaling-down {
    -webkit-transform: scale(0.7);
    -moz-transform:    scale(0.7);
    -ms-transform:     scale(0.7);
    -o-transform:      scale(0.7);
    transform:         scale(0.7);

    -webkit-transition-delay: 0.5s;
    -moz-transition-delay:    0.5s;
    -ms-transition-delay:     0.5s;
    -o-transition-delay:      0.5s;
    transition-delay:         0.5s;
}

#research.present .positioning-neutral-bot {
    -webkit-transform: translateY(20px);
    -moz-transform:    translateY(20px);
    -ms-transform:     translateY(20px);
    -o-transform:      translateY(20px);
    transform:         translateY(20px);
}

#research.present .key-fact {
    -webkit-transform: translateY(70px) scale(1.2);
    -moz-transform:    translateY(70px) scale(1.2);
    -ms-transform:     translateY(70px) scale(1.2);
    -o-transform:      translateY(70px) scale(1.2);
    transform:         translateY(70px) scale(1.2);
}


#computer {
    margin-top: 50px;
    width: 200px;
    height: auto;
}

#its {
    font-family: 'Notes-BoldTf', sans-serif;
    color: var(--grey-900);
    width: 700px;
    text-align: center;
    font-size: 60px;
    line-height: 1;
}

/*
    'techstack ideas' just need some techstack styling.
*/
#cloud {
    font-family: 'Notes-BoldTf', sans-serif;
    width: 1000px;
    text-align: center;
    font-size: 60px;
    line-height: 1;
}

#cloud h1{
    font-size: 80px;
    margin-bottom: 20px;
}

#connected {
    margin-top: 50px;
    width: 800px;
    height: auto;
    text-align: center;
}

#techstack {
    font-family: 'Notes-BoldTf', sans-serif;
    width: 1000px;
    text-align: center;
    font-size: 60px;
    line-height: 1;
}

#techstack h1{
    font-size: 80px;
    margin-bottom: 20px;
}

#tech {
    margin-top: 50px;
    width: 1000px;
    height: auto;
    text-align: center;
}

#backend {
    display: flex;
    justify-content: space-evenly;
    font-family: 'Notes-BoldTf', sans-serif;
    width: 1920px;
    color: var(--grey-900);
    text-align: center;
    font-size: 60px;
    line-height: 1;
}

#backend h1{
    font-size: 80px;
    margin-bottom: 50px;
}

/*
    ... so we define display to `inline-block` to enable transforms and
    transition duration to 0.5s ...
*/
#backend b {
    display: inline-block;
    -webkit-transition: 0.5s;
    -moz-transition:    0.5s;
    -ms-transition:     0.5s;
    -o-transition:      0.5s;
    transition:         0.5s;
}

/*
    ... and we want 'positioning` word to move up a bit when the step gets
    `present` class ...
*/
#backend.present .positioning-left {
    -webkit-transform: translate(-20px, 0px) rotate(-5deg);
    -moz-transform:    translate(-20px, 0px) rotate(-5deg);
    -ms-transform:     translate(-20px, 0px) rotate(-5deg);
    -o-transform:      translate(-20px, 0px) rotate(-5deg);
    transform:         translate(-20px, 0px) rotate(-5deg);
}

#backend.present .positioning-left-top {
    -webkit-transform: translate(-20px, -20px);
    -moz-transform:    translate(-20px, -20px);
    -ms-transform:     translate(-20px, -20px);
    -o-transform:      translate(-20px, -20px);
    transform:         translate(-20px, -20px);
}

#backend.present .positioning-left-bot {
    -webkit-transform: translate(-20px, 40px) rotate(5deg);
    -moz-transform:    translate(-20px, 40px) rotate(5deg);
    -ms-transform:     translate(-20px, 40px) rotate(5deg);
    -o-transform:      translate(-20px, 40px) rotate(5deg);
    transform:         translate(-20px, 40px) rotate(5deg);
}

#backend.present .positioning-right {
    -webkit-transform: translate(20px, 0px) rotate(5deg);
    -moz-transform:    translate(20px, 0px) rotate(5deg);
    -ms-transform:     translate(20px, 0px) rotate(5deg);
    -o-transform:      translate(20px, 0px) rotate(5deg);
    transform:         translate(20px, 0px) rotate(5deg);
}

#backend.present .positioning-right-top {
    -webkit-transform: translate(20px, -20px);
    -moz-transform:    translate(20px, -20px);
    -ms-transform:     translate(20px, -20px);
    -o-transform:      translate(20px, -20px);
    transform:         translate(20px, -20px);
}

#backend.present .positioning-right-bot {
    -webkit-transform: translate(20px, 20px);
    -moz-transform:    translate(20px, 20px);
    -ms-transform:     translate(20px, 20px);
    -o-transform:      translate(20px, 20px);
    transform:         translate(20px, 20px);
}

#backend.present .positioning-top {
    -webkit-transform: translateY(-10px);
    -moz-transform:    translateY(-10px);
    -ms-transform:     translateY(-10px);
    -o-transform:      translateY(-10px);
    transform:         translateY(-10px);
}

#backend.present .positioning-bot {
    -webkit-transform: translateY(30px) rotate(-5deg);
    -moz-transform:    translateY(30px) rotate(-5deg);
    -ms-transform:     translateY(30px) rotate(-5deg);
    -o-transform:      translateY(30px) rotate(-5deg);
    transform:         translateY(30px) rotate(-5deg);
}

/*
    ... 'rotating' to rotate a quarter of a second later ...
*/
#backend.present .rotating-left {
    -webkit-transform: rotate(-5deg);
    -moz-transform:    rotate(-5deg);
    -ms-transform:     rotate(-5deg);
    -o-transform:      rotate(-5deg);
    transform:         rotate(-5deg);

    -webkit-transition-delay: 0.25s;
    -moz-transition-delay:    0.25s;
    -ms-transition-delay:     0.25s;
    -o-transition-delay:      0.25s;
    transition-delay:         0.25s;
}

#backend.present .rotating-right {
    -webkit-transform: rotate(5deg);
    -moz-transform:    rotate(5deg);
    -ms-transform:     rotate(5deg);
    -o-transform:      rotate(5deg);
    transform:         rotate(5deg);

    -webkit-transition-delay: 0.25s;
    -moz-transition-delay:    0.25s;
    -ms-transition-delay:     0.25s;
    -o-transition-delay:      0.25s;
    transition-delay:         0.25s;
}

#backend.present .scaling-down {
    -webkit-transform: scale(0.7);
    -moz-transform:    scale(0.7);
    -ms-transform:     scale(0.7);
    -o-transform:      scale(0.7);
    transform:         scale(0.7);

    -webkit-transition-delay: 0.5s;
    -moz-transition-delay:    0.5s;
    -ms-transition-delay:     0.5s;
    -o-transition-delay:      0.5s;
    transition-delay:         0.5s;
}

#backend.present .positioning-neutral-bot {
    -webkit-transform: translateY(20px);
    -moz-transform:    translateY(20px);
    -ms-transform:     translateY(20px);
    -o-transform:      translateY(20px);
    transform:         translateY(20px);
}

#backend.present img {

    position: fixed;
    top: 130%;
    right:  37.5%;
    width: 25%;
    height: 25%;
    
    -webkit-transform: translateY(-60%);
    -moz-transform:    translateY(-60%);
    -ms-transform:     translateY(-60%);
    -o-transform:      translateY(-60%);
    transform:         translateY(-60%);

    -webkit-transition-delay: 1s;
    -moz-transition-delay:    1s;
    -ms-transition-delay:     1s;
    -o-transition-delay:      1s;
    transition-delay:         1s;

    content: url("../assets/golang.png");
}

#frontend {
    font-family: 'Notes-BoldTf', sans-serif;
    width: 1000px;
    color: var(--grey-900);
    width: 700px;
    text-align: center;
    font-size: 60px;
    line-height: 1;
}

#frontend h1{
    font-size: 80px;
    margin-bottom: 50px;
}

/*
    ... so we define display to `inline-block` to enable transforms and
    transition duration to 0.5s ...
*/
#frontend b {
    display: inline-block;
    -webkit-transition: 0.5s;
    -moz-transition:    0.5s;
    -ms-transition:     0.5s;
    -o-transition:      0.5s;
    transition:         0.5s;
}

#frontend.present .positioning-left {
    -webkit-transform: translate(-20px, 0px) rotate(-5deg);
    -moz-transform:    translate(-20px, 0px) rotate(-5deg);
    -ms-transform:     translate(-20px, 0px) rotate(-5deg);
    -o-transform:      translate(-20px, 0px) rotate(-5deg);
    transform:         translate(-20px, 0px) rotate(-5deg);
}

#frontend.present .positioning-left-top {
    -webkit-transform: translate(-20px, -20px);
    -moz-transform:    translate(-20px, -20px);
    -ms-transform:     translate(-20px, -20px);
    -o-transform:      translate(-20px, -20px);
    transform:         translate(-20px, -20px);
}

#frontend.present .positioning-left-bot {
    -webkit-transform: translate(-20px, 40px) rotate(5deg);
    -moz-transform:    translate(-20px, 40px) rotate(5deg);
    -ms-transform:     translate(-20px, 40px) rotate(5deg);
    -o-transform:      translate(-20px, 40px) rotate(5deg);
    transform:         translate(-20px, 40px) rotate(5deg);
}

#frontend.present .positioning-right {
    -webkit-transform: translate(20px, 0px) rotate(5deg);
    -moz-transform:    translate(20px, 0px) rotate(5deg);
    -ms-transform:     translate(20px, 0px) rotate(5deg);
    -o-transform:      translate(20px, 0px) rotate(5deg);
    transform:         translate(20px, 0px) rotate(5deg);
}

#frontend.present .positioning-right-top {
    -webkit-transform: translate(20px, -20px);
    -moz-transform:    translate(20px, -20px);
    -ms-transform:     translate(20px, -20px);
    -o-transform:      translate(20px, -20px);
    transform:         translate(20px, -20px);
}

#frontend.present .positioning-right-bot {
    -webkit-transform: translate(20px, 20px);
    -moz-transform:    translate(20px, 20px);
    -ms-transform:     translate(20px, 20px);
    -o-transform:      translate(20px, 20px);
    transform:         translate(20px, 20px);
}

#frontend.present .positioning-top {
    -webkit-transform: translateY(-10px);
    -moz-transform:    translateY(-10px);
    -ms-transform:     translateY(-10px);
    -o-transform:      translateY(-10px);
    transform:         translateY(-10px);
}

#frontend.present .positioning-bot {
    -webkit-transform: translateY(30px) rotate(-5deg);
    -moz-transform:    translateY(30px) rotate(-5deg);
    -ms-transform:     translateY(30px) rotate(-5deg);
    -o-transform:      translateY(30px) rotate(-5deg);
    transform:         translateY(30px) rotate(-5deg);
}

#frontend.present .positioning-neutral-bot {
    -webkit-transform: translateY(20px);
    -moz-transform:    translateY(20px);
    -ms-transform:     translateY(20px);
    -o-transform:      translateY(20px);
    transform:         translateY(20px);
}

/*
    ... 'rotating' to rotate a quarter of a second later ...
*/
#frontend.present .rotating-left {
    -webkit-transform: rotate(-5deg);
    -moz-transform:    rotate(-5deg);
    -ms-transform:     rotate(-5deg);
    -o-transform:      rotate(-5deg);
    transform:         rotate(-5deg);

    -webkit-transition-delay: 0.25s;
    -moz-transition-delay:    0.25s;
    -ms-transition-delay:     0.25s;
    -o-transition-delay:      0.25s;
    transition-delay:         0.25s;
}

#frontend.present .rotating-right {
    -webkit-transform: rotate(5deg);
    -moz-transform:    rotate(5deg);
    -ms-transform:     rotate(5deg);
    -o-transform:      rotate(5deg);
    transform:         rotate(5deg);

    -webkit-transition-delay: 0.25s;
    -moz-transition-delay:    0.25s;
    -ms-transition-delay:     0.25s;
    -o-transition-delay:      0.25s;
    transition-delay:         0.25s;
}

#frontend.present .scaling-down {
    -webkit-transform: scale(0.7);
    -moz-transform:    scale(0.7);
    -ms-transform:     scale(0.7);
    -o-transform:      scale(0.7);
    transform:         scale(0.7);

    -webkit-transition-delay: 0.5s;
    -moz-transition-delay:    0.5s;
    -ms-transition-delay:     0.5s;
    -o-transition-delay:      0.5s;
    transition-delay:         0.5s;
}

#social-benefits {
    font-family: 'Notes-BoldTf', sans-serif;
    width: 1000px;
    color: var(--grey-900);
    width: 700px;
    text-align: center;
    font-size: 60px;
    line-height: 1;
}

#social-benefits h1{
    font-size: 80px;
    margin-bottom: 50px;
}

/*
    ... so we define display to `inline-block` to enable transforms and
    transition duration to 0.5s ...
*/
#social-benefits b {
    display: inline-block;
    -webkit-transition: 0.5s;
    -moz-transition:    0.5s;
    -ms-transition:     0.5s;
    -o-transition:      0.5s;
    transition:         0.5s;
}

#social-benefits.present .positioning-left {
    -webkit-transform: translate(-40px, 0px) rotate(-1deg);
    -moz-transform:    translate(-40px, 0px) rotate(-1deg);
    -ms-transform:     translate(-40px, 0px) rotate(-1deg);
    -o-transform:      translate(-40px, 0px) rotate(-1deg);
    transform:         translate(-40px, 0px) rotate(-1deg);
}

#social-benefits.present .positioning-left-top {
    -webkit-transform: translate(-20px, -20px);
    -moz-transform:    translate(-20px, -20px);
    -ms-transform:     translate(-20px, -20px);
    -o-transform:      translate(-20px, -20px);
    transform:         translate(-20px, -20px);
}

#social-benefits.present .positioning-left-bot {
    -webkit-transform: translate(-20px, 40px) rotate(3deg);
    -moz-transform:    translate(-20px, 40px) rotate(3deg);
    -ms-transform:     translate(-20px, 40px) rotate(4deg);
    -o-transform:      translate(-20px, 40px) rotate(3deg);
    transform:         translate(-20px, 40px) rotate(3deg);
}

#social-benefits.present .positioning-right {
    -webkit-transform: translate(40px, 20px) rotate(1deg);
    -moz-transform:    translate(40px, 20px) rotate(1deg);
    -ms-transform:     translate(40px, 20px) rotate(1deg);
    -o-transform:      translate(40px, 20px) rotate(1deg);
    transform:         translate(40px, 20px) rotate(1deg);
}

#social-benefits.present .positioning-right-top {
    -webkit-transform: translate(20px, -20px);
    -moz-transform:    translate(20px, -20px);
    -ms-transform:     translate(20px, -20px);
    -o-transform:      translate(20px, -20px);
    transform:         translate(20px, -20px);
}

#social-benefits.present .positioning-right-bot {
    -webkit-transform: translate(30px, 50px);
    -moz-transform:    translate(30px, 50px);
    -ms-transform:     translate(30px, 50px);
    -o-transform:      translate(30px, 50px);
    transform:         translate(30px, 50px);
}

#social-benefits.present .positioning-top {
    -webkit-transform: translateY(-10px);
    -moz-transform:    translateY(-10px);
    -ms-transform:     translateY(-10px);
    -o-transform:      translateY(-10px);
    transform:         translateY(-10px);
}

#social-benefits.present .positioning-bot {
    -webkit-transform: translateY(40px) rotate(-2deg);
    -moz-transform:    translateY(40px) rotate(-2deg);
    -ms-transform:     translateY(40px) rotate(-2deg);
    -o-transform:      translateY(40px) rotate(-2deg);
    transform:         translateY(40px) rotate(-2deg);
}

#social-benefits.present .positioning-neutral-bot {
    -webkit-transform: translateY(30px) scale(1.3);
    -moz-transform:    translateY(30px) scale(1.3);
    -ms-transform:     translateY(30px) scale(1.3);
    -o-transform:      translateY(30px) scale(1.3);
    transform:         translateY(30px) scale(1.3);
}

/*
    ... 'rotating' to rotate a quarter of a second later ...
*/
#social-benefits.present .rotating-left {
    -webkit-transform: rotate(-5deg);
    -moz-transform:    rotate(-5deg);
    -ms-transform:     rotate(-5deg);
    -o-transform:      rotate(-5deg);
    transform:         rotate(-5deg);

    -webkit-transition-delay: 0.25s;
    -moz-transition-delay:    0.25s;
    -ms-transition-delay:     0.25s;
    -o-transition-delay:      0.25s;
    transition-delay:         0.25s;
}

#social-benefits.present .rotating-right {
    -webkit-transform: rotate(5deg);
    -moz-transform:    rotate(5deg);
    -ms-transform:     rotate(5deg);
    -o-transform:      rotate(5deg);
    transform:         rotate(5deg);

    -webkit-transition-delay: 0.25s;
    -moz-transition-delay:    0.25s;
    -ms-transition-delay:     0.25s;
    -o-transition-delay:      0.25s;
    transition-delay:         0.25s;
}

#social-benefits.present .scaling-down {
    -webkit-transform: scale(0.7);
    -moz-transform:    scale(0.7);
    -ms-transform:     scale(0.7);
    -o-transform:      scale(0.7);
    transform:         scale(0.7);

    -webkit-transition-delay: 0.5s;
    -moz-transition-delay:    0.5s;
    -ms-transition-delay:     0.5s;
    -o-transition-delay:      0.5s;
    transition-delay:         0.5s;
}

#dev-benefits {
    font-family: 'Notes-BoldTf', sans-serif;
    width: 1000px;
    color: var(--grey-900);
    width: 700px;
    text-align: center;
    font-size: 60px;
    line-height: 1;
}

#dev-benefits h1{
    font-size: 80px;
    margin-bottom: 50px;
}

/*
    ... so we define display to `inline-block` to enable transforms and
    transition duration to 0.5s ...
*/
#dev-benefits b {
    display: inline-block;
    -webkit-transition: 0.5s;
    -moz-transition:    0.5s;
    -ms-transition:     0.5s;
    -o-transition:      0.5s;
    transition:         0.5s;
}

#dev-benefits.present .positioning-left {
    -webkit-transform: translate(-40px, 10px) rotate(3deg);
    -moz-transform:    translate(-40px, 10px) rotate(3deg);
    -ms-transform:     translate(-40px, 10px) rotate(3deg);
    -o-transform:      translate(-40px, 10px) rotate(3deg);
    transform:         translate(-40px, 10px) rotate(3deg);
}

#dev-benefits.present .positioning-left-top {
    -webkit-transform: translate(-20px, -10px) rotate(-3deg);
    -moz-transform:    translate(-20px, -10px) rotate(-3deg);
    -ms-transform:     translate(-20px, -10px) rotate(-3deg);
    -o-transform:      translate(-20px, -10px) rotate(-3deg);
    transform:         translate(-20px, -10px) rotate(-3deg);
}

#dev-benefits.present .positioning-left-bot {
    -webkit-transform: translate(-20px, 40px) rotate(3deg);
    -moz-transform:    translate(-20px, 40px) rotate(3deg);
    -ms-transform:     translate(-20px, 40px) rotate(4deg);
    -o-transform:      translate(-20px, 40px) rotate(3deg);
    transform:         translate(-20px, 40px) rotate(3deg);
}

#dev-benefits.present .positioning-right {
    -webkit-transform: translate(40px, 10px) rotate(1deg);
    -moz-transform:    translate(40px, 10px) rotate(1deg);
    -ms-transform:     translate(40px, 10px) rotate(1deg);
    -o-transform:      translate(40px, 10px) rotate(1deg);
    transform:         translate(40px, 10px) rotate(1deg);
}

#dev-benefits.present .positioning-right-top {
    -webkit-transform: translate(20px, -20px);
    -moz-transform:    translate(20px, -20px);
    -ms-transform:     translate(20px, -20px);
    -o-transform:      translate(20px, -20px);
    transform:         translate(20px, -20px);
}

#dev-benefits.present .positioning-right-bot {
    -webkit-transform: translate(30px, 50px);
    -moz-transform:    translate(30px, 50px);
    -ms-transform:     translate(30px, 50px);
    -o-transform:      translate(30px, 50px);
    transform:         translate(30px, 50px);
}

#dev-benefits.present .positioning-top {
    -webkit-transform: translateY(-10px);
    -moz-transform:    translateY(-10px);
    -ms-transform:     translateY(-10px);
    -o-transform:      translateY(-10px);
    transform:         translateY(-10px);
}

#dev-benefits.present .positioning-bot {
    -webkit-transform: translateY(40px) rotate(-2deg);
    -moz-transform:    translateY(40px) rotate(-2deg);
    -ms-transform:     translateY(40px) rotate(-2deg);
    -o-transform:      translateY(40px) rotate(-2deg);
    transform:         translateY(40px) rotate(-2deg);
}

#dev-benefits.present .positioning-neutral-bot {
    -webkit-transform: translateY(30px) scale(1.3);
    -moz-transform:    translateY(30px) scale(1.3);
    -ms-transform:     translateY(30px) scale(1.3);
    -o-transform:      translateY(30px) scale(1.3);
    transform:         translateY(30px) scale(1.3);
}

/*
    ... 'rotating' to rotate a quarter of a second later ...
*/
#dev-benefits.present .rotating-left {
    -webkit-transform: rotate(-5deg);
    -moz-transform:    rotate(-5deg);
    -ms-transform:     rotate(-5deg);
    -o-transform:      rotate(-5deg);
    transform:         rotate(-5deg);

    -webkit-transition-delay: 0.25s;
    -moz-transition-delay:    0.25s;
    -ms-transition-delay:     0.25s;
    -o-transition-delay:      0.25s;
    transition-delay:         0.25s;
}

#dev-benefits.present .rotating-right {
    -webkit-transform: rotate(5deg);
    -moz-transform:    rotate(5deg);
    -ms-transform:     rotate(5deg);
    -o-transform:      rotate(5deg);
    transform:         rotate(5deg);

    -webkit-transition-delay: 0.25s;
    -moz-transition-delay:    0.25s;
    -ms-transition-delay:     0.25s;
    -o-transition-delay:      0.25s;
    transition-delay:         0.25s;
}

#dev-benefits.present .scaling-down {
    -webkit-transform: scale(0.7);
    -moz-transform:    scale(0.7);
    -ms-transform:     scale(0.7);
    -o-transform:      scale(0.7);
    transform:         scale(0.7);

    -webkit-transition-delay: 0.5s;
    -moz-transition-delay:    0.5s;
    -ms-transition-delay:     0.5s;
    -o-transition-delay:      0.5s;
    transition-delay:         0.5s;
}

#imagination {
    width: 600px;
}

#imagination .imagination {
    font-size: 78px;
}

#contact {
    width: 700px;
    /* padding-bottom: 400px; */

    /* Yoda Icon :: Pixel Art from Star Wars http://www.pixeljoint.com/pixelart/1423.htm */
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAARgAAAEYCAMAAACwUBm+AAAAAXNSR0IArs4c6QAAAKtQTFRFsAAAvbWSLUUrLEQqY1s8UYJMqJ1vNTEgOiIdIzYhjIFVLhsXZ6lgSEIsP2U8JhcCVzMsSXZEgXdOO145XJdWOl03LzAYMk4vSXNExr+hwcuxRTs1Qmk+RW9Am49eFRANQz4pUoNMQWc+OSMDTz0wLBsCNVMxa2NBOyUDUoNNSnlEWo9VRGxAVzYFl6tXCggHbLNmMUIcHhwTXkk5f3VNRT8wUT8xAAAACQocRBWFFwAAAAF0Uk5TAEDm2GYAAAPCSURBVHja7d3JctNAFIZRMwRCCGEmzPM8z/D+T8bu/ptbXXJFdij5fMt2Wuo+2UgqxVmtttq5WVotLzBgwIABAwYMGDCn0qVqbo69psPqVpWx+1XG5iaavF8wYMCAAQMGDBgwi4DJ6Y6qkxB1HNlcN3a92gbR5P2CAQMGDBgwYMCAWSxMlrU+UY5yu2l9okfV4bAxUVbf7TJnAwMGDBgwYMCAAbMLMHeqbGR82Zy+VR1Ht81nVca6R+UdTLaU24Ruzd3qM/e4yjnAgAEDBgwYMGDA7AJMd1l/3NRdVGcj3eX/2WEhCmDGxnM7yqygu8XIPjJj8iN/MGDAgAEDBgwYMAuDGb8q0RGlLCHLv1t9qDKWn3vdNHVuEI6HPaxO9Jo3GDBgwIABAwYMmIXBdC9ShGgMk+XnkXUeuGcsP/e1+lhNnZsL/G5Vs3OAAQMGDBgwYMCAWSxMR3SzOmraG5atdy9wZKzb+vg16qyqe2FltbnAgAEDBgwYMGDALAxmTJSuN3WA76rnVca6GTnemGN1WoEBAwYMGDBgwIBZGMxUomy4+xO899V4LAg5Xnc2MGDAgAEDBgwYMGA218Wq+2K1LDqvY9xZu8zN8fICdM6btYABAwYMGDBgwIABMzfH0+pGU5afze2tXebmeAfVz+p8BQYMGDBgwIABAwbMPBzZ+oWmfJrln1273FhkbHzee9WWbw7AgAEDBgwYMGDALAKm43hcdctKgblcPamOhuXnXlY5Xs6bsW4FGyQCAwYMGDBgwIABswiYMceZKgvMo+h8mrHLTdn676rj+FEFoTtHd8MwOxEYMGDAgAEDBgyYRcBM5UhXqiymW3R3c9ARhWO/OmjqfjVZy+xEYMCAAQMGDBgwYBYG073OnCV0RFNhMhaOa9WfKmOB6XjHMN1tQmaAAQMGDBgwYMCA2VWY7vXjz1U4croAzgPztwIDBgwYMGDAgAEDZhswh035NBw59Dww3RgYMGDAgAEDBgwYMJuD6f4tXT7NUqfCdBvZLkxXdgQGDBgwYMCAAQNmt2DGj8WzwAfV/w7T/aq7mxwwYMCAAQMGDBgwuwqTOo7uTwTngflSzQ3TdaJvAwEDBgwYMGDAgAED5gSvgbyo5oHZ4Pc+gwEDBgwYMGDAgAEzhOm+5G0qTGaAAQMGDBgwYMCAAXNaMOcnls3tNwWm+zRzp54NDBgwYMCAAQMGDJh5YNL36k1TLuGvVq+qnKMbS5n7tulT9asCAwYMGDBgwIABA2ZumKuztLnjgQEDBgwYMGDAgNl5mH/4/ltKA6vBNAAAAABJRU5ErkJggg==);
    background-position: bottom center;
    background-size: 15%;
    background-repeat: no-repeat;
    font-family: 'Notes-BoldTf', sans-serif;
    color: var(--grey-900);
    text-align: center;
    font-size: 60px;
    line-height: 1;
}

#contact .qr-container {
    margin-top: 10%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#contact .qr-left-container {
    padding-right: 5%;
}

#contact .qr-left {
    width: 50%;
    height: 50%;
    content: url("../assets/qr_torsten.png");
}

#contact .qr-caption-left {
    font-size: 24px;
}

#contact .qr-right-container {
    padding-left: 5%;
}

#contact .qr-right {
    width: 50%;
    height: 50%;
    content: url("../assets/qr_clemens.png");
}

#contact .qr-caption-right {
    font-size: 24px;
}

/*
    We also make other steps visible and give them a pointer cursor using the
    `impress-on-` class.
*/
.impress-on-overview .step {
    opacity: 1;
    cursor: pointer;
}

/*
    This version of impress.js supports plugins, and in particular, a UI toolbar
    plugin that allows easy navigation between steps and autoplay.
*/
.impress-enabled div#impress-toolbar {
    position: fixed;
    right: 1px;
    bottom: 1px;
    opacity: 0.6;
}
.impress-enabled div#impress-toolbar > span {
    margin-right: 10px;
}

/*
    With help from the mouse-timeout plugin, we can hide the toolbar and
    have it show only when you move/click/touch the mouse.
*/
body.impress-mouse-timeout div#impress-toolbar {
    display: none;
}

/*
    In fact, we can hide the mouse cursor itself too, when mouse isn't used.
*/
body.impress-mouse-timeout {
    cursor: none;
}

.hint {
    /*
        We hide the hint until presentation is started and from browsers not supporting
        impress.js, as they will have a linear scrollable view ...
    */
    display: none;

    /*
        ... and give it some fixed position and nice styles.
    */
    position: fixed;
    left: 0;
    right: 0;
    bottom: 200px;

    background: rgba(0,0,0,0.5);
    color: #EEE;
    text-align: center;

    font-size: 50px;
    padding: 20px;

    z-index: 100;

    /*
        By default we don't want the hint to be visible, so we make it transparent ...
    */
    opacity: 0;

    /*
        ... and position it below the bottom of the screen (relative to it's fixed position)
    */
    -webkit-transform: translateY(400px);
    -moz-transform:    translateY(400px);
    -ms-transform:     translateY(400px);
    -o-transform:      translateY(400px);
    transform:         translateY(400px);

    /*
        Now let's imagine that the hint is visible and we want to fade it out and move out
        of the screen.

        So we define the transition on the opacity property with 1s duration and another
        transition on transform property delayed by 1s so it will happen after the fade out
        on opacity finished.

        This way user will not see the hint moving down.
    */
    -webkit-transition: opacity 1s, -webkit-transform 0.5s 1s;
    -moz-transition:    opacity 1s,    -moz-transform 0.5s 1s;
    -ms-transition:     opacity 1s,     -ms-transform 0.5s 1s;
    -o-transition:      opacity 1s,      -o-transform 0.5s 1s;
    transition:         opacity 1s,         transform 0.5s 1s;
}

/*
    Now we 'enable' the hint when presentation is initialized ...
*/
.impress-enabled .hint { display: block }

/*
    ... and we will show it when the first step (with id 'bored') is active.
*/
.impress-on-bored .hint {
    /*
        We remove the transparency and position the hint in its default fixed
        position.
    */
    opacity: 1;

    -webkit-transform: translateY(0px);
    -moz-transform:    translateY(0px);
    -ms-transform:     translateY(0px);
    -o-transform:      translateY(0px);
    transform:         translateY(0px);

    /*
        Now for fade in transition we have the oposite situation from the one
        above.

        First after 4.5s delay we animate the transform property to move the hint
        into its correct position and after that we fade it in with opacity
        transition.
    */
    -webkit-transition: opacity 1s 5s, -webkit-transform 0.5s 4.5s;
    -moz-transition:    opacity 1s 5s,    -moz-transform 0.5s 4.5s;
    -ms-transition:     opacity 1s 5s,     -ms-transform 0.5s 4.5s;
    -o-transition:      opacity 1s 5s,      -o-transform 0.5s 4.5s;
    transition:         opacity 1s 5s,         transform 0.5s 4.5s;
}

/*
    And as the last thing there is a workaround for quite strange bug.
    It happens a lot in Chrome. I don't remember if I've seen it in Firefox.

    Sometimes the element positioned in 3D (especially when it's moved back
    along Z axis) is not clickable, because it falls 'behind' the <body>
    element.

    To prevent this, I decided to make <body> non clickable by setting
    pointer-events property to `none` value.
    Value if this property is inherited, so to make everything else clickable
    I bring it back on the #impress element.

    If you want to know more about `pointer-events` here are some docs:
    https://developer.mozilla.org/en/CSS/pointer-events

    There is one very important thing to notice about this workaround - it makes
    everything 'unclickable' except what's in #impress element.

    So use it wisely ... or don't use at all.
*/
.impress-enabled                          { pointer-events: none }
.impress-enabled #impress                 { pointer-events: auto }
.impress-enabled #impress-toolbar         { pointer-events: auto }
.impress-enabled #impress-console-button  { pointer-events: auto }
/*
    There is one funny thing I just realized.

    Thanks to this workaround above everything except #impress element is invisible
    for click events. That means that the hint element is also not clickable.
    So basically all of this transforms and delayed transitions trickery was probably
    not needed at all...

    But it was fun to learn about it, wasn't it?
*/

/*
    That's all I have for you in this file.
    Thanks for reading. I hope you enjoyed it at least as much as I enjoyed writing it
    for you.
*/
