.cards-row {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
}

.cards-column {
	display: flex;
	width: 100%;
	background-color: #f8f8f8;
	margin-bottom: 10px;
}

.cards-image {
	width: 70px;
	height: 70px;
	overflow: hidden;
	/*border-radius: 100%;*/
	margin-right: 20px;
	border: 5px solid #FFFFFF;
	box-shadow: 0 0 1px 1px #e4e6eb;
}

.cards-image img {
	object-fit: scale-down;
	width: 70px;
	height: 70px;
}

.cards {
	display: flex;
	padding: 10px 15px;
	width: 100%;
	height: 100%;

}

.cards-column:hover {
	background-color: #cfcfcf;
}

.cards h4 a {
	font-size: 18px;
	font-weight: bold;
	color: #003366;
}

.cards h4 a:hover {
	text-decoration: none;
	color: #006fdc;
}

.cards .label-b {
	color: #393939;
	font-size: 13px;
	font-weight: normal;
	white-space: normal;
	border-left: 1px solid #ef7c00;
	padding: 5px;
	border-radius: 0;
}

.cards .label {
	color: #393939;
	font-size: 13px;
	font-weight: normal;
	border-left: 1px solid #ef7c00;
	border-radius: 0;
	white-space: normal;
}

ul.cards-contact {
	margin: 0;
	padding: 0;
}

ul.cards-contact li {
	list-style: none;
	font-size: 12px;
	line-height: 24px;
	color: #393939;
}

ul.cards-contact li {
	position: relative;
}

ul.cards-contact .icon {
	display: block;
	position: absolute;
	color: #393939;
	margin: 2px;
}




@media only screen and (min-width: 768px) {
	.cards-row {
		margin-bottom: 10px;
		flex-direction: row;
	}

	.cards-column {
		width: 50%;
		background-color: #f8f8f8;
		margin-bottom: 0;
	}

	.cards-column:first-of-type {
		margin-right: 5px;
	}

	.cards-column:last-child {
		margin-left: 5px;
	}

	.cards-image-wrapper {
		height: 100%;
		display: flex;
		align-items: center;
	}

	.cards-image {
		width: 150px;
		height: 150px;
		/*border-radius: 100%;*/
		margin-right: 20px;
	}

	.cards-image img {
		width: 150px;
		height: 150px;
	}

	.cards {
		padding: 10px 15px;

	}
}

#cs-details {
	/*display: none;*/
}

.section--case .panel:hover #cs-details {
	display: block;
	margin: 10px 0 10px 0;
	line-height: 1.5;
}

.section--fil label {
	width: 100%;
	font-size: 15px;
	color: #1f1f1f;
	display: block;
	float: left;
	height: 25px;
	line-height: 25px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-weight: normal;
}

.section--fil label input {
	vertical-align: middle;
	margin: 3px;
}


section.research-columns {
	display: block;
}

section.research-columns .column {
	flex-basis: 33.33%;
	/* Determines the column width. Here, 100% (full width) divided by 3 (number of columns) gives each column a width of 33.33%. */
	box-sizing: border-box;
	/* Ensures padding and border are included in the element's total width and height. */
	padding: 5rem 4rem;
	/* Add padding as needed. */
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: #003d7c;
	gap: 3rem;
	transition: 0.5s ease-in-out;
}

section.research-columns .column:hover {
	background-color: #002449 !important;
}

section.research-columns .column h4 {
	margin: 0;
	color: white;
	font-size: 2.3rem;
	text-transform: uppercase;
	line-height: 1.3;
}

section.research-columns .column div.description {
	color: white;
}

section.research-columns .column a {
	color: #006fdc;
}

section.research-columns .column a.button {
	display: inline-block;
	color: white;
	padding: .5rem 1.5rem;
	border: 1px solid white;
	width: fit-content;
}

section.research-columns .column a.button:hover {
	text-decoration: none;
	background-color: white;
	color: black;
}

@media screen and (min-width: 768px) {
	section.research-columns {
		display: flex;
		flex-wrap: wrap;
	}
}