.csis-row {
	position: relative;
}

.csis-big-img-holder {
	min-height: 404px;
    width: 95%;
    background-size: cover;
    height: 1px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    margin: auto;
}

.csis-big-img-wrap {
	border-radius: 16px;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
	margin-bottom: 16px;
	transition: all 0.3 ease;
}

.csis-big-img-wrap.active {
	opacity: 1;
	visibility: visible;
	position: relative;
	left: 0;
	top: 0;
}

.csis-big-img-holder::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.csis-big-title {
	font-size: 25px;
	color: #fff;
	font-weight: bold;
	padding-bottom: 10px;
	position: relative;
	z-index: 10;
}

/* CSIS SMALL IMG */
.csis-small-img-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.csis-small-img {
	/*width: 100px;*/
	height: 72px;
	background-size: cover;
	border-radius: 5px;
	margin: 0px 8px;
	margin-bottom: 16px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.csis-small-img::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(225, 89, 170, 0.48);
	transition: all 0.3s ease;
}

.csis-small-img:hover::after {
	opacity: 0;
	visibility: hidden;
}

.csis-small-img.active::after {
	opacity: 0;
	visibility: hidden;
}

.slick-prev, .slick-next {
    top: -225% !important;
    width: 35px !important;
    height: 35px !important;
}

.slick-list {
    width: 95% !important;
    margin: auto !important;
}


@media (max-width: 480px){
    .slick-prev, .slick-next {
        top: -190% !important;
    }

}