/*!
 * Copyright (C) 2015 Codeplay Software Limited
 * All Rights Reserved.
 *
 * @author Scott Straughan
 */
section#welcome img#badge {
    position: absolute;
    top: 110px;
    right: 0;
    width: auto;
    height: auto;
    cursor: pointer;
}

section#welcome {
    height: 900px;
    width: 100%;
    z-index: 100;
    position: relative;
    top: 0;
    left: 0;
    background: #0e141c url(/public/images/home/welcome.jpg) no-repeat;
    background-size: cover;
    overflow: hidden;
}

section#welcome > h1 {
    font-size: 3rem;
    color: white;
    font-weight: 400;
    width: 650px;
    position: absolute;
    bottom: 200px;
    left: 80px;
    text-shadow: 0 0 10px rgba(0, 0, 0, .35);
    box-sizing: border-box;
}

section#welcome > h2 {
    font-size: 1.5rem;
    color: white;
    font-weight: 300;
    width: 600px;
    position: absolute;
    bottom: 140px;
    left: 80px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, .35);
}

section#welcome > div {
    width: 500px;
    position: absolute;
    bottom: 460px;
    left: 80px;
}

section#welcome > div > img:first-child {
    display: block;
}

section#welcome > div > img:last-child {
}

section#welcome > img#scroll {
    position: absolute;
    bottom: 50px;
    left: 49%;
    width: auto;
    height: auto;
}

/*
* Breakpoint
*/
@media screen
and (max-width: 68.75rem) {
    section#welcome img#badge {
        display: none;
    }

}

/*
* Breakpoint
*/
@media screen
and (max-width: 43.13rem) {
    section#welcome img#badge,
    section#welcome img#scroll {
        display: none;
    }

    section#welcome {
        height: 700px;
        padding-top: 150px;
    }

    section#welcome > div {
        width: 100%;
        text-align: center;
        position: static;
    }

    section#welcome > div > img:first-child {
        display: inline-block;
        padding-top: 90px;

    }

    section#welcome > h1,
    section#welcome > h2 {
        box-sizing: border-box;
        position: static;
        left: 20px;
        width: 100%;
        height: 100%;
        bottom: 50px;
        padding-top: 100px;
        text-align: center;
    }

    section#welcome > h1 {
        bottom: 150px;
        padding-left: 20px;
        padding-right: 30px;
        font-size: 2.1rem;
        height: auto;
        box-sizing: border-box;
    }

    section#welcome > h2 {
        bottom: 100px;
        margin-top: 20px;
        padding-left: 20px;
        padding-right: 30px;
        box-sizing: border-box;
    }

    section#welcome > div > img:first-child {
        width: 90%;
    }
}