@import url(https://fonts.googleapis.com/css?family=Francois+One);

* {
    box-sizing: border-box;
}


.wrap{
    width: 87%;
    margin: auto;
    padding: 0 10px;
    background-color: rgba(255,255,255,0.9);
    overflow: hidden;
    box-shadow: 0 0 5px #eee;
}

img{
    max-width: 70%;
    height: auto;
    border-radius: 4px;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: 0.05em;
    font-weight: 600;
    }

h1{text-align:center;}

.row{

}

.more:link, .more:visited {
    transition-duration: 0.2s;
    transition-timing-function: ease-out;
}

[class*='col-']{
    float:left;
}

.col-1-3{
    width: 33.33%;
    padding: 20px;
}

.col-2-3{
    width: 66.66%;
    padding: 20px;
}

.col-1-4{
    width: 25%;
    padding: 10px;

}

.show{
    float: left;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: default;
    display: block;
    border-radius: 4px;
    margin-bottom: 55px;
}


.aspect{
    position: relative;
    padding-bottom: 120%;
    height: 0;
    overflow: hidden;
}

.show .mask{
    width: 70%;
    height: 98.1%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 36px;
    border-radius: 4px;
}

/* THIRD */

.show-third a.more {
    display: inline-block;
    text-decoration: none;
    padding: 7px 14px;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    box-shadow: 0 0 1px #000;
    position: relative;
    vertical-align: middle;
}

/*.show-third a.more:hover {
    box-shadow: 0 0 5px #fff;
    background-color: #222;
}*/

.show-third p{
    font-size: 28px;
}

.show-third .mask {
    opacity: 0;
    background-color: rgba(161,144,96, 0.5);
    transition: all 0.4s ease-in-out;
}

.show-third h2 {
    color: #000;
    margin-top: 10%;
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

.show-third p {
    opacity: 0;
    transition: all 0.2s linear;
}

.show-third a.info{
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

.show-third img{
    transition: all 0.2s ease-in-out;
}

.show-third:hover img {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    filter: gray;
    -webkit-filter: grayscale(100%);}

.show-third:hover .mask {
    opacity: 1;
}
.show-third:hover h2,
.show-third:hover p,
.show-third:hover a.info {
    opacity: 1;
}
.show-third:hover p {
    transition-delay: 0.1s;
}
.show-third:hover a.info {
    transition-delay: 0.2s;
}

@media only screen and (max-width: 767px) {

    .col-1-4{
        width: 50%;
        padding: 10px;
        overflow: hidden;
        clear: right;
    }


    .wrap{
        width: 100%;
        margin: auto;
        overflow: hidden;}

    .mobile-clear{
        clear:both;}

}