/* these are predefined for SASS */
/* .these are predefined for SASS */
/* general styling body buttons headings */
html {
  opacity: 0;
  transition: opacity 1s ease-in;
}

html.loading {
  opacity: 0;
}

html.visible {
  opacity: 1;
}

body {
  font: 18px "Titillium Web", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background-color: #fff;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a, button, input {
  transition: all 0.3s ease, transform 0.3s ease;
}

a.aLink {
  cursor: pointer;
}

button {
  cursor: pointer;
}
button:hover {
  opacity: 0.8;
}

a > img {
  transition: all 0.5s linear;
}
a > img:hover {
  opacity: 0.8;
}

a:has(img):after {
  height: 0 !important;
}

h1, h2, h3 {
  font-size: 2.85em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 30px;
  line-height: 1;
  margin-top: 10px;
}

h4 {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.container {
  max-width: 93%;
  margin: auto;
  word-break: break-word;
  overflow-wrap: break-word;
}

input, textarea {
  border: none;
  font-family: "Titillium Web", sans-serif;
  font-size: 1.1em;
}
input:focus, textarea:focus {
  outline: none;
}

button {
  font-family: "Titillium Web", sans-serif;
}

/* .general styling body buttons headings containers */
/* former svi.css - I do not where to use it for... but saved it just in case -) */
sv-icon {
  height: 1em;
  display: inline-flex;
  align-self: center;
}
sv-icon svg {
  height: inherit;
  top: 0.125em;
  position: relative;
  stroke: currentColor;
  fill: currentColor;
  stroke-width: 0.5;
}

/* .former svi.css*/
/* former index.css */
.show {
  display: block !important;
}

.hide {
  display: none;
}

/* .former index.css */
/* for animations */
.slideInUp {
  opacity: 0;
  transform: translateY(300px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slideInUp.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUpIcon {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDownIcon {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(100px);
  }
}
@-webkit-keyframes fadeInAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOutAnim {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOutAnim {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* .for animations */
/* header */
header .elDesktopMenu {
  padding: 30px 0;
}
header .container {
  display: flex;
  align-items: center;
}
header .container .logo {
  background: url("../img/logoEarthlingsSmall.webp") no-repeat;
  width: 168px;
  height: 51px;
  margin-right: 80px;
  cursor: pointer;
}
header .container .idMobileMenu ul {
  list-style: none;
  margin: auto;
  display: flex;
  max-width: fit-content;
  gap: 20px;
}
header .container .idMobileMenu ul li a {
  position: relative;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}
header .container .idMobileMenu ul li a:after {
  position: relative;
  background-color: #000;
  content: "";
  display: block;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  height: 2px;
  width: 0;
  top: auto;
  bottom: -2px;
  left: 0;
}
header .container .idMobileMenu ul li a:hover:after {
  width: 100%;
}
header .container .elControls {
  margin-left: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}
header .container .elControls .hashconnect {
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}
header .container .elControls .elHashPackInfo {
  display: none;
}
header .container .elControls .elHashPackInfo.show {
  display: block;
}
header .container .elControls #lblDisconnect {
  position: absolute;
  top: 80px;
  right: 122px;
  background: #fff;
  padding: 4px 20px;
  border: 1px solid #000;
  color: #000;
  cursor: pointer;
  display: none;
}
header .container .elControls #lblDisconnect.show {
  display: block;
}
header .container .elControls #hbarBalance {
  display: flex;
  gap: 10px;
  cursor: pointer;
}
header .container .elControls #hbarBalance label {
  text-align: right;
  position: relative;
  line-height: 18px;
  top: 3px;
  cursor: pointer;
}
header .container .elControls #hbarBalance sv-icon {
  font-size: 1.8em;
  position: relative;
  top: -2px;
  cursor: pointer;
}
header .container .menu {
  background: url("../img/mobileBlocks.webp") no-repeat;
  width: 32px;
  height: 32px;
  appearance: none;
  cursor: pointer;
  border: none;
  margin-left: auto;
}

.elDesktopMenu.scrollActive {
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.05);
  width: 100%;
  z-index: 11;
  background-color: #fff;
  opacity: 0;
  transform: translateY(-111px);
}

.elDesktopMenu.scrollActiveUp {
  position: fixed;
  animation: slideDown 1s forwards;
}

.elMenuDesktopFlyOut {
  position: fixed;
  width: 399px;
  z-index: 10001;
  background-color: #f7f7f7;
  right: 0;
  top: 0;
  height: 100%;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
  padding: 55px 35px 40px;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.03);
  opacity: 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: space-between;
}

.elMenuDesktopFlyOut.elOpened {
  opacity: 1;
  transform: translateX(0);
}

.elMobileMenu {
  display: none;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.05);
  padding: 10px 0;
  position: fixed;
  width: 100%;
  background-color: #fff;
}

.elLogoPlace {
  display: flex;
  align-items: center;
}
.elLogoPlace a {
  margin-left: auto;
}

.elFlyOutClose {
  border: solid 10px #fff;
  width: 35px;
  height: 35px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
}
.elFlyOutClose:before, .elFlyOutClose:after {
  background-color: #000;
}

