/*********************************************************************************************************
 /$$$$$$$  /$$        /$$$$$$   /$$$$$$        /$$$$$$$$ /$$$$$$$$  /$$$$$$   /$$$$$$  /$$$$$$$$ /$$$$$$$
| $$__  $$| $$       /$$__  $$ /$$__  $$      |__  $$__/| $$_____/ /$$__  $$ /$$__  $$| $$_____/| $$__  $$
| $$  \ $$| $$      | $$  \ $$| $$  \__/         | $$   | $$      | $$  \ $$| $$  \__/| $$      | $$  \ $$
| $$$$$$$ | $$      | $$  | $$| $$ /$$$$         | $$   | $$$$$   | $$$$$$$$|  $$$$$$ | $$$$$   | $$$$$$$/
| $$__  $$| $$      | $$  | $$| $$|_  $$         | $$   | $$__/   | $$__  $$ \____  $$| $$__/   | $$__  $$
| $$  \ $$| $$      | $$  | $$| $$  \ $$         | $$   | $$      | $$  | $$ /$$  \ $$| $$      | $$  \ $$
| $$$$$$$/| $$$$$$$$|  $$$$$$/|  $$$$$$/         | $$   | $$$$$$$$| $$  | $$|  $$$$$$/| $$$$$$$$| $$  | $$
|_______/ |________/ \______/  \______/          |__/   |________/|__/  |__/ \______/ |________/|__/  |__/
********************************************************************************************************/
#blog_teaser
{
	width: 100%;
	max-width: 2000px;
	margin: 0 auto;
	padding-top: 50px;
	overflow: hidden;
	padding-bottom: 120px;
}

#blog_teaser .button-wrapper
{
	position: relative;
}

#blog_teaser .slider-nav
{
	position: absolute;
	z-index: 10;
	top: 0;
	height: 100%;
	width: 65px;
	display: flex;
	align-items: center;
}

#blog_teaser .slider-nav img
{
	transition: transform 200ms;
}

#blog_teaser .slider-nav.previous
{
	justify-content: flex-end;
	left: 0;
	background: linear-gradient(90deg, #C9DDDD, transparent);
}

#blog_teaser .slider-nav.previous:hover img
{
	transform: translateX(-5px);
}

#blog_teaser .slider-nav.next
{
	justify-content: flex-start;
	right: 0;
	background: linear-gradient(90deg, transparent, #C9DDDD);
}

#blog_teaser .slider-nav.next:hover img
{
	transform: translateX(5px);
}

#blog_teaser .slider-nav.swiper-button-disabled
{
	display: none;
}

@media screen and (max-width:1200px)
{
	#blog_teaser .slider-nav
	{
		display: none;
	}
}

#blog_teaser .container-fluid
{
	overflow: hidden;
}

#blog_teaser .swiper-slide
{
	overflow: hidden;
	margin-right: 30px;
	width: 100%;
	max-width: 424px;
}

@media screen and (max-width:400px)
{
	#blog_teaser .swiper-slide
	{
		margin-right: 0;
	}
}

#blog_teaser .teaser-item:link,
#blog_teaser .teaser-item:active,
#blog_teaser .teaser-item:visited
{
	position: relative;
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-end;
	align-items: flex-start;
	width: 100%;
	height: 400px;
	text-decoration: none;
	-webkit-box-shadow: 0px 0px 15px -3px #000000; 
	box-shadow: 0px 0px 15px -3px #000000;
    /* border-top: 4px solid #9FD76B;
	border-bottom: 4px solid #9FD76B; */
}

#blog_teaser .teaser-item.no-image
{
	justify-content: center;
}

#blog_teaser .teaser-item .image-container
{
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

#blog_teaser .teaser-item .image-container img
{
	height: 100% !important;
	width: 100% !important;
	object-fit: cover;
}

#blog_teaser .teaser-item .text-container
{
	position: relative;
	z-index: 2;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	padding: 15px 25px;
	background-color: #ffffff;
	height: 154px;
	width: 100%;
	overflow: hidden;
	box-shadow: 0 5px 5px rgba(0,0,0,0);
	transition: all 200ms;
}

#blog_teaser .teaser-item:hover .text-container
{
	transform: translateY(-20px);
	box-shadow: 0 5px 5px rgba(0,0,0,0.3);
}

#blog_teaser .teaser-item.no-image .text-container
{
	height: 100%;
}

#blog_teaser .teaser-item .text-container .date
{
	display: block;
	margin: 10px 0;
	font-size: 12pt;
    font-family: 'SourceSans3', sans-serif;
	font-weight: normal;	
	color: #222222;
}

#blog_teaser .teaser-item .text-container .title
{
    font-family: 'SourceSans3_semibold', sans-serif;
	font-size: 16pt;
	font-weight: normal;
	color: #15232C;
}

@media screen and (max-width:400px)
{
	#blog_teaser .teaser-item .text-container .title
	{
		font-size: 12pt;
	}
}

#blog_teaser .teaser-item.no-image .text-container .title
{
	font-size: 24pt;
}

#blog_teaser .teaser-item .text-container .read-more-text
{
    font-family: 'SourceSans3', sans-serif;
	font-size: 12pt;
	font-weight: bold;
	color: #000000;
	text-align: right;
	opacity: 0;
	transition: opacity 200ms;
}

#blog_teaser .teaser-item:hover .text-container .read-more-text
{
	opacity: 1;
}
