/* CSS Document */

.service-item {
	position: relative;
	margin-bottom: 30px;
	box-shadow: 3px 3px 3px 0px rgba(51, 51, 51, 0.75);
	/*cursor:pointer;*/
}
.service-item .txt {
	/* display: none; */
	/*transform: translateY(-100%);*/
	max-height: 0;
	-webkit-transition: all 1s; /* Safari prior 6.1 */
	transition: all 1s;
}
.service-item:hover .txt {
	display: block;
	/*transform: translateY(0);*/
	height: 100%;
	max-height: 500px;
	
}
.service-item .imago {
	position: relative;
	z-index: 1;
	box-shadow: none;
}
.service-item h3.title {
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 0;
	right: 0;
	margin-top: 0;
	font-size: 22px;
	color: #EDEDED;
	padding: 10px;
	padding-right: 20px;
	padding-left: 20px;
	background-color: #355787;
}
.service-item h3.title .red-rrow {
}
.service-item .red-arrow {
	width: 26px;
	height: 26px;
	float: right;
	background-size: contain;
	background-image: url(../../themes/eklinik/images/arrows/trekant.png);
	background-repeat: no-repeat;
	background-position: center center;
	margin-right: -10px;
}
.service-item:hover .red-arrow {
	-ms-transform: rotate(90deg); 
	-webkit-transform: rotate(90deg); 
	transform: rotate(90deg);
}
.service-item .txt {
	background: #355787;
	color: #EDEDED;
	/* padding: 20px; */
	margin-top: 0px;
	overflow: hidden;
	font-size: 15px;
	line-height: 1.2;
}
.service-item .txt > * {
	margin: 20px;
	margin-top: 0;
}
.txt p {
	margin: 0;
}
.service-item .txt h4 {
	color: #ededed;
	font-size: 16px;
	margin-bottom: 1px;
	line-height: 1.2;
}
.service-item .txt a { color:#c60c30;}
