/*********************************************************************************************************
 /$$$$$$$  /$$        /$$$$$$   /$$$$$$        /$$$$$$$$ /$$$$$$$$  /$$$$$$   /$$$$$$  /$$$$$$$$ /$$$$$$$
| $$__  $$| $$       /$$__  $$ /$$__  $$      |__  $$__/| $$_____/ /$$__  $$ /$$__  $$| $$_____/| $$__  $$
| $$  \ $$| $$      | $$  \ $$| $$  \__/         | $$   | $$      | $$  \ $$| $$  \__/| $$      | $$  \ $$
| $$$$$$$ | $$      | $$  | $$| $$ /$$$$         | $$   | $$$$$   | $$$$$$$$|  $$$$$$ | $$$$$   | $$$$$$$/
| $$__  $$| $$      | $$  | $$| $$|_  $$         | $$   | $$__/   | $$__  $$ \____  $$| $$__/   | $$__  $$
| $$  \ $$| $$      | $$  | $$| $$  \ $$         | $$   | $$      | $$  | $$ /$$  \ $$| $$      | $$  \ $$
| $$$$$$$/| $$$$$$$$|  $$$$$$/|  $$$$$$/         | $$   | $$$$$$$$| $$  | $$|  $$$$$$/| $$$$$$$$| $$  | $$
|_______/ |________/ \______/  \______/          |__/   |________/|__/  |__/ \______/ |________/|__/  |__/
********************************************************************************************************/
#blog_teaser
{
	margin-top: 100px;
	margin-bottom: 30px;
}

#blog_teaser .teaser-heading
{
	text-align: center;
	margin-bottom: 40px;
}

#blog_teaser .teaser-item:link,
#blog_teaser .teaser-item:active,
#blog_teaser .teaser-item:visited
{
	position: relative;
	display: block;
	margin-bottom: 60px;
	height: 630px;
	text-decoration: none;
}

@media screen and (max-width:1200px)
{
	#blog_teaser .teaser-item:link,
	#blog_teaser .teaser-item:active,
	#blog_teaser .teaser-item:visited
	{
		height: auto;
	}
}

#blog_teaser .teaser-item .teaser-date
{
	font-family: "lato_light", Arial, Helvetica, sans-serif;
	font-size: 14pt;
	font-weight: normal;
	color: #2D2D2D;
	margin-bottom: 10px;
}

#blog_teaser .teaser-item .teaser-image
{
	position: relative;
	padding-top: 100%;
	height: 0;
	overflow: hidden;
}

#blog_teaser .teaser-item .teaser-image img
{
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	height: 100% !important;
	width: 100% !important;
	object-fit: cover;
}

#blog_teaser .teaser-item .teaser-image::after
{
	content: "Read More";
	position: absolute;
	z-index: 2;
	bottom: 0;
	right: 0;
    font-family: 'Roboto_semibold', sans-serif;
	font-size: 14pt;
	color: #ffffff;
	background-color: #C00000;
	padding: 5px 15px;
	opacity: 0;
	transition: opacity 200ms;
}

#blog_teaser .teaser-item:hover .teaser-image::after
{
	opacity: 1;
}

#blog_teaser .teaser-item .title-description-container
{
	margin-top: 25px;
}

#blog_teaser .teaser-item.has-image .title-description-container
{
	height: auto;
}

@media screen and (max-width:1200px)
{
	#blog_teaser .teaser-item .title-description-container
	{
		height: auto;
	}
}

#blog_teaser .teaser-item.has-image .title-description-container
{
	display: block;
	min-height: 0;
}

#blog_teaser .teaser-item .title-description-container .teaser-title
{
	position: relative;
	display: inline-block;
    font-family: 'Roboto_light', sans-serif;
	font-size: 16pt;
	font-weight: normal;
	color: #2D2D2D;
	padding-right: 25px;
	margin-bottom: 10px;
}

#blog_teaser .teaser-item .title-description-container .teaser-title::after
{
	content: "";
	position: absolute;
	top: 14px;
	right: 0;
	width: 16px;
	height: 2px;
	background-color: #C00000;
	transition: transform 200ms;
}

#blog_teaser .teaser-item:hover .title-description-container .teaser-title::after
{
	transform: translateX(5px);
}

#blog_teaser .teaser-item .title-description-container .teaser-description
{
    font-family: 'Roboto_medium', sans-serif;
	font-size: 14pt;
	color: #6F7378;
}