@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&display=swap');
:root {
  --darkgreen-color:#1A3D35;
  --green-color:#1A3D35;
  --main-bg-color: coral;
  --main-txt-color: #337ab7;
  --main-padding: 15px;
  --main-nav-color:#1A3D35;
  --orange-color:#e9c786;
  --mustard-color:#e9c786;
  --menu-speed: 0.75s;
  --primary-color: #0d6e8bbf;
}
@media (prefers-color-scheme: dark) {
  /* body {
    background: #000;
    color:#fff !important;
  }
   p{
     color:#ffffff !important;
   } */
}

body {
    color: var(--darkgreen-color);
}

.d-sm-block {
    padding: 0 15px;
}

a {
    color: #0054B3;
}


@media (max-width: 767px) {
    
  #section1 .order-md-1 {
      order: 1;
  }
  
  #section1 .order-md-2 {
      order: 2;
  }
  
  .container {
      max-width: 100%;
  }
  
}

@media (max-width:991px){
    
    .form-check-input {
        margin-left:0;
    }
    
    .form-check-label {
        padding-left: 20px;
        padding-right: 0;
    }
}


@media (min-width: 1200px){
.container {
    max-width: 1440px;
    margin:auto;
    padding: 0 40px;
    /* overflow:hidden; */
  }
}

/* MENU STYLES */
.fixed-top {
  z-index:49;
}

.partner-link {
	color: #ffffff;
	text-decoration: underline;
    font-weight: 300;
	z-index: 60;
	position: fixed;
	height: 80px;
	right: 90px;
	top: 0;
	padding-top: 5px;
	display: flex;
    align-items: center;
	transition: 0.5s;
	cursor: pointer;
}

.partner-link:hover {
	color: var(--mustard-color);
	font-size: 17px;
    margin-right: -4px;
}

.partner-panel {
    position: fixed;
    top: 80px;
    right: -350px; 
    width: 340px; 
    height: auto;
    background-color: white;
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.2); 
    transition: right 0.3s ease-in-out;
    z-index: 999;
	text-align: center;
    padding: 72px 26px 26px 26px;
}

.partner-panel h2 {
	margin-bottom: 25px;
}

.partner-panel .close {
	display: block;
    position: absolute;
    top: 0;
    right: 10px;
}

.partner-panel.slide-in {
	right: 30px;
}

/* Hamburger Menu */
.menu-wrap {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
}

/* .menu-wrap .toggler {
  position: absolute;
  top: 25px;
  right: 20px;
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
}

.menu-wrap .hamburger {
  position: absolute;
  /* top: 10px;
  top: 15px;
  right: 20px;
  z-index: 1;
  width: 60px;
  height: 60px;
  padding: 1rem;
  /* background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
} */
.menu-wrap .toggler {
  position: absolute;
  top: 20px;
  right: 32px;
  z-index: 2;
  cursor: pointer;
  width: 40px;
  height: 40px;
  opacity: 0;
}

.menu-wrap .hamburger {
  position: absolute;
  /* top: 10px; */
  top: 17px;
  right: 30px;
  z-index: 1;
  width: 45px;
  height: 50px;
  padding: .5rem;
  /* background: var(--primary-color); */
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Hamburger Line */
.menu-wrap .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: #fff;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

/* Hamburger Lines - Top & Bottom */
.menu-wrap .hamburger > div::before,
.menu-wrap .hamburger > div::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -10px;
  width: 100%;
  height: 2px;
  background: inherit;
}

/* Moves Line Down */
.menu-wrap .hamburger > div::after {
  top: 10px;
}

/* Toggler Animation */
.menu-wrap .toggler:checked + .hamburger > div {
  transform: rotate(135deg);
}

/* Turns Lines Into X */
.menu-wrap .toggler:checked + .hamburger > div:before,
.menu-wrap .toggler:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}

/* Rotate On Hover When Checked */
.menu-wrap .toggler:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}

/* Show Menu */
.menu-wrap .toggler:checked ~ .menu {
    visibility: visible;
    width: 350px;
    /* right: 0; */
    opacity: .95;
    /* transform: */
}

.menu-wrap .toggler:checked ~ .menu > div {
  transform: translateX(0px);
  transition-duration: 0.75s;
  transition-duration: var(--menu-speed);
}

.menu-wrap .toggler:checked ~ .menu > div > div {
  opacity: 1;
  transition:  opacity 0.4s ease 0.4s;
}

.menu-wrap .menu {
  position: fixed;
  top: 0;
  right: 0px;
  /* width: 40%; */
  height: 100%;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-overflow-scrolling: touch;
}

.menu-wrap .menu > div {
  /* background: var(--overlay-color); */
  background: #164722;
  background: var(--green-color);
  border-radius: 0%;
  width: 350px;
  height: 100%;
  display: flex;
  flex: none;
  align-items: flex-start;
  justify-content: center;
  transform: translateX(500px);
  transition: all 0.7s ease;
  padding: 8rem 0 0 0;
}

.menu-wrap .menu > div > div {
  text-align: right;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menu-wrap .menu > div > div > ul > li {
  list-style: none;
  color: #fff;
  font-size: 1rem;
  padding: .7rem;
}

.menu-wrap .menu > div > div > ul > li > a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s ease;
}


/* Page Navigation Menu */
.navbar{
  background:#164722;
  background:var(--green-color);
  color:#fff;
  height:80px;
}

.nav-link{
  color:#fff;
  font-weight: 300;
}

.nav1 {
  /* float:left; */
  padding-top:2px;
}

.nav1 ul{
  /* background:var(--green-color); */
  list-style-type: none;
  text-align: center;
  margin: 0;
  padding: 0;
}

.nav1 ul, .nav1 li {
  margin: 0; padding: 0;
  display: inline-block;
  /* font-size: 20px;
   padding: 20px;  */
}

.nav-link:hover {
  color: #E5C200;
  color: var(--mustard-color);
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: initial !important;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-width: 5px;
    border-color: #dee2e6 #dee2e6 #fff;
    border-top-color: rgb(222, 226, 230);
    border-right-color: rgb(222, 226, 230);
    border-bottom-color: rgb(255, 255, 255);
    border-left-color: rgb(222, 226, 230);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: .9rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 300;
    color: var(--darkgreen-color);
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.nav-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  width:100%;
}


.nav-tabs li {
  /* padding:0 80px; */
  text-align: center;
  /* max-width: 450px; */
}

.nav-item h3 {
  padding-top:30px;
  font-size:26px;
  font-weight: 500;
}
.sfrlps
{
  /* background-image: url("../images/Fullsize-hero-img.jpg"); */
  background-image: url("../images/cropped-hero-img-280.png"); /* Put background image for campaign specific landing page */
  /* max-height: 100%; */
}
.generallps
{
  background-image: url("../images/cropped-hero-img-280-general.png"); /* Put background image for campaign specific landing page */
}
.generallps480 {
  background-image: url("../images/generalheader-480.png"); 
}
.ondemandlps480 {
  background-image: url("../images/ondemandheader-480.png"); 
}
.smallloanslps
{
  background-image: url("../images/cropped-hero-img-280-small-loans.jpg"); /* Put background image for campaign specific landing page */
}
.alexlps
{
  background-image: url("../images/cropped-hero-img-280-alex.jpg"); /* Put background image for campaign specific landing page */
}
.bridgelps
{
  background-image: url("../images/cropped-hero-img-280-bridge.jpg"); /* Put background image for campaign specific landing page */
}

