@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Lato:300,400,700");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Open+Sans");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css");
body {
  font-family: "Montserrat", sans-serif;}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

html,
body {
  padding: 0;
  margin: 0;
  min-height: 100vh; }

html::-webkit-scrollbar {
    width: 0;
    background: transparent; }

p {
  font-family: 'lato', sans-serif; }

ul,
ol {
  padding-left: 25px; }
  ul li,
  ol li {
    padding: 0 15px; }

* {
  font-family: Roboto;
  color: white; }

body {
  background: #070707; }

.top,
.category-top {
  font-size:12px; }
.category-top {
  text-align: right; }
  .top a,
  .category-top a {
    color: white; }

.button {
  font-family: "Montserrat", sans-serif;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
  background: #3498db;
  color: white;
  font-weight: 600;
  display: inline-block;
  margin: 0 10px 10px 0;
  font-size: 18px;
  padding: 2px 15px;
  border-radius: 6px;
  -webkit-box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.25), 0 3px 0 rgba(0, 0, 0, 0.25);
          box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.25), 0 3px 0 rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 3px 0 rgba(0, 0, 0, 0.25);
  text-transform: uppercase; }
  .button:hover {
    background: #2b94d9;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 2px 0 rgba(0, 0, 0, 0.8);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 2px 0 rgba(0, 0, 0, 0.8);
    color: white;
    text-decoration: none; }
  .button:active {
    -webkit-box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.5), 0 2px 0 rgba(255, 255, 255, 0.2);
            box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.5), 0 2px 0 rgba(255, 255, 255, 0.2); }
  .button:before {
    font-family: 'FontAwesome';
    margin-right: 8px;
    position: relative;
    top: 1px;
    font-weight: normal; }
  .button.large {
    font-size: 20px;
    padding: 10px 20px 8px; }
  .button.small {
    border-radius: 4px;
    font-size: 12px;
    padding: 5px 10px 3px; }
    .button.small:active {
      padding: 5px 10px 0; }
  .button.error {
    background: #aa0033; }
    .button.error:hover {
      background: #91002b; }
  .button.warning {
    background: #ff7900; }
    .button.warning:hover {
      background: #e66d00; }
  .button.success {
    background: #5cb85c; }
    .button.success:hover {
      background: #4cae4c; }
  .button.info {
    background: #1681e4; }
    .button.info:hover {
      background: #1474cd; }
  .button.facebook {
    background: #3b5998; }
    .button.facebook:before {
      content: "\f09a"; }
    .button.facebook:hover {
      background: #344e86; }
  .button.twitter {
    background: #00aced; }
    .button.twitter:before {
      content: "\f099"; }
    .button.twitter:hover {
      background: #0099d4; }
  .button.discord {
    background: #ff0000; }
    .button.discord:before {
      content: "\f392"; }
    .button.discord:hover {
      background: #f00000; }
  .button.tiktok {
    background: #ff0000; }
    .button.tiktok:before {
      content: "\e07b"; }
    .button.tiktok:hover {
      background: #f00000; }
  .button.youtube {
    background: #ff0000; }
    .button.youtube:before {
      content: "\f167"; }
    .button.youtube:hover {
      background: #f00000; }
  .button.twitch {
    background: #6441a4; }
    .button.twitch:before {
      content: '\f1e8'; }
    .button.twitch:hover {
      background: #5d3d99; }

.user .profile-image {
  border: 2px solid white;
  border-radius: 100%;
  overflow: hidden;
  display: inline-block; }
  .user .profile-image img {
    width: 100%;
    height: 100%;
	vertical-align: unset; }
.user .name {
  font-weight: bold;
  color: white;
  display: inline-block; }

.header.site {
  z-index: 1000;
  width: 100%; }
  .header.site .container {
    position: relative; }
  .header.site .logo {
    background: url("../../images/logo.png") top center no-repeat;
    background-size: 100%;
    display: inline-block;
    width: 50px;
    height: 58px;
    position: absolute;
    top: 35px;
    left: 0; }
    @media only screen and (max-width: 767px) {
      .header.site .logo {
        display: none; } }
  .header.site .menu {
    text-align: right;
    text-transform: uppercase;
    padding: 32px 0; }
    .header.site .menu .mobile_trigger {
      color: white;
      font-size: 30px;
      display: none; }
      @media only screen and (max-width: 1000px) {
        .header.site .menu .mobile_trigger {
          display: inline-block;
          cursor: pointer;
          position: relative;
          top: -7px;
          right: 24px; } }
    .header.site .menu .mobile-menu {
      display: inline-block;
      padding: 20px; }
      .header.site .menu .mobile-menu .mobile_trigger {
        position: fixed;
        top: 25px;
        right: 25px; }
      @media only screen and (max-width: 1000px) {
        .header.site .menu .mobile-menu {
          display: none; }
          .header.site .menu .mobile-menu.active {
            display: block;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1100;
            height: 100%;
            width: 100%;
            background: rgba(0, 0, 0, 0.75); }
            .header.site .menu .mobile-menu.active a.menu-item {
              display: block;
              text-align: center;
              font-size: 30px;
              padding: 25px; }
          .header.site .menu .mobile-menu .menu-item {
            width: 100%; }
          .header.site .menu .mobile-menu .user {
            padding: 50px 0 0;
            text-align: center;
            width: 100%; }
            .header.site .menu .mobile-menu .user:before {
              display: none; } }
    .header.site .menu .menu-item {
      color: white;
      font-family: 'Montserrat', sans-serif;
      font-size: 16px;
      font-weight: 600;
      display: inline-block;
      margin: 0 13.1px;
      height: 32px; }
    .header.site .menu .btn {
      position: relative;
      top: -2px; }
.header .user {
  position: relative;
  padding-left: 25px;
  height: 32px;
  overflow: visible; }
  .header .user .button {
    margin: 0;
    position: relative;
    top: -2px; }
  .header .user .profile-image {
    width: 25px;
    height: 25px;
    margin-right: 6px;
    position: absolute;
    top: 0;
    left: 20px; }
  .header .user .name {
    font-family: "Montserrat", sans-serif;
    text-transform: none;
    font-weight: 400;
    padding-left: 35px; }
    @media only screen and (max-width: 1000px) {
      .header .user .name {
        display: none; } }
  .header .user:before {
    content: "";
    background: white;
    height: 25px;
    width: 2px;
    position: absolute;
    left: 0;
    top: 0; }
  .header .user-menu {
    display: none;
    position: absolute;
    top: 20px;
    right: 0;
    z-index: 1000;
    padding: 30px 0 0;
    min-width: 216px; }
    .header .user-menu ul {
      padding: 0; }
      .header .user-menu ul li {
        list-style: none;
        text-align: left; }
        .header .user-menu ul li a {
          background: #192632;
          color: white;
          font-family: "Open Sans", sans-serif;
          font-size: 12px;
          font-weight: 300;
          text-transform: capitalize;
          text-decoration: none;
          display: block;
          padding: 8px 15px; }
          .header .user-menu ul li a i {
            -webkit-transition: .2s linear opacity;
            transition: .2s linear opacity;
            opacity: 0.35;
            color: white;
            margin-right: 4px; }
          .header .user-menu ul li a:hover {
            background: #111921; }
            .header .user-menu ul li a:hover i {
              -webkit-transition: .2s linear opacity;
              transition: .2s linear opacity;
              opacity: 1; }
        .header .user-menu ul li:first-child a {
          border-top-right-radius: 5p;
          border-top-left-radius: 5p;
          padding-top: 8px; }
          .header .user-menu ul li:first-child a:before {
            content: "";
            border: 5px solid transparent;
            border-bottom: 8px solid #192632;
            position: absolute;
            top: 17px;
            right: 17px; }
          .header .user-menu ul li:first-child a:hover:before {
            border-bottom-color: #111921; }
        .header .user-menu ul li:last-child a {
          border-bottom-right-radius: 5px;
          border-bottom-left-radius: 5px;
          padding-bottom: 8px; }
        .header .user-menu ul li.sign-out a {
          -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25);
                  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25);
          background: #131d26; }
          .header .user-menu ul li.sign-out a:hover {
            color: #ff8080; }
            .header .user-menu ul li.sign-out a:hover i {
              color: #ff8080; }
  .header .user:hover .user-menu {
    display: block; }

.accordion-hero {
  height: 100vh;
  background: #121212;
  padding-right: 25%;
  position: relative; }
  .accordion-hero .accordion {
    overflow: hidden;
    height: 100vh;
    position: relative; }
    .accordion-hero .accordion.hover .item {
      transition: height 0.15s linear;
      height: 10vh; }
      .accordion-hero .accordion.hover .item h2 {
        transition: height 0.15s linear;
        height: 10vh;
        text-align: center; }
    .accordion-hero .accordion .item {
      transition: height 0.15s linear;
      height: 25vh;
      width: 100%;
      box-shadow: 0 -12px 13px rgba(0, 0, 0, 0.35);
      transform: skew(0, -5deg) translateY(15px);
      overflow: hidden; }
      .accordion-hero .accordion .item.active {
        transition: height 0.05s linear;
        height: 70vh;
        overflow: visible; }
        .accordion-hero .accordion .item.active h2 {
          height: 25vh;
          width: 75%;
          margin: 0 auto; }
      .accordion-hero .accordion .item h2 {
        height: 25vh;
        text-align: center;
        width: 75%;
        margin: 0 auto; }
      .accordion-hero .accordion .item div {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        height: 35vh;
        font-weight: 400;
        font-size: 18px;
        line-height: 175%;
        width: 75%;
        margin: 0 auto;
        overflow: auto; }
        .accordion-hero .accordion .item div p {
          margin-bottom: 40px; }
      .accordion-hero .accordion .item.viewsonic {
        background: purple url("../../images/viewsonic-background.jpg") center center no-repeat;
        background-size: cover;
        background-position: fixed; }
        .accordion-hero .accordion .item.viewsonic h2 {
          background: url("../../images/viewsonic-logo.png") center center no-repeat;
          background-size: auto 25%; }
          .accordion .item.viewsonic a {
            color: blue; }
      .accordion-hero .accordion .item.elgato {
        background: blue url("../../images/elgato-background.jpg") center center no-repeat;
        background-size: cover; }
        .accordion-hero .accordion .item.elgato h2 {
          background: url("../../images/elgato-logo.png") center center no-repeat;
          background-size: auto 45%; }
          .accordion .item.elgato a {
            color: blue; }
      .accordion-hero .accordion .item.origin {
        background: red url("../../images/origin-background.jpg") center center no-repeat;
        background-size: cover; }
        .accordion-hero .accordion .item.origin h2 {
          background: url("../../images/origin-logo.png") center center no-repeat;
          background-size: auto 35%; }
          .accordion .item.origin a {
            color: red; }
      .accordion-hero .accordion .item.wyrmwood {
        background: black url("../../images/wyrmwood-background.jpg") center center no-repeat;
        background-size: cover; }
        .accordion-hero .accordion .item.wyrmwood h2 {
          background: url("../../images/wyrmwood-logo.png") center center no-repeat;
          background-size: auto 35%; }
          .accordion .item.wyrmwood a {
            color: chocolate; }
      .accordion-hero .accordion .item:nth-child(1) {
        top: 0; }
      .accordion-hero .accordion .item:nth-child(2) {
        top: 25%; }
      .accordion-hero .accordion .item:nth-child(3) {
        top: 50%; }
      .accordion-hero .accordion .item:nth-child(4) {
        top: 75%; }
  .accordion-hero .menu {
    width: 25%;
    height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
    overflow: auto;
    overflow-y: scroll; }
    .menu::-webkit-scrollbar {
      width: 11px;
      background: transparent; }
    .menu::-webkit-scrollbar-thumb {
      background: #070707; }
    .accordion-hero .menu a {
      color: white;
      font-weight: 700;
      text-transform: uppercase;
      display: block;
      padding: 30px; }

h2.logo {
  text-indent: 150%;
  overflow: hidden; }

.gallery {
  padding: 165px 0; }
  .gallery .thumbnails figure {
    height: auto;
    display: block;
    float: left;
    padding: 15px;
    width: 50%; }
    .gallery .thumbnails figure img {
      width: 100%;
      height: auto; }
  .gallery:after {
    content: "";
    display: block;
    clear: both; }

.categories .category {
  position: relative; }
  .categories .category .container {
  /*padding: 165px;*/
    padding-bottom: 165px; }
    .categories .category .container p {
      line-height: 175%; }
  .categories .category:before {
    background: black;
    display: block;
    width: 550px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }
  .categories .category hgroup {
    padding-top: 25px;
    padding-bottom: 75px; }
    .categories .category hgroup h3 {
      font-weight: 500;
      font-size: 21px; }
    .categories .category hgroup h2 {
      font-size: 55px;
      text-transform: uppercase; }
  .categories .category ul.products {
    display: block;
    width: 100%;
    padding: 0;
    margin-top: 100px;
    list-style: none; }
    .categories .category ul.products li {
      background: url("../../images/wyrmwood-background.jpg") center bottom no-repeat;
      background-size: cover;
      padding: 25px 175px 25px 240px;
      border-top: 1px solid black;
      position: relative;
      display: block;
      min-height: 170px; }
      .categories .category ul.products li:first-child {
        border: 0; }
      .categories .category ul.products li h3 {
        font-size: 25px;
        padding-bottom: 10px; }
      .categories .category ul.products li p {
        font-size: 16px;
        line-height: 175%; }
      .categories .category ul.products li figure,
      .categories .category ul.products li a {
        background: black;
        height: 100%;
        position: absolute;
        top: 0; }
      .categories .category ul.products li figure {
        background: white;
        border-right: 1px solid black;
        width: 215px;
        left: 0;
        overflow: hidden; }
        .categories .category ul.products li figure img {
          height: 100%;
          min-width: 100%;
          position: absolute;
          left: -20px;
          top: 0; }
      .categories .category ul.products li a {
        display: inline-block;
        text-align: center;
        width: 150px;
        right: 0;
        text-transform: uppercase;
        font-size: 26px; }
        .categories .category ul.products li a:hover {
          background: #090909; }
        .categories .category ul.products li a span {
          display: inline-block;
          position: relative;
          top: 50%;
          margin-top: -25px; }
        .categories .category ul.products li a div {
          display: block;
          font-size: 16px; }

.video {
  background: url("../../images/video-background.png") center center no-repeat;
    -webkit-box-shadow: 0 -40px 100px 40px #070707 inset;
    box-shadow: 0 -40px 100px 40px #070707 inset;
  background-size: cover;
  text-align: center;
  padding: 175px 0;
  text-shadow: 0 12px 13px rgba(0, 0, 0, 0.8);
  position: relative; }
  .video h2,
  .video p {
    max-width: 800px;
    margin: 0 auto; }
  .video h2 {
    text-transform: uppercase;
    font-size: 55px;
    padding: 0 0 40px; }
  .video p {
    font-size: 16px;
    line-height: 225%;
    padding: 0 0 75px; }
  .video .player {
    box-shadow: 0 12px 13px 0 rgba(0, 0, 0, 0.8);
    margin: 0 auto;
    width: 800px;
    height: 400px;
    background: #323232;
    position: relative;
    z-index: 100; }
    .video .player iframe {
      position: absolute;
      top: 0;
      left: 0; }
    .video .player h3 {
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      text-align: center;
      margin-top: -12px; }
  .video:after {
    content: "";
    background: url("../../images/burke-presents.png") 200px bottom no-repeat;
    background-size: 603px auto;
    height: 100%;
    width: 50%;
    position: absolute;
    bottom: 0;
    right: 0; }

  .kraken {
    background: -webkit-gradient(linear, left top, left bottom, from(#050d12), to(#2e3f4e));
    background: linear-gradient(#050d12, #2e3f4e);
    color: white;
    padding: 80px 0 120px;
    text-align: center;
    position: relative; }
    .kraken h2 {
      font-family: "Montserrat", sans-serif;
      text-transform: uppercase;
      padding-bottom: 35.5px; }
    .kraken p {
      font-family: 'lato', sans-serif;
      font-weight: 300;
      font-size: 18px;
      line-height: 175%;
      margin-bottom: 50px; }
    .kraken .user {
      border-radius: 8px;
      background: rgba(0, 0, 0, 0.5);
      display: inline-block;
      padding: 10px 15px 15px; }
      .kraken .user .profile-image {
        height: 40px;
        width: 40px;
        position: relative;
        top: 10px;
        margin-right: 8px; }
      .kraken .user .name {
        font-size: 30px; }
    .kraken:before {
      content: '';
      display: block;
      background: url("../../../images/barrel-0d52b3f6.png") center center no-repeat;
      background-size: cover;
      width: 216.5px;
      height: 196.5px;
      position: absolute;
      bottom: -112px;
      left: 50%;
      margin-left: -97.5px;
      -webkit-transform: rotate3d(0, 0, 1, -90deg);
              transform: rotate3d(0, 0, 1, -90deg);
      -webkit-animation-name: floating-debris;
              animation-name: floating-debris;
      -webkit-animation-duration: 15s;
              animation-duration: 15s;
      -webkit-animation-iteration-count: infinite;
              animation-iteration-count: infinite; }
    .kraken:after {
      content: '';
      background: url("../../../images/burke-waves-ba20d5df.png") center center repeat-x;
      display: block;
      position: absolute;
      bottom: -1px;
      left: 0;
      width: 100%;
      height: 52px; }

  @-webkit-keyframes floating-debris {
    0% {
      -webkit-transform: rotate(-80deg) translate3d(0, 0, 0);
              transform: rotate(-80deg) translate3d(0, 0, 0); }
    50% {
      -webkit-transform: rotate(-100deg) translate3d(0, -20px, 0);
              transform: rotate(-100deg) translate3d(0, -20px, 0); }
    100% {
      -webkit-transform: rotate(-80deg) translate3d(0, 0, 0);
              transform: rotate(-80deg) translate3d(0, 0, 0); } }

  @keyframes floating-debris {
    0% {
      -webkit-transform: rotate(-80deg) translate3d(0, 0, 0);
              transform: rotate(-80deg) translate3d(0, 0, 0); }
    50% {
      -webkit-transform: rotate(-100deg) translate3d(0, -20px, 0);
              transform: rotate(-100deg) translate3d(0, -20px, 0); }
    100% {
      -webkit-transform: rotate(-80deg) translate3d(0, 0, 0);
              transform: rotate(-80deg) translate3d(0, 0, 0); } }

.footer {
  padding: 120px 0;
  background: #06111a;
  position: relative; }
  .footer:after {
    content: '';
    background: url("../../../images/burke-waves-darker-801fbec5.png") center center repeat-x;
    display: block;
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 52px; }
  .footer .sub-footer {
    background: black;
    color: white;
    font-family: 'lato', sans-serif;
    font-weight: 300;
    font-size: 14px;
    padding: 15px 0;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0; }
    .footer .sub-footer .copy {
      padding-top: 5px; }
    .footer .sub-footer .social-links {
      text-align: right; }
    .footer .sub-footer .copy,
    .footer .sub-footer .social-links,
    .footer .sub-footer .social-links span {
      font-family: 'lato', sans-serif; }
    @media only screen and (max-width: 767px) {
      .footer .sub-footer .copy,
      .footer .sub-footer .social-links {
        text-align: center; }
      .footer .sub-footer .social-links {
        padding-top: 20px; } }
  .footer .social-link {
    border-radius: 50%;
    width: 27px;
    text-indent: 500px;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
    color: white;
    position: relative;
    top: 4px; }
    .footer .social-link:before {
      font-family: 'FontAwesome';
      font-size: 18px;
      position: absolute;
      top: -2px;
      left: 0;
      width: 100%;
      height: 100%;
      text-indent: 0;
      text-align: center; }
    .footer .social-link.facebook:before {
      content: "\f09a"; }
    .footer .social-link.twitter:before {
      content: "\f099"; }
    .footer .social-link.discord:before {
      content: "\f392"; }
    .footer .social-link.tiktok:before {
      content: "\e07b"; }
    .footer .social-link.youtube:before {
      content: "\f167"; }
    .footer .social-link.twitch:before {
      content: '\f1e8'; }

@media only screen and (max-width: 1350px) {
  .categories .category .container {
    padding: 100px 50px; }
  .gallery {
    padding: 125px 50px; } }

@media only screen and (max-width: 950px) {
    .category-top,
    .top {
      float: none;
      text-align: center;
    }
  .gallery {
    padding: 50px; }
    .gallery .thumbnails figure {
      width: 100%;
      padding: 25px 0; }
  .categories .category .container {
    padding: 50px 0 0; }
    .categories .category .container hgroup h2 {
      font-size: 32px;
      padding-top: 20px;
      text-align: center; }
    .categories .category .container > hgroup,
    .categories .category .container > p {
      padding-left: 50px;
      padding-right: 50px; }
  .categories .category ul.products li {
    padding: 50px 25px; }
    .categories .category ul.products li figure {
      position: static;
      margin: 0 auto 25px;
      width: 100%; }
      .categories .category ul.products li figure img {
        position: static;
        height: auto;
        width: 125px; }
    .categories .category ul.products li p {
      padding-bottom: 25px; }
    .categories .category ul.products li a {
      position: static;
      width: 100%;
      padding: 25px 50px; }
      .categories .category ul.products li a span {
        position: static;
        margin: 0;
        font-size: 20px; }
        .categories .category ul.products li a span div {
          font-size: 20px;
          display: inline; }
  .header.site .menu .mobile-menu {
    display: none; }
  .header.site .menu .mobile-menu.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.75); }
  .header.site .menu .mobile-menu.active a.menu-item {
    display: block;
    text-align: center;
    font-size: 30px;
    padding: 25px; }
  .header.site .menu .mobile-menu .menu-item {
    width: 100%; }
  .header.site .menu .mobile-menu .user {
    padding: 50px 0 0;
    text-align: center;
    width: 100%; }
  .header.site .menu .mobile-menu .user:before {
    display: none; }
  .accordion-hero {
    padding: 0;
    height: auto; }
    .accordion-hero .accordion {
      width: 100%; }
      .accordion-hero .accordion .item.viewsonic h2 {
        background-size: auto 20%; }
    .accordion-hero .menu {
      height: auto;
      width: 100%;
      position: static; }
      .accordion-hero .menu a {
        display: inline-block; }
  .video {
    padding: 25px; }
    .video .player {
      width: 100%;
      height: 0;
      padding-bottom: 56.25%;
      padding-top: 30px; } }
