
:root {
    --bg-color: rgba(0,0,0,.5);
    --bg-color-dark: rgba(0,0,0,1);
    --bg-color-dark-op0: rgba(0,0,0,0);
    --accent-color1: #8200B6;
    --accent-color1-op0: #8200B600;
    --accent-color2: #4BC7D5;
    --accent-color2-op0: #4BC7D500;
    --accent-light: rgb(200,200,200);
    --accent1-gradient: linear-gradient(180deg, #000 50%,#8200B6 300%);
    --accent2-gradient: linear-gradient(180deg, #000 50%, #4BC7D5 300%);
    --mixed-gradient: linear-gradient(25deg, #8200B6, #4BC7D5);
    --mixed-gradient-dark: linear-gradient(25deg, #480164, #266a72);
    --btn-color1: var(--accent-gradient);
}

#root {
    height: 100%;
}

html {
    background-color: #0A0A0A;
    color: #EEE;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
}

body {
    padding: 0px;
    margin: 0px;
}

.page {
    width: 100%;
    height: calc(100%);
    overflow-y: auto;
    scrollbar-width: 0px;
    position: relative;
}

    .page .pageInner {
        margin-left: auto;
        margin-right: auto;
    }

    .page::-webkit-scrollbar {
        display: none;
    }

.fullBack {
    background-position: center;
    width: 100%;
    height: 100%;
    background-size: cover;
    position: fixed;
    top: 50%;
    left: 0px;
    z-index: -2;
    filter: blur(10px) brightness(0.2);
    background-position: center;
    transform: translateY(-50%);
}

.pageFadeOut {
    animation: pageFadeOut var(--fo) linear;
}

.pageFadeIn {
    animation: FadeIn var(--fi) linear;
    opacity: 1;
}

.fadeIn5cs {
    animation: FadeIn 0.5 linear;
    opacity: 1;
}

.moveX5cs {
    animation: MoveX 0.5 linear;
    transform: translateX(0px);
}

.moveY5cs {
    animation: MoveY 0.5 linear;
    transform: translateY(0px);
}

.fill {
    width: 100%;
    height: 100%;
}

.fillW {
    width: 100%;
}

.fillH {
    height: 100%;
}

.chip {
    padding: 2px;
    background: var(--mixed-gradient);
    border-radius: 30px;
    margin-right: 6px;
    padding-left: 15px;
    padding-right: 15px;
    text-shadow: 1px 1px 2px black;
    font-size: 20px;
    white-space: nowrap;
    box-shadow: 0px -1px 2px black;
}

#menuBar {
    position: absolute;
    bottom: 0px;
    width: 100%;
    left: 0px;
    text-align: center;
    z-index: 999;
}

.menuBarItem {
    width: 150px;
    margin-left: 25px;
    margin-right: 25px;
    display: inline-block;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: lighter;
    font-size: 20px;
    cursor: pointer;
    position: relative;
    text-decoration: inherit;
    color: white;
}

    .menuBarItem .menuActive {
        display: none;
    }

    .menuBarItem.active .menuActive {
        display: block;
        position: absolute;
        bottom: -0px;
        width: 100%;
        height: 5px;
        background: var(--mixed-gradient);
        z-index: -1;
        filter: blur(10px);
        border-radius: 50px;
        animation: FadeIn 0.5s linear;
    }

#root.resting #menuBar {
    --movey: 100px;
    animation: MoveY var(--tdi) ease;
}

#root.transitioning #menuBar {
    --movey: 100px;
    animation: MoveYR var(--tdo) ease;
    transform: translateY(100px);
}

.centerContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .centerContainer .center {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

.pageLogo {
    text-align: center;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    height: 40px;
    cursor: pointer;
    display: block;
}

    .pageLogo img {
        left: calc(50% - 132px);
        position: absolute;
        height: 40px;
        --movey: -50px;
        animation: MoveY 1.0s ease, FadeIn 2.0s ease;
    }

    .pageLogo .logoBack {
        position: absolute;
        left: calc(50% - 132px);
        z-index: -1;
        animation: logoPulse 6s linear infinite, MoveY 1.0s ease, FadeIn 2.0s ease;
    }

.page.pageFadeOut .pageLogo img {
    --movey: -50px;
    animation: MoveYR 1.0s ease, FadeOut 1.0s ease;
}

.page.pageFadeOut .pageLogo .logoBack {
    --movey: -50px;
    animation: logoPulse 6s linear infinite, MoveYR 1.0s ease, FadeOut 1.0s ease;
}

.page.pageFadeOut .pFadeOut {
    animation: FadeOut 1.0s ease;
}

.page.pageFadeIn .pFadeIn {
    animation: FadeIn 1.0s ease;
}

/*Landing*/
.logo {
}

.logoBack {
    z-index: -1;
    animation: logoPulse 6s linear infinite;
}

@keyframes logoPulse {
    0% {
        filter: blur(0px);
    }

    50% {
        filter: blur(10px);
    }

    100% {
        filter: blur(0px);
    }
}

.pageLanding {
    animation: FadeIn 2s linear;
}

    .pageLanding .subtitle {
        font-size: 35px;
        margin-top: 35px;
        font-weight: lighter;
    }

    .pageLanding .subsubtitle {
        margin-top: 7px;
        font-weight: lighter;
        font-size: 18px;
        opacity: 0.4;
    }

/*About*/

.pageAbout {
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

    .pageAbout .title {
        font-size: 35px;
        font-weight: lighter;
        text-align: center;
        margin-top: 0px;
    }

    .pageAbout .subtitle {
        font-size: 20px;
        font-weight: lighter;
        text-align: center;
        margin-top: 5px;
    }

    .pageAbout .description {
        font-size: 17px;
        text-align: center;
        margin-top: 10px;
    }

/*
.aboutBlockLeft{
    width: calc(50% - 160px);
    background-color:rgba(0,0,0,.5);
    margin: 40px;
    padding: 40px;
    bottom: 0px;
    left: 0px;
    --movex: -200px;
    animation: MoveX 1s ease, FadeIn 1s ease;
    border-radius: 20px;

    position: absolute;
}
.aboutBlockRight{
    width: calc(80% - 160px);
    background-color:rgba(0,0,0,.5);
    margin: 40px;
    padding: 40px;
    bottom: 0px;
    right: 0px;
    --movex: 200px;
    animation: MoveX 1s ease, FadeIn 1s ease;
    border-radius: 5px;

    position: absolute;
}*/

.aboutBlock {
    width: calc(80% - 160px);
    padding: 40px;
    bottom: 0px;
    right: 0px;
    --movey: 100px;
    animation: MoveY 1s ease, FadeIn 1s ease;
    border-radius: 5px;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

.aboutBlockStaff {
    margin-bottom: 50px;
}

.aboutBlockStaff .staffContainer{
    text-align: center;
}
    .aboutBlockStaff .staff {
        height: 290px;
        display: inline-block;
        width: 220px;
        margin: 10px;
        text-align: left;
        background-color: rgba(0,0,0,.5);
        text-align: center;
        padding: 20px;
        border-radius: 10px;
        transition: transform 0.5s ease;
        cursor: pointer;
    }
    .aboutBlockStaff .staff:hover {
        transform: scale(1.05);
    }
    .aboutBlockStaff .staff .image {
        border-radius: 100px;
        overflow: hidden;
        width: 150px;
        height: 150px;
        display: inline-block;
    }
    .aboutBlockStaff .staff .name{
        text-align: left;
        font-size: 20px;
        margin-top: 20px;
        text-align: center;
    }
    .aboutBlockStaff .staff .title{
        text-align: left;
        font-size: 15px;
        text-align: center;
    }

    .aboutBlockStaff .links {
        margin-top: 10px;
        animation: FadeIn 1s ease;
        text-align: left;
    }
        .aboutBlockStaff .links .link {
            color: #EEE;
            margin-top: 5px;
        }
            .aboutBlockStaff .links .link .logo {
                color: #EEE;
                display: inline-block;
                vertical-align: middle;
                height: 26px;
                margin-right: 5px;
            }
            .aboutBlockStaff .links .link .text {
                color: #AAAAAA;
                display: inline-block;
                vertical-align: middle;
                font-weight: lighter;
                font-size: 18px;
            }
            .aboutBlockStaff .links .link a {
                color: #55F;
                text-decoration: none;
            }

.companiesContainer {
    background-color: rgba(0,0,0,.35);
    padding-top: 0px;
    padding-bottom: 0px;
    width: calc(100% - 80px);
    border-radius: 15px;
    margin-left: 40px;
    margin-right: 40px;
    --movey: 100px;
    animation: MoveY 1s ease, FadeIn 1s linear;
    overflow: hidden;
}

.aboutBlockTop {
    position: relative;
    /*height: calc(100% - 300px); */
    margin-bottom: 80px;
}

@media (orientation: portrait) {
    .aboutBlockLeft {
        width: calc(100% - 160px);
        position: relative;
    }

    .aboutBlockRight {
        width: calc(100% - 160px);
        position: relative;
    }

    .aboutBlockTop {
        height: auto;
    }
}

.company {
    display: inline-block;
    width: 200px;
    height: 110px;
    text-align: center;
    margin: 10px;
    margin-left: 30px;
    margin-right: 30px;
    vertical-align: top;
}

    .company .logoContainer {
        height: 100px;
        width: 200px;
        display: grid;
        place-items: center;
    }

    .company img {
        max-width: 100%;
        max-height: 100px;
        vertical-align: middle;
    }

.infiniscroll {
    animation: infiniscroll 25s linear infinite;
    display: flex;
}

.fadedSides {
    position: relative;
    overflow: hidden;
}

.fadeSide.left {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 25%;
    background-image: linear-gradient(to right,var(--bg-color-dark) 0%,var(--bg-color-dark-op0) 100%);
    z-index: 999;
}

.fadeSide.right {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100%;
    width: 25%;
    background-image: linear-gradient(to left,var(--bg-color-dark) 0%,var(--bg-color-dark-op0) 100%);
    z-index: 999;
}

@keyframes infiniscroll {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(var(--infiniWidth)) /*translateX(calc(260px * -16))*/
    }
}


/*Cases*/
.pageCases {
    overflow-y: hidden;
}

.cases {
    width: 100%;
    white-space: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;
    overflow-y: hidden;
}

    .cases::-webkit-scrollbar {
        display: none;
    }

.case {
    width: 400px;
    height: calc(100% - 80px);
    max-height: 600px;
    padding: 20px;
    display: inline-block;
    vertical-align: top;
    margin-left: 40px;
    white-space: normal;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    --marginstart: 40px;
    --marginx: 500px;
    animation: MarginX 1.2s ease, FadeIn 1.0s linear;
    cursor: pointer;
    margin-top: 20px;
    text-align: left;
    user-select: none;
    transition: transform 0.5s ease;
}

    .case:hover {
        transform: scale(1.05);
    }

.caseSpacer {
    display: inline-block;
    margin-left: 20%;
}

.page.pageFadeOut .case {
    --marginstart: 40px;
    --marginx: 700px;
    animation: MarginXR 1s linear, FadeIn var(--tdo) linear;
}

.case .title {
    font-size: 35px;
    font-weight: lighter;
}

.case .description {
    margin-top: 10px;
    font-size: 16px;
}

.case .subtitle {
    margin-top: 10px;
    font-size: 16px;
}

.case .background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-size: cover;
    z-index: -1;
    filter: brightness(0.20);
}

.case .openText {
    opacity: 0.1;
    bottom: 10px;
    left: 0px;
    position: absolute;
    width: 100%;
    text-align: center;
}

.caseArrow {
    margin: 10px;
    cursor: pointer;
    opacity: 0.2;
    height: 40px;
    margin-bottom: 10px;
    margin-left: 20px;
    margin-right: 20px;
    transition: opacity 0.5s ease;
}

@media (min-height: 1400px) {
    .caseSpacer {
    }

    .cases {
        margin-top: calc(50% - 200px);
    }

    .vCaseSpacer {
        height: calc(50% - 450px);
    }

    .case {
        --movex: 400px;
        animation: MoveX 1.2s ease, FadeIn 1.0s linear;
    }

    .caseArrow {
        margin-bottom: 10%;
    }

    .page.pageFadeOut .case {
        --movex: 400px;
        animation: MoveXR 1s linear, FadeIn var(--tdo) linear;
    }
}

/*Staff*/
.pageStaff {
    animation: FadeIn 2s linear;
}
    .pageStaff .header {
        text-align: center;
    }
    .pageStaff .pageLogo {
        height: 140px;
    }
    .pageStaff .pageLogo img {
        height: 88px !important;
        left: calc(50% - 290px) !important;
        top: 80px !important;
    }

    .pageStaff .subtitle {
        font-size: 35px;
        font-weight: lighter;
        margin-top: 5px;
        --movey: -50px;
        animation: MoveY 1.0s ease, FadeIn 2.0s ease;
    }

    .pageStaff .subsubtitle {
        margin-top: 3px;
        font-weight: lighter;
        font-size: 22px;
        color: #999999;
        --movey: -50px;
        animation: MoveY 1.0s ease, FadeIn 2.0s ease;
    }

    .pageStaff .person {
        width: 860px;
        position: relative;
        margin-left: auto;
        margin-right: auto;
        margin-top: 70px;
        height: 250px;
        animation: FadeIn 1.5s linear;
    }

.pageStaff .avatarSection {
    width: 220px;
    position: absolute;
    left: 0px;
}
        .pageStaff .avatarSection .avatar {
            border-radius: 100px;
            overflow: hidden;
            width: 185px;
            height: 185px;
        }
    .pageStaff .avatarSection .links {
        margin-top: 10px;
        animation: FadeIn 1s ease;
    }

        .pageStaff .avatarSection .links .link {
            color: #EEE;
            margin-top: 5px;
        }

            .pageStaff .avatarSection .links .link .logo {
                color: #EEE;
                display: inline-block;
                vertical-align: middle;
                height: 26px;
                margin-right: 5px;
            }

            .pageStaff .avatarSection .links .link .text {
                color: #AAAAAA;
                display: inline-block;
                vertical-align: middle;
                font-weight: lighter;
                font-size: 18px;
            }

            .pageStaff .avatarSection .links .link a {
                color: #55F;
                text-decoration: none;
            }

    .pageStaff .descriptionSection{
        width:620px;
        position: absolute;
        right: 0px;
    }
        .pageStaff .descriptionSection .name {
            font-size: 64px;
            font-weight: lighter;
        }
        .pageStaff .descriptionSection .title {
            font-size: 36px;
            font-weight: lighter;
            color: #AAAAAA;
            margin-top: -3px;
        }
        .pageStaff .descriptionSection .description {
            font-size: 18px;
            font-weight: lighter;
            color: #EEEEEE;
            margin-top: 5px;
        }


@media (max-width: 650px)
{
    .pageStaff .pageLogo {
        width: 100%;
        text-align: center;
        margin-left: 10px;
        margin-right: 10px;
    }

        .pageStaff .pageLogo img {
            width: 90%;
            left: 5% !important;
        }
}
@media (max-width: 880px)
{
    .pageStaff .person{
        width: auto;
    }
    .pageStaff .avatarSection{
        position: relative;
        margin-left: auto;
        margin-right: auto;
    }
    .pageStaff .descriptionSection{
        position: relative;
        margin-left: 30px;
        margin-right: 30px;
        text-align: center;
        width: auto;
        margin-top: 30px;
    }
    .pageStaff .person{
        height: auto;
    }
}

    .pageStaff .staffCases {
        text-align: center;
        font-weight: lighter !important;
        font-size: 36px !important;
        margin-bottom: 60px;
        margin-top:60px;
    }
        .pageStaff .staffCases h2 {
            --movey: 50px;
            animation: MoveY 1.0s ease, FadeIn 2.0s ease;
        }
        .pageStaff .staffCases .staffCase {
            width: 250px;
            height: 250px;
            max-height: 600px;
            padding: 0px;
            display: inline-block;
            vertical-align: top;
            margin-left: 15px;
            margin-right: 15px;
            white-space: normal;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            margin-top: 20px;
            text-align: left;
            user-select: none;
            transition: transform 0.5s ease;
            --movey: 50px;
            animation: MoveY 1.5s ease, FadeIn 2.0s ease;
        }
        .pageStaff .staffCases .staffCase .title {
            font-size: 20px;
            text-align: center;
            margin-top: 110px;
            margin-left: 30px;
            margin-right: 30px;
        }
            .pageStaff .staffCases .staffCase .background {
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0px;
                left: 0px;
                background-size: cover;
                z-index: -1;
                filter: brightness(0.20);
            }
        .pageStaff .staffCases .staffCase:hover {
            transform: scale(1.05);
        }
        .pageStaff .openText {
            opacity: 0.2;
            bottom: 10px;
            left: 0px;
            position: absolute;
            width: 100%;
            text-align: center;
            font-size: 16px;
        }

/*Contact*/
.pageContact {
    margin-left: auto;
    margin-right: auto;
    position: relative;
}


.contactBlockLeft {
    width: calc(49% - 160px);
    background-color: rgba(0,0,0,.8);
    margin: 40px;
    padding: 40px;
    bottom: 40px;
    left: 0px;
    --movex: -200px;
    animation: MoveX 1s ease, FadeIn 1s ease;
    border-radius: 15px;
    position: relative;
    display: inline-block;
    vertical-align: bottom;
}

.contactBlockRight {
    width: calc(49% - 160px);
    background-color: rgba(0,0,0,.8);
    margin: 40px;
    padding: 40px;
    bottom: 40px;
    position: absolute;
    right: 0px;
    --movex: 200px;
    animation: MoveX 1s ease, FadeIn 1s ease;
    border-radius: 15px;
    position: relative;
    display: inline-block;
}

@media (orientation: portrait) {
    .contactBlockLeft {
        width: calc(100% - 160px);
        position: relative;
        display: block;
    }

    .contactBlockRight {
        width: calc(100% - 160px);
        position: relative;
        display: block;
    }
}

.pageContact .title {
    font-size: 35px;
    font-weight: lighter;
    text-align: center;
}

.pageContact .subtitle {
    font-size: 20px;
    font-weight: lighter;
    text-align: center;
    margin-top: 5px;
}

.pageContact .description {
    font-size: 17px;
    text-align: center;
    margin-top: 10px;
}

.contactLine {
    width: calc(100% - 65px);
    padding: 15px;
    background-color: #111;
    border-radius: 50px;
    padding-left: 50px;
    margin-bottom: 10px;
    height: 20px;
    position: relative;
    background: #111;
}

    .contactLine .key {
        position: absolute;
        width: 70px;
        text-align: right;
    }

    .contactLine .value {
        position: absolute;
        left: 150px;
    }

#contactProgress {
    height: 57px;
    width: 100%;
    position: relative;
}

    #contactProgress .inner {
        width: 10%;
        height: 10px;
        margin-top: 20px;
        background: var(--mixed-gradient);
        border-radius: 10px;
        position: absolute;
        left: 0%;
        --pingpongw: 10%;
        animation: PingPong 5s ease infinite;
    }

