/*
--------------------------------------
container
--------------------------------------
*/

.service-feature-box * {
	font-family: var(--e-global-typography-primary-font-family);
	font-weight: 400;
}

.service-feature-box {
	display: flex;
	flex-direction: column;
	/*justify-content: space-between;*/
	height: 100%;
}

/*
--------------------------------------
item
--------------------------------------
*/

/*Title*/

.service-feature-box__title {
	font-size: 20px;
	color: var(--e-global-color-primary);
	line-height: 26px;
}

/*Description*/

.service-feature-box__description {
	font-size: 16px;
	color: var(--e-global-color-text);
	line-height: 26px;
	padding: 1em 0;
}

/*Badge*/

.service-feature-box__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.service-feature-box__badge {
	background: transparent;
	border: 1px solid #fff;
	border-radius: 0;
}

.service-feature-box__badge:hover,
.service-feature-box__badge:hover {
	background: transparent;
	border: 1px solid #fff;
	border-radius: 0;
}

/*List*/

.service-feature-box__list {
	min-height: 150px;
	margin-top: 1.5em;
}

.service-feature-box__list * {
	color: #fff;
}

.service-feature-box__list li {
	position: relative;
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	line-height: 26px;
	padding-left: 1.5em;
}

.service-feature-box__list li:before {
	position: absolute;
	left: 0;
	content: '✓';
	color: var(--e-global-color-primary);
}

.service-feature-box__list strong {
	font-size: 18px;
	font-weight: 700;
}