@import url("./normalize.css");
@import url("./grid.css");

/* vars */
:root {
  --black-color: #000000;
  --bright-blue-color:  #318ec5;
  --blue-color:  #1e5676;
  --darkest-blue-color:  #0a1d26;
  --darkest-berry-color:  #270021;
  --berry-color:  #780665;
  --bright-berry-color:  #b30998;
  --lighter-grey-color: #e5e5e5;
  --light-grey-color:  #d1d3d4;
  --yellow-color:  #eae217;
  --base-font-size: 18px;
  --fluid-typography-ratio: 0.6;
}

@font-face {
    font-family: 'protogrotesk-regular';
    src: url('./font/protogroteskweb-regular.woff2') format('woff2'),
        url('./font/protogroteskweb-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'soehne';
    src: url('./font/soehne-leicht.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'soehne';
    src: url('./font/soehne-leicht-kursiv.woff2') format('woff2');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'soehne';
    src: url('./font/soehne-buch.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'soehne';
    src: url('./font/soehne-buch-kursiv.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'soehne';
    src: url('./font/soehne-dreiviertelfett.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'soehne';
    src: url('./font/soehne-dreiviertelfett-kursiv.woff2') format('woff2');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'soehne';
    src: url('./font/soehne-extraleicht.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'soehne mono';
    src: url('./font/soehne-mono-halbfett.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



body {
  background-color: var(--background-color);
  color: var(--black-color);
  font-family: 'soehne', Helvetica, sans-serif;
  font-weight: 300;
  line-height: 1.4;
  font-size: var(--base-font-size);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body p {
  line-height: 1.4em;
  margin: 0 0 1.4em 0;
}

/*GENERAL*/

strong {
  font-weight: 800;
}

h1 {
  font-family: 'protogrotesk-regular', Helvetica, sans-serif;
  font-weight: 400;
  margin: 0;
}

h2, h3 {
  margin: 0 0 .75em 0;
}

h2 {
  font-weight: 400;
  font-size: 2em;
}

.wrapper {
  max-width: 100%;
  margin: 0 auto;
}

.inner-pad {
  padding: 0rem 2rem 2rem 2rem;
}

::selection { 
  background: var(--yellow-color);
  color: var(--black-color);
}

@media all and (max-width: 699px) { 

  .inner-pad {
    padding: 0;
  }

  h2 {
    font-size: 1.75em;
  }

}


/*MASTHEAD*/

#masthead-wrapper-holder {
  overflow: hidden;
  background: var(--light-grey-color);
}

#home-masthead-wrapper-holder {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

#masthead {
  padding: 2rem;
}

.masthead-page {
  background-color: var(--berry-color);
}

.grid div {
  /*background-color:rgba(0,0,0,0.04);*/
}

#logo a {
  text-decoration: none;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
}

#logo svg {
  height: 2.5em;
  width: auto;
  display: block;
}

@media all and (max-width: 699px) { 

  /*
  #home-masthead-wrapper-holder {
    position: relative;
    background-color: var(--light-grey-color);
  }

  #logo svg {
    height: 4em;
    padding-bottom: 1em;
  }
  */

  #logo svg {
    padding-bottom: 1em;
  }

}

/*NAV*/

#nav {
  padding: 0;
  border-bottom: 3px solid var(--black-color);
  border-top: 3px solid var(--black-color);
}

#nav a { 
color: var(--black-color);
font-weight: 800;
letter-spacing: 2px;
text-decoration: none;
}

#nav a:hover, #nav a.active  { 
  text-decoration-color: var(--body-color);
}

#nav.active {
  display: block;
}

#nav ul { 
  list-style: none; 
  margin: 0; 
  padding: 0; 
  display: flex; 
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

#nav a:hover {
    text-decoration: none;
}

@media all and (max-width: 699px) { 
  
  #logo a {
    justify-content: center;
  }

  #nav {
    padding: .5rem 0 .5rem 0;
    border-bottom: 2px solid var(--black-color);
    border-top: 2px solid var(--black-color);
  }

}

/*ORBIT*/

#home-orbit-video {
  background-color: var(--darkest-berry-color);
  height: 0;
  padding-top: calc(9 / 16 * 100%);
  position: relative;
}

