
.content h2 {
    display: none;
}

.content article {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0 20px 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: .5s;
}

.content article:hover {
    background: #ebf9f0;
    border: 1px solid #89ffaf;
    box-shadow: 0 0 5px #bcccc2;
    transform: scale(0.99);
}

.content article .down-icon {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto;

    background: #ff6c17;
    color: #fff;
    border-radius: 50%;
    padding-left: 9.5px;
    padding-top: 6px;
    font-size: 16pt;
    border-right: 1px solid #009230;

    transition: .3s;
    position: relative;
    top: 60px;
    left: -100%;
}

/* .content article:hover .down-icon {
    left: 0;
} */

.content article .down-icon:hover {
    background: #f83200;
    border-bottom: 3px solid #f83200;
    box-shadow: 0 0 3px #ff6c17;
    padding-left: 15px;
}

.content article .pdf {
    font: normal 24pt 'cormorant';
    color: #bcccc2;
}

.content article:hover .pdf {
    color: #900;
}

.content article h1 {
    font: normal 16pt 'merri';
    text-transform: none;
    color: #666;
    margin-top: 10px;
}

.content article:hover h1 {
    color: #00bd3d;
}

.content article p {
    color: #8b8b8b;
    margin-bottom: 5px;
}

.content article:hover p {
    color: #00bd3d;
}

.content article .type span {
    font: normal 18pt 'cormorant';
}






@media(min-width: 600px) {
    .content form {
        padding-left: 20px;
        padding-right: 25px;
    }

    .content article .pdf {
        width: 13%;
        float: left;
        text-align: right;
        margin-right: 5%;
    }

    .content article .title {
        width: 82%;
        float: left;
    }

    .content article h1 {
        margin-top: 0;
    }
    
}






@media(min-width: 850px) {

    .content form {
        width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .content article .pdf {
        width: 51px;
    }

    .content article .title {
        width: 85%;
    }

    .content article .author {
        width: 55%;
        float: left;
    }

    .content article .type {
        width: 43%;
        float: right;
        text-align: right;
    }
    
}