.tuotenosto {
	display: flex;
    flex-flow: row wrap;
	width:100%;
}

.tuotenosto h2 {
	width:100%;
	margin-top:1%;
	margin-bottom:5%;
	font-size: 26px;
}

.tuotenosto .nosto {
	width:29%;
	margin:0 4% 5% 0;
	text-align:center;
	box-shadow: 3px 0px 10px #ccc;
	display:flex;
	flex-direction:column;
	row-gap:10px;
	justify-content:space-between;
}
.tuotenosto .nosto .kuva {
	height: 200px;
	overflow:hidden;
	/*position:relative;*/
}

.tuotenosto .nosto .padding {
	display:flex;
	flex-direction:column;
	row-gap:0;
	justify-content:space-between;
	align-items:stretch;
	flex-grow: 1.3;
}

.tuotenosto .nosto .padding a {
	flex-grow: 1.5;
	background-color: #08151B;
}

.tuotenosto .nosto .kuva .kuva-wrapper {
	margin:0 20%;
	height:200px;
	position:relative;
}

.tuotenosto .nosto .kuva img {
	
	max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
	
	/*
	position:absolute;
	bottom:5%;
	left: 20%;
	*/
	/*width:60%;*/
	/*height:auto;*/
	
}

.tuotenosto .nosto h3 {
    font-family: 'Source Sans Pro';
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    /* background-color: #08151B; */
    line-height: 1.2em;
    margin: auto 0;
    padding: 1em 0;
    text-align: center;
	height:100%;
}

.tuotenosto .nosto .padding a:hover, .tuotenosto .nosto h3:hover {
	background-color: #ec6605;
}

@media only screen and (max-width: 750px) {
	
	.tuotenosto .nosto {
		width:46%;
		margin:0 4% 5% 0;
		text-align:center;
		box-shadow: 3px 0px 10px #ccc;
	}
	
}

@media only screen and (max-width: 550px) {
	
	.tuotenosto .nosto {
		width:100%;
		margin:5% auto 5% auto;
		text-align:center;
		box-shadow: 3px 0px 10px #ccc;
	}
	
	.tuotenosto .nosto .kuva img {
		/*
		position:absolute;
		bottom:5%;
		left: 25%;
		width:50%;
		height:auto;
		*/
	}
	
	.tuotenosto h2 {
		width:100%;
		margin-top:1%;
		margin-bottom:5%;
		font-size: 22px;
	}
	
}