
body{
	background-image: url('../images/backgrounds/services.jpg');
	background-repeat: no-repeat;
	background-size: cover;
}

#itemWrapper{
	margin-bottom: 400px;
	padding-bottom: 30px;
}

.item{
	height: 300px;
	-webkit-box-shadow: 0px 10px 17px 0px rgba(0,0,0,0.35);
	-moz-box-shadow: 0px 10px 17px 0px rgba(0,0,0,0.35);
	box-shadow: 0px 10px 17px 0px rgba(0,0,0,0.35);
	margin-bottom: 40px;
	border: 1px solid #e5e5e5;/*promeniti boju da bude ista kao na .card na index.css*/
}

.item > .left{
	position: relative;
	display: inline-block;
	width: 300px;
	height: 300px;
	overflow: hidden;
}

.item > .left > img{
	display: block;
	height: 240px;
	width: 240px;
	margin-top: 30px;
	margin-left: 30px;
}

.item > .right{
	position: relative;
	display: inline-block;
	height: 300px;
	float: left;
	padding: 30px;
	-moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
     box-sizing: border-box;
	 width: calc(100% - 300px);
	 text-align: justify;
}

.item > .right > h2{
	margin-bottom: 20px;
}

.item > .right > p{
	font-size: 18px;
	line-height: 24px;
}

.item > .right > a{
	position: absolute;
	display: block;
	color: blue;
	bottom: 30px;
	left: 30px;
	text-decoration: none;
	font-size: 15px;
}

@media screen and (min-width: 801px) and (max-width: 1000px){
	
	.item > .right > h2{
		margin-bottom: 10px;
	}
	
	.item > .right > p{
		font-size: 17px;
		line-height: 23px;
	}
}

@media screen and (min-width: 601px) and (max-width: 800px){
	.item{
		height: 250px;
	}
	
	.item > .left{
		height: 250px;
		width: 250px;
	}
	
	.item > .left > img{
		height: 190px;
		width: 190px;
	}
	
	.item > .right{
		height: 250px;
		padding: 10px;
		padding-top: 30px;
		width: calc(100% - 260px);
	}
	
	.item > .right > h2{
		font-size: 20px;
		margin-bottom: 10px;
	}
	
	.item > .right > p{
		font-size: 14px;
		line-height: 19px;
		text-align: justify;
	}
	
	.item > .right > a{
		left: 10px;
	}
}

@media screen and (max-width: 600px){
	.item{
		display: block;
		width: 300px;
		height: auto;
		margin: 0 auto;
		margin-bottom: 40px;
	}
	
	.item > div{
		display: block;
		width: 100%;
	}
	
	.item > .right{
		height: auto;
		width: 100%;
		padding-bottom: 70px;
		padding-top: 0;
	}
	
	.item > .right > h2{
		font-size: 20px;
		margin-bottom: 10px;
	}

	.item > .right > p{
		display: inline-block;
		width: 100%;
		font-size: 17px;
		line-height: 23px;
	}
	
}









