html {
  scroll-behavior: smooth;
}

/**
 * Reset some basic elements
 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
hr,
dl,
dd,
ol,
ul,
figure {
  margin: 0;
  padding: 0;
}

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

/**
 * Basic styling
 */
body {
  font-family: "dita", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
  color: #595959;
  background-color: #FFF;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "kern" 1;
  -moz-font-feature-settings: "kern" 1;
  -o-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

/**
 * Set `margin-bottom` to maintain vertical rhythm
 */
/**
 * `main` element
 */
main {
  display: block;
  /* Default value of `display` of `main` element is 'inline' in IE 11. */
}

/**
 * Images
 */
img {
  max-width: 100%;
  vertical-align: middle;
}

/**
 * Figures
 */
figure > img {
  display: block;
}

figcaption {
  font-size: 17.5px;
}

/**
 * Lists
 */
ul,
ol {
  margin-left: 30px;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

/**
 * Headings
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  font-family: inherit;
}

/**
 * Links
 */
a {
  color: #595959;
  text-decoration: none;
  transition: color 100ms ease-in-out;
}
a:hover {
  color: #99dd4f;
}
.social-media-list a:hover {
  text-decoration: none;
}
.social-media-list a:hover .username {
  text-decoration: underline;
}

a.anchor {
  display: block;
  position: relative;
  top: -100px;
  visibility: hidden;
}

/**
 * Blockquotes
 */
blockquote {
  color: #d5d5d5;
  border-left: 4px solid white;
  padding-left: 15px;
  font-size: 22.5px;
  letter-spacing: -1px;
  font-style: italic;
}
blockquote > :last-child {
  margin-bottom: 0;
}

/**
 * Code formatting
 */
pre,
code {
  font-size: 18.75px;
  border: 1px solid white;
  border-radius: 3px;
  background-color: #eef;
}

code {
  padding: 1px 5px;
}

pre {
  padding: 8px 12px;
  overflow-x: auto;
}
pre > code {
  border: 0;
  padding-right: 0;
  padding-left: 0;
}

/**
 * Wrapper
 */
.page-wrapper {
  width: 100%;
  z-index: 2;
  max-width: -webkit-calc(1280px - (30px * 2));
  max-width: calc(1280px - 30px * 2);
  margin-right: auto;
  margin-left: auto;
  padding: 0 0;
}
@media screen and (max-width: 1050px) {
  .page-wrapper {
    max-width: -webkit-calc(1280px - (30px));
    max-width: calc(1280px - (30px));
    padding-right: 0;
    padding-left: 0;
  }
}

.padded-wrapper {
  padding: 10px 30px;
}
@media screen and (max-width: 1050px) {
  .padded-wrapper {
    padding: 10px;
  }
}

.padded-wrapper-even {
  padding: 30px;
}
@media screen and (max-width: 1050px) {
  .padded-wrapper-even {
    padding: 10px;
  }
}

.main-content-wrapper {
  background-color: #FFF;
}

/**
 * Clearfix
 */
.page-wrapper:after {
  content: "";
  display: table;
  clear: both;
}

/**
 * Icons
 */
.svg-icon {
  width: 32px;
  height: 32px;
  display: inline-block;
  fill: #73af33;
  padding-right: 0px;
  transition: fill 100ms ease-in-out;
}
.svg-icon:hover {
  fill: #99dd4f;
}

.social-media-list li + li {
  padding-top: 5px;
}

/**
 * Tables
 */
table {
  margin-bottom: 30px;
  width: 100%;
  text-align: left;
  color: #878787;
  border-collapse: collapse;
  border: 1px solid white;
}
table tr:nth-child(even) {
  background-color: white;
}
table th,
table td {
  padding: 10px 15px;
}
table th {
  background-color: white;
  border: 1px solid whitesmoke;
  border-bottom-color: #e0e0e0;
}
table td {
  border: 1px solid white;
}

.outer-wrapper {
  display: flex;
  justify-content: center;
  height: 100vh;
  padding: 10px;
  position: relative;
  z-index: 2;
}

.hero-wrapper {
  padding: 0.5rem;
}

.hero-logo {
  text-align: center;
}
.hero-logo img {
  max-width: 350px;
  width: 100%;
}

.social-wrapper {
  position: relative;
  display: flex;
  gap: 10px;
  justify-content: end;
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 25px 0 10px;
}
@media screen and (max-width: 480px) {
  .site-nav {
    flex-direction: column;
  }
}

.site-nav-left {
  display: flex;
  gap: 15px;
  font-size: 24px;
  position: relative;
  top: -10px;
}

.promo-container {
  width: 900px;
  border: 2px solid #f1f1f1;
  border-radius: 10px;
  background-color: #FFF;
  overflow: hidden;
  margin-bottom: 25px;
  padding: 15px;
}
.promo-container img {
  max-width: 100%;
}
@media screen and (max-width: 1050px) {
  .promo-container {
    width: 100%;
  }
}

.intro {
  font-size: 24px;
  display: flex;
  gap: 25px;
  align-items: center;
}
.intro img {
  width: 100px;
}

.footer {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
@media screen and (max-width: 480px) {
  .footer {
    flex-direction: column-reverse;
  }
}

.footer-right {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  color: #FFF;
  opacity: 0.3;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 1;
}

.game-title {
  font-family: "spectral", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 30px;
}

.active-header-link {
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-underline-offset: 8px;
  text-decoration-color: #73af33;
}
.active-header-link:hover {
  text-decoration-color: #99dd4f;
}

.team-section {
  margin-top: 30px;
}

.team-container {
  display: flex;
  gap: 20px;
}
.team-container .svg-icon {
  height: 25px;
  width: 25px;
  fill: #73af33;
}
.team-container .svg-icon:hover {
  fill: #99dd4f;
}

.team-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.team-portrait {
  background-color: #73af33;
  height: 100px;
  width: 100px;
  border-radius: 50px;
}

.team-member-social {
  display: flex;
  gap: 10px;
}

.split-body-wrapper {
  display: flex;
  height: 100%;
  flex: 1;
  background: linear-gradient(#587837, #82af68);
}
.split-body-wrapper > div {
  text-align: center;
}
@media screen and (max-width: 480px) {
  .split-body-wrapper {
    flex-direction: column;
    background: linear-gradient(#587837, #82af68 50%);
  }
}

.split-left,
.split-right {
  max-width: 50%;
}
@media screen and (max-width: 480px) {
  .split-left,
  .split-right {
    max-width: 100%;
  }
}

.split-right {
  width: 50%;
}
@media screen and (max-width: 480px) {
  .split-right {
    width: 100%;
  }
}

.split-left {
  color: #FFF;
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 30px;
}
@media screen and (max-width: 480px) {
  .split-left {
    padding-bottom: 0;
  }
}

.split-left-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: center;
}

.split-logo {
  width: 100%;
  max-width: 500px;
}
@media screen and (max-width: 1050px) {
  .split-logo {
    max-width: 100%;
  }
}

.split-inner-content {
  max-width: 500px;
  font-size: 1.5rem;
  margin: 20px 0;
}
@media screen and (max-width: 1050px) {
  .split-inner-content {
    max-width: 100%;
  }
}

.split-inquiries {
  background-color: #FFF;
  color: #595959;
  border-radius: 7px;
  width: 500px;
  margin: 20px 0;
  padding: 28px 14px;
}
@media screen and (max-width: 1050px) {
  .split-inquiries {
    font-size: 2vw;
    max-width: 100%;
  }
}
.split-inquiries:hover {
  color: #b9d295;
}
@media screen and (max-width: 480px) {
  .split-inquiries {
    font-size: 1rem;
  }
}

.split-left-links {
  margin: 20px 0;
}
.split-left-links a,
.split-left-links a:visited {
  color: #FFF;
}
.split-left-links a:hover {
  color: #b9d295;
}

.split-left-social {
  display: flex;
  gap: 10px;
}
.split-left-social .svg-icon {
  fill: #FFF;
}
.split-left-social .svg-icon:hover {
  fill: #b9d295;
}

.split-right {
  background-color: #FFF;
  color: #595959;
  padding: 30px;
  padding-left: 42px;
  --mask: conic-gradient(from 45deg at left, #0000, #000 1deg 89deg, #0000 90deg) 50%/100% 6px;
  -webkit-mask: var(--mask);
  mask: var(--mask);
}
.split-right img {
  border: 2px solid #FFF;
  border-radius: 7px;
  margin-bottom: 20px;
}
.split-right p,
.split-right h1 {
  text-align: left;
}
@media screen and (max-width: 480px) {
  .split-right {
    flex-direction: column;
    --mask: conic-gradient(from 135deg at top, #0000, #000 1deg 89deg, #0000 90deg) 50%/6px 100%;
    -webkit-mask: var(--mask);
    mask: var(--mask);
  }
}

.split-copyright {
  font-size: 1rem;
  margin-top: auto;
}
.split-copyright img {
  width: 50px;
  border: none;
}

@media screen and (max-width: 480px) {
  .split-left-copyright {
    display: none;
  }
}

.split-right-copyright {
  margin-top: 30px;
}
@media screen and (min-width: 480px) {
  .split-right-copyright {
    display: none;
  }
}

/**
 * Syntax highlighting styles
 */
.highlight {
  background: #fff;
}
.highlighter-rouge .highlight {
  background: #eef;
}
.highlight .c {
  color: #998;
  font-style: italic;
}
.highlight .err {
  color: #a61717;
  background-color: #e3d2d2;
}
.highlight .k {
  font-weight: bold;
}
.highlight .o {
  font-weight: bold;
}
.highlight .cm {
  color: #998;
  font-style: italic;
}
.highlight .cp {
  color: #999;
  font-weight: bold;
}
.highlight .c1 {
  color: #998;
  font-style: italic;
}
.highlight .cs {
  color: #999;
  font-weight: bold;
  font-style: italic;
}
.highlight .gd {
  color: #000;
  background-color: #fdd;
}
.highlight .gd .x {
  color: #000;
  background-color: #faa;
}
.highlight .ge {
  font-style: italic;
}
.highlight .gr {
  color: #a00;
}
.highlight .gh {
  color: #999;
}
.highlight .gi {
  color: #000;
  background-color: #dfd;
}
.highlight .gi .x {
  color: #000;
  background-color: #afa;
}
.highlight .go {
  color: #888;
}
.highlight .gp {
  color: #555;
}
.highlight .gs {
  font-weight: bold;
}
.highlight .gu {
  color: #aaa;
}
.highlight .gt {
  color: #a00;
}
.highlight .kc {
  font-weight: bold;
}
.highlight .kd {
  font-weight: bold;
}
.highlight .kp {
  font-weight: bold;
}
.highlight .kr {
  font-weight: bold;
}
.highlight .kt {
  color: #458;
  font-weight: bold;
}
.highlight .m {
  color: #099;
}
.highlight .s {
  color: #d14;
}
.highlight .na {
  color: #008080;
}
.highlight .nb {
  color: #0086B3;
}
.highlight .nc {
  color: #458;
  font-weight: bold;
}
.highlight .no {
  color: #008080;
}
.highlight .ni {
  color: #800080;
}
.highlight .ne {
  color: #900;
  font-weight: bold;
}
.highlight .nf {
  color: #900;
  font-weight: bold;
}
.highlight .nn {
  color: #555;
}
.highlight .nt {
  color: #000080;
}
.highlight .nv {
  color: #008080;
}
.highlight .ow {
  font-weight: bold;
}
.highlight .w {
  color: #bbb;
}
.highlight .mf {
  color: #099;
}
.highlight .mh {
  color: #099;
}
.highlight .mi {
  color: #099;
}
.highlight .mo {
  color: #099;
}
.highlight .sb {
  color: #d14;
}
.highlight .sc {
  color: #d14;
}
.highlight .sd {
  color: #d14;
}
.highlight .s2 {
  color: #d14;
}
.highlight .se {
  color: #d14;
}
.highlight .sh {
  color: #d14;
}
.highlight .si {
  color: #d14;
}
.highlight .sx {
  color: #d14;
}
.highlight .sr {
  color: #009926;
}
.highlight .s1 {
  color: #d14;
}
.highlight .ss {
  color: #990073;
}
.highlight .bp {
  color: #999;
}
.highlight .vc {
  color: #008080;
}
.highlight .vg {
  color: #008080;
}
.highlight .vi {
  color: #008080;
}
.highlight .il {
  color: #099;
}

/*# sourceMappingURL=main.css.map */