:root {
    --mainColor: #E6A4DE;
    --secColor: rgb(5.0, 5.0, 5.0);
    --titleTextColor: rgb(5.0, 5.0, 5.0);
    --textColor: #333;
}

@font-face {
    font-family: "Raleway";
    src: url("../fonts/Raleway-Regular.ttf");
}

@font-face {
    font-family: "Raleway-semibold";
    src: url("../fonts/Raleway-SemiBold.ttf");
}

@font-face {
    font-family: "Raleway-bold";
    src: url("../fonts/Raleway-Bold.ttf");
}

@keyframes fadeIn {
    100% {
        opacity: 1;
    }
}

@keyframes flipInX {
    from {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
    }

    40% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        -webkit-transform: perspective(400px) rotateY(-20deg);
        transform: perspective(400px) rotateY(-20deg);
    }

    60% {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
    }

    80% {
        -webkit-transform: perspective(400px) rotateY(-5deg);
        transform: perspective(400px) rotateY(5deg);
    }

    to {
        opacity: 1;
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes popDown {
    0% {
        transform: translateY(-100px);
    }
}

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

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-300px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-300px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(300px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toBottomFromTop {
    49% {
        transform: translateY(100%);
    }

    50% {
        opacity: 0;
        transform: translateY(-100%);
    }

    51% {
        opacity: 1;
    }
}

@keyframes popIn {
    0% {
        transform: scale(0);
    }

    60% {
        opacity: 1;
        transform: scale(1.05);
    }

    80% {
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

a {
    color: inherit;
    text-decoration: none;
}

body {
    color: #fff;
    font-family: "Raleway";
    font-size: 8pt;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0px;
    overflow-x: hidden;
    text-align: center;
}

.about_us {
    font-size: 15pt;
}

#preload {
    display: none;
}

.page-link {
    cursor: pointer;
}


.disable-hover {
    pointer-events: none;
}

.overflow-wrap {
    overflow-x: hidden;
}

.canvas {
    background: url("../img/background.png") center center/cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100vw;
}

.button {
    border: 2px solid #fff;
    box-sizing: inherit;
    cursor: pointer;
    display: inline-block;
    font-size: 13pt;
    padding: 10px 20px;
    transition: all 0.5s;
}

    .button:hover {
        background-color: VAR(--mainColor);
        border-color: VAR(--mainColor);
    }

    .button .mdi {
        vertical-align: middle;
    }

.bold {
    font-family: "Raleway-bold";
}

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

    .flex.row {
        flex-direction: row;
    }

    .flex.wrap {
        flex-wrap: wrap;
    }

.hex-wrap {
    display: inline-block;
    height: 80px;
    position: relative;
    text-align: center;
    width: 80px;
}

.hexagon {
    background-color: VAR(--secColor);
    display: inline-block;
    height: 100%;
    width: calc(100% * 0.57735);
}

    .hexagon:before {
        background-color: inherit;
        content: "";
        height: inherit;
        position: absolute;
        right: calc((100% / 2) - ((100% * 0.57735) / 2));
        top: 0;
        transform: rotateZ(60deg);
        width: inherit;
    }

    .hexagon:after {
        background-color: inherit;
        content: "";
        height: inherit;
        position: absolute;
        right: calc((100% / 2) - ((100% * 0.57735) / 2));
        top: 0;
        transform: rotateZ(-60deg);
        width: inherit;
    }

.highlight {
    color: VAR(--mainColor);
}

.header {
    color: VAR(--titleTextColor);
    font-family: "raleway-bold";
    font-size: 25pt;
    position: relative;
    position: relative;
}

.header-bar {
    background: VAR(--titleTextColor);
    height: 4px;
    margin: 25px 0 75px 0;
    width: 70px;
}

.label {
    font-size: 14pt;
    font-weight: 500;
}

nav {
    bottom: 0;
    left: 0;
    position: absolute;
    background: VAR(--secColor);
    border-bottom: 3px solid VAR(--secColor);
    height: 50px;
    text-align: left;
    width: 100%;
    z-index: 99;
}

    nav.fixed {
        bottom: inherit;
        left: 0;
        position: fixed;
        top: 0;
    }

        nav.fixed.desk {
            animation: popDown 0.5s;
        }

    nav .link-wrap {
        background: VAR(--secColor);
        height: 0;
        max-width: 1200px;
        overflow: hidden;
        position: absolute;
        top: 53px;
        transition: height 0.3s ease-out;
        width: 100%;
    }

        nav .link-wrap.visible {
            height: 220px;
        }

        nav .link-wrap div {
            cursor: pointer;
            font-size: 12pt;
            padding: 12px 20px;
            text-transform: uppercase;
            transition: color 0.5s;
        }

            nav .link-wrap div:first-child {
                padding: 25px 20px 12px 20px;
            }

            nav .link-wrap div:hover {
                color: VAR(--mainColor);
            }

    nav .mdi-menu {
        font-size: 30pt;
        line-height: 36pt;
        margin: auto 0;
        position: absolute;
        right: 5vw;
        top: 0;
    }

    nav .active {
        color: VAR(--mainColor);
    }

.carousel-wrap {
    height: 250px;
    margin: 0 auto;
    position: relative;
}

.window {
    background: #222;
    overflow: hidden;
    position: relative;
}

#carousel {
    position: relative;
    top: 0;
    width: 10000px;
}

.slide {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    float: left;
    height: 250px;
    justify-content: center;
}

.mdi-chevron-left,
.mdi-chevron-right {
    background: rgba(0, 0, 0, 0.3);
    bottom: 0;
    color: #fff;
    cursor: pointer;
    cursor: pointer;
    font-size: 14pt !important;
    font-weight: bold;
    padding: 10px 15px;
    position: absolute;
}

.mdi-chevron-left {
    left: 0;
}

.mdi-chevron-right {
    right: 0;
}

.transition {
    transition: 0.7s;
}

.modal-wrap {
    height: 100vh;
    pointer-events: none;
    position: fixed;
    width: 100vw;
    z-index: 100;
}

    .modal-wrap .mask {
        background: rgba(0, 0, 0, 0.5);
        height: 100%;
        left: 0;
        opacity: 0;
        position: absolute;
        top: 0;
        transition: opacity 0.3s;
        width: 100%;
    }

    .modal-wrap .modal {
        align-items: flex-start;
        background: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
        box-sizing: border-box;
        color: VAR(--textColor);
        height: 100vh;
        opacity: 0;
        position: relative;
        text-align: left;
        transform: scale(0.8);
        transition: all 0.3s;
    }

    .modal-wrap .close {
        bottom: 25px;
        color: #bbb;
        cursor: pointer;
        font-size: 20pt;
        font-weight: 800;
        position: absolute;
        right: 10px;
    }

    .modal-wrap .info-box {
        border-top: 3px solid VAR(--secColor);
        box-sizing: border-box;
        color: #444;
        padding: 15px 10px 85px 10px;
    }

    .modal-wrap .title {
        font-family: "Raleway-bold";
        font-size: 16pt;
        line-height: 20pt;
    }

    .modal-wrap .tag {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        color: #c0c0c0;
        display: block;
        font-family: "Raleway-bold";
        font-size: 8pt;
        font-weight: 300;
        padding-bottom: 15px;
    }

    .modal-wrap .detail {
        font-size: 9pt;
        line-height: 14pt;
        margin-top: 13px;
    }

    .modal-wrap .mdi-open-in-new {
        font-size: 11pt;
        left: -10px;
        position: relative;
    }

    .modal-wrap .button {
        background: VAR(--mainColor);
        border: 0;
        bottom: 20px;
        color: #fff;
        cursor: pointer;
        font-size: 10pt;
        font-weight: 600;
        left: 10px;
        padding: 11px 30px;
        pointer-events: none;
        position: absolute;
        transition: all 0.5s;
        visibility: hidden;
    }

        .modal-wrap .button.visible {
            pointer-events: initial;
            visibility: visible;
        }

        .modal-wrap .button:hover {
            background: #fff;
            color: VAR(--mainColor);
        }

    .modal-wrap .carousel {
        box-shadow: 10px 10px 5px 0px rgba(0, 0, 0, 0.25);
    }

    .modal-wrap.visible {
        pointer-events: initial;
    }

        .modal-wrap.visible .modal {
            opacity: 1;
            transform: scale(1);
        }

        .modal-wrap.visible .mask {
            opacity: 1;
        }

section {
    color: Var(--textColor);
    line-height: 11pt;
    padding: 70px 0 70px 0;
    position: relative;
}

    section .container {
        box-sizing: border-box;
        margin: 0 auto;
        max-width: 1200px;
        padding: 0 10px;
        width: 100%;
    }

    section:nth-of-type(1) {
        color: #fff;
        height: calc(100vh + 53px);
        padding: 0 10px;
    }

        section:nth-of-type(1) .highlight {
            font-family: "Raleway-semibold";
        }

        section:nth-of-type(1) .text {
            font-size: 16pt;
            line-height: 20pt;
            margin: 0 0 20px 0;
            pointer-events: none;
            z-index: 1;
        }

        section:nth-of-type(1) .hexagon {
            transition: transform 0.9s ease-in-out;
        }

            section:nth-of-type(1) .hexagon:hover {
                transform: rotate(540deg);
            }

        section:nth-of-type(1) .button {
            margin-bottom: 53px;
            padding: 12px 40px 12px 15px;
            position: relative;
        }

            section:nth-of-type(1) .button .mdi {
                position: absolute;
                right: 15px;
                top: 11px;
                transition: transform 0.3s;
            }

            section:nth-of-type(1) .button:hover .mdi {
                transform: rotate(90deg);
            }

    section:nth-of-type(2) .label-wrap .label {
        margin: 20px 0 10px 0;
    }

    section:nth-of-type(2) .bullet-wrap {
        height: 200px;
        justify-content: flex-start;
        padding: 0 7px;
    }

    section:nth-of-type(2) .highlight {
        color: VAR(--mainColor);
    }

    section:nth-of-type(2) .up-arrow {
        height: 30px;
        margin: 15px 0;
    }

    section:nth-of-type(2) .skills-wrapper {
        align-items: flex-start;
        width: 100%;
    }

        section:nth-of-type(2) .skills-wrapper .me {
            height: 200px;
        }

        section:nth-of-type(2) .skills-wrapper .label {
            margin: 20px 0 15px 0;
        }

    section:nth-of-type(2) .hexagon i {
        color: #fff;
        font-size: 34pt;
        left: 0;
        position: absolute;
        right: 0;
        top: 20px;
        z-index: 1;
    }

    section:nth-of-type(2) .bars-wrap {
        margin: 50px auto 0 auto;
        max-width: 90%;
        width: calc(100% - 15px);
    }

        section:nth-of-type(2) .bars-wrap:not(.animated) .fill {
            width: 0 !important;
        }

    section:nth-of-type(2) .bar {
        align-items: flex-end;
        background-color: #eee;
        color: Var(--textColor);
        font-size: 7pt;
        height: 22px;
        margin: 0 0 12px 0;
        position: relative;
    }

        section:nth-of-type(2) .bar:nth-child(1) .fill {
            transition: 1.1s 0.2s width ease-in-out;
        }

        section:nth-of-type(2) .bar:nth-child(2) .fill {
            transition: 1.2s 0.2s width ease-in-out;
        }

        section:nth-of-type(2) .bar:nth-child(3) .fill {
            transition: 1.3s 0.2s width ease-in-out;
        }

        section:nth-of-type(2) .bar:nth-child(4) .fill {
            transition: 1.4s 0.2s width ease-in-out;
        }

        section:nth-of-type(2) .bar:nth-child(5) .fill {
            transition: 1.5s 0.2s width ease-in-out;
        }

        section:nth-of-type(2) .bar:nth-child(6) .fill {
            transition: 1.6s 0.2s width ease-in-out;
        }

        section:nth-of-type(2) .bar:nth-child(7) .fill {
            transition: 1.7s 0.2s width ease-in-out;
        }

        section:nth-of-type(2) .bar:nth-child(8) .fill {
            transition: 1.8s 0.2s width ease-in-out;
        }

        section:nth-of-type(2) .bar:nth-child(9) .fill {
            transition: 1.9s 0.2s width ease-in-out;
        }

        section:nth-of-type(2) .bar:nth-child(10) .fill {
            transition: 2.0s 0.2s width ease-in-out;
        }

        section:nth-of-type(2) .bar:nth-child(11) .fill {
            transition: 2.1s 0.2s width ease-in-out;
        }

        section:nth-of-type(2) .bar span {
            display: none;
        }

        section:nth-of-type(2) .bar.fill {
            left: 0;
            position: absolute;
            top: 0;
            background-color: VAR(--secColor);
            opacity: 1;
            padding: 0;
        }

        section:nth-of-type(2) .bar .tag {
            left: 0;
            position: absolute;
            top: 0;
            background-color: VAR(--secColor);
            color: #fff;
            height: 100%;
            width: 110px;
            width: 70px;
        }

        section:nth-of-type(2) .bar.secondary {
            background-color: VAR(--mainColor);
        }

            section:nth-of-type(2) .bar.secondary .tag {
                background-color: VAR(--mainColor);
            }

        section:nth-of-type(2) .bar span {
            padding: 0 15px 0 0;
            z-index: 1;
        }

    section:nth-of-type(3) {
        background: #f5f5f5;
    }

        section:nth-of-type(3) .container {
            padding: 0;
        }

        section:nth-of-type(3) .filter-wrap {
            position: relative;
            white-space: nowrap;
        }

        section:nth-of-type(3) .filter {
            cursor: pointer;
            font-size: 6pt;
            font-weight: 600;
            padding: 0 20px;
            transition: background-color 0.5s;
        }

        section:nth-of-type(3) .float-bar {
            bottom: 0;
            left: 30px;
            position: absolute;
            top: 0;
            background: VAR(--mainColor);
            border-radius: 1px;
            height: 25px;
            margin: auto 0;
            overflow: hidden;
            position: absolute;
            transition: all 0.5s ease-in-out;
        }

            section:nth-of-type(3) .float-bar .row {
                bottom: 0;
                left: -30px;
                position: absolute;
                top: 0;
                margin: auto 0;
                transition: left 0.5s ease-in-out;
            }

                section:nth-of-type(3) .float-bar .row .filter {
                    color: #fff;
                }

        section:nth-of-type(3) .text {
            left: 0;
            position: absolute;
            top: 0;
            width: 90%;
            display: block;
        }

        section:nth-of-type(3) #gallery {
            margin: 20px 0;
        }

            section:nth-of-type(3) #gallery .text,
            section:nth-of-type(3) #gallery .button {
                color: VAR(--textColor);
                opacity: 0;
                text-align: center;
                transition: all 0.3s ease-in-out;
                z-index: 2;
            }

                section:nth-of-type(3) #gallery .text .bold,
                section:nth-of-type(3) #gallery .button .bold {
                    font-size: 16pt;
                }

            section:nth-of-type(3) #gallery .button {
                bottom: 0;
                left: 0;
                position: absolute;
                right: 0;
                border: 2px solid Var(--mainColor);
                font-size: 13pt;
                margin: 0 auto;
                padding: 7px 0;
                width: 170px;
            }

            section:nth-of-type(3) #gallery .mix {
                display: none;
                position: relative;
            }

                section:nth-of-type(3) #gallery .mix .waypoint {
                    background: #fff;
                }

                section:nth-of-type(3) #gallery .mix .button:hover {
                    background: Var(--mainColor);
                    color: #fff;
                }

                section:nth-of-type(3) #gallery .mix:nth-child(1) .card {
                    background: url("../img/clemensHuebner.jpg") center center/cover;
                }

                section:nth-of-type(3) #gallery .mix:nth-child(2) .card {
                    background: url("../img/leanderPieters.jpg") center center/cover;
                }

                section:nth-of-type(3) #gallery .mix:nth-child(3) .card {
                    background: url("../img/adrianHense.jpg") center center/cover;
                }

                section:nth-of-type(3) #gallery .mix:nth-child(4) .card {
                    background: url("../img/rouvenCabanis.jpg") center center/cover;
                }

                section:nth-of-type(3) #gallery .mix .card {
                    height: 400px;
                    max-width: 100%;
                    transition: opacity 0.5s;
                    width: calc(50vw - 8px);
                }

                section:nth-of-type(3) #gallery .mix:hover .card {
                    opacity: 0;
                }

                section:nth-of-type(3) #gallery .mix:hover .text {
                    cursor: default;
                    opacity: 1;
                    top: 10%;
                    margin: 0 20px 0 20px;
                    display: block;
                }

                section:nth-of-type(3) #gallery .mix:hover .button {
                    bottom: 10%;
                    opacity: 1;
                }

    section .flex-50-gt-sm {
        display: block;
    }

