:root {
  --cyan: #006363;
  --light-cyan: #1ba4a9;
  --orange: #9e3500;
  --light-gray: #f7f7f7;
  --medium-gray: #ebebeb;
  --dark-gray: #202020;
  --padding: 2rem;
}

* {
  box-sizing: border-box;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style-type: none;
  font-style: normal;
}

html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-size: 18px;
  font-family: "bio-sans", sans-serif;
  font-weight: 300;
}

body {
  margin: 0;
  padding: 0;
}
body > div:last-of-type {
  display: none;
}

main {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

* + * {
  margin-top: 2rem;
}

* + p,
* + a,
* + small,
.small-margin {
  margin-top: 1em;
}

* + button,
* + .button {
  margin-top: 1.5rem;
}

p a {
  display: inline;
}

br {
  line-height: 0;
}

hr {
  max-width: calc(1000px - var(--padding) * 2);
  width: calc(100% - var(--padding) * 2);
  margin: 0 auto;
  border: 0;
  border-top: 1px solid #bfbfbf;
  display: block;
  height: 1px;
}

section {
  margin: 0 auto;
}

h2,
.h2 {
  font-size: 2.5rem;
  line-height: 1.1;
  overflow: visible;
  color: var(--cyan);
  font-family: "bebas-kai", sans-serif;
}
h2 small,
.h2 small {
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "bio-sans", sans-serif;
}

h3,
.small-heading {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
  text-decoration: none;
  font-family: "bio-sans", sans-serif;
}
h3 a,
.small-heading a {
  text-decoration: none;
  font-weight: 600;
}

h4 {
  font-size: 1.1rem;
  line-height: 1.1;
  font-weight: 600;
}

a {
  color: var(--orange);
  text-decoration: underline;
  font-weight: 500;
  display: inline-block;
}

button,
.button {
  padding: 0.5rem 1rem;
  background-color: var(--orange);
  text-transform: uppercase;
  color: #fff;
  font-family: "bebas-kai", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  margin-right: 1rem;
  border: none;
  justify-self: flex-start;
}
button:disabled,
.button:disabled {
  background: var(--dark-gray);
}

.button-link {
  padding: 0;
  background-color: transparent;
  text-transform: none;
  font-family: "bio-sans", sans-serif;
  color: var(--orange);
  font-size: inherit;
  text-decoration: underline;
}
* + .button-link {
  margin-top: 1.25rem;
}

.heading-button {
  font-size: inherit;
  font-family: "bio-sans", sans-serif;
  padding: 0;
  background-color: transparent;
  color: inherit;
  text-transform: none;
  font-weight: inherit;
  margin-right: 0;
}

.bar-link {
  text-transform: uppercase;
  font-weight: 600;
}
.bar-link * {
  display: inline-block;
  margin-top: 0;
}
.bar-link *:not(:last-child):after {
  content: "|";
  color: var(--cyan);
  display: inline-block;
  margin-left: 0.5rem;
  margin-right: 0.25rem;
}

.blue-button {
  background-color: var(--cyan);
}

.hollow-button {
  color: var(--orange);
  background-color: transparent;
  border: 2px solid var(--orange);
}

small {
  display: block;
}

img {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
}

iframe {
  border: none;
  width: 100%;
  height: 100%;
  max-height: 550px;
}

hr {
  max-width: calc(1000px - var(--padding) * 2);
  width: 100%;
  margin: 0 auto;
  border: 0;
  border-top: 1px solid #bfbfbf;
  display: block;
  height: 1px;
}

.container {
  margin: 0 auto;
  padding: 3rem var(--padding);
  max-width: 1000px;
  height: 100%;
}

.gray-background {
  background-color: var(--light-gray);
  margin: 0;
}

.orange-background {
  background-color: var(--orange);
  margin: 0;
  color: #fff;
}
.orange-background * {
  color: inherit;
}

.orange-box {
  background-color: rgba(215, 105, 52, 0.08);
  padding: 2rem;
  margin-top: 1.25rem;
}

.white-button {
  background-color: #fff;
  color: var(--orange);
}

.lightbox-div {
  opacity: 0;
  z-index: -1;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 3rem var(--padding);
  background-color: rgba(0, 0, 0, 0.7);
  margin: auto;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  width: 100%;
  height: 100%;
  transition: 0.5s ease-in-out;
}
.lightbox-div div {
  background-color: #fff;
  overflow: scroll;
  height: 100%;
}
.lightbox-div ol {
  padding-left: var(--padding);
}

.active-lightbox {
  opacity: 1;
  z-index: 10;
}

.noscroll {
  height: 100% !important;
  overflow: hidden !important;
}

.orange-text {
  color: var(--orange);
}

.cyan-text {
  color: var(--cyan);
}

.bebas-text {
  font-family: "bebas-kai", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

.bio-text {
  font-family: "bio-sans", sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

.bold-text {
  font-weight: 600;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-center {
  text-align: center;
}
.text-center button,
.text-center .button {
  margin-right: auto;
}
.text-center .icon-header:before {
  margin: 0 auto;
}

.text-left {
  text-align: left;
}

.icon-header {
  color: var(--orange);
  text-decoration: none;
}
.icon-header:before {
  content: "";
  width: 80px;
  height: 50px;
  display: block;
  position: static;
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 0.75rem;
}

#alert:before {
  background-image: url("/images/icons/privacy.svg");
  width: 50px;
  height: 50px;
}

.arrow-link {
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.arrow-link:after {
  content: " >";
  display: inline;
}

.circle-image {
  width: 250px;
  height: 250px;
  border-radius: 50%;
}

.top-image {
  object-position: top;
}

.cyan-image {
  box-shadow: 17px 17px 0px 0px var(--light-cyan);
  width: 100%;
  height: calc(100% - 17px);
  max-height: 350px;
  max-width: 400px;
}

.status {
  font-size: 0.8rem;
  font-weight: 600;
}

* + .default-list {
  margin-top: 1.25rem;
}

.default-list {
  margin-left: 17.2px;
}
.default-list li + li {
  margin-top: 0.5rem;
}
.default-list li {
  list-style-type: disc;
}
.default-list li::marker {
  color: var(--orange);
}
.default-list li > * {
  vertical-align: text-top;
}
.default-list li > a + a {
  margin-top: 0.5rem;
  display: block;
  font-size: 0.8rem;
}

.reorder-col {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
}

.first-item {
  order: 0;
}

.middle-item {
  order: 1;
}

.last-item {
  order: 2;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(max(250px, (100% - 2rem) / 2), 1fr));
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}
.two-col > * {
  margin-top: 0;
}

.three-col {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(max(225px, (100% - 2rem) / 4), 1fr));
  align-items: flex-start;
}
.three-col > * {
  margin-top: 0;
}

.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  justify-content: center;
}
.grid > * {
  margin-top: 0;
  width: auto;
}

.flex {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.flex > * {
  width: auto;
  margin-top: 0;
}

.full-col {
  grid-column: -1/1;
}

.stretch-col {
  align-self: stretch;
}

.center-col {
  align-items: center;
}

.desktop-only {
  display: none;
}

.dropdown-content {
  max-height: 0;
  height: 100%;
  transform: scaleY(0);
  transition: 0.5s ease-in-out;
  overflow: hidden;
  margin-top: 0;
}

.open-dropdown {
  max-height: 5000px;
  transform: scaleY(1);
  margin-top: 1.25rem;
  overflow: visible;
}

.dropdown-arrow:after {
  content: "";
  width: 0;
  height: 0;
  display: inline-block;
  border-left: 8px solid var(--cyan);
  border-bottom: 6.5px solid transparent;
  border-top: 6.5px solid transparent;
  margin-left: 0.5rem;
  transition: 0.25s ease-in-out;
  transform: roate(0deg);
}

.open-dropdown-arrow:after {
  transform: rotate(90deg);
}

.image-heading {
  max-height: 75px;
  width: 100%;
  max-width: 320px;
  object-fit: contain;
  object-position: left;
}

.logo {
  display: block;
  max-width: 150px;
  height: auto;
  margin-left: 0;
  margin-right: 0;
  box-shadow: none;
}

header {
  background-image: url("/images/header-background.svg");
  background-size: 2433px 445px;
  background-repeat: no-repeat;
  margin-top: 0;
}
header h2 {
  color: var(--orange);
  width: 100%;
}
header h2 small {
  color: var(--cyan);
  margin-bottom: 0.5rem;
}
header dt {
  position: absolute;
  top: calc(-20px - 0.25rem);
  left: 0;
}
header dd {
  font-size: 1rem;
  margin: 0;
  color: var(--light-cyan);
  position: absolute;
  opacity: 0;
  top: 0.25rem;
  transition: 0.5s ease-in-out;
  white-space: nowrap;
}
header dd a {
  text-decoration: none;
  color: inherit;
  font-weight: inherit;
}

#header-flex-container {
  display: flex;
  flex-wrap: wrap;
  padding: 3rem var(--padding);
  min-height: 100vh;
}

#looking-for {
  padding: 0.25rem 1rem;
  margin-top: 2.5rem;
  border: 1px solid var(--light-cyan);
  box-shadow: 6px 6px 0px 0px var(--light-cyan);
  height: 100%;
  position: relative;
  color: var(--cyan);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: 0.5s ease-in-out;
  background-color: #fff;
}

