.modal-close-button {
	cursor: auto;
	position: var(--modal-close-button-position);
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-item-align: start;
	align-self: flex-start;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	z-index: 9999;
	height: var(--modal-close-button-size);
	width: var(--modal-close-button-size);
	margin: 0;
	padding: 0;
	border: 0;
	-webkit-margin-start: var(--modal-close-button-offset-inline-start);
	margin-inline-start: var(--modal-close-button-offset-inline-start);
	margin-top: var(--modal-close-button-offset-top);
	top: var(--modal-close-button-offset-top);
}
html.has-modal .modal-close-button {
	cursor: pointer;
}
.modal-close-button:focus {
	outline: none;
}
.modal-close-button:focus .modal-close-icon {
	-webkit-box-shadow: 0 0 0 4px rgba(0, 125, 250, 0.6);
	box-shadow: 0 0 0 4px rgba(0, 125, 250, 0.6);
	outline: none;
}
.modal-close-button:focus .modal-close-icon[data-focus-method="mouse"]:not(input):not(textarea):not(
		select
	),
.modal-close-button:focus .modal-close-icon[data-focus-method="touch"]:not(input):not(textarea):not(
		select
	) {
	-webkit-box-shadow: none;
	box-shadow: none;
}
.modal-close-button:focus[data-focus-method="mouse"]:not(input):not(
		textarea
	):not(select)
	.modal-close-icon,
