.nozzleteaser-container {
	margin-bottom: 60px;
	padding: 90px 0;
}
.nozzleteaser-items {
	display: flex;
	flex-wrap: wrap;
}
.nozzleteaser-item {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 33.33333%;
	margin-bottom: 20px;
}
.nozzleteaser-image img {
	display: block;
	width: 100%;
	height: auto;
}
.nozzleteaser-title h2 {
	font-weight: 800;
	font-size: 25px;
	color: #444;
}
.nozzleteaser-image {
}
.nozzleteaser-content {
	display: flex;
	flex-direction: column;
	height: 290px;
	background-color: #fff;
}
.nozzleteaser-content-inner {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 30px;
	background-color: #fff;
	transition: all .4s ease;
}
.nozzleteaser-content-inner::before {
	content: '';
	position: absolute;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 38px 30px 38px;
	border-color: transparent transparent #fff transparent;
}
.nozzleteaser-item:nth-child(3n+2) .nozzleteaser-content {
	order: -1;
}
.nozzleteaser-item:nth-child(3n+2) .nozzleteaser-content-inner {
	bottom: 50%;
	top: 0;
}
.nozzleteaser-item:nth-child(3n+2) .nozzleteaser-content-inner::before {
	top: auto;
	bottom: -18px;
	border-width: 18px 25px 0 25px;
	border-color: #fff transparent transparent transparent;
}
.nozzleteaser-text {
	position: relative;
	max-height: 140px;
	padding-right: 15px;
	margin-right: 2px;
	overflow: hidden;
	margin-bottom: auto;
	scrollbar-color: transparent transparent;
	scrollbar-width: thin;
}
.nozzleteaser-item.is-active .nozzleteaser-text {
	max-height: none;
	height: ~'calc(100% - 80px)';
	overflow-y: auto;
}
.nozzleteaser-item.is-active.is-finished .nozzleteaser-text {
	scrollbar-color: #ccc #f7f7f7;
}
.nozzleteaser-text::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	background-image: linear-gradient(to top, #fff 0%, transparent 70%);
	pointer-events: none;
	opacity: 1;
	transition: opacity .2s ease;
}
.nozzleteaser-more {
	position: absolute;
	right: 15px;
	bottom: 15px;
	display: inline-block;
	width: 40px;
	height: 40px;
	background-color: #fff;
	color: #2e407d;
	transition: background-color ease .4s;
	border: none;
	border-radius: 50%;
	box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
	cursor: pointer;
	font-size: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: lato-semibold;
	outline: none;
	transform: rotate(0deg);
	transition: transform .2s;
}
.nozzleteaser-more::before {
	content: '';
	position: absolute;
	z-index: 10;
	width: 32px; height: 32px;
	border: 2px solid #2e407d;
	border-radius: 50%;
	opacity: 1;
	transition: opacity .2s;
}
.nozzleteaser-more:hover {
	background-color: #2e407d;
	color: #fff;
}
.nozzleteaser-more:active {
	opacity: .85;
}
.nozzleteaser-more:hover::before {
	opacity: 0;
}
.nozzleteaser-item.is-active .nozzleteaser-more {
	transform: rotate(45deg);
}
.nozzleteaser-item.is-active .nozzleteaser-content-inner {
	top: 0;
}
.nozzleteaser-item.is-active:nth-child(3n+2) .nozzleteaser-content-inner {
	bottom: 0;
}

.nozzleteaser-item.is-active .nozzleteaser-text::after,
.nozzleteaser-item.is-active .nozzleteaser-content-inner::before {
	opacity: 0;
}

.nozzleteaser-item.is-active .nozzleteaser-text::-webkit-scrollbar {
	width: 7px;
}
.nozzleteaser-item.is-active .nozzleteaser-text::-webkit-scrollbar-track {
	background-color: #f7f7f7;
}
.nozzleteaser-item.is-active .nozzleteaser-text::-webkit-scrollbar-thumb {
	background-color: #ccc;
}


@media only screen and (max-width: 1430px) {
	.nozzleteaser-item {
		width: 50%;
	}
	.nozzleteaser-item:nth-child(3n+2) .nozzleteaser-content {
		order: unset;
	}
	.nozzleteaser-item:nth-child(2n) .nozzleteaser-content {
		border-left: 1px solid #ddd;
	}
	.nozzleteaser-content-inner::before,
	.nozzleteaser-content-inner::after {
		display: none;
	}
	.nozzleteaser-content {
		height: 100%;
	}
	.nozzleteaser-content-inner {
		position: static;
	}
	.nozzleteaser-text {
		max-height: none;
		overflow: visible;
	}
	.nozzleteaser-text::after {
		display: none;
	}
	.nozzleteaser-more {
		display: none;
	}
}

@media only screen and (max-width: 720px) {
	.nozzleteaser-item {
		width: auto;
	}
	.nozzleteaser-item:nth-child(2n) .nozzleteaser-content {
		border-left: none;
	}
}