@charset "utf-8";
/* CSS Document */

html {
	scroll-behavior: smooth;
}

.bg-body-white {
	background-color: #fff;
}

.bg-body-dark-grey {
	background-color: #373737;
	color: #fff;
}

.bg-body-light-green {
	background-color: #c2d78d;
}

.bg-body-dark-green {
	background-color: #387802;
	color: #fff;
}

.navbar .navbar-nav .nav-link:hover {
	background-color: #387802;
	color: #fff;
}

.btn-green {
    color: #fff;
    background-color: #387802;
	border-radius: 0px;
}

.btn-green:hover {
    background-color: #a4bf5e;
}

.btn-blue {
    color: #fff;
    background-color: #045eac;
	border-radius: 0px;
}

.btn-blue:hover {
    background-color: #75bfff;
}

.text-green {
	color: #387802;
}

.background-green {
	background-color: #387802;
}

@media screen and (min-width:992px) {
	.navbar {
	padding: 0;
	}
}

/* ============ desktop view ============ */

@media all and (min-width: 992px) {
	.navbar .nav-item .dropdown-menu{ display: none; }
	.navbar .nav-item:hover .nav-link{   }
	.navbar .nav-item:hover .dropdown-menu{ display: block; }
	.navbar .nav-item .dropdown-menu{ margin-top:0; }
}	

/* ============ desktop view .end// ============ */

.navbar .navbar-nav .nav-link {
	padding: .5em 1em;
	transition: all .5s;
	color: #fff;
	letter-spacing: .05rem;
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28164, 191, 94, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
	border-radius: 0px;
	background-color: #a4bf5e;
}

.dropdown-menu li {
	position: relative;
}

.dropdown-menu .submenu {
	display: none;
	position: absolute;
	left: 100%;
	top: -7px;
}

.dropdown-menu:hover > .submenu {
	display: block;
}

.dropdown-item-sub {
	background-color: #bfdb75;
}

.gotopbtn {
	position: fixed;
	width: 50px;
	height: 50px;
	background: #387802;
	bottom: 0px;
	right: 50px;
	text-decoration: none;
	text-align: center;
	line-height: 50px;
	color: white;
	font-size: 22px;
}

@media screen and (max-width:991px) {
	.navbar-brand {
		padding-left: .7em;
	}
	.navbar-nav {
		padding-top: .5em;
	}
}

.body {
	padding-bottom: 40px;
}

.body_no_bottom_margin {
	padding-bottom: 0px;
}

.alert {
	border-radius: 0px;
}

.alert-primary {
	background-color: #bbc4c9;
}

.badge {
	border-radius: 0px;
	padding: 10px;
	background-color: #fff;
	color: #387802;
}

header {
	background-image: url("/habitat/NWL/images/488_pronghorn_jeffrey_hartmann_odfw.jpg");
	background-size: cover;
	background-position: center;
}

h1 {
    font-size: 2rem;
    text-transform: inherit;
    font-weight: 400;
	margin-top: 10px;
    margin-bottom: 20px;
	z-index: 2;
}

h5 {
	font-size: 1.25rem;
}

.lead {
	letter-spacing: .05rem;
}

.accordion {
  color: #000;
  cursor: pointer;
  padding: 0px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.accordion .card-header:after {
    font-family: 'FontAwesome';  
    content: "\f068";
    float: right; 
}
.accordion .card-header.collapsed:after {
    /* symbol for "collapsed" panels */
    content: "\f067"; 
}

.panel {
  padding: 10 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.card {
  border: 1px solid #dfdfdf;
  border-radius: 5px;
}
.card-header {
  border-bottom: 0px;
  background-color: #dfdfdf;
}

.footer_link {
	text-decoration: none;
	color: #a4bf5e;
}

.footer_link:hover {
	text-decoration: none;
	color: #387802;
}