div {
	transition: all 0.1s ease-in-out;
}

.show-hide-btn {
	background: none;
	height: 45px;
	width: 45px;
	text-align: end;
}

.show-hide-btn:focus {
	outline: none;
}

.service-title-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.service-inner {
	background-color: #fafafa;
	border-left: 6px solid var(--service-border-color);
	border-top: 1px solid var(--service-border-color);
	border-right: 1px solid var(--service-border-color);
	border-bottom: 1px solid var(--service-border-color);
	border-radius: 5px;
	padding: 20px;
	margin: auto;
	width: 100%;
}

.service-inner i.fas.fa-caret-right {
	color: var(--service-border-color);
}

.service-inner:hover {
	cursor: pointer;
}

.service-inner span {
	font-weight: bold;
}

.service-inner-inner {
	padding-top: 35px;
}

.service-link-container {
	border: 1px solid lightgrey;
	border-radius: 6px;
	padding: 10px;
	margin-bottom: 20px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.service-link-container p {
	margin-bottom: 0;
}

.service-inner-inner a {
	color: black;
}

.service-inner-inner a:hover {
	color: black !important;
	text-decoration: none;
}

.service-link-container:hover {
	background-color: #141b3d;
	color: white;
	cursor: pointer;
	border: 1px solid #141b3d;
}

.collapse {
	display: none;
}

.expand {
	display: block;
}