/*
 *  HOME
 */
#home {
    background: url("../image/home/intro@2x.jpg") no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center top;
}

#home aside.scroll {
    width: 100px;
    position: fixed;
    margin-left: -50px;
    left: 50%;
    bottom: 1em;
    opacity: 1;

    -webkit-animation: mover 1s infinite alternate;
    -o-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;

    transition: opacity 1s ease;
}

#home.scroll aside.scroll {
    opacity: 0;
}

@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

#home aside.scroll div {
    width: 1px;
    height: 40px;

    position: relative;
    left: 50%;

    background: #777;
}

#home aside.scroll p {
    font-size: 90%;
    text-align: center;
    text-transform: uppercase;
    color: #000;
}



/*
 * HOME WRAP
 */
#homeWrap {
    padding: 200px 1.5em 1.5em;
}

#homeWrap h1 {
    margin-bottom: 1em;

    font-size: 200%;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    text-align: center;
}

#homeWrap p {
    line-height: 1.4em;

    font-weight: 400;
    margin-top: .3em;
    text-align: center;
}

#homeWrap p.button {
    margin-top: 2em;
}

#homeWrap p.button a {
    margin-top: 2em;
    padding: .3em .8em;

    color: #fff;
    text-decoration: none;
    border-radius: .3em;
    background: rgba(0,0,0,.5);
}

#homeWrap p.button a:hover {
    background: rgba(0,0,0,.8);
}


/*
 * CLASSES
 */
#classes {
    max-width: 600px;
    min-height: 300px;

    margin: 0 auto;
}

#classes div.wrap {
    padding: 1.5em;
}

#classes h1 {
    margin-bottom: 1em;
    font-size: 140%;
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
}

#classes div.class a {
    padding: .8em;
    display: block;

    text-decoration: none;
    border-radius: .3em;
    background: #e8e8e8;
}

#classes div.class a:hover {
    background: #d8d8d8;
}

#classes div.class + div.class {
    margin-top: 1em;
}

#classes div.class h2 {
    padding: .5em;
    text-align: center;
    font-size: 110%;
    font-style: italic;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
}

#classes div.class p {
    color: #111;
    text-align: center;
}


@media only screen and (-webkit-min-device-pixel-ratio: 1.1),
only screen and (min-device-pixel-ratio: 1.1) {
    #home { background-image: url("../image/home/intro@3x.jpg"); }
}

@media only screen and (-webkit-min-device-pixel-ratio: 2.1),
only screen and (min-device-pixel-ratio: 2.1) {

}

@media only screen and (min-width: 23.43em) {

}

@media only screen and (min-width: 28em) {

}

@media only screen and (min-width: 44em) {
    #homeWrap h1 {
        font-size: 250%;
    }

    #homeWrap p {
        font-size: 130%;
    }
}

@media only screen and (min-width: 62.5em),
only screen and (min-height: 37.5em) {
    #home { background-image: url("../image/home/intro@3x.jpg"); }
}

@media only screen and (min-height: 50em) {
    #homeWrap {
        padding-top: 400px;
    }
}