@charset "UTF-8";
/* CSS Document */

/*--- PROJECTS PAGE---*/

#content ul {
    width: 100%;
    z-index: 2;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr;
}

#content ul a {
    text-decoration: none;
}

#content li {
    overflow: hidden;
}

#content li img {
    width: 100%;
}

#content li p {
    font-family: "Barlow", sans-serif;
    font-size: 1em;
    font-weight: 300;
    line-height: 1.1em;
    margin: 5px 0 40px 0;
}




/* PROJECTS PAGE END */



/* RESPONSIVE */

@media only screen and (min-width: 500px) {
    #content ul {
        grid-template-columns: 1fr 1fr;
    }

}

@media only screen and (min-width: 750px) {}

@media only screen and (min-width: 1000px) {
    #content ul {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media only screen and (min-width: 1100px) {

    #content {
        /*width:100%;*/
        padding: 0 0 0 0;
    }

    #content li {
        text-align: center;
        background: #000;
        position: relative;
    }

    #content li p {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: 40% auto 0 auto;
        color: #fff;
    }

    .typeEffect {
        position: relative;
        top: 35%;
    }

    .hoverEffect img {
        opacity: 1;
        -webkit-transition: opacity 0.35s,
            -webkit-transform 0.35s;
        transition: opacity 0.35s, transform 0.35s;
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
    }

    .hoverEffect:hover img {
        opacity: 0.2;
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    .hoverEffect p {
        opacity: 0;
        -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
        transition: opacity 0.35s, transform 0.35s;
        -webkit-transform: translate3d(0, 20px, 0) scale(1.1);
        transform: translate3d(0, 20px, 0) scale(1.1);
    }

    .hoverEffect:hover p {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0) scale(1);
        transform: translate3d(0, 20px, 0) scale(1);
    }

}

@media only screen and (min-width: 1350px) {}

@media only screen and (min-width: 1600px) {}

@media only screen and (min-width: 1950px) {}

*/
/* RESPONSIVE END */
