@charset "UTF-8";
/* BRAND COLOURS*/
/* add notes cfor colours here */

/* import google font*/

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;700;800&display=swap');

/* loading - in genesis page */
.vertical-centered-box {
  position: fixed;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: all 488ms cubic-bezier(0.74, 0.01, 0.34, 1);
}

.BB-loaded .vertical-centered-box {
  opacity: 0;
  transform: scale(0.1);
}

.vertical-centered-box .content {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  font-size: 0;
}

.vertical-centered-box .content .logo {
  /* position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -10px;
    margin-top: -10px; */
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -33px;
  margin-top: -34px;
  width: 68px;
  height: 68px;
  position: fixed;
  filter: brightness(0);
}

.vertical-centered-box .content svg.logo {
  width: 40px;
  height: 40px;
}

.loader-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.01);
  margin-left: -60px;
  margin-top: -60px;
}

.loader-line-mask {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 120px;
  margin-left: -60px;
  margin-top: -60px;
  overflow: hidden;
  transform-origin: 60px 60px;
  -webkit-mask-image: -webkit-linear-gradient(top, #111, rgba(0, 0, 0, 0));
  animation: rotate 1.2s infinite linear;
}

.loader-line-mask .loader-line {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.5);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes fade {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.25;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* scaffold  */
body.BB-loader {
  overflow: hidden;
}

.page-wrapper {
  transition: all 488ms cubic-bezier(0.74, 0.01, 0.34, 1);
}

.BB-loaded .page-wrapper {
  opacity: 1;
}

.BB-loader .page-wrapper {
  opacity: 0;
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: sans-serif;
}

body {
  margin: 0;
}

nav {
  display: block;
}

canvas {
  vertical-align: baseline;
  display: inline-block;
}

a {
  background-color: rgba(0, 0, 0, 0);
  color: #000;

}

a:active,
a:hover {
  outline: 0;
}

h1 {
  margin: .67em 0;
  font-size: 2em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  box-sizing: content-box;
  height: 0;
  border: none;
  border-top: 8px solid #FFFFFF;
  opacity: 1;
  position: relative;
  margin: 0;
  z-index: 3;
  border-bottom: 1px solid #ccc;
}

button {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button {
  text-transform: none;
}

button {
  -webkit-appearance: button;
  cursor: pointer;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}




* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  color: #333;
  background-color: #000;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

/* modals */
/* modal in*/
@-moz-keyframes modalIn {
  0% {
    margin-left: 100%;
    opacity: 0;
  }

  1% {
    margin-left: 0;
    opacity: 0;
  }

  100% {
    margin-left: 0;
    opacity: 1;
  }
}

@-webkit-keyframes modalIn {
  0% {
    margin-left: 100%;
    opacity: 0;
  }

  1% {
    margin-left: 0;
    opacity: 0;
  }

  100% {
    margin-left: 0;
    opacity: 1;
  }
}

@-o-keyframes modalIn {
  0% {
    margin-left: 100%;
    opacity: 0;
  }

  1% {
    margin-left: 0;
    opacity: 0;
  }

  100% {
    margin-left: 0;
    opacity: 1;
  }
}

@-ms-keyframes modalIn {
  0% {
    margin-left: 100%;
    opacity: 0;
  }

  1% {
    margin-left: 0;
    opacity: 0;
  }

  100% {
    margin-left: 0;
    opacity: 1;
  }
}

@keyframes modalIn {
  0% {
    margin-left: 100%;
    opacity: 0;
  }

  1% {
    margin-left: 0;
    opacity: 0;
  }

  100% {
    margin-left: 0;
    opacity: 1;
  }
}

/* modal out*/
@-moz-keyframes modalOut {
  0% {
    margin-left: 0;
    opacity: 1;
  }

  99% {
    margin-left: 0;
    opacity: 0;
  }

  100% {
    margin-left: 100%;
    opacity: 0;
  }
}

@-webkit-keyframes modalOut {
  0% {
    margin-left: 0;
    opacity: 1;
  }

  99% {
    margin-left: 0;
    opacity: 0;
  }

  100% {
    margin-left: 100%;
    opacity: 0;
  }
}

@-o-keyframes modalOut {
  0% {
    margin-left: 0;
    opacity: 1;
  }

  99% {
    margin-left: 0;
    opacity: 0;
  }

  100% {
    margin-left: 100%;
    opacity: 0;
  }
}

@-ms-keyframes modalOut {
  0% {
    margin-left: 0;
    opacity: 1;
  }

  99% {
    margin-left: 0;
    opacity: 0;
  }

  100% {
    margin-left: 100%;
    opacity: 0;
  }
}

@keyframes modalOut {
  0% {
    margin-left: 0;
    opacity: 1;
  }

  99% {
    margin-left: 0;
    opacity: 0;
  }

  100% {
    margin-left: 100%;
    opacity: 0;
  }
}





.e1-modal {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 9999999999;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.99);
  /*overflow-y: auto;
    -webkit-overflow-scrolling: touch;*/
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  margin-left: 100%;
}

.e1-modal.open {
  opacity: 1;
  pointer-events: auto;
  margin-left: 0;
  -webkit-animation-duration: 400ms;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-name: modalIn;
  -moz-animation-duration: 400ms;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-name: modalIn;
  animation-duration: 400ms;
  animation-timing-function: ease-in-out;
  animation-name: modalIn;
  animation-fill-mode: forwards;
}

.e1-modal.closed {
  -webkit-animation-duration: 400ms;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-name: modalOut;
  -moz-animation-duration: 400ms;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-name: modalOut;
  animation-duration: 400ms;
  animation-timing-function: ease-in-out;
  animation-name: modalOut;
  animation-fill-mode: forwards;
}

.button.btn-close {
  background: transparent;
  box-shadow: none;
  border: none;
  color: #000;
  float: right;
  padding-right: 8px;
  position: absolute;
  right: 5px;
  top: 10px;
}

.e1-modal-wrapper {
  text-align: center;
  padding: 0;
  height: 100%;
  margin: 0 auto;
  display: table;
}

.e1-modal-content {
  -webkit-transition: all 488ms cubic-bezier(0.74, 0.01, 0.34, 1);
  transition: all 488ms cubic-bezier(0.74, 0.01, 0.34, 1);
  padding: 28px;
  display: table-cell;
  vertical-align: middle;
}

.e1-modal-content-panel {
  /* background-color: #000; */
  padding: 54px;
  opacity: 0;
  border-radius: 6px;
  box-shadow: 0 4px 18px 0 rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(200%);
  transform: translateY(200%);
  -webkit-transition: all 0.8s cubic-bezier(0.74, 0.01, 0.34, 1);
  transition: all 0.8s cubic-bezier(0.74, 0.01, 0.34, 1);
  /* for loading bg*/
  background-size: 80px;
  background-position: center center;
}

.e1-modal.open .e1-modal-content-panel {
  pointer-events: auto;
  opacity: 1;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.e1-modal-content-panel h1 {
  color: #000;
  margin: 0 0 48px 0;
  font-family: Barlow, sans-serif;
  font-size: 58px;
  line-height: 1;
}

.e1-modal-content-panel p.modal-p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 58px 0;
  font-size: 20px;
  font-family: Barlow, sans-serif;
  max-width: 500px;
  line-height: 24px;
}

/* about-modal*/


@font-face {
  font-family: 'icons';
  src: url("../../assets/fonts/icons.ttf") format("truetype"), url("../../assets/fonts/icons.woff") format("woff"), url("../../assets/fonts/icons.svg") format("svg");
  font-weight: normal;
  font-style: normal
}

.icon:before,
.locked:before {
  font-family: 'icons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

label.icon:before,
strong.icon:before {
  margin: 3px 8px 0 6px
}

.icon_addcontact:before {
  content: "\e900"
}

.icon_add:before {
  content: "\e901"
}

.icon_admin:before {
  content: "\e902"
}

.icon_air:before {
  content: "\e903"
}

.icon_arrowleft:before {
  content: "\e904"
}

.icon_arrowright:before {
  content: "\e905"
}

.icon_basket:before {
  content: "\e906"
}

.icon_bill:before {
  content: "\e907"
}

.icon_calender:before {
  content: "\e908"
}

.icon_cardname:before {
  content: "\e909"
}

.icon_cargodetails:before {
  content: "\e90a"
}

.icon_cfs:before {
  content: "\e90b"
}

.icon_close:before {
  content: "\e90c"
}

.icon_closequote:before {
  content: "\e90d"
}

.icon_code:before {
  content: "\e90e"
}

.icon_consignee:before {
  content: "\e90f"
}

.icon_consignor:before {
  content: "\e910"
}

.icon_contact:before {
  content: "\e911"
}

.icon_customerdetails:before {
  content: "\e912"
}

.icon_customs:before {
  content: "\e913"
}

.icon_dash:before {
  content: "\e914"
}

.icon_delivery:before {
  content: "\e915"
}

.icon_dimensions:before {
  content: "\e916"
}

.icon_disable:before {
  content: "\e917"
}

.icon_document:before {
  content: "\e918"
}

.icon_download:before {
  content: "\e919"
}

.icon_drag:before {
  content: "\e91a"
}

.icon_drop:before {
  content: "\e91b"
}

.icon_duplicate:before {
  content: "\e91c"
}

.icon_edit:before {
  content: "\e91d"
}

.icon_eps:before {
  content: "\e91e"
}

.icon_exit:before {
  content: "\e91f"
}

.icon_export:before {
  content: "\e920"
}

.icon_fcl:before {
  content: "\e921"
}

.icon_filter:before {
  content: "\e922"
}

.icon_grid:before {
  content: "\e923"
}

.icon_hazardous:before {
  content: "\e924"
}

.icon_height:before {
  content: "\e925"
}

.icon_help:before {
  content: "\e926"
}

.icon_import:before {
  content: "\e927"
}

.icon_info:before {
  content: "\e928"
}

.icon_language:before {
  content: "\e929"
}

.icon_lcl:before {
  content: "\e92a"
}

.icon_length:before {
  content: "\e92b"
}

.icon_list:before {
  content: "\e92c"
}

.icon_login:before {
  content: "\e92d"
}

.icon_mail:before {
  content: "\e92e"
}

.icon_marker:before {
  content: "\e92f"
}

.icon_message:before {
  content: "\e930"
}

.icon_mobile:before {
  content: "\e931"
}

.icon_notify:before {
  content: "\e932"
}

.icon_order:before {
  content: "\e933"
}

.icon_packaging:before {
  content: "\e934"
}

.icon_pallets:before {
  content: "\e935"
}

.icon_paperless:before {
  content: "\e936"
}

.icon_pdf:before {
  content: "\e937"
}

.icon_phone:before {
  content: "\e938"
}

.icon_play:before {
  content: "\e939"
}

.icon_png:before {
  content: "\e93a"
}

.icon_port:before {
  content: "\e93b"
}

.icon_print:before {
  content: "\e93c"
}

.icon_quantity:before {
  content: "\e93d"
}

.icon_quotes:before {
  content: "\e93e"
}

.icon_quotesflat:before {
  content: "\e93f"
}

.icon_rail:before {
  content: "\e940"
}

.icon_reefer:before {
  content: "\e941"
}

.icon_reference:before {
  content: "\e942"
}

.icon_rotateleft:before {
  content: "\e943"
}

.icon_rotateright:before {
  content: "\e944"
}

.icon_save:before {
  content: "\e945"
}

.icon_search:before {
  content: "\e946"
}

.icon_secure:before {
  content: "\e947"
}

.icon_securitycode:before {
  content: "\e948"
}

.icon_select:before {
  content: "\e949"
}

.icon_setinterest:before {
  content: "\e94a"
}

.icon_settings:before {
  content: "\e94b"
}

.icon_share:before {
  content: "\e94c"
}

.icon_shipping:before {
  content: "\e94d"
}

.icon_switch:before {
  content: "\e94e"
}

.icon_temperature:before {
  content: "\e94f"
}

.icon_tick:before {
  content: "\e950"
}

.icon_time:before {
  content: "\e951"
}

.icon_trash:before {
  content: "\e952"
}

.icon_trucking:before {
  content: "\e953"
}

.icon_truckingbasic:before {
  content: "\e954"
}

.icon_trust:before {
  content: "\e955"
}

.icon_validate:before {
  content: "\e956"
}

.icon_value:before {
  content: "\e957"
}

.icon_view:before {
  content: "\e958"
}

.icon_views:before {
  content: "\e959"
}

.icon_volume:before {
  content: "\e95a"
}

.icon_warehouse:before {
  content: "\e95b"
}

.icon_width:before {
  content: "\e95c"
}

.icon_window:before {
  content: "\e95d"
}

.button.icon:before {
  margin: -3px 10px 0 0;
  vertical-align: middle;
  display: inline-block
}

.button.icon_arrowright:before,
.icon_arrowright.flip:before {
  float: right;
  margin: 0px -3px 0 10px
}

.icon_arrowright.flip:before {
  margin: 12px 0px 0 4px;
  font-size: 11px
}

.button.icon_window:before {
  float: right;
  margin: -1px -3px 0 10px
}

.button.icon_close:before,
.icon_share:before {
  margin-top: -3px
}

i.icon:before {
  font-size: 38px;
  color: #111
}

span.icon:before {
  margin-right: 8px;
  color: #111
}

a.icon:before {
  margin-right: 8px
}

a.it-button-link:before {
  margin-top: -2px;
  vertical-align: middle;
  display: inline-block
}

h1.icon:before {
  margin-right: 10px
}

h2.icon:before {
  margin-right: 8px
}

p.icon:before {
  margin-right: 2px
}

legend.icon:before {
  margin-right: 8px
}

li.icon:before {
  color: #ccc;
  display: block;
  float: left;
  font-size: 20px;
  margin: 19px 10px 0 14px
}

li.icon:hover:before {
  color: #fff
}

/* video-modal*/




h1,
h3 {
  margin-bottom: 10px;
  font-weight: bold;
}

h1 {
  margin-top: 20px;
  font-size: 38px;
  line-height: 44px;
}

h3 {
  margin-top: 20px;
  font-size: 24px;
  line-height: 30px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Barlow, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

li {
  font-family: Barlow, sans-serif;
  font-size: 1.35em;
  font-weight: 600;
  line-height: 1.45;
}

.paragraph.medium {
  color: #000;
  font-size: 1.8em;
  line-height: 1.25;
}



.w-embed:before,
.w-embed:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-embed:after {
  clear: both;
}

button {
  cursor: pointer;
  -webkit-appearance: button;
  border: 0;
}

@media screen and (max-width: 767px) {

  .e1-modal-content-panel {
    padding: 28px;
  }
}

body {
  height: auto;
  color: #333;
  background-color: #FFFFFF;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

p {
  margin-bottom: 0;
}

a {
  text-decoration: underline;
}

.nav {
  z-index: 100;
  background-color: #FFFFFF;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.section {
  z-index: 2;
  width: 100%;
  background-color: #FFFFFF;
  position: relative;
}

.section.hero {
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: block;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.hero-wrapper.loading-panel {
  background-color: #FFFFFF;
  z-index: 99999;
  height: 100vh;
  width: 100vw;
  top: 0;
  opacity: 0;
  position: fixed;
  animation: fade-load 5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
  pointer-events: none;
  overflow: scroll;
}

@keyframes fade-load {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 1;
  }

  100% {

    opacity: 0;
  }
}

.hero-wrapper.loading-panel .paragraph-wrapper.hero,
.hero-wrapper.loading-panel .button-wrapper-flex {
  opacity: 0;
  pointer-events: none;
}

.hero-wrapper.loading-panel .heading-wrapper {
  overflow: hidden;
}

.reveal-1,
.reveal-2,
.reveal-3 {
  display: inline-block;

  opacity: 1;
  animation: reveal-1 2.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

.reveal-2 {
  animation: reveal-2 2.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

.reveal-3 {
  animation: reveal-3 2.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

@keyframes reveal-1 {

  0%,
  10% {
    opacity: 0;
    transform: translate(0, 100%);
  }

  33% {
    transform: translate(0, 0);

    opacity: 1;
  }
}

@keyframes reveal-2 {

  0%,
  10% {
    opacity: 0;
    transform: translate(0, 100%);
  }

  33% {
    opacity: 0;
    transform: translate(0, 100%);
  }

  66% {
    transform: translate(0, 0);

    opacity: 1;
  }
}

@keyframes reveal-3 {

  0%,
  10% {
    opacity: 0;
    transform: translate(0, 100%);
  }

  66% {
    opacity: 0;
    transform: translate(0, 100%);
  }

  100% {
    transform: translate(0, 0);

    opacity: 1;
  }
}

.section.e1-digital-collectibles {
  z-index: 3;
  background-color: #FFFFFF;
  border-radius: 3em 3em 0 0;
  padding-top: 8em;
  padding-bottom: 15em;
  position: relative;
  overflow: hidden;
}

.section.e1-plans {
  z-index: 2;
  height: 4000px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  padding-top: 200px;
  position: relative;
  overflow: hidden;
}

.section.padding-tb.e1-genesis-artists {
  z-index: 4;
  /* border-top: 1px solid rgba(255, 255, 255, .16); */
  padding-top: 200px;
  position: relative;
  overflow: hidden;
  background-color: #FFFFFF;
  padding-top: 1em;
}

.proplan {
  background: linear-gradient(45deg, #fffb98, #9bffa4, #9eceff, #ffa3a5, #fffb9a);
  background-size: 1000% 100%;
  animation: gradient 12s linear infinite;
  animation-direction: alternate;
}



@keyframes gradient {
  0% {
    background-position: 0%
  }

  100% {
    background-position: 100%
  }
}

.section.e1-plans {
  z-index: 2;
  height: auto;
  background-color: #000;
  border-top-style: none;
  padding-top: 11em;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.section.padding-tb {
  padding-top: 4em;
  padding-bottom: 4em;
}

.section.padding-tb.e1-plans {
  z-index: 3;
  padding-bottom: 10em;
  overflow: visible;
}

.section.padding-tb.partners {
  padding-top: 6em;
  padding-bottom: 6em;
}

.section.padding-tb.e1-digital-collectibles {
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-radius: 0;
  padding-top: 11em;
  padding-bottom: 0;
}

.section.padding-tb.e1-partner-details {
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-radius: 0;
  z-index: 3;
  background-color: #FFFFFF;
  padding-top: 0em;
  padding-bottom: 0em;
  position: relative;
  overflow: hidden;
}

.e1-partner-details .content-wrapper.e1-community-growth {
  margin-top: 6em;
  margin-bottom: 4em;
}

.section.padding-tb.footer {
  z-index: 2;
  background-color: #444;
  padding-top: 6em;
  padding-bottom: 0;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;

  background-image: url(../../assets/images/footer-website.jpg);
  padding-bottom: 0em;
  background-position: center 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.section.padding-tb.get-started {
  z-index: 7;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  border-radius: 0;


}

/* .section.padding-tb.get-started:before {
  content: "";
  width: 100%;
  height: 350px;

  display: block;
  position: absolute;
  top: 0;

  background-image: url(../../assets/images/footer-website.jpg);
  padding-bottom: 0em;
  background-position: center 0;
  background-size:100% auto;
  background-repeat: no-repeat;
} */

.section.e1-intro.hero {
  overflow: hidden;
}

.container {
  z-index: 2;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 11em;
  padding-right: 11em;
  position: relative;
}

.container.hero {
  height: 100%;
}

.container.hero .social-link-wrapper {
  justify-content: center;
  display: flex;
  grid-column-gap: 1.3em;
  position: absolute;
  bottom: 180px;
}

.heading-wrapper.e1-plans {
  width: 41em;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
}

.e1-genesis-artists .heading-wrapper.e1-plans {
  width: 31em;

}


.heading-wrapper.e1-community-growth {
  /* width: 77em; */
  justify-content: center;
  display: flex;
  position: relative;
}

.heading-wrapper.footer {
  width: 38em;
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
}

.heading-wrapper.download {
  width: 59em;
  justify-content: center;
  display: flex;
  position: relative;
}

.heading {
  color: #000;
  text-align: left;
  text-transform: uppercase;
  cursor: default;
  font-family: Barlow, sans-serif;
  font-size: 4em;
  line-height: 1;
  position: relative;
}

.heading.black {
  color: #FFFFFF;
}

.heading.card {
  font-size: 4.7em;
}

.heading.card.feature {
  color: #FFFFFF;
  letter-spacing: .75px;
  font-family: Barlow, sans-serif;
  font-size: 1.7em;
}

.heading.center-align {
  text-align: center;
}

.heading.hero {
  text-align: center;
}

.nav-container {
  border-bottom: 1px solid #ccc;
  margin-left: auto;
  margin-right: auto;
  padding: 1em 11em;
}

.paragraph-wrapper.get-started {
  width: 34em;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  position: relative;
}

.paragraph-wrapper.genesis-intro {
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  position: relative;
  /* background: rgba(0,0,0,0.6); */
  padding: 0 18px;
  /* margin: 150px 0 0; */
  /* width: 60em; */
  max-width: 60em;
}

.get-started-paragraph-parent.center {
  justify-content: center;
  text-align: center;
  /* margin-bottom: 58px; */
}

.genesis-intro-paragraph-parent.center {
  justify-content: center;
  text-align: center;
  /* margin-bottom: 58px; */
  justify-content: space-between;
  display: flex;
}

.content-wrapper.genesis-intro {
  justify-content: center;
  align-items: center;
  display: flex;
}


.paragraph-wrapper.hero {
  margin-top: .6em;
  margin-bottom: 1.3em;
}

.paragraph-wrapper.more {
  width: 34em;
  position: relative;
}

.paragraph-wrapper.endless {
  width: 34em;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  position: relative;
}

.paragraph-wrapper.artist-info {
  width: 44em;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  position: relative;
}

.artist-info .social-link {
  width: 3.3em;
  height: 3.3em;
}

/*.artist-info .twitter-icon {
  width: 1.2em;
  height: 1.2em;
} */
.artist-image {
  float: left;
  border-radius: 8px;
  width: 6.8em;
  top: -5px;
  position: relative;
}

.e1-genesis-artists .social-link-wrapper {
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 10px;
}

.paragraph-wrapper.endless-large {
  width: 35em;
  position: relative;
}

.paragraph-wrapper.footer {
  width: 33em;
  position: relative;
}

.paragraph-wrapper.more {
  width: 33.7em;
  position: relative;
}

.paragraph {
  color: #111;
  cursor: default;
  font-family: Barlow, sans-serif;
  font-size: 1.35em;
  font-weight: 500;
  line-height: 1.45;
}

.paragraph.on-white {
  color: #2c2e2e;
}

.paragraph.larger {
  color: #000;
  font-size: 2.55em;
  line-height: 1.25;
}

.paragraph.on-black,
.paragraph.center-mobile {
  color: #111;
}

.content-wrapper {
  mix-blend-mode: difference;
}

.nav .logo {
  height: 30px;
  width: 30px;
  margin: 0;
}

.content-wrapper.hero {
  z-index: 2;
  width: 100%;
  height: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  display: flex;
  position: relative;
}

.content-wrapper.e1-community-growth {
  z-index: 2;
  width: 100%;
  height: 100%;
  max-width: 1268px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.content-wrapper.e1-plans {
  z-index: 2;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.content-wrapper.feature-flex {
  height: auto;
  grid-column-gap: 2.5em;
  grid-row-gap: 2.5em;
  justify-content: space-between;
  display: flex;
}

.content-wrapper.e1-community-growth-heading {
  z-index: 2;
  max-width: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 2em 5em;
  display: flex;
  position: relative;
}

.content-wrapper.e1-community-growth {
  z-index: 2;
  max-width: 100%;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 11em;
  margin-bottom: 9em;
  display: flex;
  position: relative;
}

.content-wrapper.pricing-heading,
.content-wrapper.genesis-heading {
  z-index: 2;
  max-width: 100%;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  padding: 1em 5em 0;
  display: flex;
  position: relative;
}

.content-wrapper.genesis-heading {
  padding: 1em 0 0;
}

.content-wrapper.pricing {
  z-index: 2;
  max-width: 100%;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 6em;
  margin-bottom: 0em;
  display: flex;
  position: relative;
}

.content-wrapper.partnership {
  z-index: 2;
  max-width: 48em;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 6em;
  margin-bottom: 0em;
  display: flex;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  padding: 68px;
  margin-left: auto;
  margin-right: auto;
  border-top-left-radius: 44px;
  border-top-right-radius: 44px;
  box-shadow: inset 0 0 288px 0 rgba(0, 0, 0, 1);
}

.partnership .logo {
  height: 8em;
  filter: drop-shadow(3px 5px 4px rgb(0 0 0 / 0.3));
}

.plus {
  font-size: 6em;
  color: #000;
  padding: 0 1em;
}

.partner-logo {
  width: 8em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  margin-top: -10px;
}

.partner-name {
  font-size: 3em;
  color: #000;
  padding: 0 1em;
  font-family: Barlow, sans-serif;
  font-style: italic;
  text-align: center;
  display: inline-block;
  padding: 0;
  text-shadow: 0px -2px 0.3rem rgba(0, 0, 0, 1);
  margin: -22px 0 0 0;
  z-index: 1;
  position: relative;

}

img.partner-image {
  width: 8em;
  position: relative;
  border-radius: 50%;
  border: 2px solid #000;
}

.content-wrapper.pricing img.icon-image {
  margin-left: -16px;
}

.section.e1-digital-collectibles.pricing {
  background-color: transparent;
  padding-bottom: 9em;

}

h1.genesis-heading {
  color: #000;
  font-size: 8em;
  text-shadow: 0 0 1.8rem rgba(255, 255, 255, 1);
  font-weight: 800;
  opacity: 0.68;
}

h1.partner-heading {
  color: #000;
  text-shadow: 0 0 3.5rem rgba(0, 0, 0, 1);
  font-weight: 800;
}

span.sub-heading {
  display: block;
  font-size: 0.5em;
  font-weight: 400;
  text-shadow: 0 0 0.8rem rgba(0, 0, 0, 1);
}

.e1-partner-details .paragraph-wrapper.endless-large {
  padding-right: 30px;
}

/* 
.section.e1-digital-collectibles.genesis {
  background-image: url(../../assets/images/BG-website.jpg);
  padding-bottom: 8em;
  background-position: center -260px;
  background-size: 100% auto;
  background-repeat: no-repeat;
} */

@media screen and (min-width: 768px) {
  .section.e1-digital-collectibles.genesis {
    background-image: url(../../assets/images/BG-website.jpg);
    padding-bottom: 8em;
    background-position: center -260px;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}

@media screen and (max-width: 767px) {
  .section.e1-digital-collectibles.genesis {
    background-image: url(../../assets/images/footer-website.jpg);

    padding-bottom: 8em;
    background-position: center -260px;
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
}


.section.e1-digital-collectibles.partner.partners {
  padding-bottom: 6em;
}

.button.partner-details-btn {
  margin: -46px 0 0 0;
  position: absolute;
  right: 0;
}

.section.padding-tb.genesis-intro {
  padding-top: 4em;
  padding-bottom: 4em;
  z-index: 3;
}



.content-wrapper.get-started-heading {
  z-index: 2;
  max-width: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 2em 5em;
  display: flex;
  position: relative;
}

.content-wrapper.footer {
  z-index: 2;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 0;
  display: flex;
  position: relative;
}

.feature-wrapper {
  z-index: 1;
  width: 100%;
  height: auto;
  margin-top: 8em;
  position: relative;
}

.nav-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.spacer {
  width: 33.3333%;
  height: 100%;
  position: relative;
}

.spacer.left {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.spacer.right {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.logo-link {
  color: #000;
  /* mix-blend-mode: difference; */
  filter: brightness(0);
  justify-content: center;
  align-items: center;
  display: flex;
}

.logo {
  width: 9em;
  height: 1.1em;
}

.link-parent {
  color: #000;
  letter-spacing: .75px;
  text-transform: uppercase;
  white-space: nowrap;
  justify-content: flex-start;
  align-items: center;
  font-family: Barlow, sans-serif;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  display: flex;
  position: relative;
}

.link-parent:hover {
  opacity: 0.8;
  /* color: #8a76c4; */
}



.button {
  color: #000;
  letter-spacing: .75px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 20em;
  justify-content: center;
  align-items: center;
  font-family: Barlow, sans-serif;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  display: flex;
}

.button.in-nav {
  color: #FFFFFF;
  background-color: #111;
  border-style: none;
  margin-left: 1.25em;
  padding: .45em .9em;
  font-size: 1.2em;
}

.link-parent.space-right {
  margin-right: 1.25em;
}

.button.cta-secondary {
  width: auto;
  height: 100%;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  background-color: #FFFFFF;
  justify-content: space-between;
  padding: .4em .4em .4em 1.4em;
}

.button.cta-secondary.w--current {
  color: #FFFFFF;
  background-color: #f7f7f7;
}

.link-text {
  text-decoration: none;
}

.accent-text {
  color: #000;
  text-align: center;
  letter-spacing: .75px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: default;
  font-family: Barlow, sans-serif;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1;
}

/* @keyframes glow{
  0%{
  box-shadow: 5px 5px 0px rgba(0, 0, 0,0.8),-5px -5px 20px rgba(0, 0, 0,0.8);}
  
  20%{
  box-shadow: 5px 5px 50px rgba(255, 253, 58,0.8),-5px -5px 20px rgba(255,253, 58,0.8)
  }
  50%{
  box-shadow: 5px 5px 10px rgba(58, 255, 72 0,0.8),-5px -5px 20px rgba(58, 255, 72,0.8)
  }
  75%{
    box-shadow: 5px 5px 50px rgba(58, 141, 255,0.8),-5px -5px 20px rgba(58, 141, 255, 0.8)
    }
    95%{
      box-shadow: 5px 5px 10px rgba(255, 58, 58,0.8),-5px -5px 20px rgba(255, 58, 58,0.8)
      }
    100%{
      box-shadow: 5px 5px 0px rgba(0, 0, 0),-5px -5px 20px rgba(0, 0, 0,0.8)
      }
} */

@keyframes glow {


  0% {
    background-color: #12a6a7;
  }

  35% {
    background-color: #c1414e;
  }

  60% {
    background-color: #7c448f;
  }

  90% {
    background-color: #3b70bc;
  }

  100% {
    background-color: #12a6a7;
  }

}

.button.btn-start {
  background-color: rgba(156, 161, 160, 0.3);
  animation: glow 12s infinite;
  border: 2px solid #FFFFFF;
}

@media screen and (max-width: 991px) {
  .button.btn-start {
    animation: glow 13s infinite;
  }

  .paragraph-wrapper.artist-info {
    width: 100%;
    max-width: 34em;
  }

  /* .vertical-centered-box .content .logo {
  margin-left: -43px;
  margin-top: -15px;
} */
  .e1-genesis-artists .social-link-wrapper {
    margin-bottom: 20px;
  }

  .e1-partner-details .content-wrapper.e1-community-growth {
    margin-top: 4em;
    margin-bottom: 2em;
  }

  .e1-partner-details .paragraph-wrapper.endless-large {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.discord {
  fill: currentColor;
}

.dash-accent {
  color: #f7f7f7;
  margin-right: .5em;
  display: inline;
}

.card {
  justify-content: flex-start;
  align-items: flex-start;
}

.bottom-hero {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 1.75em;
  left: 0%;
  right: 0%;
}

.spacer-wrapper {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.borderline {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, .16);
}

.borderline-wrapper {
  width: 100%;
  grid-column-gap: .85em;
  grid-row-gap: .85em;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75em;
  display: flex;
}

.borderline-wrapper.footer {
  margin-top: 2em;
  margin-bottom: 2em;
}

.hero-content {
  width: 100%;
  grid-column-gap: .9em;
  grid-row-gap: .9em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-wrapper {
  height: 200vh;
  margin-bottom: -100vh;
}

.e1-plans-content-wrapper {
  height: 100%;
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.feature-img-wrapper {
  flex-direction: column;
  justify-content: space-between;
  padding: 1em;
  display: flex;
  position: relative;
}

.sticky-card-img-wrapper {
  width: 16em;
  height: 16em;
  background-color: #FFFFFF;
  border-radius: 50%;
  justify-content: space-between;
  align-items: stretch;
  padding: 2.5em;
  display: flex;
  position: relative;
  overflow: hidden;
}

/* .sticky-card-img-wrapper.less-padding {
  padding-left: 2em;
  padding-right: 2em;
} */

.card-content-wrapper {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 3em;
  display: flex;
}

.feature-img {
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  background-color: #FFFFFF;
  border-radius: 100%;
  position: relative;
}

.scripting-paragraph-wrapper {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.white {
  color: #000;
}

.get-started-paragraph-parent {
  justify-content: space-between;
  display: flex;
}

.get-started-button-wrapper {
  height: 3.6em;
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  justify-content: center;
  align-items: center;
  margin-top: 4em;
  margin-bottom: 1em;
  display: flex;
}

.footer-content-parent {
  height: 100%;
  margin-top: 0;
  position: relative;
}

.footer-wrapper {
  height: 100%;
  margin-top: -100vh;
}

.sticky-spacer {
  z-index: 2;
  width: 100%;
  height: 100vh;
  position: relative;
}

.social-link-wrapper {
  z-index: 4;
  width: 33em;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  justify-content: flex-start;
  display: flex;
  position: relative;
}

.social-link {
  width: 3.75em;
  height: 3.75em;
  color: #f7f7f7;
  cursor: pointer;
  mix-blend-mode: darken;
  background-color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 100%;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  transition: border-color .2s, background-color .2s;
  display: flex;
}

.social-link:hover {
  color: #FFFFFF;
  background-color: #f7f7f7;
}

.discord-icon {
  width: 1.5em;
  height: 1.1em;
}

.btn-start .discord-icon {
  width: 1em;
  height: 1em;
}

.twitter-icon {
  width: 1em;
  height: 1em;
  position: relative;
}

.foundation-icon {
  width: 1.8em;
  height: 1.45em;
  position: relative;
}

.linkedin-icon {
  width: 1.4em;
  height: 1.1em;
  position: relative;
}

.linkedin-icon svg {
  margin: -2px 0 0 0px;
}

.top-footer {
  justify-content: space-between;
  align-items: center;
  margin-top: 11em;
  margin-bottom: 7.5em;
  display: flex;
}

.bottom-footer {
  flex-direction: column;
  align-items: flex-end;
  padding-bottom: 2em;
  display: flex;
}

.footer-flex {
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.c-symbol {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: .9em;
}

.footer-links-column-pco {
  grid-column-gap: 2.25em;
  grid-row-gap: 2.25em;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer-infoheading {
  color: #000;
  text-align: left;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: default;
  font-family: Barlow, sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1;
}

.button-icon-wrapper {
  width: 2em;
  height: 2em;
  background-color: #000;
  border-radius: 20em;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.button-icon-wrapper.black {
  color: #000;
  background-color: #FFFFFF;
}

.button-icon-wrapper.white {
  color: #FFFFFF;
}

.button-icon {
  width: 1.1em;
  height: 1.3em;
  position: relative;
}

.button-icon.docs {
  width: .9em;
  height: 100%;
  left: .025em;
}

.button-icon.play {
  width: 1.3em;
  height: 100%;
}

.button-wrapper {
  height: 100%;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.network {
  position: fixed;
  z-index: 1;
  z-index: 0;
  top: 0px;
  left: 0px;
  width: 100vw !important;
  height: 100vh !important;
  /* opacity: 0.22;
  filter:  contrast(2.2) blur(110px); */
  opacity: 0.4;
  filter: contrast(2) blur(8px);
}

.button-wrapper-flex {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  justify-content: center;
  align-items: center;
  display: flex;
}

.feature-content {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.endless-paragraph-wrapper {
  width: 100%;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.video-cta-parent {
  width: 100%;
  height: 88em;
  background-position: 50%;
  background-repeat: no-repeat;
  /* background-size: cover; */
  /* background-size: 100%; */
  background-attachment: fixed;
  border-radius: 2em;
  margin-top: 8em;
  position: relative;
  overflow: hidden;
}

.video-cta-parent.endless {
  background-image: url("../../assets/images/entrance.jpg");
  margin-top: 7em;
}

img.icon-image {
  width: 6em;
  position: relative;
}

.video-cta-cover {
  z-index: 2;
  width: 100%;
  height: 100%;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  transition: opacity .4s;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.video-cta-cover h3 {
  color: #000;
  text-align: left;
  text-transform: uppercase;
  cursor: default;
  font-family: Barlow, sans-serif;
  font-size: 6em;
  line-height: 1;
  position: relative;
  margin: 60px;

}



.text-cycle-parent {
  position: relative;
  overflow: hidden;
}

.text-cycle {
  text-decoration: none;
  position: relative;
  overflow: visible;
}

.link-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

@media screen and (min-width: 1920px) {

  .container,
  .nav-container {
    padding-left: 22em;
    padding-right: 22em;
  }

  .social-link-wrapper {
    font-size: .95em;
  }

  .video-cta-parent.endless {
    background-size: contain;
  }
}

@media screen and (max-width: 991px) {
  .nav {
    width: 100%;
  }

  .section.padding-tb.e1-plans {
    padding-top: 100px;
    padding-bottom: 70px;
  }

  /* .section.padding-tb.e1-digital-collectibles {
    padding-top: 100px;
    padding-bottom: 100px;
  } */

  .section.padding-tb.footer {
    padding-top: 2em;
  }

  .section.padding-tb.get-started {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section.e1-intro.hero {
    height: 100dvh;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-wrapper.e1-community-growth {
    width: 68%;
  }

  .heading {
    text-align: center;
    font-size: 5.2em;
  }

  .heading.card {
    text-align: left;
    font-size: 44px;
  }

  .heading.card.feature {
    font-size: 24px;
  }

  .nav-container {
    z-index: 2;
    padding: 18px 20px;
    position: relative;
  }

  .paragraph-wrapper.get-started {
    width: 330px;
  }

  .paragraph-wrapper.more {
    width: 430px;
  }

  .paragraph-wrapper.endless {
    width: 100%;
    grid-column-gap: 28px;
    grid-row-gap: 28px;
  }

  .paragraph-wrapper.endless-large {
    width: 100%;
  }

  .paragraph-wrapper.footer {
    width: 410px;
  }

  .paragraph-wrapper.more {
    width: 450px;
  }

  .paragraph {
    font-size: 18px;
    line-height: 26px;
  }

  .paragraph.on-white {
    text-align: center;
  }

  .paragraph.larger {
    font-size: 34px;
    line-height: 38px;
  }

  .paragraph.center-mobile {
    text-align: center;
  }

  .content-wrapper.e1-plans {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
    align-items: center;
  }

  .e1-genesis-artists .paragraph.medium,
  .e1-genesis-artists .paragraph.on-black {
    text-align: center;
  }

  .artist-info .social-link-wrapper {
    justify-content: center;
    margin-bottom: 20px;
  }

  .content-wrapper.feature-flex {
    width: 700px;
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .content-wrapper.e1-community-growth-heading {
    padding: 0 20px;
  }

  .content-wrapper.e1-community-growth {
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .spacer.left.more-width {
    width: auto;
  }

  .logo {
    width: 132px;
    height: 16px;
    overflow: visible;
  }

  .link-parent.log-in {
    /* display: none; */
    margin-right: 15px;
  }

  .button.in-nav {
    margin-left: 0;
    padding: 6px 12px 8px 14px;
    display: block;
  }

  .paragraph-wrapper.artist-info .button.in-nav {
    margin: 0px auto 20px;
    position: relative;
  }

  .link-text {
    font-size: 17px;
    line-height: 17px;
  }

  .link-text.smaller {
    font-size: 16px;
    line-height: 16px;
  }

  .accent-text {
    font-size: 16px;
  }

  .feature-img-wrapper {
    padding: 20px;
  }

  .sticky-card-img-wrapper {
    /* width: 224px;
    height: 224px; */

    width: 16vw;
    height: 16vw;
    padding-left: 2em;
    padding-right: 2em;
    padding: 0.6em;
  }

  .scripting-paragraph-wrapper {
    align-items: center;
  }

  .social-link-wrapper {
    width: 100%;
    justify-content: center;
  }

  .social-link {
    width: 48px;
    height: 48px;
  }

  .discord-icon {
    width: 19px;
    height: 16px;
  }

  .twitter-icon {
    width: 18px;
    height: 14px;
  }

  .foundation-icon {
    width: 22px;
    height: 20px;
  }

  .top-footer {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    flex-direction: column;
    align-items: center;
    margin-top: 110px;
    margin-bottom: 80px;
  }

  .footer-links-column-pco {
    width: 100%;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    justify-content: center;
  }

  .footer-infoheading {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .feature-content {
    margin-bottom: 41px;
  }

  .endless-paragraph-wrapper {
    grid-column-gap: 72px;
    grid-row-gap: 72px;
    flex-direction: column;
  }

  .video-cta-parent.endless {
    height: 650px;
    /* background-size: cover; */
    background-size: 150%;
  }

}

@media screen and (max-width: 767px) {
  .section.padding-tb.get-started {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .heading-wrapper {
    width: 350px;
  }

  .hero-wrapper.loading-panel .heading-wrapper {
    transform: translate(0, -13px);
  }

  .hero-wrapper.loading-panel {
    overflow: hidden;
  }

  .heading-wrapper.e1-plans {
    width: 400px;
  }

  .heading-wrapper.card {
    width: auto;
  }

  .heading-wrapper.e1-community-growth {
    width: 100%;
  }

  .heading-wrapper.footer {
    width: 330px;
  }

  .heading-wrapper.download {
    width: 390px;
  }

  .heading {
    font-size: 50px;
  }

  .heading.card {
    width: 46vw;
    font-size: 8vw;
  }

  .heading.card.feature {
    width: auto;
    font-size: 22px;
  }

  .heading.hero {
    font-size: 64px;
  }

  .paragraph-wrapper.get-started {
    width: 100%;
  }

  .paragraph-wrapper.hero {
    width: 320px;
  }

  .paragraph-wrapper.more {
    width: 350px;
  }

  .paragraph-wrapper.endless {
    grid-row-gap: 24px;
  }

  .paragraph-wrapper.more {
    width: 360px;
  }

  .paragraph.larger {
    font-size: 32px;
    line-height: 36px;
  }

  .content-wrapper.e1-plans {
    grid-row-gap: 16px;
  }

  .content-wrapper.feature-flex {
    width: 100%;
    grid-column-gap: 20px;
    grid-row-gap: 56px;
    flex-direction: row;
  }

  .content-wrapper.e1-community-growth {
    margin-top: 80px;
    margin-bottom: 60px;
  }

  .content-wrapper.get-started-heading {
    padding: 0px 20px 20px;
  }

  .feature-wrapper {
    margin-top: 60px;
  }

  .spacer.left,
  .spacer.right {
    width: auto;
    flex-wrap: wrap;
  }

  .button {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    padding-left: 20px;
  }

  .accent-text {
    font-size: 12px;
  }

  .spacer-wrapper {
    flex-wrap: wrap;
    align-content: stretch;
  }

  .feature-img-wrapper {
    padding: 20px;
  }

  .sticky-card-img-wrapper {
    width: 155px;
    height: 155px;
  }

  .get-started-paragraph-parent {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
  }




  .social-link-wrapper {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .button-icon.play {
    width: 22px;
  }

  .button-wrapper-flex {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-wrap: wrap;
  }

  .feature-content {
    margin-bottom: 12px;
  }

  .video-cta-parent.endless {
    height: 85vw;
  }

  .video-cta-cover h3 {
    font-size: 5em;

  }

  .section.padding-tb.e1-digital-collectibles.partner {
    padding-bottom: 0px;
  }

  .section.padding-tb.e1-digital-collectibles.partner.partners {
    padding-bottom: 5em;
  }
}

@media screen and (max-width: 479px) {
  .heading-wrapper.e1-plans {
    width: 100%;
  }

  .heading-wrapper.download {
    width: 100%;
  }

  .heading.card {
    width: 57vw;
    font-size: 10vw;
  }

  .heading.card.feature {
    font-size: 20px;
  }

  .heading.hero {
    font-size: 58px;
  }

  .paragraph-wrapper.hero {
    width: 280px;
    margin-top: 2px;
    margin-bottom: 10px;
  }

  .paragraph-wrapper.more {
    width: auto;
  }

  .paragraph-wrapper.footer {
    width: 320px;
  }

  .paragraph-wrapper.more {
    width: 300px;
  }

  .paragraph.larger {
    font-size: 25px;
    line-height: 28px;
  }

  .content-wrapper.feature-flex {
    grid-column-gap: 20px;
  }

  .content-wrapper.e1-community-growth {
    margin-bottom: 56px;
  }

  .feature-wrapper {
    margin-top: 64px;
  }

  .button {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    padding-left: 16px;
  }



  .accent-text {
    text-align: left;
    white-space: normal;
  }

  .spacer-wrapper {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .feature-img-wrapper {
    padding: 12px;
  }

  .sticky-card-img-wrapper {
    /* width: 35vw;
    height: 35vw; */
    width: 16vw;
    height: 16vw;
    padding-left: 2em;
    padding-right: 2em;
    padding: 0.6em;
  }

  .card-content-wrapper {
    margin-top: 28px;
  }

  .top-footer {
    grid-row-gap: 40px;
  }

  .footer-infoheading {
    font-size: 20px;
  }

  .button-wrapper-flex {
    flex-direction: column;
  }

  .feature-content {
    margin-bottom: auto;
  }

  .endless-paragraph-wrapper {
    grid-row-gap: 56px;
  }

  .video-cta-parent.endless {
    height: 90vw;
    margin-top: auto;
    /* background-size: cover; */
  }
}

@font-face {
  font-family: 'Mona Sans';
  src: url('https://uploads-ssl.webflow.com/64526acacac2b6fd912b6ba6/647f2d43434dca744e0d8425_Mona-Sans.woff2') format('woff2');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tungsten Black';
  src: url('https://uploads-ssl.webflow.com/64526acacac2b6fd912b6ba6/647f3729cf8b99309528b87e_Tungsten-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tungsten Bold';
  src: url('https://uploads-ssl.webflow.com/64526acacac2b6fd912b6ba6/647f3730a0d7c5ba82797fd4_Tungsten-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Tungsten';
  src: url('https://uploads-ssl.webflow.com/64526acacac2b6fd912b6ba6/647f374165d0bfe40ba93e31_Tungsten-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Brick';
  src: url('https://uploads-ssl.webflow.com/64526acacac2b6fd912b6ba6/6480736b4f54d099ea107975_Brick.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}





/* TO sort - were in page */

.no-pointer {
  pointer-events: none;
}

canvas {
  z-index: 1;
}

::selection {
  background: #ffffff;
  /* WebKit/Blink Browsers */
}

::-moz-selection {
  background: #ffffff;
  /* Gecko Browsers */
}


@media only screen and (min-width: 393px) and (max-width: 767px) {
  .sticky-card-img-wrapper {
    width: 16vw;
    height: 16vw;
    padding-left: 2em;
    padding-right: 2em;
    padding: 0.6em;
  }
}


/* Smooths the fonts out */
body {
  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;
}

/* enables dark scrollbar for all devices */
:root {
  color-scheme: dark;
}

/* removes anchor link blue border on safari */
:focus {
  outline: none;
}

.social-link {
  background-color: #FFFFFF !important;
}

.social-link:hover {
  background-color: #fff !important;
}


/* artists */

.artist-images {}

.artist-images ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: outside none none;
  margin: 0px;
  padding: 0px;
}

.artist-images {
  position: relative;
  z-index: 1;
}

.artist-images ul li {
  margin: 0px 28px;
  height: 290px;
  width: 290px;
}

.artist-images ul li img {
  border-radius:8px;
}

.artist-images .artist-images-row-right.zoe ul li {
  height: 380px;
}

.artist-images-row-left,
.artist-images-row-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;

}

.artist-images-row-left ul,
.artist-images-row-right ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  overflow: hidden;
  animation: 40s linear 0s infinite normal none running loop-animate;
  margin-bottom: 20px;
}


@keyframes loop-animate {
  0% {
    transform: translateX(0px);
    opacity: 0;
  }

  2% {
    opacity: 1;
  }

  98% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}

.artist-images-row-right ul {
  flex-direction: row-reverse;
  animation: 25s linear 0s infinite normal none running loop-animate-reverse;
}


@keyframes loop-animate-reverse {
  /* from {
        transform: translateX(-100%);
    }
    
    to {
        transform: translateX(0%);
    } */

  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  2% {
    opacity: 1;
  }

  98% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(0%);
  }
}

.center-heading {
  font-family: Barlow, sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  text-align: center;
  padding: 5px 0;
  background: #000;
  z-index: 2;
  position: relative;
  font-size: 20px;
  animation: glow 12s infinite;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.opensea-link {
  padding-left: 26px;
}

.opensea-logo {
  box-sizing: border-box;
  padding: 0px;
  border: none;
  margin: auto;
  display: inline-block;
  width: 20px;
  height: 20px;
  float: left;
  position: absolute;
  margin: 3px 0 0 -28px;
}



/* Min Font Size */
@media screen and (min-width: 993px) and (max-width: 1250px) {
  .paragraph-wrapper.more {
    width: 25em;
    padding-left: 35px;

  }
}

@media screen and (max-width: 1650px) {
  .section.e1-digital-collectibles.genesis {
    background-position: center -180px;
  }

  .section.e1-digital-collectibles.partner {
    background-position: center -100px;
  }
}

@media screen and (max-width: 1450px) {
  .section.e1-digital-collectibles.genesis {
    background-position: center -60px;
  }

  .section.e1-digital-collectibles.partner {
    background-position: center 0px;
  }

  h1.genesis-heading {
    font-size: 6em;
  }

  .paragraph-wrapper.footer {
    width: unset;
  }
}





@media screen and (max-width: 1150px) {
  .section.padding-tb.genesis-intro {
    padding-top: 3em;
  }

  h1.genesis-heading {
    font-size: 5em;
  }
}

@media screen and (max-width: 1000px) {
  .section.e1-digital-collectibles.genesis {
    background-size: 130% auto;
  }

  .section.e1-digital-collectibles.partner {
    background-size: 160% auto;
  }

  .opensea-link {
    padding-left: 22px;
  }
  
  .opensea-logo {
    width: 18px;
    height: 18px;
    margin: 0 0 0 -28px;
  }
}

@media screen and (max-width: 900px) {
  h1.genesis-heading {
    font-size: 4em;
    text-shadow: 0 0 1.3rem rgba(0, 0, 0, 0.2);
  }
}

@media screen and (max-width: 600px) {
  .section.e1-digital-collectibles.genesis {
    background-size: 185% auto;
  }

  .section.e1-digital-collectibles.partner {
    background-size: 185% auto;
  }
}

@media screen and (max-width: 525px) {
  h1.genesis-heading {
    font-size: 6em;
  }
}

@media screen and (max-width: 500px) {
  .section.e1-digital-collectibles.genesis {
    background-size: 240% auto;
    background-position: center -90px;
  }

  .section.e1-digital-collectibles.partner {
    background-size: 240% auto;
    background-position: center -90px;
  }

  .section.padding-tb.genesis-intro.partner {
    padding-top: 0em;

  }
}

@media screen and (max-width: 400px) {

  h1.genesis-heading {
    font-size: 5em;
  }
}

@media screen and (max-width: 350px) {

  h1.genesis-heading {
    font-size: 4em;
  }
}


/* Min Font Size */
@media screen and (max-width: 991px) {
  body {
    font-size: 12px;
  }

  .artist-images-row-left,
  .artist-images-row-right {
    margin-top: 60px;
  }

  .section.padding-tb.e1-genesis-artists {
    padding-top: 0em;
    padding-bottom: 3em;
  }

  .section.padding-tb.genesis-intro {
    padding-bottom: 0;

  }
}

/* @media only screen and (min-width: 200px) and (max-width: 380px) {
  .spacer-wrapper {
      justify-content: center;
  }
} */

@media only screen and (min-width: 1400px) and (max-width: 1499px) {
  body {
    /* font-size: 0.9vw; */
  }

}

@media only screen and (min-width: 991px) and (max-width: 1500px) {

  .artist-image {
    margin-right: 20px;
  }

  .artist-info .paragraph {
    padding-left: 20px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  body {
    /* font-size: 0.9vw; */
  }
}

@media only screen and (min-width: 1500px) and (max-width: 1670px) {
  body {
    font-size: 0.85vw;
  }

  .container {
    padding-left: 14em;
    padding-right: 14em;
  }

  .nav-container {
    padding-left: 14em;
    padding-right: 14em;
  }

}

@media only screen and (min-width: 1680px) and (max-width: 1918px) {
  body {
    font-size: 0.85vw;
  }

  .container {
    padding-left: 15em;
    padding-right: 15em;
  }

  .nav-container {
    padding-left: 15em;
    padding-right: 15em;
  }
}

@media only screen and (min-width: 1919px) and (max-width: 2048px) {
  body {
    font-size: 0.75vw;
  }
}

@media only screen and (min-width: 2049px) and (max-width: 2439px) {
  body {
    font-size: 0.7vw;
  }

  .container {
    padding-left: 26em;
    padding-right: 26em;
  }

  .nav-container {
    padding-left: 26em;
    padding-right: 26em;
  }
}

@media only screen and (min-width: 2440px) and (max-width: 2560px) {
  body {
    font-size: 0.65vw;
  }

  .container {
    padding-left: 30em;
    padding-right: 30em;
  }

  .nav-container {
    padding-left: 30em;
    padding-right: 30em;
  }
}

@media only screen and (min-width: 2561px) and (max-width: 2761px) {
  body {
    font-size: 0.65vw;
  }

  .container {
    padding-left: 30em;
    padding-right: 30em;
  }

  .nav-container {
    padding-left: 30em;
    padding-right: 30em;
  }
}

@media only screen and (min-width: 2762px) and (max-width: 2962px) {
  body {
    font-size: 0.65vw;
  }

  .container {
    padding-left: 30em;
    padding-right: 30em;
  }

  .nav-container {
    padding-left: 30em;
    padding-right: 30em;
  }
}

@media only screen and (min-width: 2963px) and (max-width: 3163px) {
  body {
    font-size: 0.65vw;
  }

  .container {
    padding-left: 30em;
    padding-right: 30em;
  }

  .nav-container {
    padding-left: 30em;
    padding-right: 30em;
  }
}

@media only screen and (min-width: 3164px) and (max-width: 3364px) {
  body {
    font-size: 0.65vw;
  }

  .container {
    padding-left: 30em;
    padding-right: 30em;
  }

  .nav-container {
    padding-left: 30em;
    padding-right: 30em;
  }
}

@media only screen and (min-width: 3365px) and (max-width: 3565px) {
  body {
    font-size: 0.65vw;
  }

  .container {
    padding-left: 30em;
    padding-right: 30em;
  }

  .nav-container {
    padding-left: 30em;
    padding-right: 30em;
  }
}

@media only screen and (min-width: 3566px) and (max-width: 3766px) {
  body {
    font-size: 0.65vw;
  }

  .container {
    padding-left: 30em;
    padding-right: 30em;
  }

  .nav-container {
    padding-left: 30em;
    padding-right: 30em;
  }
}

@media only screen and (min-width: 3767px) and (max-width: 3967px) {
  body {
    font-size: 0.65vw;
  }

  .container {
    padding-left: 30em;
    padding-right: 30em;
  }

  .nav-container {
    padding-left: 30em;
    padding-right: 30em;
  }
}

@media only screen and (min-width: 3968px) and (max-width: 4168px) {
  body {
    font-size: 0.65vw;
  }

  .container {
    padding-left: 30em;
    padding-right: 30em;
  }

  .nav-container {
    padding-left: 30em;
    padding-right: 30em;
  }
}

@media only screen and (max-height: 850px) {
  .container.hero .social-link-wrapper {
    bottom: 7px;

  }

  .container.hero .social-link-wrapper .social-link,
  .container.hero .social-link-wrapper .social-link:hover {
    background-color: transparent !important;
    border: none;
    color: #000;
  }
}

@media only screen and (max-width: 550px) and (max-height: 850px) {
  .bottom-hero .spacer.right {
    display: none;
  }

  .container.hero .social-link-wrapper {

    justify-content: right;
    grid-column-gap: 0.1em;
  }

  .bottom-hero .spacer.right {
    display: none;
  }
}













.profile-link-wrapper {
  width: 100%;
  max-width: 1000px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;

}

.link-item-wrapper {
  width: 49%;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 20px;
  display: flex;
}

.link-button {
  width: 98%;
  height: 80px;
  color: #000;
  background-color: #111;
  border-radius: 2px;
  justify-content: space-between;
  align-items: center;
  padding-left: 70px;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  position: relative;
  box-shadow: 0 14px 30px -5px rgba(0, 0, 0, .13);
}

.link-button:hover {

  background-color: #333;


}

.link-icon-float {
  width: 60px;
  height: 60px;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  left: -10px;
  box-shadow: 0 9px 14px -4px rgba(82, 82, 82, .65);
}

.link-icon-float-image {
  border-radius: 2px;
  position: relative;
}

.link-icon-float-image.link-icon-float-image-invert {
  /* filter: invert(); */
  background: #000;
}

.link-icon-float-image {
  border-radius: 2px;
  position: relative;
}

.active-username,
.analytics-card-list-item-title,
.analytics-card-list-item-url,
.collab-email,
.edit-link-url,
.link-url,
.list-item-text,
.page-switch-button-text,
.user-item.text {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}

.link-url {
  opacity: 0.4;

}

@media only screen and (max-width: 650px) {
  .link-item-wrapper {
    width: 100%;
  }

  .plus {

    padding: 0 0.3em;
  }
}

@media only screen and (max-width: 450px) {
  .plus {

    padding: 0 0.1em 0 0;
    margin-left: -0.15em;
  }

  .partnership .logo {

    margin-left: -1em;
  }
}



















/* comparison table*/
.comparison-table-holder {
  margin: 22px 22px 58px;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #dae0e5;
  box-shadow: 0 4px 4px -2.5px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #bdc8e5;
}


.comparison-table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  font-size: 16px;

}

.comparison-table h3.pricing-title {
  margin: 18px 0;
  font-size: 18px;
}

.comparison-table h3.pricing-title img {
  height: 14px;
}

.comparison-table th,
.comparison-table td {
  text-align: left;
  border-bottom: 1px dotted #e0e3e8;
  padding: 8px;
}



.comparison-table tbody th {
  border-bottom-width: 1px;
  text-align: right;
  background: #fbfcfd;
  font-size: 14px;
  padding-right: 18px;
  border-right: 1px solid #e0e3e8;
  max-width: 230px;
  line-height: 18px;
  font-weight: 500;
  color: #111;
}

.comparison-table tbody th a {
  color: #111;
  position: relative;
  display: block;
  text-decoration: none;
  font-size: 16px;
}

.comparison-table tbody th a.icon:before {
  float: right;
  margin: 3px 0 0 8px;
  opacity: 0.3;
}

.comparison-table tbody th a .tip.right-tip {
  left: 98%;
  max-width: 200px;
  top: 30px;
}

.comparison-table td,
.comparison-table th {
  /* border: 1px solid #ddd;*/
  text-align: center;
}


.comparison-table thead th {
  background: transparent;
}

.comparison-table thead th.features-heading {
  text-align: right;
  padding-right: 28px;
  background: #f8f9fb;
  border-right: 1px solid #e0e3e8;
  color: rgba(0, 0, 0, 0.48);
  font-size: 17px;
  font-weight: 500;
  border-top-left-radius: 8px;
}

.comparison-table .green,
.comparison-table .blue,
.comparison-table .purple {
  width: 150px;
  color: #fff;
}

.comparison-table i.icon:before {
  font-size: 18px;
  line-height: 24px;
}

.comparison-table i.icon.icon_tick:before {
  color: #55b068;
}

.comparison-table i.icon.icon_close:before {
  color: #d83939;
}

.edge-holder .comparison-table-holder,
.enterprise-holder .comparison-table-holder {
  margin-top: 100px;
}

.pricing-price {
  margin: 28px auto 48px;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #dae0e5;
  box-shadow: 0 4px 4px -2.5px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #bdc8e5;
  padding: 28px 22px 18px 28px;
  max-width: 1000px;
  text-align: left;
}


.pricing-price .pricing-maintenance {
  display: inline-block;
}

.pricing-price .button.cta {
  float: right;
  margin: -6px 0 0 0;
}

.enterprise-holder .enterprise-logo {
  max-width: 400px;
  margin: 48px 38px 38px 38px;
}

.enterprise-holder p {
  max-width: 504px;
  margin: 20px auto 0;
  padding: 0 28px;
}


.product-wizzard .logo-ff img {
  width: 123px;
  height: 36px;
  margin: 16px;
  z-index: 1;
  position: relative;
}

.product-wizzard .modal-header .logo-ff {
  width: auto;
  height: 42px;
  margin: 1px 10px 0 8px;
  top: 2px;
}


/* tooltips - for demo only */
.tip {
  text-shadow: none;
  font-weight: 400;
  background: rgba(26, 32, 39, 0.88);
  padding: 18px 12px;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  display: inline-block;
  top: 50px;
  left: 50%;
  text-align: center;
  white-space: nowrap;
  min-width: 210px;
  text-transform: none;
  opacity: 0;
  max-width: 400px;
  z-index: 2147483640;
  pointer-events: none;
  transition-delay: 0s;
  white-space: normal;

  -webkit-transform: translate(-50%, 30px);
  transform: translate(-50%, 30px);
  -webkit-transition: all 0.3s cubic-bezier(.68, .07, .37, .94);
  -moz-transition: all 0.3s cubic-bezier(.68, .07, .37, .94);
  -ms-transition: all 0.3s cubic-bezier(.68, .07, .37, .94);
  transition: all 0.3s cubic-bezier(.68, .07, .37, .94);
  position: absolute;
}

.tip.cta {
  background: var(--primary-color);
}

/*.tip,*/
.button.show .tip,
.button:hover .tip,
.inline-token:hover .tip,
.tip.show,
.toggle-switch:hover .tip,
a:hover .tip,
button:hover .tip {
  opacity: 1;
  -webkit-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
  pointer-events: auto;
  transition-delay: 0.2s;
}

/*.top-tip,*/
.button .tip.top-tip,
.inline-token .tip.top-tip,
a .tip.top-tip,
button .tip.top-tip {
  top: auto;
  bottom: 50px;
  -webkit-transform: translate(-50%, -30px);
  transform: translate(-50%, -30px);
}

.button:hover .tip.top-tip,
.inline-token:hover .tip.top-tip,
.tip.top-tip.show,
a:hover .tip.top-tip,
button:hover .tip.top-tip {
  -webkit-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
}

/*.left-tip,*/
.button .tip.left-tip,
.toggle-switch .tip.left-tip,
a .tip.left-tip,
button .tip.left-tip {
  bottom: auto;
  left: 0;
  top: -30px;
  -webkit-transform: translate(-100%, -10px);
  transform: translate(-100%, -10px);
  padding: 8px;
}

.button.show .tip.left-tip,
.button:hover .tip.left-tip,
.tip.left-tip.show,
.toggle-switch:hover .tip.left-tip,
a:hover .tip.left-tip,
button:hover .tip.left-tip {
  -webkit-transform: translate(-100%, 10px);
  transform: translate(-100%, 10px);
}

.button .tip.left-tip:before,
.tip.left-tip:before,
a .tip.left-tip:before,
button .tip.left-tip:before {
  margin: 15px auto 0;
  left: auto;
  right: -15px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.button:hover .tip:before,
.button .tip:before,
.tip:before,
a .tip:before,
button .tip:before {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid rgba(26, 32, 39, 0.88);
  content: "";
  position: absolute;
  margin: -28px auto 0;
  left: calc(50% - 10px);
}

.button .tip.cta:before,
a .tip.cta:before,
button .tip.cta:before {
  border-bottom: 10px solid var(--primary-color);
}

.button .tip.top-tip:before,
.inline-token .tip.top-tip:before,
a .tip.top-tip:before,
button .tip.top-tip:before {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 0 solid transparent;
  border-top: 10px solid rgba(26, 32, 39, 0.88);
  bottom: -10px;
}

.tip-content {
  width: 100%;
  color: #eee;

}

.tip-content p {
  font-size: 15px;
  line-height: 17px;
}

.button .tip.top-tip.cta:before,
a .tip.top-tip.cta:before,
button .tip.top-tip.cta:before {
  border-top: 10px solid var(--primary-color);
}

.toggle-switch .tip.left-tip:before {
  margin-top: 5px;
}

.comparison-table thead th h3.pricing-title {
  text-shadow: 1px 1px 0.1rem rgba(255, 255, 255, 0.4);
}

.comparison-table thead th.col-basic {
  background-color: #ecd4d8;
  border-right: 1px solid #ecd4d8;
  border-top: 1px solid #fab3bf;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.9514399509803921) -10%, rgba(236, 212, 216, 1) 100%);
}

.comparison-table thead th.col-bronze {
  background-color: #eceae8;
  border-right: 1px solid #eceae8;
  border-top: 1px solid #d9c6b3;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.9514399509803921) -10%, rgba(236, 234, 232, 1) 100%);
}

.comparison-table thead th.col-silver {
  background-color: #eeeeee;
  border-right: 1px solid #eeeeee;
  border-top: 1px solid #cecccc;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.9514399509803921) -10%, rgba(238, 238, 238, 1) 100%);
}

.comparison-table thead th.col-gold {
  background-color: #dfdcd0;
  border-right: 1px solid #dfdcd0;
  border-top: 1px solid #c4bea6;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.9514399509803921) -10%, rgba(223, 220, 208, 1) 100%);
}

.comparison-table thead th.col-platinum {
  background-color: #d9dcdf;
  border-right: 1px solid #d9dcdf;
  border-top: 1px solid #b3bdc7;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.9514399509803921) -10%, rgba(217, 220, 223, 1) 100%);
}

.comparison-table thead th.col-diamond {
  background-color: #d6e5e8;
  border-right: 1px solid #d6e5e8;
  border-top: 1px solid #aec9cf;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.9514399509803921) -10%, rgba(214, 229, 232, 1) 100%);
}

.comparison-table thead th.col-master {
  background-color: #d7e8d6;
  border-right: 1px solid #d7e8d6;
  border-top: 1px solid #a8c4a7;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.9514399509803921) -10%, rgba(215, 232, 214, 1) 100%);
}

.comparison-table thead th.col-legend {
  background-color: #d5d2e8;
  /* border-right: 1px solid #d5d2e8; */
  border-top: 1px solid #afaad0;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.9514399509803921) -10%, rgba(213, 210, 232, 1) 100%);
}





.comparison-table tbody td.col-basic {
  /* background-color: #faf4f5; */
  border-right: 1px solid #ecd4d8;
}

.comparison-table tbody td.col-bronze {
  /* background-color: #f9f8f5; */
  border-right: 1px solid #eceae8;
}

.comparison-table tbody td.col-silver {
  /* background-color: #f8f8f8; */
  border-right: 1px solid #eeeeee;
}

.comparison-table tbody td.col-gold {
  /* background-color: #fdf6d9; */
  border-right: 1px solid #dfdcd0;
}

.comparison-table tbody td.col-platinum {
  /* background-color: #f3f6f9; */
  border-right: 1px solid #d9dcdf;
}

.comparison-table tbody td.col-diamond {
  /* background-color: #dbf7fb; */
  border-right: 1px solid #d6e5e8;
}

.comparison-table tbody td.col-master {
  /* background-color: #f6faf5; */
  border-right: 1px solid #d7e8d6;
}

.comparison-table tbody td.col-legend {
  /* background-color: #f7f6fb; */
  /* border-right: 1px solid #d5d2e8; */
}

/*accordian*/
.accordian {
  margin: 0 auto;
  width: 100%;
  text-align: left;
  float: left;
  border-bottom: 1px solid #dae0e5;
}

.ac-item {
  position: relative;
  width: 100%;
  border-top: 1px solid #dae0e5;
}

.ac-item label {
  font-size: 16px;
  color: #111;
  display: block;
  padding: 14px 0;
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.ac-item label.icon:before {
  margin: -3px 10px 0 0;
  vertical-align: middle;
  display: inline-block;
  margin: -9px 14px -6px 0;
  font-size: 28px;
}

.summary-container .ac-item input:checked~label.icon:before {
  color: var(--secondary-color);
  /*opacity: 0.4;*/
}

em.container-label {
  opacity: 0.4;
  padding-left: 10px;
  padding-right: 10px;
  text-transform: none;
}

/*.ac-item input:checked ~ label {
	border-bottom: 1px solid transparent;
}*/
.ac-item input:focus+label,
.ac-item label:hover {
  color: var(--secondary-color);
  cursor: pointer;
}

.ac-item-content {



  -webkit-transition: max-height 2s ease-in-out, padding 0.2s ease-in-out;
  transition: max-height 2s ease-in-out, padding 0.2s ease-in-out;
  max-height: 9999px;
  overflow: hidden;
  padding: 10px 0;
}

.ac-item input:checked ~ .ac-item-content {
  max-height: 0;
  -webkit-transition: max-height 0.8s cubic-bezier(0, 1, 0, 1) -0.4s, padding 0.1s ease-in-out;
  transition: max-height 0.8s cubic-bezier(0, 1, 0, 1) -0.4s, padding 0.1s ease-in-out;
  padding: 0;
  overflow: hidden;
}

.ac-item input + label:after {
  content: "\e905";
  font-family: 'icons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 2px 0 0;
  color: #62707c;
  transition: none;
  position: absolute;
  right: 14px;
  top: 14px;
  opacity: 0.5;
  -webkit-transition: all 0.6s cubic-bezier(0.17, 0.67, 0.16, 0.99) 0.6s;
  transition: all 0.6s cubic-bezier(0.17, 0.67, 0.16, 0.99) 0.6s;
  transform: rotate(90deg);
  /* hidden until C can get it working*/
  display: none;

}
.ac-item input+label:after {
  transform: rotate(270deg);
}
.ac-item input:checked~label:after {
  top: 13px;

  transform: rotate(90deg);
}

.ac-item-content ol.it-ordered-list {
  margin-left: 28px;
}

.ac-item input+label:after {
  display: block;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

.info-note {
  line-height: 1.3em;
  font-size: 14px;
  color: #888;
  text-align: center;
}

.info-note a {
  color: #888;
}

@media screen and (max-width: 1250px) {
  .comparison-table-holder {
    margin: 22px 0 58px;
  }

  .section.padding-tb.get-started .container {
    padding-left: 4em;
    padding-right: 4em;
  }
}

@media screen and (max-width: 900px) {

  .section.padding-tb.get-started .container {
    padding-left: 1em;
    padding-right: 1em;
  }

  .comparison-table h3.pricing-title {
    font-size: 14px;
  }
}

@media screen and (max-width: 850px) {
  .comparison-table thead {
    position: fixed;
    top: -9999px;
    left: -9999px;
  }

  .comparison-table tr {
    display: block;
    text-align: left;
    width: 100%;
    display: block;
    text-align: left;
    width: 100%;
  }

  .comparison-table td:nth-of-type(1):before {
    content: "Basic";
  }

  .comparison-table td:nth-of-type(2):before {
    content: "Bronze";
  }

  .comparison-table td:nth-of-type(3):before {
    content: "Silver";
  }

  .comparison-table td:nth-of-type(4):before {
    content: "Gold";
  }

  .comparison-table td:nth-of-type(5):before {
    content: "Platinum";
  }

  .comparison-table td:nth-of-type(6):before {
    content: "Diamond";
  }

  .comparison-table td:nth-of-type(7):before {
    content: "Master";
  }

  .comparison-table td:nth-of-type(8):before {
    content: "Legend";
  }

  .comparison-table td {
    display: block;
    text-align: left;
    width: 100%;
    position: relative;
    font-weight: 600;
    padding: 10px 20px 10px 30%;
    border-right: none !important;
    text-transform: uppercase;
    text-shadow: -1px -1px 2px rgba(255, 255, 255, 0.9);
    text-align: right;
  }

  .section.padding-tb.get-started {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .comparison-table i.icon:before {
   line-height: 14px;
}

.comparison-table td .icon.icon_tick,
.comparison-table td .icon.icon_close {
  top: 3px;
  position: relative;
}

  .comparison-table td.col-basic {
    background: linear-gradient(350deg, rgba(255, 255, 255, 0.9514399509803921) 50%, rgba(236, 212, 216, 1) 150%);
  }

  .comparison-table td.col-bronze {
    background: linear-gradient(350deg, rgba(255, 255, 255, 0.9514399509803921) 50%, rgba(236, 234, 232, 1) 150%);
  }

  .comparison-table td.col-silver {
    background: linear-gradient(350deg, rgba(255, 255, 255, 0.9514399509803921) 50%, rgba(238, 238, 238, 1) 150%);
  }

  .comparison-table td.col-gold {
    background: linear-gradient(350deg, rgba(255, 255, 255, 0.9514399509803921) 50%, rgba(223, 220, 208, 1) 150%);
  }

  .comparison-table td.col-platinum {
    background: linear-gradient(350deg, rgba(255, 255, 255, 0.9514399509803921) 50%, rgba(217, 220, 223, 1) 150%);
  }

  .comparison-table td.col-diamond {
    background: linear-gradient(350deg, rgba(255, 255, 255, 0.9514399509803921) 50%, rgba(214, 229, 232, 1) 150%);
  }

  .comparison-table td.col-master {
    background: linear-gradient(350deg, rgba(255, 255, 255, 0.9514399509803921) 50%, rgba(215, 232, 214, 1) 150%);
  }

  .comparison-table td.col-legend {
    background: linear-gradient(350deg, rgba(255, 255, 255, 0.9514399509803921) 50%, rgba(213, 210, 232, 1) 150%);
  }

  .comparison-table tr {
    background: #f5f9fc;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(245, 249, 252, 1) 100%);
    border: 1px solid #bdc8e5;
    margin-bottom: 20px;
    border-radius: 6px;
    box-shadow: 0 8px 8px -2.5px rgba(0, 0, 0, 0.1);
        overflow: hidden;
  }

  .comparison-table .icon.icon_info {
    width: 100%;
    padding: 4px 0 4px 18px;
    color: #eee;
    font-weight: 600;
  }

  .comparison-table tbody th a.icon:before {
    margin: 2px 0 0 8px;
    opacity: 1;
  }
  .heading {
    font-size: 40px;
    margin-bottom: 15px;
}
  .comparison-table-holder {
    border: none;
    box-shadow: none;
    margin: 0;
  }

  .comparison-table tbody th a .tip.right-tip {
    left: 35%;
    top: 40px;
  }

  .comparison-table tbody th {
    display: block;
    text-align: left;
    width: 100%;
    padding-left: 0;
    max-width: 100%;
    background: #111;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border: 1px solid #000;
  }

  .comparison-table td:before {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(50% - 38px);
    border-right: none;
    height: 100%;
    padding: 0 0 0 16px;
    content: "Row Label";
    line-height: 41px;
    text-align: left;
  }
 
}


/* CA */

.copy-container {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
}


#text-to-copy {
  padding: 0;
  font-size: 22px;
  width: 300px;
  border: none;
  /* border-radius: 4px; */
  background: transparent;
  color: #111;
  font-weight: bold;
  user-select: none!important;
  pointer-events: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#copy-button {
  padding: 6px 12px;
  font-size: 16px;
  color: #111;
  background: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

#copy-button:hover {
  background-color: #45a049;
  color: #fff;
}

#message {
  margin-top: 10px;
  font-size: 16px;

  background-color: #4caf50;
  color: white;
  position: relative;
  padding: 8px;
  border-radius: 8px;
  font-weight: bold;
  left: -78px;
  top: -5px;
}

.hidden {
  display: none;
}

@media screen and (max-width: 850px) {
  .copy-container {
    margin-bottom: 50px;
}
#copy-button {
  width: 100%;
  position: absolute;
  margin-top: 80px;
}
}


/* https://www.basedbunnies.xyz/ */