*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	box-sizing: border-box;
	font-size: var(--font-size);
}

body {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 400;
	line-height: 1.375;
	min-width: 320px;
	background: rgba(255,255,255, 1);
	color: rgba(0,0,0, 1);
}

button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 1rem;
	line-height: 1.375;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	clear: both;
	line-height: 1.125;
	margin: 0 0 1.375rem;
	letter-spacing: -0.5px;
}

h1, .page-title {
	font-size: var(--font-size-large);
	color: rgba(var(--color-blue), 1);
}

h2, .headline {
	font-size: var(--font-size-big);
	color: rgba(var(--color-blue), 1);
}

h3 {
	font-size: var(--font-size-big);
	color: rgba(var(--color-gray), 1);
	font-weight: 400;
}

h4 {
	font-size: var(--font-size-medium);
	color: rgba(var(--color-blue), 1);
}

h5 {
	font-size: var(--font-size);
	color: rgba(0,0,0, 1);
}

p {
	margin: 0 0 1.375rem;
}

div.has-background,
p.has-background,
figure.has-background {
	padding: 1.375rem;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.375rem;
}

address {
	margin: 0 0 1.375rem;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.375;
	margin-bottom: 1.375rem;
	max-width: 100%;
	overflow: auto;
	padding: 1.375rem;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

body {
	background: #fff;
}

hr {
	background-color: rgba(var(--color-gray), 0.2);
	border: 0;
	height: 1px;
	margin: 2.75em 0;
}
	hr.site-spacer {
		max-width: none;
		padding: 0;
	}

ul,
ol {
	margin: 0 0 1.375rem;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
	padding-left: 2.75em;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.375rem;
}

ol li {
	padding-left: 0.6875em;
	margin-bottom: 0.6875em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.375rem 1.375rem;
}

embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 0 0 1.375rem;
}

table {
	margin: 0 0 1.375rem;
	width: 100%;
}

a {
	color: inherit;	
	text-decoration: none;
}

a:visited {
	color: inherit;
}

a:hover,
a:focus,
a:active {
	color: inherit;
	text-decoration: underline;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/*
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0,0,0, 0.8);
	line-height: 1;
	padding: 0.6875em 1.375rem 0.34375em;
}
*/

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: rgba(0,0,0, 1);
	border: 1px solid transparent;
	padding: 0.6875em 0.6875em;
	font-size: var(--font-size-xsmall);
	width: 100%;
	background: rgba(var(--color-gray), 0.1);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	outline: none;
	border: 1px solid rgba(var(--color-blue), 1);
}

.select-wrap {
	background: rgba(var(--color-gray), 0.1);
	font-size: var(--font-size-xsmall);
	padding: 0.6875em 1.71875em 0.6875em 0.6875em;
	display: block;
	position: relative;
	cursor: pointer;
}
	.select-wrap i {
		position: absolute;
		right: 0.6875em;
		top: 50%;
		transform: translateY(-50%);
		z-index: 1;
		pointer-events: none;
		color: rgba(var(--color-gray), 1);
	}

select {
	font-size: var(--font-size-xsmall);
	color: rgba(0,0,0, 1);
	border: 0;
	width: 100%;
	text-overflow: ellipsis;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
}

label[for] {
	font-size: var(--font-size-xsmall);
	font-weight: 700;
}

textarea {
	width: 100%;
	resize: vertical;
}

table[role="table"],
.wp-block-table table {
	font-size: var(--font-size-small);
	width: 100%;
	border-collapse: collapse;
}

table[role="table"] thead tr,
.wp-block-table table thead tr {
	border-bottom: 1px solid rgba(var(--color-blue), 1);
}

table[role="table"] tbody tr,
.wp-block-table table tbody tr {
	border-bottom: 1px solid rgba(var(--color-gray), 0.2);
}
	table[role="table"] tbody tr:last-child,
	.wp-block-table table tbody tr:last-child {
		border-bottom: 0;
	}

table[role="table"] thead th,
.wp-block-table table thead th {
	padding: 0.6875em 1.375em 0.6875em 0;
	text-align: left;
}

