<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
	--web-primary: #7f8184;
	--web-secondary: #992138;
	--blue: #007bff;
	--indigo: #6610f2;
	--purple: #6f42c1;
	--pink: #e83e8c;
	--red: #901916;
	--orange: #fd7e14;
	--yellow: #ffc107;
	--green: #28a745;
	--teal: #20c997;
	--cyan: #17a2b8;
	--white: #fff;
	--gray: #244241;
	--primary: #2e538e;
	--secondary: #6c757d;
	--success: #28a745;
	--info: #3b99e0;
	--warning: #ffc107;
	--danger: #901916;
	--light: #f8f9fa;
	--dark: #343a40;
	--breakpoint-xs: 0;
	--breakpoint-sm: 576px;
	--breakpoint-md: 768px;
	--breakpoint-lg: 992px;
	--breakpoint-xl: 1200px;

	--font-family-sans-serif: 'Montserrat', sans-serif;
	--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
		'Liberation Mono', 'Courier New', monospace;
}

/* OVER WRITE */
@media (min-width: 1200px) {
	.container,
	.container-lg,
	.container-md,
	.container-sm {
		max-width: 1400px;
	}
}
@media (min-width: 1400px) {
	.container-xl {
		max-width: 1500px;
	}
}
a {
	color: #006bdf;
}
.font-size-1 {
	font-size: 2.5rem;
}
.font-size-2 {
	font-size: 2rem;
}
.font-size-3 {
	font-size: 1.75rem;
}
.font-size-4 {
	font-size: 1.5rem;
}
.font-size-5 {
	font-size: 1.25rem;
}
.font-size-6 {
	font-size: 1rem;
}
.font-size-7 {
	font-size: 0.875rem;
}
.font-size-8 {
	font-size: 0.75rem;
}
.font-size-9 {
	font-size: 0.625rem;
}
body {
	color: #000;
	font-size: 16px;
	font-weight: 400;
	font-family: var(--font-family-sans-serif);
}

@media (min-width: 1200px) {
	.navbar-expand-xl .navbar-nav .nav-link {
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}
}
.box {
	flex: 1;
}
@media (max-width: 1200px) {
	.box-md-2 {
		flex: 2;
	}
}
.box.left {
	display: flex;
	justify-content: start;
}
.box.right {
	display: flex;
	justify-content: end;
}
.box.center {
	display: flex;
	flex: 2;
	align-items: center;
	justify-content: center;
}
.text-gray {
	color: var(--gray);
}
.fw-bold {
	font-weight: bold;
}
/* non-essential */
.dropdown-submenu {
	position: relative;
}

.dropdown-submenu a::after {
	transform: rotate(-90deg);
	position: absolute;
	right: 6px;
	top: 0.8em;
}
.dropdown-submenu .dropdown-menu {
	top: 0;
	left: 100%;
	margin-left: 0.1rem;
	margin-right: 0.1rem;
}
@media screen and (max-width: 1200px) {
	.navbar-nav .dropdown-menu.show {
		position: relative !important;
		transform: none !important;
		border: none;
	}
	.navbar-nav .dropdown-menu.show .dropdown-item {
		padding: 6px 0px 6px 1rem;
		white-space: normal;
	}
	.dropdown-submenu .dropdown-menu {
		left: 10px;
		white-space: normal;
	}
}
.logo img {
	max-width: 300px;
	width: 100%;
}
.top-notification {
	background-color: #0c264f;
	color: #fff;
	padding: 10px 0;
}

