h1 {
  font-weight: 300 !important;
}

.x8-icon {
  width: 8px;
  height: 8px;
  font-size: 8px;
  margin: 0 8px 0 0;
  -webkit-transition: all 250ms cubic-bezier(0.31, 0.44, 0.445, 1.65);
  transition: all 250ms cubic-bezier(0.31, 0.44, 0.445, 1.65);
}

.x16-icon {
  width: 16px;
  height: 16px;
  font-size: 16px;
  margin: 0 8px 0 0;
  -webkit-transition: all 250ms cubic-bezier(0.31, 0.44, 0.445, 1.65);
  transition: all 250ms cubic-bezier(0.31, 0.44, 0.445, 1.65);
}

.x32-icon {
  width: 32px;
  height: 32px;
  font-size: 32px;
  margin: 0 8px 0 0;
  -webkit-transition: all 250ms cubic-bezier(0.31, 0.44, 0.445, 1.65);
  transition: all 250ms cubic-bezier(0.31, 0.44, 0.445, 1.65);
}

.rotate-180 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 32px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  font-size: 14px;
  font-size: 1.4;
  padding: 0 16px;
  margin: 8px;
  position: relative;
}

.btn-primary {
  color: #ffffff;
  background-color: #4B5174;
  border: solid 1px transparent;
  position: relative;
  background-clip: padding-box;
  cursor: pointer;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

.btn-primary:hover {
  border: solid 1px transparent;
  border-radius: 5px;
  background-clip: padding-box;
  background-color: #787271;
}

.btn-primary::before {
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  margin: -2px;
  background: -webkit-gradient(linear, left bottom, left top, from(#9A7968), to(#FDDD94));
  background: linear-gradient(0deg, #9A7968 0%, #FDDD94 100%);
  z-index: -1;
  border-radius: inherit;
}

.btn-primary .icon {
  fill: #ffffff;
  margin: 0 0 0 8px;
}

.btn-secondary {
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  background-color: #4B5174;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#4B5174));
  background-image: linear-gradient(rgba(255, 255, 255, 0), #4B5174);
  border: none;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}

.btn-secondary:hover {
  background-color: #787271;
}

.btn-secondary .icon {
  fill: #ffffff;
  margin: 0 0 0 8px;
}

.btn-disable {
  position: relative;
  color: #EAEAEF;
  fill: #EAEAEF;
  cursor: not-allowed;
  background-color: #9B9DAB;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#9B9DAB));
  background-image: linear-gradient(rgba(255, 255, 255, 0), #9B9DAB);
  border: solid 1px transparent;
  background-clip: padding-box;
}

.btn-disable::before {
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  margin: -1px;
  background: -webkit-gradient(linear, left top, left bottom, from(#DADADB), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(#DADADB, rgba(255, 255, 255, 0));
  z-index: -1;
  border-radius: inherit;
}

.btn-disable .icon {
  margin: 0 0 0 8px;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
  font-family: "Fira Sans", Verdana, Geneva, Tahoma, sans-serif;
  color: #000000;
  margin: 0;
}

body {
  background-color: #ffffff;
  overflow-x: hidden;
}

.header {
  background-color: #ffffff;
  width: 100%;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-homepage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-homepage .wip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: red;
  font-weight: bold;
}

.header-homepage-links {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  padding: 16px;
}

.header-homepage-links .icon {
  height: 32px;
  fill: #1D1D2E;
}

.header-homepage-links .icon-logo {
  fill: #1D1D2E;
}

.soon {
  width: 100%;
  height: calc(100vh - 160px);
  margin: 0 16px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.soon-grid {
  width: 100%;
  display: -ms-grid;
  display: grid;
  gap: 16px;
  padding: 16px;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
  position: relative;
  overflow: hidden;
}

.soon-grid::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
}

.soon-grid-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
}

.soon-grid-item-img {
  width: 100%;
  border-radius: 8px;
}

.soon-content {
  z-index: 1;
  padding: 32px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: calc(50% - 284px);
  left: calc(50% - 300px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 8px;
  background: transparent linear-gradient(178deg, #4A5173 0%, #343A53 100%) 0% 0% no-repeat padding-box;
  -webkit-box-shadow: 0px 5px 30px rgba(52, 58, 83, 0.3);
          box-shadow: 0px 5px 30px rgba(52, 58, 83, 0.3);
}

.soon-content-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.soon-content-logo .icon {
  margin: auto;
  width: 500px;
  height: 70px;
  fill: #ffffff;
}

.soon-content-separator {
  width: 100%;
  height: 1px;
  background-color: #4d4d65;
  margin: 16px 0;
}

.soon-content-title {
  margin: 0;
  font-family: "Cormorant Garamond", Verdana, serif;
  letter-spacing: 0.05em;
  line-height: 1.4em;
  color: #FDDD94;
  font-size: 40px;
  font-size: 4;
  font-weight: 300 !important;
  font-variant: normal !important;
  text-transform: none !important;
  font-smoothing: antialiased;
  speak: none;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  font-weight: 300;
  text-align: center;
}

.soon-content-title-h1 {
  margin: 24px 0;
}

.soon-content-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
}

.soon-content-button-item {
  position: relative;
  background-color: #b8B9D0;
  border: solid 1px #FAFAFC;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 32px;
}

.soon-content-button-item-title {
  color: #343A53;
  font-family: "Fira Sans", Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 800;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.soon-content-button-item-preview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.soon-content-button-item-preview-img {
  position: relative;
}

.soon-content-button-item-preview-img-picture {
  height: 86px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  margin-top: 16px;
}

.soon-content-button-item-preview-img-tag {
  position: absolute;
  bottom: 0;
  right: -16px;
  height: 18px;
  border-radius: 10px;
  background-color: #ffffff;
  font-size: 12px;
  color: #222738;
  font-family: "Fira Sans", Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 800;
  line-height: 1rem;
  padding: 0 8px;
}

.soon-content-button-primary {
  z-index: 6;
  position: absolute;
}

.soon-content-button-primary-link {
  padding: 8px 16px;
  font-size: 18px;
  line-height: 1.8em;
  color: #ffffff;
  text-decoration: none;
  font-family: "Fira Sans", Verdana, Geneva, Tahoma, sans-serif;
}

.soon-content-fogofwar {
  width: 54%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  -webkit-filter: invert(0.8);
          filter: invert(0.8);
  opacity: 0.20;
  -webkit-transform: rotateY(180deg) translateX(140px) translateY(-10px);
          transform: rotateY(180deg) translateX(140px) translateY(-10px);
}

.footer {
  background-color: #ffffff;
  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;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 8px;
  height: 64px;
}

.footer-copyright {
  bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  color: #a4a4ae;
  font-size: 13px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 100%;
}

.footer-copyright-links {
  width: 80%;
  padding-right: 16px;
}

.footer-copyright-g2g-svg {
  width: 128px;
  fill: #1D1D2E;
}

@media (max-width: 960px) {
  .soon-grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
  .soon-content-logo .icon {
    width: 100%;
  }
}

@media screen and (min-width: 520px) and (max-width: 652px) {
  .soon {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .soon-grid {
    height: 100%;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .soon-content {
    top: calc(50% - 269px);
    left: calc(50% - 255px);
  }
  .soon-content-title {
    font-size: 50px;
    font-size: 6.5vw;
  }
}

@media (max-width: 519px) {
  .soon {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: auto;
  }
  .soon-grid {
    display: none;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .soon-content {
    width: 95%;
    margin: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: unset;
    top: 0;
    left: 0;
  }
  .soon-content-logo .icon {
    width: 100%;
  }
  .soon-content-title {
    line-height: 50pt;
  }
  .soon-content-title-h1 {
    text-align: center;
    margin: 0;
    font-size: 60pt;
  }
  .soon-content-button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .soon-content-button-secondary, .soon-content-button-primary {
    width: 80%;
    left: 10%;
  }
  .soon-content-button-primary-link {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 32px);
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .soon-content-network {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .soon-content-network-g2g, .soon-content-network-social {
    width: 100%;
  }
  .soon-content-network-g2g {
    margin-bottom: 16px;
  }
  .footer {
    margin-top: 16px;
  }
  .footer-copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 95%;
  }
  .footer-copyright-links, .footer-copyright-g2g {
    width: 100%;
  }
  .footer-copyright-g2g {
    text-align: right;
  }
}
/*# sourceMappingURL=style.css.map */