@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,300,500);
@import url(//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css);
@import url(grid.css);

html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #2a282b;
    color: #fff;
    margin: 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.42857143;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

a, button, textarea, input {
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/*input[type="text"], input[type="password"] {*/
    /*display: block;*/
    /*width: 100%;*/
    /*height: 36px;*/
    /*padding: 0 11px;*/
    /*font-family: inherit;*/
    /*font-size: 16px;*/
    /*font-weight: 400;*/
    /*color: #515151;*/
    /*border-radius: 3px;*/
    /*border: 1px solid #CDCDCD;*/
    /*-webkit-transition: all 300ms;*/
    /*-moz-transition: all 300ms;*/
    /*-o-transition: all 300ms;*/
    /*transition: all 300ms;*/
/*}*/

h1 {
    font-size: 55px;
    font-weight: 100;
    margin: 0 0 20px;
}

h3 {
    font-size: 22px;
    font-weight: 400;
    margin: 0 0 16px;
}

p {
    margin: 0 0 20px;
}

p.strong {
    font-weight: 400;
}

p.btn-icon-label {
    float: left;
    line-height: 50px;
    margin-right: 19px;
}

.text-center {
    text-align: center;
}

/** Header **/
header {
    background: #fff;
    padding: 30px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    -webkit-box-shadow: 0 -2px 6px #231f20;
    -moz-box-shadow: 0 -2px 6px #231f20;
    box-shadow: 0 -2px 6px #231f20;
    overflow: hidden;
    z-index: 1000;
}

header nav {
    font-size: 19px;
    font-weight: 300;
    display: inline-block;
}

header nav ul {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

header nav ul li {
    position: relative;
    margin: 0 20px;
}

header nav ul li a {
    position: relative;
    padding: 10px 11px;
    display: block;
    text-align: center;
    color: #929292;
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
}

header nav ul li a:hover,
header nav ul li a:focus {
    color: #444;
}

header nav ul li.active a {
    color: #f64747;
}

header nav ul li::before,
header nav ul li::after,
header nav ul li a::before,
header nav ul li a::after {
    content: '';
    position: absolute;
    background: #f64747;
    -webkit-transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
}

header nav ul li::before,
header nav ul li::after {
    top: 0;
    width: 2px;
    height: 100%;
    -webkit-transform: scale3d(1, 0, 1);
    transform: scale3d(1, 0, 1);
}

header nav ul li::before {
    left: 0;
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
}

header nav ul li::after {
    right: 0;
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
}

header nav ul li a::before,
header nav ul li a::after {
    left: 0;
    width: 100%;
    height: 2px;
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
}

header nav ul li a::before {
    top: 0;
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
}

header nav ul li a::after {
    bottom: 0;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}

header nav ul li.active::before,
header nav ul li.active::after,
header nav ul li.active .menu-link::before,
header nav ul li.active .menu-link::after {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

/** Sections & articles **/
section:first-of-type {
    margin-top: 107px;
}

section {
    padding: 80px;
    min-height: 100vh;
}

section.hero {
    background: linear-gradient(172deg, rgba(246, 71, 71, 1) 0%, rgba(255, 77, 0, 1) 100%)
}

article {
    max-width: 950px;
    margin: 0 auto;
}

/** Buttons **/
.btn-icon {
    background: rgba(255, 255, 255, 0.19);
    border-radius: 10%;
    height: 50px;
    width: 50px;
    font-size: 35px;
    line-height: 50px;
    text-align: center;
    -webkit-transition: all 400ms;
    -moz-transition: all 400ms;
    -ms-transition: all 400ms;
    -o-transition: all 400ms;
    transition: all 400ms;
}

.btn-icon:hover {
    background: rgba(7, 7, 7, 0.22);
}

/** Forms **/
.form-group {
    margin-bottom: 15px;
}

.input {
    position: relative;
    z-index: 1;
    display: inline-block;
    max-width: 350px;
    width: calc(100% - 2em);
    vertical-align: top;
}

.input__field {
    position: relative;
    display: block;
    float: right;
    padding: 0.8em;
    width: 60%;
    border: none;
    border-radius: 0;
    background: #f0f0f0;
    color: #aaa;
    font-weight: bold;
    font-family: inherit;
    -webkit-appearance: none; /* for box shadows to show on iOS */
}

.input__field:focus {
    outline: none;
}

.input__label {
    display: inline-block;
    float: right;
    padding: 0 1em;
    width: 40%;
    color: #6a7989;
    font-weight: bold;
    font-size: 70.25%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.input__label-content {
    position: relative;
    display: block;
    padding: 1.6em 0;
    width: 100%;
}

.graphic {
    position: absolute;
    top: 0;
    left: 0;
    fill: none;
}

.icon {
    color: #ddd;
    font-size: 150%;
}

/* Individual styles */

/* Jiro */

.input__field--jiro {
    padding: 17px 12px;
    width: 100%;
    background: transparent;
    color: #DDE2E2;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.input__label--jiro {
    position: absolute;
    left: 0;
    padding: 0 0.85em;
    width: 100%;
    height: 100%;
    text-align: left;
    pointer-events: none;
}

.input__label-content--jiro {
    -webkit-transition: -webkit-transform 0.3s 0.3s;
    transition: transform 0.3s 0.3s;
}

.input__label--jiro::before,
.input__label--jiro::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}

.input__label--jiro::before {
    border-top: 2px solid #6a7989;
    -webkit-transform: translate3d(0, 100%, 0) translate3d(0, -2px, 0);
    transform: translate3d(0, 100%, 0) translate3d(0, -2px, 0);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.input__label--jiro::after {
    z-index: -1;
    background: #6a7989;
    -webkit-transform: scale3d(1, 0, 1);
    transform: scale3d(1, 0, 1);
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
}

.input__field--jiro:focus,
.input--filled .input__field--jiro {
    opacity: 1;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.input__field--jiro:focus + .input__label--jiro .input__label-content--jiro,
.input--filled .input__label-content--jiro {
    -webkit-transform: translate3d(0, -80%, 0);
    transform: translate3d(0, -80%, 0);
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.input__field--jiro:focus + .input__label--jiro::before,
.input--filled .input__label--jiro::before {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

.input__field--jiro:focus + .input__label--jiro::before,
.input--filled .input__label--jiro::before {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.input__field--jiro:focus + .input__label--jiro::after,
.input--filled .input__label--jiro::after {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.slide-down-icon {
    position: absolute;
    bottom: 22px;
    left: 0;
    right: 0;
}

.slide-down-icon > .icon {
    width: 90px;
    margin: auto;
    fill: #fff;
}