*{
	margin: 0;
	padding: 0;
}
html{
    height: 100%;
}
body{
    font-family: 'Ubuntu';
	color: #333;
    background: #202020;
    height: 100%;
    overflow: hidden;
}
a,
a:hover,
a:active{
	color: #fff;
	text-decoration: none !important;
}
.wrapper{
    height: 100%;
}
.work-wrapper{
    top: 80px;
    bottom: 0;
    position: absolute;
    width: 100%;
}
.button{
    width: 170px;
    height: 50px;
    line-height: 50px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    display: inline-block;
    position: relative;
    color: #fff;
    box-shadow: inset 0 0 0 2px #fff;

    -moz-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.logo{
    height: 80px;
    position: relative;
    display: block;
    text-align: center;
}
.logo > img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -21px 0 0 -100px;
}
.button:hover{
    background: #fff;
    color: #333;
}
.big {
    color: #fff;
    font-size: 100px;
    font-weight: bold;
    line-height: 100px;
    margin: 6px -7px;
    text-transform: uppercase;
    display: block;
}
.small {
    color: #fff;
    font-size: 28px;
    font-weight: 200;
    letter-spacing: 16px;
    text-transform: uppercase;
    display: block;
}
.work {
    background-position: center center;
    background-size: cover;
    position: absolute;
    padding-left: 150px;
    width: 100%;
    overflow: hidden;
}
.work:hover img{
    opacity: 1;

    -moz-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}
    .work .container {
        height: 100%;
        position: relative;
        z-index: 1;
        display: block;
    }
    .work img{
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0.6;
        background-size: cover; 
        background-position: center center;

        -moz-transform: scale(1.01, 1.01);
        -webkit-transform: scale(1.01, 1.01);
        -o-transform: scale(1.01, 1.01);
        -ms-transform: scale(1.01, 1.01);
        transform: scale(1.01, 1.01);

        -moz-transition: all 0.3s linear;
        -webkit-transition: all 0.3s linear;
        -o-transition: all 0.3s linear;
        -ms-transition: all 0.3s linear;
        transition: all 0.3s linear;
    }
.work-text{
    height: 180px;
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    margin-top: -90px;
    width: 100%;
}
.work:nth-child(1){
    top: 0;
    bottom: 66.6667%;
}
.work:nth-child(2){
    top: 33.3333%;
    bottom: 33.3333%;
}
.work:nth-child(3){
    top: 66.6667%;
    bottom: 0;
}

@media (max-width: 1100px) {
    .big{
        font-size: 70px;
        line-height: 70px;
    }
    .work{
        padding: 0 50px;
    }
    .work-text{
        margin-top: -75px;
    }
}
@media (max-width: 992px) {
    
    .small{
        letter-spacing: 10px;
    }
}
@media (max-width: 640px) {
    .big {
        font-size: 50px;
        line-height: 50px;
    }
    .small {
        letter-spacing: 5px;
        font-size: 20px;
    }
    .work-text {
        margin-top: -50px;
        height: 100px;
    }
}
@media (max-width: 540px){
    .small {
        font-size: 16px;
    }
    .big {
        font-size: 36px;
        line-height: 36px;
    }
}
@media (max-width: 400px){
    .big {
        font-size: 20px;
        line-height: 20px;
        margin: 6px 0;
    }
    .small {
        font-size: 10px;
        letter-spacing: 3px;
    }
    .work-text{
        margin-top: -35px;
    }
}