h1, h2, h3, h4, h5, h6 span {
  font-family: 'turbinado-pro',sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #e4124d;
  line-height: .5;
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
  margin-top: 0;
}
h1 {
  font-size: 12vw;
  margin-bottom: 0px;
}
h2 {
  font-size: 10vw;
}
h3 {
  font-size: 8vw;
  max-width: 80%;
  margin: 0 auto;
  line-height: 1.0;
}
h4 {
  font-size: 6vw;
  max-width: 80%;
  margin: 0 auto;
}
strong {
  color: #e4124d;
}
p, ul, li {
  font-family: 'Cabin', sans-serif;
  color: #fff;
  font-size: 28px;
  margin-bottom: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
li {
  margin-bottom: 6px;
}
xmp {
  font-size: 28px;
  color: white;
  font-family: 'Cabin', sans-serif;
  margin-bottom: 16px;
}
img {
  margin: auto;
  max-width: -webkit-fill-available;
}
.slick-list, .slick-track {
  height: 100%;
}
.slick-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.slick-slide div {
  max-width: 80%;
}
.slick-slide div.jargon {
  max-width: unset;
}
.slick-arrow {
  height: 38px;
  width: auto;
  z-index: 9999;
  opacity: 1;
  transition: all .35s;
}
.slick-disabled {
  opacity: 0;
}
.slick-prev {
  left: 25px;
}
.slick-next {
  right: 25px;
}
.code {
  font-family: monospace;
  display: flex;
  margin-bottom: 0;
  margin-top: 0;
  width: 100%;
  justify-content: center;
  text-align: left;
  flex-direction: column;
}
.button {
  font-family: "Cabin",sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  font-size: 16px;
  border-radius: 0;
  color: #fff;
  border: 2px solid #e4124d;
  padding: 10px 20px;
  min-width: 155px;
  margin-top: 20px;
  text-align: center;
  background-color: rgba(0,0,0,0);
  cursor: pointer;
  transition: all .35s;
}
.button:hover {
  background-color: #e4124d;
}
.modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  background: rgba(0,0,0,.5);
  transition: opacity .25s ease;
}
.modal p {
  color: #06081c;
}
.modal__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
}
.modal-state {
  display: none;
}
.modal-state:checked + .modal {
  opacity: 1;
  z-index: 9999999;
  visibility: visible;
}
.modal-state:checked + .modal .modal__inner {
  top: 0;
}
.modal__inner {
  transition: top .25s ease;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 60%;
  margin: auto;
  overflow: auto;
  background: #fff;
  border-radius: 5px;
  padding: 1em 2em;
  height: auto;
  max-height: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.modal__close {
  position: absolute;
  right: 1em;
  top: 1em;
  width: 1.1em;
  height: 1.1em;
  cursor: pointer;
}
.modal__close:after,
.modal__close:before {
  content: '';
  position: absolute;
  width: 2px;
  height: 1.5em;
  background: #e4124d;
  display: block;
  transform: rotate(45deg);
  left: 50%;
  margin: -3px 0 0 -1px;
  top: 0;
}
.modal__close:hover:after,
.modal__close:hover:before {
  background: #aaa;
}
.modal__close:before {
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .modal__inner {
    width: 90%;
    height: 90%;
    box-sizing: border-box;
  }
}