/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.c-black {
  color: #000000;
}

.bg-black {
  background-color: #000000;
}

.c-white {
  color: #ffffff;
}

.bg-white {
  background-color: #ffffff;
}

.c-green {
  color: #0e3c38;
}

.bg-green {
  background-color: #0e3c38;
}

.c-pink {
  color: #b38dc0;
}

.bg-pink {
  background-color: #b38dc0;
}

.c-skin {
  color: #e3d2bd;
}

.bg-skin {
  background-color: #e3d2bd;
}

.c-chalk {
  color: #f6f4f1;
}

.bg-chalk {
  background-color: #f6f4f1;
}

body {
  position: relative;
}

main {
  background-color: black;
  min-height: calc(100vh - 100px);
  overflow-x: hidden;
}

.section-card-list {
  overflow: hidden;
  padding: 500px 0;
}
@media screen and (max-width: 768px) {
  .section-card-list {
    padding: 300px 0;
  }
}

.beans img {
  opacity: 0;
}

header {
  width: 100%;
  background-image: url(../assets/images/background_tile.jpeg);
  background-repeat: repeat;
  position: relative;
  background-size: 200px 200px;
  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;
  z-index: 1;
  top: 0;
  left: 0;
  height: 300px;
}
header img {
  width: 100%;
}
header.active {
  height: 60px;
}
header .logo-wrapper {
  width: 100%;
  height: 100%;
}
header .logo {
  width: 100%;
  height: 100%;
}
header .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header::before {
  content: "";
  position: absolute;
  top: calc(100% - 15px);
  left: 0;
  width: 100%;
  height: 30px;
  background-image: url(../assets/images/branch_tile_optimize.webp);
  background-size: contain 100%;
  background-position: center bottom;
  background-repeat: repeat-x;
}

.header {
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header.active {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
}

footer {
  padding-bottom: 50px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  bottom: 0;
}
footer .social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin: 0 auto;
}
footer .social-media li {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  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;
  overflow: hidden;
  cursor: pointer;
}
footer .social-media li:active {
  -webkit-transform: translate(-10px, 10px) scale(0.98);
          transform: translate(-10px, 10px) scale(0.98);
}
footer .social-media li a {
  width: 100%;
  height: 100%;
}
footer .social-media li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-banner {
  width: 100%;
  background-color: #f5f5f7;
  z-index: 1;
  position: relative;
  height: 300vh;
}
.section-banner .section-canvas {
  height: 100vh;
}
.section-banner canvas {
  width: 100%; /* Set width to fill its container */
  height: 100%; /* Set height to fill its container */
}

