.hero-section {
  position: relative;
  overflow: hidden;
  background: url(../images/top-hero.jpg) no-repeat;
  background-size: cover;
  background-position: left center;
  padding: 100px 0 50px;
 }
.quote-top{
	max-width: 700px;
    width: 96%;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    padding: 70px;
    padding-bottom: 225px;
}
.logo{
	max-width: 200px;
}
.logo img{
	max-width: 100%;
	max-height: 50px;
	height: auto;
	width: auto;
}
.quoteform{
	width: 90%;
	max-width: 600px;
    margin: -170px 0 0 50px;
}
.feature-placeholder {
  height: 48px;
  background: #e5e5ea;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.main-img-placeholder {
  width: 100%;
  height: 300px;
  background: #e5e5ea;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.title-placeholder {
  width: 60%;
  height: 20px;
  background: #e5e5ea;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.text-placeholder {
  width: 100%;
  height: 8px;
  background: #e5e5ea;
  border-radius: 5px;
  margin-bottom: 0.5rem;
}
.footer-placeholder {
  background: #e5e5ea;
  min-height: 100px;
}
.nav-placeholder {
  width: 60px;
  height: 8px;
  background: #e5e5ea;
  border-radius: 5px;
  margin: 0 8px;
}
.get-quote{
	background: rgba(var(--var-rgb-main), 1);
	color: rgba(var(--var-rgb-main-button), 1);
}
.get-quote:hover{
	background: rgba(var(--var-rgb-main), 0.8);
	color: rgba(var(--var-rgb-main-button), 1);
}
.footernav{
	display: flex;
	justify-content: center;
}
.footernav .nav-placeholder{
	background: #fff;
}
@media (max-width: 768px) {
  .hero-content {
	max-width: 100%;
	padding: 0 1rem;
  }
  .feature-placeholder {
	height: 32px;
  }
  .main-img-placeholder {
	height: 180px;
  }
	nav .get-quote{
		display: none;
	}
	.quote-top{
		margin: 0 auto;
	}
	.quoteform{
		width: 96%;
		margin: -170px auto 0;
	}
	.quote-top{
		padding: 30px 30px 180px;
	}
	nav .container{
		max-width: 100%;
	}
	.navbar-toggler:focus{
		box-shadow: none;
	}
	#mobileNavMenu{
		align-items: flex-end;
	}
	#mobileNavMenu .nav-placeholder{
		width: 50%;
		margin-bottom: 10px;
	}
}
/* Mobile Nav Styles */
.navbar-toggler {
  font-size: 1.5rem;
  outline: none;
}
.mobile-nav-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  z-index: 100;
  flex-direction: column;
  padding: 1rem 0;
}
.mobile-nav-menu .nav-link {
  color: #222;
  padding: 0.75rem 2rem;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #eee;
}
.mobile-nav-menu .nav-link:last-child {
  border-bottom: none;
}
.mobile-nav-menu.show {
  display: flex;
}
@media (min-width: 768px) {
  .mobile-nav-menu {
	display: none !important;
  }
}