.smallbalancelps
{
  background-image: url("../images/cropped-hero-img-280-smallbalancesbl.jpg"); /* Put background image for campaign specific landing page */
}
.multifamilyloanslps
{
  background-image: url("../images/cropped-hero-img-280-multifamilyloans.jpg"); /* Put background image for campaign specific landing page */
}
.commercialmortgagelps
{
  background-image: url("../images/cropped-hero-img-280-commercialmortgage.jpg"); /* Put background image for campaign specific landing page */
}
.apartmentfinancinglps
{
  background-image: url("../images/cropped-hero-img-280-apartmentfinancing.jpg"); /* Put background image for campaign specific landing page */
}

.brokerlps
{
  background-image: url("../images/cropped-hero-img-280-broker.png"); /* Put background image for campaign specific landing page */
}
.freddielps
{
  background-image: url("../images/cropped-hero-img-280-freddie.jpg"); /* Put background image for campaign specific landing page */
}
.fannielps
{
  background-image: url("../images/cropped-hero-img-280-fannie.jpg"); /* Put background image for campaign specific landing page */
}
.fhalps
{
  background-image: url("../images/cropped-hero-img-280-fha.jpg"); /* Put background image for campaign specific landing page */
}
.seniorslps
{
  background-image: url("../images/cropped-hero-img-280-seniors.jpg"); /* Put background image for campaign specific landing page */
}
.greenlps
{
  background-image: url("../images/cropped-hero-img-280-green.jpg"); /* Put background image for campaign specific landing page */
}
.cmbslps
{
  background-image: url("../images/cropped-hero-img-280-cmbs.jpg"); /* Put background image for campaign specific landing page */
}
.mezzaninelps
{
  background-image: url("../images/cropped-hero-img-280-mezzanine.jpg"); /* Put background image for campaign specific landing page */
}
.apllps
{
  background-image: url("../images/cropped-hero-img-280-apl.jpg"); /* Put background image for campaign specific landing page */
}
.apllpsx
{
  background-image: url("https://arbor.com/cre/assets/images/cropped-hero-img-280-apl.jpg");
}
.multifamilysite
{
  background-image: url("../images/cropped-hero-img-400-multifamily.jpg"); /* Put background image for campaign specific landing page */
}
.microsite-sfr {
  background-image: url("../images/sfr-header-480px.jpg"); /* Put background image for campaign specific landing page */
}
.microsite-why-arbor {
  background-image: url("../images/why-arbor-header-480px.jpg"); /* Put background image for campaign specific landing page */
}

.apl-xl {
  background-image: url("../images/apl-header-480px.jpg");
} 
.large-loan-xl {
  background-image: url("../images/large-loan-header-480px.jpg");
} 
.small-loan-xl {
  background-image: url("../images/small-loan-header-480px.jpg");
} 

.btn-center {
  width:100%;
  text-align: center;
}
    
.btn-green {
  display: inline-block;
    background-color: #ccdbb2;
    border: 2px solid #f5f5f5;
    padding: 12px 24px;
    font-family: Montserrat;
    font-weight: 900;
    font-size: 20px;
    margin-top: 12px;
    border-radius: 12px;
    transition: 0.2s;
    color: #2b5033;
}

.btn-green:hover {
      opacity: .85;
      text-decoration: none;
      color: #2b5033;
}

.jumbotron {
  color: white;
  /* background-image: url("../images/hero-houses.png"); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 60vh; */
  height:180px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  margin-top:80px;

}
.jumbotron > .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .4); /* Remove comment from overlay section on html page */
    z-index: 1;
    /* height: 60vh; */
    height:180px;
     /* May have to remove */
}

.jumbotron > .inner {
    position: relative;
    z-index: 2;
}

.jumbotron h1 {
  text-align: center;
  font-size:3.5rem;
  margin-bottom: .8rem;
}

.jumbotron h2 {
  text-align: center;
  font-size:1.2rem;
}


.jumbotron-xl, .jumbotron-xl-display {
  color: white;
  /* background-image: url("../images/hero-houses.png"); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 60vh; */
  height:480px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  margin-top:80px;

}
.jumbotron-xl > .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .4); /* Remove comment from overlay section on html page */
    z-index: 1;
    /* height: 60vh; */
    height:480px;
    height: auto;
     /* May have to remove */
}

.jumbotron-xl > .inner {
    position: relative;
    z-index: 2;
}

.jumbotron-xl h1 {
  text-align: center;
  font-size:3.5rem;
  margin-bottom: .8rem;
  font-weight:bold;
  color: white;
}

.jumbotron-xl h2 {
  color: white;
  text-align: center;
  font-size:1.2rem;
}

.jumbotron-xl h4 {
    color: white;
    font-family: 'Montserrat';
    text-align: center;
}

.jumbotron-xl-display > .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .4); /* Remove comment from overlay section on html page */
  z-index: 1;
  /* height: 60vh; */
  height:480px;
   /* May have to remove */
}

.jumbotron-xl-display > .inner {
  position: relative;
  z-index: 2;
}

.jumbotron-xl-display h1 {
text-align: center;
font-size:3.5rem;
margin-bottom: .8rem;
font-weight:bold;
}

.jumbotron-xl-display h2 {
text-align: center;
font-size:1.2rem;
}

/* slider */
/* html,
body {
  margin: 0;
  padding: 0;
}

h2,
p {
  margin: 30px 0 0;
  padding: 0;
}

p {
  color: #18c495;
}*/

.slider {
  max-width: 1000px;
  width: 90%;
  margin: 15px auto;
  /* background: #ececec; */
  background: #ffffff;
  border-radius: 3px;
  padding: 20px 0;
  /* box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26); */
  /* box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.75); */
  /*h v b s*/
}

.slick-slider button {
  display: none!important;
}

.slick-slide {
  color: #333;
  padding: 40px 0;
  font-size: 1.25em;
  /* font-family: "Verdana"; */
  text-align: center;
  pointer-events: none;
}

.slick-slide .desc {
  opacity: 0;
}

.slick-slide .desc > * {
  transition: all 100ms ease;
}

.slick-slide .desc h2 {
  position: relative;
  left: 50px;
  line-height: 1;
}

.slick-slide .desc p {
  position: relative;
  top: 50px;
  opacity: 0;
}

.slick-slide img {
  max-width:100%;
}

.slick-prev:before,
.slick-next:before {
  color: black;
}

.slick-dots {
  text-align: center;
      padding: 0;
}

.slick-dots li {
  display: inline-block;
  padding: 1px;
  background: #ccc;
  margin: 10px 5px;
  width: 40px;
  height: 5px;
}

