.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: #eee;
    fill: #eee;
}

.navigation__nav {
    padding: 1.2rem 3rem;
    text-align: center;
    background-color: #000;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    -webkit-box-shadow: 0.3rem 0.3rem 0.5rem #000;
    box-shadow: 0.3rem 0.3rem 0.5rem #000;
}

.navigation__nav:after {
    content: "";
    display: table;
    clear: both;
}

.navigation__logo {
    float: left;
}

.navigation__list {
    float: right;
}

.navigation__item {
    padding-top: 1rem;
    vertical-align: middle;
    display: inline-block;
}

.navigation__item:not(:last-child) {
    margin-right: 10rem;
}

.navigation__item:nth-child(2) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.navigation__item:nth-child(3) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.navigation__item:last-child {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.navigation__link:link,
.navigation__link:visited {
    font-family: "Open Sans", sans-serif;
    color: #eee;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 2rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
    letter-spacing: 0.1rem;
    border-bottom: 5px transparent #898876;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
}

.navigation__link:active,
.navigation__link:hover {
    color: #e74c3c;
}

.navigation__mobile__icon {
    cursor: pointer;
    display: none;
}

.icon-mobile-menu {
    font-size: 3.2rem;
}

/* Mobile nav 

.mobile-nav-icon {
    float: right;
    margin-top: 30px;
    cursor: pointer;
    display: none;
}

.mobile-nav-icon i {
    font-size: 200%;
    color: #fff;
}

*/
.form__message {
    width: 65%;
    margin: 0 auto;
    padding: 1rem;
    margin-bottom: 2rem;
}

.form__group {
    display: block;
}

.form__input {
    display: inline-block;
    font-size: inherit;
    font-family: inherit;
    padding: 1.5rem 2.5rem;
    width: 65%;
    margin-top: 2rem;
    background-color: rgba(0, 0, 0, 0.6);
    border: 3px solid #898876;
    color: #898876;
    text-transform: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 1;
}

.form__input:focus {
    outline: none;
    border: 3px solid #c5c5b2;
    background-color: #000;
    color: #eee;
    /* FF 4-18 */
    /* FF 19+ */
    /* IE 10+ */
}

.form__input:focus::-webkit-input-placeholder {
    opacity: 0;
}

.form__input:focus:-moz-placeholder {
    opacity: 0;
}

.form__input:focus::-moz-placeholder {
    opacity: 0;
}

.form__input:focus:-ms-input-placeholder {
    opacity: 0;
}

.form__input:focus:invalid {
    border: 3px solid #e74c3c;
}

.form__input::-webkit-input-placeholder {
    color: #898876;
}

.form__label {
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    display: none;
}

.form__textarea {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.6);
    border: 3px solid #898876;
    width: 65%;
    font-size: inherit;
    font-family: inherit;
    padding: 1.5rem 2.5rem;
    color: #898876;
    margin-top: 2rem;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.form__textarea:focus {
    outline: none;
    border: 3px solid #c5c5b2;
    background-color: #000;
    color: #eee;
    /* FF 4-18 */
    /* FF 19+ */
    /* IE 10+ */
}

.form__textarea:focus::-webkit-input-placeholder {
    opacity: 0;
}

.form__textarea:focus:-moz-placeholder {
    opacity: 0;
}

.form__textarea:focus::-moz-placeholder {
    opacity: 0;
}

.form__textarea:focus:-ms-input-placeholder {
    opacity: 0;
}

.form__textarea::-webkit-input-placeholder {
    color: #898876;
}

.btn {
    padding: 1rem 2rem;
    width: 30rem;
    font-size: 2.3rem;
    text-transform: uppercase;
    font-weight: 700;
    background-color: #898876;
    border: 3px solid transparent;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.btn:hover,
.btn:active {
    border: 3px solid #eee;
    background-color: #eee;
    cursor: pointer;
}

.success {
    background: rgba(0, 184, 148, 0.5);
}

.error {
    background: rgba(231, 76, 60, 0.5);
}

.record {
    margin: 0 auto;
    text-align: center;
    padding-top: 5rem;
    position: relative;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    background-image: -webkit-gradient(linear, left top, left bottom, from(black), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(black, rgba(0, 0, 0, 0));
}

.record__img {
    width: 35%;
}

.record__img:hover {
    -webkit-animation: spin 10s 0s infinite;
    animation: spin 10s 0s infinite;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    cursor: -webkit-grab;
    cursor: grab;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

html {
    font-size: 62.5%;
}

body {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #000;
}

::-moz-selection {
    background-color: #e74c3c;
    color: #eee;
}

::selection {
    background-color: #e74c3c;
    color: #eee;
}

/* QUERIES

@include respond(big-desk) {
    font-size: 75%; // 1rem=12px, 12/16 = 75%;
}

@include respond(tab-land) {
    font-size: 65%; // width < 1200px 1rem=10px, 10/16 = 62.25%;
}

@include respond(tab-port) {
    font-size: 56.25%; // width < 900px 1rem=9px, 9/16 = 56.25%; 

} */
.row {
    max-width: 200rem;
    margin: 0 auto;
}

.row:not(:last-child) {
    margin-bottom: 8rem;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.row [class^="col-"] {
    float: left;
}

.row [class^="col-"]:not(:last-child) {
    margin-right: 6rem;
}

.row .col-1-of-2 {
    width: calc((100% - 6rem) / 2);
}

.row .col-1-of-3 {
    width: calc((100% - 2 * 6rem) / 3);
}

.row .col-2-of-3 {
    width: calc(2 * ((100% - 2 * 6rem) / 3) + 6rem);
}

.row .col-1-of-4 {
    width: calc((100% - 3 * 6rem) / 4);
}

.row .col-2-of-4 {
    width: calc(2 * ((100% - 3 * 6rem) / 4) + 6rem);
}

.row .col-3-of-4 {
    width: calc(3 * ((100% - 3 * 6rem) / 4) + 2 * 6rem);
}

body {
    font-family: "Roboto Mono", monospace;
    font-weight: 400;
    color: #eee;
    font-size: 2rem;
    line-height: 2.1;
}

.bold {
    font-weight: 700;
}

.text-centered {
    text-align: center;
    margin: 0 auto;
}

.sup {
    font-size: 1rem;
}

.subpage a:link,
.subpage a:visited {
    text-decoration: underline;
    color: #eee;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.subpage a:hover,
.subpage a:active {
    color: #e74c3c;
}

.heading {
    background-color: transparent;
}

.heading__blurb {
    font-weight: 300;
    font-size: 6rem;
    letter-spacing: 1rem;
    font-family: "Open Sans", sans-serif;
    color: #eee;
    text-transform: uppercase;
    text-align: center;
    font-weight: 300;
    letter-spacing: 1rem;
}

.heading__section {
    font-size: 6rem;
    padding: 2rem 0;
    font-family: "Open Sans", sans-serif;
    color: #eee;
    text-transform: uppercase;
    text-align: center;
    font-weight: 300;
    letter-spacing: 1rem;
}

.heading__tertiary {
    display: inline-block;
    font-family: "Open Sans", sans-serif;
    font-size: 3.2rem;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.heading__subpage {
    font-size: 6rem;
    font-family: "Open Sans", sans-serif;
    color: #eee;
    text-transform: uppercase;
    text-align: center;
    font-weight: 300;
    letter-spacing: 1rem;
}

.small {
    margin-top: 1.5rem;
    font-size: 1.9rem;
    text-align: center;
}

.small a:link,
.small a:visited,
.contact p a:link,
.contact p a:visited {
    text-decoration: underline;
    color: #eee;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.small a:hover,
.small a:active,
.contact p a:hover,
.contact p a:active {
    color: #e74c3c;
}

.u-padding-small {
    padding: 2rem;
}

.u-padding-medium {
    padding: 4rem;
}

.u-padding-large {
    padding: 6rem;
}

.u-padding-xlarge {
    padding: 8rem;
}

.u-padding-bottom-small {
    padding-bottom: 2rem;
}

.u-padding-bottom-medium {
    padding-bottom: 4rem;
}

.u-padding-bottom-large {
    padding-bottom: 8rem;
}

.u-padding-bottom-xlarge {
    padding-bottom: 20rem;
}

.u-margin-bottom-small {
    margin-bottom: 2rem;
}

.u-margin-bottom-large {
    margin-bottom: 6rem;
}

.u-full-vh {
    height: 100vh;
}

.footer {
    background-color: #000;
    color: #eee;
    text-align: center;
    font-family: "Open Sans", sans-serif;
    font-size: 1.6rem;
    width: 100%;
}

.footer__nav {
    text-align: center;
    list-style: none;
    vertical-align: middle;
    margin-top: 1rem;
}

.footer__nav__item {
    display: inline-block;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.footer__nav__item:not(:first-child) {
    margin-left: 3rem;
}

.footer__nav__link:link,
.footer__nav__link:visited {
    color: #eee;
    text-decoration: none;
    border-bottom: none;
}

.footer__nav__link:active,
.footer__nav__link:hover {
    color: #ededdf;
    text-decoration: underline;
}

.footer__copyright {
    margin-top: 1rem;
}

.sticky {
    position: fixed;
    left: 0;
    bottom: 0;
}

.social {
    background-color: #000;
    color: #ededdf;
    text-align: center;
    margin-top: 0.5rem;
}

.social__icon {
    display: inline-block;
    font-size: 3rem;
}

.social a:link,
.social a:visited {
    text-decoration: none;
}

.social .icon {
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}

.social .icon:hover {
    fill: #e74c3c;
}

section {
    min-height: 100%;
}

.content {
    position: absolute;
    background: #111 url(../img/andsoul_action2bw.png);
    background-blend-mode: darken;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    max-width: 180rem;
}

.header {
    position: relative;
    text-align: center;
    margin: 40rem auto;
}

.header__heading {
    color: #eee;
    font-size: 5rem;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 3.5rem;
}

.header__heading__first {
    display: inline-block;
    background-color: #010101;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    margin-bottom: 1.5rem;
}

.header__heading__second {
    display: inline-block;
    background-color: #010101;
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s;
    margin-bottom: 1.5rem;
}

.header__heading__third {
    display: inline-block;
    background-color: #010101;
    -webkit-animation-delay: 3.5s;
    animation-delay: 3.5s;
}

.blurb {
    position: relative;
}

.blurb__box {
    text-align: center;
    background-color: #000;
    padding: 10rem 15rem;
    width: 45rem;
    color: #eee;
    margin: 0 auto;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.blurb__text {
    font-weight: 300;
    text-transform: uppercase;
}

.music {
    margin: 40rem 0 2rem 0;
    color: #eee;
    min-height: 100vh;
}

.music__box {
    margin: 0 auto;
    width: 80%;
    padding: 10rem 0;
}

.music__text p {
    margin-bottom: 3rem;
}

.cta-link {
    font-size: 2rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: 2rem;
    display: inline-block;
    padding: 1rem 2rem;
    border: 0.5rem solid #eee;
    color: #eee;
    background-color: #000;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.cta-link:visited {
    text-decoration: none;
}

.cta-link:hover,
.cta-link:active {
    background-color: #fff;
    color: #000;
}

.soundcloud_embed {
    margin-top: 2rem;
    margin: 0 auto;
}

.bio {
    margin-top: 10rem;
    color: #eee;
    background-color: #000;
    min-height: 100vh;
    padding-bottom: 10rem;
}

.bio__box {
    padding: 10rem 15rem;
    margin: 0 auto;
}

.bio__pic {
    width: 50%;
}

.contact {
    text-align: center;
    color: #eee;
    background: #111 url(../img/andsoul_action1bw.png);
    background-blend-mode: darken;
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
}

.contact__box {
    padding-top: 10rem;
    margin: 0 auto;
    width: 60%;
}

/*MEDIA QUERY*/

@media screen and (max-width: 76.8rem) {
    html {
        font-size: 50%;
    }

    .music {
        padding: 1rem;
    }

    .heading__section {
        font-size: 5rem;
    }

    .soundcloud_embed {
        padding-top: 5rem;
        width: 75%;
    }

    .cta-link {
        margin: 4rem 0;
    }

    .form__input,
    .form__textarea,
    .form__message {
        width: 100%;
    }

    .contact {
        min-height: 0;
        padding-bottom: 20rem;
    }

    .row {
        width: 100%;
    }

    .row .col-1-of-2 {
        width: 100%;
    }

    .row .col-1-of-3 {
        width: 100%;
    }

    .u-padding-small {
        padding: 0;
    }

    .row [class^="col-"] {
        float: none;
    }

    .bio__box,
    .blurb__box,
    .contact__box {
        width: 80%;
        margin: 0 auto;
    }

    .bio__box,
    .blurb__box {
        padding: 2rem;
    }

    .music {
        padding: 2rem 0;
    }

    .navigation__list {
        float: none;
        margin-top: 5rem;
        display: none;
        -webkit-transition: 0;
        transition: 0;
    }

    .navigation__item {
        display: block;
        width: 100%;
        margin-right: 0;
        float: none;
    }

    .navigation__mobile__icon {
        display: block;
        float: right;
        vertical-align: middle;
        margin-top: 0.5rem;
    }

    .menu-hide {
        display: none;
    }
}

@media screen and (max-width: 40rem) {
    .soundcloud_embed {
        width: 100%;
    }

    .music,
    .bio,
    .contact {
        padding: 5rem 0;
    }
}

@media screen and (max-width: 50.7rem) {
    .bio__pic {
        width: 80%;
    }
}
