body {
  color: #d62a34;
  font-weight: 300;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.15;
}

* {
  box-sizing: border-box;
  line-height: inherit;
}

a,
a:hover,
a:focus,
a:active {
  color: inherit;
}

a:hover,
a:focus,
a:active {
  text-decoration: underline;
}

ul,
ol,
dl,
svg,
p {
  margin-bottom: 1.5rem;
}

dl {
  display: flex;
  flex-flow: row wrap;
}

dt {
  flex: 1 1 100px;
}

dd {
  flex: 1 1 calc(100% - 100px);
  padding: 0 1rem;
  white-space: nowrap;
}

strong {
  font-weight: 700 !important;
}

#page {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 100vh;
}

.wrap {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  padding: 1.5rem 0;
}

.logo {
  width: 300px;
  height: 300px;
  display: block;
  max-width: 50%;
  max-height: 50vw;
  margin-bottom: 3rem;
}

.content {
  background-color: #ffffff;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  margin-bottom: 3rem;
  box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
  padding-top: 1.5rem;
}

.col {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  flex: 1 1 auto;
  padding: 1rem;
  border: 1px solid #ffffff;
}

.lead {
  font-size: 1.25em;
  font-weight: 700;
}

.bk {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bk-image {
  min-width: 100%;
  max-width: 150%;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;

  opacity: 0.5;
}

@supports (object-fit: cover) {
  .bk-image {
    object-fit: cover;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 100%;
    max-width: auto;
    min-width: auto;
  }
}

@media (min-width: 768px) {

  .wrap {
    padding: 1.5rem 1rem;
  }

  .content {
    background-color: #ffffff;
    font-size: 1.25rem;
    flex-wrap: nowrap;
    align-items: stretch;
    padding: 0;
  }

  .col {
    padding: 3rem;
    flex: 1 0 50%;
    align-items: center;
    border: none;
    background-image: radial-gradient(ellipse farthest-side at bottom left, rgba(255,255,255,1), rgba(255,255,255,0.75));
  }

  .col:first-child {
    background-image: radial-gradient(ellipse farthest-side at bottom right, rgba(214,42,52,1), rgba(214,42,52,0.875) );
    color: #ffffff;
  }

  .lead em,
  .lead strong {
    white-space: nowrap;
  }
}