.volume-list{
	width: 94%;
	margin: 0 auto;
	margin-top: 80px;
	position: relative;
}
.volume-list.bottom-padding{
    margin-bottom: 120px;
}
.volume-list:before {
    content: " ";
    background: linear-gradient(-90deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    position: absolute;
    top: 0;
    left: -60px;
    width: 13%;
    height: 100%;
    z-index: 8;
    opacity: 0;
    pointer-events: none;
}

.volume-list:after {
    content: " ";
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 100%);
    position: absolute;
    top: 0;
    right: -1px;
    width: 13%;
    height: 100%;
    z-index: 8;
    opacity: 1;
    pointer-events: none;
 }
.volume-list.before:before{
	opacity: 1;
}
.volume-list.after:after{
	opacity: 0;
}
 .volume-list .volume-swiper{
 	margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
 }
.volume-issue .text-box h3{
	color: var(--color-white);
}
.volume-issue .text-box .recent-category{
	color: var(--color-blue);
	text-transform: uppercase;
	font: var(--font-menu);
}
.volume-list .slide-arrow {
    position: absolute;
    top: calc(50% - 32px);
    z-index: 9;
    background-color: var(--color-black);
    border-radius: 50%;
    cursor: pointer;
    user-select: none;
}
.volume-list .slide-arrow.right{
	right: 12px;
    transform: rotate(-90deg);
}
.volume-list .slide-arrow.left{
	display: none;
	left: -6%;
    transform: rotate(90deg);
}


@media screen and (max-width:600px){
	.volume-list:after{
		content: none;
		display: none;
	}
	.volume-list .slide-arrow{
		display: none;
	}
	.volume-list .project-block:last-child{
		display: none;
	}
}