:root {
	--primary-color: #E6440D;
	--primary-rgb: 219, 19, 27;
	--primary-hover: #F98722;
	--primary-light: #FFF2EE;

	--secondary-color: #2581c4;
	--secondary-rgb: 37, 129, 196;
	--secondary-hover: #1c679d;

	--accent-color: #4285f4;
	--text-gray-bold: #323232;

	--gray-900: #111111;
	--gray-800: #232323;
	--gray-700: #343434;
	--gray-600: #4b5563;
	--gray-500: #6b7280;
	--gray-400: #9ca3af;
	--gray-300: #d1d5db;
	--gray-200: #e5e7eb;
	--gray-100: #f3f4f6;

	--bg-light: #EFF3FA;
	/*--bg-primary: #222732;
	--bg-primary-light: #3b4250;
	--bg-primary-dark: #0f141e;*/

	--bg-primary: #1d3e55;
	--bg-primary-light: #26506d;
	--bg-primary-dark: #132a3b;

	--size-xs: 0.625rem;
	--size-sm: 0.75rem;
	--size-md: 0.875rem;
	--size-lg: 1rem;
	--size-xl: 1.125rem;
	--size-xxl: 1.25rem;
	--size-xxxl: 1.375rem;

	--spacing: 15px;

	--shadow-primary: 0 2px 8px 0 rgb(0 0 0 / 10%);
	--shadow-hover: 0 2px 8px 0 rgb(0 0 0 / 20%);

	--transition-default: .3s all ease-in-out;
	--transition-cubic: .3s all cubic-bezier(.19, 1, .22, 1);
	--font-theme: 'muli', sans-serif;
}

html {
	font-size: 16px;
}

body {
	position: relative;
	width: 100%;
	background-color: var(--bs-white);
	color: var(--gray-800);
	font: 400 var(--size-md)/1.4 var(--font-theme);
	font-style: normal;
	font-stretch: normal;
	font-display: auto;
}

a, a:hover, a:focus {
	outline: none;
	text-decoration: none;
	cursor: pointer;
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
	-webkit-transition: var(--transition-default);
}

button, button:hover, button:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none;
	text-decoration: none;
	cursor: pointer;
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
	-webkit-transition: var(--transition-default);
}

input,
select,
textarea {
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
	-webkit-transition: var(--transition-default);
}

input:focus,
select:focus,
textarea:focus {
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	outline: none !important;
}

.transition-default {
	-o-transition: var(--transition-default);
	transition: var(--transition-default);
	-webkit-transition: var(--transition-default);
}

.transition-cubic {
	-o-transition: var(--transition-cubic);
	transition: var(--transition-cubic);
	-webkit-transition: var(--transition-cubic);
}

.background-cover {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.background-contain {
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}

.image-cover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.image-contain {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.object-fit-cover {
	-o-object-fit: cover;
	object-fit: cover;
}

.object-fit-contain {
	-o-object-fit: contain;
	object-fit: contain;
}

.hidden-effect {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.hidden-effect:hover {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.pseudo:before,
.pseudo:after {
	position: absolute;
	content: "";
	display: block;
}

.z-index-0 {
	z-index: 0;
}

.z-index-1 {
	z-index: 1;
}

.z-index-2 {
	z-index: 2;
}

.z-index-3 {
	z-index: 3;
}

.z-index-4 {
	z-index: 4;
}

.z-index-5 {
	z-index: 5;
}

.z-index-10 {
	z-index: 10;
}

.text-1-line {
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: inline-block;
	max-width: 100%;
}

.text-2-line {
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.text-3-line {
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.text-4-line {
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-webkit-line-clamp: 4;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

img[src=""],
img:not([src]) {
	opacity: 0;
}

.g-10px {
	--bs-gutter-x: 10px;
	--bs-gutter-y: 10px;
}

.py-15px {
	padding: 15px 0;
}

.pt-15px {
	padding-top: 15px;
}

.pb-15px {
	padding-bottom: 15px;
}

.px-15px {
	padding: 0 15px;
}

.pl-15px {
	padding-left: 15px;
}

.pr-15px {
	padding-right: 15px;
}

.p-15px {
	padding: 15px;
}

.py-10px {
	padding: 10px 0;
}

.pt-10px {
	padding-top: 10px;
}

.pb-10px {
	padding-bottom: 10px;
}

.px-10px {
	padding: 0 10px;
}

.pl-10px {
	padding-left: 10px;
}

.pr-10px {
	padding-right: 10px;
}

.p-10px {
	padding: 10px;
}

.py-5px {
	padding: 5px 0;
}

.pt-5px {
	padding-top: 5px;
}

.pb-5px {
	padding-bottom: 5px;
}

.px-5px {
	padding: 0 5px;
}

.pl-5px {
	padding-left: 5px;
}

.pr-5px {
	padding-right: 5px;
}

.p-5px {
	padding: 5px;
}
 .mb-10{
	margin-bottom: 10px;
 }
/*
    Start table of content
*/
.theme-toc {
	border: 1px solid #e9e9e9;
	background: #faf9fa;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	overflow: hidden;
	margin-bottom: 15px;
	min-width: 200px;
}

.theme-toc > .nav {
	padding: 0 0 8px;
	width: 100%;
}

.theme-toc .nav {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.theme-toc .nav > li > a {
	padding-top: 3px;
	padding-right: 15px;
	padding-bottom: 3px;
	display: block;
	color: var(--bs-gray-dark);
	font-size: .95rem;
}

.theme-toc .nav > li > a:hover,
.theme-toc .nav > li > a:active {
	color: var(--primary-color);
}

.theme-toc .nav > li > a.toc-link-1 {
	padding-left: 15px;
}

.theme-toc .nav > li > a.toc-link-2 {
	padding-left: 30px;
}

.theme-toc .nav > li > a:not(.toc-link-1):before {
	content: "-";
	margin-right: 9px;
}

.theme-toc .nav > li > a.toc-link-3 {
	padding-left: 45px;
}

.theme-toc .nav > li > a.toc-link-4 {
	padding-left: 60px;
}

.theme-toc .nav > li > a.toc-link-5 {
	padding-left: 75px;
}

.theme-toc .nav > li > a.toc-link-6 {
	padding-left: 90px;
}

.theme-toc .nav > li.toc-heading {
	background-color: #f5f5f5;
	border-bottom: 1px solid #dddddd;
	padding: 0;
	margin-bottom: 5px;
	width: 100%;
}

.theme-toc .nav > li.toc-heading > p {
	color: var(--bs-gray-dark);
	padding: 10px 0 12px;
	text-align: center;
	font-weight: 600;
	font-size: 1rem;
	display: block;
	margin-bottom: 0;
}

.theme-toc .nav > li.toc-heading > p > a {
	color: var(--primary-color);
	margin-left: 4px;
	font-size: .9rem;
}

.theme-toc .nav > li.toc-heading > p > a:hover,
.theme-toc .nav > li.toc-heading > p > a:active {
	color: var(--primary-hover);
}

.theme-toc .nav .nav {
	margin-bottom: 0;
}

@media screen and (max-width: 600px) {
	.theme-toc {
		width: 100%;
	}
}

@media screen and (max-width: 991px) {
	.theme-toc .nav > li.toc-heading > p,
	.theme-toc .nav > li > a {
		font-size: .9rem;
	}
}