﻿/* ----------------------------------
	Varuables
 ---------------------------------- */
:root {
	--primary-color: #b51e3c;
	--primary-color-dark: #860032;
	--yellow-color: #ffbe0b;
	--pink-color: #ff006e;
	--blue-color-1: #3a86ff;
	--blue-color-2: #002766;
	--dark-color: #121725;
	--green-color: #7bd88a;
	--font-color: #2c3540;   /* v10: was #6c7a87 — darker for readability */
	--bg-color: #fff;
	--heading-color: #0b2238;
	--border-radius: 8px;
	--border-radius-full: 35px;
	--border-color: transparent;
	--border-color-light: #eee;
	--nav-color: #0b2238;
	--dropdown-color: #fff;
	--iframe-filter: grayscale(0%);
	--bg-light: rgba(130, 115, 252, .05);
	--bg-grey: #f7f7f7;
	--footer-bg: #121725;
	--card-bg: #fff;
	--topNavBarHeight: 40px;
	--topBarColor: rgba(255, 255, 255, 1)
}

[data-theme="dark"] {
	--primary-color: #fb5607;
	--yellow-color: #ffbe0b;
	--pink-color: #ff006e;
	--blue-color-1: #3a86ff;
	--blue-color-2: #002766;
	--dark-blue-color: #8338ec;
	--green-color: #7bd88a;
	--font-color: #d0d0d0;   /* v10: was #aaa — darker (lighter, actually) for dark-mode readability */
	--heading-color: #f1f1f1;
	--border-color: rgba(255, 255, 255, 0.2);
	--border-color-light: rgba(255, 255, 255, 0.1);
	--nav-color: #fff;
	--dropdown-color: #252525;
	--iframe-filter: grayscale(100%);
	--bg-color: #171717;
	--bg-light: #111;
	--bg-grey: #252525;
	--gun-color: #efefef;
	--footer-bg: #171717;
	--bg-border: #333;
	--breadcrumb-bg: #333;
	--card-bg: #888c96;
}

.noscroll {
	overflow: hidden;
	height: 100vh;
}

html {
	scroll-behavior: smooth;
}

/* ----------------------------------
	Flexbox and Grid general settings
 ---------------------------------- */
.flexbox {
	display: flex;
}

/* ----------------------------------
	Menu Overwrite
 ---------------------------------- */

.top-bar {
	padding: 0;
	background-color: rgba(147, 149, 151, 0.9);
	z-index: 100;
	position: relative;
	transition: all 0.4s ease 0s;
	display: grid;
	align-items: center;
}


.top-bar ul {
	background-color: transparent;
}

		/* Base styling for dropdown submenu */
		.top-bar ul .is-dropdown-submenu {
			background-color: #ffffff; /* Solid white background */
			border: 1px solid #ffffff; /* Solid border color */
			border-radius: 4px; /* Rounded corners */
			box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), /* Subtle shadow at the bottom */
			0 -2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow at the top */
		}

			/* Styling for dropdown menu items */
			.top-bar ul .is-dropdown-submenu li:hover {
				background-color: #f1f1f1; /* Background color on hover */
			}

			/* Styling for links inside the dropdown */
			.top-bar ul .is-dropdown-submenu li a {
				color: #333; /* Text color */
				text-decoration: none; /* Remove underline */
				display: block; /* Make the link take up the entire item space */
			}

				.top-bar ul .is-dropdown-submenu li a:hover {
					color: #000; /* Text color on hover */
				}

	.top-bar a {
		color: var(--topBarColor);
	}

	.top-bar .topNavLogo {
		height: var(--topNavBarHeight);
	}

	.top-bar a:hover,
	.top-bar a:focus {
		color: rgba(255, 255, 255, 1);
	}

	.top-bar li:hover {
		background-color: rgba(255, 255, 255, 0.1);
	}

.top-bar-right ul ul {
	display: none;
}

.title-bar {
	background-color: #999999;
	z-index: 90;
	position: fixed;
	width: 100%;
	font-size: 1.5rem;
	padding: 0.1rem 0.5rem;
}

