/* Desktop */
/* Petit Desktop */
/* Tablet */
/* mobile */
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
}

.site-header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fafafa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  font-size: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  line-height: 0.875;
  padding: 1.25rem;
  width: 100%;
  -webkit-transition: font-size cubic-bezier(0, 1, 0, 1) 0.3s;
  transition: font-size cubic-bezier(0, 1, 0, 1) 0.3s;
  will-change: font-size;
  background-image: url(https://www.getaid.org/wp-content/themes/getaid-wp-theme//static/svg/header-gradient.svg);
  background-repeat: no-repeat;
  background-position: 65% 15%;
  background-size: 200% auto;
  position: relative;
}
.site-header .logos {
  margin-right: auto;
}
.site-header .logos a {
  display: block;
}
.site-header .logo {
  height: 5em;
  width: auto;
}
.site-header .logo + .logo {
  margin-left: 1em;
}
.site-header h1,
.site-header p {
  text-align: right;
  margin: 0;
}
.site-header h1 {
  font-size: 2em;
}
.site-header strong {
  display: block;
  font-size: 1.5em;
  font-weight: 700;
}
.site-header .annee {
  font-size: 5em;
  font-family: "Roboto condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  margin-left: 0.25em;
}

@media (max-width: 768px) {
  .site-header {
    font-size: 0.75rem;
  }
}
@media (max-width: 570px) {
  .site-header {
    font-size: 0.5rem;
  }
}
@media (max-width: 380px) {
  .site-header {
    font-size: 0.4rem;
  }
}
/*
@media (max-width: $mobile-l-width) {
  .site-header {
    line-height: 1;
    .logo {
      margin: 0 auto 1em auto;
    }
    & > * {
      flex-basis: 100%;
    }
    strong {
      display: inline;
    }
    h1,
    p,
    .annee {
      text-align: center;
      margin: 0;
    }
    .annee {
      font-size: 4em;
    }
  }
}
*/