#home-orbit-video-inside {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#home-orbit-video-holder {

}

video {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#home-orbit-head-holder {
  width: 100%;
  position: absolute;
  z-index: 3;
  bottom: 0;
  margin-bottom: -3em;
}

#home-orbit-head {
  padding: 0 4rem;
}

#home-orbit-head h1 {
  letter-spacing: -1px;
  font-size: 5em;
  color:  var(--lighter-grey-color);
  font-family: 'protogrotesk-regular', Helvetica, sans-serif;
}

@media all and (max-width: 1130px) {

#home-orbit-head h1 {
  font-size: 2.75em;
}

#home-orbit-head-holder {
  margin-bottom: -2em;
}

}

@media all and (max-width: 699px) {

#home-orbit-video {
  padding-top: calc(5 / 4 * 100%);
}

#home-orbit-head-holder {
  margin-bottom: -1.5em;
}

#home-orbit-head {
  padding: 0 2rem;
}

  #home-orbit-head h1 {
    font-size: 2.25em;
  }

}


/*HOME INTRO*/

#home-intro {
  position: relative;
  background-color: var(--darkest-berry-color);
  color: var(--lighter-grey-color);
}

#home-intro-content {
  padding: 6rem 2rem;
}

#home-intro-illustration {
  order: 2;
}

.intro-slogan {
  width: calc(50% - 1rem);
  padding:  0 2rem;
}

.intro-slogan p {
  font-size: 1.5em;
  color: var(--lighter-grey-color);
  font-weight: 200;
  font-family: 'soehne', Helvetica, sans-serif;
}

#home-intro a.n {
  color: var(--lighter-grey-color);
  text-decoration: none;
}


#home-intro-illustration {
  display: flex;
  align-items: flex-end;
}

#home-intro-illustration svg {
  display: block;
  width: 100%;
  height: auto;
}

@media all and (max-width: 1024px) {

#home-intro-illustration svg {
    padding: 2rem 1rem;
    display: block;
    width: calc(100% - 2rem);
    height: auto;
  }

  .intro-slogan {
  width: calc(75% - 1rem);
}

}


@media all and (min-width: 1024px) {

    #home-intro-illustration {
  order: 1;
}

  .intro-copy {
    order: 2;
  }

}

@media all and (min-width: 1200px) {


  .intro-copy {
    column-count: 2;
    column-gap: 4rem;
  }
}

@media all and (max-width: 699px) {

  .intro-slogan {
    width: 100%;
    padding:  0;
  }

  #home-intro-content {
    padding: 4rem 2rem 2rem 2rem;
  }

}


/*HOME SCALE */

#home-scale {
  position: relative;
  background-color: var(--lighter-grey-color);
}

#home-scale-content {
  padding: 0;
}

.home-scale-copy {
  padding: 4rem 2rem 2rem 4rem;
  position: relative;
}

#home-scale  a.n {
  color: var(--black-color);
  text-decoration: none;
}

.slide {
  width: 100%;
  margin-top: 4em;
}

.slide input {
  width: 100%;
  background-color: transparent;
}

input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 20px 0;
  width: 100%;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  animate: 0.2s;
  background: var(--black-color);
  border-radius: 25px;
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  animate: 0.2s;
  background: var(--black-color);
  border-radius: 25px;
}

input[type=range]::-ms-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  animate: 0.2s;
  background: var(--black-color);
  border-radius: 25px;
  border-color: transparent;
  color: transparent;
}

input[type=range]::-webkit-slider-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: none;
  background: var(--black-color);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-top: -8px;
}

input[type=range]::-moz-range-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: none;
  background: var(--black-color);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-top: -8px;
}

input[type=range]::-ms-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: none;
  background: var(--black-color);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-top: -8px;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: var(--black-color);
}

input[type=range]:focus::-moz-range-track {
  background: var(--black-color);
}

input[type=range]:focus::-ms-track {
  background: var(--black-color);
}

