.toppest {
	height: 32px;
	background-color: orange;
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: 1500;
}

body {
	overflow-x: hidden;
	width: 100vw;
}

.navbar {
	padding-left: 15%;
	padding-right: 15%;
	background-color: white !important;
	/* position: fixed; */
	/* top: 0px; */
	width: 100vw;
	z-index: 1500;
	padding-top: 0;
	padding-bottom: 0;
	box-shadow: 0px 5px 10px rgba(0, 53, 4, 0.195);
	overflow-x: hidden;
	;
}

.navbar-nav .nav-link {
	color: #000080 !important;
}

.navbar-nav .active {
	color: blue !important;
}

.dropdown-item.active {
	background-color: inherit !important;
}

.content {
	position: absolute;
	top: 50px;
	width: 100vw;
	min-height: calc(100vh + 4em);
	/* padding-bottom: 4em; */
	background: linear-gradient(90deg, #000080 -20%, rgba(200, 255, 200, 1) 50%, #000080 120%);
}

.content h2,
.content h3,
.content h4,
.content h5,
.content p,
.content li,
.content ul,
.content address {
	color: #000080;
}

.content h2 {
	font-family: georgia;
}

.titleHolder {
	position: sticky;
	/*top: 96px;*/
	width: 100vw;
	padding-left: 15%;
	padding-right: 15%;
	background-color: green;
	z-index: 1400;
	min-height: 32px;
	overflow-x: hidden;
}

.titleHolder h1,
.titleHolder h3,
.titleHolder h4 {
	color: white;
}

.titleHolder h3 {
	font-style: italic;
	font-family: cursive;
}

@media (max-width: 767.98px) {
	.titleHolder h1 {
		font-size: 1.4em;
	}

	.titleHolder h3 {
		font-size: 1em;
	}

	.titleHolder {}
}

@media (max-width: 575.98px) and (max-width: 767.98px) {
	.titleHolder h1 {
		font-size: 1.2em;
	}

	.titleHolder h3 {
		font-size: 0.8em;
	}

	.titleHolder {}
}

.services {
	margin-left: 15%;
	margin-right: 15%;
}

.services .card {
	border-radius: 10px !important;
	margin-top: 1em;
	box-shadow: 0px 5px 10px rgba(0, 53, 4, 0.195)
}

.products {
	margin-left: 15%;
	margin-right: 15%;
}

.products .card {
	border-radius: 10px !important;
	margin-top: 1em;
	box-shadow: 0px 5px 10px rgba(0, 53, 4, 0.195)
}

h2 {
	color: #000080;
}

.card-body h4 {
	padding-top: 10px;
	color: white !important;
	background-color: orange !important;
}



@media (min-width: 575.98px) and (max-width: 900px) {
	iframe {
		width: 30em;
		height: 20em;
	}
}

@media (max-width: 575.98px) {
	iframe {
		width: 12em;
		height: 8em;
	}
}

.footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	background-color: #000080;
	color: white;
	text-align: center;
	height: 3em;
	padding-top: 0.5em;
}


.spinner {
	border: 4px solid rgba(0, 0, 0, 0.1);
	border-left-color: #3498db;
	/* Blue color for the spinning part */
	border-radius: 50%;
	width: 100px;
	height: 100px;
	animation: spin 1s linear infinite;
	display: none;
	/* Hidden by default */
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}