/**
 * KTI Card Widget base styles.
 */

.kti-card {
  height: 100%;
	background-color: white;
	border-radius: 12px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	position: relative;
}

h3.kti-card-title span{
	position:relative;
}

h3.kti-card-title span::after {
    content: "";
    height: 10px;
    width: 10px;
    position: absolute;
    bottom: 0;
    right: -0.6em;
	transform: skewX(-13deg);
    background: #009A17;
}

.kti-card-top {
	display: flex;
	justify-content: space-between;
}

.kti-pattern-icon {
	width: 35px;
	height: auto;
	position: absolute;
	top: 20px;
	right: 20px;
}

.kti-card-title {
  position: relative;
	font-style: italic;
	font-size: 24px;
	color: #003361;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 20px;
}

.kti-details-btn {
	padding: 0.4rem 1rem;
	font-size: 14px;
	font-weight: 700;
}