img {
    max-width: 100%;
    height: auto;
    border: 0;
}

.page-wrap {
    overflow: hidden;
}

::-moz-selection {
    color: #fff;
    background-color: #121113;
}

::selection {
    color: #fff;
    background-color: #121113;
}

/* Typography */

body {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    color: #0c0c0e;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

body.md-skin-dark {
    background-color: #303036;
}

.md-skin-dark {
    color: rgba(255, 255, 255, .9);
}

.md-skin-dark h1 {
    color: #fff;
}

h1 {
    font-weight: 400;
    line-height: 1.4em;
    color: #0c0c0e;
    font-family: "Work Sans", sans-serif;
}

h1 {
    font-size: 20px;
}

h1 {
    margin-top: 30px;
    margin-bottom: 15px;
}

/* 3. general_header
--------------------------------------------------------------------------------*/

.header {
    padding: 15px 15px;
}

.header__left {
    display: none;
}

.header__left > span {
    font-weight: 300;
}

.header__left > span + span:before {
    content: '|';
    display: inline-block;
    margin: 0 40px;
}

.header__social {
    text-align: center;
}

@media (min-width: 993px) {
    .header {
        padding: 20px 40px;
        margin-bottom: 0;
    }
}

@media (min-width: 1201px) {
    .header__left {
        display: block;
    }

    .header__social {
        text-align: right;
    }
}

@media (min-width: 1401px) {
    .header {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-align: center;
        align-items: center;
        padding: 20px 70px;
    }
}

/* 5. general_hero
--------------------------------------------------------------------------------*/

.hero {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 9;
}

.hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .5;
    z-index: -1;
}

.hero .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.hero__title_inner {
    text-align: center;
}

.hero__title {
    margin-top: -50px;
    font-size: 20px;
    font-weight: 300;
    color: #fff;
}

.info_title {
    font-size: 18px;
    font-family: "Work Sans", sans-serif;
    color: #fdfcfc;
}

@media (min-width: 320px) {

    .info_title {
        margin-top: -85px;
        padding: 50px;
    }
    .hero__title {
        font-size: calc(2.04545vw + 23.45455px);
    }
}

@media (min-width: 1200px) {
    .hero__title {
        font-size: 48px;
    }
}

.hero__wrapper {
    position: relative;
    padding: 120px 0 50px;
    z-index: 99;
    min-height: 100vh;
}

@media (min-width: 1401px) {
    .hero__wrapper {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
            flex-direction: column;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

/* 3. general_header
--------------------------------------------------------------------------------*/

.header {
    padding: 15px 15px;
}

.header__left {
    display: block; /* Visible on all screens */
    text-align: center; /* Centered for mobile */
    color: #fff;
}

.header__left > span {
    font-weight: 300;
    display: block; /* Stack vertically on mobile */
    margin-bottom: 5px;
}

.header__left > span + span:before {
    display: none;
}

@media (min-width: 993px) {
    .header {
        padding: 20px 40px;
        margin-bottom: 0;
    }
}

@media (min-width: 1201px) {
    .header__left {
        text-align: left;
    }

    .header__left > span {
        display: inline;
    }


    .header__left > span + span:before {
        content: '|';
        display: inline-block;
        margin: 0 40px;
    }
}