.btn-danger {
	background-color: var(--danger);
	border-color: var(--danger);
}
.btn-primary {
	background-color: var(--primary);
	border-color: var(--primary);
}
.btn-success {
	background-color: var(--success);
	border-color: var(--success);
}
.btn-warning {
	background-color: var(--warning);
	border-color: var(--warning);
}
.btn-default {
	background-color: var(--default);
	border-color: var(--default);
}
.hero {
	background-color: var(--danger);
	flex-direction: row;
}
.hero h1 {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	margin-top: 20px;
	margin-bottom: 50px;
}
.hero-image img {
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	object-position: center;
}
.hero .text-content {
	padding: 100px 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
@media screen and (max-width: 768px) {
	.hero {
		flex-direction: column;
	}
	.hero .text-content {
		padding: 50px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}
.break-line {
	width: 150px;
	height: 5px;
	background-color: var(--danger);
}
.feature-1 h2 {
	line-height: 1.5em;
}
.feature-1 .big-radio {
	width: 18px;
	height: 18px;
}
.feature-1 .certificated img {
	height: 75px;
}
.feature-2 {
	margin-bottom: 200px;
}
.highlight-step {
	font-size: 30px;
	background-color: #4689c4;
	border-radius: 50%;
	width: 75px;
	height: 75px;
	line-height: 75px;
	text-align: center;
	color: #fff;
	display: inline-block;
	margin-bottom: 20px;
}
.detail-card {
	position: relative;
	cursor: pointer;
}
.detail-card .content {
	position: absolute;
	top: 75%;
	background-color: #f9f9f9;
	width: 80%;
	height: 75%;
	left: 50%;
	transform: translateX(-50%);
	padding: 20px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
	.detail-card .content {
		position: relative;
		width: 100%;
		transform: none;
		left: 0px;
		margin-bottom: 50px;
	}
	.feature-2 {
		margin-bottom: 50px;
	}
}
.detail-card.blue .content {
	background-color: #0c264f;
	color: #fff;
}
.detail-card.white:hover .content {
	top: 50%;
	background-color: #0c264f;
	color: #fff;
}
.detail-card.blue:hover .content {
	top: 50%;
	background-color: #fff;
	color: #000;
}

.feature-3 {
	position: relative;
	margin-bottom: 150px;
}
.feature-3 .text-content {
	width: 75%;
	background-color: #f7f7f7;
	padding: 100px 250px 100px 50px;
}
.feature-3 .missed-deadline {
	position: absolute;
	top: 10%;
	left: 65%;
	width: 25%;
}

@media (max-width: 768px) {
	.feature-3 .text-content {
		width: 100%;
		padding: 100px 50px 100px 50px;
	}
	.feature-3 .missed-deadline {
		top: 5%;
		left: 65%;
		width: 25%;
	}
}

footer {
	background-color: #1a1a1a;
	color: #fff;
	padding: 50px 0;
}
footer h5 {
	text-wrap: nowrap;
}
footer ul {
	padding: 0;
	margin: 0;
}
footer ul li {
	font-size: 14px;
	list-style: none;
	padding-left: 10px;
	margin-bottom: 8px;
}
.long-break-line {
	width: 80%;
	margin: auto;
	height: 1px;
	background-color: #fff;
	margin-top: 20px;
	margin-bottom: 50px;
}
.social-media i {
	background-color: #858585;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	color: #fff;
	font-size: 16px;
	margin-top: 10px;
	margin-right: 10px;
}
.end-line {
	background-color: #6b6868;
	color: #fff;
	padding: 10px 0;
	text-align: center;
}

#testimonials {
	margin: 50px auto;
	width: 80%;
}

.carousel-item {
	text-align: center;
}

.blockquote {
	background-color: #f8f9fa;
	padding: 20px;
	border-radius: 5px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
}

.blockquote p {
	font-size: 18px;
	margin-bottom: 10px;
}

.blockquote-footer {
	font-size: 14px;
	font-style: italic;
	color: #6c757d;
}

/* Rest of the styles... */

.carousel-control-prev-icon,
.carousel-control-next-icon {
	filter: invert(100%);
}

.carousel-control-prev,
.carousel-control-next {
	color: #000;
}

.navbar-light .navbar-nav .nav-link {
	color: rgba(0, 0, 0, 2.5) !important;
}

.breadcrumb {
	background-color: #f5f5f5;
	padding: 8px 55px;
	border-radius: 4px;
}
.breadcrumb-item {
	display: inline-block;
}
.breadcrumb-item + .breadcrumb-item::before {
	content: 'â€º';
	margin: 0 5px;
	color: #777;
}
.breadcrumb-item.active {
	color: #333;
}

.btn-danger {
	color: #fff;
	font-weight: 600;
}

.testimonial {
	margin-bottom: 40px;
}

.testimonial .reviewer {
	font-weight: bold;
	margin-bottom: 10px;
}

.testimonial .location {
	font-style: italic;
	color: #757575;
	margin-bottom: 10px;
}

.testimonial .rating {
	color: #ffd700;
}

.tl {
	position: relative;
	padding: 20px 0 20px;
	list-style: none;
}
.tl:before {
	content: ' ';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 3px;
	margin-left: -1.5px;
	background-color: #eeeeee;
}
.tl &gt; li {
	position: relative;
	margin-bottom: 20px;
	list-style-type: none !important;
}
.tl &gt; li:before,
.tl &gt; li:after {
	content: ' ';
	display: table;
}
.tl &gt; li:after {
	clear: both;
}
.tl &gt; li:before,
.tl &gt; li:after {
	content: ' ';
	display: table;
}
.tl &gt; li:after {
	clear: both;
}
.tl &gt; li &gt; .tl-panel {
	float: left;
	position: relative;
	width: 40%;
	padding: 20px;
	border: 1px solid #d4d4d4;
	border-radius: 5px;
	-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
}
.tl-body {
	font-size: 18px;
	line-height: 26px;
	color: rgba(121, 112, 112, 0.71);
}
.tl &gt; li &gt; .tl-panel:before {
	content: ' ';
	display: inline-block;
	position: absolute;
	top: 26px;
	right: -15px;
	border-top: 15px solid transparent;
	border-right: 0 solid #ccc;
	border-bottom: 15px solid transparent;
	border-left: 15px solid #ccc;
}
.tl &gt; li &gt; .tl-panel:after {
	content: ' ';
	display: inline-block;
	position: absolute;
	top: 27px;
	right: -14px;
	border-top: 14px solid transparent;
	border-right: 0 solid #fff;
	border-bottom: 14px solid transparent;
	border-left: 14px solid #fff;
}
.tl &gt; li &gt; .tl-badge {
	z-index: 1;
	position: absolute;
	top: 16px;
	left: 50%;
	width: 50px;
	height: 50px;
	margin-left: -25px;
	border-radius: 50% 50% 50% 50%;
	text-align: center;
	font-size: 1.4em;
	line-height: 50px;
	color: #fff;
	background-color: #999999;
}
.tl &gt; li.tl-inverted &gt; .tl-panel {
	float: right;
}
.tl &gt; li.tl-inverted &gt; .tl-panel:before {
	right: auto;
	left: -15px;
	border-right-width: 15px;
	border-left-width: 0;
}
.tl &gt; li.tl-inverted &gt; .tl-panel:after {
	right: auto;
	left: -14px;
	border-right-width: 14px;
	border-left-width: 0;
}
.tl-badge {
	font-size: 18px !important;
	font-weight: bold;
}
.tl-badge.primary {
	background-color: #2e6da4 !important;
}
.tl-badge.success {
	background-color: #3f903f !important;
}
.tl-badge.warning {
	background-color: #f0ad4e !important;
}
.tl-badge.danger {
	background-color: #d9534f !important;
}
.tl-badge.info {
	background-color: #5bc0de !important;
}
.tl-title {
	margin-top: 0;
	margin-bottom: 10px;
	color: rgba(45, 45, 72, 0.44);
	font-size: 20px;
}
@media screen and (max-width: 380px) {
	.tl &gt; li &gt; .tl-panel {
		width: 25% !important;
	}
}
@media screen and (max-width: 800px) {
	.tl &gt; li &gt; .tl-panel {
		width: 33%;
	}
}

.notification-box {
    position: fixed;
    right: 10px;
    top: 20px;
    z-index: 2;
}

.fa-close {
    cursor: pointer;
}</pre></body></html>