.c-grid-fluid, .c-grid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  -o-transition-property: opacity, filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.35s;
       -o-transition-duration: 0.35s;
          transition-duration: 0.35s;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 1;
}

.hamburger-box {
  width: 30px;
  height: 14px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 2px;
  background-color: #000;
  border-radius: 0px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
       -o-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -6px;
}
.hamburger-inner::after {
  bottom: -6px;
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  -webkit-transition-duration: 0.075s;
       -o-transition-duration: 0.075s;
          transition-duration: 0.075s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
       -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  -webkit-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
  -o-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  -webkit-transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-delay: 0.12s;
       -o-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
       -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
  -o-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@font-face {
  font-family: "iconFont";
  src: url("../fonts/iconFont.eot");
  src: url("../fonts/iconFont.eot?#iefix") format("eot"), url("../fonts/iconFont.woff2") format("woff2"), url("../fonts/iconFont.woff") format("woff"), url("../fonts/iconFont.ttf") format("truetype"), url("../fonts/iconFont.svg#iconFont") format("svg");
}
.icon-twitter:before, .icon-medium:before, .icon-double-arrow-right:before, .icon-double-arrow-left:before, .icon-discord:before, .icon-arrow-right:before, .icon-arrow-left:before {
  font-family: "iconFont", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  text-decoration: none;
  text-transform: none;
}

.icon-arrow-left:before {
  content: "\e001";
}

.icon-arrow-right:before {
  content: "\e002";
}

.icon-discord:before {
  content: "\e003";
}

.icon-double-arrow-left:before {
  content: "\e004";
}

.icon-double-arrow-right:before {
  content: "\e005";
}

.icon-medium:before {
  content: "\e006";
}

.icon-twitter:before {
  content: "\e007";
}

html,
body {
  width: 100%;
  min-height: 100vh;
}
html.is-hideScroll,
body.is-hideScroll {
  overflow: hidden !important;
  width: 100%;
}

html {
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  overflow-x: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  padding: 70px 0 0;
  background-color: #ffffff;
  line-height: 1.42857143;
  font-size: 14px;
  font-weight: 500;
  font-family: "Source Sans Pro", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body > .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
body > .main--start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

button,
input,
optgroup,
select,
textarea {
  font-size: 100%;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
}

p,
h1, h2, h3, h4, h5, h6,
hr {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

a {
  outline: none;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

input[type=text] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-grid {
  max-width: 1300px;
  padding-right: 15px;
  padding-left: 15px;
}
.c-grid-fluid {
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.c-table {
  width: 100%;
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
  font-family: "Noto Sans Mono", monospace;
  font-style: normal;
  line-height: 21px;
  letter-spacing: -0.02em;
  font-size: 16px;
}
@media screen and (max-width: 1023px) {
  .c-table {
    width: 1000px;
  }
}
.c-table thead th {
  vertical-align: middle;
  border-bottom: 1px solid #000;
  color: #000000;
  height: 55px;
  text-align: right;
}
.c-table thead th:first-of-type {
  text-align: left;
}
.c-table thead th:not(:last-of-type) {
  padding-right: 5px;
}
.c-table tbody td {
  vertical-align: middle;
  height: 53px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-align: right;
}
.c-table tbody td:first-of-type {
  text-align: left;
}
.c-table tbody td:not(:last-of-type) {
  padding-right: 5px;
}

.icon-font {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.logo.logo--header {
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .logo.logo--header {
    max-width: 300px;
  }
}
.logo.logo--header .logo__btn {
  height: 100%;
}
.logo__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.logo__img {
  display: block;
  max-width: 100px;
  height: auto;
  max-height: 100%;
}
.logo__divider {
  display: block;
  width: 1px;
  height: 35px;
  margin-left: 1px;
  background-color: #000000;
}
.logo__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
}
.logo__subimg {
  display: block;
  max-width: 125px;
  height: auto;
}
.logo__slogan {
  padding-left: 9px;
  font-size: 14px;
  line-height: 1;
  color: #000000;
}

.c-title {
  padding-bottom: 30px;
  font-weight: 600;
  text-align: center;
  font-family: "Noto Sans Mono", monospace;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 22px;
  }
}

.c-btn {
  outline: none;
  cursor: pointer;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
  height: 50px;
  padding-left: 20px;
  padding-right: 20px;
  border: 1px solid #000;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 3px;
  background-color: #000000;
  color: #ffffff;
  font-size: 18px;
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.c-btn:hover {
  background-color: #ffffff;
  color: #000000;
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.c-btn__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.035);
  background-color: #ffffff;
}
.header__wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
}
@media screen and (max-width: 767px) {
  .header__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__wrapper > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
}
@media screen and (max-width: 767px) {
  .header__wrapper > div:nth-of-type(1) {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}
.header__wrapper > div:nth-of-type(2) {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .header__wrapper > div:nth-of-type(2) {
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
    position: fixed;
    top: 71px;
    left: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: calc(100% - 71px);
    padding: 50px 15px;
    background-color: #ffffff;
    -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .header__wrapper > div:nth-of-type(2).is-open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .header__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.header__nav > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: 5px;
  margin-right: 5px;
  text-transform: uppercase;
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 1023px) {
  .header__nav > a {
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 0;
    margin-right: 0;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .header__nav > a {
    min-height: 45px;
    font-size: 18px;
  }
}
.header__nav > a:hover {
  opacity: 0.55;
  -webkit-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.header__nav .c-btn {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .header__nav .c-btn {
    margin-top: 15px;
    margin-left: 0;
  }
}
.header .hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .header .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.footer__wrapper {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 1fr auto;
  height: 55px;
  padding-left: 15px;
  padding-right: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .footer__wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000000;
  font-weight: 600;
  text-transform: capitalize;
}
.footer__nav a:not(:last-of-type) {
  margin-right: 15px;
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__social li:not(:last-of-type) {
  margin-right: 15px;
}
.footer__social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #000000;
  font-size: 22px;
}

.subheading {
  position: relative;
}
.subheading.subheading--logo h1 > span:nth-of-type(1) {
  margin-right: 0;
  padding-right: 0;
}
.subheading.subheading--logo h1 > span:nth-of-type(2) img {
  display: block;
  max-width: 250px;
}
.subheading.subheading--logo h1 > span:nth-of-type(2) p:nth-of-type(1) {
  font-size: 16px;
  text-align: center;
}
.subheading__container {
  position: relative;
}
.subheading__container-1 {
  padding-top: 50px;
  padding-bottom: 50px;
  -webkit-box-shadow: 0 -5px 20px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 -5px 20px 0 rgba(0, 0, 0, 0.05);
  border-top: 1px solid rgba(0, 0, 0, 0.035);
}
.subheading__container-1:after {
  content: "";
  z-index: 0;
  opacity: 0.55;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  background-image: url("../img/img-category-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.subheading__container-2 {
  padding-top: 30px;
}
.subheading__wrapper {
  z-index: 3;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 100px;
  padding-right: 100px;
}
.subheading__desc {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .subheading__desc {
    font-size: 16px;
  }
}
.subheading h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.subheading h1 > span {
  position: relative;
}
.subheading h1 > span:nth-of-type(1) {
  margin-right: 15px;
  padding-right: 15px;
}
.subheading h1 > span:nth-of-type(1):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: #000000;
}
.subheading h1 > span:nth-of-type(1) p {
  font-size: 50px;
  font-weight: bold;
  font-family: "Noto Sans Mono", monospace;
}
@media screen and (max-width: 767px) {
  .subheading h1 > span:nth-of-type(1) p {
    font-size: 40px;
  }
}
.subheading h1 > span:nth-of-type(2) {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}
.subheading h1 > span:nth-of-type(2) p:nth-of-type(1) {
  -webkit-transform: translateX(-4px);
      -ms-transform: translateX(-4px);
          transform: translateX(-4px);
  font-size: 30px;
  font-weight: 600;
  font-family: "Noto Sans Mono", monospace;
}
@media screen and (max-width: 767px) {
  .subheading h1 > span:nth-of-type(2) p:nth-of-type(1) {
    font-size: 25px;
  }
}
.subheading h1 > span:nth-of-type(2) p:nth-of-type(2) {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .subheading h1 > span:nth-of-type(2) p:nth-of-type(2) {
    font-size: 16px;
  }
}

.heading {
  position: relative;
  background-color: #000000;
}
.heading:after {
  content: "";
  opacity: 0.75;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  background-image: url("../img/img-heading-bg.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-blend-mode: luminosity;
}
.heading__wrapper {
  z-index: 3;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 400px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.heading__wrapper > div {
  width: 100%;
}
.heading__blockquote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.heading__blockquote h1,
.heading__blockquote h2 {
  text-align: right;
  color: #ffffff;
  font-family: "Noto Sans Mono", monospace;
}
.heading__blockquote h1 {
  padding-bottom: 30px;
  font-weight: bold;
  line-height: 1.8;
  font-size: 24px;
}
@media screen and (max-width: 1023px) {
  .heading__blockquote h1 {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .heading__blockquote h1 {
    font-size: 20px;
  }
}
.heading__blockquote h2 {
  text-decoration: underline;
  font-weight: 600;
  font-size: 18px;
}
@media screen and (max-width: 1023px) {
  .heading__blockquote h2 {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .heading__blockquote h2 {
    font-size: 14px;
  }
}

.category {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../img/img-category-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .category {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.category__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  border-radius: 3px;
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
}
.category__box > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 200px;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  text-align: center;
}
.category__box > div h2,
.category__box > div h3 {
  font-family: "Noto Sans Mono", monospace;
}
.category__box > div h2 {
  font-weight: 600;
  font-size: 22px;
}
@media screen and (max-width: 1279px) {
  .category__box > div h2 {
    font-size: 20px;
  }
}
.category__box > div p {
  padding-bottom: 10px;
  color: rgba(0, 0, 0, 0.55);
  font-size: 16px;
}
@media screen and (max-width: 1279px) {
  .category__box > div p {
    font-size: 14px;
  }
}
.category__box > div h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 36px;
}
@media screen and (max-width: 1279px) {
  .category__box > div h3 {
    font-size: 30px;
  }
}
.category__box > div h3 u {
  text-decoration: none;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  border-style: solid;
  border-width: 10px;
  border-color: transparent transparent #000 transparent;
}
.category__box-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 50px 30px;
}
@media screen and (max-width: 1023px) {
  .category__box-wrapper {
    grid-template-columns: 1fr;
    padding-left: 0;
    padding-right: 0;
  }
}

.about {
  padding-top: 75px;
  padding-bottom: 75px;
}
@media screen and (max-width: 767px) {
  .about {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.about__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media screen and (max-width: 1023px) {
  .about__wrapper {
    grid-template-columns: 1fr;
  }
}
.about__media {
  display: block;
  max-width: 100%;
  height: auto;
}
.about__desc {
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .about__desc {
    font-size: 14px;
  }
}
.about__desc:not(:last-of-type) {
  padding-bottom: 15px;
}

.producer {
  padding-top: 100px;
}
@media screen and (max-width: 1023px) {
  .producer {
    padding-top: 50px;
  }
}
.producer__wrapper {
  padding-bottom: 100px;
}
.producer__block-wrapper {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  grid-template-columns: 1fr 450px;
}
@media screen and (max-width: 1023px) {
  .producer__block-wrapper {
    grid-template-columns: 1fr;
  }
}
.producer__block-wrapper.full {
  grid-template-columns: 1fr;
}
.producer__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  border-radius: 3px;
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
}
.producer__box > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 155px;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
}
.producer__box > div h5 {
  padding-bottom: 5px;
  font-weight: 600;
  color: #000000;
  font-size: 22px;
  font-family: "Noto Sans Mono", monospace;
}
.producer__box > div p {
  color: rgba(0, 0, 0, 0.55);
  font-size: 16px;
}
.producer__box-wrapper {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .producer__box-wrapper {
    grid-template-columns: 1fr;
  }
}
.producer__box-wrapper.three {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .producer__box-wrapper.three {
    grid-template-columns: 1fr;
  }
}
.producer__box-wrapper.applications .producer__box h5 {
  font-size: 36px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.55);
}
.producer__box-wrapper.applications .producer__box p {
  padding-bottom: 10px;
  font-size: 20px;
}
.producer__box-wrapper.applications .producer__box h3 {
  font-weight: 600;
  font-size: 22px;
  color: #000000;
  text-align: center;
}
.producer__fund {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px 30px 20px;
  border: 1px solid rgba(0, 0, 0, 0.025);
  border-radius: 3px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(92, 172, 167, 0.1)), to(rgba(247, 247, 255, 0)));
  background: -o-linear-gradient(top, rgba(92, 172, 167, 0.1) 0%, rgba(247, 247, 255, 0) 100%);
  background: linear-gradient(180deg, rgba(92, 172, 167, 0.1) 0%, rgba(247, 247, 255, 0) 100%);
}
@media screen and (max-width: 767px) {
  .producer__fund {
    padding: 30px 15px;
  }
}
.producer__fund.producer__fund--assets {
  width: 100%;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1023px) {
  .producer__fund.producer__fund--assets {
    max-width: 100%;
  }
}
.producer__fund-title {
  padding-bottom: 15px;
  font-size: 24px;
}
.producer__fund-field {
  position: relative;
  padding-bottom: 10px;
}
.producer__fund-field p {
  padding-bottom: 5px;
  font-size: 14px;
  font-weight: 600;
}
.producer__fund-field label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.producer__fund-field label input,
.producer__fund-field label select {
  outline: none;
  position: relative;
  width: 100%;
  height: 45px;
  padding: 0 15px;
  margin: 0;
  border-radius: 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  font-size: 16px;
  font-weight: 500;
}
.producer__fund-field label input[disabled],
.producer__fund-field label select[disabled] {
  pointer-events: none;
  opacity: 0.55;
}
.producer__fund-field .c-btn {
  width: 100%;
}
.producer__fund-field .c-btn__wrapper {
  padding-top: 15px;
}
.producer__media {
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
}
.producer__media img {
  display: block;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 1023px) {
  .producer__table {
    overflow: hidden;
    overflow-x: auto;
    position: relative;
  }
}
.producer__pagination-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 30px;
}
.producer__pagination-container form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.producer__pagination-container form label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.producer__pagination-container form label select {
  outline: none;
  position: relative;
  width: auto;
  height: auto;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  background-color: transparent;
  font-size: 20px;
  font-weight: 500;
}
.producer__pagination-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.producer__pagination-wrapper a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: transparent;
  font-size: 12px;
  color: #000000;
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.producer__pagination-wrapper a:hover {
  background-color: #000000;
  color: #ffffff;
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.producer__pagination-wrapper a[disabled] {
  opacity: 0.5;
  pointer-events: none;
}
.producer__pagination-wrapper p {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 20px;
  line-height: 1;
  color: #000000;
}
.producer__pagination-wrapper p span {
  opacity: 0.5;
}