/* baloo-2-regular - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Baloo 2';
	font-style: normal;
	font-weight: 400;
	src: url('/site/assets/fonts/baloo-2-v22-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* baloo-2-500 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Baloo 2';
	font-style: normal;
	font-weight: 500;
	src: url('/site/assets/fonts/baloo-2-v22-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* baloo-2-600 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Baloo 2';
	font-style: normal;
	font-weight: 600;
	src: url('/site/assets/fonts/baloo-2-v22-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* baloo-2-700 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Baloo 2';
	font-style: normal;
	font-weight: 700;
	src: url('/site/assets/fonts/baloo-2-v22-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  /* baloo-2-800 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Baloo 2';
	font-style: normal;
	font-weight: 800;
	src: url('/site/assets/fonts/baloo-2-v22-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  

html,
body {
	font-family: var(--font-sans);
	font-weight: 500;
	color: white;
	font-size:16px;
}

a {
	text-decoration: underline;
	color: var(--accent);
	transition: var(--transition);
	text-decoration: underline;
	text-decoration-line: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.25em;

}

.link-white {
	color: white;
}

.link-no-decoration {
	text-decoration: none;
}

a:hover,
a:focus {
	color: white;
	text-decoration: none;
	transition: var(--transition);
}

a:focus {
	color: var(--green);
}

blockquote {
	font-size: var(--step-0);
	padding: 2rem;
	display: grid;
	grid-template-columns: 32px 1fr;
	gap: calc(0.5 * var(--gap));
	background-color: var(--orange);
}

blockquote:before {
	display: inline-block;
	content: '';
	width: 32px;
	height: 60px;
	background: url(/site/assets/images/quote_mark.svg) no-repeat;
}

.break_word {
	overflow-wrap: break-word;
}

caption,
.caption {
	display: block;
	font-size: 0.8rem;
	text-align: center;
	background-color: var(--dark);
	padding: 0.4rem;
	color: white;
	overflow-wrap: break-word;
}

h1,h2,h3,h4,h5,h6{
	color: var(--theme);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	-webkit-tap-highlight-color: transparent;
	font-weight: 800;
}

h1 {
	font-size: var(--step-3);
	font-style: normal;

	line-height: 100%; /* 96px */
}

.app_home h1 {
	font-size: var(--step-6);
}

.has_lede > p:first-of-type {
	font-size: var(--step-1);
	font-style: normal;
	font-weight: var(--strong);
	line-height: 130%; /* 31.2px */
}

#main_content {
	font-size: var(--step-0);
}

.has_paragraphs p,
.text_measure p {
	margin-bottom: 1.2rem;
}

.text-condensed {
	font-family: var(--font-condensed);
}

.text-blue {
	color: var(--blue);
}

.text_centre,
.text-center {
	text-align: center;
}

.text-decoration-no {
	text-decoration: none;
}

.text_measure {
	max-width: 64ch;
}

.text-right {
	text-align: right;
}

.text-smaller {
	font-size: var(--smaller) !important;
}

.text-strong {
	font-weight: var(--strong);
}

.text-upper {
	text-transform: uppercase;
}


.text_white {
	color: var(--white);
}

.underlined {
	text-decoration: underline;
}

.step-05 {
	font-size: var(--step-05);
}


.step-1 {
	font-size: var(--step-1);
}

.step-2 {
	font-size: var(--step-2);
}