/**
 *
 * This stylesheet affects only the "index" page.
 *
 */
/**
 *
 * Header and Hero
 *
 */
#hero {
  color: white;
  overflow: hidden;
}
#hero #logo {
  height: 25px;
}
#hero #main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
}
@media (max-width: 675px) {
  #hero #main-content {
    grid-template-columns: 1fr;
    gap: 0em;
  }
}
#hero get-started-dropdown {
  display: none;
  position: absolute;
  transform: translateY(8px);
  z-index: 10;
}
#hero #hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 675px) {
  #hero #hero-text {
    margin-top: 10vw;
    margin-bottom: -4em;
    max-width: calc(100vw - 2em);
  }
}
#hero h1 {
  margin-bottom: 0.1em;
}
@media (max-width: 675px) {
  #hero h1 {
    font-size: 10vw;
  }
}
#hero button#get-started {
  padding: 0.5em 1em;
  background-color: white;
  border-radius: 8px;
  color: #5c01c6;
  font-size: 1.3em;
  font-weight: 800;
  position: relative;
  z-index: 1;
}
#hero #image-grid-container {
  position: relative;
  height: 44em;
}
#hero #image-grid {
  --gap: 1.2em;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: end;
  position: absolute;
  bottom: 0;
  width: 100%;
  min-width: 540px;
}
@media (max-width: 675px) {
  #hero #image-grid {
    bottom: unset;
    position: static;
  }
}
#hero #image-grid .card {
  --radius: 1em;
  width: 100%;
  display: block;
  transition: transform 0.15s ease-out;
  cursor: pointer;
}
#hero #image-grid .card:not(.no-effect):hover {
  transform: translateY(-4px);
}
#hero #image-grid .card:not(:last-child) {
  margin-bottom: var(--gap);
}
#hero #image-grid .card img {
  display: block;
  width: 100%;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}
#hero #image-grid .card div {
  --height: 2em;
  height: var(--height);
  line-height: var(--height);
  padding: 0.2em 0.8em;
  font-size: 0.9em;
  background: rgba(255, 255, 255, 0.25);
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
#hero #image-grid .column:nth-child(2) {
  margin-bottom: var(--gap);
}
#hero #image-grid .column:nth-child(2) .card:first-child img {
  -webkit-mask-image: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 100%);
}

/**
 *
 * Products
 *
 */
#zac-brown-band-icon {
  max-width: 4em !important;
}

#girls-who-code-icon {
  max-width: 6em !important;
}

two-column-section img.imagery-big {
  width: 130%;
  max-width: unset;
  display: none;
}
@media (min-width: 1000px) {
  two-column-section img.imagery-big {
    display: inline-block;
  }
  two-column-section img.imagery-small {
    display: none;
  }
}
two-column-section #giving-apis-image {
  box-shadow: 0px 10px 48px rgba(0, 0, 0, 0.13);
  border-radius: 1em;
  max-width: 23em;
}

/**
 *
 * Spotlight and features
 *
 */
#spotlight-and-features {
  padding: 6em 0 12em 0;
}

spotlight-slideshow {
  margin-bottom: 9em;
  color: white;
}

spotlight-slide img {
  border-radius: 0.7em;
}

/*# sourceMappingURL=home.css.map */
