html {
	scroll-behavior: smooth;
}

body {
	color: #2a2a2a !important;
	font-family:
		"Open Sans", "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
		"Lucida Sans", Arial, sans-serif;
	font-size: 14px;
	line-height: 1.6;
	position: relative;
	background: #fff !important;
}

.anchor-point {
	scroll-margin-top: 180px;
}

.page_title,
.h1,
h1 {
	margin: 0;
	margin-bottom: 20px;
	font-weight: bold;
	color: #6666ff !important;
	font-family: "Open Sans", sans-serif !important;
	font-size: 19.5pt;
	line-height: 1.3;
}

.h2,
h2 {
	margin-top: 50px;
	margin-bottom: 10px;
	color: #6666ff !important;
	font-family: "Open Sans", sans-serif !important;
	font-size: 17.5pt;
	line-height: 1.3;
	font-weight: bold;
}

.h3,
h3 {
	margin-top: 10px;
	margin-bottom: 10px;
	color: #ff7115 !important;
	font-family: "Open Sans", sans-serif !important;
	font-size: 15pt;
	line-height: 1.3;
	font-weight: bold;
}

.h4,
h4 {
	margin-top: 15px;
	margin-bottom: 5px;
	color: #000000 !important;
	font-family: "Open Sans", sans-serif !important;
	font-size: 13.5pt;
	line-height: 1.3;
	font-weight: bold;
}

.h5,
h5 {
	margin-top: 15px;
	margin-bottom: 5px;
	color: #2a2a2a !important;
	font-family: "Open Sans", sans-serif !important;
	font-size: 10.5pt;
	line-height: 1.3;
	font-weight: bold;
}

.titleSide {
	background: #6666ff;
	color: #fff !important;
}

ol ol,
ol ul,
ul ol,
ul ul {
	margin-bottom: 10px;
	margin-left: 20px;
}

#sidebar .content ul {
	margin-left: 10px;
}

#sidebar .content ul ul {
	margin-left: 15px;
}

#sidebar .content li li {
	display: flex;
	margin: 10px 0;
}

#sidebar .content li:before {
	content: "\f105";
	font-family: "FontAwesome";
	color: #3a3a3a;
	padding-right: 10px;
}

#sidebar .content li a {
	padding: 0;
	margin: 0;
}

#sidebar .content li a:before {
	display: none !important;
}

.box {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 20px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
	transition: all 0.25s ease;
	padding: 22px;
	background: linear-gradient(135deg, #f9f9f9, #f6f6f6);
	border: 1px solid #dddd;
	border-left: 8px solid #6666ff !important;
	border-radius: 12px;
	margin-bottom: 20px;
}

.box:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.box-img {
	flex: 0 0 72px;
}

.box-img img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #6666ff;
	background: #f5f7fa;
}

.box-txt {
	flex: 1;
}

.site-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-name .navbar-brand>img {
    max-height: 230px;
}

#headerNavigationContainer {
    position: sticky;
    width: 100%;
    top: 0px;
    z-index: 99;
    margin-top: -30px;
}

#mainContainer {
    margin-top: 60px !important;
}
nav.cmp_breadcrumbs {
    position: fixed;
    top: 280px;
}

.btn {
	padding: 10px 25px;
	margin: auto;
	border: none;
	border-radius: 15px;
	display: inline-block;
	text-decoration: none;
	background-color: #6666ff;
	color: #fff;
}
.btn:hover, .btn:focus, .btn:focus-within{
	background-color: #1e1e83;
	color: #fff;
}
.btn.btn-orange{
	background-color: #ff7115;
	color: #fff;
}
.btn.btn-orange:hover, .btn.btn-orange:focus, .btn.btn-orange:focus-within{
	background-color: #b66128;
	color: #fff;
}

@media (max-width: 960px) {
	.site-name .navbar-brand>img {
    	max-height: 180px;
	}
	nav.cmp_breadcrumbs {
		top: 235px;
	}
}
@media (max-width: 768px) {
	.box {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
	}
	nav.cmp_breadcrumbs {
		display: none;
	}
	#mainContainer {
    margin-top: 0px !important;
	}
}