#active-looking {
  position: relative;
  z-index: 2;
  top: 0 !important;
  opacity: 1;
}

#donate-text {
  display: block;
  flex-basis: 100%;
  padding-left: 50px;
  text-indent: -50px;
  line-height: 0;
}
#donate-text:before {
  background-image: url("/images/icons/donate.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  margin: 0;
  width: 50px;
  height: 50px;
  vertical-align: middle;
}
#donate-text span {
  margin: 0;
}

h1 {
  font-family: "bebas-kai", sans-serif;
  text-transform: uppercase;
  font-size: 2.5rem;
  color: var(--orange);
  line-height: 1.1;
}
h1 a {
  display: inline;
}

#header-nav {
  display: flex;
  justify-content: space-between;
  gap: var(--padding);
  align-items: center;
  align-self: flex-start;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
#header-nav > * {
  margin-top: 0;
}

#header-list {
  margin-top: 1rem;
}
#header-list li + li {
  margin-top: 1rem;
}
#header-list li {
  list-style-type: disc;
}
#header-list li::marker {
  color: var(--orange);
}

#top-bar {
  background-color: var(--cyan);
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  display: none;
  transition: 0.5s ease-in-out;
}
#top-bar a,
#top-bar button,
#top-bar div {
  color: #fff;
  margin: 0;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
}
#top-bar > div {
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem;
  text-transform: uppercase;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0.35rem var(--padding);
}
#top-bar .dropdown-content {
  width: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
  order: 4;
}
#top-bar .dropdown-content a {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.65rem;
  width: 100px;
  overflow: visible;
  white-space: nowrap;
  transition: 0.25s ease-in-out;
}

