/* CSS Document */

/* Colours */

/*default & IE*/
/* Override the primary color*/
:root
{
	--bs-primary: red;
	--bs-heading-color: var(--bs-body-color);
	--bs-body-bg-rgb: 255,255,255;
	--bs-body-bg: #fff;
	--text-outline: #fff;
	--bs-border-radius: 20px;
}

[data-bs-theme=dark]
{
	--bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 1.95);
	--bs-box-shadow-lg: 1rem 1rem 3rem rgba(0, 0, 0, 0.95);
	--bs-body-bg-rgb: 48,48,48;
	--bs-body-bg: #222;
	--text-outline: #000;
}

body
{
	background-color: #303030;
}

.bg-main
{
	background-color: #303030;
	background-color: rgba(48, 48, 48, var(--bs-bg-opacity));
	color: white;
}

footer.bg-main
{
	background-color: #ccc;
	color: #000;
}

#navMain
{
	background-color: rgba( var(--bs-body-bg-rgb), 0.9);
}


.navbar-nav .nav-link.active, .nav-link.active, .nav-link:hover
{
	--bs-nav-pills-link-active-bg: #ef222f;
	background: #ef222f;
	color: #fff;
}

@media (prefers-color-scheme:dark)
{
	*
	{
		color-scheme: light
	}

	.googlemap
	{
		filter: invert() hue-rotate(180deg) saturate(50%) brightness(1.1) contrast(.8);
	}

	#navMain
	{
		background-color: rgba(32, 32, 32, 0.9);
	}

	footer.bg-main
	{
		background-color: #111;
		color: white;
	}
}

@media (prefers-color-scheme:light)
{
	*
	{
		color-scheme: light
	}

	footer.bg-main
	{
		background-color: #ccc;
		color: #000;
	}
}


/* Global Styles */

*
{
	/*border:1px solid red*/
}

#header-image
{
	height: 100%; /* Default height */
	transition: height 0.3s ease; /* Smooth shrinking effect */
}

.card
{
	border-width: 10px;
}

	.card .card
	{
		border-width: 2px;
		border-radius: 5px;
		margin: 5px;
		background-color: rgba(255, 255, 255, 0.2);
	}
	

.mk-box-icon-28
{
	line-height: 32px;
	height: 36px;
	width: 36px;
	border-radius: 50%;
	background-color: var(--bs-secondary-bg);
	margin: auto;
}

.mk-svg-icon
{
	width: 32px;
	height: auto;
	fill: currentColor;
	margin: 1px;
}

body::before
{
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-image: url(../images/logo.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.25;
	z-index: -1;
}

body
{
	/*margin: 0;
	padding: 0;
	background-position: center;
	background-imag2e: url(../logo.png);
	background-repeat: no-repeat;
	background-size:cover;
	top: 0;
	width: 100vw;*/
}

header, footer, .card
{
	backdrop-filter: blur(16px);
}

.text-outline-2
{
	-webkit-text-stroke: 2px var(--text-outline);
}

.text-outline-1
{
	-webkit-text-stroke: 1px var(--text-outline);
}

.text-shadow
{
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* horizontal-offset vertical-offset blur-radius color */
}
