strong {
	font-weight: bold;
}
a {
	color: var(--link-color);
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
	color: var(--color);
}
p, ul, ol {
	margin-top: 1rem;
	margin-bottom: 30px;
	line-height: 1.6;
}
p:first-child {
	margin-top: 0px !important;
}
h1, h2, h3 {
	color: var(--color);
	font-weight: bold;
}
.h1 {
	font-weight: 700;
	font-style: normal;
	font-size: 32px;
	line-height: 1.2;
}
@media (min-width: 600px) {
	.h1 {
		font-size: 42px;
	}
}
h2, .h2 {
	font-weight: 700;
	font-style: normal;
	font-size: 32px;
	line-height: 1.2;
}
.h3 {
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.3;
}
.h3 strong {
	font-weight: bold;
}
.h5 {
	font-weight: bold;
}
small, .text-small {
	font-size: .9em;
}
h1 {
	font-size: 2em;
}
h2 {
	margin-top: calc(5 * var(--space));
	margin-bottom: 2px;
}
h3 {
	font-weight: 700;
	font-style: normal;
	font-size: 24px;
	line-height: 1.2;
	margin-top: calc(2 * var(--space));
	margin-bottom: 2px;
}
h4 {
	margin-top: calc(2 * var(--space));
}
ul {
	list-style: disc;
	padding-left: 19px;
}
.flex {
	display: flex;
	position: relative;
	width: 100%;
}
.flex.flex-2 > * {
	width: 50%;
}
.flex.flex-default-gap {
	gap: 12px;
}
.alternate > .flex:nth-child(even) {
	flex-direction: row-reverse;
}
.space-between {
	justify-content: space-between;
}
.w-full {
	width: 100%;
}
.text-left {
	text-align: left !important;
}
.text-right {
	text-align: right !important;
}
.text-center {
	text-align: center !important;
}
.text-inversed {
	color: var(--color-inversed);
}
.normal {
	font-weight: normal;
}
.bold {
	font-weight: bold;
}
.uppercase {
	text-transform: uppercase;
}
.text-truncate {
	overflow: hidden;
	text-overflow: ellipsis;
}
.text-big {
	font-size: 1.1em;
}
.text-underline {
	text-decoration: underline;
}