.slick-dots li.slick-active {
  background: #18c495;
}

.slick-dots button {
  display: none;
}

.slick-slide:nth-child(odd) {
  /* background: blue;*/
}

.slick-slide {
  opacity: 0.2; /* controls opacity of cards next to active one */
  /* transition: all 300ms ease; */
  /* transition: all 30ms ease; */
}

.slick-current {
  opacity: 1;
  transform: scale(1.1);
  /* box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.75); */
  -webkit-box-shadow: 4px 6px 18px 2px rgba(194,194,194,1);
  -moz-box-shadow: 4px 6px 18px 2px rgba(194,194,194,1);
  box-shadow: 4px 6px 18px 2px rgba(194,194,194,1);
}

.slick-current .desc {
  opacity: 1;
}

.slick-current .desc h2 {
  left: 0;
  font-size: 22px;
  padding:10px 0;
}

.slick-current .desc p {
  top: 0;
  opacity: 1;
}

/* .btn {
  border-radius: 30px;
  padding: 10px 20px;
  border: 4px solid #18c495;
  text-decoration: none;
  color: #18c495;
  font-size: .6em;
  text-transform: uppercase;
  display: block;
  margin: 30px auto 0;
  max-width: 100px;
  width: 100%;
  font-weight: bold;
  pointer-events: initial;
}*/






/* Regular Styles */

body{
  font-family: 'Montserrat', 'Merriweather';
}
button:focus {
  outline: none; 
}

p {
  font-size:14px;
}
.logo{
  max-width:180px;
}
.full-height {
  height: 100%;
}
.transparent-background {
  background:transparent !important ;
}
.table {
  text-align:left;
  margin-bottom:0;
}

.table td, .table th {
  padding: 1.2rem;
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f5f5f5;
}
.tablecontainer {
  padding: 0 15px;
}
#section1{
  /* padding-top:95px; This is the padding needed for showcase left */
  /* padding-top:35px; This is when we updated the hero image to be 180px */
    padding-top:15px;
    padding-bottom:75px;
}

#section1 img{
  width:100%;
}
.list {
  font-weight: bold;
  font-size: 1.0em;
}
/* .contact-us {
  position: fixed;
  right: 100px;
  z-index: 49;
  top: 25px;
} */

.contact-us {
  position: fixed;
  right: 90px;
  z-index: 49;
  top: 25px;
}

.modal-header .close {
    padding: 0rem 1rem;
    margin: -1rem -1rem -1rem auto;
}
.modal-header {
  border:0px;
}
.close {
    float: right;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
  }
.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(82, 148, 110, 0.25);
}
/* .btn-contact {
  font-weight: 300;
  color:#E5C200;
  color: var(--mustard-color);
  border-color: #E5C200;
  border-color: var(--mustard-color);
  background-color: #164722;
  background-color: var(--green-color);
  font-size:16px;
}
.btn-contact:hover {
  border-color:#fff;
  border-color: #E5C200;
  background-color: var(--mustard-color);
  color: #17351e;
  color: var(--darkgreen-color);
} */

button {
    transition: 0.35s;
}

.btn-contact {
  font-weight: 300;
  color:#ffffff;
  border-color: #EF8226;
  border-color: var(--orange-color);
  background-color: #EF8226;
  background-color: var(--orange-color);
  font-size:16px;
  padding: 8px 40px;
  border-radius: .1rem;
}
.btn-contact {
    /* max-width: 58px; */
    font-size: 14px;
    /* height: 17px; */
    margin: auto;
    padding:5px 20px;
    border-radius: .1rem;
    font-weight:400;
}
.btn-contact:hover {
  color:#ffffff;
  border-color: #D16409;
  background-color: #D16409;
  transition: all ease .8s;

}


.btn-learnmore {
  font-weight: 300;
  color:#ffffff;
  border-color: #EF8226;
  border-color: var(--orange-color);
  background-color: #EF8226;
  background-color: var(--orange-color);
  font-size:16px;
  padding: .5rem 2.5rem;
  border-radius: .1rem;
  text-transform: uppercase;
}
.btn-learnmore:hover {
  border-color:#fff;
  border-color: #EF8226;
  background-color: var(--orange-color);
  color: #17351e;
  color: var(--darkgreen-color);
  transition:all ease .8s;
}

.btn-requestquote {
  background-color:#6EA86C;
  color:#ffffff;
  margin: 50px;
  font-size: 16px;
  padding: 15px 30px;
  border: none;
}
.btn-requestquote:hover {
  background-color:rgb(89, 138, 88);
}

.showcase-content h1 {
  /* color: #164722;
  color: var(--green-color); */
  color: var(--darkgreen-color);
  font-size:45px;
  line-height: 55px;
  margin: 0 0 20px 0;
  text-align: left;
}

.showcase-content h3 {
  font-size: 30px;
  text-align: left;
  color: var(--darkgreen-color);
  letter-spacing: 0;
  line-height: 33px;
  margin-top: 36px;
  margin-bottom: 22px;
  font-weight: 600;
  font-family: 'Merriweather';
}

.showcase-content h3:first-of-type {
  margin: 0px 0 20px 0;
}

.showcase-content h4 {
  color: #2C5234;
  font-size:20px;
  font-weight: 600;
  line-height: 18px;
  /* margin: 50px 0 20px 0; */
  text-align: left;
  padding: 20px 0 10px;
}
.showcase-content hr {
  /* height: 1px; */
  background-color: #707070;
  opacity: .8;
}

.showcase-content ul {
  padding-inline-start: 20px;
  font-size: 14px;
}
.showcase-content li {
  padding-bottom: 20px;
}
.advantages .row {
  padding-bottom:30px;
}
.advantages p {
  margin-bottom:5px;
  /* font-weight:bold; */
}

.advantages ul {
  padding-inline-start: 40px;
  margin-bottom:10px;
}
.advantages ul li {
  padding-bottom:0;
}

.semi-header {
  font-weight:600;
  padding-bottom:15px;
  font-size:16px !important;
}


.tab-content {
  background-color:#F4F4F4;
  margin:auto;
  width:100%;
}

ul.terms {
  padding:0px !important;
  list-style:none !important;
  font-size:14px;
}

ul.terms li {
  padding-bottom:20px !important;
}

#section2{
  padding:30px;
}
#section2 .container{
  /* border-top:1px solid #000; */
  padding-top:40px;
}
#section2 img {
  display: block;
  text-align: center;
  margin: auto;
}
#section2 h2{
  font-size:1.2em;
  text-align:center;
  line-height: 2.5em;
  padding-top:10px;
}
#section2 p{
  text-align: center;
}