.elMobileMenuClose {
  color: #9f9fa8;
  width: 25px;
  height: 25px;
}
.elMobileMenuClose:before, .elMobileMenuClose:after {
  background-color: #fff;
}
.elMobileMenuClose span {
  position: absolute;
  right: 45px;
  top: 0;
}

.elFlyOutClose,
.elMobileMenuClose {
  position: relative;
  display: block;
}
.elFlyOutClose:before, .elFlyOutClose:after,
.elMobileMenuClose:before,
.elMobileMenuClose:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform-origin: center;
  transition: transform 0.5s ease;
}
.elFlyOutClose:before,
.elMobileMenuClose:before {
  transform: rotate(45deg);
}
.elFlyOutClose:after,
.elMobileMenuClose:after {
  transform: rotate(-45deg);
}
.elFlyOutClose:hover:before,
.elMobileMenuClose:hover:before {
  transform: rotate(135deg);
}
.elFlyOutClose:hover:after,
.elMobileMenuClose:hover:after {
  transform: rotate(45deg);
}

ul.elSocialIconsUl {
  list-style: none;
}
ul.elSocialIconsUl li {
  width: 51px;
  margin: 40px 0;
  background-repeat: no-repeat;
  cursor: pointer;
  background-size: 40%;
  padding-left: 40px;
  line-height: 1;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
ul.elSocialIconsUl li:hover {
  opacity: 0.6;
}
ul.elSocialIconsUl li.discord {
  background-image: url("/img/socials/discord.webp");
}
ul.elSocialIconsUl li.x {
  background-image: url("/img/socials/x.webp");
}
ul.elSocialIconsUl li.telegram {
  background-image: url("/img/socials/telegram.webp");
}
ul.elSocialIconsUl li.youtube {
  background-image: url("/img/socials/youTube.webp");
}
ul.elSocialIconsUl a {
  color: #0b0b10;
  text-decoration: none;
  font-weight: 600;
}

.elSocialIconsMobile {
  border-top: solid 1px #d8d8d8;
  visibility: hidden;
  animation-delay: 0.6s;
}
.elSocialIconsMobile ul.elSocialIconsUl {
  display: flex;
}
.elSocialIconsMobile ul.elSocialIconsUl li.discord {
  background-image: url("/img/socials/discordWhite.webp");
}
.elSocialIconsMobile ul.elSocialIconsUl li.x {
  background-image: url("/img/socials/xWhite.webp");
}
.elSocialIconsMobile ul.elSocialIconsUl li.telegram {
  background-image: url("/img/socials/telegramWhite.webp");
}
.elSocialIconsMobile ul.elSocialIconsUl li.youtube {
  background-image: url("/img/socials/youTubeWhite.webp");
}

.elFooterFlyOut {
  border-top: solid 1px #d8d8d8;
  padding-top: 40px;
}
.elFooterFlyOut a {
  color: #000;
  text-decoration: none;
}

.elMobileMenuContainer {
  background-color: #14141b;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  will-change: height;
  -webkit-transition: all 0.45s cubic-bezier(0.5, 1, 0.89, 1);
  -o-transition: all 0.45s cubic-bezier(0.5, 1, 0.89, 1);
  transition: all 0.45s cubic-bezier(0.5, 1, 0.89, 1);
  opacity: 0;
}
.elMobileMenuContainer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
}

.logoWhite {
  background: url("/img/logoEarthlingsSmallWhite.webp") no-repeat;
  width: 168px;
  height: 51px;
  opacity: 0;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  animation-delay: 0.5s;
}

.elNavMobile nav ul {
  list-style: none;
}
.elNavMobile nav ul li {
  animation-delay: 0.5s;
  visibility: hidden;
}
.elNavMobile nav ul li a {
  color: #d6d6de;
  font-size: 30px;
  text-decoration: none;
  position: relative;
}
.elNavMobile nav ul li a:hover {
  color: #fff;
}
.elNavMobile nav ul li a:after {
  content: url("/img/mobileMenuArrow.webp");
  position: absolute;
  right: -40px;
  top: -4px;
}
.elNavMobile nav ul li:nth-child(2) {
  animation-delay: 0.6s !important;
}
.elNavMobile nav ul li:nth-child(3) {
  animation-delay: 0.7s !important;
}
.elNavMobile nav ul li:nth-child(4) {
  animation-delay: 0.8s !important;
}
.elNavMobile nav ul li:nth-child(5) {
  animation-delay: 0.9s !important;
}
.elNavMobile nav ul li:nth-child(6) {
  animation-delay: 1s !important;
}
.elNavMobile nav ul li:nth-child(7) {
  animation-delay: 1.1s !important;
}

.elMobileMenuHeaderWrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 1;
}
.elMobileMenuHeaderWrap a {
  margin-left: auto;
}