table[role="table"] tbody td,
.wp-block-table table tbody td {
	padding: 0.6875em 1.375em 0.6875em 0;
	text-align: left;
	vertical-align: top;
}

@media (max-width: 767.98px) {
	.wp-block-table table {
		width: calc(768px - 2 * var(--gutter));
	}
	
	.responsive-table,
	.responsive-table tbody,
	.responsive-table [role="row"],
	.responsive-table [role="cell"] {
		display: block;
	}
	
	.responsive-table thead {
		display: none;
	}
	
	.responsive-table [role="row"] {
		padding: 0.6875em;
		background: rgba(var(--color-blue), 0.024);
		margin-bottom: 0.6875em;
		border-bottom: 0;
	}
		.responsive-table [role="row"]:nth-child(2n) {
			background: none;
		}
	
	.responsive-table [role="cell"] {
		padding-right: 0;
		border-bottom: 1px solid rgba(var(--color-blue), 0.06);
	}
		.responsive-table [role="cell"]:last-child {
			border-bottom: 0;
		}
	
	.responsive-table [role="cell"]:before {
		content: '';
		color: rgba(var(--color-blue), 1);
		font-weight: 700;
		display: block;
		margin-bottom: 0.34375em;
	}
}

.has-xsmall-font-size {
	font-size: var(--font-size-xsmall);
}

.has-small-font-size {
	font-size: var(--font-size-small);
}

.has-default-font-size,
.has-normal-font-size {
	font-size: var(--font-size);
}

.has-medium-font-size {
	font-size: var(--font-size-medium);
}

.has-big-font-size {
	font-size: var(--font-size-big);
}

.has-large-font-size {
	font-size: var(--font-size-large);
}

.has-huge-font-size {
	font-size: var(--font-size-huge);
}

.has-text-color.has-blue-color,
.has-inline-color.has-blue-color {
	color: rgba(var(--color-blue), 1);
}

.has-text-color.has-blue-15-color,
.has-inline-color.has-blue-15-color {
	color: rgba(var(--color-blue), 0.15);
}

.has-text-color.has-blue-5-color,
.has-inline-color.has-blue-5-color {
	color: rgba(var(--color-blue), 0.05);
}

.has-text-color.has-light-blue-color,
.has-inline-color.has-light-blue-color {
	color: rgba(var(--color-light-blue), 1);
}

.has-text-color.has-gray-color,
.has-inline-color.has-gray-color {
	color: rgba(var(--color-gray), 1);
}

.has-text-color.has-gray-20-color,
.has-inline-color.has-gray-20-color {
	color: rgba(var(--color-gray), 0.2);
}

.has-text-color.has-gray-10-color,
.has-inline-color.has-gray-10-color {
	color: rgba(var(--color-gray), 0.1);
}

.has-text-color.has-orange-color,
.has-inline-color.has-orange-color {
	color: rgba(var(--color-orange), 1);
}

.has-text-color.has-black-color,
.has-inline-color.has-black-color {
	color: rgba(0,0,0, 1);
}

.has-text-color.has-white-color,
.has-inline-color.has-white-color {
	color: rgba(255,255,255, 1);
}

.has-background.has-blue-background-color {
	background-color: rgba(var(--color-blue), 1);
}

.has-background.has-blue-15-background-color {
	background-color: rgba(var(--color-blue), 0.15);
}

.has-background.has-blue-5-background-color {
	background-color: rgba(var(--color-blue), 0.05);
}

.has-background.has-light-blue-background-color {
	background-color: rgba(var(--color-light-blue), 1);
}

.has-background.has-gray-background-color {
	background-color: rgba(var(--color-gray), 1);
}

.has-background.has-gray-20-background-color {
	background-color: rgba(var(--color-gray), 0.2);
}

.has-background.has-gray-10-background-color {
	background-color: rgba(var(--color-gray), 0.1);
}

.has-background.has-orange-background-color {
	background-color: rgba(var(--color-orange), 1);
}

.has-background.has-black-background-color {
	background-color: rgba(0,0,0, 1);
}