#section3{
  padding:30px;
}
#section3 .container{
  border-top:1px solid #000;
  padding-top:40px;
}
#section3 img {
  display: block;
  text-align: center;
  margin: auto;
}
#section3 h2{
  font-size:1.2em;
  text-align:center;
  line-height: 2.5em;
  padding-top:10px;
}
#section3 p{
  text-align: center;
}
.center-it {
  /* margin:auto; */
  text-align: center;
}
hr.small-divider {
    border: none;
    height: 5px;
    color: #333; /* old IE */
    background-color: #ccc; /* Modern Browsers */
    width:50px;
    display: block;
    margin-left:auto;
    margin-right:auto;
}
/* h1
{
    padding-bottom:26px;
    text-align:center;
    margin:auto;
    display: block;
    width: 100%;
} */

h1 {
  font-family: 'Merriweather';
  font-size: 80px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.35;
  text-align: center;
}
h2 {
  font-family: 'Merriweather';
  font-size: 56px;
  letter-spacing: 0;
  line-height: 1.8;
}
h3 {
  font-family: 'Merriweather';
  font-size: 30px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0;
  line-height: 33px;
  margin-top: 20px;
  margin-bottom: 22px;
  
}
h4 {
  font-family: 'Merriweather';
  font-size: 20px;
  letter-spacing: 0;
  padding: 20px 0;
}
h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  color: #000000;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  margin-bottom: 30px;
}
h6 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  color: #000000;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  margin-bottom: 30px;
}
#secondary-section {
  padding-top:70px;
}
.secondary {
  background:#F4F4F4 !important;
  padding-top: 0px !important;
}
.subhead {
  max-width:950px;
  margin: 0 auto;
  line-height: 1.5;
}
.sfr-subhead {
  max-width:100%;
  padding-bottom:80px !important;
}
h2.subhead {
  max-width:750px;
  padding-bottom:50px;
  padding-left:15px;
  padding-right:15px;
  font-family: 'Montserrat';
  color: #212529;
}


/* Tab Styling */

#section-tab{
  padding-top:35px;
  background:#ffffff;
  padding-bottom:75px;
  /* height:100vh; */
}

#section-tab2{
  background:#F4F4F4;
  text-align: center;
  margin: auto;
}


#section-tab .nav-link {
  color:#000;
}

#section-tab h1, #section-why h1, #section-benefits h1  {
  font-size: 30px;
  width: 100%;
 margin: 0 auto;
  /* padding-bottom:15px; */
}

#section-tab h2 {
  font-size: 16px;
  /* padding-bottom:75px; */
}
/* #section-tab h3 span{
  padding:10px;
  font-size:15px;
  display:block;
  line-height:22px;
  
} */
.homepage-option h3 {
text-align: center;
}

.homepage-option h3 span {
	text-align: center;
	font-size: 24px;
    font-family: Montserrat;
    font-weight: 400;
}

.homepage-option h3.options {
  font-size:18px;
}
.homepage-option p {
  min-height:70px;
}
.three-circle-options {
  max-width:900px;
  text-align:center;
  margin:auto;
}
.term-option {
  border-right:1px solid #cecece;
}
.term-option:last-of-type {
  border-right:none;
}

#section-tab .circle-option {
  padding-top:50px;
  padding-bottom:25px;
}

#section-tab a .circle-option:hover {
  overflow: hidden;
  opacity: .45;
  /* background: rgb(0, 0, 0); */
  transition: ease .5s;
}
#section-tab .btn-learnmore {
  margin-top:15px;
  margin-bottom:50px;
}
#section-tab h3 {
  padding-bottom:10px;
}
#section-tab h3 a {
  color: var(--darkgreen-color);
}
#section-tab h3 a:hover{
  color: #6d6d6d;
  /* transition:ease .4s; */
}
#section-tab .advantage-container {
  padding: 20px 150px 75px 150px;
}
#section-terms {
  background-color:#F4F4F4;
  min-height: 300px;
  padding-top:35px;
  padding-bottom:75px;
}
#section-terms > .container {
  background-color:#F4F4F4;
  min-height: 300px;
}
#section-terms h1 {
  padding-bottom:0px;
}
#section-terms h3 {
  font-size:25px;
  padding-bottom:20px;
}
#section-terms p {
  font-size:16px;
}
#section-terms .circle-option {
  padding-top:50px;
  padding-bottom:25px;
  max-width: 110px;
}
#section-terms .btn-learnmore {
  margin-top:25px;
  margin-bottom:10px;
  background-color: #6EA86C;
  border: none;
  font-weight:500;
}
#section-terms .btn-learnmore:hover {
  background-color: #4E844C;
  border: none;
  color: #fff;
  transition:all ease .8s;
}
#section-terms h4.contact {
  font-size:21px;
}
#section-benefits {
  background-color:#264D74;
  min-height: 300px;
  padding-top:75px;
  padding-bottom:75px;
  background-color:#ffffff;
}
#section-benefits > .container {
  background-color:#264D74;
  min-height: 300px;
  background-color:#ffffff;
}

#section-benefits > .container h1,
#section-benefits > .container h4,
#section-benefits > .container p {
	color: #1A3D35;
	
}

#section-why {
  margin:auto;
  text-align:center;
  padding-top:75px;
  padding-bottom:75px;
}
.whygray {
  background:#fafafa !important;
  background: #f2f1ef !important;
}

.whygray h1,
.whygray h4,
.whygray p {
	color:#1A3D35;
}

#section-programs {
  margin:auto;
  text-align:center;
  padding-top:75px;
  padding-bottom:75px;
  background: #F4F4F4;
}
#section-programs .container {
  width:90%;
  background: #fff;
}
.program-toppings {
  font-size:20px;
  font-weight:bold;
}
#section-benefits {
  margin:auto;
  text-align:center;
  padding-top:75px;
  padding-bottom:75px;
  color:#ffffff;
}
#section-awards {
  margin:auto;
  text-align:center;
  padding-top:75px;
  padding-bottom:75px;
  background: #F8F8F8;
}
.awards {
  max-width:100%;
}
#section-closing {
  margin:auto;
  text-align:center;
  padding-top:75px;
  padding-bottom:75px;
}
#section-closing h2 {
  margin:auto;
  text-align:center;
  padding-top:0px;
  padding-bottom:25px;
  font-family: 'Merriweather';
  font-size: 32px;
  line-height: 1.2;
}

#section-benefits h1, #section-why h1, #section-closing h1, #section-programs h1 {
  padding-bottom:12px;
}

#section-programs h1 {
	font-size: 40px;
}

.benefits {
  max-width:300px;
  margin:auto;
}
#section-slider {
  display:none;
  /* visibility:hidden; */
}

/* Form Items */
.wpcf7-form-control-wrap select.form-control {
    margin-top: 0 !important;
}

::placeholder, option { /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-weight: 300;
  font-size:14px;
  opacity: 1; /* Firefox */
}

.quote-form{
  max-width:418px;
  background-color:#fefefe;
  border-radius: 4px;
  border:1px solid #ccc;
  padding:20px 40px; /* add padding for more or less space between form field sides */
  margin-bottom: 30px; /* Need this for extra space Live Chat Below*/
}

