/* style the expandable's button */
[data-expandable]{
  display: block;
  /*width: 100%;*/
  text-align: left;
  background: #FFBE00;
  border: 0;
  color: #002E66;
  padding: 0.25em 0.5em;
  margin-bottom: 1.25em;
  font-weight: bold;
}

/* make sure there is a focus style for keyboard accessibility */
[data-expandable]:focus{
  outline: 2px solid #D3A517;
  outline-offset: 1px;
}

/* the arrow using pseudo-content and unicode */
[data-expandable][aria-expanded="false"]::before {
  content: '\25b8\0020';
}
/* the arrow for the expanded state using pseudo-content and unicode */
[data-expandable][aria-expanded="true"]::before {
  content: '\25bE\0020';
}

/* pair visual appearance with accessible state  */
.expandable[aria-hidden="true"] {
  display: none;
}

/* Feature Box text alignment */
.feature-box{
	text-align: left;
}

/* Slick slider caption text on image (hide) */


.slick .slick-caption{
	display: none !important;
}