body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
}

html {
  scroll-behavior: smooth;
}

:target:before {
  content: "";
  display: block;
  height: 100px;
  margin: -100px 0 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  color: #133D73;
}

h1, h2 {
  text-transform: uppercase;
}

.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6 {
  color: white;
}
h1 {
  font-size: 4rem;
}
h2 {
  font-size: 3rem;
  font-weight: 600;
}

.btn {
  border-radius: 8px;
}
.btn-primary {
  background-color: #EA6837;
  border: 0;
  color: #FFFFFF;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255,255,255,1);
}

nav.website-header {
  background-color: rgba(33, 60, 113, 0.8);  
}
.website-header-logo {
  max-width: 84px;
  max-height: 72px;
}
nav .website-header-name {
  display: none;
}
.navbar-light .navbar-nav .nav-link {
  color: white;
  font-weight: 500;
}

.content-nav-offset {
  padding-top: 80px;
}

.content-nav-offset-small {
  padding-top: 110px;
}

@media all and (min-width: 992px) {
  .content-nav-offset {
    padding-top: 80px;
  }
  .home-top-bar {
    background-size: 100% 100%;
    min-height: 670px;
  }
  .home-white-wave-bar {
    background-size:100% 100%;
    min-height: 100px;
  }
  .home-garbage-wave-bar {
    background-size:100% 100%;
    min-height: 300px;
  }
  .home-bottom-wave-bar {
    background-size:100% 100%;
    min-height: 300px;
  }
  .home-top-bar h1 {
    font-size: 6rem;
    font-weight: 700;
    color: #133D73;
  }
  .home-top-bar2 {
    background-size:100% 100%;
    min-height: 500px;
  }
  .home-top-bar3 {
    background-size:100% 100%;
    min-height: 400px;
  }
  .home-top-bar4 {
    background-size:100% 100%;
    min-height: 200px;
  }
}

.dark-bar {
  background-color: #133D73;
}

.bottom-footer-bar a {
  color: #FFFFFF;
}

.offcanvas-active {
	overflow: hidden;
}

.offcanvas-header {
  display: none;
}

@media (max-width: 992px) {
  .offcanvas-header{ display:block; }
  .navbar-collapse {
    position: fixed;
    top:0; 
    bottom: 0;
    left: 100%;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    overflow-y: auto;
    visibility: hidden;
    background-color:#002146;
    transition: visibility .2s ease-in-out, transform .2s ease-in-out;
  }
  .navbar-collapse.show {
    visibility: visible;
    transform: translateX(-100%);
  }
  .navbar-dark .navbar-nav .nav-link {
    color: white;
  }
  .nav-link {
    font-size: 1.2rem;
  }  
}

#scroll-button { 
  width: 190px; 
  position: fixed; 
  top: 85%;
  display: none;
}

.spnsr-name {
  margin-top: 20px;
}

.cookiealert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0 !important;
  z-index: 999;
  opacity: 0;
  border-radius: 0;
  background: #212327 url("cubes.png");
  transform: translateY(100%);
  transition: all 500ms ease-out;
  color: #ecf0f1;
}

.cookiealert.show {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 1000ms;
}

.cookiealert a {
  text-decoration: underline
}

.cookiealert .acceptcookies {
  margin-left: 10px;
  vertical-align: baseline;
}