body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f0f0f0;
}

body h1{
	color: #084F6A;
}

body h2{
	color: #0C7098;
}

body h3{
	color: #0F90C3;
}


header{
	background-color: #084F6A; /*#333; */
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 0;
	text-align: center;
	position: fixed;
	top: 0px;
	width: 100%;
	z-index: 999;

}

header h1{
	color: #fff;
}


footer {
	background-color: #084F6A; /*#333; */
	color: #fff;
	/* display: flex;
	justify-content: center; */
	align-items: center;
	padding: 10px 0;
	text-align: center;
	/*position: fixed;
	bottom: 0px;
	width: 100%; */
  overscroll-behavior: none;
}

logo {
	position: absolute;
	left: 0;
	padding: 10px;
}

nav {
	/* top: 38px; */
	margin-top: 68px;
	width: 100%;
	position: fixed;
	/* overflow: auto; */
	background-color: #0B76A1; /* #ddd;  */
	color: #fff;
	padding: 10px 0;
	text-align: center;
	z-index: 999;
	
}

nav a {
	margin: 0 10px;
	text-decoration: none;
	color: #fff; /*#333;   */
}


section {
	padding: 20px;
}

.cr{
	font-size: 12px;
	padding-top: 10px 0;
	
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* Responsive design */
@media (max-width: 600px) {
	body {
		font-size: 18px;
	}
	nav a {
		display: block;
		margin: 10px 0;
	}
}






/* slider  */
* { box-sizing: border-box; }
body {
  font-family: Verdana, sans-serif;
  background: #f9f9f9;
  
}

/* Smooth scroll for better refresh behavior */
html {
  scroll-behavior: smooth;
}

.mySlides { display: none; }
img { vertical-align: middle; }

/* Section spacing */
#businesses {
  position: relative;

/* padding: 70px; */
margin-top: 0px;


  margin-bottom: 50px; /* spacing below section */
}

/* Slideshow container */
.slideshow-container {
  max-width: 900px;
  height: 400px;
  position: relative;
  margin: 0 auto;
  border-radius: 0px;
  overflow: hidden;
  background-color: #000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Make images auto-fit without cropping */
.slideshow-container img {
  width: 100%;
  height: 100%;
  /* object-fit: contain; */
  /* object-position: center;
  background-color: #000; */
  object-fit: cover;

}

/* Caption text */
.text {
  color: #fff;
  font-size: 16px;
  padding: 8px 12px;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  background: rgba(0,0,0,0.5);
}

/* Number text */
.numbertext {
  color: #fff;
  font-size: 13px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Dots / Indicators */
.dot {
  height: 12px;
  width: 12px;
  margin: 0 3px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  cursor: pointer;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 3.5s;
}

@keyframes fade {
  from { opacity: .4; }
  to   { opacity: 1; }
}

/* Responsive */
@media only screen and (max-width: 600px) {
  .slideshow-container { height: 250px; }
  .text { font-size: 12px; }
}





 