.range-wrap{
  width: 100%;
  position: relative;
}
.range-value{
  position: absolute;
  top: -40%;
}
.range-value span{
  width: 3.25em;
  height: 2.7em;
  line-height: 1.3em;
  text-align: center;
  background: var(--berry-color);
  color: #fff;
  font-size: .8em;
  font-family: 'soehne', Helvetica, sans-serif;
  font-weight: 300;
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1px;
}
.range-value span:before{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid var(--berry-color);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  top: 100%;
  left: 50%;
  margin-left: -7px;
  margin-top: -1px;
}

.range-labels {
  height:  3em;
  position: relative;
}

.range-labels div {
  transform: rotate(-45deg);
  position: absolute;
  top: 0;
  font-size: .85em;
  font-weight: 400;
}

.range-labels div.pt-55 {
  left:  3.3%;
}

.range-labels div.pt-200 {
  left:  26.3%;
}

.range-labels div.pt-500 {
  left:  75.4%;
}

.home-scale-figure {
  height: 100%;
  position: relative;
  overflow: hidden;
  background-color: var(--bright-berry-color);
}

#home-scale-figure-copy {
  display: flex;
  position: absolute;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

#houses {
  position: relative;
  width: 100%;
  height: 100%;
}

#houses svg {
  width: 100%;
  height: 100%;
}

#home-scale-number {
  padding: .1em .75em;
  color: var(--lighter-grey-color);
  border: 3px solid var(--lighter-grey-color);
}

#home-scale-number p {
  margin-bottom: 0;
  font-size: 3em;
  font-weight: 400;
  letter-spacing: .05em;
}

#home-scale-figure-descript-holder {
  display: flex;
  position: absolute;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  justify-content: flex-end;
}

#home-scale-figure-descript {
  padding: 1rem;
}

#home-scale-figure-descript p {
  font-weight: 800;
  margin-bottom: 0;
  color: var(--lighter-grey-color);

}

@media all and (max-width: 699px) {

  #houses {
    padding-top: 100%; /* 1:1 Aspect Ratio */
  }

  #houses svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }

  .range-value{
    top: -20%;
  }


_::-webkit-full-page-media, _:future, :root .range-value {
    top: -50%;
}

  .home-scale-copy {
    padding: 2rem;
  }

}

/*HOME BIGPIC */

.home-bigpic {
  position: relative;
  background-color: var(--black-color);
}

.home-bigpic img {
  display: block;
  width: 100%;
  height: auto;
}

.home-bigpic-overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: .9;
  /*display: none;*/
  mix-blend-mode: color;
}

.home-bigpic-content {
  padding: 0;
}

.home-bigpic-head {
  position: absolute;
  z-index: 2;
  padding: 4rem;
  color: var(--lighter-grey-color);
}

.home-bigpic-figure-copy {
  display: flex;
  position: absolute;
  z-index: 2;
  top: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.home-bigpic-number, #home-carbon-number, #home-ewaste-number {
  padding: .1em .75em;
  color: var(--lighter-grey-color);
  border: 3px solid var(--lighter-grey-color);
}

.home-bigpic-number p, #home-carbon-number p, #home-ewaste-number p {
  margin-bottom: 0;
  font-size: 3em;
  font-weight: 400;
  letter-spacing: .05em;
}

.home-bigpic-figure-descript-holder {
  display: flex;
  position: absolute;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  justify-content: flex-end;
}

.home-bigpic-overlay-toggle-holder {
  display: flex;
  position: absolute;
  z-index: 3;
  top: 0;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  justify-content: flex-start;
}

.home-bigpic-figure-descript, .home-bigpic-overlay-toggle {
  padding: 1rem;
}

.home-bigpic-figure-descript p {
  font-weight: 800;
  margin-bottom: 0;
  color: var(--lighter-grey-color);
}

.home-bigpic-overlay-toggle p {
  cursor: pointer;
  font-weight: 300;
  margin-bottom: 0;
  font-size: .85em;
  color: var(--black-color);
  background-color: var(--lighter-grey-color);
  padding: 0 4px;
  transition: background-color .3s ease-in;
}

.home-bigpic-overlay-toggle p.active {
  background-color: var(--bright-berry-color);
  color: var(--lighter-grey-color);
}


@media all and (max-width: 699px) {

  .home-bigpic-head {
    padding: 2rem;
  }

}


/* HOME EXPLAIN */

.home-explain {
  position: relative;
  padding-bottom: 2rem;
}

