body {
  margin: 0;
  padding-bottom: 5%;
  background-color: rgb(32, 33, 36);
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
}

.logo {
  margin: 0;
  padding: .25rem 1rem;
  font-size: 3em;
  font-style: italic;
  font-weight: 800;
  text-align: center;
}

.logo > a {
  text-decoration: none;
  color: inherit;
}

.nav-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: stretch;
  background-color: rgb(32, 33, 36, 0.1);
  backdrop-filter: blur(6px);
  z-index: 1000;
}

.nav {
  margin: 0;
  padding-left: 0;

  position: fixed;
  top: 0;
  height: 100vh;
  right: 100%;

  border-left: 3px solid #FE5630;

/*  background-color: rgb(32, 33, 36); */
  background: inherit;
  z-index: 1000;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  align-items: stretch;
  list-style-type: none;
}

.nav.open {
  right: 0;
}

.nav__item {
  display: flex;
  align-items: center;
  transition: color .5s;
  cursor: pointer;
}

.nav__item--action {
  margin-top: auto;
  position: relative;
  background-color: #FE5630;
  background: linear-gradient(135deg, rgba(254, 89, 7, 1), rgba(172, 16, 239, 1));
}

.nav__item:hover,
.nav__item:focus {
  background-color: #fff;
  color: rgb(32, 33, 36);
}

.sidebar-toggler {
  margin-left: auto;
  margin-top: auto;
  margin-bottom: auto;
  padding: 1rem;
  height: 100%;
  font-size: 1.2em;
  cursor: pointer;
}

.sidebar-toggler.open {
  position: fixed;
  top: 0;
  height: 100vh;
  left: 0;
  right: 0;
  background-color: rgb(32, 33, 36);
  font-size: 0;
  opacity: 90%;
}

.sidebar-toggler>input:checked+.nav {
  right: 0;
}

.nav__item>a {
  padding: 1rem 3rem;
  color: inherit;
  text-decoration: none;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}

.subnav {
  padding-left: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border-bottom: 3px solid #FE5630;
  display: none;
  list-style-type: none;
  transition: display 1s;
  background-color: rgb(32, 33, 36);
  color: #fff;
}

.nav__item:hover>.subnav,
.nav__item:focus>.subnav,
.subnav:hover,
.subnav:focus {
  display: block;
}

.subnav>.nav__item {
  padding: 1rem 3rem;
}