.quote-form h3, .quote-form h4, .quote-form h5 {
  color: #164722;
  color: var(--green-color);
  text-align: center;
  padding: 5px;
}
.quote-form h3{
  font-size: 24px;
    font-family: 'Merriweather';
    line-height: 28px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    margin-top: 0;
    padding: 0;
}
.quote-form h4{
  font-weight: 300;
  font-size: 16px;
}

.quote-form h5 {
  font-size:16px;
  font-weight:300;
  margin: 0 0 20px 0;
}

.fill-out-the-form{
  display: none;
  margin:10px 0;
  font-weight:200;
  font-size:14px;
  color: #EF8226;
  color: var(--orange-color);
}
.btn-orange{
    background-color: var(--orange-color);
    border: 1px solid #e9c786;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    color: var(--darkgreen-color);
    text-align: center;
    padding: 16px 33px 17px;
    letter-spacing: 2px;
    display: inline-block;
}

.btn-orange:hover {
  background-color: #ffffff;
  color: #1a3d35;
  box-shadow: 0px 10px 24px -6px rgba(0, 0, 0, 0.34);
}

.input-field{
  width:100%;
}

.loantype {
  font-weight: 300;
  font-size:14px;
}

table.terms td {
  padding: 8px 0 !important;
}

.terms-row1 {
  padding-bottom:60px;
}

/* Footer */
footer{
  width:100%;
  background-color: #164722;
  background-color: var(--green-color);
  color:#ffffff;
  /* min-height:500px; */
}

footer a {
  color:#ffffff;
}
footer a:hover {
  color: #ffffff;
    text-decoration: none;
}
.privacy {
  font-size:12px;
}
footer .allrights {
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 27px;
  float: left;
  margin-top: 15px;
}
footer .tagline {
  text-align: left;
  display: block;
}
.footer-bar {
    min-height: 90px;
    height: 00px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .logo, footer .tagline {
    padding:0;
}

footer .footer-bar img {
        padding-top: 4px;
}

.footer_social a {
    font-size: 20px;
    color: #626262;
    letter-spacing: 0.62px;
    line-height: 27px;
    display: inline-block;
}
.footer_social a:not(:last-child) {
    margin-right: 20px;
}
.footer_social a:hover {
    color: #D16409;
    transition: all ease .6s;
}
.col-md-border:not(:last-child) {
  border-right: 1px solid #d7d7d7;
}
.col-md-border + .col-md-border {
  border-left: 1px solid #d7d7d7;
  margin-left: -1px;
}
.caret {
        width: 0;
        height: 0;
        display: inline-block;
        border: 50px solid transparent;
    }
    .caret.down{
        border-top-color: black;
    }
    .caret.right{
        border-left-color: black;
    }
    .caret.up{
        border-bottom-color: black;
    }
    .caret.left{
        border-right-color: black;
    }

    @media screen and (min-width: 992px) and (max-width: 1199px) {

     .homepage-option h3 {
       font-size:22px;
     }
     .homepage-option h3.options {
      font-size:18px;
    }
     .homepage-option p {
       min-height:70px;
     }

    }



    @media (max-width:991px){
      /* .nav1 {
        background-color: #17351e;
        background: var(--darkgreen-color);
        width: 100%;
        position: absolute;
        top: 80px;
        left: 0;
        text-align: center;
      } */
      
      .partner-link {
          /* height: 40px; */
          right: 80px;
      }
           
      .navbar {
        height: 80px;
      }
      .nav-link{
        font-size:13px;
        padding: .7rem .5rem;
      }
      .logo {
        max-width: 140px;
      }
      .contact-us {
        position: fixed;
        right: 70px;
        z-index: 49;
        top: 25px;
      }
      .btn-contact {
          /* max-width: 58px; */
          font-size: 14px;
          /* height: 17px; */
          margin: auto;
          padding:5px 20px;
          border-radius: .1rem;
      }

      /* Hamburger Menu */
      .menu-wrap {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 50;
      }

      .menu-wrap .toggler {
        position: absolute;
        top: 20px;
        right: 13px;
        z-index: 2;
        cursor: pointer;
        width: 40px;
        height: 40px;
        opacity: 0;
      }

      .menu-wrap .hamburger {
        position: absolute;
        /* top: 10px; */
        top: 15px;
        right: 10px;
        z-index: 1;
        width: 45px;
        height: 50px;
        padding: .5rem;
        /* background: var(--primary-color); */
        display: flex;
        align-items: center;
        justify-content: center;
      }

      /* Hamburger Line */
      .menu-wrap .hamburger > div {
        position: relative;
        flex: none;
        width: 100%;
        height: 2px;
        background: #fff;
        /* display: flex; */
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
      }

      /* Hamburger Lines - Top & Bottom */
      .menu-wrap .hamburger > div::before,
      .menu-wrap .hamburger > div::after {
        content: '';
        position: absolute;
        z-index: 1;
        top: -10px;
        width: 100%;
        height: 2px;
        background: inherit;
      }

      /* Moves Line Down */
      .menu-wrap .hamburger > div::after {
        top: 10px;
      }

      /* Toggler Animation */
      .menu-wrap .toggler:checked + .hamburger > div {
        transform: rotate(135deg);
      }

      /* Turns Lines Into X */
      .menu-wrap .toggler:checked + .hamburger > div:before,
      .menu-wrap .toggler:checked + .hamburger > div:after {
        top: 0;
        transform: rotate(90deg);
      }

      /* Rotate On Hover When Checked */
      .menu-wrap .toggler:checked:hover + .hamburger > div {
        transform: rotate(225deg);
      }

      /* Show Menu */
      .menu-wrap .toggler:checked ~ .menu {
          visibility: visible;
          width: 350px;
          /* right: 0; */
          opacity: .95;
          /* transform: */
      }

      .menu-wrap .toggler:checked ~ .menu > div {
        transform: translateX(0px);
        transition-duration: 0.75s;
        transition-duration: var(--menu-speed);
      }

      .menu-wrap .toggler:checked ~ .menu > div > div {
        opacity: 1;
        transition:  opacity 0.4s ease 0.4s;
      }

      .menu-wrap .menu {
        position: fixed;
        top: 0;
        right: 0px;
        /* width: 40%; */
        height: 100%;
        visibility: hidden;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        -webkit-overflow-scrolling: touch;
      }

      .menu-wrap .menu > div {
        /* background: var(--overlay-color); */
        background: #164722;
        background: var(--green-color);
        border-radius: 0%;
        width: 350px;
        height: 100%;
        display: flex;
        flex: none;
        align-items: flex-start;
        justify-content: center;
        transform: translateX(500px);
        transition: all 0.7s ease;
        padding: 8rem 0 0 0;
      }

      .menu-wrap .menu > div > div {
        text-align: right;
        max-width: 90vw;
        max-height: 100vh;
        opacity: 0;
        transition: opacity 0.4s ease;
      }

      .menu-wrap .menu > div > div > ul > li {
        list-style: none;
        color: #fff;
        font-size: 1rem;
        padding: .7rem;
      }

      .menu-wrap .menu > div > div > ul > li > a {
        color: inherit;
        text-decoration: none;
        transition: color 0.4s ease;
      }

      .quote-form h4 {
        font-size: 14px !important;
        font-weight: 300;
      }
      .fill-out-the-form {
          margin: 10px 0;
          font-weight: 200;
          font-size: 12px;
          color: #EF8226;
          color: var(--orange-color);
      }


      .jumbotron {
        height: 220px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
        margin-top: 80px;
      }
      .jumbotron-xl, .jumbotron-xl-display {
        height: 480px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
        margin-top: 80px;
        height: auto;
        padding: 16px 18px 36px 18px;
      }
      

      .jumbotron-xl h1 , .jumbotron-xl-display h1{
        font-size:2.8rem;
      }
    
      .showcase-content h1 {
        font-size: 35px;
        line-height: 40px;
        /* margin: 40px 0 20px 0; */
        margin: 0 0 15px 0;
      }

      .showcase-content h3 {
        color: #2C5234;
        font-size: 22px;
        line-height: 25px;
        margin: 20px 0 20px 0;
        text-align: left;
      }
      .semi-header {
        font-weight: 600;
        padding-bottom: 35px;
        font-size: 16px !important;
      }
      .quote-form{
        max-width:100%;
        background-color:#fff;
        border-radius: 6px;
        border:1px solid #ccc;
        padding:20px 25px;
        margin-bottom:20px;
      }
      .quote-form h3 {
        font-size: 20px;
        font-weight: 700;
      }
      h5{
        font-size:14px;
      }
      .btn-orange {
        background-color: #EF8226;
        background-color: var(--orange-color);
        color: #fff;
        font-size: 14px;
        font-weight: 400;
        border-radius: .1rem;
        border: none;
        }

        #section-benefits h1, #section-why h1, #section-closing h1, #section-programs h1 {
          font-size:30px;
          padding-bottom:50px;
        }

        .homepage-option p {
          min-height:70px;
        }
        #section-tab .circle-option {
          padding-top:50px;
          padding-bottom:25px;
          max-width: 140px;
        }
        #section-tab h3 {
          padding-bottom:10px;
          font-size:17px;
          height:70px;
        }
        /* #section-tab h3 span{
          padding:10px;
          font-size:14px;
          
        } */
        #section-tab .advantage-container {
          padding: 20px 60px 75px 60px;
        }

        #section-terms h1 {
          padding-bottom:0px;
        }
        #section-terms h3 {
          font-size:25px;
          padding-bottom:20px;
          height:80px;
        }
        #section-terms p {
          font-size:16px;
        }
        #section-terms .circle-option {
          padding-top:50px;
          padding-bottom:25px;
          max-width: 90px;
        }
        #section-terms .btn-learnmore {
          margin-top:25px;
          margin-bottom:10px;
          background-color: #6EA86C;
          border: none;
          font-weight:500;
        }
        #section-terms .btn-learnmore:hover {
          background-color: #4E844C;
          border: none;
          color: #fff;
        }
        #section-terms h4.contact {
          font-size:21px;
        }
        .awards {
          max-width:95%;
        }
        #section-closing h2 {
          font-size:24px;
          padding-bottom: 25px;
        }



      .footer-bar {
          min-height: 80px;
          height: 80px;
          display: flex;
          align-items: center;
          justify-content: center;
          padding-top: 16px;
          height: auto;
      }

      footer .logo, footer .tagline {
          padding:0;
      }
      .form-control {
          display: block;
          width: 100%;
          height: calc(1.5em + .75rem + 2px);
          padding: .375rem .75rem;
          font-size: 12px;
          font-weight: 400;
          line-height: 1.5;
          color: #495057;
          background-color: #fff;
          background-clip: padding-box;
          border: 1px solid #ced4da;
          border-radius: .25rem;
          transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
      }
      .form-control input {
        background-color: white;
        border: solid 1px #E0E0E0;
        font-size: 15px;
        color: #979797;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius: 5px;
        padding-top: 25px;
        padding-bottom: 25px;
        padding-left: 10px;
        padding-right: 10px;
        width: 100%;
        font-family: 'Montserrat', sans-serif;
        box-sizing: border-box;
        line-height: 1.4;
        margin-top: 5px;
    }
    /*
    .form-check-label {
      margin-bottom: 0;
      font-weight: 400;
      line-height: 2em;
      margin-right: 10px;
      text-align: left;
      vertical-align: top;
  }
  */
      .loantype {
        height:36px !important;
        margin-top:0px !important;
        font-size: 12px !important;
        font-weight:300 !important;
        color: gray;
      }

    .advantages .row {
      padding-bottom: 15px;
    }


}

