/* Static. */

.static {
	--bone_w: 1200px;

	font-size: 16px;
}

.static_title {
	margin-bottom: 44px;
	font-size: 24px;
	font-weight: 700;
}

.static_content h2,
.static_content h3 {
	font-size: 20px;
	margin-bottom: 20px;
}

.static_content > div:not(:first-child) {
	margin-top: 44px;
}

.static_content a {
	color: var(--primary);
	font-weight: 500;
}

.static_content p {
	margin: 1em 0;
}

.static_content ul,
.static_content ol {
	counter-reset: direction;

	display: grid;
	grid-gap: 16px;
}

.static_content li {
	position: relative;
}

.static_content li:after {
	content: '+';
	position: absolute;
	top: calc(.8em - 4px);
	left: 0;

	color: #F5962C;
	line-height: 8px;
	font-weight: 600;
}

.static_content ol li:after {
	counter-increment: direction;
    content: counter(direction);

    color: #666666;
    font-weight: 400;
}

.static_content li::first-letter {
	padding-left: 16px;
	text-transform: uppercase;
}

/* Static. */

@media only screen and (max-width: 600px) {

	/* Static. */


	.static_title {
		margin-bottom: 28px;
		font-size: 24px;
	}

	.static_content h2,
	.static_content h3 {
		font-size: 19px;
		margin-bottom: 12px;
	}

	/* Static. */

}