footer {
    background: VAR(--secColor);
    padding: 70px 0 50px 0;
    position: relative;
}

    footer .mdi-chevron-double-up {
        background: VAR(--mainColor);
        cursor: pointer;
        font-size: 30pt;
        height: 50px;
        left: 0;
        line-height: 40pt;
        margin: 0 auto;
        position: absolute;
        right: 0;
        top: -25px;
        transition: background 0.5s;
        width: 47px;
    }

        footer .mdi-chevron-double-up:hover {
            background: VAR(--mainColor);
        }

    footer .icon-wrap .icon {
        background: #262f38;
        cursor: pointer;
        font-size: 18pt;
        height: 55px;
        margin: 0 15px;
        overflow: hidden;
        position: relative;
        text-align: center;
        transition: background 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
        width: 55px;
    }

    footer .icon-wrap .mdi {
        color: #fff;
        text-align: center;
    }

        footer .icon-wrap .mdi.mdi-codepen {
            font-size: 20pt;
        }

    footer .icon-wrap .icon:hover {
        background: VAR(--secColor);
        box-shadow: 0 0 0 3px rgba(4, 94, 201, 0.1);
        transform: scale(0.9);
    }

        footer .icon-wrap .icon:hover .mdi {
            color: #fff;
        }

        footer .icon-wrap .icon:hover .mdi {
            -webkit-animation: toBottomFromTop 0.3s forwards;
            -moz-animation: toBottomFromTop 0.3s forwards;
            animation: toBottomFromTop 0.3s forwards;
        }

    footer .footnote {
        color: Var(--mainColor);
        font-size: 10pt;
        margin-top: 35px;
        opacity: 0.6;
    }

        footer .footnote .highlight {
            color: VAR(--mainColor);
            font-family: "Open Sans";
        }

