.portfolio__list {
    font-size: 0;
    margin-left: -4px;
}

.portfolio__list > * {
    font-size: 14px;
}

.portfolio__item {
    display: inline-block;
    width: 215px;
    border-radius: 10px 9px 9px 10px;
    -webkit-border-radius: 10px 9px 9px 10px;
    -moz-border-radius: 10px 9px 9px 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin-left: 20px;
    margin-bottom: 20px;
    vertical-align: top;
}

.portfolio__item:hover  {
    animation: bounce .8s linear;
}


.portfolio__link {
    display: block;
    text-decoration: none;
}

.portfolio__pic {
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    height: 163px;
}

.portfolio__desc {
    background: #fff;
    padding: 20px;
}

.portfolio__desc-title {
    color: #33c1e3;
    font-size: 21px;
    line-height: 24px;
    bottom: 5px;
}

.portfolio__desc-text {
    color: #414141;
    font-size: 14px;
    font-weight: 300;
    line-height: 16px;
    margin-bottom: 17px;
}

.portfolio__desc-type {
    color: #aeaeae;
    font-size: 18px;
}

/*@keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        transform: scale(.3, .3, .3);
    }

    20% {
        transform: scale(1.1, 1.1, 1.1);
    }

    40% {
        transform: scale(.9, .9, .9);
    }

    60% {
        opacity: 1;
        transform: scale(1.03, 1.03, 1.03);
    }

    80% {
        transform: scale(.97, .97, .97);
    }

    to {
        opacity: 1;
        transform: scale(1, 1, 1);
    }
}*/