@media (max-width: 767px) /* Misc blog rules */ {
  .logo {
    max-width: 88px;
  }
  .navbar{
    height:50px;
  }
	
  .navbar-brand {
    padding-top:0;
  }

  .contact-us {
    /* position: absolute; */
    right: 70px;
    /* z-index: 49; */
    top: 12px;
  }
  .btn-contact {
      /* max-width: 58px; */
      font-size: 10px;
      /* height: 17px; */
      margin: auto;
      padding:5px 13px;
      border-radius: .1rem;
  }
  
  .btn-green {
    padding: 10px 24px;
    font-size: 16px;
}
  
  .partner-link {
       height: 40px;
    }
  
  .nav1 {
	  border-top: 1px solid #5a5b5b
    background-color: #17351e;
    background: var(--darkgreen-color);
    width: 100%;
    position: absolute;
    top: 50px;
    left: 0;
    text-align: right;
        padding-right: 70px;
  }

  .nav-link{
    font-size:12px !important;
  }
  h5.term-padding{
    padding-top:40px;
    padding-bottom:20px;
  }
  h5 {
    min-height:0;
    padding-bottom:20px;
  }
  .jumbotron {
    margin-top: 50px;
  }
  .jumbotron-xl-display {
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 80px;
  }
  .jumbotron-xl-display > .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .4); /* Remove comment from overlay section on html page */
    z-index: 1;
    /* height: 60vh; */
    height:400px;
     /* May have to remove */
  }

  /* Hamburger Menu */
  .menu-wrap {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 50;
  }

  .menu-wrap .toggler {
    position: absolute;
    top: 5px;
    right: 13px;
    z-index: 2;
    cursor: pointer;
    width: 40px;
    height: 40px;
    opacity: 0;
  }

  .menu-wrap .hamburger {
    position: absolute;
    /* top: 10px; */
    top: 0px;
    right: 10px;
    z-index: 1;
    width: 45px;
    height: 50px;
    padding: .5rem;
    /* background: var(--primary-color); */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hamburger Line */
  .menu-wrap .hamburger > div {
    position: relative;
    flex: none;
    width: 100%;
    height: 2px;
    background: #fff;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
  }

  /* Hamburger Lines - Top & Bottom */
  .menu-wrap .hamburger > div::before,
  .menu-wrap .hamburger > div::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -10px;
    width: 100%;
    height: 2px;
    background: inherit;
  }

  /* Moves Line Down */
  .menu-wrap .hamburger > div::after {
    top: 10px;
  }

  /* Toggler Animation */
  .menu-wrap .toggler:checked + .hamburger > div {
    transform: rotate(135deg);
  }

  /* Turns Lines Into X */
  .menu-wrap .toggler:checked + .hamburger > div:before,
  .menu-wrap .toggler:checked + .hamburger > div:after {
    top: 0;
    transform: rotate(90deg);
  }

  /* Rotate On Hover When Checked */
  .menu-wrap .toggler:checked:hover + .hamburger > div {
    transform: rotate(225deg);
  }

  /* Show Menu */
  .menu-wrap .toggler:checked ~ .menu {
      visibility: visible;
      width: 350px;
      /* right: 0; */
      opacity: .95;
      /* transform: */
  }

  .menu-wrap .toggler:checked ~ .menu > div {
    transform: translateX(0px);
    transition-duration: 0.75s;
    transition-duration: var(--menu-speed);
  }

  .menu-wrap .toggler:checked ~ .menu > div > div {
    opacity: 1;
    transition:  opacity 0.4s ease 0.4s;
  }

  .menu-wrap .menu {
    position: fixed;
    top: 0;
    right: 0px;
    /* width: 40%; */
    height: 100%;
    visibility: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-overflow-scrolling: touch;
  }

  .menu-wrap .menu > div {
    /* background: var(--overlay-color); */
    background: #164722;
    background: var(--green-color);
    border-radius: 0%;
    width: 350px;
    height: 100%;
    display: flex;
    flex: none;
    align-items: flex-start;
    justify-content: center;
    transform: translateX(500px);
    transition: all 0.7s ease;
    padding: 8rem 0 0 0;
  }

  .menu-wrap .menu > div > div {
    text-align: right;
    max-width: 90vw;
    max-height: 100vh;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .menu-wrap .menu > div > div > ul > li {
    list-style: none;
    color: #fff;
    font-size: 1rem;
    padding: .7rem;
  }

  .menu-wrap .menu > div > div > ul > li > a {
    color: inherit;
    text-decoration: none;
    transition: color 0.4s ease;
  }
  .homepage-option p {
    min-height:0px;
  }
  .term-option {
    border-right:none;
  }
  .benefits p {
    padding-bottom:24px;
  }

  #section-tab .advantage-container {
    padding: 20px 30px 55px 30px;
  }
  #section-terms .circle-option {
    padding-top:50px;
    padding-bottom:25px;
    max-width: 70px;
  }

  .col-md-border:not(:last-child)  {
    border:0px !important;
  }
  .col-md-border + .col-md-border {
    border:0px !important;
  }

  .terms-row1 {
    padding-bottom:0px;
  }
  #secondary-section h1 {
    text-align:left;
    padding-left:15px;
    font-size:24px !important;
  }
  #secondary-section h2.subhead {
    text-align:left;
    font-size:16px;
  }
  
  #secondary-section hr.small-divider {
    border: none;
    height: 3px;
    color: #333;
    background-color: #ccc;
    width: 100px;
    margin-top: 25px;
    margin-bottom: 25px;
    margin-left: 15px;
  }
  footer .tagline {
    text-align: left;
    display: block;
    padding-left:20px;
    padding-top:0px;
  }
  footer .tagline:first-child {
    padding-top:10px !important;
  }


}