.home-pow{
  background: var(--darkest-berry-color) url("/img/berry-dot-pattern.svg") repeat;
  background-size: 24px 24px;
  color: var(--lighter-grey-color);
}

.home-pow  a.n {
  color: var(--lighter-grey-color);
  text-decoration: none;
}

.home-offset {
  background: var(--black-color) url("/img/grey-dot-pattern.svg") repeat;
  background-size: 24px 24px;
  color: var(--lighter-grey-color);
}

.home-offset  a.n {
  color: var(--lighter-grey-color);
  text-decoration: none;
}

.home-intake-discharge {
  background: var(--darkest-blue-color) url("/img/blue-dot-pattern.svg") repeat;
  background-size: 24px 24px;
  color: var(--lighter-grey-color);
}

.home-intake-discharge  a.n {
  color: var(--lighter-grey-color);
  text-decoration: none;
}

.home-bro {
  background: var(--lighter-grey-color);
  background-size: 24px 24px;
}

.home-bro  a.n {
  color: var(--black-color);
  text-decoration: none;
}

.home-explain img {
  display: block;
  width: 100%;
  height: auto;
}

.home-explain-content {
  z-index: 0;
  padding: 4rem;
}

.explain-copy {
  column-count: 4;
  column-gap: 2rem;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}

.explain-comic {
  margin-top: 3em;
}

.explain-comic svg {
  display: block;
  width: 100%;
  height: auto;
}

@media all and (max-width: 1200px) {

  .explain-copy {
    column-count: 3;
  }

}

@media all and (max-width: 1024px) {

  .explain-copy {
    column-count: 2;
  }

}

@media all and (max-width: 699px) {

  .explain-copy {
    column-count: 1;
  }

  .home-explain-content {
    padding: 2rem 2rem 0 2rem;
  }

  .explain-comic svg {
    padding: 2rem 1rem;
    display: block;
    width: calc(100% - 2rem);
    height: auto;
  }

}

/* PAGE */

.page {
  position: relative;
  padding-bottom: 2rem;
}

.page-content {
  z-index: 0;
  padding: 4rem;
}

.page-content p {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.letter {
  background-color: var(--lighter-grey-color);
  padding: 1em;
}

.letter p:last-child {

}

.page a {
  color: var(--black-color);
}

.page a:hover {
  text-decoration: none;
}

blockquote {
  border-left: 4px solid var(--black-color);
  margin: 1.5em 0 3em 0;
  padding: 0.5em 1em;
  quotes: "\201C""\201D""\2018""\2019";

}
blockquote:before {
  content: open-quote;
  font-size: 5em;
  line-height: 0.1em;
  margin-right: 0.05em;
  vertical-align: -0.4em;
  margin-bottom: 0 !important;
}
blockquote p {
  font-weight: 800;
  font-size: 1.5em;
  display: inline;
}

blockquote p.cite {
  font-weight: 300;
  font-size: .85em;
  margin-top: 1em;
  display: block;
  margin-bottom: 0;
}

@media all and (max-width: 699px) {

  .page-content {
    padding: 2rem 2rem 0 2rem;
  }


}

/* CRYPTO ALGO */

#home-crypto-algo {
  position: relative;
  background-color: var(--darkest-berry-color);
}

#home-crypto-algo-content {
  padding-bottom: 0;
}

.home-crypto-algo-figure-holder {
  background-color: var(--darkest-berry-color);
  color: var(--berry-color);
  font-weight: 400;
}

.home-crypto-algo-figure-inner {
  position: relative;
  width: 100%;
  padding-top: calc(10 / 16 * 100%);
}


.home-crypto-algo-figure {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(8, 1fr);
  grid-gap: 0;
}

.home-crypto-algo-figure .letterform {
  grid-column: span 1;
}

.home-crypto-algo-figure .letterform .inner {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 3em;
  text-align: center;
}

.home-crypto-algo-figure .letterform .active {
  color: var(--bright-berry-color);
}

@media all and (max-width: 699px) {

  .home-crypto-algo-figure .letterform .inner {
    font-size: 2em;
  }

}


@media all and (max-width: 1024px) {

  .home-crypto-algo-figure-inner {
  padding-top: calc(1 / 1 * 100%);
}

  .home-crypto-algo-copy {
    padding: 2rem;
  }

}

