html {
      scroll-behavior: smooth;
    }
	body 
{
	margin: 0;
	font-family: "Oswald" !important;
	font-size: 1rem !important;
}

.nav-scheme
{
	background-color: #fffe !important;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

a
{
	transition-duration: 1s;
	text-decoration: none !important;
	color: #a8a8a8;
}

a:hover
{
	text-decoration: none !important;
	transition-duration: 1s;
	color: #000c;
}

p
{
	color: #757575;
}

h1
{
	color: #0068B5;
}

h2
{
	font-size: 1.2rem;
	font-family: Oswald;
}

h3
{
	font-size: 1rem;
	font-family: Oswald;
}

h4
{
	font-size: 1rem;
	font-family: Oswald;
}

.text-shadow 
{
  color: rgb(255, 255, 255);
  text-shadow: -1px -1px 1px rgba(255, 255, 255, 0.2), 1px 1px 1px rgba(0, 0, 0, 0.6);
}

.card
{
	border-radius: 0px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 8px;
	background-color: #fffe;
	min-height: 40rem;
	border: none;
}

.card-title
{
	font-size: 1.2rem;
}

.location-card
{
	border-radius: 0px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 8px;
	background-color: #000c;
	min-height: 30rem;
	padding: 1rem;
	color: #fff;
}

.location-heading
{
	padding-left: 1rem;
}

.card-img-top
{
	border-radius: 0px;
}

.home-card
{
	border-left: 1px solid #222222;
	background-color: #0000008f;
	padding: 1rem;
}

.home-bg
{
	background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.1)), url("home-bg.webp");
	min-height: 100vh;
	background-attachment: scroll;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.locations-bg
{
	background-image: linear-gradient(rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.0)), url("locations-bg.webp");
	min-height: 100vh;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.aboutus-bg
{
	background-image: linear-gradient(rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.0)), url("footer-bg.webp");
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	background-color: #fff;
}

.footer-bg
{
	background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url("footer-bg.webp");
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	background-color: #eee;
}

.btn-outline-primary
{
	font-size: 0.8rem;
	min-width: 90px;
	border-radius: 0px;
}

.down-arrow 
{
  position: absolute;
  top: calc(100vh - 80px);
  left: calc(50% - 14px);
  width: 0;
  height: 30px;
  animation: jumpInfinite 1.5s infinite;
}

.down-arrow:after 
{
  content: " ";
  position: absolute;
  top: 12px;
  left: -10px;
  width: 16px;
  height: 16px;
  transform: rotateZ(45deg);
}

.bi-arrow-down
{
	color: #fff;
	font-size: 2rem;
}

.bi-mailbox2-flag
{
	font-size: 1rem;
}

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 20px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #fffc; /* Set a background color */
  color: #000; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 10px; /* Some padding */
  font-size: 24px; /* Increase font size */
}

#myBtn:hover {
  background-color: #fffc; /* Add a dark-grey background on hover */
}