#menu {
  font-size: 0;
  width: 30px;
  height: 30px;
  margin-top: 0;
  margin-left: 0.5rem;
  margin-right: 0;
  padding: 0;
  vertical-align: top;
  background-image: url("/images/menu.svg");
  background-size: contain;
  background-position: center;
  background-color: transparent;
}

#menu-close {
  font-size: 0;
  width: 30px;
  height: 30px;
  margin-top: 0;
  margin-left: 0.5rem;
  padding: 0;
  vertical-align: top;
  background-image: url("/images/menu-white.svg");
  background-size: contain;
  background-position: center;
  background-color: transparent;
  transition: 0.5s ease-in-out;
}

#hamburger-menu {
  min-height: 100vh;
  width: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  position: absolute;
  z-index: 3;
  top: 0;
  margin: 0;
  right: 0;
  transition: 0.5s ease-in-out;
  background-color: var(--cyan);
  padding: 0;
}
#hamburger-menu a,
#hamburger-menu button {
  display: block;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
* + #hamburger-menu a,
* + #hamburger-menu button {
  margin: 0;
  margin-top: 1.25rem;
}
#hamburger-menu .dropdown-content {
  margin: 0;
  margin-left: 0.5rem;
}
#hamburger-menu .dropdown-content a {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: bold;
}
#hamburger-menu .dropdown-content .button-link {
  font-size: 0.8rem;
  margin-top: 0.75rem;
}

