/*--------------------------------- Reset ------------------------------------*/

body, html {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
}
body {
    font: 15px/25px Arial, Arial, Helvetica, sans-serif;
    color: #000;
    background: #ccc url("../img/bg.jpg") 0 0 repeat;
    margin: 0 auto;
}
img, div, p, span, form, input, textarea, dl, dt, dd, object {
    border: none;
    border-width: 0px;
    padding: 0px;
    margin: 0px;
    outline: none;
}
input, textarea {
    background-color: transparent;
    resize: none;
    outline: none;
}
table {
    margin: 0px;
    padding: 0px;
    border-width: 0px;
    border-collapse: collapse;
    border-spacing: 0px;
}
table td {
    padding: 0px;
}
h1, h2, h3, h4 {
    padding: 0px;
    margin: 0px;
    font-weight: normal;
    font-family: Arial, Arial, Helvetica, sans-serif;
}
.clear {
    clear: both;
    height: 0px;
    overflow: hidden;
}
.clearfix:after {
    display: block;
    content: '';
    height: 0;
    overflow: 0;
    clear: both;
}
ul, li {
    padding: 0px;
    margin: 0px;
    list-style:	none;
}
ins, a {
    text-decoration: none;
    color: inherit;
}
a {
    cursor: pointer;
    outline: none;
}

/*----------------------------- Custom ---------------------------------------*/

/*----------------------------- Common ---------------------------------------*/

/* Center */

.center-wrapper {
    display: table;
    width: 100%;
    height: 100%;
}
.center-holder {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.center-content {
    display: inline-block;
    width: 100%;
}

/*----------------------------- Layout ---------------------------------------*/

.page-holder {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100%;
}
.page-holder-outer {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.page-holder-inner {
    position: relative;
}

.wrapper {
    width: 100%;
    max-width: 940px;
    min-width: 320px;
    margin: 0 auto;
    padding: 0 10px;

    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

/* Host info */

.host-info a {
    color: steelblue;
}

.host-info a:hover {
    text-decoration: underline;
}

/* Projects list */

.projects-grid {

}
.projects-grid .wrapper {

}
.projects-grid ul {
    display: table;
    width: 100%;
    font-size: 0;
}
.projects-grid li {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    padding: 2% 3%;
    font-size: 15px;

    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

.project {
    position: relative;
    display: block;
    border: 10px solid #FFFFFF;
    background: #000;
    overflow: hidden;
}
.project:hover {
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    -moz-box-shadow:    0 0 5px rgba(0, 0, 0, 0.5);
    box-shadow:         0 0 5px rgba(0, 0, 0, 0.5);
}
.project img {
    display: block;
    width: 100%;
    height: auto;

    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}
.project:hover img {
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}
.project-title {
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    display: block;
    padding: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;

    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -ms-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.project:hover .project-title {
    bottom: 0;
}

@media all and (max-width: 480px) {
    .projects-grid li {
        width: 100%;
    }
}