.section-chess {
  height: 300vh;
  position: relative;
}
.section-chess .chess-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  height: 100vh;
  background-image: url(../assets/images/background_tile.jpeg);
  background-repeat: repeat;
  background-size: 200px 200px;
}
@media screen and (max-width: 768px) {
  .section-chess .chess-wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.section-chess .chess-wrapper .chess-left,
.section-chess .chess-wrapper .chess-right {
  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;
  height: 100%;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .section-chess .chess-wrapper .chess-left,
  .section-chess .chess-wrapper .chess-right {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.section-chess .chess-wrapper .pawn {
  position: relative;
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .section-chess .chess-wrapper .pawn {
    max-width: 150px;
  }
}
.section-chess .chess-wrapper .pawn img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-chess .chess-wrapper .hat,
.section-chess .chess-wrapper .scarf,
.section-chess .chess-wrapper .glasses {
  position: absolute;
}
.section-chess .chess-wrapper .hat img,
.section-chess .chess-wrapper .scarf img,
.section-chess .chess-wrapper .glasses img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-chess .chess-wrapper .hat {
  max-width: 300px;
  top: 20vh;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .section-chess .chess-wrapper .hat {
    max-width: 150px;
    top: 15vh;
  }
}
.section-chess .chess-wrapper .glasses {
  max-width: 300px;
  top: 32vh;
  left: 47%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .section-chess .chess-wrapper .glasses {
    max-width: 120px;
    top: 26vh;
  }
}
.section-chess .chess-wrapper .scarf {
  max-width: 300px;
  top: 40vh;
}
@media screen and (max-width: 768px) {
  .section-chess .chess-wrapper .scarf {
    max-width: 200px;
    top: 25vh;
  }
}
.section-chess .chess-wrapper .chess-right .hat {
  max-width: 300px;
  top: 15vh;
}
@media screen and (max-width: 768px) {
  .section-chess .chess-wrapper .chess-right .hat {
    max-width: 120px;
  }
}
.section-chess .chess-wrapper .chess-right .glasses {
  z-index: 1;
  top: 35vh;
  left: 24vw;
}
@media screen and (max-width: 768px) {
  .section-chess .chess-wrapper .chess-right .glasses {
    max-width: 150px;
    top: 27vh;
  }
}
.section-chess .chess-wrapper .chess-right .scarf {
  max-width: 400px;
  top: 57vh;
  left: 52%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 1920px) {
  .section-chess .chess-wrapper .chess-right .scarf {
    left: 55%;
    right: auto;
  }
}
@media screen and (max-width: 768px) {
  .section-chess .chess-wrapper .chess-right .scarf {
    max-width: 200px;
    top: 40vh;
  }
}

.btn-image {
  width: 390px;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin: 0 auto;
}
.btn-image:active {
  -webkit-transform: translate(-20px, 20px) scale(0.98);
          transform: translate(-20px, 20px) scale(0.98);
}
.btn-image img {
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  will-change: opacity, visibility;
}
.btn-image img.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: visible;
  opacity: 1;
}
.btn-image img:not(:first-of-type) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.btn-image .before_clicked {
  position: relative;
  z-index: 1;
}
.btn-image .before_clicked_hover {
  z-index: 2;
}
.btn-image .after_clicked {
  z-index: 1;
}
.btn-image .after_clicked_hover {
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .btn-image {
    width: 200px;
    height: 60px;
    margin: 150px auto;
  }
}
.btn-image:hover {
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.btn-image:visited {
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.btn-image.clicked {
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.btn-image.clicked:hover {
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  will-change: transforms;
  width: 100%;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.card-list .card-roll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  will-change: transforms;
}
.card-list .branch-top {
  position: absolute;
  left: 0%;
  width: 100%;
  height: 20px;
  position: relative;
  z-index: 1;
  will-change: transforms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.card-list .branch-bottom {
  position: absolute;
  left: 100%;
  width: 100%;
  height: 20px;
  position: relative;
  z-index: 1;
  will-change: transforms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.card-list .card {
  width: 300px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 400px;
  aspect-ratio: 4/5;
  will-change: transforms;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .card-list .card {
    width: 150px;
    height: 200px;
    aspect-ratio: 4/5;
  }
}
.card-list .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transforms;
}

.shared-max-width, .image-only-container, .shared-text-styles, .text-image-container, .text-only-container {
  max-width: 960px;
}

.shared-text-styles, .text-image-container, .text-only-container {
  margin: 20px auto;
  font-family: "RegularPixel", sans-serif;
  color: #fff;
}

.text-only-container {
  text-align: left;
}
.text-only-container .text-container {
  margin: 0 20px;
  text-align: left;
}
.text-only-container .text-container h3 {
  margin-bottom: 25px;
  font-size: 96px;
}
.text-only-container .text-container p {
  font-size: 64px;
}
.text-only-container .text-container .strikethrough {
  text-decoration: line-through;
}
.text-only-container .text-container .twitter-link {
  color: #00acee;
  text-decoration: none;
}
.text-only-container .text-container .twitter-link:hover {
  text-decoration: underline;
}
.text-only-container .text-container .twitter-link:link, .text-only-container .text-container .twitter-link:visited {
  color: #00acee;
}
.text-only-container .text-container .twitter-link .strikethrough {
  text-decoration: line-through;
}

.text-image-container {
  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;
}
.text-image-container.text-left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.text-image-container.text-left .image-container {
  margin-left: 20px;
  margin-right: 20px;
}
.text-image-container.text-left .text-container {
  text-align: right;
}
.text-image-container.text-right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.text-image-container.text-right .image-container {
  margin-right: 20px;
  margin-left: 20px;
}
.text-image-container.text-right .text-container {
  text-align: left;
}
.text-image-container .image-container {
  -webkit-box-flex: 0.6;
      -ms-flex: 0.6;
          flex: 0.6;
  max-width: 50%;
}
.text-image-container .image-container img {
  width: 100%;
  height: auto;
}
.text-image-container .text-container {
  -webkit-box-flex: 0.4;
      -ms-flex: 0.4;
          flex: 0.4;
}
.text-image-container .text-container h3, .text-image-container .text-container p {
  font-family: "RegularPixel", sans-serif;
  color: #fff;
}
.text-image-container .text-container h3 {
  margin-bottom: 25px;
  font-size: 96px;
}
.text-image-container .text-container p {
  font-size: 64px;
}

.image-only-container {
  margin: auto auto;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.image-only-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.image-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 50%;
}

.image-container, .image-only-container {
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(black), color-stop(black), to(transparent)), -webkit-gradient(linear, left top, right top, from(transparent), color-stop(black), color-stop(black), to(transparent));
  -webkit-mask-image: linear-gradient(to bottom, transparent, black var(--vertical-fade), black calc(100% - var(--vertical-fade)), transparent), linear-gradient(to right, transparent, black var(--horizontal-fade), black calc(100% - var(--horizontal-fade)), transparent);
          mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(black), color-stop(black), to(transparent)), -webkit-gradient(linear, left top, right top, from(transparent), color-stop(black), color-stop(black), to(transparent));
          mask-image: linear-gradient(to bottom, transparent, black var(--vertical-fade), black calc(100% - var(--vertical-fade)), transparent), linear-gradient(to right, transparent, black var(--horizontal-fade), black calc(100% - var(--horizontal-fade)), transparent);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-composite: source-in, xor;
          mask-composite: intersect;
  overflow: hidden;
}
.image-container img, .image-only-container img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: auto;
  width: 100%;
}

.image-only-container, .text-image-container .image-container {
  overflow: hidden;
}
.image-only-container img, .text-image-container .image-container img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.image-only-container img, .text-image-container .image-container img {
  --width-formula: calc(100% + var(--left-crop-wide-pct) * 1vw + var(--right-crop-wide-pct) * 1vw);
  --width-formula-dev: calc(100% + (var(--left-crop-wide-pct) * 100% / 100) + (var(--right-crop-wide-pct) * 100% / 100));
  width: var(--width-formula-dev);
  -o-object-position: calc(0% - var(--left-crop-wide-pct) * 1vw);
     object-position: calc(0% - var(--left-crop-wide-pct) * 1vw);
}

@media screen and (max-width: 768px) {
  .image-only-container img, .text-image-container .image-container img {
    --width-formula: calc(100% + var(--left-crop-narrow-pct) * 1vw + var(--right-crop-narrow-pct) * 1vw);
    --width-formula-dev: calc(100% + (var(--left-crop-narrow-pct) * 100% / 100) + (var(--right-crop-narrow-pct) * 100% / 100));
    width: var(--width-formula-dev);
    -o-object-position: calc(0% - var(--left-crop-narrow-pct) * 1vw);
       object-position: calc(0% - var(--left-crop-narrow-pct) * 1vw);
  }
}
@media screen and (max-width: 768px) {
  .text-only-container {
    text-align: center;
  }
  .text-only-container .text-container {
    text-align: center;
  }
  .text-image-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .text-image-container.text-left, .text-image-container.text-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .text-image-container .image-container,
  .text-image-container .text-container {
    max-width: 100%;
    margin-right: 20px;
    margin-left: 20px;
    margin-bottom: 20px;
  }
  .text-image-container .text-container {
    text-align: center;
  }
}
.footer {
  font-size: 20px;
}
.footer .text-only-container .text-container h3 {
  margin-bottom: 25px;
  font-size: 33px;
}
.footer .text-only-container .text-container p {
  font-size: 20px;
}

.logo {
  display: inline-block;
  vertical-align: text-bottom;
  margin-left: 20px;
  margin-right: -10px;
}

.text-only-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (max-width: 768px) {
  .text-only-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}

.no-scroll {
  overflow: hidden;
}
/*# sourceMappingURL=main.css.map */