html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  --orange: #ff4747;
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: #010432;
  padding: 2rem 1rem;
}

* {
  box-sizing: border-box;
}

#one table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 1rem 0;
  color: #FFFFFF;
}
#one table th, #one table td {
  padding: 2rem;
}
#one table tr {
  border-spacing: 1rem 0;
}
#one table thead tr td:not(:first-of-type), #one table tbody tr td:not(:first-of-type) {
  text-align: center;
}
#one table thead img {
  max-height: 2.5rem;
  margin-bottom: 0.75rem;
}
#one table thead tr th:not(:first-of-type) {
  text-align: center;
}
#one table tbody tr td:first-of-type {
  width: 100%;
}
#one table tbody tr:nth-child(n+3):nth-child(-n+6) td:not(:first-of-type) {
  color: var(--orange);
  position: relative;
}
#one table tbody tr:nth-child(n+3):nth-child(-n+6) td:not(:first-of-type)::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--orange);
}
@media (min-width: 601px) {
  #one table table tr:nth-child(2n-1) {
    background-color: #0d1042;
  }
}
@media (max-width: 600px) {
  #one table table {
    table-layout: auto;
  }
  #one table thead tr {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #one table thead tr th:first-of-type {
    display: none;
  }
  #one table thead tr th {
    display: block;
    flex: 1 1;
  }
  #one table tbody tr {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #one table tbody tr td {
    width: 100%;
  }
  #one table tbody tr td:first-of-type {
    width: 100%;
    text-align: center;
    padding: 0 0 1.25rem;
  }
  #one table tbody tr td:nth-of-type(2) {
    margin-right: 1rem;
  }
  #one table tbody tr td:not(:first-of-type) {
    background-color: #0d1042;
    flex: 1 1;
  }
  #one table tbody tr:not(:last-of-type) {
    margin-bottom: 2.5rem;
  }
  #one table tbody tr:last-of-type td:first-of-type {
    display: none;
  }
  #one table tbody tr:last-of-type td:not(:first-of-type) {
    padding: unset;
    background-color: unset;
  }
  #one table tbody tr:last-of-type td:not(:first-of-type) span, #one table tbody tr:last-of-type td:not(:first-of-type) a {
    display: inline-block;
    width: 100%;
  }
  #one table tbody tr:last-of-type td:not(:first-of-type) a.button {
    padding: 1.5rem 2rem;
  }
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.button {
  padding: 1rem 2rem;
  border-radius: 0.125rem;
  background-color: var(--orange);
  white-space: nowrap;
  text-decoration: none;
  color: #FFFFFF;
}

.orange {
  color: var(--orange);
}