.open-menu {
  width: 100vw !important;
  padding: 3rem 2rem !important;
}

nav {
  display: inline-block;
  vertical-align: middle;
}
nav a {
  margin: 0 0.5rem;
  display: inline-block;
}
nav .button {
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  margin-top: 0;
  font-weight: 500;
}

#google-translate {
  max-width: 250px;
  margin-top: 1.25rem;
  min-height: 62px;
  min-width: 1px;
  width: 100%;
  display: block;
  position: static;
  overflow: visible;
}
#google-translate span,
#google-translate a {
  margin-top: 0;
  color: #fff;
  display: inline;
}

.icon {
  font-size: 0;
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: bottom;
  margin: 0 0.5rem;
}

#phone-icon {
  background-image: url("/images/icons/phone.svg");
  vertical-align: middle;
}

#email-icon {
  background-image: url("/images/icons/mail.svg");
  vertical-align: middle;
}

.iframe {
  position: relative;
}
.iframe img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.iframe button {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 60px;
  width: 80px;
  border-radius: 12px;
  font-size: 0;
  padding: 0;
  transition: 0.2s ease-in-out;
}
.iframe button:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #fff;
  clip-path: polygon(20% 0%, 20% 100%, 100% 50%);
}

.youtube-button {
  background-color: #f00;
}
.youtube-button:hover {
  background-color: #d80011;
}

#hero-video {
  max-width: 100%;
  height: auto;
}
#hero-video iframe {
  margin: 0;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
}

#guidance h3 {
  margin-top: 1rem;
}
#guidance a {
  margin-top: 0.5rem;
}
#guidance img {
  width: 225px;
  height: 175px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
}

#guidance-grid-container {
  position: relative;
  height: 275px;
}

#guidance-grid {
  display: flex;
  flex-wrap: nowrap;
  position: absolute;
  left: 0;
  gap: 1.5rem;
  transition: 0.5s ease-in-out;
}
#guidance-grid > * {
  margin: 0;
  min-width: 225px;
  max-width: 225px;
  position: relative;
  z-index: 1;
}
#guidance-grid small {
  margin-top: 0;
  font-size: 0.7rem;
}
#guidance-grid small a {
  margin: 0;
}

#assistance ul {
  margin: 0 auto;
  padding: 2rem var(--padding);
  font-family: "bebas-kai", sans-serif;
  font-size: 4.5rem;
  color: #fff;
}
#assistance ul small {
  font-size: 1.5rem;
  line-height: 1;
}

#equity:before {
  background-image: url("/images/icons/equity.svg");
}

#adu:before {
  background-image: url("/images/icons/adu.svg");
}

#house:before {
  background-image: url("/images/icons/housing.svg");
}

#relief:before {
  background-image: url("/images/icons/relief.svg");
}

#mission .full-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: var(--orange);
  font-weight: 600;
}
#mission small {
  margin-top: 0;
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.7rem;
  text-transform: uppercase;
}
#mission small:not(:last-child):after {
  content: "|";
  color: var(--cyan);
  margin: 0 auto;
}

#vision {
  background-image: url("/images/vision.jpg");
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(2px);
  background-blend-mode: overlay;
  color: #fff;
}
#vision h2 {
  color: #fff;
}

#refinance-image {
  width: 100%;
  max-height: 350px;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
}
.logo-grid img {
  max-height: 120px;
  max-width: 150px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}
.logo-grid a {
  width: 100%;
  height: 100%;
  max-height: 120px;
  max-width: 150px;
  margin: 0 auto;
  align-self: center;
}

