@font-face {
	font-family: 'Montserrat';
	font-weight: normal;
	font-style: normal;
	src: url('../font/Montserrat-Regular.ttf');
}

@font-face {
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: bold;
	src: url('../font/Montserrat-Bold.ttf');
}

@font-face {
	font-family: 'Montserrat';
	font-weight: normal;
	font-style: italic;
	src: url('../font/Montserrat-Italic.ttf');
}

@font-face {
	font-family: 'Montserrat';
	font-weight: bold;
	font-style: italic;
	src: url('../font/Montserrat-BoldItalic.ttf');
}

@font-face {
	font-family: 'Montserrat';
	font-weight: 300;
	font-style: normal;
	src: url('../font/Montserrat-Light.ttf');
}

@font-face {
	font-family: 'Montserrat';
	font-weight: 600;
	font-style: normal;
	src: url('../font/Montserrat-SemiBold.ttf');
}

@font-face {
	font-family: 'Montserrat';
	font-weight: 500;
	font-style: normal;
	src: url('../font/Montserrat-Medium.ttf');
}

::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: #eee;
}

::-webkit-scrollbar-thumb {
	background: #2168eb;
}

::-webkit-scrollbar-thumb:hover {
	background: #043486;
}

html, body {
	height: 100%;
	font-family: "Montserrat", sans-serif;
}

a {
	color: inherit;
	text-decoration: none;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.bold--style {
	font-weight: 600;
}

.medium--style {
	font-weight: 500;
}

.italic--style {
	font-style: italic;
}

.align--centre {
	text-align: center;
}

.img_wrapper {
	max-width: 600px;
	margin: 0 auto 20px;
}

.img_wrapper img {
	display: block;
	width: 50%;
}

.figcaption {
	float: right;
	margin: 20px auto 20px;
}

.table {
	max-width: 900px;
	margin: 0 auto 20px;
}

.table td {
	border: 1px solid #06a800;
}

/* ---------------------------------- Home page style start ---------------------------------- */

.header {
	padding: 20px;
	margin-bottom: 140px;
	text-align: center;
}

.logo {
	display: inline-block;
}

.logo_img {
	display: block;
	width: 200px;
	height: auto;
}

.title-container {
	width: 100vw;
	height: 100vh;
}

.title-col1 {
	height: 100%;
	background: url("../img/back.jpg") 50% 50% no-repeat;
	background-size: cover;
	border-right: 5px solid white;
}

.title-col2 {
	height: 100%;
	background-color: #00a868;
	background-size: 100% 100%;
}

.title_container {
	margin-bottom: 100px;
	text-align: center;
	color: #fff;
}

.title {
	margin-bottom: 20px;
	font-size: 6vh;
	font-weight: 600;
	text-transform: uppercase;
}

.subtitle {
	font-size: 2vh;
}

.menu {
	text-align: center;
}

.menu_link {
	display: inline-block;
	padding: 10px 26px;
	margin-right: 10px;
	background-color: #2168eb;
	font-size: 3vh;
	font-weight: 600;
	color: #edeef7;
	border-radius: 2px;
	box-shadow: 0 4px 20px 0 #0003;
	transition: 0.3s;
}

.menu_link:last-child {
	margin-right: 0;
}

.menu_link:hover {
	color: #06a800;
	text-decoration: none;
}

/* ---------------------------------- Home page modal blocks style start ---------------------------------- */

.modal_title {
	margin-bottom: 20px;
	text-align: center;
	font-size: 4vh;
	color: #06a800;
}

.authors_text {
	text-align: center;
	font-weight: 600;
}

.literature_list {
	list-style: none;
	counter-reset: li;
}

.literature_item {
	margin-bottom: 10px;
	counter-increment: li;
}

.literature_item::before {
	content: counter(li);
	font-weight: 600;
	color: #06a800;
	display: inline-block;
	width: 20px;
	margin-left: -20px;
}

.content_list {
	list-style: none;
}

.content_item {
	margin-bottom: 10px;
}

.content_item:nth-child(odd) {
	background-color: rgba(123, 152, 235, 0.2);
}

.content_link {
	display: inline-block;
	padding: 7px 10px;
	font-weight: 500;
	transition: 0.3s;
}

.content_link:hover {
	color: #2168eb;
	text-decoration: none;
}

.labwork::before {
	content: "";
	display: inline-block;
	width: 24px;
	height: 24px;
	background: url("../img/chemistry.svg") 0 0 no-repeat;
	background-size: 24px;
	margin-right: 10px;
	vertical-align: middle;
}

/* ---------------------------------- Home page modal blocks style end ---------------------------------- */

.footer {
	text-align: right;
}

.footer_text {
	padding: 20px;
	color: #fff;
}

/* ---------------------------------- Home page style end ---------------------------------- */

/* ---------------------------------- Content style start ---------------------------------- */

.navbar-brand .logo_img {
	width: 150px;
	height: auto;
}

.inner_nav_link {
	font-size: 2vh;
	font-weight: 600;
	color: #edeef7;
	border-bottom: 2px solid transparent;
	transition: 0.3s;
}

.inner_nav_link:hover {
	color: #edeef7;
	border-bottom: 2px solid #fff;
}

.chapter_container {
	position: absolute;
	top: 100px;
	left: 0;
	width: 100%;
	padding: 0 30px;
}

.lection-scroll-panel {
	width: 100%;
	height: 77vh;
	overflow-y: scroll;
	padding-right: 1rem;
}

.chapter_content {
	padding: 20px;
	background-color: white;
}

.chapter_title {
	padding-bottom: 14px;
	margin-bottom: 20px;
	font-size: 4vh;
	color: #2168eb;
	border-bottom: 1px solid rgba(123, 152, 235, 0.3);
}

.chapter_text {
	text-indent: 1.5em;
	text-align: justify;
	color: #000;
}

.chapter_content_list {
	margin-left: 40px;
}

.btn_wrapper {
	margin-top: 20px;
	text-align: right;
}

.next_btn, .prev_btn {
	display: inline-block;
	width: 70px;
	height: 40px;
	border: 2px solid transparent;
	transition: 0.3s;
}

.next_btn {
	background: #7b98eb url("../img/arrow-right.svg") 50% 50% no-repeat;
	background-size: 23px;
}

.prev_btn {
	margin-right: 10px;
	background: #7b98eb url("../img/arrow-left.svg") 50% 50% no-repeat;
	background-size: 23px;
}

.next_btn:hover, .prev_btn:hover {
	border-color: #fff;
}

/* ---------------------------------- Content style start ---------------------------------- */

.test-variant {
	margin-bottom: 1rem;
}

.test-variant button {
	width: 3rem;
	height: 3rem;
	margin-right: 1rem;
}