/* Mobile 600px  */
@media (max-width: 600px) /* Misc blog rules */ {

  .logo {
    max-width: 88px;
  }
  .navbar{
    height:50px;
  }

  .navbar-brand {
    padding-top:0;
  }

  .contact-us {
    /* position: absolute; */
    right: 70px;
    /* z-index: 49; */
    top: 12px;
  }
  .btn-contact {
      /* max-width: 58px; */
      font-size: 10px;
      /* height: 17px; */
      margin: auto;
      padding:5px 13px;
      border-radius: .1rem;
  }
  .container {
      width:100% !important;
      margin:auto;
      overflow:hidden;
    }
  .full-width {
    padding: 0px !important;
  }
  .showcase-content h1 {
    font-size: 28px;
    line-height: 35px;
    margin: 10px 0 40px 0;
  }

  .showcase-additional h1 {
    padding-top:95px;
    /* padding-bottom:30px !important; */
  }
  .showcase-content h3:first-of-type {
    margin: 0px 0 5px 0;
}
  .showcase-content h3 {
    color: #2C5234;
    font-size: 18px;
    line-height: 25px;
    margin: 12px 0 5px 0;
    text-align: left;
  }
  hr{
    margin:10px 0;
  }
  hr.small-divider {
    border: none;
    height: 3px;
    color: #333;
    background-color: #ccc;
    width: 50px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    margin-bottom: 25px;
}

  p {
    font-size:14px !important;
  }

  .semi-header {
    font-weight:600;
    padding-top:30px;
    padding-bottom:30px;
    font-size:16px !important;
  }


  .showcase-left{
    width:100% !important;
  }

  .showcase-content {
    padding: 0 20px;
  }

  .quote-form{
    max-width:100%;
    background-color:#fff;
    border-radius: 6px;
    border:1px solid #ccc;
    padding:20px 35px;
    /* margin-top:30px; */
  }

  .nav1 {
    background-color: #17351e;
    background: var(--darkgreen-color);
    width: 100%;
    position: absolute;
    top: 50px;
    left: 0;
    text-align: right;
        padding-right: 70px;
  }

  .nav-link{
    font-size:12px !important;
  }
  .menu-wrap .menu > div {

    padding: 4rem 0 0 0;
  }

  /* .btn-learnmore, .nav-tabs {
    display: none;
  } */
  #section-slider {
    display: block;
    text-align: center;
  }
  .slider-cards {
    margin-top:30px;
  }
  .jumbotron h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: .8rem;
    padding-top: 60px;
  }
  .jumbotron-xl h1,  .jumbotron-xl-display h1 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: .8rem;
    padding-top: 60px;
  }

  #section-tab {
    padding-top: 36px;
  }

  .section-tab-clp {
    padding-top:0px !important;
  }

  #section-tab h1 {
    font-size:32px;
  }

  #section-tab h2 {
    font-size: 20px;
  }

  #section-tab .circle-option {
    padding-top:30px;
    padding-bottom:25px;
    max-width: 100px;
  }

  #section-tab h3 {
    padding-bottom: 10px;
    /* font-size: 22px; */
    font-size:17px;
    height: 40px;
  }
  .center-mobile {
    width: 100%;
    text-align: center;
  }
  
  .homepage-option h3 {
      font-size:20px;
  }
  .options {
    display:block;
    height:100% !important;
  }
  #section-benefits h1, #section-why h1, #section-closing h1, #section-programs h1 {
    padding-bottom: 35px;
    font-size:28px;
  }
  #secondary-section h2.subhead {
    text-align: left;
    font-size: 15px;
}
  h4 {
    font-size:16px !important;
  }
  .advantages .row {
    padding-bottom: 0;
  }

  .full {
    display:block;
    width:100% !important;
    text-align: center;
  }
  .program-toppings {
    display:block;
    width:100% !important;
    text-align:center;
    padding-bottom:0 !important;
    font-size:18px;
    /* font-weight:500; */
  }
  .program-toppings-desc {
    display:block;
    width:100% !important;
    text-align: center;
    padding-bottom:35px !important;
    font-size:15px;

  }