/*HOME CONCLUSION */

.home-conclusion {
  position: relative;
  background-color: var(--lighter-grey-color);
}

.home-conclusion a {
  color: var(--black-color);
}

.home-conclusion a:hover {
  text-decoration: none;
}

.explain-notes, .explain-share {
  margin-top: 3em;
}

.explain-notes p, .explain-share p {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  font-size: .85em;
}

.explain-share img, .share img {
  display: block;
  width: 100%;
  height: auto;
}

.act {
  color: var(--black-color);
  font-weight: bold;
  background-color: var(--yellow-color) !important;
  text-decoration: none;
  padding: .25em .5em;
}

.home-conclusion ol {
  padding-left:  .85em;
}

.home-conclusion ol li::marker {
  font-size: .85em;
}


/*HOME ISO */

.home-iso {
  background-color: var(--light-grey-color);
}

.home-iso svg {
  display: inline-block;
  height: 2.5vw;
  width: auto;
  margin-right: .5em;
}

.home-iso-content {
  padding: 4rem;
}

.iso-grid {
  margin-top: 0rem;
}

.iso-grid h2 {
  line-height: 1em;
  margin-bottom: 0;
}

.shim {
  margin-bottom: 3rem;
}

.iso-btn {
  cursor: pointer;
  font-weight: 300;
  margin-bottom: 0;
  margin-left: .25em;
  font-size: .85em;
  color: var(--black-color);
  background-color: var(--lighter-grey-color);
  padding: 0 4px;
  transition: background-color .3s ease-in;
}

.iso-btn.active {
  background-color: var(--black-color);
  color: var(--lighter-grey-color);
}

.iso-btn-holder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: right;
}

.iso-label {
  text-align: right;
  display: flex;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1em;
  border-right: 3px solid var(--black-color);
  padding: 1.5em 1.5em 1.5em 0;
  align-items: center;
  justify-content: right;
}

.iso-label p {
  margin:  0;
  line-height: 1em;
}

.iso-label span {
  font-size:  12px;
  font-weight: 300;
}

.iso-chart {
  display: flex;
  align-items: center;
  position: relative;
  padding: 1.5em 1.5em;
}

.iso-chart svg {
  animation: fadein 1.5s;
}

.pictos {
  display: none;
  visibility: hidden;
}

@media all and (max-width: 699px) {

  .iso-label {
  text-align: left;
  display: block;
  letter-spacing: 3px;
  line-height: 1em;
  border-right: none;
  padding: 0 0 .5em 0;
  align-items: center;
  justify-content: left;
}

.iso-chart {
  display: block;
  position: relative;
  padding: 0 0 2em 0;
}

.home-iso-content {
  padding: 2rem;
}

.home-iso svg {
  height: 3.25vw;
  margin-right: .25em;
}

}

/*FOOTER*/

#footer {
    font-size: .85em;
    overflow: hidden;
    color: var(--lighter-grey-color);
    background-color: var(--black-color);
    letter-spacing: 1px;
    padding: 2em 1em;
}

#footer svg {
  height:  .85em;
  width: auto;
  display: inline-block;
}

#footer p:first-child {
  margin-top: 0;
}

#footer p:last-child {
  margin-bottom: 0;
}

#footer a {
  color: var(--background-color);
  text-decoration: none;
}

.footer-holder {
  display: flex;
  align-items: center;
}

#footer ::selection { 
  background: var(--background-color);
  color: var(--body-color);
}

/*TRANSITIONS*/

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.fade-in {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, transform 2s ease-out;
  will-change: opacity, visibility;
}
.fade-in.is-visible {
  opacity: 1;
  transition-delay: .5s;
  transform: none;
  visibility: visible;
}

/*Font Sizing */

a:focus,button:focus,input:focus,textarea:focus {outline: none;}

@media all and (min-width: 699px) { 
  
  body{
    font-size: calc(var(--base-font-size) + var(--fluid-typography-ratio) * .9vw);
  }

}

@media all and (min-width: 1460px) {

  body{
    font-size: calc(var(--base-font-size) + var(--fluid-typography-ratio) * 17px);
  }

}