/* =====================================================
                    General Styling & Buttons
  ===================================================== */

.text-blue {
  color:#0D79BC
}

.flex-justify {
  display: flex;
  justify-content: space-between;
}

.flex-center {
  align-items: center;
}

.margin-bottom-threequarterx {
  margin-bottom: 0.75em;
}

/* .center-items-horz {
  margin: auto;
} */

.button-nav-green {
  background-color: #fff;
  color: #7dbf63;
  border: solid 2px #7dbf63;
  text-transform: uppercase;
}

.button-nav-green:hover {
  background-color: #7dbf63;
  color: #fff;
}

.button-nav-blue {
  background-color: #fff;
  color: #0D79BC;
  border: solid 2px #0D79BC;
  text-transform: uppercase;
}

.button-nav-blue:hover {
  background-color: #0D79BC;
  color: #fff;
}

.button-green-blue {
  background-color: #7dbf63;
}

.button.button-green-blue:hover {
  background-color: #0D79BC;
  text-shadow: 0 0 3px rgba(57, 65, 70, 0.5);
}

/* =====================================================
                    Header & Nav
  ===================================================== */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.acc-nav {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 5px 5px rgba(0,0,0,0.2);
  padding-top: 20px;
  padding-bottom: 20px;
}

.acc-nav-logo {
width: clamp(150px, 20%, 276px);
/* width: 220px; */
}

.phone-icon {
  width: 18px;
  margin-right: 0.25em;
}

.icon-fix {
  width: clamp(60px, 5vw, 90px);
  /* width: min(40px, 15vw); */
  margin: 0 auto auto auto;
}

.acc-hero-image {
  background: url("https://www-beta.qgiv.com/acceptiva/images/banner.jpg") center center no-repeat;
  background-size: cover;
  top: 0;
  bottom: 0;
  width: 100%;
}

.acc-footer-image {
  background: url("https://www-beta.qgiv.com/acceptiva/images/footer-bg.jpg") center center no-repeat;
  background-attachment: fixed;
  background-size: cover;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: -500;
}

.acc-hero-heading {
  color: #fff;
  text-shadow: 1px 1px 24px rgba(57, 65, 70, 0.9);
}

.announcement {
  background-color: #384148;;
  width: 100%;
  color: #FFF;
  padding-top: 1em;
  padding-bottom: 1em;
  margin-bottom: 0em;
  text-align: center;
  position: relative;
  z-index: 1;
}

#terms-conditions, #privacy-policy {
  scroll-margin-top: 9em;
}

.container-announcement {
  zoom: 1;
  max-width: 900px;
  margin: 0 auto;
}

.feature-card {
  min-height: 140px;
  margin: auto;
}

.hamburger-button {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}

.hamburger-button-bar {
  height: 3px;
  width: 100%;
  background-color: #0D79BC;
  border-radius: 10px;
}

.navbar-links {
  background-color: #fff;
  box-shadow: 0 5px 5px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

.navbar-links li {
  list-style: none;
  color: #0D79BC;
  font-size: 1.5em;
  text-align: center;
  padding: 0.5em 0;
}

.navbar-links li:hover {
  color: #fff;
  background-color: #0D79BC;
  transition: all 0.2s ease-in-out;
}

.navbar-links.active {
  display: flex;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .hide-on-tablet {
    display: none;
  }
  .center-text-on-tablet {
    text-align: center;
  }

  .show-on-tablet-nav {
    display:flex;
  }
}

.content-standard.active {
  padding-bottom: 0;
}