.elExtraInfo {
  visibility: hidden;
  animation-delay: 0.5s;
  position: fixed;
  color: #d6d6de;
  top: 0;
  right: 0;
  width: 40%;
  background-color: #0f0f12;
  padding: 80px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.elExtraInfo h6 {
  text-transform: uppercase;
  font-size: 0.9em;
  font-weight: 500;
}
.elExtraInfo a {
  color: #d6d6de;
  font-size: 1.1em;
  margin-top: 0.4em;
  display: inline-block;
  text-decoration: none;
  position: relative;
}
.elExtraInfo a:after {
  position: absolute;
  top: -2px;
  right: -40px;
  content: url("../../img/extraInfoArrow.webp");
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.elExtraInfo a:hover:after {
  right: -50px;
}
.elExtraInfo a[href*=mailto]:after {
  position: relative;
  background-color: #fff;
  content: "";
  display: block;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  height: 1px;
  width: 100%;
  top: auto;
  bottom: -2px;
  left: 0;
}
.elExtraInfo a[href*=mailto]:hover:after {
  width: 0;
}
.elExtraInfo div {
  visibility: hidden;
  animation-delay: 1.2s !important;
}
.elExtraInfo div:nth-child(2), .elExtraInfo div:nth-child(3) {
  margin-top: 2.5em;
}
.elExtraInfo div:nth-child(2) {
  animation-delay: 1.3s !important;
}
.elExtraInfo div:nth-child(3) {
  animation-delay: 1.4s !important;
}

.elMobileMenuContainer.elMMCOpened {
  animation-name: fadeInAnim;
  animation-duration: 0.6s;
  animation-fill-mode: both;
  visibility: visible;
}

.elMMCOpened {
  position: fixed;
  z-index: 1000002;
  height: 100%;
  opacity: 1;
  padding: 30px 0;
}
.elMMCOpened .logoWhite {
  animation-name: fadeInAnim;
  animation-duration: 0.6s;
  animation-fill-mode: both;
  visibility: visible;
}
.elMMCOpened .elNavMobile nav ul li {
  animation-delay: 0.5s;
  animation-name: fadeInAnim;
  animation-duration: 0.6s;
  animation-fill-mode: both;
  visibility: visible;
}
.elMMCOpened .elSocialIconsMobile,
.elMMCOpened .elExtraInfo,
.elMMCOpened .elExtraInfo div {
  animation-name: fadeInAnim;
  animation-duration: 0.6s;
  animation-fill-mode: both;
  visibility: visible;
}
.elMMCOpened .elSocialIconsMobile {
  width: 50%;
}

/* .header */
/* main homePage */
.elSection,
.elNoFlexSection,
.elBankingDashboard .container {
  width: 79%;
  margin: auto;
  padding: 60px 0;
}
.elSection a,
.elNoFlexSection a,
.elBankingDashboard .container a {
  position: relative;
  color: #000;
  text-decoration: none;
}
.elSection a:after,
.elNoFlexSection a:after,
.elBankingDashboard .container a:after {
  position: absolute;
  content: "";
  background-color: #000;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  height: 1px;
  width: 100%;
  top: auto;
  left: 0;
  bottom: 4px;
  display: block;
}
.elSection a:hover:after,
.elNoFlexSection a:hover:after,
.elBankingDashboard .container a:hover:after {
  width: 0;
}

.elNextPageSection {
  padding: 10px 0;
}
.elNextPageSection p {
  margin-bottom: 40px;
}

.elBannerContainer {
  position: relative;
}

.elBanner h3 {
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  font-size: 60px;
}
.elBanner .elCrslCell {
  background-size: contain;
  padding: 10% 7%;
  overflow: hidden;
  align-content: space-around;
}

.elBtn {
  border: none;
  background-color: #00ae9d;
  color: #fff;
  text-transform: uppercase;
  padding: 11px 14px;
  font-size: 0.6em;
  margin-bottom: 20px;
  text-decoration: none;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.elBtn:hover {
  opacity: 0.5;
}

.elTextCenter {
  text-align: center;
}
.elTextCenter figure figcaption {
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 10px;
}
.elTextCenter figure:nth-of-type(2) {
  margin-top: 50px;
}
.elTextCenter figure img {
  width: 100%;
  height: auto;
}

/* Green Buttons */
footer .elPreFooter .elContactForm form input[type=submit],
.buttonGradient.buttonLarge {
  background-image: none;
  font-size: 19px;
  width: 111px;
  background-color: #00ae9d;
  border: none;
  color: #fff;
  padding: 7px;
  text-transform: uppercase;
  cursor: pointer;
}
footer .elPreFooter .elContactForm form input[type=submit]:hover,
.buttonGradient.buttonLarge:hover {
  opacity: 0.8;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

/* .Green Buttons */
.elMT30 {
  margin-top: 30px;
}

.discoverEl h1 {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 60px;
}
.discoverEl .elMakeSelection {
  display: flex;
  justify-content: space-between;
  gap: 38px;
}
.discoverEl .elMakeSelection .imgContainer {
  overflow: hidden;
  margin-bottom: 12px;
}
.discoverEl .elMakeSelection .imgContainer img {
  display: block;
}
.discoverEl .elMakeSelection a {
  text-decoration: none;
  color: #000;
  width: 33.33333%;
  cursor: pointer;
}
.discoverEl .elMakeSelection a:hover img {
  -webkit-transform: scale(1.07, 1.07);
  -moz-transform: scale(1.07, 1.07);
  -ms-transform: scale(1.07, 1.07);
  -o-transform: scale(1.07, 1.07);
  transform: scale(1.07, 1.07);
}
.discoverEl .elMakeSelection a:after {
  height: 0;
}
.discoverEl .elMakeSelection figure {
  text-transform: uppercase;
}
.discoverEl .elMakeSelection figure img {
  width: 100%;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: scale(1.01, 1.01);
  -moz-transform: scale(1.01, 1.01);
  -ms-transform: scale(1.01, 1.01);
  -o-transform: scale(1.01, 1.01);
  transform: scale(1.01, 1.01);
}
.discoverEl .elMakeSelection figure figcaption span {
  display: block;
  font-size: 14px;
  font-weight: 400;
}
.discoverEl .elMakeSelection figure figcaption strong {
  font-size: 1.2em;
  line-height: 1.2;
  font-weight: 600;
  display: inline-block;
  margin-top: 8px;
}

.elNoSectionPad {
  padding: 0;
}

.whatIsElSection .elWhatIsTxt,
.elGreySection .elWhatIsTxt {
  min-width: 39%;
}
.whatIsElSection img,
.elGreySection img {
  position: relative;
}

.elGreySection .elSection,
.elWhiteSection .elSection {
  gap: 40px;
}

.whatIsElSection .elSection,
.gameTrailersSection .elSection,
.combiningBestOfBothWorldsSection .elSection,
.elGreySection .elSection,
.elWhiteSection .elSection,
.elCollectionSection .elSection {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.combiningBestOfBothWorldsSection .elBtn {
  margin-top: 30px;
}

.gameTrailersSection .elSection {
  gap: 60px;
}
.gameTrailersSection .elSection .elWhatIsTxt {
  width: 50%;
  flex: 1;
}

.inGameScenerySection .elSection {
  padding: 30px 0;
}
.inGameScenerySection h4 {
  text-align: center;
  margin-bottom: 10px;
}
.inGameScenerySection .dots1 {
  position: relative;
  top: -30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 11;
}
.inGameScenerySection .dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  background-color: #fff;
  transition: background-color 0.2s ease;
  opacity: 0.5;
}
.inGameScenerySection .dot.active {
  opacity: 1;
}

/* Carousel */
.elGoRound,
.elBanner {
  background-color: #000;
  position: relative;
  width: 100%;
  height: fit-content;
  overflow: hidden;
}
.elGoRound img, .elGoRound div,
.elBanner img,
.elBanner div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.elGoRound img.active,
.elGoRound div.active,
.elGoRound div.active img,
.elBanner img.active,
.elBanner div.active,
.elBanner div.active img {
  opacity: 1;
  display: block;
}
.elGoRound img,
.elBanner img {
  z-index: 1;
  object-fit: cover;
}
.elGoRound *,
.elBanner * {
  position: relative;
  z-index: 2;
}

.elGoRound img {
  zoom: 1;
  animation: slow-zoom 20s infinite linear;
}

.thumbDots {
  position: absolute;
  bottom: 20px;
  display: flex;
  align-items: center;
  z-index: 2;
  gap: 20px;
  padding: 0 7%;
  max-height: 160px;
  width: 100%;
}
.thumbDots .dot {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.231372549);
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  max-height: 160px;
  display: flex;
  align-items: center;
  max-width: 33%;
  flex-grow: 1;
}
.thumbDots .dot div,
.thumbDots .dot span {
  display: block;
  font-weight: 300;
  font-size: 14px;
}
.thumbDots .dot span {
  margin-bottom: 10px;
}
.thumbDots .dot strong {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  display: block;
}
.thumbDots img {
  width: 120px;
  height: auto;
  float: left;
  margin-right: 20px;
}

.justDots {
  position: absolute;
  color: #fff;
  right: 50px;
  top: 100px;
  z-index: 111;
}
.justDots .dot {
  margin-bottom: 10px;
  cursor: pointer;
}
.justDots .dot.active {
  border-bottom: solid 2px #fff;
}

.elCrslCell img {
  animation: slow-zoom 20s infinite linear;
}

.elWhoIsWho {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 345px;
}
.elWhoIsWho .elWhoIsWhoSlide {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: fit-content;
  gap: 26px;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.elWhoIsWho .elWhoIsWhoSlide.active {
  opacity: 1;
}

.elWhoIsWhoSlide {
  text-transform: uppercase;
}
.elWhoIsWhoSlide h5 {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 10px;
}
.elWhoIsWhoSlide h5,
.elWhoIsWhoSlide span {
  line-height: 1.2;
}
.elWhoIsWhoSlide span {
  font-size: 0.8em;
  font-weight: 100;
  display: block;
}
.elWhoIsWhoSlide img {
  max-width: 100%;
  object-fit: contain;
  min-height: 250px;
}

.elWhoIsWhoContainer {
  position: relative;
}

.elNavForWhoIsWho {
  position: absolute;
  display: flex;
  align-items: center;
}
.elNavForWhoIsWho .elNavPrev {
  background-image: url("../img/elArrowPrev.webp");
  left: -44px;
}
.elNavForWhoIsWho .elNavNext {
  background-image: url("../img/elArrowNext.webp");
  right: -44px;
}
.elNavForWhoIsWho .elNavPrev,
.elNavForWhoIsWho .elNavNext {
  position: absolute;
  background-repeat: no-repeat;
  display: block;
  width: 22px;
  height: 43px;
  cursor: pointer;
}

@keyframes slow-zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
/* .Carousel */
.whatIsElSection,
.peopleBehindSection,
.elGreySection {
  background-color: #f7f7f7;
}

.weAreElSection {
  text-align: center;
}
.weAreElSection .iconsWeAre {
  display: flex;
  align-items: center;
  gap: 120px;
  margin-bottom: 95px;
}
.weAreElSection .iconsWeAre strong {
  text-transform: uppercase;
  font-size: 1.4em;
}
.weAreElSection .iconsWeAre img {
  margin-bottom: 75px;
}
.weAreElSection .iconsWeAre p {
  margin-bottom: 60px;
}
.weAreElSection .iconsWeAre a {
  text-decoration: underline;
  color: #000;
}
.weAreElSection .iconsWeAre a:hover {
  text-decoration: none;
}
.weAreElSection h3 {
  margin-bottom: 60px;
}
.weAreElSection .weAreEarthlings img {
  width: 100%;
  height: auto;
}

.elGreySection .elSection .elWhatIsTxt ul,
.elWhiteSection .elSection .elWhatIsTxt ul {
  margin: 22px;
  list-style: square;
}

/* main homePage */
/* Collection Page */
.elCollectionSection .elSection {
  gap: 40px;
  align-items: flex-start;
  padding: 20px 0;
}
.elCollectionSection .elSection figure {
  flex: 1;
  position: relative;
  max-height: 458px;
}
.elCollectionSection .elSection figure a {
  display: block;
}
.elCollectionSection .elSection figure figcaption {
  position: absolute;
  left: 20px;
  bottom: 12px;
  color: #fff;
  width: 220px;
}
.elCollectionSection .elSection figure figcaption h2 {
  font-size: 1em;
  font-weight: 100;
  margin-bottom: 10px;
}
.elCollectionSection .elSection figure figcaption strong {
  display: block;
  text-transform: uppercase;
  font-size: 1.3em;
  line-height: 1.1;
}
.elCollectionSection .elSection figure .imgContainer {
  overflow: hidden;
}
.elCollectionSection .elSection figure .imgContainer img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: scale(1.01, 1.01);
  -moz-transform: scale(1.01, 1.01);
  -ms-transform: scale(1.01, 1.01);
  -o-transform: scale(1.01, 1.01);
  transform: scale(1.01, 1.01);
}
.elCollectionSection .elSection figure a:hover .imgContainer img {
  -webkit-transform: scale(1.07, 1.07);
  -moz-transform: scale(1.07, 1.07);
  -ms-transform: scale(1.07, 1.07);
  -o-transform: scale(1.07, 1.07);
  transform: scale(1.07, 1.07);
}
.elCollectionSection .elSection figure a:after {
  height: 0;
}

.elModal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.elModal button {
  margin: 10px;
  padding: 10px 20px;
}

.elModalContent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
}

/* .Collection Page */
/* Team Page */
.elTeamSection {
  background-color: #f7f7f7;
}
.elTeamSection .elSection .elWhoIsWhoSlide {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 50px;
}
.elTeamSection .elSection .elWhoIsWhoSlide section {
  width: 100%;
}

/* .Team Page */
/* Steam Page */
.elMainSteam .elSection p i {
  display: inline-block;
  margin: 20px 0;
}

.elChromeHashPack {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 30px 0 40px 0;
}
.elChromeHashPack img {
  max-width: 160px;
}

.elMorePaymentInfo {
  max-width: 60%;
  margin: 0 auto;
}
.elMorePaymentInfo ul {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.elMorePaymentInfo ul li {
  background-color: #00ae9d;
  text-transform: uppercase;
  flex: 1 1 calc(50% - 20px);
  padding: 15px 0;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.elMorePaymentInfo ul li:hover {
  opacity: 0.7;
}
.elMorePaymentInfo ul li a {
  display: block;
  color: #fff;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.elMorePaymentInfo ul li a:after {
  content: none;
}
.elMorePaymentInfo ul li a:hover {
  opacity: 0.7;
}

.weAreEarthlings img {
  max-width: 100%;
}

/* .Steam Page */
/* BankingDashboard */
.elBankingDashboard .container section {
  text-align: center;
}
.elBankingDashboard .container section h1, .elBankingDashboard .container section h2, .elBankingDashboard .container section h3 {
  font-size: 30px;
}
.elBankingDashboard .container section .elBody {
  display: grid;
  grid-template-columns: 4fr repeat(4, 5fr);
  column-gap: 10px;
  align-items: center;
}
.elBankingDashboard .container section .elBody .kpi,
.elBankingDashboard .container section .elBody .nft {
  border-left: 1px solid darkgray;
  display: grid;
  place-items: center;
}
.elBankingDashboard .container section .elBody .kpi label b,
.elBankingDashboard .container section .elBody .nft label b {
  font-weight: 700;
}
.elBankingDashboard .container section .elBody .kpi strong,
.elBankingDashboard .container section .elBody .nft strong {
  font-size: 1.5em;
}
.elBankingDashboard .container section .elBody .kpi p,
.elBankingDashboard .container section .elBody .nft p {
  font-size: 15px;
  padding: 20px;
}
.elBankingDashboard .container section .elBody .kpi {
  grid-template-rows: 32px 60px 65px;
}
.elBankingDashboard .container section .elBody .nft {
  grid-template-rows: 50px 210px 25px;
}
.elBankingDashboard .container section .elBody .nft img {
  width: 130px;
}

.elBankingDashboardRegistration {
  padding-top: 10px;
}
.elBankingDashboardRegistration .container {
  padding: 0;
}
.elBankingDashboardRegistration .container section .elBody {
  display: block;
}
.elBankingDashboardRegistration .container section .elBody label {
  font-size: 13px;
}
.elBankingDashboardRegistration .container section .elBody .elHeader {
  margin: 45px auto 30px auto;
  font-weight: 700;
  font-size: 1.9em;
  line-height: 1.1em;
}
.elBankingDashboardRegistration .container section .elBody .elBlack {
  width: 300px;
  height: 40px;
  color: #fff;
  background-color: #000;
  border: none;
  outline: none;
  padding: 5px;
  cursor: pointer;
  transition: all 0.5s linear;
  font-size: 1.2em;
  font-weight: 700;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.elBankingDashboardRegistration .container section .elBody .elBlack:hover {
  opacity: 0.8;
}
.elBankingDashboardRegistration .container section .elBody p {
  margin: 0 0 50px 0;
}
.elBankingDashboardRegistration .container section .elBody #btnHistory {
  margin-bottom: 15px;
}
.elBankingDashboardRegistration .container section .elBody #btnRegisterFactsheet {
  margin-bottom: 40px;
}
.elBankingDashboardRegistration .container section input {
  width: 500px;
  height: 50px;
  border: 1.6px solid #000;
  outline: none;
  font-size: 1.3em;
  text-align: center;
  margin: 0 auto 30px auto;
}
.elBankingDashboardRegistration .container section .buttonLarge {
  border: none;
  padding: 8px 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.2em;
  cursor: pointer;
}

#imgLoading {
  display: none;
  width: 80px;
  height: 80px;
  margin: 50px auto auto auto;
}

#divHistory {
  display: none;
}

.elBankingDashboardTransactionHistory {
  text-align: center;
}
.elBankingDashboardTransactionHistory #divTable {
  width: min(800px, 90vw);
  margin: auto;
}
.elBankingDashboardTransactionHistory #tblHistory {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 40px;
}
.elBankingDashboardTransactionHistory #tblHistory tr {
  cursor: pointer;
}
.elBankingDashboardTransactionHistory #tblHistory td,
.elBankingDashboardTransactionHistory #tblHistory th {
  border: 1px solid #ddd;
  padding: 8px;
}
.elBankingDashboardTransactionHistory #tblHistory .tdDetail {
  text-align: center;
}
.elBankingDashboardTransactionHistory #tblHistory tr:nth-child(even) {
  background-color: #f2f2f2;
}
.elBankingDashboardTransactionHistory #tblHistory tr:hover {
  background-color: #ddd;
}
.elBankingDashboardTransactionHistory #tblHistory th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: black;
  color: white;
}
.elBankingDashboardTransactionHistory #lblBack {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.2em;
  line-height: 2em;
  cursor: pointer;
}

