/*! Flickity v2.0.9
http://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative; }

.flickity-enabled:focus {
  outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%; }

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%; }

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }

.flickity-prev-next-button:hover {
  background: white; }

.flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F; }

.flickity-prev-next-button:active {
  opacity: 0.6; }

.flickity-prev-next-button.previous {
  left: 10px; }

.flickity-prev-next-button.next {
  right: 10px; }

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px; }

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px; }

.flickity-prev-next-button:disabled {
  opacity: 0.3;
  cursor: auto; }

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%; }

.flickity-prev-next-button .arrow {
  fill: #333; }

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1; }

.flickity-rtl .flickity-page-dots {
  direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer; }

.flickity-page-dots .dot.is-selected {
  opacity: 1; }

html, body {
  margin: 0;
  padding: 0; }

* {
  box-sizing: border-box; }

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  margin: 0; }

.body {
  font-size: 0.75em;
  line-height: 2; }

.heading, .card .card-attributes dt, .card .card-title {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .125em; }

header {
  width: 100%;
  align-self: flex-start;
  height: 120px;
  display: flex;
  align-items: center; }
  header .logo_wrap {
    height: 50%;
    max-width: 100%;
    margin: auto;
    display: flex;
    align-items: center; }
    header .logo_wrap svg {
      display: block;
      width: 100%;
      height: 100%; }

.deck .flickity-prev-next-button {
  border-color: #FA4E1C;
  border-width: 2px;
  border-style: solid;
  background-color: white;
  width: 30px;
  height: 30px; }
  @media (min-width: 1024px) {
    .deck .flickity-prev-next-button {
      display: none; } }
  .deck .flickity-prev-next-button .arrow {
    fill: #FA4E1C; }

.card {
  color: #FA4E1C;
  margin: 20px;
  border: 2px solid #FA4E1C;
  padding: 20px;
  height: calc( 100% - 40px);
  width: calc( 100% - 40px);
  background-color: white; }
  .card a {
    color: inherit;
    opacity: .7; }
  .card .card-inner {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas: "image" "title" "content" "attributes"; }
  .card .card-border {
    height: 100%;
    border-style: solid;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; }
  .card .card-attributes, .card .card-content, .card .card-title {
    padding: 5px 10px; }
    @media (min-width: 700px) {
      .card .card-attributes, .card .card-content, .card .card-title {
        padding: 20px 10px; } }
    @media (min-width: 1200px) {
      .card .card-attributes, .card .card-content, .card .card-title {
        padding: 30px 20px; } }
  .card .card-attributes, .card .card-content, .card .card-border, .card .card-title, .card .card-image {
    border-color: #FA4E1C;
    border-width: 2px; }
  @media (min-width: 1200px) {
    .card .card-attributes, .card .card-content, .card .card-border, .card .card-title {
      border-left-style: solid; } }
  .card .card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-area: image;
    position: relative;
    height: 100px;
    border-bottom-style: solid; }
    .card .card-image img {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      display: block; }
  .card .card-attributes {
    grid-area: attributes;
    border-top-style: solid; }
    .card .card-attributes dd {
      margin: 0; }
    .card .card-attributes .defs {
      column-count: 2;
      line-height: 1.2; }
      .card .card-attributes .defs dd + dd {
        margin-top: .5em; }
    .card .card-attributes div + div {
      margin-top: 1em; }
  .card .card-content {
    grid-area: content; }
    @media (mmin-width: 1200px) {
      .card .card-content {
        overflow-y: auto; } }
    .card .card-content .card-content-inner {
      max-width: 30em; }
  .card .card-title {
    font-size: 1.5625em;
    line-height: 1.25;
    grid-area: title; }
  @media (min-width: 700px) {
    .card {
      width: 60%; }
      .card .card-inner {
        grid-template-columns: 100px 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas: "image title" "content content" "attributes attributes"; }
      .card .card-title {
        border-bottom-style: solid; }
      .card .card-border {
        display: flex; }
      .card .card-image {
        height: auto; }
      .card .card-attributes dl {
        display: grid;
        grid-template-columns: 1fr 1fr 2fr;
        margin: 0; }
      .card .card-attributes div + div {
        margin-top: 0;
        margin-left: 1em; } }
  @media (min-width: 1200px) {
    .card .card-border {
      overflow-y: visible; }
    .card .card-inner {
      grid-template-columns: 2fr 1fr 3fr;
      grid-template-rows: auto 1fr 1fr;
      grid-template-areas: "image attributes title" "image attributes content" "image attributes content"; }
    .card .card-title {
      border-bottom-style: none;
      padding-bottom: 0; }
    .card .card-attributes {
      border-top-style: none;
      border-bottom-style: solid; }
    .card .card-content {
      padding-top: 0;
      overflow-y: auto; }
    .card .card-image {
      height: 100%;
      border-bottom-style: none; }
    .card .card-attributes {
      border-bottom-style: none; }
      .card .card-attributes .defs {
        column-count: 1; }
      .card .card-attributes dl {
        display: grid;
        grid-template-columns: 1fr;
        margin: 0; }
      .card .card-attributes div + div {
        margin-top: 1em;
        margin-left: 0; } }

body {
  font-family: 'Poppins', sans-serif;
  color: #FA4E1C;
  position: relative; }

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: calc( 100vh - 120px);
  position: relative; }

.deck-wrap {
  height: calc( 100% - 60px);
  margin-top: auto;
  margin-bottom: auto; }
  @media (min-width: 700px) {
    .deck-wrap {
      height: 70%; } }

.deck {
  height: 100%; }

.deck-nav {
  padding: 1em;
  height: 60px; }
  .deck-nav button {
    border: none;
    border-radius: 50%;
    font-family: inherit;
    font-size: inherit;
    background-color: inherit;
    width: 2em;
    height: 2em;
    color: #FA4E1C; }
    .deck-nav button.is-selected {
      background-color: #FA4E1C;
      color: white; }
  @media (max-width: 1024px) {
    .deck-nav {
      display: none; } }

footer {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 2em;
  z-index: 9;
  background-color: white; }
  footer a {
    text-decoration: none;
    color: inherit;
    padding: 0 1rem;
    display: block; }
    footer a.about-link:before {
      content: '?'; }
    footer a.open:before {
      content: 'X'; }

.contain {
  width: 100%;
  max-width: 800px;
  margin: 0 auto; }

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2em;
  padding: 1em; }
  @media (max-width: 500px) {
    .grid {
      grid-template-columns: 1fr; } }

.about {
  margin-top: 130px; }
  .about .heading2 {
    text-transform: uppercase;
    font-size: 1.5em; }
  .about .body {
    font-size: 1em; }
  .about a {
    color: inherit;
    opacity: .7; }

[data-modal] {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 53px);
  background-color: white;
  overflow-y: auto;
  padding-bottom: 100px; }
  [data-modal].open {
    display: block;
    align-items: center; }

.modal-inner {
  display: flex;
  min-height: 100%; }
  .modal-inner .grid {
    margin: auto; }
