@font-face {
    font-family: 'Bebas Neue';
    src: url('/includes/font/bebas-neue/BebasNeue-webfont.eot');
    src: local('☺'),
    url('/includes/font/bebas-neue/BebasNeue-webfont.woff') format('woff'),
    url('/includes/font/bebas-neue/BebasNeue-webfont.ttf') format('truetype'),
    url('/includes/font/bebas-neue/BebasNeue-webfont.svg#font') format('svg');
}
@-webkit-keyframes infinite_scroll {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(-200%);
        transform: translateX(-200%);
    }
}
@keyframes infinite_scroll {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(-200%);
        transform: translateX(-200%);
    }
}


/* General */
body {
    width: 100%;
    display: block;
    overflow-x: hidden;
}
.infinite-scroll {
    position: relative;
    overflow: hidden;
}
.infinite-scroll:before {
    display: block;
    content: ' ';
    background: transparent;
    background: -webkit-linear-gradient(left, #262626, transparent);
    background: linear-gradient(to right, #262626, transparent);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 80px;
    z-index: 50;
}
.infinite-scroll:after {
    display: block;
    content: ' ';
    background: transparent;
    background: -webkit-linear-gradient(left, transparent, #262626);
    background: linear-gradient(to right, transparent, #262626);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 80px;
    z-index: 50;
}
.infinite-scroll .infinite-content {
    white-space: nowrap;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-animation: infinite_scroll 10s linear infinite;
    animation: infinite_scroll 10s linear infinite;
    min-width: 700px;
}
.infinite-scroll .infinite-content:hover,
.infinite-scroll .infinite-content:focus {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}
.infinite-scroll .infinite-content > * {
    white-space: normal;
    display: inline-block;
}


/* Background */
.background-wrapper {
    overflow: hidden;
    position: relative;
}
.background-wrapper:after {
    display: block;
    content: ' ';
    position: absolute;
    right: 0;
    bottom: -2px;
    left: 0;
    height: 100px;
    background: transparent;
    background: -webkit-linear-gradient(transparent, #000);
    background: linear-gradient(transparent, #000);
}
.background-wrapper .background-video:after {
    display: block;
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
}
.background-wrapper .background-video .video-wrap {
    min-height: 100vh;
    position: relative;
}
.background-wrapper .background-video .video-wrap .video {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-width: 100vw;
    min-height: 100vh;
    width: auto;
    height: auto;
}


/* Header */
.header-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 200;
    padding: 25px 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.scrolled .header-wrapper {
    background: #fff;
    box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.15);
}


/* Logo */
.logo-wrapper {
    width: 170px;
    max-width: 100%;
}
.logo-wrapper .logo {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="1 0" /><feFuncG type="table" tableValues="1 0" /><feFuncB type="table" tableValues="1 0" /></feComponentTransfer></filter></svg>#filter');
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.scrolled .logo-wrapper .logo {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="table" tableValues="0 1" /><feFuncG type="table" tableValues="0 1" /><feFuncB type="table" tableValues="0 1" /></feComponentTransfer></filter></svg>#filter');
    -webkit-filter: brightness(0) invert(0);
    filter: brightness(0) invert(0);
}


/* Menu */
.menu-wrapper {
    margin-top: 25px;
}
.menu-wrapper .menu {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: right;
}
.menu-wrapper .menu li {
    display: inline-block;
}
.menu-wrapper .menu li a {
    display: block;
    padding: 10px 10px;
    font-size: 18px;
    text-transform: uppercase;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    color: #fff;
}
.scrolled .menu-wrapper .menu li a {
    color: #000;
}


/* Footer */
.footer-wrapper {
    color: #A1A1A1;
    background: #262626;
    padding: 50px 0;
}
.footer-wrapper .footer-menu {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.footer-wrapper .footer-menu ul {
    padding: 0;
}
.footer-wrapper .footer-menu li {
    display: block;
    margin-bottom: 10px;
}
.footer-wrapper .footer-menu li a {
    color: #fff;
}
.footer-wrapper .footer-services {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.footer-wrapper .footer-services ul {
    padding: 0;
}
.footer-wrapper .footer-services li {
    display: block;
    margin-bottom: 10px;
}


/* Content */
body {
    letter-spacing: 0.2px;
}
article h1 {
    text-transform: uppercase;
    margin-bottom: 30px;
}
article p {
    line-height: 2em;
}
.content-wrapper {
    padding: 100px 0;
}
.content-wrapper.dark {
    background: #262626;
}
.content-wrapper.dark,
.content-wrapper.dark > * {
    color: #fafafa;
}


/* Services */
.services-wrapper {
    color: #fff;
    background: #000;
}
.services-wrapper article {
    margin-right: 60px;
}
.services-wrapper .services-wrap {
    margin-left: 60px;
}
.services-wrapper .services-wrap ul {
    display: block;
    list-style: none;
    margin: 55px 0 0;
    padding: 0;
}
.services-wrapper .services-wrap li {
    color: #7C7C7C;
    font-family: 'Bebas Neue', 'Open Sans', sans-serif;
    font-size: 42px;
    text-transform: uppercase;
    line-height: 44px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    white-space: nowrap;
}
.services-wrapper .services-wrap li:hover,
.services-wrapper .services-wrap li:focus,
.services-wrapper .services-wrap li.active {
    color: #D5D5D5;
    font-size: 52px;
}


/* Slider */
.slider-wrapper .slide {
    position: relative;
    background: #000;
}
.slider-wrapper .slide-background {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 20;
    opacity: 0.5;
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -o-filter: blur(10px);
    -ms-filter: blur(10px);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
    filter: blur(10px);
}
.slider-wrapper .slide .container {
    position: relative;
    z-index: 40;
}


/* Clients */
.clients-wrap {
    display: block;
    width: 100%;
    margin-top: 100px;
}
.clients-wrap ul {
    display: block;
    width: 100%;
    white-space: nowrap !important;
    font-size: 0;
}
.clients-wrap ul li {
    display: inline-block;
    margin: 0 46px;
}
.clients-wrap ul li img {
    display: inline-block;
    width: auto;
    height: auto;
    max-height: 80px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.clients-wrap:hover ul li img,
.clients-wrap:focus ul li img {
    opacity: 0.25;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
}
.clients-wrap ul:hover li:hover img,
.clients-wrap ul:focus li:focus img {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}


.locations {
    font-size: 0;
    white-space: nowrap;
    position: relative;
}
.locations::after {
    display: block;
    content: ' ';
    width: 2px;
    height: 180px;
    background: #6E6E6E;
    background: -webkit-linear-gradient(transparent, #6E6E6E, #6E6E6E, transparent);
    background: -o-linear-gradient(transparent, #6E6E6E, #6E6E6E, transparent);
    background: -moz-linear-gradient(transparent, #6E6E6E, #6E6E6E, transparent);
    background: linear-gradient(transparent, #6E6E6E, #6E6E6E, transparent);
    position: absolute;
    top: 55px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.locations .location {
    font-size: 14px;
    width: 50%;
    display: inline-block;
    background: #dadada;
    transition: 0.4s;
}
.locations .location:hover,
.locations .location:focus {
    color: #000;
    background: #cacaca;
}
.locations .location.amsterdam {
    text-align: right;
}
.locations .location .content {
    display: inline-block;
    text-align: left;
    font-size: 24px;
    font-weight: 600;
}
.locations .location.amsterdam .content {
    margin-top: 50px;
    margin-right: 150px;
    margin-bottom: 50px;
}
.locations .location.miami .content {
    margin-top: 50px;
    margin-left: 150px;
    margin-bottom: 50px;
}
.locations .location .image {
    min-height: 250px;
    max-height: 600px;
    overflow: hidden;
}
.locations .location .image img {
    width: 100% !important;
    -webkit-filter: grayscale(100%);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0.2126 0.7152 0.0722 0 0 0 0 0 1 0" /></filter></svg>#filter');
    filter: grayscale(100%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.locations .location:hover .image img,
.locations .location:focus .image img {
    -webkit-filter: grayscale(0%);
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feColorMatrix type="matrix" color-interpolation-filters="sRGB" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0" /></filter></svg>#filter');
    filter: grayscale(0%);
}






/* Responsive medium desktop */
@media all and (max-width: 1200px) {
    .services-wrapper .services-wrap {
        margin-left: 0px;
    }
    .locations .location.amsterdam .content {
        margin-right: 100px;
    }
    .locations .location.miami .content {
        margin-left: 100px;
    }
    .clients-wrap ul li {
        margin: 0px 26px;
    }
    .clients-wrap ul li img {
        max-height: 80px;
    }
}


/* Responsive small tablet */
@media all and (max-width: 992px) {
    .clients-wrap ul li {
        margin: 0px 20px;
    }
    .clients-wrap ul li img {
        max-height: 60px;
    }
}


/* Responsive extra small mobile */
@media all and (max-width: 768px) {

    .background-wrapper .background-video .video-wrap {
        min-height: 50vh;
    }
    .header-wrapper {
        padding: 20px 0;
    }
    .logo-wrapper {
        width: 120px;
    }
    .menu-wrapper {
        margin-top: 0;
    }
    .menu-wrapper .menu {
        display: none;
        text-align: left;
    }
    .menu-wrapper .menu li {
        display: block;
    }
    .menu-wrapper .menu li:first-child {
        padding-top: 30px;
    }
    .menu-wrapper .menu li:last-child {
        padding-bottom: 10px;
    }
    .menu-wrapper .menu li a {
        display: inline-block;
        padding: 5px 0;
    }

    .content-wrapper {
        padding: 40px 0;
    }
    article h1 {
        margin-bottom: 20px;
    }


    .services-wrapper .services-wrap ul {
        margin-top: 30px;
    }
    .services-wrapper .services-wrap li {
        font-size: 28px;
        line-height: 30px;
    }
    .services-wrapper .services-wrap li:hover,
    .services-wrapper .services-wrap li:focus,
    .services-wrapper .services-wrap li.active {
        color: #D5D5D5;
        font-size: 34px;
    }

    .clients-wrap {
        margin-top: 35px;
    }

    .locations {
        white-space: normal;
    }
    .locations::after {
        display: none;
    }
    .locations .location {
        width: 100%;
    }
    .locations .location.amsterdam {
        text-align: left;
    }
    .locations .location.amsterdam .content {
        margin: 15px 0 15px 25px;
    }
    .locations .location.miami .content {
        margin: 15px 0 15px 25px;
    }
    .locations .location .image {
        min-height: 0px;
        max-height: none;
    }


    .footer-wrapper {
        padding: 30px 0 10px;
    }
    .footer-wrapper .footer-menu ul {
        padding-left: 15px;
    }
    .footer-wrapper .footer-services ul {
        padding-left: 15px;
    }



    /* Hamburger */
    .hamburger {
        display: block;
        width: 46px;
        position: absolute;
        right: 24px;
        top: 18px;
    }
    .hamburger div {
        height: 4px;
        margin: 10px 0;
        background: #fff;
        -webkit-transition: 0.35s;
        transition: 0.35s;
    }
    .scrolled .hamburger div {
        background: #000;
    }
    .hamburger.cross-pre div:nth-child(1) {
        -webkit-transform: translateY(15px) ;
        transform: translateY(15px) ;
    }
    .hamburger.cross-pre div:nth-child(2) {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    .hamburger.cross-pre div:nth-child(3) {
            -webkit-transform: translateY(-15px) ;
            transform: translateY(-15px) ;
    }
    .hamburger.cross div:nth-child(1) {
        -webkit-transform: translateY(14px) rotate(-45deg);
        transform: translateY(14px) rotate(-45deg);
    }
    .hamburger.cross div:nth-child(2) {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    .hamburger.cross div:nth-child(3) {
        -webkit-transform: translateY(-14px) rotate(45deg);
        transform: translateY(-14px) rotate(45deg);
    }
}