.title-bar-title {
	font-weight: 300;
}

.off-canvas a {
	color: rgba(0, 0, 0, 0.7);
}

	.off-canvas a:hover {
		color: rgba(0, 0, 0, 0.9);
	}

.top-bar-right > ul > li {
	height: var(--topNavBarHeight);
}

.home.top-bar {
	position: absolute;
	z-index: 80;
	background-color: transparent;
	height: 100%;
	width: 100%;
}

.text-overlay {
	position: absolute;
	height: 100%;
	width: 80%;
	margin-left: 10%;
	margin-right: 10%;
	top: 50px;
	left: 0;
	z-index: 50;
}

.dropdown.menu > li.is-dropdown-submenu-parent > a:after {
	border-color: white transparent transparent;
}

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
	top: var(--topNavBarHeight);
}

/* ----------------------------------
  Mobile Menu Overwrite
 ---------------------------------- */

.off-canvas {
	background-color: #fbfbfb;
	margin-top: 60px;
	font-size: 1.2rem;
	/* for stiky top menu */
}

	.off-canvas .first {
	}

	.off-canvas .level1 {
	}

	.off-canvas .level2 {
		margin-left: 15px;
	}

/* ----------------------------------
	Tabs Overwrite
 ---------------------------------- */

.tabs {
	border: none;
	border-bottom: 1px solid #e6e6e6;
}

.tabs-title > a {
	border-radius: 10px 10px 0 0;
	font-weight: bold;
	padding: 1rem 1.5rem;
}

/* ----------------------------------
	Footer
 ---------------------------------- */