@media all and (max-width: 1200px) {
  .elBankingDashboard .container section .elBody {
    grid-template-columns: 1fr;
    row-gap: 2em;
    border: 1px solid gray;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    background-color: whitesmoke;
    margin-block: 32px;
    padding: 16px;
  }
  .elBankingDashboard .container section .elBody .kpi,
  .elBankingDashboard .container section .elBody .nft {
    border-left: none;
    border-bottom: 1px solid lightgray;
    padding: 16px;
  }
  .elBankingDashboardRegistration .container section .elBody {
    border: none;
    background-color: #fff;
  }
  .elBankingDashboardRegistration .container section input {
    width: 300px;
  }
}
/* .BankingDashboard */
/* Fcsteam */
.elSectionFcsteam p {
  margin: 20px 0;
}

/* .Fcsteam */
.elIframeWrapper {
  position: relative;
  width: 50%;
  max-width: 800px;
  padding-top: 28.25%;
}
.elIframeWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* phSteam */
#tbInputs {
  display: block;
  margin-bottom: 24px;
  margin-inline: auto;
}
#tbInputs #tbSteam,
#tbInputs #tbDecimals {
  height: 32px;
  padding-left: 10px;
  border-radius: 4px;
  outline: none;
}
#tbInputs #tbSteam {
  width: 100px;
}
#tbInputs #lblComma {
  font-size: 3em;
  position: relative;
  top: 10px;
}
#tbInputs #tbDecimals {
  width: 32px;
  margin-right: 10px;
}
#tbInputs #lblGetMax {
  text-decoration: underline;
  color: navy;
  cursor: pointer;
}
#tbInputs #lblError {
  display: block;
  font-weight: bold;
  color: red;
  margin-top: 16px;
}

