.bolum {
	position: relative;
	overflow: hidden;
}
.bolum .bolum-middle {
	position: absolute;
	background-color: #ffffff;
	width: 40px;
	height: 150%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(-2deg); /* 2deg */
}


.bolum .bolum-item {
	height: 25vw; /* bkz */
	min-height: 240px;
	background-position: center; /* bkz */
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	color: #ffffff;

	margin-bottom: 80px;
}
.bolum .bolum-item .bolum-overlay {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	/* background-color: rgba(255,0,0,0.4); */
	background-image: url(res/wave.svg);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100%;
}
.bolum .bolum-item .bolum-text {
	position: absolute;
	width: 70%;
	max-width: 540px;
	left: 50%;
	bottom: 0;
	transform: translate(-50%, 50%);
    background-color: #ffffff;
	text-align: center;
	box-shadow: 0px -5px 10px rgb(0,0,0,0.6);
	border-radius: 3px;
	transition: 0.3s;
}

.bolum-text a {
	color: #333333;
	text-decoration: none;
}

.bolum-text h3 {
	font-size: 18px;
	margin: 0;
	padding: 10px 0 0 0;
	font-weight: bold;
}
.bolum-text p {
    font-size: 12px;
    margin: 0;
    padding: 10px 0;
    letter-spacing: 1.2px;
}

.bolum .bolum-item .bolum-text:hover {
    background-color: #028290;
}
.bolum .bolum-item .bolum-text:hover a {
	color: #ffffff;
}


.bolum-text {
	overflow: hidden;
}
.bolum-text .bolum-icon {
	position: absolute;
	right: 0;
	top: 0;
	width: 36px;
	height: 100%;
	/* background-color: #069fb0; */
	background-color: rgba(0,0,0,0.15);
	z-index: -1;
}
.bolum-text .bolum-icon i {
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 26px;
	color: #333333;
}
.bolum .bolum-item .bolum-text:hover i {
	color: #ffffff;
}


@media (max-width: 1200px) {
	.bolum .bolum-item .bolum-text {
		width: 80%;
	}
	.bolum .bolum-middle {
		width: 20px;
	}
}

@media (max-width: 768px) {
	.bolum .bolum-middle {
		display: none;
	}
}

@media (max-width: 576px) {
	.bolum .bolum-item .bolum-text {
		width: 90%;
	}
}


