

#home {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#home .left {
    position: absolute;
    width: 40%;
    background: #000;
    height: 100%;
    left: 0;
    top: 0;
    color: #fff;
}
#home .left span {
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -120px;
    right: -115px;
    transform: rotate(270deg);
    font-size: 200px;
    padding: 0;
    line-height: 160px;
}
#home .right {
    position: absolute;
    width: 60%;
    background: #fff;
    left: 40%;
    height: 300px;
    margin-top: -150px;
    top: 50%;
    color: #000;
    overflow: hidden;
    padding-left: 50px;
}

#home .right h1 {
    font-size: 80px;
    margin-bottom: 0;
}
#home .right p {
    font-size: 22px;
    color: #aaa;
    line-height: 50px;
    padding-left: 40px;
    margin: 0;
    font-style: italic;
}
#home .right a {
    display: inline-block;
    background: #000;
    text-decoration: none;
    line-height: 60px;
    color: #fff;
    font-size: 25px;
    padding: 0 25px;
    margin-top: 50px;
    transition: all 0.3s ease;
    perspective: 500px;
}
#home .right a em {
    transition: all 0.3s ease;
}

#home .right a:hover {
    /*transform: skewX(-23deg);
    transform-style: preserve-3d;*/
}
#home .right a:hover em {
    padding-left: 100px;
}