/* .phSteam */
/* Footer */
footer .elPreFooter {
  display: flex;
  gap: 80px;
}
footer .elPreFooter .elContactUs p {
  margin-bottom: 20px;
}
footer .elPreFooter .elLocation {
  background: url("../img/elIcons.webp") 0 -520px no-repeat;
  padding-left: 30px;
}
footer .elPreFooter .elLocation strong {
  display: block;
}
footer .elPreFooter .col:first-of-type {
  flex: 1;
  min-width: 260px;
}
footer .elPreFooter .col:nth-of-type(2) {
  flex: 3;
  position: relative;
  top: 33px;
}
footer .elPreFooter .elContactForm form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer .elPreFooter .elContactForm form label {
  flex: 1 1 calc(50% - 16px);
}
footer .elPreFooter .elContactForm form label[for=idContactorMessage] {
  flex: 1 1 100%;
}
footer .elPreFooter .elContactForm form input, footer .elPreFooter .elContactForm form textarea {
  width: 100%;
  border-bottom: solid 1px #a0a0a0;
  background-image: url("../img/elIcons.webp");
  background-repeat: no-repeat;
  background-position-x: 3px;
  padding: 5px 45px;
}
footer .elPreFooter .elContactForm form input::placeholder, footer .elPreFooter .elContactForm form textarea::placeholder {
  color: #a0a0a0;
}
footer .elPreFooter .elContactForm form input::-ms-input-placeholder, footer .elPreFooter .elContactForm form textarea::-ms-input-placeholder {
  color: #a0a0a0;
}
footer .elPreFooter .elContactForm form input:-ms-input-placeholder, footer .elPreFooter .elContactForm form textarea:-ms-input-placeholder {
  color: #a0a0a0;
}
footer .elPreFooter .elContactForm form input:focus, footer .elPreFooter .elContactForm form textarea:focus {
  border-bottom-color: #fff;
}
footer .elPreFooter .elContactForm form input[name=name] {
  background-position-y: 5px;
}
footer .elPreFooter .elContactForm form input[name=email] {
  background-position-y: -65px;
}
footer .elPreFooter .elContactForm form input[name=company] {
  background-position-y: -136px;
}
footer .elPreFooter .elContactForm form input[name=subject] {
  background-position-y: -207px;
}
footer .elPreFooter .elContactForm form textarea {
  background-position-y: -276px;
  height: 100px;
  resize: none;
}
footer .elFooter {
  background: #14141c;
  color: #fff;
}
footer .elFooter a {
  color: #fff;
}
footer .elFooter a:after {
  background-color: #fff;
}
footer .elFooter .elSection {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
footer .elFooter .elSection .elCol:nth-of-type(1) {
  flex: 2;
}
footer .elFooter .elSection .elCol:nth-of-type(2) {
  flex: 3;
  display: flex;
  gap: 125px;
}
footer .elFooter .elSection .elCol:nth-of-type(2) a:after {
  height: 0;
}
footer .elFooter .elSection .elCol:nth-of-type(2) .elSubCol:nth-of-type(3) ul {
  margin-top: 30px;
}
footer .elFooter .elSection .elCol strong {
  display: block;
}
footer .elFooter .elSection .elCol ul {
  list-style: none;
}
footer .elFooter .elSection .elCol h4 {
  margin-bottom: 30px;
}
footer .elFooter .newsLetterForm input[type=email] {
  background-color: transparent;
  width: 100%;
  min-width: 250px;
  max-width: 320px;
  border: none;
  font-family: "Titillium Web", sans-serif;
  border-bottom: solid 1px #a0a0a0;
  margin-bottom: 60px;
  color: #fff;
}
footer .elFooter .newsLetterForm input[type=email]:focus {
  outline: none;
}
footer .elFooter .newsLetterForm label[for=tbUpToDate] {
  position: relative;
}
footer .elFooter .newsLetterForm .elEmailBtn {
  position: absolute;
  top: -3px;
  right: 2px;
  background: url("../img/elBtnInputSearch.webp") no-repeat;
  width: 25px;
  height: 25px;
  border: none;
  cursor: pointer;
}
footer .elDisclaimer {
  font-size: 10px;
}
footer .elDisclaimer strong {
  text-transform: uppercase;
}

.invalid {
  border-color: red !important;
}
.invalid .elDisclaimer {
  font-size: 0.7em;
  text-align: justify;
}

a.scrollTop {
  display: block;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #000 url("../img/elArrowUp.webp") no-repeat 6px 2px;
  width: 18px;
  height: 19px;
  z-index: 1;
  padding: 15px;
  opacity: 0;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  transform: translateY(100px);
  animation: slideDownIcon 1s forwards;
  -webkit-transition: all 1s linear;
  -o-transition: all 1s linear;
  transition: all 1s linear;
}
a.scrollTop:hover {
  background-color: #00ae9d;
}

a.scrollTop.slideInUp {
  animation: slideUpIcon 1s forwards;
}

/* .Footer */
/* Responsive */
@media all and (min-width: 1500px) {
  .elWhoIsWho .elWhoIsWhoSlide {
    justify-content: space-between;
  }
}
@media all and (max-width: 1400px) {
  .thumbDots {
    display: none;
  }
}
@media all and (max-width: 1280px) {
  .elSection,
  .elNoFlexSection {
    width: 95%;
  }
}
@media all and (max-width: 1225px) {
  .elGreySection figure,
  .elWhiteSection figure {
    margin-top: 40px;
  }
}
@media all and (min-width: 1001px) {
  .discoverEl .elMakeSelection a {
    width: 100%;
  }
  .elGreySection .elSection,
  .elWhiteSection .elSection {
    gap: 40px;
  }
  .elGreySection .elSection .elWhatIsTxt,
  .elWhiteSection .elSection .elWhatIsTxt {
    flex: 1;
    width: 50%;
  }
  .elGreySection .elSection figure,
  .elWhiteSection .elSection figure {
    flex: 1;
    width: 50%;
  }
  .elGreySection .elSection img,
  .elWhiteSection .elSection img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}
@media all and (max-width: 1199px) {
  .discoverEl .elMakeSelection figure figcaption strong {
    font-size: 1em;
  }
  .elWhoIsWho .elWhoIsWhoSlide {
    gap: 2%;
  }
  .elIframeWrapper {
    width: 100% !important;
    padding-top: 56.25% !important;
  }
  .elCollectionSection .elSection {
    flex-direction: column;
  }
  .elCollectionSection .elSection figure {
    margin: 0 auto;
  }
}
@media all and (max-width: 1000px) {
  header {
    position: relative;
    z-index: 1111;
  }
  .elBanner h3.slideInUp {
    transform: translateY(0);
    opacity: 1;
  }
  .elDesktopMenu {
    display: none;
  }
  .discoverEl .elMakeSelection {
    flex-wrap: wrap;
    justify-content: center;
  }
  .discoverEl .elMakeSelection a {
    width: 320px;
  }
  .elMobileMenu {
    display: block;
  }
  main {
    padding-top: 80px;
  }
  .elOrderReverse {
    flex-direction: column-reverse;
  }
}
@media all and (max-width: 1225px) {
  .whatIsElSection .elSection,
  .whatIsElSection .iconsWeAre,
  .gameTrailersSection .elSection,
  .gameTrailersSection .iconsWeAre,
  .combiningBestOfBothWorldsSection .elSection,
  .combiningBestOfBothWorldsSection .iconsWeAre,
  .weAreElSection .elSection,
  .weAreElSection .iconsWeAre,
  .elGreySection .elSection,
  .elGreySection .iconsWeAre,
  .elWhiteSection .elSection,
  .elWhiteSection .iconsWeAre {
    flex-wrap: wrap;
    justify-content: center;
  }
  .whatIsElSection img,
  .elGreySection img,
  .elWhiteSection img {
    width: 100%;
  }
  .weAreElSection .iconsWeAre figure {
    width: 320px;
  }
}
@media all and (max-width: 981px) {
  .elTeamSection .elWhoIsWhoSlide {
    flex-wrap: wrap;
  }
  .elTeamSection .elWhoIsWhoSlide section {
    flex: 1 1 45%;
    max-width: 45%;
  }
  img {
    max-width: 100%;
  }
  .elMorePaymentInfo {
    max-width: 95%;
  }
  .elMorePaymentInfo ul li {
    min-width: 280px;
  }
  footer .elPreFooter {
    flex-wrap: wrap !important;
  }
  footer .elPreFooter .col:first-of-type {
    flex: auto !important;
  }
  footer .elFooter .elSection {
    flex-wrap: wrap !important;
  }
}
@media all and (max-width: 800px) {
  .elWhoIsWhoSlide img {
    min-height: 125px;
  }
}
@media all and (max-width: 768px) {
  .elExtraInfo {
    display: none !important;
  }
  .elSocialIconsMobile {
    width: 100% !important;
  }
}
@media all and (max-width: 740px) {
  .elWhoIsWho .elWhoIsWhoSlide h5 {
    font-size: 0.8em;
  }
  .elWhoIsWho .elWhoIsWhoSlide span {
    font-size: 0.6em;
  }
}
@media all and (max-width: 675px) {
  footer .elFooter .elSection .elCol:nth-of-type(2) {
    flex-wrap: wrap !important;
    flex: auto;
  }
}
@media all and (max-width: 600px) {
  .elBanner h3 {
    font-size: 1.5em !important;
  }
}
@media all and (max-width: 500px) {
  h1, h2, h3 {
    font-size: 2.25em;
  }
  .elBanner h3 {
    font-size: 1.4em !important;
  }
  .elBanner .elCrslCell {
    padding: 45% 3% 10% 3%;
  }
  .elBanner .elBtn {
    margin-bottom: 10px;
  }
  .justDots {
    display: none;
  }
  .elWhoIsWho .elWhoIsWhoSlide h5 {
    font-size: 0.6em;
    height: 35px;
  }
  .elWhoIsWho .elWhoIsWhoSlide span {
    font-size: 0.4em;
  }
  .weAreElSection .iconsWeAre p {
    margin-bottom: 30px;
  }
  .weAreElSection .iconsWeAre img {
    margin-bottom: 15px;
  }
  .elPad30 {
    padding: 30px 0 !important;
  }
  .inGameScenerySection {
    padding: 60px 0;
  }
  .elSmallHead h3 {
    font-size: 1.2em;
  }
  .elNextPageSection h1 {
    display: none;
  }
  .elNextPageSection p {
    margin-bottom: 30px;
  }
  .elTextLeftMobile {
    text-align: left;
  }
  .elBtn {
    margin-bottom: 0;
  }
  footer .elPreFooter {
    gap: 0;
  }
  footer .elPreFooter .elContactUs p {
    margin-bottom: 0;
  }
  footer .elPreFooter .col:nth-of-type(2) {
    top: -57px;
  }
}
@media all and (max-width: 400px) {
  h1, h2, h3 {
    font-size: 2em;
  }
}
/* .Responsive */

/*# sourceMappingURL=main.css.map */
