<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.container-faq {
	margin: 0 auto;
	width: 100%;
}
  
  .accordion .accordion-item {
	border-bottom: 1px solid #ffffff;
  }
  .accordion .accordion-item button[aria-expanded=true] {
	border-bottom: 1px solid  #fffffff;
  }
  .accordion button {
	font-family: "EB Garamond", serif;
	position: relative;
	display: block;
	text-align: left;
	width: 100%;
	padding: 1em 0;
	color:  #ffffff;
	font-weight: 100;
	border: none;
	background: none;
	outline: none;
  }
  .accordion button:hover, .accordion button:focus {
	cursor: pointer;
	color: #ffffff;
  }
  .accordion button:hover::after, .accordion button:focus::after {
	cursor: pointer;
	color:  #ffffff;
	border: 1px solid  #ffffff;
}
.accordion button .accordion-title {
	font-size: 30px;
	padding: 0px;
	margin-bottom: 0px;
	color: #ffffff;
	margin-top: 10px;
	line-height: 40px;
	padding-right: 0px;
	font-family: Avenir;
}

	

 
	.accordion button .icon {
		display: inline-block;
		position: absolute;
		top: 30px;
		right: 0;
		width: 22px;
		height: 22px;
		border: 0px solid;
		border-radius: 22px;
		}
		.accordion button .icon::before {
			display: block;
			position: absolute;
			content: "";
			top: 14px;
			left: 0px;
			width: 20px;
			height: 1px;
			background: currentColor;
			}
  .accordion button .icon::after {
	display: block;
	position: absolute;
	content: "";
	top: 5px;
	left: 9px;
	width: 1px;
	height: 20px;
	background: currentColor;
  }
  .accordion button[aria-expanded=true] {
	color:  #ffffff;
  }
.accordion button[aria-expanded=true] .icon::after {
	width: 0;
}

.accordion button[aria-expanded=true] + .accordion-content {
	opacity: 1;
	max-height: 17em;
	transition: all 200ms linear;
	will-change: opacity, max-height;
	padding-bottom: 10px;
}
  .accordion .accordion-content {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: opacity 200ms linear, max-height 200ms linear;
	will-change: opacity, max-height;
}
.accordion .accordion-content p {
	margin-top: 10px;
}</pre></body></html>