@keyframes PingPong {
    0% {
        left: 0%;
    }

    50% {
        left: calc(100% - var(--pingpongw));
    }

    0% {
        left: 0%;
    }
}

.form {
}

    .form .item {
        width: 100%;
        position: relative;
        height: 50px;
        margin-top: 10px;
    }

        .form .item .key {
            position: absolute;
            left: 0px;
            width: 90px;
            color: white;
            padding: 10px;
            text-align: right;
        }

        .form .item .value {
            position: absolute;
            left: 120px;
            width: calc(100% - 140px);
        }

            .form .item .value input {
                width: 100%;
                padding: 10px;
                background-color: #111;
                border: 0px;
                border-radius: 50px;
                padding-left: 30px;
                color: white;
                font-size: 15px;
            }

            .form .item .value textarea {
                width: 100%;
                padding: 20px;
                background-color: #111;
                border: 0px;
                border-radius: 20px;
                padding-left: 30px;
                height: 100px;
                color: white;
                font-family: Roboto;
                font-size: 15px;
                min-width: 100%;
                max-width: 100%;
                min-height: 130px;
                max-height: 130px;
            }

        .form .item button {
            background-color: black;
            padding: 10px;
            width: 100%;
            color: white;
            border: 0px;
            border-radius: 10px;
            font-size: 30px;
            font-weight: lighter;
            font-family: Roboto;
            cursor: pointer;
        }

