/* Frontpage-Teaser
------------------------------------------------------------------ */
ul.frontpage-teaser {
	list-style: none;
	margin: 0;
	padding: 0;
}

li.fpt-teaser {
	display: block;
	position: relative;
	min-height: 300px;
}

.fpt-content {
	display: -ms-flex;
	display: -webkit-flex;
	display: flex;
}

.fpt-title {
	width: 40%;
	height: 100%;
	font-size: 40px;
	font-weight: bold;
	line-height: 1.18;
	color: #fff;
}

.fpt-text {
	width: 60%;
	height: 100%;
	font-size: 14px;
	color: #fff;
	padding-top: 60px;
}

.fpt-more {
	position: absolute;
	left: 0;
	bottom: 0;
}

.fpt-dotnav {
	position: absolute;
	display: -ms-flex;
	display: -webkit-flex;
	display: flex;
    align-items: center;
    right: -40px;
	top: 0;
	bottom: 0;
	width: 10px;
}

.fpt-dots {
	width: 10px;
	padding: 0;
	margin: 0;
    list-style: none;
}

.fpt-dots li {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    margin: 20px 0;
    padding: 0;
    cursor: pointer;
}

.fpt-dots li button {
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    font-size: 0;
    line-height: 0;
    color: transparent;
    outline: none;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
	transition: background-color 0.3s ease, transform 0.3s ease;
	cursor: pointer;    
}

.fpt-dots li.slick-active button {
    background: #fff;
}

.fpt-more .btn_more {
	display: inline-block;
	font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    padding: 2px 15px;
    border: 1px solid #fff;
    border-radius: 25px;
	text-decoration: none;
}

.fpt-more .btn_more:hover {
	color: #045a9d;
	background: #fff;
}

@media (max-width: 767px) {

	ul.frontpage-teaser {
		margin: -30px -60px -20px -35px;
	}

	li.fpt-teaser {
		height: auto;
	}

	.fpt-content {
		display: block;
	}

	.fpt-title {
		width: auto;
		height: auto;
		font-size: 32px;
	}

	.fpt-text {
		width: auto;
		height: auto;
		padding-top: 0;
	}

	.fpt-more {
		position: relative;
	}

	.fpt-dotnav {
    	right: -20px;
	}
}

