.about {
	display: flex;
	justify-content: space-between;
	margin-top: 35px;
	margin-bottom: 50px;
}

.about--nav {
	margin-top: 60px;
	width: 15%;
}

.about--ul {
	list-style: none;
}

.about--li {
	font-size: 16px;
	width: max-content;
	border-radius: 10px;
	padding: 10px 12px;
	margin-bottom: 16px;
	cursor: pointer;
}

.about--li--active {
	background-color: var(--grey2);
}

.about--content--div {
	display: none;
}

.about--content--div--active {
	display: block;
}

.about--heading {
	text-align: center;
	margin-bottom: 35px;
}

.about--text {
	font-size: 16px;
	color: var(--black);
	margin-top: 24px;
	line-height: 1.35;
	text-align: center;
}

.paragraph,
.paragraph--2 {
	font-size: 18px;
	line-height: 1.35;
	color: var(--blue);
	margin-bottom: 14px;
	margin-top: 24px;
}

.paragraph,
.paragraph--content {
	display: flex;
}

.paragraph--number,
.paragraph--content--number {
	width: 5%;
}

.paragraph--text,
.paragraph--content--text,
.paragraph--ol {
	width: 95%;
}

.paragraph--content,
.paragraph--2--content {
	font-size: 16px;
	line-height: 1.35;
	margin-bottom: 10px;
}

.paragraph--content--last {
	margin-top: 30px;
}

.paragraph--blue {
	color: var(--blue);
}

.paragraph--bold {
	font-weight: bold;
}

.paragraph--ol,
.paragraph--ol--2 {
	margin-left: auto;
    counter-reset: list;
}

.paragraph--ol--li {
	position: relative;
    list-style: none;
	margin-bottom: 8px;
	margin-left: 40px;
}

.paragraph--ol--li:before {
	position: absolute;
	left: -40px;
    content: counter(list, lower-alpha) ") ";
    counter-increment: list;
}

.paragraph--a {
	color: var(--blue);
}

.paragraph--table {
	margin-bottom: 24px;
}

.paragraph--table table {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	border-collapse: collapse;
	width: 100%;
}
  
.paragraph--table td, 
.paragraph--table th {
	border: 1px solid black;
	padding: 10px;
} 

.paragraph--table th {
	font-weight: 700;
}

@media screen and (max-width: 1400px) {
	.about--li {
		font-size: 14px;
		padding: 8px 10px;
		margin-bottom: 12px;
	}

	.about--text {
		font-size: 16px;
	}

	.paragraph--number,
	.paragraph--content--number {
		width: 8%;
	}

	.paragraph--text,
	.paragraph--content--text,
	.paragraph--ol {
		width: 92%;
	}

	.paragraph--table {
		overflow-x: scroll;
	}

	.paragraph--table table {
		min-width: 600px;
	}
}

@media screen and (max-width: 1000px) {
	.about--nav {
		width: 20%;
	}

	.about--content {
		width: 76%;
	}

	.paragraph {
		font-size: 16px;
		margin-bottom: 10px;
		margin-top: 18px;
	}

	.paragraph--content {
		font-size: 14px;
		margin-bottom: 8px;
	}

	.paragraph--ol--li {
		margin-bottom: 6px;
	}
}

@media screen and (max-width: 700px) {
	.about {
		flex-direction: column;
	}

	.about--nav {
		width: 100%;
		margin-top: 0;
		margin-bottom: 25px;
	}

	.about--content {
		width: 100%;
	}

	.about--ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.about--li {
		margin: 3px 6px;
	}

	.paragraph--number,
	.paragraph--content--number {
		width: 12%;
	}

	.paragraph--text,
	.paragraph--content--text,
	.paragraph--ol {
		width: 88%;
	}

	.paragraph--ol--li {
		margin-left: 25px;
	}
	
	.paragraph--ol--li:before {
		left: -25px;
	}

	.paragraph--table table {
		font-size: 14px;
	}
}