/*Case*/

.caseDetails {
    height: calc(100% - 160px);
    padding: 20px;
    display: inline-block;
    vertical-align: top;
    white-space: normal;
    position: relative;
    border-radius: 10px;
    overflow-y: auto;
    cursor: pointer;
    position: absolute;
    scrollbar-width: 0px;
    margin-left: 40%;
    max-width: 1200px;
}

#root.transitioning .caseDetails {
}


.caseDetails::-webkit-scrollbar {
    display: none;
}

@media (orientation: portrait) {
    .caseDetails {
        width: calc(100% - 40px);
        margin-left: 0px;
        overflow-y: visible;
        height: auto;
    }
}

.pageCase {
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

#pageCaseImage {
    width: calc(40% - 160px);
    position: absolute;
    left: 80px;
    top: 180px;
    text-align: center;
    --movex: -500px;
    animation: MoveX 1s ease;
    text-align: right;
}

    #pageCaseImage img {
        width: 100%;
        max-width: 600px;
        border-radius: 30px;
    }

#pageCaseTitle {
    --movex: 300px;
    animation: MoveX 1s ease, FadeIn 1.0s linear;
    animation-fill-mode: both;
}

#pageCaseDescription {
    --movex: 300px;
    animation: MoveX 1s ease, FadeIn 1.0s linear;
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

