/* ----------------------------------------------- */
/* BASIC SETUP */

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    background-image: url(img/graphpaper.png), -webkit-gradient(linear, left top, left bottom, from(#0c1b3d), to(#1d556b));
    background-image: url(img/graphpaper.png), linear-gradient(#0c1b3d, #1d556b);
    background-position: center;
    height: 100vh;

    background-repeat: no-repeat;
    color: #605d5c;
    font-family: 'Ubuntu', 'Arial', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 160%;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.clearfix {zoom: 1;}
.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

/* ----------------------------------------------- */



/* ----------------------------------------------- */
/* PROJECT */


.row {
    max-width: 1280px;
    margin: 0 auto;  
}



h1 {    
    font-size: 206.25%;
    font-weight: 300;
    line-height: 100%;
    color: #1e3c54;
    margin-bottom: 25px;
    margin-top: 0px;
}



.project-description .row{
    background-color: #f6f6f6;
    margin-top: 65px;   
    -webkit-box-shadow: 0 1px 8px #292929;   
    box-shadow: 0 1px 8px #292929;
    position: relative;

}


.description-left {
    padding: 45px 0px 45px 40px;
}

.description-right {
}


.project-icon{  
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0px 40px 47px 0px;

}


.btn-return:link,
.btn-return:visited {
    position: absolute;
    right: 0;
    margin:-23px 0px 0px 0px;   
    display: inline-block;
    padding: 10px 40px 12px 25px;
    text-decoration: none;
    font-size: 135%;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-radius: 100px 0px 0px 100px;
    background-image: -webkit-gradient(linear,left top, left bottom,from(#909090),to(#4e4b4a));
    background-image: linear-gradient(#909090,#4e4b4a);
    color: #ededed;
    -webkit-transition: background-image 0.3s, padding 0.3s ease-out , color 0.3s;
    -webkit-transition: background-image 0.3s, padding 0.3s ease-out, color 0.3s;
    transition: background-image 0.3s, padding 0.3s ease-out, color 0.3s;
}


.btn-return:hover,
.btn-return:active {
    background-image: -webkit-gradient(linear,left top, left bottom,from(#a3a3a3),to(#767371));
    background-image: linear-gradient(#a3a3a3,#767371);
    padding: 10px 55px 12px 25px;
    color: #fff;

}





.section-project {
    padding: 35px 0px 0px 0px;     
}

.project-box { 
    margin: 0 auto;
    max-width: 298px;
    min-width: 298px;
    height: 298px;   
    color: #fff;
    line-height: 115%;
    position: relative;
    -webkit-box-shadow: 0 1px 8px #292929;
    box-shadow: 0 1px 8px #292929;

}



.project-photo {
    width: 298px;
    height: 298px;   
    margin: 0;
    overflow: hidden;
    background-color: #f2e7b8;
    z-index: 13;
}


.project-photo img {
       
    cursor: default;

    opacity: 1;
    width: auto; 
    height: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;

}


.project-photo img:hover {
    opacity: 0.7;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}


/* ----------------------------------------------- */