footer {
	padding: 20px 0;
	/*background-color: #363B48;*/
	background: linear-gradient(135deg, #939597, #8a8f8f);
	font-size: 90%;
	position: relative;
}

	footer a {
		display: block;
		color: rgba(255, 255, 255, 0.7);
	}

		footer a:hover {
			color: rgba(255, 255, 255, 0.9);
		}

	footer h5 {
		margin: 15px 0 0 0;
		color: rgba(255, 255, 255, 0.8);
	}

	footer hr {
		margin: 5pt auto;
	}

.footer_bottom {
	line-height: 35px;
	background-color: #939597;
	font-size: 75%;
	color: rgba(255, 255, 255, 0.8);
	position: relative
}

	.footer_bottom p {
		line-height: 50px;
		margin-bottom: 0;
	}

footer .footer_bottom a {
	color: rgba(255, 255, 255, 0.8);
}

/* ----------------------------------
	Whole Layout - Overwrite
 ---------------------------------- */

body {
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	font-weight: 300;
	color: var(--font-color);   /* v10: apply base text color explicitly */
}

h1,
h2,
h3,
h4,
h5 {
	font-family: Oswald, sans-serif;
	font-weight: lighter; 
	color: #222222
}

ul ul {
	list-style-type: circle;
}

	ul ul ul {
		list-style-type: square;
	}

.row {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0;
	margin-bottom: 0;
	max-width: 1080px;
}

.button {
	border-radius: 8px;
	background-color: #156E8C;
}

	.button:hover,
	.button:focus {
		background-color: #0B5972;
	}

	.button.hollow:hover,
	.button.hollow:focus a.button.hollow:hover,
	a.button.hollow:focus {
		background-color: #156E8C;
		border-color: #156E8C;
		color: white;
	}

.white-text {
	color: white;
}

a {
	color: #156E8C;
}

	a:hover,
	a:focus {
		/*color: #0B5972;*/
		color: #870032;
		/*cranberry*/
	}

img.float_right {
	float: right;
}

img.radius {
	border-radius: 4px;
}

/* ----------------------------------
	Additional Classes
 ---------------------------------- */

.mainWrap {
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
}

.mainContent {
	padding: 30px 0;
}

.section-container {
	color: var(--font-color);   /* v10: was #363B48 — now uses token */
	max-width: 1080px;
	margin: 0 auto;
}

hr.dotted {
	border-color: #ddd;
	border-style: dashed;
}

.card {
	overflow: hidden;
	box-shadow: 0 2px 5px 0 rgb(0 0 0 / 5%), 0 2px 5px 0 rgb(0 0 0 / 2%);
	color: #272727;
	border-radius: 2px;
	margin-right: auto;
	margin-left: auto;
}

	.card .title {
		line-height: 3rem;
		font-size: 1.5rem;
		font-weight: 300;
	}

	.card .content {
		padding: 1.3rem;
		font-weight: 300;
		border-radius: 0 0 2px 2px;
	}

	.card p {
		margin: 0;
	}

	.card .action {
		border-top: 1px solid rgba(160, 160, 160, 0.2);
		padding: 1.3rem;
	}

	.card a {
		transition: color 0.3s ease;
		text-decoration: none;
	}

	.card .image {
		position: relative;
	}

		.card .image .title {
			position: absolute;
			bottom: 0;
			left: 0;
			padding: 0 0 0.2rem 1.2rem;
			color: #fff;
		}

		.card .image img {
			border-radius: 2px 2px 0 0;
		}

		.card .image.fullwidth img {
			width: 100%;
		}

/* ----------------------------------
	Sub Header 
 ---------------------------------- */

.header {
	text-align: center;
	background: #074E68;
	background-size: cover;
	position: relative;
	overflow: visible;
	padding-top: 2.0rem;
	padding-bottom: 4.0rem
}

	.header .headline {
		color: #ffe;
	}

	.header.service {
		background: #80856D;
		background: linear-gradient(135deg, #80856D, #707757);
	}

	.header.product {
		background: #B0a213;
		background: linear-gradient(135deg, #0B5972, #074E68);
		/*background-image:url('../../img7/ConsultingBackground.jpg')	*/
	}

	.header.education {
		background: #4C031E;
		background: linear-gradient(135deg, #7C4C53, #4C031E);
	}

	.header.support {
		background: #870032;
		background: linear-gradient(135deg, #870032, #4C031E);
	}

	.header.about {
		background: linear-gradient(135deg, #156E8C, #363B48);
	}


.header-subnav {
	float: none;
	position: absolute;
	text-align: center;
	margin: 0 auto;
	bottom: 0;
	width: 100%;
}

	.header-subnav li {
		float: none;
		display: inline-block;
	}

		.header-subnav li a {
			padding: 0.9rem 1rem;
			font-size: 0.75rem;
			color: #ffe;
			border-radius: 8px 8px 0 0;
			display: block;
			letter-spacing: 1px;
			transition: all 0.35s ease-in-out;
		}

@media screen and (max-width: 40rem) {
	.header-subnav li a {
		padding: 0.3rem 0.3rem;
	}
}

.header-subnav li a.is-active {
	background: rgba(250, 250, 250, 0.15);
}

.header-subnav li a:hover {
	background: rgba(250, 250, 250, 0.15);
	transition: all 0.35s ease-in-out;
}

.header-subnav .sub {
	font-weight: normal;
}

/* @media screen and (max-width: 40em) {
   .header-subnav li { 
    display: none;
  }
 } */

/* ----------------------------------
	Magellan: Skicky side nav 
 ---------------------------------- */

[data-magellan] a {
	color: #222;   /* v10: was #333 — darker */
}

	[data-magellan] a.active,
	[data-magellan] a.active:focus {
		background: #B0a213;
		color: #fff;
	}

.MagellanHeader {
	margin-top: 50px;
	color: #222222;
	font-size: 120%;
}

.magellan .menu > li > a {
	font-size: 80%;
	padding: 0.5rem 1rem;
}

.magellanAdjust {
	margin-top: -60px;
	padding-top: 60px;
}

/* ----------------------------------
	Others 
 ---------------------------------- */

.clear-both {
	clear: both;
}

.new {
	vertical-align: super;
	font-size: 75%;
	color: maroon;
	font-style: italic;
	margin-right: 4px;
}

.important {
	color: red;
	font-weight: 600;
	font-style: italic;
}