.modal-close-button:focus[data-focus-method="touch"]:not(input):not(
		textarea
	):not(select)
	.modal-close-icon {
	-webkit-box-shadow: none;
	box-shadow: none;
}
.modal-close-button:hover .modal-close-icon {
	background: var(--modal-close-background-hover);
	color: var(--modal-close-color-hover);
}
.modal-close-button:active .modal-close-icon {
	background: var(--modal-close-background-active);
}
.modal-close-button .modal-close-icon {
	background: var(--modal-close-background);
	border-radius: var(--modal-close-border-radius);
	color: var(--modal-close-color);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: var(--modal-close-icon-size);
	width: var(--modal-close-icon-size);
	outline: none;
	-webkit-transition: color 100ms linear, background 100ms linear;
	transition: color 100ms linear, background 100ms linear;
	position: relative;
}
.modal-close-button .modal-close-icon svg {
	fill: currentColor;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	height: var(--modal-close-icon-svg-size);
	width: var(--modal-close-icon-svg-size);
}
.modal-close-button .modal-close-icon * {
	pointer-events: none;
}
.modal {
	--modal-overlay-background: #fff;
	--modal-overlay-padding-top: 76px;
	--modal-overlay-padding-bottom: 76px;
	--modal-overlay-padding-inline: 76px;
	--modal-close-button-offset-top: 16px;
	--modal-close-button-offset-inline-start: 16px;
	--modal-close-button-size: 44px;
	--modal-close-background: #e8e8ed;
	--modal-close-background-hover: #ececf0;
	--modal-close-background-active: #dfdfe4;
	--modal-close-color: rgba(0, 0, 0, 0.56);
	--modal-close-color-hover: rgba(0, 0, 0, 0.72);
	--modal-close-border-radius: 50%;
	--modal-close-button-position: sticky;
	--modal-close-icon-size: 36px;
	--modal-close-icon-svg-size: 20px;
	background: var(--modal-scrim-background, var(--modal-overlay-background));
	position: fixed;
	z-index: -1;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: none;
	overflow: auto;
}
.theme-dark .modal, .modal.theme-dark {
	--modal-overlay-background: #1d1d1f;
	--modal-close-background: #333336;
	--modal-close-background-hover: #37373a;
	--modal-close-background-active: #2f2f32;
	--modal-close-color: rgba(255, 255, 255, 0.8);
	--modal-close-color-hover: #fff;
}
@media only screen and (max-width: 480px) {
	.modal {
		--modal-overlay-padding-inline: 6.25%;
	}
}
.modal .modal-overlay-container {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 100%;
}
.modal .modal-overlay {
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.modal .modal-content-container {
	background: var(--modal-overlay-background);
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-padding-start: var(--modal-overlay-padding-inline);
	padding-inline-start: var(--modal-overlay-padding-inline);
	-webkit-padding-end: var(--modal-overlay-padding-inline);
	padding-inline-end: var(--modal-overlay-padding-inline);
	padding-top: var(--modal-overlay-padding-top);
	padding-bottom: var(--modal-overlay-padding-bottom);
	margin-top: calc(-1 * (44px + var(--modal-close-button-offset-top)));
}
.modal-open {
	display: block;
	z-index: 11000;
}
.modal-touch-lock {
	-ms-touch-action: none;
	touch-action: none;
}
.has-modal {
	overflow: hidden;
}
.has-modal body {
	-webkit-padding-end: var(--modal-scrollbar-buffer);
	padding-inline-end: var(--modal-scrollbar-buffer);
}
.modal-full-bleed {
	--modal-scrim-background: var(--modal-overlay-background);
	--modal-overlay-padding-top: 96px;
	--modal-overlay-padding-bottom: 96px;
	--modal-close-button-offset-top: max(16px, env(safe-area-inset-top));
	--modal-close-button-offset-inline-start: max(
		16px,
		env(safe-area-inset-left)
	);
}
@media only screen and (max-width: 1068px) {
	.modal-full-bleed {
		--modal-overlay-padding-top: 76px;
		--modal-overlay-padding-bottom: 76px;
	}
}
.modal-full-bleed .modal-overlay-container {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.modal-full-bleed .modal-overlay {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	width: 100%;
}
.modal-full-bleed .modal-overlay:focus {
	outline-offset: -4px;
}
.modal-full-bleed .modal-content-container {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}
.modal-page-overlay {
	--modal-scrim-background: rgba(0, 0, 0, 0.48);
	--modal-overlay-margin-top: 40px;
	--modal-overlay-margin-bottom: var(--modal-overlay-margin-top);
	--modal-overlay-border-radius-top: 18px;
	--modal-overlay-border-radius-bottom: var(
		--modal-overlay-border-radius-top
	);
	--modal-overlay-width: 816.66667px;
}
@media only screen and (max-width: 1068px) {
	.modal-page-overlay {
		--modal-overlay-width: 692px;
	}
}
@media only screen and (max-width: 734px) {
	.modal-page-overlay {
		--modal-overlay-width: max(87.5%, 480px);
		--modal-overlay-padding-bottom: 60px;
	}
}
@media only screen and (max-width: 480px) {
	.modal-page-overlay {
		--modal-overlay-border-radius-bottom: 0;
		--modal-overlay-width: 100%;
		--modal-close-button-offset-top: max(16px, env(safe-area-inset-top));
		--modal-close-button-offset-inline-start: max(
			16px,
			env(safe-area-inset-left)
		);
	}
}
@media only screen and (max-width: 480px) {
	.modal-page-overlay .modal-overlay-container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
.modal-page-overlay .modal-overlay {
	margin-left: auto;
	margin-right: auto;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: var(--modal-overlay-border-radius-top)
		var(--modal-overlay-border-radius-top)
		var(--modal-overlay-border-radius-bottom)
		var(--modal-overlay-border-radius-bottom);
	width: var(--modal-overlay-width);
	margin-top: var(--modal-overlay-margin-top);
	margin-bottom: var(--modal-overlay-margin-bottom);
}
.modal-page-overlay .modal-overlay:focus {
	-webkit-box-shadow: 0 0 0 4px rgba(0, 125, 250, 0.6);
	box-shadow: 0 0 0 4px rgba(0, 125, 250, 0.6);
	outline: none;
}
.modal-page-overlay .modal-overlay:focus[data-focus-method="mouse"]:not(input):not(
		textarea
	):not(select),
.modal-page-overlay .modal-overlay:focus[data-focus-method="touch"]:not(input):not(
		textarea
	):not(select) {
	-webkit-box-shadow: none;
	box-shadow: none;
}
@media only screen and (max-width: 480px) {
	.modal-page-overlay .modal-overlay {
		--modal-overlay-margin-top: 20px;
		--modal-overlay-margin-bottom: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
	}
}
.modal-page-overlay .modal-overlay .modal-content-container {
	border-radius: inherit;
	-webkit-mask-image: -webkit-radial-gradient(white, black);
	mask-image: radial-gradient(white, black);
}
@media only screen and (min-width: 1069px) {
	.modal-wide {
		--modal-overlay-width: 1029px;
	}
}
.modal-crossfade {
	display: block;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: opacity 0.4s ease, visibility 0s linear 0.4s,
		z-index 0s linear 0.4s;
	transition: opacity 0.4s ease, visibility 0s linear 0.4s,
		z-index 0s linear 0.4s;
}
@media (prefers-reduced-motion) {
	.modal-crossfade {
		-webkit-transition: none;
		transition: none;
	}
}
.modal-crossfade.modal-open {
	visibility: visible;
	opacity: 1;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}
.modal-fixed-height {
	overflow: initial;
	--modal-close-button-position: static;
}
.modal-curtain-white {
	--modal-scrim-background: rgba(255, 255, 255, 0.48);
}
.modal-curtain-blur {
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
}
.modal-close-button-static {
	--modal-close-button-position: static;
}
html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
body {
	margin: 0;
	padding: 0;
}
ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, hgroup, p, blockquote, figure, form, fieldset, input, legend, pre, abbr, button {
	margin: 0;
	padding: 0;
}
pre, code, address, caption, th, figcaption {
	font-size: 1em;
	font-weight: normal;
	font-style: normal;
}
fieldset, iframe {
	border: 0;
}
caption, th {
	text-align: left;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
main, summary, details {
	display: block;
}
audio, canvas, video, progress {
	vertical-align: baseline;
}
button {
	background: none;
	border: 0;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	color: inherit;
	cursor: pointer;
	font: inherit;
	line-height: inherit;
	overflow: visible;
	vertical-align: inherit;
}
button:disabled {
	cursor: default;
}
:focus {
	outline: 4px solid rgba(0, 125, 250, 0.6);
	outline-offset: 1px;
}
:focus[data-focus-method="mouse"]:not(input):not(textarea):not(select), :focus[data-focus-method="touch"]:not(input):not(textarea):not(select) {
	outline: none;
}
::-moz-focus-inner {
	border: 0;
	padding: 0;
}
html {
	font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
	font-size: 106.25%;
	quotes: "“" "”";
}
[lang]:lang(ar) {
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Text", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
[lang]:lang(ja) {
	font-family: "SF Pro JP", "SF Pro Text", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
[lang]:lang(ko) {
	font-family: "SF Pro KR", "SF Pro Text", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
[lang]:lang(th) {
	font-family: "SF Pro TH", "SF Pro Text", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
[lang]:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Text", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
[lang]:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Text", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
[lang]:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Text", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
[lang]:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Text", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
:lang(cs) {
	quotes: "„" "“";
}
:lang(de) {
	quotes: "„" "“";
}
:lang(de-CH) {
	quotes: "«" "»";
}
:lang(de-LI) {
	quotes: "«" "»";
}
:lang(fr) {
	quotes: "« " " »";
}
:lang(fr-CH) {
	quotes: "«" "»";
}
:lang(es-ES) {
	quotes: "«" "»";
}
:lang(hu) {
	quotes: "„" "“";
}
:lang(ja-JP) {
	quotes: "「" "」";
}
:lang(no-NO) {
	quotes: "«" "»";
}
:lang(lt) {
	quotes: "„" "“";
}
:lang(pl) {
	quotes: "„" "“";
}
:lang(ru) {
	quotes: "« " " »";
}
:lang(zh) {
	quotes: "「" "」";
}
:lang(zh-CN) {
	quotes: "“" "”";
}
body {
	font-size: 17px;
	line-height: 1.47059;
	font-weight: 400;
	letter-spacing: -0.022em;
	font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
	background-color: #fff;
	color: #1d1d1f;
	font-style: normal;
}
body:lang(ar) {
	line-height: 1.58824;
	letter-spacing: 0em;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Text", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
body:lang(ja) {
	letter-spacing: 0em;
	font-family: "SF Pro JP", "SF Pro Text", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
body:lang(ko) {
	line-height: 1.58824;
	letter-spacing: 0em;
	font-family: "SF Pro KR", "SF Pro Text", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
body:lang(zh) {
	letter-spacing: 0em;
}
body:lang(th) {
	line-height: 1.35296;
	letter-spacing: 0em;
	font-family: "SF Pro TH", "SF Pro Text", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
body:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Text", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
body:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Text", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
body:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Text", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
body:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Text", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
body, input, textarea, select, button {
	font-synthesis: none;
	-moz-font-feature-settings: "kern";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	direction: ltr;
	text-align: left;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	color: #1d1d1f;
}
h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {
	display: block;
	margin: 0;
}
h1 + *, h2 + *, h3 + *, h4 + *, h5 + *, h6 + * {
	margin-top: 0.8em;
}
h1 + h1, h1 + h2, h1 + h3, h1 + h4, h1 + h5, h1 + h6, h2 + h1, h2 + h2, h2 + h3, h2 + h4, h2 + h5, h2 + h6, h3 + h1, h3 + h2, h3 + h3, h3 + h4, h3 + h5, h3 + h6, h4 + h1, h4 + h2, h4 + h3, h4 + h4, h4 + h5, h4 + h6, h5 + h1, h5 + h2, h5 + h3, h5 + h4, h5 + h5, h5 + h6, h6 + h1, h6 + h2, h6 + h3, h6 + h4, h6 + h5, h6 + h6 {
	margin-top: 0.4em;
}
p + h1, ul + h1, ol + h1, p + h2, ul + h2, ol + h2, p + h3, ul + h3, ol + h3, p + h4, ul + h4, ol + h4, p + h5, ul + h5, ol + h5, p + h6, ul + h6, ol + h6 {
	margin-top: 1.6em;
}
.heading-collapsed + * {
	margin-top: 0;
}
p + *, ul + *, ol + * {
	margin-top: 0.8em;
}
ul, ol {
	margin-left: 1.17647em;
}
ul ul, ul ol, ol ul, ol ol {
	margin-top: 0;
	margin-bottom: 0;
}
nav ul, nav ol {
	margin: 0;
	list-style: none;
}
li li {
	font-size: 1em;
}
a, .link {
	color: #06c;
	letter-spacing: inherit;
}
a:link, a:visited, .link:link, .link:visited {
	text-decoration: none;
}
a:hover, .link:hover {
	text-decoration: underline;
}
a:active, .link:active {
	text-decoration: none;
}
a:disabled, .link:disabled {
	opacity: 0.32;
}
.links-inline, .links-stacked {
	margin-left: 0;
	margin-right: 0;
	list-style: none;
}
.links-inline li {
	display: inline;
	margin: 0 0.8em;
}
.links-inline li:first-child {
	margin-left: 0;
}
.links-inline li:last-child {
	margin-right: 0;
}
.links-stacked li {
	margin: 0;
	display: block;
}
.links-stacked li + li {
	margin-top: 0.4em;
}
b, strong {
	font-weight: 600;
}
em, i, cite, dfn {
	font-style: italic;
}
sup, sub {
	position: relative;
	font-size: 0.6em;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
.footnote a {
	vertical-align: inherit;
	color: inherit;
}
.footnote a:hover {
	color: #06c;
	text-decoration: none;
}
.footnote-reduced {
	font-size: 0.45em;
}
sup.footnote-reduced {
	top: -0.86em;
}
sub.footnote-reduced {
	bottom: -0.36em;
}
.footnote-supglyph {
	position: relative;
	vertical-align: baseline;
}
.footnote-supglyph.footnote-reduced {
	font-size: 0.9em;
	top: -0.09em;
}
.footnote-diamond {
	position: relative;
	vertical-align: baseline;
	-webkit-font-feature-settings: "numr";
	font-feature-settings: "numr";
	font-size: 1em;
}
sup.footnote-diamond {
	top: initial;
}
sub.footnote-diamond {
	bottom: -0.5em;
}
.footnote-diamond.footnote-reduced {
	font-size: 0.9em;
	top: -0.09em;
}
sub.footnote-diamond.footnote-reduced {
	top: initial;
	bottom: -0.52em;
}
.footnote-number {
	position: relative;
	vertical-align: baseline;
	-webkit-font-feature-settings: "numr";
	font-feature-settings: "numr";
	font-size: 1em;
}
sup.footnote-number {
	top: initial;
}
sub.footnote-number {
	bottom: -0.5em;
}
.footnote-number.footnote-reduced {
	font-size: 0.9em;
	top: -0.09em;
}
sub.footnote-number.footnote-reduced {
	top: initial;
	bottom: -0.52em;
}
abbr {
	border: 0;
}
:lang(ja), :lang(ko), :lang(th), :lang(zh) {
	font-style: normal;
}
:lang(ko) {
	word-break: keep-all;
}
.justify-content-start {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.justify-content-end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.justify-content-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.justify-content-spacebetween {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.justify-content-spacearound {
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
.justify-content-spaceevenly {
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly;
}
.align-items-start {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.align-items-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.align-items-end {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.align-self-start {
	-ms-flex-item-align: start;
	align-self: flex-start;
}
.align-self-center {
	-ms-flex-item-align: center;
	align-self: center;
}
.align-self-end {
	-ms-flex-item-align: end;
	align-self: flex-end;
}
.large-justify-content-start {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.large-justify-content-end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.large-justify-content-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.large-justify-content-spacebetween {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.large-justify-content-spacearound {
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
.large-justify-content-spaceevenly {
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly;
}
.large-align-items-start {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.large-align-items-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.large-align-items-end {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.large-align-self-start {
	-ms-flex-item-align: start;
	align-self: flex-start;
}
.large-align-self-center {
	-ms-flex-item-align: center;
	align-self: center;
}
.large-align-self-end {
	-ms-flex-item-align: end;
	align-self: flex-end;
}
@media only screen and (min-width: 1441px) {
	.xlarge-justify-content-start {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
	.xlarge-justify-content-end {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
	.xlarge-justify-content-center {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.xlarge-justify-content-spacebetween {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.xlarge-justify-content-spacearound {
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}
	.xlarge-justify-content-spaceevenly {
		-webkit-box-pack: space-evenly;
		-ms-flex-pack: space-evenly;
		justify-content: space-evenly;
	}
	.xlarge-align-items-start {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.xlarge-align-items-center {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.xlarge-align-items-end {
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
	.xlarge-align-self-start {
		-ms-flex-item-align: start;
		align-self: flex-start;
	}
	.xlarge-align-self-center {
		-ms-flex-item-align: center;
		align-self: center;
	}
	.xlarge-align-self-end {
		-ms-flex-item-align: end;
		align-self: flex-end;
	}
}
@media only screen and (max-width: 1068px) {
	.medium-justify-content-start {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
	.medium-justify-content-end {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
	.medium-justify-content-center {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.medium-justify-content-spacebetween {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.medium-justify-content-spacearound {
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}
	.medium-justify-content-spaceevenly {
		-webkit-box-pack: space-evenly;
		-ms-flex-pack: space-evenly;
		justify-content: space-evenly;
	}
	.medium-align-items-start {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.medium-align-items-center {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.medium-align-items-end {
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
	.medium-align-self-start {
		-ms-flex-item-align: start;
		align-self: flex-start;
	}
	.medium-align-self-center {
		-ms-flex-item-align: center;
		align-self: center;
	}
	.medium-align-self-end {
		-ms-flex-item-align: end;
		align-self: flex-end;
	}
}
@media only screen and (max-width: 734px) {
	.small-justify-content-start {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
	.small-justify-content-end {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
	.small-justify-content-center {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.small-justify-content-spacebetween {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.small-justify-content-spacearound {
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}
	.small-justify-content-spaceevenly {
		-webkit-box-pack: space-evenly;
		-ms-flex-pack: space-evenly;
		justify-content: space-evenly;
	}
	.small-align-items-start {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	.small-align-items-center {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.small-align-items-end {
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
	}
	.small-align-self-start {
		-ms-flex-item-align: start;
		align-self: flex-start;
	}
	.small-align-self-center {
		-ms-flex-item-align: center;
		align-self: center;
	}
	.small-align-self-end {
		-ms-flex-item-align: end;
		align-self: flex-end;
	}
}
.selfclear::before, .selfclear::after {
	content: " ";
	display: table;
}
.selfclear::after {
	clear: both;
}
.visuallyhidden {
	position: absolute;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(0px 0px 99.9% 99.9%);
	clip-path: inset(0px 0px 99.9% 99.9%);
	overflow: hidden;
	height: 1px;
	width: 1px;
	padding: 0;
	border: 0;
}
@media only screen and (inverted-colors) {
	.no-inversion {
		-webkit-filter: invert(1);
		filter: invert(1);
	}
}
.nowrap {
	display: inline-block;
	text-decoration: inherit;
	white-space: nowrap;
}
.clear {
	clear: both;
}
.cursor-grab {
	cursor: move;
	cursor: -webkit-grab;
	cursor: grab;
}
.cursor-grabbing {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor: grabbing;
}
.row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	width: 100%;
}
.row-reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.column {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	min-width: 0px;
}
.large-offset-0 {
	margin-left: 0;
}
.large-order-0 {
	-webkit-box-ordinal-group: 1;
	-ms-flex-order: 0;
	order: 0;
}
.large-1 {
	-ms-flex-preferred-size: 8.33333%;
	flex-basis: 8.33333%;
	max-width: 8.33333%;
}
.large-offset-1 {
	margin-left: 8.33333%;
}
.large-order-1 {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}
.large-2 {
	-ms-flex-preferred-size: 16.66667%;
	flex-basis: 16.66667%;
	max-width: 16.66667%;
}
.large-offset-2 {
	margin-left: 16.66667%;
}
.large-order-2 {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
}
.large-3 {
	-ms-flex-preferred-size: 25%;
	flex-basis: 25%;
	max-width: 25%;
}
.large-offset-3 {
	margin-left: 25%;
}
.large-order-3 {
	-webkit-box-ordinal-group: 4;
	-ms-flex-order: 3;
	order: 3;
}
.large-4 {
	-ms-flex-preferred-size: 33.33333%;
	flex-basis: 33.33333%;
	max-width: 33.33333%;
}
.large-offset-4 {
	margin-left: 33.33333%;
}
.large-order-4 {
	-webkit-box-ordinal-group: 5;
	-ms-flex-order: 4;
	order: 4;
}
.large-5 {
	-ms-flex-preferred-size: 41.66667%;
	flex-basis: 41.66667%;
	max-width: 41.66667%;
}
.large-offset-5 {
	margin-left: 41.66667%;
}
.large-order-5 {
	-webkit-box-ordinal-group: 6;
	-ms-flex-order: 5;
	order: 5;
}
.large-6 {
	-ms-flex-preferred-size: 50%;
	flex-basis: 50%;
	max-width: 50%;
}
.large-offset-6 {
	margin-left: 50%;
}
.large-order-6 {
	-webkit-box-ordinal-group: 7;
	-ms-flex-order: 6;
	order: 6;
}
.large-7 {
	-ms-flex-preferred-size: 58.33333%;
	flex-basis: 58.33333%;
	max-width: 58.33333%;
}
.large-offset-7 {
	margin-left: 58.33333%;
}
.large-order-7 {
	-webkit-box-ordinal-group: 8;
	-ms-flex-order: 7;
	order: 7;
}
.large-8 {
	-ms-flex-preferred-size: 66.66667%;
	flex-basis: 66.66667%;
	max-width: 66.66667%;
}
.large-offset-8 {
	margin-left: 66.66667%;
}
.large-order-8 {
	-webkit-box-ordinal-group: 9;
	-ms-flex-order: 8;
	order: 8;
}
.large-9 {
	-ms-flex-preferred-size: 75%;
	flex-basis: 75%;
	max-width: 75%;
}
.large-offset-9 {
	margin-left: 75%;
}
.large-order-9 {
	-webkit-box-ordinal-group: 10;
	-ms-flex-order: 9;
	order: 9;
}
.large-10 {
	-ms-flex-preferred-size: 83.33333%;
	flex-basis: 83.33333%;
	max-width: 83.33333%;
}
.large-offset-10 {
	margin-left: 83.33333%;
}
.large-order-10 {
	-webkit-box-ordinal-group: 11;
	-ms-flex-order: 10;
	order: 10;
}
.large-11 {
	-ms-flex-preferred-size: 91.66667%;
	flex-basis: 91.66667%;
	max-width: 91.66667%;
}
.large-offset-11 {
	margin-left: 91.66667%;
}
.large-order-11 {
	-webkit-box-ordinal-group: 12;
	-ms-flex-order: 11;
	order: 11;
}
.large-12 {
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	max-width: 100%;
}
.large-offset-12 {
	margin-left: 100%;
}
.large-order-12 {
	-webkit-box-ordinal-group: 13;
	-ms-flex-order: 12;
	order: 12;
}
.large-centered {
	margin-left: auto;
	margin-right: auto;
}
.large-uncentered {
	margin-left: 0;
	margin-right: 0;
}
.large-last {
	margin-left: auto;
}
.large-notlast {
	margin-left: 0;
}
.large-grow {
	-webkit-box-flex: 1;
	-ms-flex: auto;
	flex: auto;
	max-width: initial;
}
.large-ungrow {
	-webkit-box-flex: initial;
	-ms-flex: initial;
	flex: initial;
	max-width: initial;
}
@media only screen and (min-width: 1441px) {
	.xlarge-offset-0 {
		margin-left: 0;
	}
	.xlarge-order-0 {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
	}
	.xlarge-1 {
		-ms-flex-preferred-size: 8.33333%;
		flex-basis: 8.33333%;
		max-width: 8.33333%;
	}
	.xlarge-offset-1 {
		margin-left: 8.33333%;
	}
	.xlarge-order-1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	.xlarge-2 {
		-ms-flex-preferred-size: 16.66667%;
		flex-basis: 16.66667%;
		max-width: 16.66667%;
	}
	.xlarge-offset-2 {
		margin-left: 16.66667%;
	}
	.xlarge-order-2 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
	.xlarge-3 {
		-ms-flex-preferred-size: 25%;
		flex-basis: 25%;
		max-width: 25%;
	}
	.xlarge-offset-3 {
		margin-left: 25%;
	}
	.xlarge-order-3 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}
	.xlarge-4 {
		-ms-flex-preferred-size: 33.33333%;
		flex-basis: 33.33333%;
		max-width: 33.33333%;
	}
	.xlarge-offset-4 {
		margin-left: 33.33333%;
	}
	.xlarge-order-4 {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4;
	}
	.xlarge-5 {
		-ms-flex-preferred-size: 41.66667%;
		flex-basis: 41.66667%;
		max-width: 41.66667%;
	}
	.xlarge-offset-5 {
		margin-left: 41.66667%;
	}
	.xlarge-order-5 {
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5;
	}
	.xlarge-6 {
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%;
	}
	.xlarge-offset-6 {
		margin-left: 50%;
	}
	.xlarge-order-6 {
		-webkit-box-ordinal-group: 7;
		-ms-flex-order: 6;
		order: 6;
	}
	.xlarge-7 {
		-ms-flex-preferred-size: 58.33333%;
		flex-basis: 58.33333%;
		max-width: 58.33333%;
	}
	.xlarge-offset-7 {
		margin-left: 58.33333%;
	}
	.xlarge-order-7 {
		-webkit-box-ordinal-group: 8;
		-ms-flex-order: 7;
		order: 7;
	}
	.xlarge-8 {
		-ms-flex-preferred-size: 66.66667%;
		flex-basis: 66.66667%;
		max-width: 66.66667%;
	}
	.xlarge-offset-8 {
		margin-left: 66.66667%;
	}
	.xlarge-order-8 {
		-webkit-box-ordinal-group: 9;
		-ms-flex-order: 8;
		order: 8;
	}
	.xlarge-9 {
		-ms-flex-preferred-size: 75%;
		flex-basis: 75%;
		max-width: 75%;
	}
	.xlarge-offset-9 {
		margin-left: 75%;
	}
	.xlarge-order-9 {
		-webkit-box-ordinal-group: 10;
		-ms-flex-order: 9;
		order: 9;
	}
	.xlarge-10 {
		-ms-flex-preferred-size: 83.33333%;
		flex-basis: 83.33333%;
		max-width: 83.33333%;
	}
	.xlarge-offset-10 {
		margin-left: 83.33333%;
	}
	.xlarge-order-10 {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10;
	}
	.xlarge-11 {
		-ms-flex-preferred-size: 91.66667%;
		flex-basis: 91.66667%;
		max-width: 91.66667%;
	}
	.xlarge-offset-11 {
		margin-left: 91.66667%;
	}
	.xlarge-order-11 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11;
	}
	.xlarge-12 {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
	}
	.xlarge-offset-12 {
		margin-left: 100%;
	}
	.xlarge-order-12 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12;
	}
	.xlarge-centered {
		margin-left: auto;
		margin-right: auto;
	}
	.xlarge-uncentered {
		margin-left: 0;
		margin-right: 0;
	}
	.xlarge-last {
		margin-left: auto;
	}
	.xlarge-notlast {
		margin-left: 0;
	}
	.xlarge-grow {
		-webkit-box-flex: 1;
		-ms-flex: auto;
		flex: auto;
		max-width: initial;
	}
	.xlarge-ungrow {
		-webkit-box-flex: initial;
		-ms-flex: initial;
		flex: initial;
		max-width: initial;
	}
}
@media only screen and (max-width: 1068px) {
	.medium-offset-0 {
		margin-left: 0;
	}
	.medium-order-0 {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
	}
	.medium-1 {
		-ms-flex-preferred-size: 8.33333%;
		flex-basis: 8.33333%;
		max-width: 8.33333%;
	}
	.medium-offset-1 {
		margin-left: 8.33333%;
	}
	.medium-order-1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	.medium-2 {
		-ms-flex-preferred-size: 16.66667%;
		flex-basis: 16.66667%;
		max-width: 16.66667%;
	}
	.medium-offset-2 {
		margin-left: 16.66667%;
	}
	.medium-order-2 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
	.medium-3 {
		-ms-flex-preferred-size: 25%;
		flex-basis: 25%;
		max-width: 25%;
	}
	.medium-offset-3 {
		margin-left: 25%;
	}
	.medium-order-3 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}
	.medium-4 {
		-ms-flex-preferred-size: 33.33333%;
		flex-basis: 33.33333%;
		max-width: 33.33333%;
	}
	.medium-offset-4 {
		margin-left: 33.33333%;
	}
	.medium-order-4 {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4;
	}
	.medium-5 {
		-ms-flex-preferred-size: 41.66667%;
		flex-basis: 41.66667%;
		max-width: 41.66667%;
	}
	.medium-offset-5 {
		margin-left: 41.66667%;
	}
	.medium-order-5 {
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5;
	}
	.medium-6 {
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%;
	}
	.medium-offset-6 {
		margin-left: 50%;
	}
	.medium-order-6 {
		-webkit-box-ordinal-group: 7;
		-ms-flex-order: 6;
		order: 6;
	}
	.medium-7 {
		-ms-flex-preferred-size: 58.33333%;
		flex-basis: 58.33333%;
		max-width: 58.33333%;
	}
	.medium-offset-7 {
		margin-left: 58.33333%;
	}
	.medium-order-7 {
		-webkit-box-ordinal-group: 8;
		-ms-flex-order: 7;
		order: 7;
	}
	.medium-8 {
		-ms-flex-preferred-size: 66.66667%;
		flex-basis: 66.66667%;
		max-width: 66.66667%;
	}
	.medium-offset-8 {
		margin-left: 66.66667%;
	}
	.medium-order-8 {
		-webkit-box-ordinal-group: 9;
		-ms-flex-order: 8;
		order: 8;
	}
	.medium-9 {
		-ms-flex-preferred-size: 75%;
		flex-basis: 75%;
		max-width: 75%;
	}
	.medium-offset-9 {
		margin-left: 75%;
	}
	.medium-order-9 {
		-webkit-box-ordinal-group: 10;
		-ms-flex-order: 9;
		order: 9;
	}
	.medium-10 {
		-ms-flex-preferred-size: 83.33333%;
		flex-basis: 83.33333%;
		max-width: 83.33333%;
	}
	.medium-offset-10 {
		margin-left: 83.33333%;
	}
	.medium-order-10 {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10;
	}
	.medium-11 {
		-ms-flex-preferred-size: 91.66667%;
		flex-basis: 91.66667%;
		max-width: 91.66667%;
	}
	.medium-offset-11 {
		margin-left: 91.66667%;
	}
	.medium-order-11 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11;
	}
	.medium-12 {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
	}
	.medium-offset-12 {
		margin-left: 100%;
	}
	.medium-order-12 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12;
	}
	.medium-centered {
		margin-left: auto;
		margin-right: auto;
	}
	.medium-uncentered {
		margin-left: 0;
		margin-right: 0;
	}
	.medium-last {
		margin-left: auto;
	}
	.medium-notlast {
		margin-left: 0;
	}
	.medium-grow {
		-webkit-box-flex: 1;
		-ms-flex: auto;
		flex: auto;
		max-width: initial;
	}
	.medium-ungrow {
		-webkit-box-flex: initial;
		-ms-flex: initial;
		flex: initial;
		max-width: initial;
	}
}
@media only screen and (max-width: 734px) {
	.small-offset-0 {
		margin-left: 0;
	}
	.small-order-0 {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
	}
	.small-1 {
		-ms-flex-preferred-size: 8.33333%;
		flex-basis: 8.33333%;
		max-width: 8.33333%;
	}
	.small-offset-1 {
		margin-left: 8.33333%;
	}
	.small-order-1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	.small-2 {
		-ms-flex-preferred-size: 16.66667%;
		flex-basis: 16.66667%;
		max-width: 16.66667%;
	}
	.small-offset-2 {
		margin-left: 16.66667%;
	}
	.small-order-2 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
	.small-3 {
		-ms-flex-preferred-size: 25%;
		flex-basis: 25%;
		max-width: 25%;
	}
	.small-offset-3 {
		margin-left: 25%;
	}
	.small-order-3 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}
	.small-4 {
		-ms-flex-preferred-size: 33.33333%;
		flex-basis: 33.33333%;
		max-width: 33.33333%;
	}
	.small-offset-4 {
		margin-left: 33.33333%;
	}
	.small-order-4 {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4;
	}
	.small-5 {
		-ms-flex-preferred-size: 41.66667%;
		flex-basis: 41.66667%;
		max-width: 41.66667%;
	}
	.small-offset-5 {
		margin-left: 41.66667%;
	}
	.small-order-5 {
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5;
	}
	.small-6 {
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%;
	}
	.small-offset-6 {
		margin-left: 50%;
	}
	.small-order-6 {
		-webkit-box-ordinal-group: 7;
		-ms-flex-order: 6;
		order: 6;
	}
	.small-7 {
		-ms-flex-preferred-size: 58.33333%;
		flex-basis: 58.33333%;
		max-width: 58.33333%;
	}
	.small-offset-7 {
		margin-left: 58.33333%;
	}
	.small-order-7 {
		-webkit-box-ordinal-group: 8;
		-ms-flex-order: 7;
		order: 7;
	}
	.small-8 {
		-ms-flex-preferred-size: 66.66667%;
		flex-basis: 66.66667%;
		max-width: 66.66667%;
	}
	.small-offset-8 {
		margin-left: 66.66667%;
	}
	.small-order-8 {
		-webkit-box-ordinal-group: 9;
		-ms-flex-order: 8;
		order: 8;
	}
	.small-9 {
		-ms-flex-preferred-size: 75%;
		flex-basis: 75%;
		max-width: 75%;
	}
	.small-offset-9 {
		margin-left: 75%;
	}
	.small-order-9 {
		-webkit-box-ordinal-group: 10;
		-ms-flex-order: 9;
		order: 9;
	}
	.small-10 {
		-ms-flex-preferred-size: 83.33333%;
		flex-basis: 83.33333%;
		max-width: 83.33333%;
	}
	.small-offset-10 {
		margin-left: 83.33333%;
	}
	.small-order-10 {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10;
	}
	.small-11 {
		-ms-flex-preferred-size: 91.66667%;
		flex-basis: 91.66667%;
		max-width: 91.66667%;
	}
	.small-offset-11 {
		margin-left: 91.66667%;
	}
	.small-order-11 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11;
	}
	.small-12 {
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
		max-width: 100%;
	}
	.small-offset-12 {
		margin-left: 100%;
	}
	.small-order-12 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12;
	}
	.small-centered {
		margin-left: auto;
		margin-right: auto;
	}
	.small-uncentered {
		margin-left: 0;
		margin-right: 0;
	}
	.small-last {
		margin-left: auto;
	}
	.small-notlast {
		margin-left: 0;
	}
	.small-grow {
		-webkit-box-flex: 1;
		-ms-flex: auto;
		flex: auto;
		max-width: initial;
	}
	.small-ungrow {
		-webkit-box-flex: initial;
		-ms-flex: initial;
		flex: initial;
		max-width: initial;
	}
}
.row-reverse .column {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	min-width: 0px;
}
.row-reverse .large-offset-0 {
	margin-right: 0;
}
.row-reverse .large-offset-1 {
	margin-right: 8.33333%;
}
.row-reverse .large-offset-2 {
	margin-right: 16.66667%;
}
.row-reverse .large-offset-3 {
	margin-right: 25%;
}
.row-reverse .large-offset-4 {
	margin-right: 33.33333%;
}
.row-reverse .large-offset-5 {
	margin-right: 41.66667%;
}
.row-reverse .large-offset-6 {
	margin-right: 50%;
}
.row-reverse .large-offset-7 {
	margin-right: 58.33333%;
}
.row-reverse .large-offset-8 {
	margin-right: 66.66667%;
}
.row-reverse .large-offset-9 {
	margin-right: 75%;
}
.row-reverse .large-offset-10 {
	margin-right: 83.33333%;
}
.row-reverse .large-offset-11 {
	margin-right: 91.66667%;
}
.row-reverse .large-offset-12 {
	margin-right: 100%;
}
.row-reverse .large-last {
	margin-right: auto;
}
.row-reverse .large-notlast {
	margin-right: 0;
}
@media only screen and (min-width: 1441px) {
	.row-reverse .xlarge-offset-0 {
		margin-right: 0;
	}
	.row-reverse .xlarge-offset-1 {
		margin-right: 8.33333%;
	}
	.row-reverse .xlarge-offset-2 {
		margin-right: 16.66667%;
	}
	.row-reverse .xlarge-offset-3 {
		margin-right: 25%;
	}
	.row-reverse .xlarge-offset-4 {
		margin-right: 33.33333%;
	}
	.row-reverse .xlarge-offset-5 {
		margin-right: 41.66667%;
	}
	.row-reverse .xlarge-offset-6 {
		margin-right: 50%;
	}
	.row-reverse .xlarge-offset-7 {
		margin-right: 58.33333%;
	}
	.row-reverse .xlarge-offset-8 {
		margin-right: 66.66667%;
	}
	.row-reverse .xlarge-offset-9 {
		margin-right: 75%;
	}
	.row-reverse .xlarge-offset-10 {
		margin-right: 83.33333%;
	}
	.row-reverse .xlarge-offset-11 {
		margin-right: 91.66667%;
	}
	.row-reverse .xlarge-offset-12 {
		margin-right: 100%;
	}
	.row-reverse .xlarge-last {
		margin-right: auto;
	}
	.row-reverse .xlarge-notlast {
		margin-right: 0;
	}
}
@media only screen and (max-width: 1068px) {
	.row-reverse .medium-offset-0 {
		margin-right: 0;
	}
	.row-reverse .medium-offset-1 {
		margin-right: 8.33333%;
	}
	.row-reverse .medium-offset-2 {
		margin-right: 16.66667%;
	}
	.row-reverse .medium-offset-3 {
		margin-right: 25%;
	}
	.row-reverse .medium-offset-4 {
		margin-right: 33.33333%;
	}
	.row-reverse .medium-offset-5 {
		margin-right: 41.66667%;
	}
	.row-reverse .medium-offset-6 {
		margin-right: 50%;
	}
	.row-reverse .medium-offset-7 {
		margin-right: 58.33333%;
	}
	.row-reverse .medium-offset-8 {
		margin-right: 66.66667%;
	}
	.row-reverse .medium-offset-9 {
		margin-right: 75%;
	}
	.row-reverse .medium-offset-10 {
		margin-right: 83.33333%;
	}
	.row-reverse .medium-offset-11 {
		margin-right: 91.66667%;
	}
	.row-reverse .medium-offset-12 {
		margin-right: 100%;
	}
	.row-reverse .medium-last {
		margin-right: auto;
	}
	.row-reverse .medium-notlast {
		margin-right: 0;
	}
}
@media only screen and (max-width: 734px) {
	.row-reverse .small-offset-0 {
		margin-right: 0;
	}
	.row-reverse .small-offset-1 {
		margin-right: 8.33333%;
	}
	.row-reverse .small-offset-2 {
		margin-right: 16.66667%;
	}
	.row-reverse .small-offset-3 {
		margin-right: 25%;
	}
	.row-reverse .small-offset-4 {
		margin-right: 33.33333%;
	}
	.row-reverse .small-offset-5 {
		margin-right: 41.66667%;
	}
	.row-reverse .small-offset-6 {
		margin-right: 50%;
	}
	.row-reverse .small-offset-7 {
		margin-right: 58.33333%;
	}
	.row-reverse .small-offset-8 {
		margin-right: 66.66667%;
	}
	.row-reverse .small-offset-9 {
		margin-right: 75%;
	}
	.row-reverse .small-offset-10 {
		margin-right: 83.33333%;
	}
	.row-reverse .small-offset-11 {
		margin-right: 91.66667%;
	}
	.row-reverse .small-offset-12 {
		margin-right: 100%;
	}
	.row-reverse .small-last {
		margin-right: auto;
	}
	.row-reverse .small-notlast {
		margin-right: 0;
	}
}
.grid {
	margin-left: auto;
	margin-right: auto;
	grid-column-gap: 24px;
	grid-row-gap: 24px;
	padding-left: 24px;
	padding-right: 24px;
	padding-top: 0;
	padding-bottom: 0;
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
}
.grid .grid {
	height: 100%;
	padding-left: 0;
	padding-right: 0;
}
.grid-item {
	position: relative;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.large-span-0 {
	grid-column: span 0;
}
.large-span-1 {
	grid-column: span 1;
}
.large-span-2 {
	grid-column: span 2;
}
.large-span-3 {
	grid-column: span 3;
}
.large-span-4 {
	grid-column: span 4;
}
.large-span-5 {
	grid-column: span 5;
}
.large-span-6 {
	grid-column: span 6;
}
.large-span-7 {
	grid-column: span 7;
}
.large-span-8 {
	grid-column: span 8;
}
.large-span-9 {
	grid-column: span 9;
}
.large-span-10 {
	grid-column: span 10;
}
.large-span-11 {
	grid-column: span 11;
}
.large-span-12 {
	grid-column: span 12;
}
@media only screen and (min-width: 1441px) {
	.xlarge-span-0 {
		grid-column: span 0;
	}
	.xlarge-span-1 {
		grid-column: span 1;
	}
	.xlarge-span-2 {
		grid-column: span 2;
	}
	.xlarge-span-3 {
		grid-column: span 3;
	}
	.xlarge-span-4 {
		grid-column: span 4;
	}
	.xlarge-span-5 {
		grid-column: span 5;
	}
	.xlarge-span-6 {
		grid-column: span 6;
	}
	.xlarge-span-7 {
		grid-column: span 7;
	}
	.xlarge-span-8 {
		grid-column: span 8;
	}
	.xlarge-span-9 {
		grid-column: span 9;
	}
	.xlarge-span-10 {
		grid-column: span 10;
	}
	.xlarge-span-11 {
		grid-column: span 11;
	}
	.xlarge-span-12 {
		grid-column: span 12;
	}
}
@media only screen and (max-width: 1068px) {
	.medium-span-0 {
		grid-column: span 0;
	}
	.medium-span-1 {
		grid-column: span 1;
	}
	.medium-span-2 {
		grid-column: span 2;
	}
	.medium-span-3 {
		grid-column: span 3;
	}
	.medium-span-4 {
		grid-column: span 4;
	}
	.medium-span-5 {
		grid-column: span 5;
	}
	.medium-span-6 {
		grid-column: span 6;
	}
	.medium-span-7 {
		grid-column: span 7;
	}
	.medium-span-8 {
		grid-column: span 8;
	}
	.medium-span-9 {
		grid-column: span 9;
	}
	.medium-span-10 {
		grid-column: span 10;
	}
	.medium-span-11 {
		grid-column: span 11;
	}
	.medium-span-12 {
		grid-column: span 12;
	}
}
@media only screen and (max-width: 734px) {
	.small-span-0 {
		grid-column: span 0;
	}
	.small-span-1 {
		grid-column: span 1;
	}
	.small-span-2 {
		grid-column: span 2;
	}
	.small-span-3 {
		grid-column: span 3;
	}
	.small-span-4 {
		grid-column: span 4;
	}
	.small-span-5 {
		grid-column: span 5;
	}
	.small-span-6 {
		grid-column: span 6;
	}
	.small-span-7 {
		grid-column: span 7;
	}
	.small-span-8 {
		grid-column: span 8;
	}
	.small-span-9 {
		grid-column: span 9;
	}
	.small-span-10 {
		grid-column: span 10;
	}
	.small-span-11 {
		grid-column: span 11;
	}
	.small-span-12 {
		grid-column: span 12;
	}
}
.icon::before, .icon::after, .more::before, .more::after {
	font-family: "SF Pro Icons";
	color: inherit;
	display: inline-block;
	font-style: normal;
	font-weight: inherit;
	font-size: inherit;
	line-height: 1;
	text-decoration: underline;
	position: relative;
	z-index: 1;
	alt: "";
}
.icon::before, .icon::after, .more::before, .more::after {
	text-decoration: none;
}
.icon::before, .more::before {
	display: none;
}
.icon-after::after, .more::after {
	padding-left: 0.3em;
	top: 0;
}
.icon-before::before {
	padding-right: 0.3em;
	display: inline-block;
	top: 0;
}
.icon-before::after {
	display: none;
}
.icon-before.icon-apple::before {
	padding-right: 0;
	display: inline-block;
	top: 0;
}
.icon-before.icon-apple::after {
	display: none;
}
.icon-apple::before, .icon-apple::after {
	content: "";
}
.icon-chevrondown::before, .icon-chevrondown::after {
	content: "";
}
.icon-chevrondowncircle::before, .icon-chevrondowncircle::after {
	content: "";
}
.icon-chevronleft::before, .icon-chevronleft::after {
	content: "";
}
.icon-chevronleftcircle::before, .icon-chevronleftcircle::after {
	content: "";
}
.icon-chevronright::before, .icon-chevronright::after {
	content: "";
}
.icon-chevronrightcircle::before, .icon-chevronrightcircle::after {
	content: "";
}
.icon-chevronup::before, .icon-chevronup::after {
	content: "";
}
.icon-chevronupcircle::before, .icon-chevronupcircle::after {
	content: "";
}
.icon-downloadcircle::before, .icon-downloadcircle::after {
	content: "";
}
.icon-arrowupcircle::before, .icon-arrowupcircle::after {
	content: "􀁶";
}
.icon-external::before, .icon-external::after {
	content: "";
}
.icon-share::before, .icon-share::after {
	content: "";
}
.icon-search::before, .icon-search::after {
	content: "";
}
.icon-arkit::before, .icon-arkit::after {
	content: "";
}
.icon-pausecircle::before, .icon-pausecircle::after {
	content: "";
}
.icon-pausesolid::before, .icon-pausesolid::after {
	content: "";
}
.icon-playcircle::before, .icon-playcircle::after {
	content: "";
}
.icon-playsolid::before, .icon-playsolid::after {
	content: "";
}
.icon-replay::before, .icon-replay::after {
	content: "";
}
.icon-stopcircle::before, .icon-stopcircle::after {
	content: "";
}
.icon-stopsolid::before, .icon-stopsolid::after {
	content: "";
}
.icon-circle::before, .icon-circle::after {
	content: "";
}
.icon-check::before, .icon-check::after {
	content: "";
}
.icon-checkcircle::before, .icon-checkcircle::after {
	content: "";
}
.icon-checksolid::before, .icon-checksolid::after {
	content: "";
}
.icon-reset::before, .icon-reset::after {
	content: "";
}
.icon-resetcircle::before, .icon-resetcircle::after {
	content: "";
}
.icon-resetsolid::before, .icon-resetsolid::after {
	content: "";
}
.icon-exclamation::before, .icon-exclamation::after {
	content: "";
}
.icon-exclamationcircle::before, .icon-exclamationcircle::after {
	content: "";
}
.icon-exclamationsolid::before, .icon-exclamationsolid::after {
	content: "";
}
.icon-exclamationtriangle::before, .icon-exclamationtriangle::after {
	content: "";
}
.icon-exclamationtrianglesolid::before, .icon-exclamationtrianglesolid::after {
	content: "";
}
.icon-infocircle::before, .icon-infocircle::after {
	content: "";
}
.icon-infosolid::before, .icon-infosolid::after {
	content: "";
}
.icon-question::before, .icon-question::after {
	content: "";
}
.icon-questioncircle::before, .icon-questioncircle::after {
	content: "";
}
.icon-questionsolid::before, .icon-questionsolid::after {
	content: "";
}
.icon-plus::before, .icon-plus::after {
	content: "";
}
.icon-pluscircle::before, .icon-pluscircle::after {
	content: "";
}
.icon-plussolid::before, .icon-plussolid::after {
	content: "";
}
.icon-minus::before, .icon-minus::after {
	content: "";
}
.icon-minuscircle::before, .icon-minuscircle::after {
	content: "";
}
.icon-minussolid::before, .icon-minussolid::after {
	content: "";
}
.icon-1circle::before, .icon-1circle::after {
	content: "";
}
.icon-2circle::before, .icon-2circle::after {
	content: "";
}
.icon-3circle::before, .icon-3circle::after {
	content: "";
}
.icon-4circle::before, .icon-4circle::after {
	content: "";
}
.icon-5circle::before, .icon-5circle::after {
	content: "";
}
.icon-6circle::before, .icon-6circle::after {
	content: "";
}
.icon-7circle::before, .icon-7circle::after {
	content: "";
}
.icon-8circle::before, .icon-8circle::after {
	content: "";
}
.icon-9circle::before, .icon-9circle::after {
	content: "";
}
.icon-10circle::before, .icon-10circle::after {
	content: "";
}
.icon-11circle::before, .icon-11circle::after {
	content: "";
}
.icon-12circle::before, .icon-12circle::after {
	content: "";
}
.icon-13circle::before, .icon-13circle::after {
	content: "";
}
.icon-14circle::before, .icon-14circle::after {
	content: "";
}
.icon-15circle::before, .icon-15circle::after {
	content: "";
}
.icon-16circle::before, .icon-16circle::after {
	content: "";
}
.icon-17circle::before, .icon-17circle::after {
	content: "";
}
.icon-18circle::before, .icon-18circle::after {
	content: "";
}
.icon-19circle::before, .icon-19circle::after {
	content: "";
}
.icon-20circle::before, .icon-20circle::after {
	content: "";
}
.icon-close::before, .icon-close::after {
	content: "";
}
.icon-closecompact::before, .icon-closecompact::after {
	content: "";
}
.icon-paddleleft::before, .icon-paddleleft::after {
	content: "";
}
.icon-paddleleftcompact::before, .icon-paddleleftcompact::after {
	content: "";
}
.icon-paddleright::before, .icon-paddleright::after {
	content: "";
}
.icon-paddlerightcompact::before, .icon-paddlerightcompact::after {
	content: "";
}
.icon-paddleup::before, .icon-paddleup::after {
	content: "";
}
.icon-paddleupcompact::before, .icon-paddleupcompact::after {
	content: "";
}
.icon-paddledown::before, .icon-paddledown::after {
	content: "";
}
.icon-paddledowncompact::before, .icon-paddledowncompact::after {
	content: "";
}
.icon-thumbnailreplay::before, .icon-thumbnailreplay::after {
	content: "";
}
.icon-thumbnailpause::before, .icon-thumbnailpause::after {
	content: "";
}
.icon-thumbnailplay::before, .icon-thumbnailplay::after {
	content: "";
}
.icon-externalrtl::before, .icon-externalrtl::after {
	content: "";
}
.icon-questionrtl::before, .icon-questionrtl::after {
	content: "";
}
.icon-questioncirclertl::before, .icon-questioncirclertl::after {
	content: "";
}
.icon-questionsolidrtl::before, .icon-questionsolidrtl::after {
	content: "";
}
.more::before, .more::after {
	content: "";
}
.more-block {
	margin-top: 0.5em;
}
.icon-wrapper .icon, .icon-wrapper .more:not(.icon-before)::after, .icon-wrapper .icon-before::before, .icon-wrapper .icon-after::after {
	display: inline;
	position: static;
}
a.icon-wrapper {
	text-decoration: none;
}
a.icon-wrapper:hover .icon-copy {
	text-decoration: underline;
}
html[dir="rtl"] .icon-external::before, html[dir="rtl"] .icon-external::after {
	content: "";
}
html[dir="rtl"] .icon-wrapper {
	unicode-bidi: bidi-override;
}
html[dir="rtl"] .icon-copy {
	unicode-bidi: embed;
}
:lang(ar) .icon-question::before, :lang(ar) .icon-question::after {
	content: "";
}
:lang(ar) .icon-questioncircle::before, :lang(ar) .icon-questioncircle::after {
	content: "";
}
:lang(ar) .icon-questionsolid::before, :lang(ar) .icon-questionsolid::after {
	content: "";
}
body {
	min-width: 320px;
}
.large-hide {
	display: none;
}
.large-show {
	display: block;
}
.large-show-inline {
	display: inline;
}
.large-show-inlineblock {
	display: inline-block;
}
@media only screen and (min-width: 1441px) {
	.xlarge-hide {
		display: none;
	}
	.xlarge-show {
		display: block;
	}
	.xlarge-show-inline {
		display: inline;
	}
	.xlarge-show-inlineblock {
		display: inline-block;
	}
}
@media only screen and (max-width: 1068px) {
	.medium-hide {
		display: none;
	}
	.medium-show {
		display: block;
	}
	.medium-show-inline {
		display: inline;
	}
	.medium-show-inlineblock {
		display: inline-block;
	}
}
@media only screen and (max-width: 734px) {
	.small-hide {
		display: none;
	}
	.small-show {
		display: block;
	}
	.small-show-inline {
		display: inline;
	}
	.small-show-inlineblock {
		display: inline-block;
	}
}
.viewport-content {
	margin-left: auto;
	margin-right: auto;
	width: 980px;
}
@media only screen and (min-width: 1441px) {
	.viewport-content {
		margin-left: auto;
		margin-right: auto;
		width: 980px;
	}
}
@media only screen and (max-width: 1068px) {
	.viewport-content {
		margin-left: auto;
		margin-right: auto;
		width: 692px;
	}
}
@media only screen and (max-width: 734px) {
	.viewport-content {
		margin-left: auto;
		margin-right: auto;
		width: 87.5%;
	}
}
br.large {
	display: block;
}
@media only screen and (max-width: 1068px) {
	br.large {
		display: none;
	}
}
@media only screen and (max-width: 734px) {
	br.large {
		display: none;
	}
}
br.medium {
	display: none;
}
@media only screen and (max-width: 1068px) {
	br.medium {
		display: block;
	}
}
@media only screen and (max-width: 734px) {
	br.medium {
		display: none;
	}
}
br.small {
	display: none;
}
@media only screen and (max-width: 1068px) {
	br.small {
		display: none;
	}
}
@media only screen and (max-width: 734px) {
	br.small {
		display: block;
	}
}
.button {
	cursor: pointer;
	display: inline-block;
	text-align: center;
	white-space: nowrap;
	font-size: 17px;
	line-height: 1.17648;
	font-weight: 400;
	letter-spacing: -0.022em;
	font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
	min-width: 28px;
	padding-left: 16px;
	padding-right: 16px;
	padding-top: 8px;
	padding-bottom: 8px;
	border-radius: 980px;
	background: #0071e3;
	color: #fff;
	--sk-button-margin-horizontal: 14px;
	--sk-button-margin-vertical: 14px;
}
.button:hover {
	text-decoration: none;
}
.button:focus {
	-webkit-box-shadow: 0 0 0 4px rgba(0, 125, 250, 0.6);
	box-shadow: 0 0 0 4px rgba(0, 125, 250, 0.6);
	outline: none;
}
.button:focus[data-focus-method="mouse"]:not(input):not(textarea):not(select), .button:focus[data-focus-method="touch"]:not(input):not(textarea):not(select) {
	-webkit-box-shadow: none;
	box-shadow: none;
}
.button:active {
	outline: none;
}
.button:disabled, .button.disabled {
	cursor: default;
}
.button:lang(ar) {
	letter-spacing: 0em;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Text", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.button:lang(ja) {
	letter-spacing: 0em;
	font-family: "SF Pro JP", "SF Pro Text", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.button:lang(ko) {
	letter-spacing: 0em;
	font-family: "SF Pro KR", "SF Pro Text", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.button:lang(zh) {
	letter-spacing: 0em;
}
.button:lang(th) {
	font-family: "SF Pro TH", "SF Pro Text", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.button:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Text", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.button:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Text", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.button:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Text", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.button:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Text", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.button:hover {
	background: #0077ed;
}
.button:active {
	background: #006edb;
}
.button:disabled, .button.disabled {
	background: #0071e3;
	color: #fff;
	opacity: 0.32;
}
.button-block {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	width: 100%;
	border-radius: 8px;
	--sk-button-margin-horizontal: 9px;
	--sk-button-margin-vertical: 9px;
}
.button-neutral {
	background: #1d1d1f;
	color: #fff;
}
.button-neutral:hover {
	background: #272729;
}
.button-neutral:active {
	background: #18181a;
}
.button-neutral:disabled, .button-neutral.disabled {
	background: #1d1d1f;
	color: #fff;
	opacity: 0.32;
}
.button-secondary {
	background: #e8e8ed;
	color: #000;
}
.button-secondary:hover {
	background: #ebebf0;
}
.button-secondary:active {
	background: #e6e6eb;
}
.button-secondary:disabled, .button-secondary.disabled {
	background: #e8e8ed;
	color: #000;
	opacity: 0.56;
}
.button-secondary-alpha {
	background: rgba(0, 0, 0, 0.08);
	color: #000;
}
.button-secondary-alpha:hover {
	background: rgba(0, 0, 0, 0.07);
}
.button-secondary-alpha:active {
	background: rgba(0, 0, 0, 0.09);
}
.button-secondary-alpha:disabled, .button-secondary-alpha.disabled {
	background: rgba(0, 0, 0, 0.08);
	color: #000;
	opacity: 0.56;
}
.button-super {
	font-size: 17px;
	line-height: 1.17648;
	font-weight: 400;
	letter-spacing: -0.022em;
	font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
	min-width: 28px;
	padding-left: 31px;
	padding-right: 31px;
	padding-top: 18px;
	padding-bottom: 18px;
	--sk-button-margin-horizontal: 22px;
	--sk-button-margin-vertical: 22px;
}
.button-super:lang(ar) {
	letter-spacing: 0em;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Text", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.button-super:lang(ja) {
	letter-spacing: 0em;
	font-family: "SF Pro JP", "SF Pro Text", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.button-super:lang(ko) {
	letter-spacing: 0em;
	font-family: "SF Pro KR", "SF Pro Text", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.button-super:lang(zh) {
	letter-spacing: 0em;
}
.button-super:lang(th) {
	font-family: "SF Pro TH", "SF Pro Text", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.button-super:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Text", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.button-super:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Text", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.button-super:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Text", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.button-super:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Text", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.button-super.button-block {
	border-radius: 12px;
	--sk-button-margin-horizontal: 14px;
	--sk-button-margin-vertical: 14px;
}
.button-elevated {
	font-size: 17px;
	line-height: 1.17648;
	font-weight: 400;
	letter-spacing: -0.022em;
	font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
	min-width: 26px;
	padding-left: 22px;
	padding-right: 22px;
	padding-top: 12px;
	padding-bottom: 12px;
	--sk-button-margin-horizontal: 18px;
	--sk-button-margin-vertical: 18px;
}
.button-elevated:lang(ar) {
	letter-spacing: 0em;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Text", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.button-elevated:lang(ja) {
	letter-spacing: 0em;
	font-family: "SF Pro JP", "SF Pro Text", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.button-elevated:lang(ko) {
	letter-spacing: 0em;
	font-family: "SF Pro KR", "SF Pro Text", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.button-elevated:lang(zh) {
	letter-spacing: 0em;
}
.button-elevated:lang(th) {
	font-family: "SF Pro TH", "SF Pro Text", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.button-elevated:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Text", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.button-elevated:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Text", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.button-elevated:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Text", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.button-elevated:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Text", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.button-elevated.button-block {
	border-radius: 10px;
	--sk-button-margin-horizontal: 11px;
	--sk-button-margin-vertical: 11px;
}
.button-reduced {
	font-size: 12px;
	line-height: 1.33337;
	font-weight: 400;
	letter-spacing: -0.01em;
	font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
	min-width: 23px;
	padding-left: 11px;
	padding-right: 11px;
	padding-top: 4px;
	padding-bottom: 4px;
	--sk-button-margin-horizontal: 10px;
	--sk-button-margin-vertical: 10px;
}
.button-reduced:lang(ar) {
	letter-spacing: 0em;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Text", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.button-reduced:lang(ja) {
	letter-spacing: 0em;
	font-family: "SF Pro JP", "SF Pro Text", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.button-reduced:lang(ko) {
	letter-spacing: 0em;
	font-family: "SF Pro KR", "SF Pro Text", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.button-reduced:lang(zh) {
	letter-spacing: 0em;
}
.button-reduced:lang(th) {
	font-family: "SF Pro TH", "SF Pro Text", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.button-reduced:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Text", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.button-reduced:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Text", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.button-reduced:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Text", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.button-reduced:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Text", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.button-reduced.button-block {
	border-radius: 5px;
	--sk-button-margin-horizontal: 6px;
	--sk-button-margin-vertical: 6px;
}
.button-margin {
	margin-right: var(--sk-button-margin-horizontal);
	margin-bottom: var(--sk-button-margin-vertical);
}
.callout {
	font-size: 17px;
	line-height: 1.47059;
	font-weight: 400;
	letter-spacing: -0.022em;
	font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid;
	padding: 2.23529em 8.33333% 2.11765em;
	border-radius: 18px;
	background-color: #f5f5f7;
	border-color: rgba(0, 0, 0, 0);
	color: #1d1d1f;
}
.callout > :first-child {
	margin-top: 0;
}
.callout > :last-child {
	margin-bottom: 0;
}
.callout:lang(ar) {
	line-height: 1.58824;
	letter-spacing: 0em;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Text", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.callout:lang(ja) {
	letter-spacing: 0em;
	font-family: "SF Pro JP", "SF Pro Text", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.callout:lang(ko) {
	line-height: 1.58824;
	letter-spacing: 0em;
	font-family: "SF Pro KR", "SF Pro Text", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.callout:lang(zh) {
	letter-spacing: 0em;
}
.callout:lang(th) {
	line-height: 1.35296;
	letter-spacing: 0em;
	font-family: "SF Pro TH", "SF Pro Text", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.callout:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Text", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.callout:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Text", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.callout:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Text", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.callout:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Text", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.callout .callout-title {
	color: #1d1d1f;
}
.callout-reduced {
	border-radius: 15px;
}
.callout-reduced .callout-title {
	font-size: 24px;
	line-height: 1.16667;
	font-weight: 600;
	letter-spacing: 0.009em;
	font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
}
.callout-reduced .callout-title:lang(ar) {
	line-height: 1.33341;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.callout-reduced .callout-title:lang(ja) {
	line-height: 1.25;
	font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.callout-reduced .callout-title:lang(ko) {
	line-height: 1.29167;
	font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.callout-reduced .callout-title:lang(th) {
	line-height: 1.375;
	font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.callout-reduced .callout-title:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.callout-reduced .callout-title:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.callout-reduced .callout-title:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.callout-reduced .callout-title:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.callout-icon {
	margin-bottom: 15px;
}
.callout-icon:first-child {
	margin-top: 5px;
}
.callout-title {
	font-size: 32px;
	line-height: 1.125;
	font-weight: 600;
	letter-spacing: 0.004em;
	font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
	margin-top: 0;
}
.callout-title:lang(ar) {
	line-height: 1.34375;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.callout-title:lang(ja) {
	line-height: 1.21875;
	font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.callout-title:lang(ko) {
	line-height: 1.21875;
	font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.callout-title:lang(th) {
	line-height: 1.375;
	font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.callout-title:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.callout-title:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.callout-title:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.callout-title:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
@media only screen and (max-width: 1068px) {
	.callout-title {
		font-size: 28px;
		line-height: 1.14286;
		font-weight: 600;
		letter-spacing: 0.007em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.callout-title:lang(ko) {
		line-height: 1.25;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.callout-title:lang(th) {
		line-height: 1.39286;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.callout-title:lang(ar) {
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.callout-title:lang(ja) {
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.callout-title:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.callout-title:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.callout-title:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.callout-title:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
@media only screen and (max-width: 734px) {
	.callout-title {
		font-size: 24px;
		line-height: 1.16667;
		font-weight: 600;
		letter-spacing: 0.009em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.callout-title:lang(ar) {
		line-height: 1.33341;
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.callout-title:lang(ja) {
		line-height: 1.25;
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.callout-title:lang(ko) {
		line-height: 1.29167;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.callout-title:lang(th) {
		line-height: 1.375;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.callout-title:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.callout-title:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.callout-title:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.callout-title:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
.callout-environment {
	background-color: #f6f6ee;
	border-color: rgba(0, 0, 0, 0);
	color: #1d1d1f;
}
.callout-environment .callout-title {
	color: #548c8c;
}
.violator {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	white-space: nowrap;
	display: inline-block;
	border: 1px solid;
	background: rgba(0, 0, 0, 0);
	border-color: #bf4800;
	color: #bf4800;
	font-size: 17px;
	line-height: 1.17648;
	font-weight: 400;
	letter-spacing: -0.022em;
	font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
	border-radius: 18px;
	padding-left: 18px;
	padding-right: 18px;
	padding-top: 7px;
	padding-bottom: 7px;
}
.violator:lang(ar) {
	letter-spacing: 0em;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Text", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.violator:lang(ja) {
	letter-spacing: 0em;
	font-family: "SF Pro JP", "SF Pro Text", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.violator:lang(ko) {
	letter-spacing: 0em;
	font-family: "SF Pro KR", "SF Pro Text", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.violator:lang(zh) {
	letter-spacing: 0em;
}
.violator:lang(th) {
	font-family: "SF Pro TH", "SF Pro Text", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.violator:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Text", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.violator:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Text", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.violator:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Text", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.violator:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Text", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.violator-inline {
	margin-left: 10px;
	display: inline-block;
}
.violator-secondary {
	background: rgba(0, 0, 0, 0);
	border-color: #6e6e73;
	color: #6e6e73;
}
.violator-reduced {
	font-size: 12px;
	line-height: 1.33337;
	font-weight: 400;
	letter-spacing: -0.01em;
	font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
	border-radius: 12px;
	padding-left: 11px;
	padding-right: 11px;
	padding-top: 3px;
	padding-bottom: 3px;
}
.violator-reduced:lang(ar) {
	letter-spacing: 0em;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Text", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.violator-reduced:lang(ja) {
	letter-spacing: 0em;
	font-family: "SF Pro JP", "SF Pro Text", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.violator-reduced:lang(ko) {
	letter-spacing: 0em;
	font-family: "SF Pro KR", "SF Pro Text", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.violator-reduced:lang(zh) {
	letter-spacing: 0em;
}
.violator-reduced:lang(th) {
	font-family: "SF Pro TH", "SF Pro Text", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.violator-reduced:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Text", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.violator-reduced:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Text", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.violator-reduced:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Text", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.violator-reduced:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Text", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.violator-reduced.violator-inline {
	margin-left: 6px;
	display: inline-block;
}
.violator-frameless {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	white-space: nowrap;
	display: block;
	color: #bf4800;
}
.violator-frameless-inline {
	margin-left: 10px;
	display: inline-block;
}
.violator-frameless.violator-frameless-reduced {
	font-size: 12px;
	line-height: 1.33337;
	font-weight: 400;
	letter-spacing: -0.01em;
	font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
	border-radius: 0;
	padding-left: 0;
	padding-right: 0;
	padding-top: 0;
	padding-bottom: 0;
	display: block;
}
.violator-frameless.violator-frameless-reduced:lang(ar) {
	letter-spacing: 0em;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Text", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.violator-frameless.violator-frameless-reduced:lang(ja) {
	letter-spacing: 0em;
	font-family: "SF Pro JP", "SF Pro Text", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.violator-frameless.violator-frameless-reduced:lang(ko) {
	letter-spacing: 0em;
	font-family: "SF Pro KR", "SF Pro Text", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.violator-frameless.violator-frameless-reduced:lang(zh) {
	letter-spacing: 0em;
}
.violator-frameless.violator-frameless-reduced:lang(th) {
	font-family: "SF Pro TH", "SF Pro Text", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.violator-frameless.violator-frameless-reduced:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Text", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.violator-frameless.violator-frameless-reduced:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Text", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.violator-frameless.violator-frameless-reduced:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Text", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.violator-frameless.violator-frameless-reduced:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Text", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.violator-frameless.violator-frameless-reduced.violator-frameless-inline {
	margin-left: 6px;
	display: inline-block;
}
#viewport-emitter {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	visibility: hidden;
	z-index: -1;
	x-content: "large";
}
#viewport-emitter::before {
	content: "large";
}
@media only screen and (min-width: 1441px) {
	#viewport-emitter {
		x-content: "xlarge";
	}
	#viewport-emitter::before {
		content: "xlarge";
	}
}
@media only screen and (max-width: 1068px) {
	#viewport-emitter {
		x-content: "medium";
	}
	#viewport-emitter::before {
		content: "medium";
	}
}
@media only screen and (max-width: 734px) {
	#viewport-emitter {
		x-content: "small";
	}
	#viewport-emitter::before {
		content: "small";
	}
}
.jp-headline-adjust {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	margin-right: -0.45em;
}
.jp-headline-adjust.large-hide {
	display: none !important;
}
.jp-headline-adjust.large-show {
	display: block !important;
}
.jp-headline-adjust.large-show-inline {
	display: inline !important;
}
.jp-headline-adjust.large-show-inlineblock {
	display: inline-block !important;
}
@media only screen and (min-width: 1441px) {
	.jp-headline-adjust.xlarge-hide {
		display: none !important;
	}
	.jp-headline-adjust.xlarge-show {
		display: block !important;
	}
	.jp-headline-adjust.xlarge-show-inline {
		display: inline !important;
	}
	.jp-headline-adjust.xlarge-show-inlineblock {
		display: inline-block !important;
	}
}
@media only screen and (max-width: 1068px) {
	.jp-headline-adjust.medium-hide {
		display: none !important;
	}
	.jp-headline-adjust.medium-show {
		display: block !important;
	}
	.jp-headline-adjust.medium-show-inline {
		display: inline !important;
	}
	.jp-headline-adjust.medium-show-inlineblock {
		display: inline-block !important;
	}
}
@media only screen and (max-width: 734px) {
	.jp-headline-adjust.small-hide {
		display: none !important;
	}
	.jp-headline-adjust.small-show {
		display: block !important;
	}
	.jp-headline-adjust.small-show-inline {
		display: inline !important;
	}
	.jp-headline-adjust.small-show-inlineblock {
		display: inline-block !important;
	}
}
.jp-headline-adjust-x1_5 {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	margin-right: -0.68em;
}
@media only screen and (max-width: 1068px) {
	.jp-headline-adjust-x1_5 {
		margin-right: -0.6em;
	}
}
@media only screen and (max-width: 734px) {
	.jp-headline-adjust-x1_5 {
		margin-right: -0.68em;
	}
}
.jp-headline-adjust-x1_5.large-hide {
	display: none !important;
}
.jp-headline-adjust-x1_5.large-show {
	display: block !important;
}
.jp-headline-adjust-x1_5.large-show-inline {
	display: inline !important;
}
.jp-headline-adjust-x1_5.large-show-inlineblock {
	display: inline-block !important;
}
@media only screen and (min-width: 1441px) {
	.jp-headline-adjust-x1_5.xlarge-hide {
		display: none !important;
	}
	.jp-headline-adjust-x1_5.xlarge-show {
		display: block !important;
	}
	.jp-headline-adjust-x1_5.xlarge-show-inline {
		display: inline !important;
	}
	.jp-headline-adjust-x1_5.xlarge-show-inlineblock {
		display: inline-block !important;
	}
}
@media only screen and (max-width: 1068px) {
	.jp-headline-adjust-x1_5.medium-hide {
		display: none !important;
	}
	.jp-headline-adjust-x1_5.medium-show {
		display: block !important;
	}
	.jp-headline-adjust-x1_5.medium-show-inline {
		display: inline !important;
	}
	.jp-headline-adjust-x1_5.medium-show-inlineblock {
		display: inline-block !important;
	}
}
@media only screen and (max-width: 734px) {
	.jp-headline-adjust-x1_5.small-hide {
		display: none !important;
	}
	.jp-headline-adjust-x1_5.small-show {
		display: block !important;
	}
	.jp-headline-adjust-x1_5.small-show-inline {
		display: inline !important;
	}
	.jp-headline-adjust-x1_5.small-show-inlineblock {
		display: inline-block !important;
	}
}
.jp-headline-adjust-small-x1_5 {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	margin-right: -0.45em;
}
@media only screen and (max-width: 734px) {
	.jp-headline-adjust-small-x1_5 {
		margin-right: -0.43em;
	}
}
.jp-headline-adjust-small-x1_5.large-hide {
	display: none !important;
}
.jp-headline-adjust-small-x1_5.large-show {
	display: block !important;
}
.jp-headline-adjust-small-x1_5.large-show-inline {
	display: inline !important;
}
.jp-headline-adjust-small-x1_5.large-show-inlineblock {
	display: inline-block !important;
}
@media only screen and (min-width: 1441px) {
	.jp-headline-adjust-small-x1_5.xlarge-hide {
		display: none !important;
	}
	.jp-headline-adjust-small-x1_5.xlarge-show {
		display: block !important;
	}
	.jp-headline-adjust-small-x1_5.xlarge-show-inline {
		display: inline !important;
	}
	.jp-headline-adjust-small-x1_5.xlarge-show-inlineblock {
		display: inline-block !important;
	}
}
@media only screen and (max-width: 1068px) {
	.jp-headline-adjust-small-x1_5.medium-hide {
		display: none !important;
	}
	.jp-headline-adjust-small-x1_5.medium-show {
		display: block !important;
	}
	.jp-headline-adjust-small-x1_5.medium-show-inline {
		display: inline !important;
	}
	.jp-headline-adjust-small-x1_5.medium-show-inlineblock {
		display: inline-block !important;
	}
}
@media only screen and (max-width: 734px) {
	.jp-headline-adjust-small-x1_5.small-hide {
		display: none !important;
	}
	.jp-headline-adjust-small-x1_5.small-show {
		display: block !important;
	}
	.jp-headline-adjust-small-x1_5.small-show-inline {
		display: inline !important;
	}
	.jp-headline-adjust-small-x1_5.small-show-inlineblock {
		display: inline-block !important;
	}
}
.more:after, .icon-chevronright:after, .more:after, .icon-external:after {
	top: -0.05em;
}
.text-center {
	text-align: center;
}
.tile-shadow, .teacher-callout {
	-webkit-box-shadow: 6px 6px 16px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 6px 6px 16px 0px rgba(0, 0, 0, 0.2);
}
.row-column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;
}
.kerning-adjust-005 {
	margin-left: -0.05em;
}
.modalarea {
	display: none;
}
.no-js .modalarea {
	display: block;
}
.modal-open-button {
	color: #06c;
}
@media (pointer: fine) {
	.modal-open-button:hover {
		text-decoration: underline;
	}
}
.modal-close-button {
	font-weight: 300;
	margin: 0 0 0 10px;
	-webkit-transform: translate(0, 4px);
	transform: translate(0, 4px);
}
@media only screen and (max-width: 1068px) {
	.modal-close-button {
		margin: 0;
		-webkit-transform: translate(0, -5px);
		transform: translate(0, -5px);
	}
}
@media only screen and (max-width: 734px) {
	.modal-close-button {
		margin: var(--modal-close-button-offset-top) 0 0 0;
		-webkit-transform: translate(0, -10px);
		transform: translate(0, -10px);
	}
}
.teaching-code-modal-wrapper .modal-close-button {
	color: #111;
	margin: 0 0 0 12px;
	-webkit-transform: translate(0, 4px);
	transform: translate(0, 4px);
}
@media only screen and (max-width: 1068px) {
	.teaching-code-modal-wrapper .modal-close-button {
		margin: 0 0 0 8px;
		-webkit-transform: translate(-7px, -5px);
		transform: translate(-7px, -5px);
	}
}
@media only screen and (max-width: 734px) {
	.teaching-code-modal-wrapper .modal-close-button {
		margin: var(--modal-close-button-offset-top) 0 0 0;
		-webkit-transform: translate(-5px, -12px);
		transform: translate(-5px, -12px);
	}
}
@media only screen and (max-width: 734px) {
	.modal-overlay {
		margin-bottom: 60px !important;
		border-radius: 10px !important;
	}
}
.section {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 120px 0;
}
.section::before, .section::after {
	content: " ";
	display: table;
}
.section::after {
	clear: both;
}
@media only screen and (max-width: 1068px) {
	.section {
		padding: 100px 0;
	}
}
@media only screen and (max-width: 734px) {
	.section {
		padding: 80px 0;
	}
}
.section.guide {
	padding: 120px 0 130px;
}
@media only screen and (max-width: 1068px) {
	.section.guide {
		padding: 100px 0 120px;
	}
}
@media only screen and (max-width: 734px) {
	.section.guide {
		padding: 80px 0 85px;
	}
}
.section.usage {
	padding: 120px 0 140px;
}
@media only screen and (max-width: 1068px) {
	.section.usage {
		padding: 100px 0 120px;
	}
}
@media only screen and (max-width: 734px) {
	.section.usage {
		padding: 80px 0 85px;
	}
}
.section-nopad {
	padding: 0;
}
.section-nopad-top {
	padding-top: 0;
}
.section-nopad-bottom {
	padding-bottom: 0;
}
.section-content {
	margin-left: auto;
	margin-right: auto;
	width: 980px;
}
@media only screen and (max-width: 1068px) {
	.section-content {
		width: 80vw;
		min-width: 692px;
	}
}
@media only screen and (max-width: 734px) {
	.section-content {
		width: 80vw;
		min-width: initial;
		max-width: 500px;
	}
}
@media only screen and (max-width: 1068px) {
	.section-full-width {
		width: 100%;
	}
}
.icon::before, .icon::after {
	line-height: unset !important;
}
.hero-play-video .icon::before, .hero-play-video .icon::after {
	line-height: inherit !important;
}
.icon.icon-play-circle.icon-after::before, .icon.icon-play-circle.icon-after::after {
	font-family: "SF Pro Icons";
	color: inherit;
	display: inline-block;
	font-style: normal;
	font-weight: inherit;
	font-size: inherit;
	line-height: 1;
	text-decoration: underline;
	position: relative;
	z-index: 1;
	alt: "";
}
.icon.icon-play-circle.icon-after::before, .icon.icon-play-circle.icon-after::after {
	text-decoration: none;
}
.icon.icon-play-circle.icon-after::before {
	display: none;
}
.icon.icon-play-circle.icon-after::before, .icon.icon-play-circle.icon-after::after {
	content: "";
}
.icon.icon-play-circle.icon-after::after {
	padding-left: 0.3em;
	top: 0;
}
.hero-play-video .icon.icon-play-circle.icon-after::after {
	display: inline;
}
.hero-play-video .icon.icon-play-circle {
	display: inline-block;
}
.icon.icon-plus-circle.icon-after::before, .icon.icon-plus-circle.icon-after::after {
	font-family: "SF Pro Icons";
	color: inherit;
	display: inline-block;
	font-style: normal;
	font-weight: inherit;
	font-size: inherit;
	line-height: 1;
	text-decoration: underline;
	position: relative;
	z-index: 1;
	alt: "";
}
.icon.icon-plus-circle.icon-after::before, .icon.icon-plus-circle.icon-after::after {
	text-decoration: none;
}
.icon.icon-plus-circle.icon-after::before {
	display: none;
}
.icon.icon-plus-circle.icon-after::before, .icon.icon-plus-circle.icon-after::after {
	content: "";
}
.icon.icon-plus-circle.icon-after::after {
	padding-left: 0.3em;
	top: 0;
}
.icon.icon-download.icon-after::before, .icon.icon-download.icon-after::after {
	font-family: "SF Pro Icons";
	color: inherit;
	display: inline-block;
	font-style: normal;
	font-weight: inherit;
	font-size: inherit;
	line-height: 1;
	text-decoration: underline;
	position: relative;
	z-index: 1;
	alt: "";
}
.icon.icon-download.icon-after::before, .icon.icon-download.icon-after::after {
	text-decoration: none;
}
.icon.icon-download.icon-after::before {
	display: none;
}
.icon.icon-download.icon-after::before, .icon.icon-download.icon-after::after {
	content: "";
}
.icon.icon-download.icon-after::after {
	padding-left: 0.3em;
	top: 0;
}
.icon.icon-shevron-down.icon-after::before, .icon.icon-shevron-down.icon-after::after {
	font-family: "SF Pro Icons";
	color: inherit;
	display: inline-block;
	font-style: normal;
	font-weight: inherit;
	font-size: inherit;
	line-height: 1;
	text-decoration: underline;
	position: relative;
	z-index: 1;
	alt: "";
}
.icon.icon-shevron-down.icon-after::before, .icon.icon-shevron-down.icon-after::after {
	text-decoration: none;
}
.icon.icon-shevron-down.icon-after::before {
	display: none;
}
.icon.icon-shevron-down.icon-after::before, .icon.icon-shevron-down.icon-after::after {
	content: "";
}
.icon.icon-shevron-down.icon-after::after {
	padding-left: 0.3em;
	top: 0;
}
.icon.icon-modal-close.icon-after {
	font-size: 34px;
}
.icon.icon-modal-close.icon-after::before, .icon.icon-modal-close.icon-after::after {
	font-family: "SF Pro Icons";
	color: inherit;
	display: inline-block;
	font-style: normal;
	font-weight: inherit;
	font-size: inherit;
	line-height: 1;
	text-decoration: underline;
	position: relative;
	z-index: 1;
	alt: "";
}
.icon.icon-modal-close.icon-after::before, .icon.icon-modal-close.icon-after::after {
	text-decoration: none;
}
.icon.icon-modal-close.icon-after::before {
	display: none;
}
.icon.icon-modal-close.icon-after::before, .icon.icon-modal-close.icon-after::after {
	content: "";
}
.icon.icon-modal-close.icon-after::after {
	padding-left: 0.3em;
	top: 0;
}
@media only screen and (max-width: 1068px) {
	.icon.icon-modal-close.icon-after {
		font-size: 32px;
	}
}
@media only screen and (max-width: 734px) {
	.icon.icon-modal-close.icon-after {
		font-size: 24px;
	}
}
.icon.icon-modal-close.icon-after > * {
	display: none;
}
.icon.icon-check.icon-after::before, .icon.icon-check.icon-after::after {
	font-family: "SF Pro Icons";
	color: inherit;
	display: inline-block;
	font-style: normal;
	font-weight: inherit;
	font-size: inherit;
	line-height: 1;
	text-decoration: underline;
	position: relative;
	z-index: 1;
	alt: "";
}
.icon.icon-check.icon-after::before, .icon.icon-check.icon-after::after {
	text-decoration: none;
}
.icon.icon-check.icon-after::before {
	display: none;
}
.icon.icon-check.icon-after::before, .icon.icon-check.icon-after::after {
	content: "";
}
.icon.icon-check.icon-after::after {
	padding-left: 0.3em;
	top: 0;
}
.icon.icon-external.icon-after::before, .icon.icon-external.icon-after::after {
	font-family: "SF Pro Icons";
	color: inherit;
	display: inline-block;
	font-style: normal;
	font-weight: inherit;
	font-size: inherit;
	line-height: 1;
	text-decoration: underline;
	position: relative;
	z-index: 1;
	alt: "";
}
.icon.icon-external.icon-after::before, .icon.icon-external.icon-after::after {
	text-decoration: none;
}
.icon.icon-external.icon-after::before {
	display: none;
}
.icon.icon-external.icon-after::before, .icon.icon-external.icon-after::after {
	content: "";
}
.icon.icon-external.icon-after::after {
	padding-left: 0.3em;
	top: 0;
}
.icon.icon-external.icon-after::after {
	top: -0.03em;
}
.teacher-callout {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-radius: 15px;
}
@media only screen and (max-width: 1068px) {
	.teacher-callout {
		border-radius: 15px;
	}
}
@media only screen and (max-width: 734px) {
	.teacher-callout {
		border-radius: 10px;
	}
}
.gallery {
	overflow: scroll;
	will-change: transform;
	-ms-scroll-snap-type: x mandatory;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.gallery::-webkit-scrollbar {
	display: none;
}
.gallery-container {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	display: grid;
	grid-template: unset;
	margin: auto;
	grid-gap: 40px;
	grid-auto-flow: column;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	grid-gap: 40px;
	padding-left: calc(50% - (980px / 2));
	padding-right: calc(50% - (980px / 2));
	padding-bottom: 30px;
}
@media only screen and (max-width: 1068px) {
	.gallery-container {
		grid-gap: 40px;
		padding-left: var(--gallery-margin, 10vw);
		padding-right: var(--gallery-margin, 10vw);
		padding-bottom: 30px;
	}
}
@media only screen and (max-width: 734px) {
	.gallery-container {
		grid-gap: 20px;
		padding-left: var(--gallery-margin, 10vw);
		padding-right: var(--gallery-margin, 10vw);
		padding-bottom: 20px;
	}
}
.paddlenav-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	width: 100%;
	margin: 0;
	padding: 0;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.paddlenav-arrow {
	font-weight: bold;
	position: relative;
	width: 44px;
	height: 44px;
}
.paddlenav-arrow[aria-disabled="true"] {
	opacity: 0.4;
	pointer-events: none;
}
.paddlenav-arrow .svg-icon {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	pointer-events: none;
}
.paddlenav-arrow .icon-hover {
	opacity: 0;
}
@media (pointer: fine) {
	.paddlenav-arrow:hover .svg-icon {
		opacity: 0;
	}
	.paddlenav-arrow:hover .svg-icon.icon-hover {
		opacity: 1;
	}
}
.violator-link {
	white-space: initial;
	display: inline !important;
	text-decoration: none !important;
	border-width: 2px;
	padding: 16px 20px 14px;
	border-radius: 40px;
	background: rgba(0, 0, 0, 0);
	border-color: #06c;
	color: #06c;
	font-size: 21px;
	line-height: 1.19048;
	font-weight: 600;
	letter-spacing: 0.011em;
	font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
}
@media only screen and (max-width: 734px) {
	.violator-link {
		display: block !important;
	}
}
@media only screen and (max-width: 734px) {
	.violator-link {
		padding: 16px 18px 14px 22px;
	}
}
.violator-link:lang(ja) {
	line-height: 1.2381;
	font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.violator-link:lang(ko) {
	line-height: 1.2858;
	font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.violator-link:lang(th) {
	line-height: 1.381;
	font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.violator-link:lang(ar) {
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.violator-link:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.violator-link:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.violator-link:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.violator-link:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
@media only screen and (max-width: 734px) {
	.violator-link {
		font-size: 19px;
		line-height: 1.21053;
		font-weight: 600;
		letter-spacing: 0.012em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.violator-link:lang(ar) {
		line-height: 1.36844;
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.violator-link:lang(ja) {
		line-height: 1.26316;
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.violator-link:lang(ko) {
		line-height: 1.31579;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.violator-link:lang(th) {
		line-height: 1.36844;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.violator-link:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.violator-link:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.violator-link:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.violator-link:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
@media (pointer: fine) {
	.violator-link {
		-webkit-transition: background-color 0.3s ease, color 0.3s ease;
		transition: background-color 0.3s ease, color 0.3s ease;
	}
	.violator-link:hover {
		background-color: #06c;
		color: #fff;
	}
}
.tabnav-wrapper {
	position: sticky;
	height: 56px;
	background-color: rgba(247, 246, 255, 0.95);
	z-index: 5;
	overflow: hidden;
	width: 100%;
	top: 51px;
}
@media only screen and (max-width: 1068px) {
	.tabnav-wrapper {
		top: 48px;
	}
}
@media only screen and (max-width: 734px) {
	.tabnav-wrapper {
		top: 48px;
	}
}
@supports (
	(-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))
) {
	.tabnav-wrapper {
		/* background-color: rgba(250, 250, 250, 0.7); */
		background-color: rgba(247, 246, 255, 0.7);
		-webkit-backdrop-filter: saturate(1.8) blur(20px);
		backdrop-filter: saturate(1.8) blur(20px);
	}
}
.no-js .tabnav-wrapper {
	top: 0;
}
@media only screen and (max-width: 1068px) {
	.no-js .tabnav-wrapper {
		top: 0;
	}
}
@media only screen and (max-width: 734px) {
	.no-js .tabnav-wrapper {
		top: 0;
	}
}
.tabnav {
	margin: 0 auto;
	padding: 0;
	width: 100%;
	text-align: center;
	position: relative;
	white-space: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	-ms-scroll-snap-type: x mandatory;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.tabnav::-webkit-scrollbar {
	display: none;
}
.tabnav-items {
	padding-bottom: 0;
	display: inline-block;
	margin: 0 auto;
}
.tabnav-item {
	padding: 0 20px;
	border-bottom: none;
	display: inline-block;
	list-style: none;
	outline: none;
}
.tabnav-link {
	font-size: 14px;
	line-height: 1.42859;
	margin: 0;
	padding: 20px 0;
	line-height: 1;
	color: #111;
	-webkit-transition: color 0.3s ease-out;
	transition: color 0.3s ease-out;
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	text-align: left;
	display: block;
	position: relative;
	z-index: 0;
	position: relative;
}
.tabnav-link:hover {
	color: #0070c9;
	text-decoration: none !important;
}
.tabnav-link:hover .icon-copy {
	text-decoration: none !important;
}
.tabnav-link-border::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	-webkit-transition: -webkit-transform 0.3s ease-out;
	transition: -webkit-transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
	transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
	border-bottom: 2px solid #333;
}
.tabnav-wrapper[data-current-tab="guides"] .tabnav-link-border::after {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	width: 100%;
}
@media only screen and (max-width: 1068px) {
	.tabnav-wrapper[data-current-tab="guides"] .tabnav-link-border::after {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		width: 100%;
	}
}
@media only screen and (max-width: 734px) {
	.tabnav-wrapper[data-current-tab="guides"] .tabnav-link-border::after {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		width: 100%;
	}
}
.tabnav-wrapper[data-current-tab="everyone-can-create"] .tabnav-link-border::after {
	-webkit-transform: translateX(95px);
	transform: translateX(95px);
	width: 156px;
}
@media only screen and (max-width: 1068px) {
	.tabnav-wrapper[data-current-tab="everyone-can-create"] .tabnav-link-border::after {
		-webkit-transform: translateX(95px);
		transform: translateX(95px);
		width: 156px;
	}
}
@media only screen and (max-width: 734px) {
	.tabnav-wrapper[data-current-tab="everyone-can-create"] .tabnav-link-border::after {
		-webkit-transform: translateX(95px);
		transform: translateX(95px);
		width: 156px;
	}
}
.tabnav-wrapper[data-current-tab="teaching-code"] .tabnav-link-border::after {
	-webkit-transform: translateX(293px);
	transform: translateX(293px);
	width: 112px;
}
@media only screen and (max-width: 1068px) {
	.tabnav-wrapper[data-current-tab="teaching-code"] .tabnav-link-border::after {
		-webkit-transform: translateX(293px);
		transform: translateX(293px);
		width: 112px;
	}
}
@media only screen and (max-width: 734px) {
	.tabnav-wrapper[data-current-tab="teaching-code"] .tabnav-link-border::after {
		-webkit-transform: translateX(293px);
		transform: translateX(293px);
		width: 112px;
	}
}

.tabnav-wrapper[data-current-tab="today-at-apple"] .tabnav-link-border::after {
	-webkit-transform: translateX(448px);
	transform: translateX(448px);
	width: 111px;
}
@media only screen and (max-width: 1068px) {
	.tabnav-wrapper[data-current-tab="today-at-apple"] .tabnav-link-border::after {
		-webkit-transform: translateX(448px);
		transform: translateX(448px);
		width: 111px;
	}
}
@media only screen and (max-width: 734px) {
	.tabnav-wrapper[data-current-tab="today-at-apple"] .tabnav-link-border::after {
		-webkit-transform: translateX(448px);
		transform: translateX(448px);
		width: 111px;
	}
}

.tabnav-wrapper[data-current-tab="apps"] .tabnav-link-border::after {
	-webkit-transform: translateX(601px);
	transform: translateX(601px);
	width: 42px;
}
@media only screen and (max-width: 1068px) {
	.tabnav-wrapper[data-current-tab="apps"] .tabnav-link-border::after {
		-webkit-transform: translateX(601px);
		transform: translateX(601px);
		width: 42px;
	}
}
@media only screen and (max-width: 734px) {
	.tabnav-wrapper[data-current-tab="apps"] .tabnav-link-border::after {
		-webkit-transform: translateX(601px);
		transform: translateX(601px);
		width: 42px;
	}
}

.typography-headline-standalone {
	font-size: 96px;
	line-height: 1.04167;
	font-weight: 600;
	letter-spacing: -0.015em;
	font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
}
.typography-headline-standalone:lang(ar) {
	letter-spacing: 0em;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-headline-standalone:lang(ja) {
	letter-spacing: 0em;
	font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-headline-standalone:lang(ko) {
	line-height: 1.14615;
	letter-spacing: 0em;
	font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-headline-standalone:lang(zh) {
	letter-spacing: 0em;
}
.typography-headline-standalone:lang(th) {
	line-height: 1.34375;
	font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-headline-standalone:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-headline-standalone:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-headline-standalone:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-headline-standalone:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
@media only screen and (max-width: 1068px) {
	.typography-headline-standalone {
		font-size: 80px;
		line-height: 1.05;
		font-weight: 600;
		letter-spacing: -0.015em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-headline-standalone:lang(ar) {
		line-height: 1.2;
		letter-spacing: 0em;
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-standalone:lang(ja) {
		line-height: 1.0875;
		letter-spacing: 0em;
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-headline-standalone:lang(ko) {
		line-height: 1.15;
		letter-spacing: 0em;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-standalone:lang(zh) {
		letter-spacing: 0em;
	}
	.typography-headline-standalone:lang(th) {
		line-height: 1.35;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-standalone:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-standalone:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-standalone:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-standalone:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
@media only screen and (max-width: 734px) {
	.typography-headline-standalone {
		font-size: 48px;
		line-height: 1.08349;
		font-weight: 600;
		letter-spacing: -0.003em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-headline-standalone:lang(ar) {
		line-height: 1.25;
		letter-spacing: 0em;
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-standalone:lang(ja) {
		line-height: 1.14599;
		letter-spacing: 0em;
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-headline-standalone:lang(ko) {
		line-height: 1.1875;
		letter-spacing: 0em;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-standalone:lang(zh) {
		letter-spacing: 0em;
	}
	.typography-headline-standalone:lang(th) {
		line-height: 1.33349;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-standalone:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-standalone:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-standalone:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-standalone:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
.typography-headline-super {
	font-size: 80px;
	line-height: 1.05;
	font-weight: 700;
	letter-spacing: -0.015em;
	font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
}
.typography-headline-super:lang(ar) {
	line-height: 1.2;
	letter-spacing: 0em;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-headline-super:lang(ja) {
	line-height: 1.0875;
	letter-spacing: 0em;
	font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-headline-super:lang(ko) {
	line-height: 1.15;
	letter-spacing: 0em;
	font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-headline-super:lang(zh) {
	letter-spacing: 0em;
}
.typography-headline-super:lang(th) {
	line-height: 1.35;
	font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-headline-super:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-headline-super:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-headline-super:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-headline-super:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
@media only screen and (max-width: 1068px) {
	.typography-headline-super {
		font-size: 64px;
		line-height: 1.0625;
		font-weight: 700;
		letter-spacing: -0.009em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-headline-super:lang(ar) {
		line-height: 1.20312;
		letter-spacing: 0em;
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-super:lang(ja) {
		line-height: 1.10938;
		letter-spacing: 0em;
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-headline-super:lang(ko) {
		line-height: 1.17188;
		letter-spacing: 0em;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-super:lang(zh) {
		letter-spacing: 0em;
	}
	.typography-headline-super:lang(th) {
		line-height: 1.34375;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-super:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-super:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-super:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-super:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
@media only screen and (max-width: 734px) {
	.typography-headline-super {
		font-size: 48px;
		line-height: 1.08349;
		font-weight: 700;
		letter-spacing: -0.003em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-headline-super:lang(ar) {
		line-height: 1.25;
		letter-spacing: 0em;
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-super:lang(ja) {
		line-height: 1.14599;
		letter-spacing: 0em;
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-headline-super:lang(ko) {
		line-height: 1.1875;
		letter-spacing: 0em;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-super:lang(zh) {
		letter-spacing: 0em;
	}
	.typography-headline-super:lang(th) {
		line-height: 1.33349;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-super:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-super:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-super:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-super:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
.typography-headline-elevated {
	font-size: 64px;
	line-height: 1.0625;
	font-weight: 600;
	letter-spacing: -0.009em;
	font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
}
.typography-headline-elevated:lang(ar) {
	line-height: 1.20312;
	letter-spacing: 0em;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-headline-elevated:lang(ja) {
	line-height: 1.10938;
	letter-spacing: 0em;
	font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-headline-elevated:lang(ko) {
	line-height: 1.17188;
	letter-spacing: 0em;
	font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-headline-elevated:lang(zh) {
	letter-spacing: 0em;
}
.typography-headline-elevated:lang(th) {
	line-height: 1.34375;
	font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-headline-elevated:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-headline-elevated:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-headline-elevated:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-headline-elevated:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
@media only screen and (max-width: 1068px) {
	.typography-headline-elevated {
		font-size: 48px;
		line-height: 1.08349;
		font-weight: 600;
		letter-spacing: -0.003em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-headline-elevated:lang(ar) {
		line-height: 1.25;
		letter-spacing: 0em;
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-elevated:lang(ja) {
		line-height: 1.14599;
		letter-spacing: 0em;
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-headline-elevated:lang(ko) {
		line-height: 1.1875;
		letter-spacing: 0em;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-elevated:lang(zh) {
		letter-spacing: 0em;
	}
	.typography-headline-elevated:lang(th) {
		line-height: 1.33349;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-elevated:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-elevated:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-elevated:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-elevated:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
@media only screen and (max-width: 734px) {
	.typography-headline-elevated {
		font-size: 40px;
		line-height: 1.1;
		font-weight: 600;
		letter-spacing: 0em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-headline-elevated:lang(ar) {
		line-height: 1.3;
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-elevated:lang(ja) {
		line-height: 1.175;
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-headline-elevated:lang(ko) {
		line-height: 1.2;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-elevated:lang(th) {
		line-height: 1.35;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-elevated:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-elevated:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-elevated:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-elevated:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
.typography-headline {
	font-size: 48px;
	line-height: 1.08349;
	font-weight: 600;
	letter-spacing: -0.003em;
	font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
}
.typography-headline:lang(ar) {
	line-height: 1.25;
	letter-spacing: 0em;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-headline:lang(ja) {
	line-height: 1.14599;
	letter-spacing: 0em;
	font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-headline:lang(ko) {
	line-height: 1.1875;
	letter-spacing: 0em;
	font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-headline:lang(zh) {
	letter-spacing: 0em;
}
.typography-headline:lang(th) {
	line-height: 1.33349;
	font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-headline:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-headline:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-headline:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-headline:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
@media only screen and (max-width: 1068px) {
	.typography-headline {
		font-size: 40px;
		line-height: 1.1;
		font-weight: 600;
		letter-spacing: 0em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-headline:lang(ar) {
		line-height: 1.3;
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline:lang(ja) {
		line-height: 1.175;
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-headline:lang(ko) {
		line-height: 1.2;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline:lang(th) {
		line-height: 1.35;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
@media only screen and (max-width: 734px) {
	.typography-headline {
		font-size: 32px;
		line-height: 1.125;
		font-weight: 600;
		letter-spacing: 0.004em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-headline:lang(ar) {
		line-height: 1.34375;
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline:lang(ja) {
		line-height: 1.21875;
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-headline:lang(ko) {
		line-height: 1.21875;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline:lang(th) {
		line-height: 1.375;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
.typography-headline-reduced {
	font-size: 40px;
	line-height: 1.1;
	font-weight: 600;
	letter-spacing: 0em;
	font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
}
.typography-headline-reduced:lang(ar) {
	line-height: 1.3;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-headline-reduced:lang(ja) {
	line-height: 1.175;
	font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-headline-reduced:lang(ko) {
	line-height: 1.2;
	font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-headline-reduced:lang(th) {
	line-height: 1.35;
	font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-headline-reduced:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-headline-reduced:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-headline-reduced:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-headline-reduced:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
@media only screen and (max-width: 1068px) {
	.typography-headline-reduced {
		font-size: 32px;
		line-height: 1.125;
		font-weight: 600;
		letter-spacing: 0.004em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-headline-reduced:lang(ar) {
		line-height: 1.34375;
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-reduced:lang(ja) {
		line-height: 1.21875;
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-headline-reduced:lang(ko) {
		line-height: 1.21875;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-reduced:lang(th) {
		line-height: 1.375;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-reduced:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-reduced:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-reduced:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-reduced:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
@media only screen and (max-width: 734px) {
	.typography-headline-reduced {
		font-size: 28px;
		line-height: 1.14286;
		font-weight: 600;
		letter-spacing: 0.007em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-headline-reduced:lang(ko) {
		line-height: 1.25;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-reduced:lang(th) {
		line-height: 1.39286;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-reduced:lang(ar) {
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-reduced:lang(ja) {
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-headline-reduced:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-reduced:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-reduced:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-headline-reduced:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
.typography-eyebrow-super {
	font-size: 32px;
	line-height: 1.125;
	font-weight: 600;
	letter-spacing: 0.004em;
	font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
}
.typography-eyebrow-super:lang(ar) {
	line-height: 1.34375;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-eyebrow-super:lang(ja) {
	line-height: 1.21875;
	font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-eyebrow-super:lang(ko) {
	line-height: 1.21875;
	font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-eyebrow-super:lang(th) {
	line-height: 1.375;
	font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-eyebrow-super:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-eyebrow-super:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-eyebrow-super:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-eyebrow-super:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
@media only screen and (max-width: 1068px) {
	.typography-eyebrow-super {
		font-size: 28px;
		line-height: 1.14286;
		font-weight: 600;
		letter-spacing: 0.007em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-super:lang(ko) {
		line-height: 1.25;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-super:lang(th) {
		line-height: 1.39286;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-super:lang(ar) {
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-super:lang(ja) {
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-eyebrow-super:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-super:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-super:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-super:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
@media only screen and (max-width: 734px) {
	.typography-eyebrow-super {
		font-size: 24px;
		line-height: 1.16667;
		font-weight: 600;
		letter-spacing: 0.009em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-super:lang(ar) {
		line-height: 1.33341;
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-super:lang(ja) {
		line-height: 1.25;
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-eyebrow-super:lang(ko) {
		line-height: 1.29167;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-super:lang(th) {
		line-height: 1.375;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-super:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-super:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-super:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-super:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
.typography-eyebrow-elevated {
	font-size: 28px;
	line-height: 1.14286;
	font-weight: 600;
	letter-spacing: 0.007em;
	font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
}
.typography-eyebrow-elevated:lang(ko) {
	line-height: 1.25;
	font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-eyebrow-elevated:lang(th) {
	line-height: 1.39286;
	font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-eyebrow-elevated:lang(ar) {
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-eyebrow-elevated:lang(ja) {
	font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-eyebrow-elevated:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-eyebrow-elevated:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-eyebrow-elevated:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-eyebrow-elevated:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
@media only screen and (max-width: 1068px) {
	.typography-eyebrow-elevated {
		font-size: 24px;
		line-height: 1.16667;
		font-weight: 600;
		letter-spacing: 0.009em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-elevated:lang(ar) {
		line-height: 1.33341;
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-elevated:lang(ja) {
		line-height: 1.25;
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-eyebrow-elevated:lang(ko) {
		line-height: 1.29167;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-elevated:lang(th) {
		line-height: 1.375;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-elevated:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-elevated:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-elevated:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-elevated:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
@media only screen and (max-width: 734px) {
	.typography-eyebrow-elevated {
		font-size: 21px;
		line-height: 1.19048;
		font-weight: 600;
		letter-spacing: 0.011em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-elevated:lang(ja) {
		line-height: 1.2381;
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-eyebrow-elevated:lang(ko) {
		line-height: 1.2858;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-elevated:lang(th) {
		line-height: 1.381;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-elevated:lang(ar) {
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-elevated:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-elevated:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-elevated:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-elevated:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
.typography-eyebrow {
	font-size: 24px;
	line-height: 1.16667;
	font-weight: 600;
	letter-spacing: 0.009em;
	font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
}
.typography-eyebrow:lang(ar) {
	line-height: 1.33341;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-eyebrow:lang(ja) {
	line-height: 1.25;
	font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-eyebrow:lang(ko) {
	line-height: 1.29167;
	font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-eyebrow:lang(th) {
	line-height: 1.375;
	font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-eyebrow:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-eyebrow:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-eyebrow:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-eyebrow:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
@media only screen and (max-width: 1068px) {
	.typography-eyebrow {
		font-size: 21px;
		line-height: 1.19048;
		font-weight: 600;
		letter-spacing: 0.011em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow:lang(ja) {
		line-height: 1.2381;
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-eyebrow:lang(ko) {
		line-height: 1.2858;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow:lang(th) {
		line-height: 1.381;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow:lang(ar) {
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
.typography-eyebrow-reduced {
	font-size: 21px;
	line-height: 1.19048;
	font-weight: 600;
	letter-spacing: 0.011em;
	font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
}
.typography-eyebrow-reduced:lang(ja) {
	line-height: 1.2381;
	font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-eyebrow-reduced:lang(ko) {
	line-height: 1.2858;
	font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-eyebrow-reduced:lang(th) {
	line-height: 1.381;
	font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-eyebrow-reduced:lang(ar) {
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-eyebrow-reduced:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-eyebrow-reduced:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-eyebrow-reduced:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-eyebrow-reduced:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
@media only screen and (max-width: 734px) {
	.typography-eyebrow-reduced {
		font-size: 19px;
		line-height: 1.21053;
		font-weight: 600;
		letter-spacing: 0.012em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-reduced:lang(ar) {
		line-height: 1.36844;
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-reduced:lang(ja) {
		line-height: 1.26316;
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-eyebrow-reduced:lang(ko) {
		line-height: 1.31579;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-reduced:lang(th) {
		line-height: 1.36844;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-reduced:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-reduced:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-reduced:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-eyebrow-reduced:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
.typography-intro-elevated {
	font-size: 24px;
	line-height: 1.33341;
	font-weight: 400;
	letter-spacing: 0.009em;
	font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
}
.typography-intro-elevated:lang(ar) {
	line-height: 1.5;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-intro-elevated:lang(ja) {
	line-height: 1.41667;
	font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-intro-elevated:lang(ko) {
	line-height: 1.45841;
	font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-intro-elevated:lang(th) {
	line-height: 1.375;
	font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-intro-elevated:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-intro-elevated:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-intro-elevated:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-intro-elevated:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
@media only screen and (max-width: 1068px) {
	.typography-intro-elevated {
		font-size: 21px;
		line-height: 1.381;
		font-weight: 400;
		letter-spacing: 0.011em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-intro-elevated:lang(ar) {
		line-height: 1.52381;
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-intro-elevated:lang(ja) {
		line-height: 1.4286;
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-intro-elevated:lang(ko) {
		line-height: 1.52381;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-intro-elevated:lang(th) {
		line-height: 1.381;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-intro-elevated:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-intro-elevated:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-intro-elevated:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-intro-elevated:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
.typography-intro {
	font-size: 21px;
	line-height: 1.381;
	font-weight: 400;
	letter-spacing: 0.011em;
	font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
}
.typography-intro:lang(ar) {
	line-height: 1.52381;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-intro:lang(ja) {
	line-height: 1.4286;
	font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-intro:lang(ko) {
	line-height: 1.52381;
	font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-intro:lang(th) {
	line-height: 1.381;
	font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-intro:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-intro:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-intro:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-intro:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
@media only screen and (max-width: 734px) {
	.typography-intro {
		font-size: 19px;
		line-height: 1.4211;
		font-weight: 400;
		letter-spacing: 0.012em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-intro:lang(ar) {
		line-height: 1.57895;
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-intro:lang(ja) {
		line-height: 1.47376;
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-intro:lang(ko) {
		line-height: 1.52632;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-intro:lang(th) {
		line-height: 1.36844;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-intro:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-intro:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-intro:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-intro:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
.typography-quote {
	font-size: 40px;
	line-height: 1.2;
	font-weight: 400;
	letter-spacing: 0em;
	font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
}
.typography-quote:lang(ar) {
	line-height: 1.3;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-quote:lang(ja) {
	line-height: 1.275;
	font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-quote:lang(ko) {
	line-height: 1.325;
	font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-quote:lang(th) {
	line-height: 1.35;
	font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-quote:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-quote:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-quote:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-quote:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
@media only screen and (max-width: 1068px) {
	.typography-quote {
		font-size: 32px;
		line-height: 1.25;
		font-weight: 400;
		letter-spacing: 0.004em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-quote:lang(ar) {
		line-height: 1.40625;
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-quote:lang(ja) {
		line-height: 1.34375;
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-quote:lang(ko) {
		line-height: 1.375;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-quote:lang(th) {
		line-height: 1.375;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-quote:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-quote:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-quote:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-quote:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
@media only screen and (max-width: 734px) {
	.typography-quote {
		font-size: 28px;
		line-height: 1.28583;
		font-weight: 400;
		letter-spacing: 0.007em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-quote:lang(ko) {
		line-height: 1.39286;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-quote:lang(th) {
		line-height: 1.39286;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-quote:lang(ar) {
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-quote:lang(ja) {
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-quote:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-quote:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-quote:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-quote:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
.typography-quote-reduced {
	font-size: 32px;
	line-height: 1.25;
	font-weight: 400;
	letter-spacing: 0.004em;
	font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
}
.typography-quote-reduced:lang(ar) {
	line-height: 1.40625;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-quote-reduced:lang(ja) {
	line-height: 1.34375;
	font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-quote-reduced:lang(ko) {
	line-height: 1.375;
	font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-quote-reduced:lang(th) {
	line-height: 1.375;
	font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-quote-reduced:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-quote-reduced:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-quote-reduced:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-quote-reduced:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
@media only screen and (max-width: 1068px) {
	.typography-quote-reduced {
		font-size: 28px;
		line-height: 1.28583;
		font-weight: 400;
		letter-spacing: 0.007em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-quote-reduced:lang(ko) {
		line-height: 1.39286;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-quote-reduced:lang(th) {
		line-height: 1.39286;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-quote-reduced:lang(ar) {
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-quote-reduced:lang(ja) {
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-quote-reduced:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-quote-reduced:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-quote-reduced:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-quote-reduced:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
@media only screen and (max-width: 734px) {
	.typography-quote-reduced {
		font-size: 24px;
		line-height: 1.33341;
		font-weight: 400;
		letter-spacing: 0.009em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-quote-reduced:lang(ar) {
		line-height: 1.5;
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-quote-reduced:lang(ja) {
		line-height: 1.41667;
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-quote-reduced:lang(ko) {
		line-height: 1.45841;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-quote-reduced:lang(th) {
		line-height: 1.375;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-quote-reduced:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-quote-reduced:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-quote-reduced:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-quote-reduced:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
.typography-callout {
	font-size: 32px;
	/* line-height: 1.125; */
	line-height: 1.25;
	font-weight: 600;
	letter-spacing: 0.004em;
	font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
}
.typography-callout:lang(ar) {
	line-height: 1.34375;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-callout:lang(ja) {
	line-height: 1.21875;
	font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-callout:lang(ko) {
	line-height: 1.21875;
	font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-callout:lang(th) {
	line-height: 1.375;
	font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-callout:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-callout:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-callout:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-callout:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
@media only screen and (max-width: 1068px) {
	.typography-callout {
		font-size: 28px;
		/* line-height: 1.14286; */
		line-height: 1.28583;
		font-weight: 600;
		letter-spacing: 0.007em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-callout:lang(ko) {
		line-height: 1.25;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-callout:lang(th) {
		line-height: 1.39286;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-callout:lang(ar) {
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-callout:lang(ja) {
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-callout:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-callout:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-callout:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-callout:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
@media only screen and (max-width: 734px) {
	.typography-callout {
		font-size: 24px;
		/* line-height: 1.16667; */
		line-height: 1.33341;
		font-weight: 600;
		letter-spacing: 0.009em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-callout:lang(ar) {
		line-height: 1.33341;
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-callout:lang(ja) {
		line-height: 1.25;
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-callout:lang(ko) {
		line-height: 1.29167;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-callout:lang(th) {
		line-height: 1.375;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-callout:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-callout:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-callout:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-callout:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
.typography-manifesto {
	font-size: 32px;
	line-height: 1.25;
	font-weight: 600;
	letter-spacing: 0.004em;
	font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
}
.typography-manifesto:lang(ar) {
	line-height: 1.40625;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-manifesto:lang(ja) {
	line-height: 1.34375;
	font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-manifesto:lang(ko) {
	line-height: 1.375;
	font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-manifesto:lang(th) {
	line-height: 1.375;
	font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-manifesto:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-manifesto:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-manifesto:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-manifesto:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
@media only screen and (max-width: 1068px) {
	.typography-manifesto {
		font-size: 28px;
		line-height: 1.28583;
		font-weight: 600;
		letter-spacing: 0.007em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-manifesto:lang(ko) {
		line-height: 1.39286;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-manifesto:lang(th) {
		line-height: 1.39286;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-manifesto:lang(ar) {
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-manifesto:lang(ja) {
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-manifesto:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-manifesto:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-manifesto:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-manifesto:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
@media only screen and (max-width: 734px) {
	.typography-manifesto {
		font-size: 24px;
		line-height: 1.33341;
		font-weight: 600;
		letter-spacing: 0.009em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-manifesto:lang(ar) {
		line-height: 1.5;
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-manifesto:lang(ja) {
		line-height: 1.41667;
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-manifesto:lang(ko) {
		line-height: 1.45841;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-manifesto:lang(th) {
		line-height: 1.375;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-manifesto:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-manifesto:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-manifesto:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-manifesto:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
.typography-label {
	font-size: 24px;
	line-height: 1.16667;
	font-weight: 600;
	letter-spacing: 0.009em;
	font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
}
.typography-label:lang(ar) {
	line-height: 1.33341;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-label:lang(ja) {
	line-height: 1.25;
	font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-label:lang(ko) {
	line-height: 1.29167;
	font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-label:lang(th) {
	line-height: 1.375;
	font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-label:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-label:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-label:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-label:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
@media only screen and (max-width: 1068px) {
	.typography-label {
		font-size: 21px;
		line-height: 1.19048;
		font-weight: 600;
		letter-spacing: 0.011em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.typography-label:lang(ja) {
		line-height: 1.2381;
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.typography-label:lang(ko) {
		line-height: 1.2858;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-label:lang(th) {
		line-height: 1.381;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-label:lang(ar) {
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-label:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-label:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-label:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.typography-label:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
.typography-tout {
	font-size: 19px;
	line-height: 1.21053;
	font-weight: 600;
	letter-spacing: 0.012em;
	font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
}
.typography-tout:lang(ar) {
	line-height: 1.36844;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-tout:lang(ja) {
	line-height: 1.26316;
	font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-tout:lang(ko) {
	line-height: 1.31579;
	font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-tout:lang(th) {
	line-height: 1.36844;
	font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-tout:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-tout:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-tout:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-tout:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-body {
	font-size: 17px;
	line-height: 1.47059;
	font-weight: 400;
	letter-spacing: -0.022em;
	font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
}
.typography-body:lang(ar) {
	line-height: 1.58824;
	letter-spacing: 0em;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Text", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-body:lang(ja) {
	letter-spacing: 0em;
	font-family: "SF Pro JP", "SF Pro Text", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-body:lang(ko) {
	line-height: 1.58824;
	letter-spacing: 0em;
	font-family: "SF Pro KR", "SF Pro Text", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-body:lang(zh) {
	letter-spacing: 0em;
}
.typography-body:lang(th) {
	line-height: 1.35296;
	letter-spacing: 0em;
	font-family: "SF Pro TH", "SF Pro Text", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-body:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Text", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-body:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Text", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-body:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Text", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-body:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Text", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-body-tight {
	font-size: 17px;
	line-height: 1.23536;
	font-weight: 400;
	letter-spacing: -0.022em;
	font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
}
.typography-body-tight:lang(ar) {
	letter-spacing: 0em;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Text", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-body-tight:lang(ja) {
	letter-spacing: 0em;
	font-family: "SF Pro JP", "SF Pro Text", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-body-tight:lang(ko) {
	line-height: 1.35296;
	letter-spacing: 0em;
	font-family: "SF Pro KR", "SF Pro Text", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-body-tight:lang(zh) {
	letter-spacing: 0em;
}
.typography-body-tight:lang(th) {
	line-height: 1.35296;
	letter-spacing: 0em;
	font-family: "SF Pro TH", "SF Pro Text", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-body-tight:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Text", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-body-tight:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Text", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-body-tight:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Text", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-body-tight:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Text", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-body-reduced {
	font-size: 14px;
	line-height: 1.42859;
	font-weight: 400;
	letter-spacing: -0.016em;
	font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
}
.typography-body-reduced:lang(ar) {
	line-height: 1.57143;
	letter-spacing: 0em;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Text", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-body-reduced:lang(ja) {
	letter-spacing: 0em;
	font-family: "SF Pro JP", "SF Pro Text", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-body-reduced:lang(ko) {
	line-height: 1.57143;
	letter-spacing: 0em;
	font-family: "SF Pro KR", "SF Pro Text", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-body-reduced:lang(zh) {
	letter-spacing: 0em;
}
.typography-body-reduced:lang(th) {
	line-height: 1.35718;
	letter-spacing: 0em;
	font-family: "SF Pro TH", "SF Pro Text", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-body-reduced:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Text", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-body-reduced:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Text", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-body-reduced:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Text", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-body-reduced:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Text", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-body-reduced-tight {
	font-size: 14px;
	line-height: 1.28577;
	font-weight: 400;
	letter-spacing: -0.016em;
	font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
}
.typography-body-reduced-tight:lang(ar) {
	letter-spacing: 0em;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Text", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-body-reduced-tight:lang(ja) {
	line-height: 1.35718;
	letter-spacing: 0em;
	font-family: "SF Pro JP", "SF Pro Text", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-body-reduced-tight:lang(ko) {
	line-height: 1.42859;
	letter-spacing: 0em;
	font-family: "SF Pro KR", "SF Pro Text", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-body-reduced-tight:lang(zh) {
	letter-spacing: 0em;
}
.typography-body-reduced-tight:lang(th) {
	line-height: 1.35718;
	letter-spacing: 0em;
	font-family: "SF Pro TH", "SF Pro Text", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-body-reduced-tight:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Text", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-body-reduced-tight:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Text", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-body-reduced-tight:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Text", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-body-reduced-tight:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Text", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-caption {
	font-size: 12px;
	line-height: 1.33337;
	font-weight: 400;
	letter-spacing: -0.01em;
	font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
}
.typography-caption:lang(ar) {
	line-height: 1.66667;
	letter-spacing: 0em;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Text", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-caption:lang(ja) {
	line-height: 1.41667;
	letter-spacing: 0em;
	font-family: "SF Pro JP", "SF Pro Text", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-caption:lang(ko) {
	line-height: 1.41667;
	letter-spacing: 0em;
	font-family: "SF Pro KR", "SF Pro Text", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-caption:lang(zh) {
	letter-spacing: 0em;
}
.typography-caption:lang(th) {
	line-height: 1.33337;
	letter-spacing: 0em;
	font-family: "SF Pro TH", "SF Pro Text", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-caption:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Text", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-caption:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Text", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-caption:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Text", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-caption:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Text", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-sosumi {
	font-size: 12px;
	line-height: 1.33337;
	font-weight: 400;
	letter-spacing: -0.01em;
	font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica",
		"Arial", sans-serif;
}
.typography-sosumi:lang(ar) {
	line-height: 1.66667;
	letter-spacing: 0em;
	font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Text", "SF Pro Icons",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-sosumi:lang(ja) {
	line-height: 1.41667;
	letter-spacing: 0em;
	font-family: "SF Pro JP", "SF Pro Text", "SF Pro Icons",
		"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo",
		"ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-sosumi:lang(ko) {
	line-height: 1.41667;
	letter-spacing: 0em;
	font-family: "SF Pro KR", "SF Pro Text", "SF Pro Icons", "Apple Gothic",
		"HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-sosumi:lang(zh) {
	letter-spacing: 0em;
}
.typography-sosumi:lang(th) {
	line-height: 1.33337;
	letter-spacing: 0em;
	font-family: "SF Pro TH", "SF Pro Text", "SF Pro Icons", "Helvetica Neue",
		"Helvetica", "Arial", sans-serif;
}
.typography-sosumi:lang(zh-CN) {
	font-family: "SF Pro SC", "SF Pro Text", "SF Pro Icons", "PingFang SC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-sosumi:lang(zh-HK) {
	font-family: "SF Pro HK", "SF Pro Text", "SF Pro Icons", "PingFang HK",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-sosumi:lang(zh-MO) {
	font-family: "SF Pro HK", "SF Pro TC", "SF Pro Text", "SF Pro Icons",
		"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
.typography-sosumi:lang(zh-TW) {
	font-family: "SF Pro TC", "SF Pro Text", "SF Pro Icons", "PingFang TC",
		"Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
[class*="typography-eyebrow"] {
	display: block;
	margin-bottom: 0.4em;
}
[class*="typography-eyebrow"] + * {
	margin-top: 0;
}
.typography-headline + .typography-intro {
	margin-top: 1.2em;
}
.typography-headline-super + .typography-intro-elevated {
	margin-top: 1.6em;
}
.typography-headline-elevated + .typography-intro-elevated {
	margin-top: 1.4em;
}
.typography-headline-reduced + p, .typography-headline-reduced + ul, .typography-headline-reduced + .typography-body {
	margin-top: 1em;
}
.hero-headline {
	padding: 64px 0 76px;
}
@media only screen and (max-width: 1068px) {
	.hero-headline {
		padding: 70px 0 65px;
	}
}
@media only screen and (max-width: 734px) {
	.hero-headline {
		padding: 72px 0 50px;
	}
}
@media only screen and (max-width: 734px) {
	.hero-headline-section {
		width: 90vw;
	}
}
.hero-lead {
	padding: 100px 0 40px;
}
@media only screen and (max-width: 1068px) {
	.hero-lead {
		padding: 80px 0 32px;
	}
}
@media only screen and (max-width: 734px) {
	.hero-lead {
		padding: 60px 0 24px;
		text-align: left;
	}
}
@media only screen and (max-width: 1068px) {
	.hero-lead-content {
		max-width: 690px;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
}
.hero-key {
	max-width: 1140px;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}
.hero-key-picture {
	left: 50%;
	margin-left: -596px;
	position: relative;
	width: 1192px;
	height: 584px;
	background-size: 1192px 584px;
	background-repeat: no-repeat;
	background-image: url("/sg/education/k12/digital-learning-in-singapore/images/hero_large.jpg");
	/* border-radius: 20px; */
}
/* @media only screen and (max-width: 1120px) {
	.hero-key-picture {
		width: 948px;
		height: 526px;
	}
} */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
	.hero-key-picture {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/hero_large_2x.jpg");
	}
}

@media only screen and (max-width: 1068px) {
	.hero-key-picture {
		left: 50%;
		margin-left: -407px;
		position: relative;
		width: 814px;
		height: 627px;
		background-size: 814px 627px;
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/hero_medium.jpg");
	}
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
	.hero-key-picture {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/hero_medium_2x.jpg");
	}
}
@media only screen and (max-width: 734px) {
	.hero-key-picture {
		left: 50%;
		margin-left: -243px;
		position: relative;
		width: 486px;
		height: 318px;
		background-size: 486px 318px;
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/hero_small.jpg");
		/* border-radius: 10px; */
	}
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 734px) and (min-resolution: 1.5dppx), only screen and (max-width: 734px) and (min-resolution: 144dpi) {
	.hero-key-picture {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/hero_small_2x.jpg");
	}
}
.hero-play-video {
	font-weight: bold;
	width: 90vw;
}
.voice {
	background: #bbd5ea;
}
.voice.section {
	padding: 0 0 100px;
}
@media only screen and (max-width: 1068px) {
	.voice.section {
		padding: 0 0 80px;
	}
}
@media only screen and (max-width: 734px) {
	.voice.section {
		padding: 0 0 45px;
	}
}
.voice .gallery-container, .teaching-code .gallery-container {
	padding-left: calc(50vw - (var(--tile-width, 884px) / 2));
	padding-right: calc(50vw - (var(--tile-width, 884px) / 2));
	padding-top: 120px;
}
@media only screen and (max-width: 1068px) {
	.voice .gallery-container, .teaching-code .gallery-container {
		padding-left: calc(50vw - (var(--tile-width, 884px) / 2));
		padding-right: calc(50vw - (var(--tile-width, 884px) / 2));
		padding-top: 100px;
	}
}
@media only screen and (max-width: 734px) {
	.voice .gallery-container, .teaching-code .gallery-container {
		padding-left: calc(50vw - (var(--tile-width, 884px) / 2));
		padding-right: calc(50vw - (var(--tile-width, 884px) / 2));
		padding-top: 60px;
	}
}
.voice-tile, .teaching-code-tile {
	background-color: #fff;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	max-width: 884px;
	width: 90vw;
	border-radius: 20px;
}
@media only screen and (max-width: 1068px) {
	.voice-tile, .teaching-code-tile {
		min-width: 650px;
		max-width: 762px;
		width: 80vw;
		border-radius: 20px;
	}
}
@media only screen and (max-width: 734px) {
	.voice-tile, .teaching-code-tile {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column wrap;
		flex-flow: column wrap;
		min-width: auto;
		max-width: 1148px;
		width: 80vw;
		border-radius: 20px;
	}
}
.voice-tile-content {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	grid-template-columns: 100%;
	/* grid-template-rows: 1fr auto; */
	font-weight: bold;
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
	width: 50%;
	padding: 40px;
	display: grid;
}
@media only screen and (max-width: 1068px) {
	.voice-tile-content {
		padding: 30px;
	}
}
@media only screen and (max-width: 734px) {
	.voice-tile-content {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		width: 100%;
		padding: 30px;
		/* -webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1; */
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column;
		flex-flow: column;
	}
}
.voice-tile-content-lead {
	-ms-flex-item-align: center;
	align-self: center;
}
@media only screen and (max-width: 734px) {
	.voice-tile-content-lead {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column;
		flex-flow: column;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		/* justify-content: space-between; */
	}
}
.voice-tile-content-lead h2 {
	margin-bottom: 0;
	padding-top: 30px;
}
@media only screen and (max-width: 734px) {
	.voice-tile-content-lead h2 {
		padding-top: 0;
	}
}
.voice-tile-content-who {
	margin-top: 0;
	line-height: 1.2;
	font-weight: 500;
	padding-top: 1.5em;
}
.voice-tile-content-who .org {
	color: #86868b;
}
@media only screen and (max-width: 1068px) {
	.voice-tile-content-who {
		padding-top: 1.1em;
	}
}
@media only screen and (max-width: 734px) {
	.voice-tile-content-who {
		padding-top: 1.1em;
	}
}
.voice-tile-content-more {
	margin-bottom: 0;
}
@media only screen and (max-width: 734px) {
	.voice-tile-content-more {
		padding-top: 20px;
		margin-top: auto;
	}
}
.voice-tile-image {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
	width: 50%;
}
@media only screen and (max-width: 734px) {
	.voice-tile-image {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		width: 100%;
	}
}
.voice-picture[data-picture="leaders"] {
	background-repeat: no-repeat;
	background-image: url("/sg/education/k12/digital-learning-in-singapore/images/guides_leaders_large.png");
	background-size: cover;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
	.voice-picture[data-picture="leaders"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/guides_leaders_large_2x.png");
	}
}
.voice-picture[data-picture="leaders"]::after {
	content: "";
	display: block;
	padding-bottom: 117.8733%;
}
@media only screen and (max-width: 1068px) {
	.voice-picture[data-picture="leaders"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/guides_leaders_medium.png");
		background-size: cover;
	}
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
	.voice-picture[data-picture="leaders"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/guides_leaders_medium_2x.png");
	}
}
@media only screen and (max-width: 1068px) {
	.voice-picture[data-picture="leaders"]::after {
		content: "";
		display: block;
		padding-bottom: 127.5853%;
	}
}
@media only screen and (max-width: 734px) {
	.voice-picture[data-picture="leaders"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/guides_leaders_small.png");
		background-size: cover;
	}
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 734px) and (min-resolution: 1.5dppx), only screen and (max-width: 734px) and (min-resolution: 144dpi) {
	.voice-picture[data-picture="leaders"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/guides_leaders_small_2x.png");
	}
}
@media only screen and (max-width: 734px) {
	.voice-picture[data-picture="leaders"]::after {
		content: "";
		display: block;
		padding-bottom: 78.04878%;
	}
}
.voice-picture[data-picture="teachers"] {
	background-repeat: no-repeat;
	background-image: url("/sg/education/k12/digital-learning-in-singapore/images/guides_teachers_large.png");
	background-size: cover;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
	.voice-picture[data-picture="teachers"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/guides_teachers_large_2x.png");
	}
}
.voice-picture[data-picture="teachers"]::after {
	content: "";
	display: block;
	padding-bottom: 117.8733%;
}
@media only screen and (max-width: 1068px) {
	.voice-picture[data-picture="teachers"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/guides_teachers_medium.png");
		background-size: cover;
	}
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
	.voice-picture[data-picture="teachers"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/guides_teachers_medium_2x.png");
	}
}
@media only screen and (max-width: 1068px) {
	.voice-picture[data-picture="teachers"]::after {
		content: "";
		display: block;
		padding-bottom: 127.5853%;
	}
}
@media only screen and (max-width: 734px) {
	.voice-picture[data-picture="teachers"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/guides_teachers_small.png");
		background-size: cover;
	}
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 734px) and (min-resolution: 1.5dppx), only screen and (max-width: 734px) and (min-resolution: 144dpi) {
	.voice-picture[data-picture="teachers"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/guides_teachers_small_2x.png");
	}
}
@media only screen and (max-width: 734px) {
	.voice-picture[data-picture="teachers"]::after {
		content: "";
		display: block;
		padding-bottom: 78.04878%;
	}
}
.voice-picture[data-picture="parents"] {
	background-repeat: no-repeat;
	background-image: url("/sg/education/k12/digital-learning-in-singapore/images/guides_parents_large.png");
	background-size: cover;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
	.voice-picture[data-picture="parents"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/guides_parents_large_2x.png");
	}
}
.voice-picture[data-picture="parents"]::after {
	content: "";
	display: block;
	padding-bottom: 117.8733%;
}
@media only screen and (max-width: 1068px) {
	.voice-picture[data-picture="parents"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/guides_parents_medium.png");
		background-size: cover;
	}
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
	.voice-picture[data-picture="parents"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/guides_parents_medium_2x.png");
	}
}
@media only screen and (max-width: 1068px) {
	.voice-picture[data-picture="parents"]::after {
		content: "";
		display: block;
		padding-bottom: 127.5853%;
	}
}
@media only screen and (max-width: 734px) {
	.voice-picture[data-picture="parents"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/guides_parents_small.png");
		background-size: cover;
	}
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 734px) and (min-resolution: 1.5dppx), only screen and (max-width: 734px) and (min-resolution: 144dpi) {
	.voice-picture[data-picture="parents"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/guides_parents_small_2x.png");
	}
}
@media only screen and (max-width: 734px) {
	.voice-picture[data-picture="parents"]::after {
		content: "";
		display: block;
		padding-bottom: 78.04878%;
	}
}

.guide {
	background: #f7f7ff;
}
.guide-headline-strong {
	color: #4a5968;
}
.guide-key {
	max-width: 1613px;
	width: 100%;
	margin: 0 auto;
	margin-bottom: 80px;
}
@media only screen and (max-width: 734px) {
	.guide-key {
		padding: 20px 0;
		margin-bottom: 40px;
	}
}
.guide-key-picture {
	position: relative;
	left: 50%;
	margin-left: -532px;
	width: 1064px;
	height: 287px;
	background-size: 1064px 287px;
	background-repeat: no-repeat;
	background-image: url("/sg/education/k12/digital-learning-in-singapore/images/everyone_can_create_hero_large.png");
}

@media only screen and (max-width: 1068px) {
	.guide-key-picture {
		left: 50%;
		margin-left: -532px;
	}
}
@media only screen and (max-width: 734px) {
	.guide-key-picture {
		left: 50%;
		margin-left: -261.5px;
	}
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
	.guide-key-picture {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/everyone_can_create_hero_large_2x.png");
	}
}
@media only screen and (max-width: 1068px) {
	.guide-key-picture {
		width: 1064px;
		height: 287px;
		background-size: 1064px 287px;
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/everyone_can_create_hero_medium.png");
	}
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
	.guide-key-picture {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/everyone_can_create_hero_medium_2x.png");
	}
}
@media only screen and (max-width: 734px) {
	.guide-key-picture {
		width: 523px;
		height: 394px;
		background-size: 523px 394px;
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/everyone_can_create_hero_small.png");
	}
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 734px) and (min-resolution: 1.5dppx), only screen and (max-width: 734px) and (min-resolution: 144dpi) {
	.guide-key-picture {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/everyone_can_create_hero_small_2x.png");
	}
}
.guide-select-tab {
	display: none;
}
.guide-select-tab > * {
	pointer-events: none;
}
@media only screen and (max-width: 734px) {
	.guide-select-tab {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-evenly;
		max-width: 200px;
		width: 200px;
		height: 60px;
		margin: 0 auto;
		background: #4a5968;
		border-radius: 36px;
		color: #fff;
		position: relative;
		padding: 0 12px 0 15px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	.guide-select-tab .icon.icon-shevron-down.icon-after::after {
		padding-left: 0;
	}
}
.guide-select-tab-content {
	-webkit-transform: translateY(1px);
	transform: translateY(1px);
}
.guide-select-tab-icon {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transform: translateY(1px);
	transform: translateY(1px);
}
.guide-tab-nav {
	text-align: center;
	position: relative;
	z-index: 1;
}
.guide-tablist {
	list-style: none;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	margin: 0 auto;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
	position: relative;
	z-index: 1;
	border-radius: 40px;
}
@media only screen and (max-width: 1068px) {
	.guide-tablist {
		border-radius: 40px;
	}
}
@media only screen and (max-width: 734px) {
	.guide-tablist {
		border-radius: 15px;
	}
}
@media only screen and (max-width: 734px) {
	.guide-tablist {
		display: block;
		max-width: 175px;
		width: 100%;
		margin: 0 auto;
		position: absolute;
		z-index: 5;
		left: 0;
		right: 0;
		-webkit-transition: opacity 0.3s ease;
		transition: opacity 0.3s ease;
		-webkit-box-shadow: 6px 6px 16px 0px rgba(0, 0, 0, 0.2);
		box-shadow: 6px 6px 16px 0px rgba(0, 0, 0, 0.2);
	}
	.guide-tablist[data-small-hidden="true"] {
		opacity: 0;
		pointer-events: none;
	}
}
.guide-tablist::after {
	content: "";
	display: block;
	height: 100%;
	background: #4a5968;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	-webkit-transition: width 0.3s ease, -webkit-transform 0.3s ease;
	transition: width 0.3s ease, -webkit-transform 0.3s ease;
	transition: transform 0.3s ease, width 0.3s ease;
	transition: transform 0.3s ease, width 0.3s ease,
		-webkit-transform 0.3s ease;
	border-radius: 40px;
}
@media only screen and (max-width: 734px) {
	.guide-tablist::after {
		-webkit-transition: none;
		transition: none;
		background: none;
	}
}
@media only screen and (max-width: 1068px) {
	.guide-tablist::after {
		border-radius: 40px;
	}
}
@media only screen and (max-width: 734px) {
	.guide-tablist::after {
		/* border-radius: 0; */
	}
}
.guide-tablist[data-tab-current="1"]::after {
	width: 200px;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
@media only screen and (max-width: 1068px) {
	.guide-tablist[data-tab-current="1"]::after {
		width: 200px;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
@media only screen and (max-width: 734px) {
	.guide-tablist[data-tab-current="1"]::after {
		width: 100%;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
.guide-tablist[data-tab-current="2"]::after {
	width: 200px;
	-webkit-transform: translateX(200px);
	transform: translateX(200px);
}
@media only screen and (max-width: 1068px) {
	.guide-tablist[data-tab-current="2"]::after {
		width: 200px;
		-webkit-transform: translateX(200px);
		transform: translateX(200px);
	}
}
@media only screen and (max-width: 734px) {
	.guide-tablist[data-tab-current="2"]::after {
		width: 100%;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
.guide-tablist[data-tab-current="3"]::after {
	width: 200px;
	-webkit-transform: translateX(400px);
	transform: translateX(400px);
}
@media only screen and (max-width: 1068px) {
	.guide-tablist[data-tab-current="3"]::after {
		width: 200px;
		-webkit-transform: translateX(400px);
		transform: translateX(400px);
	}
}
@media only screen and (max-width: 734px) {
	.guide-tablist[data-tab-current="3"]::after {
		width: 100%;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
.guide-tablist[data-tab-current="4"]::after {
	width: 200px;
	-webkit-transform: translateX(600px);
	transform: translateX(600px);
}
@media only screen and (max-width: 1068px) {
	.guide-tablist[data-tab-current="4"]::after {
		width: 200px;
		-webkit-transform: translateX(600px);
		transform: translateX(600px);
	}
}
@media only screen and (max-width: 734px) {
	.guide-tablist[data-tab-current="4"]::after {
		width: 100%;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
.guide-tablist li {
	position: relative;
	z-index: 2;
	padding: 0;
}
@media only screen and (max-width: 1068px) {
	.guide-tablist li {
		padding: 0;
	}
}
@media only screen and (max-width: 734px) {
	.guide-tablist li {
		padding: 0;
	}
}
@media only screen and (max-width: 734px) {
	.guide-tablist li {
		border-bottom: 1px solid #d2d2d7;
	}
	.guide-tablist li:last-child {
		border-bottom: none;
	}
}
.guide-tablist-button {
	width: 200px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
	-webkit-transition: color 0.1s ease;
	transition: color 0.1s ease;
	padding: 18px 25px 17px;
}
@media only screen and (max-width: 1068px) {
	.guide-tablist-button {
		padding: 18px 25px 17px;
	}
}
@media only screen and (max-width: 734px) {
	.guide-tablist-button {
		padding: 0;
	}
}
@media only screen and (max-width: 734px) {
	.guide-tablist-button {
		padding: 10px;
		-webkit-transition: none;
		transition: none;
		width: 100%;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		text-align: left;
	}
}
.guide-tablist-button[aria-selected="true"] {
	color: #fff;
	-webkit-transition: color 0.1s ease 0.06s;
	transition: color 0.1s ease 0.06s;
}
@media only screen and (max-width: 734px) {
	.guide-tablist-button[aria-selected="true"] {
		-webkit-transition: none;
		transition: none;
		color: inherit;
	}
	.guide-tablist-button[aria-selected="true"] .guide-tablist-checked {
		visibility: visible;
		-webkit-transform: translateX(-3px);
		transform: translateX(-3px);
	}
}
.guide-tablist-checked {
	pointer-events: none;
	display: none;
}
@media only screen and (max-width: 734px) {
	.guide-tablist-checked {
		display: inline-block;
	}
}
@media only screen and (max-width: 734px) {
	.guide-tablist-checked {
		visibility: hidden;
	}
}
.guide-tablist-item {
	pointer-events: none;
}
@media only screen and (max-width: 734px) {
	.guide-tablist-item {
		margin-left: 4px;
		display: inline-block;
		-webkit-transform: translateY(2px);
		transform: translateY(2px);
	}
}
.guide-tab-container {
	position: relative;
}
.guide-tabpanel[aria-hidden="true"] {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	width: 100%;
	-webkit-transition: opacity 0.3s linear;
	transition: opacity 0.3s linear;
}
.guide-tabpanel[aria-hidden="false"] {
	position: relative;
	opacity: 1;
	-webkit-transition: opacity 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.3s;
	transition: opacity 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.3s;
}
.guide-tabpanel .gallery-container {
	padding-top: 40px;
}
@media only screen and (max-width: 1068px) {
	.guide-tabpanel .gallery-container {
		padding-top: 40px;
	}
}
@media only screen and (max-width: 734px) {
	.guide-tabpanel .gallery-container {
		padding-top: 30px;
	}
}
.guide-tile {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column wrap;
	flex-flow: column wrap;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background: #fff;
}
@media only screen and (max-width: 734px) {
	.guide-tile {
		width: 287px;
	}
}
.guide-tile-picture {
	overflow: hidden;
	border-radius: 15px 15px 0 0;
	width: 424px;
	height: 303px;
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture {
		border-radius: 15px 15px 0 0;
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture {
		border-radius: 10px 10px 0 0;
	}
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture {
		width: 363px;
		height: 259px;
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture {
		width: 100%;
		height: auto;
	}
}
.guide-tile-picture[data-bg="ecc-student-drawing"] {
	background-repeat: no-repeat;
	background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_student_drawing_large.png");
	background-position: bottom;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="ecc-student-drawing"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_student_drawing_large_2x.png");
		background-size: 50%;
	}
}
.guide-tile-picture[data-bg="ecc-student-drawing"]::after {
	content: "";
	display: block;
	padding-bottom: 71.46226%;
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture[data-bg="ecc-student-drawing"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_student_drawing_medium.png");
	}
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="ecc-student-drawing"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_student_drawing_medium_2x.png");
	}
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture[data-bg="ecc-student-drawing"]::after {
		content: "";
		display: block;
		padding-bottom: 71.34986%;
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture[data-bg="ecc-student-drawing"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_student_drawing_small.png");
	}
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 734px) and (min-resolution: 1.5dppx), only screen and (max-width: 734px) and (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="ecc-student-drawing"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_student_drawing_small_2x.png");
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture[data-bg="ecc-student-drawing"]::after {
		content: "";
		display: block;
		padding-bottom: 85.42857%;
	}
}
.guide-tile-picture[data-bg="ecc-student-photo"] {
	background-repeat: no-repeat;
	background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_student_photo_large.png");
	background-position: bottom;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="ecc-student-photo"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_student_photo_large_2x.png");
		background-size: 50%;
	}
}
.guide-tile-picture[data-bg="ecc-student-photo"]::after {
	content: "";
	display: block;
	padding-bottom: 71.46226%;
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture[data-bg="ecc-student-photo"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_student_photo_medium.png");
	}
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="ecc-student-photo"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_student_photo_medium_2x.png");
	}
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture[data-bg="ecc-student-photo"]::after {
		content: "";
		display: block;
		padding-bottom: 71.34986%;
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture[data-bg="ecc-student-photo"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_student_photo_small.png");
	}
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 734px) and (min-resolution: 1.5dppx), only screen and (max-width: 734px) and (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="ecc-student-photo"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_student_photo_small_2x.png");
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture[data-bg="ecc-student-photo"]::after {
		content: "";
		display: block;
		padding-bottom: 85.42857%;
	}
}
.guide-tile-picture[data-bg="ecc-student-video"] {
	background-repeat: no-repeat;
	background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_student_video_large.png");
	background-position: bottom;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="ecc-student-video"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_student_video_large_2x.png");
		background-size: 50%;
	}
}
.guide-tile-picture[data-bg="ecc-student-video"]::after {
	content: "";
	display: block;
	padding-bottom: 71.46226%;
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture[data-bg="ecc-student-video"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_student_video_medium.png");
	}
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="ecc-student-video"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_student_video_medium_2x.png");
	}
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture[data-bg="ecc-student-video"]::after {
		content: "";
		display: block;
		padding-bottom: 71.34986%;
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture[data-bg="ecc-student-video"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_student_video_small.png");
	}
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 734px) and (min-resolution: 1.5dppx), only screen and (max-width: 734px) and (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="ecc-student-video"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_student_video_small_2x.png");
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture[data-bg="ecc-student-video"]::after {
		content: "";
		display: block;
		padding-bottom: 85.42857%;
	}
}
.guide-tile-picture[data-bg="ecc-student-music"] {
	background-repeat: no-repeat;
	background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_student_music_large.png");
	background-position: bottom;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="ecc-student-music"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_student_music_large_2x.png");
		background-size: 50%;
	}
}
.guide-tile-picture[data-bg="ecc-student-music"]::after {
	content: "";
	display: block;
	padding-bottom: 71.46226%;
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture[data-bg="ecc-student-music"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_student_music_medium.png");
	}
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="ecc-student-music"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_student_music_medium_2x.png");
	}
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture[data-bg="ecc-student-music"]::after {
		content: "";
		display: block;
		padding-bottom: 71.34986%;
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture[data-bg="ecc-student-music"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_student_music_small.png");
	}
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 734px) and (min-resolution: 1.5dppx), only screen and (max-width: 734px) and (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="ecc-student-music"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_student_music_small_2x.png");
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture[data-bg="ecc-student-music"]::after {
		content: "";
		display: block;
		padding-bottom: 85.42857%;
	}
}

.guide-tile-picture[data-bg="ecc-more-kids"] {
	background-repeat: no-repeat;
	background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_more_kids_large.png");
	background-position: center;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="ecc-more-kids"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_more_kids_large_2x.png");
		background-size: 60%;
	}
}
.guide-tile-picture[data-bg="ecc-more-kids"]::after {
	content: "";
	display: block;
	padding-bottom: 71.46226%;
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture[data-bg="ecc-more-kids"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_more_kids_medium.png");
	}
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="ecc-more-kids"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_more_kids_medium_2x.png");
	}
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture[data-bg="ecc-more-kids"]::after {
		content: "";
		display: block;
		padding-bottom: 71.34986%;
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture[data-bg="ecc-more-kids"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_more_kids_small.png");
	}
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 734px) and (min-resolution: 1.5dppx), only screen and (max-width: 734px) and (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="ecc-more-kids"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_more_kids_small_2x.png");
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture[data-bg="ecc-more-kids"]::after {
		content: "";
		display: block;
		padding-bottom: 62.42857%;
	}
}
.guide-tile-picture[data-bg="ecc-more-parents"] {
	background-repeat: no-repeat;
	background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_more_parents_large.png");
	background-position: center;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="ecc-more-parents"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_more_parents_large_2x.png");
		background-size: 60%;
	}
}
.guide-tile-picture[data-bg="ecc-more-parents"]::after {
	content: "";
	display: block;
	padding-bottom: 71.46226%;
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture[data-bg="ecc-more-parents"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_more_parents_medium.png");
	}
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="ecc-more-parents"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_more_parents_medium_2x.png");
	}
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture[data-bg="ecc-more-parents"]::after {
		content: "";
		display: block;
		padding-bottom: 71.34986%;
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture[data-bg="ecc-more-parents"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_more_parents_small.png");
	}
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 734px) and (min-resolution: 1.5dppx), only screen and (max-width: 734px) and (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="ecc-more-parents"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_more_parents_small_2x.png");
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture[data-bg="ecc-more-parents"]::after {
		content: "";
		display: block;
		padding-bottom: 62.42857%;
	}
}

.guide-tile-picture[data-bg="tc-student-ecc-puzzles"] {
	background-repeat: no-repeat;
	background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_student_ecc_puzzles_large.png");
	background-position: bottom;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="tc-student-ecc-puzzles"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_student_ecc_puzzles_large_2x.png");
		background-size: 70%;
	}
}
.guide-tile-picture[data-bg="tc-student-ecc-puzzles"]::after {
	content: "";
	display: block;
	padding-bottom: 71.46226%;
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture[data-bg="tc-student-ecc-puzzles"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_student_ecc_puzzles_medium.png");
	}
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="tc-student-ecc-puzzles"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_student_ecc_puzzles_medium_2x.png");
	}
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture[data-bg="tc-student-ecc-puzzles"]::after {
		content: "";
		display: block;
		padding-bottom: 71.34986%;
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture[data-bg="tc-student-ecc-puzzles"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_student_ecc_puzzles_small.png");
	}
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 734px) and (min-resolution: 1.5dppx), only screen and (max-width: 734px) and (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="tc-student-ecc-puzzles"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_student_ecc_puzzles_small_2x.png");
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture[data-bg="tc-student-ecc-puzzles"]::after {
		content: "";
		display: block;
		padding-bottom: 103.42857%;
	}
}
.guide-tile-picture[data-bg="tc-student-ecc-adventures"] {
	background-repeat: no-repeat;
	background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_student_ecc_adventures_large.png");
	background-position: bottom;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="tc-student-ecc-adventures"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_student_ecc_adventures_large_2x.png");
		background-size: 70%;
	}
}
.guide-tile-picture[data-bg="tc-student-ecc-adventures"]::after {
	content: "";
	display: block;
	padding-bottom: 71.46226%;
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture[data-bg="tc-student-ecc-adventures"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_student_ecc_adventures_medium.png");
	}
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="tc-student-ecc-adventures"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_student_ecc_adventures_medium_2x.png");
	}
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture[data-bg="tc-student-ecc-adventures"]::after {
		content: "";
		display: block;
		padding-bottom: 71.34986%;
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture[data-bg="tc-student-ecc-adventures"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_student_ecc_adventures_small.png");
	}
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 734px) and (min-resolution: 1.5dppx), only screen and (max-width: 734px) and (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="tc-student-ecc-adventures"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_student_ecc_adventures_small_2x.png");
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture[data-bg="tc-student-ecc-adventures"]::after {
		content: "";
		display: block;
		padding-bottom: 103.42857%;
	}
}
.guide-tile-picture[data-bg="tc-teacher-qstc"] {
	background-repeat: no-repeat;
	background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_teacher_qstc_large.png");
	background-position: bottom;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="tc-teacher-qstc"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_teacher_qstc_large_2x.png");
		background-size: 85%;
	}
}
.guide-tile-picture[data-bg="tc-teacher-qstc"]::after {
	content: "";
	display: block;
	padding-bottom: 71.46226%;
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture[data-bg="tc-teacher-qstc"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_teacher_qstc_medium.png");
	}
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="tc-teacher-qstc"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_teacher_qstc_medium_2x.png");
	}
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture[data-bg="tc-teacher-qstc"]::after {
		content: "";
		display: block;
		padding-bottom: 71.34986%;
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture[data-bg="tc-teacher-qstc"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_teacher_qstc_small.png");
	}
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 734px) and (min-resolution: 1.5dppx), only screen and (max-width: 734px) and (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="tc-teacher-qstc"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_teacher_qstc_small_2x.png");
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture[data-bg="tc-teacher-qstc"]::after {
		content: "";
		display: block;
		padding-bottom: 103.42857%;
	}
}
.guide-tile-picture[data-bg="tc-teacher-ecc-puzzles"] {
	background-repeat: no-repeat;
	background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_teacher_ecc_puzzles_large.png");
	background-position: bottom;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="tc-teacher-ecc-puzzles"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_teacher_ecc_puzzles_large_2x.png");
		background-size: 70%;
	}
}
.guide-tile-picture[data-bg="tc-teacher-ecc-puzzles"]::after {
	content: "";
	display: block;
	padding-bottom: 71.46226%;
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture[data-bg="tc-teacher-ecc-puzzles"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_teacher_ecc_puzzles_medium.png");
	}
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="tc-teacher-ecc-puzzles"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_teacher_ecc_puzzles_medium_2x.png");
		background-size: 75%;
	}
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture[data-bg="tc-teacher-ecc-puzzles"]::after {
		content: "";
		display: block;
		padding-bottom: 71.34986%;
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture[data-bg="tc-teacher-ecc-puzzles"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_teacher_ecc_puzzles_small.png");
	}
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 734px) and (min-resolution: 1.5dppx), only screen and (max-width: 734px) and (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="tc-teacher-ecc-puzzles"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_teacher_ecc_puzzles_small_2x.png");
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture[data-bg="tc-teacher-ecc-puzzles"]::after {
		content: "";
		display: block;
		padding-bottom: 103.42857%;
	}
}

.guide-tile-picture[data-bg="tc-teacher-ecc-adventures"] {
	background-repeat: no-repeat;
	background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_teacher_ecc_adventures_large.png");
	background-position: bottom;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="tc-teacher-ecc-adventures"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_teacher_ecc_adventures_large_2x.png");
		background-size: 70%;
	}
}
.guide-tile-picture[data-bg="tc-teacher-ecc-adventures"]::after {
	content: "";
	display: block;
	padding-bottom: 71.46226%;
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture[data-bg="tc-teacher-ecc-adventures"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_teacher_ecc_adventures_medium.png");
	}
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="tc-teacher-ecc-adventures"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_teacher_ecc_adventures_medium_2x.png");
		background-size: 75%;
	}
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture[data-bg="tc-teacher-ecc-adventures"]::after {
		content: "";
		display: block;
		padding-bottom: 71.34986%;
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture[data-bg="tc-teacher-ecc-adventures"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_teacher_ecc_adventures_small.png");
	}
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 734px) and (min-resolution: 1.5dppx), only screen and (max-width: 734px) and (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="tc-teacher-ecc-adventures"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_teacher_ecc_adventures_small_2x.png");
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture[data-bg="tc-teacher-ecc-adventures"]::after {
		content: "";
		display: block;
		padding-bottom: 103.42857%;
	}
}

.guide-tile-content {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 30px 30px 30px 38px;
}
@media only screen and (max-width: 1068px) {
	.guide-tile-content {
		padding: 30px 30px 30px 38px;
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-content {
		padding: 30px 30px 30px 35px;
	}
}
.guide-tile-grade {
	color: #6e6e73;
}
.guide-tile-grade p {
	font-weight: 500;
}
.guide-tile-pdf {
	margin-bottom: 0;
}
.guide-pdf {
	font-weight: bold;
	padding-top: 50px;
}
@media only screen and (max-width: 1068px) {
	.guide-pdf {
		padding-top: 50px;
	}
}
@media only screen and (max-width: 734px) {
	.guide-pdf {
		padding-top: 48px;
	}
}
.teaching-code {
	background: #587399;
}
.teaching-code-headline-strong {
	color: #fff;
}
.teaching-code-subhead {
	color: #fff;
	font-weight: 600;
	font-size: 36px;
	line-height: 1.11111;
}
@media only screen and (max-width: 1068px) {
	.teaching-code-subhead {
		font-size: 32px;
		line-height: 1.125;
	}
}
@media only screen and (max-width: 734px) {
	.teaching-code-subhead {
		font-size: 24px;
		line-height: 1.16667;
	}
}

.teaching-code-pdf {
	padding-top: 50px;
}
@media only screen and (max-width: 1068px) {
	.teaching-code-pdf {
		padding-top: 50px;
	}
}
@media only screen and (max-width: 734px) {
	.teaching-code-pdf {
		padding-top: 48px;
	}
}
.teaching-code-pdf .violator-link {
	background: rgba(0, 0, 0, 0);
	border-color: #fff;
	color: #fff;
}
@media (pointer: fine) {
	.teaching-code-pdf .violator-link {
		-webkit-transition: background-color 0.3s ease, color 0.3s ease;
		transition: background-color 0.3s ease, color 0.3s ease;
	}
	.teaching-code-pdf .violator-link:hover {
		background-color: #fff;
		color: #ea6d6f;
	}
}

.apps-picture {
	background-repeat: no-repeat;
	background-image: url("/sg/education/k12/digital-learning-in-singapore/images/teachers_apple_teacher_large.jpg");
	background-size: 100%;
	background-position: bottom;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
	.apps-picture {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/teachers_apple_teacher_large_2x.jpg");
	}
}
.apps-picture::after {
	content: "";
	display: block;
	padding-bottom: 108.8733%;
}
@media only screen and (max-width: 1068px) {
	.apps-picture {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/teachers_apple_teacher_medium.jpg");
	}
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
	.apps-picture {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/teachers_apple_teacher_medium_2x.jpg");
	}
}
@media only screen and (max-width: 1068px) {
	.apps-picture::after {
		content: "";
		display: block;
		padding-bottom: 124.5853%;
	}
}
@media only screen and (max-width: 734px) {
	.apps-picture {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/teachers_apple_teacher_small.jpg");
	}
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 734px) and (min-resolution: 1.5dppx), only screen and (max-width: 734px) and (min-resolution: 144dpi) {
	.apps-picture {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/teachers_apple_teacher_small_2x.jpg");
	}
}
@media only screen and (max-width: 734px) {
	.apps-picture::after {
		content: "";
		display: block;
		padding-bottom: 104.04878%;
	}
}

.apps {
	background: #f7f6ff;
}
.apps-content {
	padding-top: 60px;
}
@media only screen and (max-width: 1068px) {
	.apps-content {
		padding-top: 55px;
	}
}
@media only screen and (max-width: 734px) {
	.apps-content {
		padding-top: 32px;
	}
}
.apps-items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	gap: 30px;
}
@media only screen and (max-width: 1068px) {
	.apps-items {
		gap: 30px;
	}
}
@media only screen and (max-width: 734px) {
	.apps-items {
		gap: 0;
	}
}

.apps-headline {
	margin-bottom: 0.8em;
}

@media only screen and (max-width: 1068px) {
	.apps-headline {
		max-width: 690px;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
}
.apps-item {
	width: calc(33.3% - 20px);
}
@media only screen and (max-width: 1068px) {
	.apps-item {
		width: calc(33.3% - 20px);
	}
}
@media only screen and (max-width: 734px) {
	.apps-item {
		width: 100%;
	}
}
.apps-item.full {
	width: 100%;
}
@media only screen and (max-width: 734px) {
	.apps-item {
		padding-top: 30px;
	}
	.apps-item:first-child {
		padding-top: 0;
	}
}
.apps-callout {
	height: 100%;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
	background-color: #fff;
}
.apps-callout-container {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column wrap;
	flex-flow: column wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 40px;
}
@media only screen and (max-width: 1068px) {
	.apps-callout-container {
		padding: 40px;
		justify-content: flex-start;
	}
}
@media only screen and (max-width: 734px) {
	.apps-callout-container {
		padding: 30px 30px 25px 38px;
	}
}
.apps-callout-subhead {
	min-height: 70px;
	margin-bottom: 0;
}
@media only screen and (max-width: 1068px) {
	.apps-callout-subhead {
		min-height: 70px;
		margin-bottom: 0;
	}
}
@media only screen and (max-width: 734px) {
	.apps-callout-subhead {
		min-height: auto;
		margin-bottom: 1em;
	}
}
@media only screen and (max-width: 734px) {
	.apps-callout-subhead {
		font-size: 28px;
		line-height: 1.14286;
		font-weight: 600;
		letter-spacing: 0.007em;
		font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue",
			"Helvetica", "Arial", sans-serif;
	}
	.apps-callout-subhead:lang(ko) {
		line-height: 1.25;
		font-family: "SF Pro KR", "SF Pro Display", "SF Pro Icons",
			"Apple Gothic", "HY Gulim", "MalgunGothic", "HY Dotum", "Lexi Gulim",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.apps-callout-subhead:lang(th) {
		line-height: 1.39286;
		font-family: "SF Pro TH", "SF Pro Display", "SF Pro Icons",
			"Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.apps-callout-subhead:lang(ar) {
		font-family: "SF Pro AR", "SF Pro Gulf", "SF Pro Display",
			"SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.apps-callout-subhead:lang(ja) {
		font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons",
			"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ",
			"Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial",
			sans-serif;
	}
	.apps-callout-subhead:lang(zh-CN) {
		font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons",
			"PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.apps-callout-subhead:lang(zh-HK) {
		font-family: "SF Pro HK", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.apps-callout-subhead:lang(zh-MO) {
		font-family: "SF Pro HK", "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang HK", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
	.apps-callout-subhead:lang(zh-TW) {
		font-family: "SF Pro TC", "SF Pro Display", "SF Pro Icons",
			"PingFang TC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	}
}
.apps-col .apps-callout-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
	height: 100%;
}
.apps-col .apps-callout-picture {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
@media only screen and (max-width: 1068px) {
	.apps-col .apps-callout-picture {
		-webkit-box-flex: 0;
		-ms-flex: none;
		flex: none;
	}
}
.apps-col .apps-callout-container {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.learn-from-home-picture {
	background-repeat: no-repeat;
	background-image: url("/sg/education/k12/digital-learning-in-singapore/images/learn_from_home_large.jpg");
	background-size: cover;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
	.learn-from-home-picture {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/learn_from_home_large_2x.jpg");
	}
}
.learn-from-home-picture::after {
	content: "";
	display: block;
	padding-bottom: 64.04255%;
}
@media only screen and (max-width: 1068px) {
	.learn-from-home-picture {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/learn_from_home_medium.jpg");
		background-size: cover;
	}
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
	.learn-from-home-picture {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/learn_from_home_medium_2x.jpg");
	}
}
@media only screen and (max-width: 1068px) {
	.learn-from-home-picture::after {
		content: "";
		display: block;
		padding-bottom: 64.46078%;
	}
}
@media only screen and (max-width: 734px) {
	.learn-from-home-picture {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/learn_from_home_small.jpg");
		background-size: cover;
	}
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 734px) and (min-resolution: 1.5dppx), only screen and (max-width: 734px) and (min-resolution: 144dpi) {
	.learn-from-home-picture {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/learn_from_home_small_2x.jpg");
	}
}
@media only screen and (max-width: 734px) {
	.learn-from-home-picture::after {
		content: "";
		display: block;
		padding-bottom: 68.6%;
	}
}
.creative-apps-picture {
	background-repeat: no-repeat;
	background-image: url("/sg/education/k12/digital-learning-in-singapore/images/creative_apps_large.jpg");
	background-size: cover;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
	.creative-apps-picture {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/creative_apps_large_2x.jpg");
	}
}
.creative-apps-picture::after {
	content: "";
	display: block;
	padding-bottom: 64.04255%;
}
@media only screen and (max-width: 1068px) {
	.creative-apps-picture {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/creative_apps_medium.jpg");
		background-size: cover;
	}
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
	.creative-apps-picture {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/creative_apps_medium_2x.jpg");
	}
}
@media only screen and (max-width: 1068px) {
	.creative-apps-picture::after {
		content: "";
		display: block;
		padding-bottom: 64.46078%;
	}
}
@media only screen and (max-width: 734px) {
	.creative-apps-picture {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/creative_apps_small.jpg");
		background-size: cover;
	}
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 734px) and (min-resolution: 1.5dppx), only screen and (max-width: 734px) and (min-resolution: 144dpi) {
	.creative-apps-picture {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/creative_apps_small_2x.jpg");
	}
}
@media only screen and (max-width: 734px) {
	.creative-apps-picture::after {
		content: "";
		display: block;
		padding-bottom: 68.6%;
	}
}

.schooled-app-picture {
	background-repeat: no-repeat;
	background-image: url("/sg/education/k12/digital-learning-in-singapore/images/schooled_app_large.jpg");
	background-size: cover;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
	.schooled-app-picture {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/schooled_app_large_2x.jpg");
	}
}
.schooled-app-picture::after {
	content: "";
	display: block;
	padding-bottom: 64.04255%;
}
@media only screen and (max-width: 1068px) {
	.schooled-app-picture {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/schooled_app_medium.jpg");
		background-size: cover;
	}
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
	.schooled-app-picture {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/schooled_app_medium_2x.jpg");
	}
}
@media only screen and (max-width: 1068px) {
	.schooled-app-picture::after {
		content: "";
		display: block;
		padding-bottom: 64.46078%;
	}
}
@media only screen and (max-width: 734px) {
	.schooled-app-picture {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/schooled_app_small.jpg");
		background-size: cover;
	}
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 734px) and (min-resolution: 1.5dppx), only screen and (max-width: 734px) and (min-resolution: 144dpi) {
	.schooled-app-picture {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/schooled_app_small_2x.jpg");
	}
}
@media only screen and (max-width: 734px) {
	.schooled-app-picture::after {
		content: "";
		display: block;
		padding-bottom: 68.6%;
	}
}
.apps-col-text {
	padding-top: 20px;
}
@media only screen and (max-width: 1068px) {
	.apps-col-text {
		padding-top: 20px;
	}
}
@media only screen and (max-width: 734px) {
	.apps-col-text {
		padding-top: 15px;
	}
}
.apps-teacher .apps-callout-content {
	padding: 80px 30px 0;
	text-align: left;
}
@media only screen and (max-width: 1068px) {
	.apps-teacher .apps-callout-content {
		padding: 80px 30px 80px;
	}
}
@media only screen and (max-width: 734px) {
	.apps-teacher .apps-callout-content {
		padding: 45px 30px 0px;
	}
}

@media only screen and (max-width: 1068px) {
	.apps-lead {
		max-width: 690px;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
}

html.no-js .giga-alert {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.48);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 20px;
}
@supports (
	(-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))
) {
	html.no-js .giga-alert {
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
	}
}
html.no-js .giga-alert-container {
	color: #000;
	background-color: #fff;
	text-align: center;
	margin: 0;
	padding: 60px;
	border-radius: 15px;
	max-width: 500px;
}
@media only screen and (max-width: 1068px) {
	html.no-js .giga-alert-container {
		padding: 50px;
		border-radius: 15px;
		max-width: 400px;
	}
}
@media only screen and (max-width: 734px) {
	html.no-js .giga-alert-container {
		padding: 40px;
		border-radius: 10px;
	}
}
html.no-js .giga-alert-headline {
	font-weight: 600;
	margin-bottom: 5px;
}
html.no-js {
	overflow: hidden;
}
html:not(.no-js) .giga-alert {
	display: none;
}

.guide-tile-picture[data-bg="ecc-teacher-guide"] {
	background-repeat: no-repeat;
	background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_teacher_guide_large.png");
	background-position: bottom;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="ecc-teacher-guide"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_teacher_guide_large_2x.png");
		background-size: 80%;
	}
}
.guide-tile-picture[data-bg="ecc-teacher-guide"]::after {
	content: "";
	display: block;
	padding-bottom: 71.46226%;
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture[data-bg="ecc-teacher-guide"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_teacher_guide_medium.png");
	}
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="ecc-teacher-guide"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_teacher_guide_medium_2x.png");
	}
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture[data-bg="ecc-teacher-guide"]::after {
		content: "";
		display: block;
		padding-bottom: 71.34986%;
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture[data-bg="ecc-teacher-guide"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_teacher_guide_small.png");
	}
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 734px) and (min-resolution: 1.5dppx), only screen and (max-width: 734px) and (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="ecc-teacher-guide"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_teacher_guide_small_2x.png");
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture[data-bg="ecc-teacher-guide"]::after {
		content: "";
		display: block;
		padding-bottom: 62.42857%;
	}
}

.guide-tile-picture[data-bg="ecc-projects"] {
	background-repeat: no-repeat;
	background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_projects_large.png");
	background-position: bottom;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="ecc-projects"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_projects_large_2x.png");
		background-size: 80%;
	}
}
.guide-tile-picture[data-bg="ecc-projects"]::after {
	content: "";
	display: block;
	padding-bottom: 71.46226%;
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture[data-bg="ecc-projects"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_projects_medium.png");
	}
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="ecc-projects"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_projects_medium_2x.png");
	}
}
@media only screen and (max-width: 1068px) {
	.guide-tile-picture[data-bg="ecc-projects"]::after {
		content: "";
		display: block;
		padding-bottom: 71.34986%;
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture[data-bg="ecc-projects"] {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_projects_small.png");
	}
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 734px) and (min-resolution: 1.5dppx), only screen and (max-width: 734px) and (min-resolution: 144dpi) {
	.guide-tile-picture[data-bg="ecc-projects"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/ecc_projects_small_2x.png");
	}
}
@media only screen and (max-width: 734px) {
	.guide-tile-picture[data-bg="ecc-projects"]::after {
		content: "";
		display: block;
		padding-bottom: 62.42857%;
	}
}

.teaching-code-picture[data-picture="swift-playgrounds"], .teaching-code-picture[data-picture="swift-tutorials"] {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.teaching-code-picture[data-picture="swift-playgrounds"]::after, .teaching-code-picture[data-picture="swift-tutorials"]::after {
	content: "";
	display: block;
	padding-bottom: 124.8733%;
}
@media only screen and (max-width: 1068px) {
	.teaching-code-picture[data-picture="swift-playgrounds"]::after, .teaching-code-picture[data-picture="swift-tutorials"]::after {
		padding-bottom: 157%;
	}
}
@media only screen and (min-width: 735px) and (max-width: 945px) {
	.teaching-code-picture[data-picture="swift-playgrounds"]::after, .teaching-code-picture[data-picture="swift-tutorials"]::after {
		padding-bottom: 205%;
	}
}
@media only screen and (max-width: 734px) {
	.teaching-code-picture[data-picture="swift-playgrounds"]::after, .teaching-code-picture[data-picture="swift-tutorials"]::after {
		padding-bottom: 52%;
	}
}

.teaching-code-picture[data-picture="swift-playgrounds"] {
	background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_swift_playgrounds_large.png");
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
	.teaching-code-picture[data-picture="swift-playgrounds"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_swift_playgrounds_large_2x.png");
	}
}
@media only screen and (max-width: 1068px) {
	.teaching-code-picture[data-picture="swift-playgrounds"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_swift_playgrounds_medium.png");
	}
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
	.teaching-code-picture[data-picture="swift-playgrounds"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_swift_playgrounds_medium_2x.png");
	}
}
@media only screen and (max-width: 734px) {
	.teaching-code-picture[data-picture="swift-playgrounds"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_swift_playgrounds_small.png");
	}
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 734px) and (min-resolution: 1.5dppx), only screen and (max-width: 734px) and (min-resolution: 144dpi) {
	.teaching-code-picture[data-picture="swift-playgrounds"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_swift_playgrounds_small_2x.png");
	}
}

.teaching-code-picture[data-picture="swift-tutorials"] {
	background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_swift_tutorials_large.png");
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
	.teaching-code-picture[data-picture="swift-tutorials"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_swift_tutorials_large_2x.png");
	}
}
@media only screen and (max-width: 1068px) {
	.teaching-code-picture[data-picture="swift-tutorials"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_swift_tutorials_medium.png");
	}
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
	.teaching-code-picture[data-picture="swift-tutorials"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_swift_tutorials_medium_2x.png");
	}
}
@media only screen and (max-width: 734px) {
	.teaching-code-picture[data-picture="swift-tutorials"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_swift_tutorials_small.png");
	}
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 734px) and (min-resolution: 1.5dppx), only screen and (max-width: 734px) and (min-resolution: 144dpi) {
	.teaching-code-picture[data-picture="swift-tutorials"] {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/tc_swift_tutorials_small_2x.png");
	}
}

/* BEGIN>> ribbon */
.ribbon {
	margin-top: -22px;
	padding: 25px 0;
	text-align: center;
	background-color: #faf2e3;
}
html.text-zoom .ribbon {
	padding: 60px 0;
}

@media only screen and (max-width: 1068px) {
	.ribbon {
		margin-top: 0;
	}
}

@media only screen and (max-width: 734px) {
	.ribbon {
		margin-top: 15px;
	}
}
/* END>> ribbon */

/* BEGIN>> today at apple section */
#today-at-apple {
	background: #bbd5ea;
}
.today-at-apple-picture-container {
	width: 100%;
	margin-top: 0.8em;
	margin-bottom: 50px;
}
.today-at-apple-headline {
	margin-bottom: 0.8em;
}

.today-at-apple-picture {
	background-repeat: no-repeat;
	background-image: url("/sg/education/k12/digital-learning-in-singapore/images/today_at_apple_large.jpg");
	background-size: 100%;
	background-position: bottom;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
	.today-at-apple-picture {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/today_at_apple_large_2x.jpg");
	}
}
.today-at-apple-picture::after {
	content: "";
	display: block;
	padding-bottom: 56.25%;
}
@media only screen and (max-width: 1068px) {
	.today-at-apple-picture {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/today_at_apple_medium.jpg");
	}
}
@media only screen and (max-width: 1068px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 1068px) and (min-resolution: 1.5dppx), only screen and (max-width: 1068px) and (min-resolution: 144dpi) {
	.today-at-apple-picture {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/today_at_apple_medium_2x.jpg");
	}
}
@media only screen and (max-width: 734px) {
	.today-at-apple-picture {
		background-repeat: no-repeat;
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/today_at_apple_small.jpg");
	}
}
@media only screen and (max-width: 734px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 734px) and (min-resolution: 1.5dppx), only screen and (max-width: 734px) and (min-resolution: 144dpi) {
	.today-at-apple-picture {
		background-image: url("/sg/education/k12/digital-learning-in-singapore/images/today_at_apple_small_2x.jpg");
	}
}
@media only screen and (max-width: 734px) {
	.today-at-apple-picture::after {
		content: "";
		display: block;
		padding-bottom: 56.17%;
	}
}
/* END>> today at apple section */