#small-image {
  max-height: 90px;
}

form.three-col,
form.two-col {
  gap: 2rem;
}

label {
  display: block;
  font-weight: 800;
  font-size: 0.7rem;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

input,
textarea {
  display: block;
  font-family: "bio-sans", sans-serif;
  font-size: 0.9rem;
  margin-top: 0;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.5);
  padding: 0.5rem;
  font-family: "bio-sans", sans-serif;
  font-size: 0.9rem;
  padding: 0.25rem;
}
input:focus,
textarea:focus {
  outline: 2px solid var(--cyan);
}

select {
  width: 100%;
  margin-top: 0;
  background-color: var(--cyan);
  appearance: none;
  -webkit-appearance: none;
  color: #fff;
  padding: 0.5rem;
  border-radius: 6px;
  border: none;
}

textarea {
  height: 100px;
}

.recaptcha-text {
  font-size: 0.55rem;
  text-transform: uppercase;
  margin-top: 0;
  text-align: right;
}
.recaptcha-text a {
  margin-top: 0;
}

footer {
  margin: 0 auto;
  background-color: var(--dark-gray);
  color: #fff;
}
footer a,
footer .button-link {
  grid-gap: 1rem;
  color: #fff;
  font-size: 0.8rem;
  text-transform: none;
  text-decoration: none;
  text-align: left;
  margin: 0;
}
footer small {
  color: var(--medium-gray);
  vertical-align: bottom;
  margin-top: 0.25rem;
}
footer .dropdown-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}

#goog-gt-tt + div {
  display: none;
  margin-top: 0;
}

address {
  font-weight: 500;
  color: #fff;
  margin-top: 1rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}
.footer-grid > * {
  flex-grow: 1;
  margin-top: 0;
  min-width: 150px;
  flex-basis: calc(100% / 2 - 1rem);
}

#social-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 350px;
  gap: 1rem;
}
#social-grid a {
  margin-top: 0;
  font-size: 0;
}
#social-grid a:before {
  content: "";
  width: 30px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
}

#facebook {
  background-image: url("/images/icons/facebook.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#instagram {
  background-image: url("/images/icons/instagram.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#twitter {
  background-image: url("/images/icons/twitter.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#tiktok {
  background-image: url("/images/icons/tiktok.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#youtube {
  background-image: url("/images/icons/youtube.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#linkedin {
  background-image: url("/images/icons/linkedin.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media (min-width: 750px) {
  .desktop-only {
    display: inline-block;
  }

  .mobile-only {
    display: none;
  }

  .two-col {
    grid-template-columns: repeat(auto-fit, minmax(max(250px, (100% - 3rem) / 2), 1fr));
    gap: 4rem 3rem;
  }

  .three-col {
    gap: 4rem 3rem;
    grid-template-columns: repeat(auto-fit, minmax(max(250px, (100% - 3rem) / 4), 1fr));
  }

  .first-item-desktop {
    order: -1;
  }

  .container {
    padding: 4rem var(--padding);
  }

  header h2 {
    font-size: 5rem;
    line-height: 1;
  }
  header h2 small {
    font-size: 2rem;
  }

  nav {
    position: static;
  }

  #header-flex-container {
    padding-top: calc(4rem + 30px);
  }

  #top-bar {
    display: block;
  }

  #menu {
    vertical-align: middle;
    z-index: 0;
  }

  #hamburger-menu {
    width: 0;
    right: -100%;
    padding-top: calc(4rem + 30px);
  }

  .open-menu {
    right: 0 !important;
    width: 30% !important;
    min-width: 400px !important;
    padding: 4rem 2rem !important;
  }

  #hero-video {
    max-height: 450px;
    height: calc(100% - 17px);
  }

  #guidance-grid {
    gap: 2rem;
  }

  #refinance-image {
    max-height: none;
    width: auto;
  }

  #mission small {
    font-size: 0.8rem;
  }
}
@media (min-resolution: 2dppx) {
  #vision {
    background-image: url("/images/vision-2x.jpg");
  }
}
