/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
  --gray1: #4e4e4e;
  --gray2: #e4e4e4;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--gray1);
  background-color: #fff;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
}

a:hover {
  color: var(--gray1);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "OpenSans", sans-serif;
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 40px 0 15px;
  background-color: #fff;
}

.header .logo img {
  padding-left: 2rem;
  max-width: 100%;
  height: 100px;
}

.header .logo span {
  font-size: 20px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  margin-top: 2rem;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  list-style: none;
  align-items: flex-end;
}

.navbar ul > li a {
  background-color: var(--gray1);
  color: white;
  padding: 8px 16px 8px;
  transition: all 0.2s ease;
  font-weight: bold;
  border-radius: 4px;
}

.navbar ul > li a.active {
  background-color: var(--secondary-color);
}

.navbar ul > li a:hover,
.navbar ul > li a:focus {
  color: white;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: -35px;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(16, 16, 16, 0.9);
  transition: 0.3s;
  z-index: 5;
}

.navbar-mobile ul > li a {
  padding: 8px 16px 8px;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
.content-wrapper {
  padding-bottom: 60px;
  box-shadow: 0 21px 20px -5px #b7b7b7;
  background-color: #ffffff;
  padding-top: 80px;
  margin-top: -70px;
}

.content-sidebar {
  padding-top: 1rem;
  margin-right: 2rem;
  padding-bottom: 1.5rem;
  background-color: var(--gray1);
  height: fit-content;
  position: relative;
}

.content-sidebar h4 {
  color: white;
  border-bottom: 1px solid #636363;
  padding-left: 1rem;
}

.content-sidebar a {
  color: white;
}

.content-sidebar ul {
  list-style-type: none;
  padding-left: 2rem;
}

.content-sidebar ul li::before {
  content: "\2022"; 
  color: #797979;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.content-sidebar ul li.active::before {
  color: var(--secondary-color);
}

main {
  background-color: white;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.richtext-content h2,
.richtext-content h3,
.richtext-content h4,
.richtext-content h5 {
  color: var(--secondary-color);
}

.heroblock img {
  object-fit: cover;
  background-color: #F0F0F0;
  border: 1px solid #DDDDDD;
  margin-top: 5px;
  padding: 5px;
}

.leaflet-map {
  height: 100%;
  width: 100%;
}

.leaflet-map--small {
  height: 180px;
}
.leaflet-map--medium {
  height: 350px;
}
.leaflet-map--large {
  height: 600px;
}

/*--------------------------------------------------------------
# Slideshow
--------------------------------------------------------------*/
.slideshow {
  height: 420px;
}
#slideshow {
  position: relative;
}
#slideshow .section-header {
  position: absolute;
  top: 56%;
  background: #fff;
  padding: 12px 30px;
  color: var(--primary-color);
}
#slideshow .section-header h2 {
  margin: 0;
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form-page form .form-page__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}

.form-page form .form-page__field input,
.form-page form .form-page__field textarea,
.form-page form .form-page__field select {
  outline: none;
  border: 1px solid #ccc;
}

.form-page form .form-page__field textarea {
  max-height: 120px;
}

.required {
  color: var(--secondary-color);
  margin-left: 2px;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn.btn-default {
  background-color: var(--secondary-color);
  border: 1px solid var(--gray2);
  color: white;
}

.btn.btn-default:hover,
.btn.btn-default:focus {
  background-color: #cc3738;
  color: #fff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer.footer {
  background: var(--gray2);
  padding: 40px 0 0;
  border-top: 1px solid var(--primary-color);
}

footer.footer ul {
  list-style-type: none;
}

footer.footer ul li::before {
  content: "\2022"; 
  color: #797979;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

footer.footer .credits {
  background-color: var(--gray2);
  margin-top: 1.5rem;
  padding: 30px 0;
  font-size: 13px;
}