:root {
    --navbar-bg-color: rgba(1, 5, 37, 0.9);;
}

body {
  line-height: 1.4;
  font-family: 'Roboto', sans-serif;
  color: #000000;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.5px;
  overflow-x: hidden;
}
/*
a {
    color: #b3941d;
    text-decoration: none;
}
*/

/* Next may not be necessary */

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 150px;
  height: 150px;
  /* margin: -75px 0 0 -75px; */
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}


@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

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

/* Add animation to "page content" */

.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0
  }
  to {
    bottom: 0px;
    opacity: 1
  }
}

@keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0
  }
  to {
    bottom: 0;
    opacity: 1
  }
}

/* End of not sure if needed. */


.header {
  /* background: url('../images/bg-banner.png') no-repeat fixed;
  background-size: cover; */
  min-height: 50px;
  position: relative;
}


.bg-color {
  background-color: var(--navbar-bg-color);
  min-height: 50px;
}



.navbar-default {
  background-color: transparent;
  border: 0px;
  padding: 0px 0;
  transition: all 0.3s;
}

@media (max-width: 768px) {
	.navbar-default {
		background: rgba(64, 75, 97, 0.9);
        padding: 0 0;
	}
}
.navbar-default .navbar-brand:focus, .navbar-default .navbar-brand:hover {
  color: #002F2F;
}

.top-nav-collapse {
  padding: 0;
  background: rgba(64, 75, 97, 0.9);
}

.logo-dec {
  color: #b3941d;
}

.navbar-default .navbar-brand {
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
}

.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
  color: #fff;
}

.navbar-brand {
  padding: 0 0 5px 0;
  font-size: 24px;
  text-transform: uppercase;
  /* padding: 15px 0px;
  margin-top: 6px; */
}

.navbar-default .navbar-nav>li>a {
  padding: 5px 10px;
  font-size: 14px;
  line-height: 54px;
  font-weight: 400;
  text-transform: uppercase;
  background: transparent;
  color: #fff;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}

.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover {
  color: #b3941d;
  /* background-color: transparent; */
    background-color: var(--navbar-bg-color);
}

.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover {
  /* background-color: transparent; */
    background-color: var(--navbar-bg-color);
    color: #b3941d;
}

.navbar {
    background-color: var(--navbar-bg-color);
    min-height: 50px;
    max-height: 50px;
    z-index: 1000000000000000000;
}

.nav-link:hover {
    min-height: 10px;
    max-height: 10px;
}

.form-control::-webkit-input-placeholder {
    opacity: 0.5;
}

.form-control:-moz-placeholder {
    opacity: 0.5;
}

.form-control::-moz-placeholder {
    opacity: 0.5;
}

.form-control::placeholder {
    opacity: 0.5; /* Firefox */
}

.form-control:-ms-input-placeholder { /* Edge 12 -18 */
    opacity: 0.5;
}