.csis-row {
	position: relative;
}

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

.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: "";
	background-image: linear-gradient(0deg, #0d5fa8 0%, rgba(13,95,168,0) 40%);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.csis-big-img-holder::before {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 75px 75px;
	border-color: transparent transparent #5bd200 transparent;
	z-index: 1;
}

.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: no-repeat center #333;
	border-radius: 10px;
	margin-right: 16px;
	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(11,84,162,.3);
	transition: all 0.3s ease;
}

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

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