
  .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.6);
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }


/*------------------------------
  Contact Box
-------------------------------

.contact-box {
  background-color: white;
  color: #000;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.contact-box h5 {
  font-size: 1.5rem; /* Larger font for labels
  color: inherit;
}

.contact-box a {
  color: inherit;
  text-decoration: none;
}

.contact-box:hover {
  background-color: #4fab57;
  color: white;
}

.contact-box:hover a {
  color: white;
}*/


/*------------------------------
  Navbar & Branding
-------------------------------*/
.navbar {
  box-shadow: 0 2px 10px rgba(50, 50, 50, 0.1);
}
.navbar-brand {
  padding: 0;
  margin: 0;
}
.nav-link-find {
  color: #0eae4b;
}

/*------------------------------
  Button Overrides
-------------------------------*/
.btn-outline-secondary {
  color: #fff;
  background-color: #656565;
  border-color: #6c757d;
}
.btn {
  font-weight: 400;
  border: 1px solid transparent;
}

/*------------------------------
  Map & Search Area
-------------------------------*/
#map {
  width: 100%;
  height: 500px;
}
#loc-list {
  font: normal 12px Arial, sans-serif;
  height: 500px;
  overflow-y: auto;
}
.form-control {
  width: 100%;
}
.container-find,
.container-find-2,
.container-2 {
  background-color: #f8f9fa;
  padding: 30px 40px;
  width: 100%;
  border-left: 15px solid white;
  border-right: 15px solid white;
  margin-bottom: 50px;
}
.container-find-2 {
  max-width: 980px;
  padding-left: 20px;
  padding-right: 10px;
}

/*------------------------------
  Hero Section: Main Message
-------------------------------*/
.main-message {
  background: url("../images/Homepage_winter_800.jpg") no-repeat center center;
  background-size: cover;
  height: 75vh;
  position: relative;
  border: 15px solid transparent;
}
.main-headline {
  color: white;
  font-size: 3.5rem;
  animation: m-h 1s ease-in forwards;
}
@keyframes m-h {
  0% { color: transparent; bottom: 40px; }
  100% { color: white; bottom: 0; }
}
.headline2 {
  font-size: 3rem;
  color: #302d24;
  animation: h-2 2s ease-in forwards 0.5s;
}
@keyframes h-2 {
  0% { color: transparent; bottom: 400px; }
  100% { color: #302d24; bottom: 10px; }
}
.main-text {
  font-size: 1.8rem;
  color: white;
  animation: m-t 2s ease-in forwards 1.5s;
}
@keyframes m-t {
  0% { color: transparent; top: 400px; }
  100% { color: white; top: 0; }
}

/*------------------------------
  Responsive Text Sizes
-------------------------------*/
@media (max-width: 576px) {
  .main-headline {
    font-size: 2rem;
  }
  .headline2 {
    font-size: 1.5rem;
  }
  .main-text {
    font-size: 1.2rem;
    color: #3C3A3A;
  }
}
@media (min-width: 768px) {
  .main-headline {
    font-size: 3rem;
  }
  .headline2 {
    font-size: 2.5rem;
  }
  .main-text {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  .main-message {
    background-image: url("../images/Homepage_winter_1400.jpg");
  }
  .main-headline {
    font-size: 2.8rem;
  }
  .headline2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .main-headline {
    font-size: 3rem;
  }
  .headline2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1400px) {
  .main-message {
    background-image: url("../images/Homepage_winter_3000.jpg");
    height: 80vh;
  }
  .main-headline {
    font-size: 3.5rem;
    color: #CDCACA;
  }
  .headline2 {
    font-size: 3rem;
    color: #302d24;
  }
}

/*------------------------------
  Misc Helpers & Utilities
-------------------------------*/
.bg-light {
  background-color: #f8f9fa !important;
}
.make-space {
  padding-top: 20px;
}
.make-space-find {
  padding-top: 60px;
}
.overflow-hidden {
  overflow: hidden;
}
.text-center {
  text-align: center !important;
}
.flex-equal > * {
  flex: 1;
}
@media (min-width: 768px) {
  .flex-md-equal > * {
    flex: 1;
  }
}



