body {
	min-height: 100%;
	display: flex;
    flex-direction: column;
}
.terms {
	display: flex;
	flex-direction: column;
	flex: auto;
}
.terms .container {
	flex: auto;
}
.wrapper {
	padding: 32px 0px 0px;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	position: relative;
}
.sidebar {
	width: 380px;
	padding: 0 32px;
    position: relative;
    flex: 0 0 auto;
}
.sidebar .list-group {
	position: sticky;
	top: 90px;
	display: flex;
    flex-direction: column;
	list-style: none;
    padding-left: 0;
    margin-bottom: 0;
	z-index: 1010;
}
.sidebar .list-group li {
	margin-bottom: 5px;
}
.sidebar .list-group li:last-child {
	margin: 0;
}
.sidebar .list-group li a {
	width: 100%;
    padding: 10px 20px;
	display: block;
    font-size: 18px;
	line-height: 20px;
	text-decoration: none;
    color: #adadad;
    background: #1c1c1c;
    border-radius: 5px;
	border: none;
}
.sidebar .list-group li a:hover, .sidebar .list-group .active {
	color: #adadad;
	text-decoration: none;
	background: #3c3c3c;
}
@media (max-width: 992px) {
	.sidebar {
		display: none;
		opacity: 0;
	}
	.sidebar.show {
		width: 100%;
		height: 100%;
		padding: 40px!important;
		position: fixed;
		top: 60px;
		left: 0;
		right: 0;
		bottom: 0;
		display: flex!important;
		justify-content: flex-start;
		align-items: center;
		flex-direction: column;
		opacity: 1!important;
		z-index: 1020;
		background: #000000;
		border: none;
	}
	.sidebar .list-group li {
		width: auto;
		min-width: 150px!important;
		padding: 15px 10px;
		margin-bottom: 0px;
		border-bottom: 1px solid #505050;
	}
	.sidebar .list-group li:last-child {
		border-bottom: none;
	}
	.sidebar .list-group li a {
		padding: 0;
		font-size: 16px!important;
		line-height: 16px!important;
		color: #adadad!important;
		font-weight: normal;
		text-transform: uppercase;
		text-decoration: none;
		text-align: center;
		background: none;
	}
	.sidebar .list-group .active {
		color: #ffffff!important;
		font-weight: bold;
		background: none;
	}
}
.article {
	padding: 0 32px 0 0;
}
@media (max-width: 992px) {
	.article {
		padding: 0;
	}
}
.article section {
	margin-bottom: 32px;
}
.article section:first-child:before {
	display: block;
    content: "";
    height: 300px;
    margin: -300px 0 0;
}
.article section:before {
    display: block;
    content: "";
    height: 90px;
    margin: -90px 0 0;
}
.article section h2 {
	margin-bottom: 32px;
	font-size: 26px;
	line-height: 26px;
	color: #ffffff;
	font-weight: bold;
	text-align: center;
}
.article section .text {
	color: #adadad;
}
.article section .text h3 {
	font-size: 24px;
    line-height: 27px;
    margin: 10px;
}
.article section .text h4 {
	font-size: 22px;
    line-height: 25px;
	margin-left: 10px;
	margin-bottom: 10px;
}
.article section .text p {
	margin-bottom: 23px;
}
.article section .text img {
	width: 100%;
	height: auto;
}
.article section .text ul {
	list-style: disc outside;
	margin-block-start: 10px;
    margin-block-end: 10px;
	padding-inline-start: 40px;
}