@charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700|Work+Sans:300,400,500,600,700);
body {
    color: #191919;
    font-family: 'Work Sans', sans-serif
}
img {
    vertical-align: baseline
}
.flex {
    display: flex
}
.scroll-down {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(40,42,43,.2);
    position: fixed;
    right: 0;
    bottom: 0;
    margin: 20px;
    box-shadow: 0 1px 20px rgba(0,0,0,.2);
    transform: translateX(-50%);
    transition: .2s ease-in-out;
    cursor: pointer
}
.arrow-down {
    width: 32px;
    height: 32px;
    margin: 0 auto;
    border-radius: 50%;
    background: #fff
}
.scroll-text {
    margin-top: 5px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600
}
.portfolio-page .scroll-down {
    margin-left: 60px
}
.portfolio-content {
    position: relative;
    margin-bottom: 16px
}
.portfolio-content figure {
    margin: 0
}
.portfolio-content figure img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 100%
}
.portfolio-content .entry-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.9);
    font-family: Poppins, sans-serif;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: .35s
}
.portfolio-content:hover .entry-content {
    visibility: visible;
    opacity: 1
}
.portfolio-content h3 {
    margin-bottom: 0;
    font-family: Poppins, sans-serif;
    font-size: 1.5rem;
    font-weight: 500
}
.portfolio-content h3 a {
    color: #191919;
    text-decoration: none
}
.portfolio-content ul {
    padding: 0;
    margin: 10px 0 0;
    list-style: none
}
.portfolio-content li {
    margin: 0 3px
}
.portfolio-content li a {
    font-size: .875rem;
    color: #a6a6a6
}
