@import url("https://use.typekit.net/yjz7tmm.css");

html {
  font-family: "acumin-pro", -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  font-size: 1rem;
  word-spacing: 1px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

*,
:after,
:before,
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
:after,
:before {
  margin: 0;
}

body {
  background-color: #f5f5f5;
  color: #333333;
}

header {
  background-color: #009494;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 999;
}

footer {
  color: #999;
  padding: 1rem;
  text-align: center;
  width: 100%;
}

.announcement-wrapper {
  background-color: #333333;
  color: white;
  text-align: center;
}

.announcement {
  margin: 0 auto;
  max-width: 640px;
  padding: 0.5rem 0;
}

.announcement a {
  color: white;
}

.header-container {
  display: flex;
  margin: auto;
  max-width: 640px;
}

.logo {
  color: white;
  order: 1;
  font-size: 4rem;
  font-weight: 600;
  margin: 0;
  padding: 0.5rem 0;
}

.logo span {
  font-size: 2rem;
  font-weight: 300;
}

.payoff {
  align-self: flex-end;
  color: #EFD755;
  flex: 1;
  order: 2;
  font-size: 1.5rem;
  padding-bottom: 1.2rem;
  text-align: right;
}

.gradient {
  position: absolute;
  margin-right: -5rem;
  right: 0;
  top: 0;
  transform: rotate(15deg);
  transform-origin: top right;
  width: 200vw;
}

.gradient .red {
  background-color: #F10050;
  height: 4rem;
}

.gradient .orange {
  background-color: #F65A3F;
  height: 2rem;
}

.gradient .yellow {
  background-color: #EFD755;
  height: 1rem;
}

.container {
  background-color: #fff;
  border-radius: 1rem;
  max-width: 640px;
  margin: 2rem auto 0;
  text-align: justify;
  -webkit-box-shadow: 0 0 0.5rem 0 rgba(0,0,0,.15);
  box-shadow: 0 0 0.5rem 0 rgba(0,0,0,.15);
}

.content {
  -webkit-box-shadow: 0 0 -0.5rem 0 rgba(0,0,0,.15);
  box-shadow: 0 0 -0.5rem 0 rgba(0,0,0,.15);
  padding: 2rem;
}

.content h2 {
  color: #009494;
  font-weight: 400;
  margin-bottom: 1rem;
}

.content p {
  line-height: 1.5;
  margin-bottom: 2rem;
}

.content p.highlight {
  color: #F10050;
  font-weight: bold;
}

.content strong {
  font-style: italic;
  font-weight: inherit;
}

.image-container {
  border-radius: 1rem 1rem 0 0;
  min-height: 320px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.image-container img {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -50%;
  width: 100%;
}

.image-container.image--hero {
  min-height: auto;
}

.image-container.image--hero img {
  margin-top: 0;
  position: relative;
  top: 0;
}

.links {
  text-align: center;
}

.button {
  border: 1px solid transparent;
  border-radius: 2rem;
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
}

.button:hover {
  -webkit-box-shadow: 0 0.15rem 0.2rem 0 rgba(0,0,0,.15);
  box-shadow: 0 0.15rem 0.2rem 0 rgba(0,0,0,.15);
}

.button--primary {
  background-color: #F10050;
  color: #fff;
}

.button--secondary {
  background-color: white;
  border-color: #ddd;
  color: #666;
}

@media only screen and (max-width: 1200px) {
  .gradient {
    margin-right: -5rem;
  }
  .gradient .red    { height: 3rem; }
  .gradient .orange { height: 1.5rem; }
  .gradient .yellow { height: 0.75rem; }
}

@media only screen and (max-width: 720px) {
  header {
    -webkit-box-shadow: 0 0 1rem 0 rgba(0,0,0,.25);
    box-shadow: 0 0 1rem 0 rgba(0,0,0,.25);
  }
  .header-container {
    flex-direction: column;
  }
  .announcement {
    padding: 0.5rem;
  }
  .container {
    border-radius: 0;
    margin-top: 0;
    max-width: inherit;
    text-align: left;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .image-container {
    border-radius: 0;
    max-height: 320px;
  }
  .logo {
    font-size: 2rem;
    padding: 0.5rem 0 0 1rem;
  }
  .logo span {
    font-size: 1rem;
  }
  .payoff {
    font-size: 1rem;
    text-align: left;
    width: 100%;
    padding: 0 1rem 1rem;
  }
  .gradient {
    margin-right: -7rem;
  }
  .button {
    display: block;
  }
}