section {
  padding: 9rem 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

section>* {
  margin: 3rem;
}

.section--post-graphic {
  flex-direction: column-reverse
}

section:first-of-type {
  height: 100vh;
}

.section--hero-homepage {
  margin: 0 -3rem;
  background:
    linear-gradient(rgba(33, 37, 41, 0.01), rgb(33, 37, 41) 85%),
    radial-gradient(at left top, rgba(13, 110, 253, 0.5), rgba(0, 0, 0, 0) 50%),
    radial-gradient(at right top, rgba(255, 228, 132, 0.5), rgba(0, 0, 0, 0) 50%),
    radial-gradient(at right center, rgba(113, 44, 249, 0.5), rgba(0, 0, 0, 0) 50%),
    radial-gradient(at left center, rgba(214, 51, 132, 0.5), rgba(0, 0, 0, 0) 50%);
}
  
/*.section--creep-prior {
    margin-top: -200px;
  }*/

.section--highlight {
  background-color: #FE5630;
  background: linear-gradient(135deg, rgba(254, 89, 7, 1), rgba(172, 16, 239, 1));
  border-radius: 12px;
}

.section--highlight .btn {
  border-color: #fff;
}

@media (min-width: 980px) {
  .nav {
    flex-direction: row;
    height: auto;
    border-left: 0;
    position: static;
    background: none;
  }

  .nav__item>a {
    padding: .25rem 1rem;
  }

  .nav__item--action {
    margin-top: 0;
    margin-left: auto;
    border-bottom-left-radius: 25px;
  }

  .nav__item--action:hover,
  .nav__item--action:focus {
    /*background-color: rgb(251, 143, 48);*/
    background-color: #FE5630;
    color: #fff;
  }

  .nav__item--action::after {
    background-color: #fff;
    position: absolute;
    z-index: -1;
    content: '';
    top: -6px;
    bottom: 0;
    left: 0;
    right: -6px;
    border-bottom-left-radius: 25px;
    transition: transform .5s, border-radius .5s;
  }

  .nav__item--action:hover::after,
  .nav__item--action:focus::after {
    transform: translateX(-6px) translateY(6px);
    border-bottom-left-radius: 31px;
  }

  .sidebar-toggler {
    display: none;
  }

  main {
    padding: 0 3rem;
  }

  section {
    padding: 5%;
    flex-direction: row;
    justify-content: space-between;
  }

  .section--post-graphic {
    flex-direction: row;
  }
}

h2 {
  font-size: 3em;
  margin: 0;
}

p {
  font-size: 1.5em;
  line-height: 1.5;
}

section ul {
  font-size: 1.5em;
}

.btn {
  display: inline-block;
  margin: .5rem 0;
  padding: 1.5rem;
  border: 3px solid #FE5630;
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
  transition: color 1s;
  cursor: pointer;
  font-size: 1.3em;
}

.btn:hover {
  background-color: #fff;
  color: rgb(32, 33, 36);
}


/* --- */

.fancyblock {
  background-color: #FE5630;
  background: linear-gradient(135deg, rgba(253, 164, 144, 1), rgba(255, 86, 48, 1));
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  width: 300px;
  height: 300px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fancyblock::after {
  content: '';
  position: absolute;
  top: 12px;
  bottom: -12px;
  left: 12px;
  right: -12px;
  z-index: -1;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  background: linear-gradient(135deg, rgba(254, 89, 7, 1), rgba(172, 16, 239, 1));
}

.fancyblock::before {
  content: '';
  position: absolute;
  top: 24px;
  bottom: -24px;
  left: 24px;
  right: -24px;
  z-index: -2;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  background-color: #bbb;
  box-shadow: #bbb 0 0 128px 32px;
}

.fancyprogressbar {
  background-color: #FE5630;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  width: 500px;
  max-width: 80vw;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: right;
  font-size: 3em;
  font-weight: 900;
  padding-right: 3rem;
  overflow: hidden;
}

.fancyprogressbar::after {
  content: '';
  position: absolute;
  top: 5px;
  bottom: 6px;
  left: 6px;
  width: 50%;
  z-index: 1;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  background-color: #fff;
  box-shadow: #555 0 0 60px 0
}

.bar-pillar-container {
    min-height: 250px;
    display: flex;
    align-items: baseline;
    align-self: stretch;
}

.bar-pillar {
    width: 3rem;
    margin: 0 6px;
    border-top-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.bar-pillar--25 {
    height: 25%;
    background: #555;
}

.bar-pillar--50 {
    height: 50%;
    background: #ddd;
}

.bar-pillar--100 {
    height: 100%;
    background: linear-gradient(135deg, rgba(254,89,7,1), rgba(172,16,239,1));
    box-shadow: #bbb 0 0 128px 16px;
}

.fancyscaleblock {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgb(254, 89, 7) 0%, rgb(172, 15, 239) 100%);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.fancyscaleblock::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 75%;
    height: 75%;
    background: rgba(50, 50, 50, .5);
    backdrop-filter: blur(6px);
    border-radius: 6px;
    box-shadow: #333 0 0 16px 0;
}

.fancyscaleblock::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35%;
    height: 35%;
    background: rgba(50, 50, 50, .5);
    backdrop-filter: blur(6px);
    border-radius: 6px;
    box-shadow: #333 0 0 16px 0;


.logo-no-pad {
  font-style: italic;
  font-weight: 800;
  text-align: center;
}
