/* CONTENT STRIPES */
div.layout_content_stripe_custom_article {
	width: 100%;
	margin: 160px 0px 280px 0px;
}
@media only screen and (max-width: 991px) {
	div.layout_content_stripe_custom_article {
		margin: 40px 0px;
	}
}

div.layout_content_stripe_custom_article div.row.position_absolute {
	width: 100%;
}
@media only screen and (max-width: 991px) {
	div.layout_content_stripe_custom_article div.row.position_absolute {
		position: relative;
	}
}

div.layout_content_stripe_custom_article div[class^="col-"]:first-child {
	padding-right: 0px;
	padding-left: 0px;
}
div.layout_content_stripe_custom_article div[class^="col-"]:last-child {
	padding-right: 0px;
	padding-left: 0px;
}
@media only screen and (max-width: 991px) {
	div.layout_content_stripe_custom_article div[class^="col-"]:first-child,
	div.layout_content_stripe_custom_article div[class^="col-"]:last-child {
		padding-right: 0px;
		padding-left: 0px;
	}
}

@media only screen and (max-width: 991px) {
	div.layout_content_stripe_custom_article div.row.position_absolute > div[class^="col-"] {
		padding-left: 15px;
		padding-right: 15px;
	}
}

div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_image img {
	position: relative;
	-webkit-border-radius: 8px !important;
	-moz-border-radius: 8px !important;
	border-radius: 8px !important;
}
@media only screen and (max-width: 991px) {
	div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_image img {
		position: relative;
		top: 0px;
		margin-bottom: 40px;
	}
}

div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_text ul {
	list-style: none;
	margin: 20px 0px 20px 0px;
	padding: 0px 0px 0px 0px;
}
div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_text ul:first-child {
	margin: 0px 0px 20px 0px;
}
div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_text ul li {
	list-style: none;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 20px;
	position: relative;
}
div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_text ul li::before {
	content: "\f105";
	font-family: 'Font Awesome 6 Pro';
	font-weight: 300;
	font-size: 1.2em;
	color: var(--ci_color_accent_1);
	margin: 1px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	display: inline-block;
	position: absolute;
	left: 0px;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_text ul li:hover::before {
	color: var(--ci_color_accent_2);
	left: 6px;
}

div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_text a,
div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_text a:link,
div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_text a:visited {
	font-weight: 500;
	color: var(--ci_color);
	text-decoration: none;
	position: relative;
	hyphens: none;
	text-wrap: nowrap;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_text a:hover {
	color: var(--ci_color_accent_2);
	text-decoration: none !important;
}
div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_text a::before {
	content: '';
	width: 100%;
	height: 1px;
	position: absolute;
	background: currentColor;
	top: 100%;
	left: 0;
	pointer-events: none;
	transform-origin: 100% 50%;
	transform: scale3d(0, 1, 1);
	transition: transform 0.3s;
}
div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_text a:hover::before {
	transform-origin: 0% 50%;
	transform: scale3d(1, 1, 1);
}

div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_headline {
	margin-bottom: 40px;
}
div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_headline h2 {
	position: relative;
	left: -2px;
	color: var(--ci_color_black);
	font-weight: 300;
	font-size: 32px;
	line-height: 38px;
	margin: 0px 0px 20px 0px;
	padding: 0px;
	border-bottom: none;
}
div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_headline h2::after {
	content: none;
}

div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_text {
	margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
	div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_text {
		margin-top: 20px;
	}
}

div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_grid {
	display: flex;
	position: relative;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
	div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_grid {
		margin-top: 20px;
		gap: 20px;
	}
}

div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_grid_item {
	display: flex;
	align-items: baseline;
	position: relative;
	width: calc(50% - 20px);
	background: var(--ci_color_light_blue);
	padding: 0px;
	-webkit-border-radius: 8px !important;
	-moz-border-radius: 8px !important;
	border-radius: 8px !important;
}
@media only screen and (max-width: 768px) {
	div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_grid_item {
		width: 100%;
	}
}

div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_grid_item a,
div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_grid_item a:link,
div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_grid_item a:visited {
	display: block;
	position: relative;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: var(--ci_color_black);
}
div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_grid_item_headline a {
	padding: 20px 10px 10px 20px;
}
div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_grid_item_text a {
	padding: 10px 10px 20px 20px;
}
div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_grid_item_readmore a {
	padding: 20px 20px 20px 10px;
}

div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_grid_item_content {
	align-self: center;
}

div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_grid_item_headline h3 {
	color: var(--ci_color_black);
	font-weight: 500;
	font-size: 18px;
	line-height: 22px;
	margin: 0px;
	padding: 0px;
	border-bottom: none;
}
div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_grid_item_headline h3::after {
	content: none;
}

div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_grid_item_text {
	hyphens: none;
}

div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_grid_item_readmore {
	position: relative;
	flex-grow: 1;
	height: 100%;
	padding: 0px;
	text-align: right;
}

div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_grid_item_readmore i {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	color: var(--ci_color);
	font-size: 24px;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}

div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_link {
	text-align: center;
}
@media only screen and (max-width: 991px) {
	div.layout_content_stripe_custom_article div.layout_content_stripe_custom_article_link {
		text-align: center;
	}
}