
@charset "UTF-8";
.portfolio-work {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

.portfolio-work-image {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: url(/img/cur.png), url(/img/cur.cur), crosshair;
    transition: all .3s ease;
}

.portfolio-work-image:hover {
    background: rgb(15 18 18 / 70%);
}

.portfolio-work-image:hover .portfolio-work-info {
    box-shadow: inset 0px 0px 35px 35px black;
    transition: all .5s ease;
}

.portfolio-work-info {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all .3s ease;
}

.portfolio-work-info * {
    opacity: 0;
    transition: all .3s ease;
}

.portfolio-work-image:hover .portfolio-work-info, .portfolio-work-image:hover .portfolio-work-info * {
    opacity: 1;
}

.portfolio-work-info span.button.b-2 {
    display: block;
    padding: 0;
    width: 40px;
    text-align: center;
    font-size: 15px;
    position: absolute;
    left: 50%;
    margin-left: -20px;
    top: 50%;
    margin-top: -20px;
}

.portfolio-work-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    line-height: 22px;
    font-weight: 700;
    padding: 6px;
    text-transform: uppercase;
}
.photo span {
    display: flex;
    line-height: normal;
    text-transform: uppercase;
    background: black;
    flex-direction: column;
    justify-content: center;
    color: white;
    padding: 0 10px;
    letter-spacing: 1px;
    min-height: 65px;
 }
.item-name {
    display:flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 40px;
    justify-content: center;
    align-items: center;
}
.item-name h1 {margin: 0 0 10px;}
.item-name span {
    background:black;
    color:white;
    padding:4px 15px
}