@media screen and (max-width: 400px) {
    section:nth-of-type(3) #gallery .mix .card {
        width: 100vw;
    }
    
}

@media screen and (min-width: 600px) {
    body {
        font-size: 12pt;
    }

    .container {
        padding: 0 20px;
    }

    .header {
        font-size: 30pt;
    }

    .header-bar {
        margin: 25px 0 100px 0;
    }

    .label {
        font-size: 18pt;
    }

    .hex-wrap {
        height: 100px;
        width: 100px;
    }

    .slide,
    .carousel-wrap {
        height: 450px;
    }

    .mdi-chevron-left,
    .mdi-chevron-right {
        font-size: 25pt !important;
    }

    .modal-wrap .modal {
        height: initial;
        top: -6vh;
    }

    .modal-wrap .info-box {
        padding: 35px 60px 90px 25px;
    }

    .modal-wrap .title {
        font-size: 22pt;
        line-height: 30pt;
    }

    .modal-wrap .tag {
        font-size: 11pt;
    }

    .modal-wrap .detail {
        font-size: 11pt;
        line-height: 18pt;
        margin-top: 15px;
    }

    .modal-wrap .close {
        right: 25px;
    }

    .modal-wrap .button {
        left: 25px;
    }

    nav .link-wrap {
        background: none;
        height: initial;
        overflow: visible;
        position: initial;
        text-align: left;
    }

        nav .link-wrap .visible {
            height: initial;
        }

        nav .link-wrap div {
            display: inline;
            font-size: initial;
            margin: 0 20px;
            padding: initial;
        }

            nav .link-wrap div:first-child {
                padding: 0;
            }

            nav .link-wrap div:last-child {
                position: absolute;
                right: 0;
            }

    nav .mdi-menu {
        display: none;
    }

    section {
        line-height: 18pt;
        padding: 100px 0 130px 0;
    }

        section .container {
            padding: 0 10px;
        }

        section:nth-of-type(1) .text {
            font-size: 32pt;
            line-height: 36pt;
        }

        section:nth-of-type(1) .button {
            padding: 12px 50px 12px 20px;
        }

            section:nth-of-type(1) .button .mdi {
                top: 16px;
            }

        section:nth-of-type(2) .label-wrap .label {
            margin: 15px 0 5px 0;
        }

        section:nth-of-type(2) .label-wrap > div {
            padding: 0 15px;
        }

        section:nth-of-type(2) .bullet-wrap {
            height: 230px;
        }

        section:nth-of-type(2) .skills-wrapper > .flex:first-child {
            padding: 0 50px 0 50px;
        }

        section:nth-of-type(2) .skills-wrapper .me {
            height: 250px;
        }

        section:nth-of-type(2) .bar {
            font-size: 11pt;
            height: 28px;
            margin: 0 0 15px 0;
        }

            section:nth-of-type(2) .bar span {
                display: initial;
            }

            section:nth-of-type(2) .bar .tag {
                width: 110px;
            }

        section:nth-of-type(2) .hexagon i {
            font-size: 40pt;
        }

        section:nth-of-type(3) .filter {
            font-size: 11pt;
            margin: 0 15px;
            padding: 0 30px;
        }

        section:nth-of-type(3) .float-bar {
            height: 30px;
        }

        section:nth-of-type(3) #gallery .mix .card {
            height: 400px;
        }
}