.table {
  margin-bottom:0px;
}
  .table td, .table th {
    padding: 0 1rem;
    vertical-align: top;
    border:none;
}
.table-striped tbody tr {
  background-color: #F4F4F4 !important;
}
  /* Hamburger Menu */
  .menu-wrap {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 50;
  }

  .menu-wrap .toggler {
    position: absolute;
    top: 5px;
    right: 13px;
    z-index: 2;
    cursor: pointer;
    width: 40px;
    height: 40px;
    opacity: 0;
  }

  .menu-wrap .hamburger {
    position: absolute;
    /* top: 10px; */
    top: 0px;
    right: 10px;
    z-index: 1;
    width: 45px;
    height: 50px;
    padding: .5rem;
    /* background: var(--primary-color); */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hamburger Line */
  .menu-wrap .hamburger > div {
    position: relative;
    flex: none;
    width: 100%;
    height: 2px;
    background: #fff;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
  }

  /* Hamburger Lines - Top & Bottom */
  .menu-wrap .hamburger > div::before,
  .menu-wrap .hamburger > div::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: -10px;
    width: 100%;
    height: 2px;
    background: inherit;
  }

  /* Moves Line Down */
  .menu-wrap .hamburger > div::after {
    top: 10px;
  }

  /* Toggler Animation */
  .menu-wrap .toggler:checked + .hamburger > div {
    transform: rotate(135deg);
  }

  /* Turns Lines Into X */
  .menu-wrap .toggler:checked + .hamburger > div:before,
  .menu-wrap .toggler:checked + .hamburger > div:after {
    top: 0;
    transform: rotate(90deg);
  }

  /* Rotate On Hover When Checked */
  .menu-wrap .toggler:checked:hover + .hamburger > div {
    transform: rotate(225deg);
  }

  /* Show Menu */
  .menu-wrap .toggler:checked ~ .menu {
      visibility: visible;
      width: 350px;
      /* right: 0; */
      opacity: .95;
      /* transform: */
  }

  .menu-wrap .toggler:checked ~ .menu > div {
    transform: translateX(0px);
    transition-duration: 0.75s;
    transition-duration: var(--menu-speed);
  }

  .menu-wrap .toggler:checked ~ .menu > div > div {
    opacity: 1;
    transition:  opacity 0.4s ease 0.4s;
  }

  .menu-wrap .menu {
    position: fixed;
    top: 0;
    right: 0px;
    /* width: 40%; */
    height: 100%;
    visibility: hidden;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-overflow-scrolling: touch;
  }

  .menu-wrap .menu > div {
    /* background: var(--overlay-color); */
    background: #164722;
    background: var(--green-color);
    border-radius: 0%;
    width: 350px;
    height: 100%;
    display: flex;
    flex: none;
    align-items: flex-start;
    justify-content: center;
    transform: translateX(500px);
    transition: all 0.7s ease;
    padding: 8rem 0 0 0;
  }

  .menu-wrap .menu > div > div {
    text-align: right;
    max-width: 90vw;
    max-height: 100vh;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .menu-wrap .menu > div > div > ul > li {
    list-style: none;
    color: #fff;
    font-size: 1rem;
    padding: .7rem;
  }

  .menu-wrap .menu > div > div > ul > li > a {
    color: inherit;
    text-decoration: none;
    transition: color 0.4s ease;
  }
  .jumbotron {
    display: none; /* Removed per Andrew 7/24 */

    /* background-position: center;
    background-repeat: no-repeat;
    background-size: cover; */
    /* height: 60vh; */
    height:200px;
    /* display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px; */
    margin-top:50px;
    margin-bottom: 0;

  }
  .jumbotron > .overlay {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background-color: rgba(0, 0, 0, 0.45);
      z-index: 1;
      /* height: 60vh; */
      height:250px;
      height: auto;
  }
  .jumbotron-xl {
    display: none; /* Removed per Andrew 7/24 */

    /* background-position: center;
    background-repeat: no-repeat;
    background-size: cover; */
    /* height: 60vh; */
    height:200px;
    /* display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px; */
    margin-top:50px;
    margin-bottom: 0;

  /* benzle - 10-29-2025 - made header visible on mobile again */
    display: flex;
    height: auto;
    padding: 12px 10px 26px 10px;
    
  }
  .jumbotron-xl > .overlay {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background-color: rgba(0, 0, 0, 0.45);
      z-index: 1;
      /* height: 60vh; */
      height:250px;
      
      height: auto;
  }
  
  .jumbotron-xl h1 {
            font-size: 2rem;
            line-height: 1.3;
  }
  
  .jumbotron-xl-display {
    /* display: none; 

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; 
    height: 60vh; 
    height:200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px; */
    margin-top:50px;
    margin-bottom: 0;

  }
  .jumbotron-xl-display > .overlay {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background-color: rgba(0, 0, 0, 0.45);
      z-index: 1;
      /* height: 60vh; */
      height:400px;
      height: auto;
  }
  #section1 {
      padding-top: 0;
      padding-bottom: 50px;
  }
  #section-tab .advantage-container {
    padding: 0px 10px 35px 10px;
  }
  #section-tab .btn-learnmore {
    margin-top: 15px;
    margin-bottom: 30px;
}
.btn-learnmore {
    font-weight: 300;
    color: #ffffff;
    border-color: #EF8226;
    border-color: var(--orange-color);
    background-color: #EF8226;
    background-color: var(--orange-color);
    font-size: 14px;
    padding: .5rem 2.5rem;
    border-radius: .1rem;
    text-transform: uppercase;
}
  #section-terms  {
    padding-top:120px;
    padding-bottom: 40px;
  }
  #section-terms .circle-option {
    padding-top:30px;
  }
  #section-terms h1 {
    font-size:28px;
  }
  #section-terms h3 {
    font-size:21px;

    height:50px;
  }

  .benefits {
    padding-bottom:20px;
  }

  .benefits img {
    max-width:80px;
  }
  .benefits p {
    padding-bottom:8px;
  }
  img.awards {
      max-width: 200px;
  }
  #section-closing h2 {
    font-size:24px;
    padding-bottom:15px;
  }

  .footer-bar {
      min-height: 50px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .privacy {
    font-size:10px;
  }
  footer .allrights {
    font-size:9px;
    color: rgba(255, 255, 255, 0.3);
  }
  footer .tagline {
    text-align: left;
    display: block;
    padding-left:20px;
    padding-top:0px;
  }
  footer .tagline:first-child {
    padding-top:10px !important;
  }

  .footer-bar {
      min-height: 90px;
      height: 00px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  

  footer .logo {
      padding:0;
  }
  
  
}




/* Add all overrides here */