#pageCaseSubtitle {
    font-weight: lighter;
    --movex: 300px;
    animation: MoveX 1s ease, FadeIn 1.0s linear;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.caseDetails .title {
    font-size: 35px;
    font-weight: lighter;
}

.caseDetails .description {
    margin-top: 10px;
    font-size: 16px;
}

.caseDetails .subtitle {
    margin-top: 10px;
    font-size: 16px;
}

.pageCase .fullBack {
    width: 100vw;
    height: 100vw;
    background-size: cover;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: -2;
    filter: blur(10px) brightness(0.2);
}

.caseSpecs {
    --movex: -500px;
    --movey: 500px;
    animation: MoveY 1.4s ease, FadeIn 1.0s linear;
}

    .caseSpecs .spec {
        padding: 10px;
        margin-bottom: 5px;
        display: inline-block;
        width: calc(33% - 22px);
        position: inline-block;
        background-color: rgba(0,0,0,.5);
        border-radius: 10px;
        text-align: center;
        padding-top: 30;
        padding-bottom: 30px;
        vertical-align: top;
        margin-bottom: 30px;
    }

@media (orientation: portrait) {
    #pageCaseImage {
        position: relative;
        width: 100%;
        top: 0px;
        left: 0px;
        margin-top: 40px;
        margin-bottom: 20px;
        text-align: center;
    }

        #pageCaseImage img {
            width: 100%;
            max-width: 500px;
        }

    #pageCaseTitle {
        margin-left: 0%;
    }

    #pageCaseDescription {
        margin-left: 0%;
    }

    #pageCaseSubtitle {
        margin-left: 0%;
    }

    .caseSpecs {
        margin-left: 0%;
    }

        .caseSpecs .spec {
            width: calc(100% - 20px);
        }
}

.caseSpecs .spec .key {
    font-weight: bold;
    font-size: 20px;
}

.caseSpecs .spec .value {
    left: 160px;
    padding: 0px;
    margin-top: 10px;
    line-height: 40px;
}

.caseSpecs .title {
    font-size: 40px;
    font-weight: lighter;
    margin-bottom: 20px;
    text-align: center;
}

/*Animations*/

@keyframes FadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes FadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


@keyframes MoveX {
    0% {
        transform: translateX(var(--movex));
    }

    100% {
        transform: translateX(0px);
    }
}

@keyframes MoveXR {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translateX(var(--movex));
    }
}

@keyframes MoveY {
    0% {
        transform: translateY(var(--movey));
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes MoveYR {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(var(--movey));
    }
}

@keyframes MarginX {
    0% {
        margin-left: var(--marginx);
    }

    100% {
        margin-left: var(--marginstart, 0px);
    }
}

@keyframes MarginXR {
    0% {
        margin-left: var(--marginstart, 0px);
    }

    100% {
        margin-left: var(--marginx);
    }
}