@media screen and (min-width: 960px) {
    .waypoint {
        opacity: 0;
    }

    .animated.waypoint#gallery {
        opacity: 1;
    }

        .animated.waypoint#gallery .mix:nth-child(1) > div {
            animation: slideUp 0.75s 0.1s ease both;
            opacity: 0;
        }

        .animated.waypoint#gallery .mix:nth-child(2) > div {
            animation: slideUp 0.75s 0.2s ease both;
            opacity: 0;
        }

        .animated.waypoint#gallery .mix:nth-child(3) > div {
            animation: slideUp 0.75s 0.3s ease both;
            opacity: 0;
        }

        .animated.waypoint#gallery .mix:nth-child(4) > div {
            animation: slideUp 0.75s 0.4s ease both;
            opacity: 0;
        }

        .animated.waypoint#gallery .mix:nth-child(5) > div {
            animation: slideUp 0.75s 0.5s ease both;
            opacity: 0;
        }

        .animated.waypoint#gallery .mix:nth-child(6) > div {
            animation: slideUp 0.75s 0.6s ease both;
            opacity: 0;
        }

        .animated.waypoint#gallery .mix:nth-child(7) > div {
            animation: slideUp 0.75s 0.7s ease both;
            opacity: 0;
        }

        .animated.waypoint#gallery .mix:nth-child(8) > div {
            animation: slideUp 0.75s 0.8s ease both;
            opacity: 0;
        }

        .animated.waypoint#gallery .mix:nth-child(9) > div {
            animation: slideUp 0.75s 0.9s ease both;
            opacity: 0;
        }

    .animated.slide-up {
        animation: slideUp 0.75s ease both;
    }

    .animated.slide-down {
        animation: slideDown 0.75s ease both;
    }

    .animated.slide-in-left {
        animation: slideInLeft 0.75s ease both;
    }

    .animated.slide-in-right {
        animation: slideInRight 0.75s ease both;
    }

    .animated.flip-in-x {
        animation: flipInX 0.75s ease both;
    }

    .animated.fade-in {
        animation: fadeIn 0.75s ease both;
    }

    .animated.pop-in {
        animation: popIn 1s both;
    }

    .button {
        font-size: 16pt;
    }

    .flex.row-gt-sm {
        flex-direction: row;
    }

    .flex-50-gt-sm {
        box-sizing: border-box;
        -webkit-flex: 1 1 50%;
        -ms-flex: 1 1 50%;
        flex: 1 1 50%;
        max-height: 100%;
        max-width: 50%;
    }

    section:nth-of-type(2) .bars-wrap {
        margin: 0 0 0 0;
    }

    section:nth-of-type(2) .skills-wrapper {
        margin: 0 0 0 0;
    }

        section:nth-of-type(2) .skills-wrapper .me {
            margin: 0;
        }

    section:nth-of-type(2) .bar {
        max-width: 90%;
    }

    section:nth-of-type(2) .bullet-wrap {
        height: intial;
        margin: 0;
        padding: 0 10px;
    }

    section:nth-of-type(3) #gallery .mix .card {
        width: 300px;
    }

    section:nth-of-type(3) .filter {
        font-size: 13pt;
        margin: 0 25px;
        padding: 0 40px;
    }
}
