.navbar-brand h1 {
	font-size: 20;
	margin: 0;
	color: #45adff;
}

.navbar-brand h1 img {
	display: inline-block;
}

.navbar-brand h1 span {
	display: inline-block;
	color: #008b33;
}

ul.navbar-nav.nav-pills.ml-auto li {
	padding: 0px 15px;
}

.hfooter .footer-content p {
	margin-bottom: 0px;
}

.navbar-nav .nav-item .nav-link {
	/*color: rgba(0,0,0,1);*/
	color: #777 !important;
}

.navbar-nav .nav-item a.nav-link {
	padding-left: 8px;
	padding-right: 8px;
}

.hfooter {
	background-color: #30a0f9a1;
	text-align: center;
	padding: 40px;
}

.map {
	height: 340px;
	padding: 0;
}

nav {
	background-color: #fff;
}

.nav-pills .nav-link.active {

	background-color: #eee;
}

.nav-pills .show>.nav-link {
	background-color: transparent;
}

form .error {
	color: red;
	/*font-size: 5px;*/
}

.btn-info {
	background-color: #45adff;
	border-color: #45adff;
}

/* NEW Showcase related styles */
/* Base */
body,
img,
p,
h1,
h2,
h3,
h4,
h5,
h6,
form,
table,
td,
ul,
ol,
li,
fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}

html {
	box-sizing: border-box;
	scroll-behavior: smooth;
}

* {
	box-sizing: border-box;
}

a,
a:visited {
	color: #000;
	text-decoration: none;
	transition: all 0.4s ease;
	position: relative;
}

a:hover,
a:focus,
a:visited:hover,
a:visited:focus {
	color: #000;
	text-decoration: none;
}

.link {
	color: #0096d6;
	text-decoration: none;
	transition: all 0.4s ease;
	position: relative;
}

.link:hover,
.link:focus {
	color: #0171AD;
	text-decoration: underline;
}

.link.arrow {
	padding-right: 23px;
}

.link.arrow::before {
	display: block;
	content: '';
	position: absolute;
	right: 2px;
	bottom: 8px;
	width: 9px;
	height: 9px;
	border-top: 1px solid #0096d6;
	border-right: 1px solid #0096d6;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.link.arrow:hover::before {
	border-color: #0171AD;
}

@media screen and (max-width: 1114px) and (min-width: 768px) {
	.navbar-brand h1 {
		font-size: 16px;
	}

	.navbar-nav .nav-item a.nav-link {
		padding-left: 4px;
		padding-right: 5px;
		font-size: 12px;
	}

	ul.navbar-nav.nav-pills.ml-auto li {
		padding: 0px 5px;
	}
}

#loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: opacity 0.3s ease;
}

#loader.hidden {
	opacity: 0;
	pointer-events: none;
}

/* Spinner styling */
.spinner {
	width: 60px;
	height: 60px;
	border: 6px solid #ccc;
	border-top-color: #007bff;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}