:root {
  --black: #121212;
  --soft-purple: #e0cffe;
  --grey--dark: #333;
  --grey--medium: #939393;
  --dark-slate-blue: #402e70;
  --grey--lighter: #f1f1f1;
  --white: white;
}

/* Lizard Button Styles */
.circle {
  border-radius: 50%;
}

.large-button {
  width: 200px;
  height: 190px;
  position: absolute;
  background: url('../images/transparent_button_sprite.png') no-repeat;
  background-position: -5px -5px;
  border: 0;
  display: block;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

.large-button:focus {
  background: url('../images/transparent_button_sprite.png') no-repeat;
  background-position: -5px -5px;
}

.large-button:active {
  background: url('../images/transparent_button_sprite.png') no-repeat;
  background-position: -215px -5px;
}

.large-button-background {
  width: 188px;
  height: 174px;
  margin-top: 7px;
  margin-left: 6px;
  position: absolute;
}

.large-button-shadow {
  width: 200px;
  height: 190px;
  background: url('../images/transparent_button_shadow.png') no-repeat;
}

.loader-large {
  display: none;
  position: absolute;
  border: 8px solid transparent;
  border-top: 8px solid #747474;
  border-radius: 50%;
  width: 190px;
  height: 190px;
  margin: -1px 0 0 4px;
  animation: spin 2s linear infinite;
}

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

.zard-button-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

/* Pie Chart Styles */
.tokenomic-chart-block {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.tokenomic-chart-block svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* Mobile responsive adjustments */
@media screen and (max-width: 768px) {
  .tokenomic-chart-block {
    max-width: 100%;
    padding: 0 10px;
  }
  
  .label {
    font-size: 12px;
    stroke-width: 5px;
  }
  
  #chart-tooltip {
    font-size: 13px;
    padding: 8px 10px;
  }
}

@media screen and (max-width: 480px) {
  .tokenomic-chart-block {
    padding: 0 5px;
    margin-top: 50px;
  }
  
  .label {
    font-size: 12px;
    stroke-width: 4px;
  }
  
  .leader {
    stroke-width: 2.5px;
  }
  
  #chart-tooltip {
    font-size: 12px;
    padding: 6px 8px;
  }
}

.slice {
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease;
  stroke: var(--black);
  stroke-width: 2.5px;
  filter: url(#roughen);
}

.leader {
  stroke: var(--black);
  stroke-width: 2.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url(#roughen);
}

.label {
  font-size: 16px;
  fill: #0d0b12;
  font-weight: 900;
  letter-spacing: .01em;
  paint-order: stroke;
  stroke: #fff;
  stroke-width: 6px;
  stroke-linejoin: round;
  filter: url(#roughen);
}

#chart-tooltip {
  position: fixed;
  background: #fff;
  color: #111;
  padding: 8px 10px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  font-size: 12px;
  line-height: 1.2;
  display: none;
  pointer-events: none;
  border: 2px solid var(--soft-purple);
}

.pixelated {
  filter: url(#pixelate);
}

body {
  background-color: var(--black);
  font-family: Oswald, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 0;
  font-size: 140px;
  font-weight: 700;
  line-height: 130px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

h3 {
  letter-spacing: 12px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 54px;
}

h4 {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}

h5 {
  text-transform: uppercase;
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
}

p {
  color: #9b7ecd;
  margin-top: 4px;
  margin-bottom: 1%;
  font-size: 16px;
  line-height: 24px;
}

a {
  color: var(--soft-purple);
  margin-top: 10px;
  margin-bottom: 10px;
  text-decoration: underline;
}

.link {
  color: #5540fb;
  font-weight: 700;
  text-decoration: none;
}

.label {
  color: var(--grey--dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.label.cc-purple {
  color: var(--soft-purple);
}

.label.cc-grey {
  color: var(--grey--medium);
}

.paragraph {
  color: var(--grey--medium);
  font-size: 16px;
  line-height: 28px;
}

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

.button {
  background-color: var(--soft-purple);
  color: var(--dark-slate-blue);
  padding: 12px 24px;
  font-weight: 700;
}

.button:hover {
  box-shadow: 4px 4px 20px #0000002b;
}

.button.cc-jumbo {
  letter-spacing: 1px;
  padding: 18px 36px;
}

.button.cc-geadient-pulm {
  background-image: linear-gradient(231deg, #764ba2, #667eea);
}

.button.cc-geadient-pulm.radius {
  background-image: linear-gradient(231deg, #764ba2, #667eea);
  transition: transform .2s;
}

.button.cc-geadient-pulm.radius:hover {
  transform: scale(1.05);
}

.button.radius {
  border-radius: 6px;
}

.icon {
  margin-right: 0;
  padding: 4px;
  display: block;
}

.tag {
  background-color: var(--grey--lighter);
  border-radius: 4px;
  flex-flow: row;
  align-items: center;
  padding-left: 4px;
  padding-right: 16px;
  display: flex;
  position: static;
}

.text-tag {
  color: var(--black);
  margin-left: 8px;
  font-weight: 600;
}

.text-tag:hover {
  color: #5540fb;
}

.section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  display: flex;
  position: static;
}

.container {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: auto;
  margin-bottom: 60px;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.icon-big {
  background-color: var(--soft-purple);
  border-radius: 0;
  order: 1;
  padding: 14px 14px 14px 18px;
  transition: transform .2s;
  display: inline-block;
  box-shadow: 1px 1px 4px #0003;
}

.icon-big:hover {
  background-color: #685625;
  transform: scale(1.05);
}

.icon-big:active {
  background-color: #5d512f;
}

.section-headline {
  flex-direction: row;
  padding-right: 8px;
  display: flex;
}

.text-headline {
  align-items: center;
  margin-left: 18px;
  display: flex;
}

.wraper {
  width: 100%;
  max-width: none;
  margin-top: 80px;
  padding-top: 0;
  position: static;
}

.divider {
  background-color: var(--grey--dark);
  color: var(--grey--dark);
  width: 100%;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.selector {
  color: var(--white);
  background-color: #e55fb9;
  border-radius: 4px;
  padding-left: 9px;
  padding-right: 9px;
  font-size: 12px;
  line-height: 32px;
}

.div-block {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.color {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}

.color.cc-black {
  background-color: var(--black);
}

.color.cc-dark-grey {
  background-color: var(--grey--dark);
  color: var(--grey--dark);
}

.color.cc-medium-grey {
  background-color: var(--grey--medium);
  color: var(--black);
}

.color.cc-light-grey {
  background-color: var(--grey--lighter);
}

.color.cc-main-1 {
  background-color: var(--soft-purple);
}

.color.cc-main-2 {
  background-color: var(--dark-slate-blue);
}

.color.cc-white {
  background-color: var(--white);
}

.color.cc-pulm-light {
  background-color: #667eea;
}

.color.cc-pulm-dark {
  background-color: #764ba2;
}

.color.cc-forest-light {
  background-color: #45e994;
}

.color.cc-forest-dark {
  background-color: #23bcba;
}

.color.cc-sunset-light {
  background-color: #e3bf54;
}

.color.cc-sunset-dark {
  background-color: #fb8332;
}

.styles-wrap {
  border: 1px solid var(--grey--lighter);
  padding: 16px;
}

._3-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 32px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: start center;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 20px;
  display: grid;
}

.icon-small {
  background-color: var(--grey--lighter);
  border-radius: 8px;
  padding: 12px;
  display: inline-block;
}

.step-wrap {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 20px;
  margin-right: 0;
  display: flex;
}

.step-wrap.full {
  width: 100%;
}

.style-guide-heading {
  margin-bottom: 100px;
  margin-left: 0;
}

.sticky-nav {
  z-index: 9999;
  padding: 16px 20px;
  position: sticky;
  top: 0;
  box-shadow: 1px 1px 3px #0003;
}

.nav-grid {
  grid-column-gap: 30px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content max-content max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
}

.nav-logo-link {
  align-items: center;
  height: 60px;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  display: flex;
}

.nav-link {
  color: #764ba2;
  margin-left: 0;
  margin-right: 0;
  padding: 10px 0;
  font-weight: 700;
  text-decoration: none;
  display: block;
}

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

.logo {
  border-radius: 0%;
  position: relative;
}

.nav-wrap {
  align-self: center;
  width: 90%;
  max-width: none;
  padding-top: 0;
  position: static;
}

.style-guide-conatainer {
  justify-content: space-between;
  display: flex;
}

.footer {
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  padding-top: 60px;
  padding-bottom: 40px;
  display: flex;
}

.color-wrap {
  width: 100%;
  height: 40px;
  margin-bottom: 40px;
}

.cc-white {
  color: var(--white);
}

.cc-purple {
  color: #5540fb;
}

.tag-2 {
  background-color: var(--grey--lighter);
  color: var(--white);
  background-image: linear-gradient(225deg, #667eea, #764ba2);
  border-radius: 4px;
  flex-flow: row;
  align-items: center;
  padding-left: 4px;
  padding-right: 16px;
  display: flex;
  position: static;
}

.tag-2.ui {
  background-image: linear-gradient(225deg, #1e90ff, #5540fb);
  margin-right: 10px;
}

.wrapper {
  background-color: #0000;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  max-width: 100%;
  height: 100vh;
  padding: 0 10px 70px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.body {
  background-color: var(--black);
}

.film-box {
  border: 0px solid var(--white);
  background-color: var(--black);
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.film {
  align-items: flex-start;
  display: flex;
}

.film.bottom {
  align-items: flex-end;
}

.box-small {
  background-color: #ffffff8f;
  border-radius: 4px;
  width: 20px;
  height: 16px;
}

.text-marquee {
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.outline-text {
  color: #0000;
  font-weight: 900;
  line-height: 60px;
}

.inline-text {
  letter-spacing: 4.5px;
  flex: 1;
  width: 100%;
  margin: 0;
  font-size: 1.6vw;
  font-weight: 900;
  line-height: 46px;
}

.line-ver {
  background-color: var(--soft-purple);
  transform-origin: 50% 0;
  align-self: center;
  width: 10px;
  height: 200px;
}

.line-ver.first, .line-ver.first.aniamation {
  transform-origin: 50% 0;
  height: 100px;
}

.line-ver.short {
  height: 125px;
  margin-top: -10px;
}

.line-ver.long {
  height: 400px;
}

.line-ver.extra-short {
  height: 40px;
}

.line-ver.origin-botttom {
  transform-origin: 50% 100%;
}

.line-ver.med {
  height: 250px;
}

.line-ver.short-bottom {
  height: 100px;
  margin-bottom: -10px;
}

.line-ver.short-copy {
  height: 100px;
  margin-top: 0;
  margin-bottom: -10px;
}

.line-ver.margin-top {
  margin-top: -10px;
}

.sec {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
  position: static;
  inset: auto 0% 0%;
}

.bg-art {
  z-index: -1;
  opacity: 1;
  background-color: #4c2e83;
  background-image: linear-gradient(#4c2e83b3, #4c2e83b3), url('../images/image-19-3-1.png');
  background-position: 0 0, 0 0;
  background-size: auto, auto;
  position: fixed;
  inset: 0%;
}

.copyright-footer {
  justify-content: center;
  width: 60%;
  margin-top: 20px;
  text-decoration: none;
  display: flex;
}

.copyright {
  color: #667eea;
  margin-left: 10px;
  margin-right: 10px;
  font-family: Pixelify Sans, sans-serif;
  font-size: 11px;
  text-decoration: none;
}

.container-scrolling {
  z-index: 1;
  transform-origin: 50% 0;
  justify-content: center;
  align-items: flex-end;
  margin-top: 40px;
  margin-bottom: 0;
  padding-bottom: 0;
  display: flex;
  position: relative;
  inset: auto 0% 0%;
}

.text-content {
  flex: 1;
  width: 20%;
}

.text-content-wrap {
  width: 100%;
  display: flex;
}

.cc-scroll {
  color: var(--soft-purple);
  display: inline-block;
}

.scroll {
  transform-origin: 50% 0;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  padding-bottom: 30px;
  display: flex;
  position: absolute;
  bottom: 0;
}

.scroll-text {
  overflow: hidden;
  transform: rotate(90deg);
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 400px;
  display: flex;
}

.heading {
  color: var(--soft-purple);
}

.flex {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.flex.hor {
  justify-content: center;
}

.flex.hor.space-bwtween {
  justify-content: space-between;
  align-items: center;
}

.flex.hor.space-bwtween.top {
  align-items: flex-start;
}

.flex.hor.left {
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-end;
}

.flex.hor.middle {
  justify-content: space-between;
  align-items: stretch;
}

.flex.hor.center {
  justify-content: center;
}

.flex.left {
  justify-content: flex-end;
}

.flex.ver {
  flex-direction: column;
  align-items: stretch;
}

.flex.ver.left {
  width: 100%;
}

.flex.ver.center {
  color: var(--soft-purple);
  justify-content: center;
  align-items: center;
}

.flex.ver.quarter {
  align-items: flex-end;
}

.flex.ver.half {
  width: 50%;
}

.flex.ver.half-right {
  align-items: flex-end;
  width: 49%;
}

.flex.ver.half-right.down {
  justify-content: flex-end;
  width: 50%;
}

.flex.ver.margin-24 {
  margin-right: 24px;
}

.flex.right {
  justify-content: space-between;
  align-self: flex-end;
  margin-left: 0%;
}

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

.flex.half {
  width: 51.4%;
}

.flex.center-2 {
  justify-content: space-between;
  align-items: center;
  padding-right: 0;
}

.line-hor {
  background-color: var(--soft-purple);
  width: 100%;
  height: 10px;
}

.line-hor.quarter {
  width: 51.2%;
}

.line-hor.quarter.origin-right {
  width: 50%;
}

.line-hor.quarter-2 {
  width: 51.3%;
}

.line-hor.quarter-2.origin-right {
  width: 50%;
}

.line-hor.origin-left {
  transform-origin: 0%;
}

.line-hor.origin-left.half-line {
  width: 50%;
  display: block;
}

.line-hor.origin-right {
  transform-origin: 100%;
}

.line-hor.quarter-2-copy {
  width: 51.4%;
}

.line-hor.quarter-2-copy.origin-right {
  width: 50%;
}

.line-hor.extra-short-2 {
  width: 50px;
}

.line-hor.extra-short-3 {
  width: 30px;
  margin-right: 20px;
}

.line-container {
  width: 100%;
}

.container-flex {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
  display: flex;
}

.line-container-copy {
  transform-origin: 50% 0;
  justify-content: center;
  width: 40%;
  display: flex;
}

.text {
  color: var(--soft-purple);
  overflow: hidden;
}

.text.top {
  align-self: flex-start;
}

.text.margin-right {
  text-align: right;
  margin-right: 20px;
}

.text.margin-right.top {
  width: 45%;
}

.text.margin-left {
  margin-left: 20px;
}

.text.margin-left.top {
  width: 100%;
}

.text.margin-left.top.center-align {
  text-align: center;
  margin-top: 20px;
}

.text.margin-left.top._70 {
  width: 70%;
  margin-top: 30px;
}

.text.margin-5-left {
  margin-left: 5px;
  padding-left: 7px;
  padding-right: 12px;
}

.text.margin-5-right {
  text-align: right;
  margin-left: 0;
  margin-right: 5px;
  padding-left: 7px;
  padding-right: 7px;
}

.text.wrap {
  color: #402e70;
  text-align: center;
  background-color: #e0cffe;
  padding: 8px 16px 8px 24px;
}

.rel {
  position: relative;
}

.line-ver-copy {
  transform-origin: 50% 0;
  background-color: #0000;
  align-self: center;
  width: 10px;
  height: 200px;
}

.rotation-hero-text {
  z-index: 2;
  position: relative;
}

.rotation-hero-text-bg {
  z-index: 1;
  opacity: .66;
  filter: blur(14px) brightness(0%);
  position: absolute;
  bottom: 33%;
}

.resources-block {
  color: #fff;
  text-align: left;
  align-self: flex-start;
  width: 100%;
  margin-top: 220px;
}

.heading-2 {
  color: var(--dark-slate-blue);
  font-family: Barriecito, sans-serif;
}

.button-block {
  z-index: 99999;
  display: inline-block;
  position: absolute;
  inset: 2% 2% auto auto;
}

.heading-3, .heading-4 {
  font-family: Barriecito, sans-serif;
}

.paragraph-2 {
  font-family: Pixelify Sans, sans-serif;
  font-size: 22px;
}

.heading-5, .heading-6, .heading-7 {
  font-family: Barriecito, sans-serif;
}

.paragraph-3 {
  margin-top: 14px;
  font-family: Pixelify Sans, sans-serif;
  font-size: 22px;
}

.tab {
  color: var(--white);
  text-align: center;
  background-color: #0000;
  width: 20%;
  font-size: 20px;
}

.tab.w--current {
  color: var(--soft-purple);
  white-space: nowrap;
  background-color: #915b5b00;
  width: 20%;
  font-style: italic;
  overflow: hidden;
}

.hero-text {
  color: #fff;
  text-align: left;
  width: 100%;
  font-family: Pixelify Sans, sans-serif;
  font-size: 20px;
  line-height: 28px;
}

.list {
  color: #fff;
  font-family: Pixelify Sans, sans-serif;
  font-size: 20px;
  line-height: 30px;
}

.tabs {
  flex-flow: column;
  align-items: center;
  height: 80vh;
  display: flex;
}

.tab-pane {
  height: 100%;
}

.h3 {
  color: #fff;
  text-align: center;
  font-family: Barriecito, sans-serif;
  font-size: 70px;
}

.h3.title {
  margin-bottom: 20px;
}

.tab-text {
  width: 50%;
  padding: 20px 40px;
}

.tabs-content {
  width: 70%;
  height: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}

.div-block-3 {
  border-radius: 0 20px 20px 0;
  justify-content: flex-end;
  align-items: center;
  width: 40%;
  height: 100%;
  padding: 20px 20px 20px 100px;
  display: flex;
}

.image-8 {
  border-radius: 16px;
  height: 100%;
}

.tabs-menu {
  color: #fff;
  background-image: url('../images/lizard_bar_transparent.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 10px 40px;
  justify-content: space-between;
  align-items: stretch;
  width: 70%;
  padding: 10px;
  font-family: Barriecito, sans-serif;
  display: flex;
}

.tab-container {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  align-items: center;
  height: 100%;
  display: flex;
}

.roadmap-tabs-copy {
  padding-top: 20px;
  padding-bottom: 20px;
}

.text-block {
  color: var(--white);
}

.spacer {
  height: 50px;
}

.heading-9, .heading-10, .heading-11 {
  font-family: Barriecito, sans-serif;
}

.zard-button-container {
  border-radius: 0 20px 20px 0;
  justify-content: flex-end;
  align-items: center;
  width: 40%;
  height: 100%;
  padding: 20px 20px 20px 100px;
  display: flex;
}

.navbar-logo-left {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #fff;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: inline-grid;
}

.navbar-logo-left-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
}

.navbar-logo-left-container.shadow-three {
  width: 100%;
  max-width: 1140px;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.container-2 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

.nav-menu-two {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-link-2 {
  color: #fff;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-family: Pixelify Sans, sans-serif;
  font-size: 18px;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-2:hover {
  color: #1a1b1fbf;
}

.nav-link-2:focus-visible, .nav-link-2[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible, .nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible, .nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-divider {
  background-color: #e4ebf3;
  width: 1px;
  height: 22px;
  margin-left: 15px;
  margin-right: 15px;
}

.nav-link-accent {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 20px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-accent:hover {
  color: #1a1b1fbf;
}

.mobile-margin-top-10 {
  font-family: Pixelify Sans, sans-serif;
  font-size: 20px;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 16px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.button-2 {
  color: #402e70;
  background-color: #e0cffe;
  padding: 12px 24px;
  font-weight: 700;
}

.button-2:hover {
  box-shadow: 4px 4px 20px #0000002b;
}

.line-hor-2 {
  background-color: #e0cffe;
  width: 100%;
  height: 10px;
}

.line-hor-2.origin-left {
  transform-origin: 0%;
}

.nav-menu {
  background-color: #422e75;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-link-3 {
  color: var(--white);
  font-family: Pixelify Sans, sans-serif;
  font-size: 20px;
}

.nav-link-3:hover {
  color: var(--soft-purple);
}

.nav-link-4 {
  color: var(--white);
  font-family: Pixelify Sans, sans-serif;
  font-size: 20px;
}

.nav-link-4:hover {
  color: var(--soft-purple);
}

.nav-link-5 {
  color: var(--white);
  font-family: Pixelify Sans, sans-serif;
  font-size: 20px;
}

.nav-link-5:hover {
  color: var(--soft-purple);
}

.social-icon {
  padding-left: 10px;
  padding-right: 10px;
}

@media screen and (max-width: 991px) {
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .box-small {
    border-radius: 2px;
    width: 13px;
    height: 11px;
  }

  .inline-text {
    font-size: 1.9vw;
  }

  .text-content {
    width: 25%;
  }

  .text-content.tablet {
    display: none;
  }

  .line-container {
    width: 55%;
  }

  .container-2 {
    max-width: 728px;
  }

  .nav-menu-wrapper {
    background-color: #0000;
  }

  .nav-menu-two {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-link-2 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .menu-button {
    padding: 12px;
  }

  .menu-button.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 70px;
  }

  h3 {
    font-size: 32px;
    line-height: 42px;
  }

  h4 {
    font-size: 11px;
  }

  .icon-big {
    padding: 10px 12px 12px 14px;
  }

  .wraper {
    width: 90%;
  }

  .div-block {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .styles-wrap {
    position: relative;
  }

  ._3-wrap {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .sticky-nav {
    position: relative;
  }

  .nav-grid {
    text-align: center;
    grid-template-columns: 1fr max-content;
  }

  .footer {
    padding: 40px 20px;
  }

  .list-item, .list-item-2 {
    display: none;
  }

  .wrapper {
    padding-top: 60px;
  }

  .film-box.mobile {
    display: none;
  }

  .inline-text {
    font-size: 2.5vw;
  }

  .line-ver.first {
    align-self: flex-end;
  }

  .sec {
    align-items: flex-end;
  }

  .container-scrolling {
    justify-content: flex-end;
  }

  .text-content {
    width: 33.333%;
  }

  .text-content.mobile-v {
    display: none;
  }

  .cc-scroll {
    margin-bottom: 0;
  }

  .scroll-text {
    transform: translate(24px)rotate(90deg);
  }

  .line-container {
    width: 60%;
  }

  .resources-block {
    width: 80%;
    margin-left: 10%;
  }

  .navbar-logo-left-container {
    max-width: 100%;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu-two {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-link-2 {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav-divider {
    width: 200px;
    max-width: 100%;
    height: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .nav-link-accent {
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }
}

@media screen and (max-width: 479px) {
  .icon {
    margin-right: 0;
  }

  .wraper, .div-block {
    position: relative;
  }

  .styles-wrap {
    width: 100%;
    max-width: 100%;
    position: relative;
  }

  ._3-wrap {
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .style-guide-heading {
    max-width: 100%;
  }

  .sticky-nav {
    padding: 0;
    display: flex;
  }

  .nav-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: 60px;
    grid-template-columns: 1.5fr 1fr;
    grid-auto-flow: row;
    justify-content: space-between;
  }

  .nav-logo-link {
    border-top: 1px solid #c4c4c4;
  }

  .nav-logo-link.w--current {
    height: 60px;
    display: flex;
  }

  .nav-link {
    border-top: 1px solid #c4c4c4;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-wrap {
    width: 95%;
  }

  .style-guide-conatainer {
    position: relative;
  }

  .footer {
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
  }

  .wrapper {
    flex-flow: column;
    max-width: 100%;
  }

  .inline-text {
    font-size: 5.5vw;
  }

  .line-ver.short-bottom {
    height: 120px;
  }

  .copyright-footer {
    width: 100%;
  }

  .text-content {
    width: 50%;
  }

  .text-content.mobile-h {
    display: none;
  }

  .utility-page-content {
    width: 300px;
  }

  .flex.hor.space-bwtween {
    align-items: center;
  }

  .line-container {
    width: 98%;
  }

  .text.margin-left.top._70 {
    margin-top: 5px;
  }

  .resources-block {
    margin-left: 5%;
  }

  .button-block {
    background-color: #fff0;
    width: 100%;
    top: 1%;
    left: 2%;
    right: auto;
  }

  .heading-3 {
    font-size: 60px;
    line-height: 80px;
  }

  .paragraph-2 {
    font-size: 16px;
  }

  .tab {
    width: 100%;
  }

  .tab.w--current {
    color: var(--soft-purple);
    width: 100%;
  }

  .hero-text, .list {
    font-size: 16px;
  }

  .tabs, .tab-pane {
    height: auto;
  }

  .h3 {
    font-size: 20px;
  }

  .h3.title {
    line-height: 40px;
  }

  .tab-text {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .tabs-content {
    height: auto;
    padding-bottom: 40px;
  }

  .div-block-3 {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    width: 100%;
    padding: 10px;
  }

  .tabs-menu {
    background-size: auto;
    border-radius: 20px;
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
  }

  .tab-container {
    flex-flow: column;
    height: auto;
  }

  .heading-8 {
    font-size: 60px;
    line-height: 80px;
  }

  .zard-button-container {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    width: 100%;
    padding: 10px;
  }

  .navbar-logo-left-container.shadow-three {
    z-index: 0;
  }

  .container-2 {
    max-width: none;
  }

  .navbar-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: block;
  }

  .nav-menu-wrapper {
    z-index: 3;
    width: 100vw;
    margin-left: auto;
    margin-right: auto;
    position: fixed;
  }

  .nav-menu-two {
    background-color: #ffffffb5;
    flex-direction: column;
    width: 100%;
  }

  .nav-link-2 {
    color: #3f2d6f;
  }

  .icon-2 {
    color: #fff;
  }

  .nav-menu {
    z-index: 999;
    background-color: #ffffffd6;
  }

  .nav-link-3, .nav-link-4, .nav-link-5 {
    color: var(--dark-slate-blue);
    font-family: Pixelify Sans, sans-serif;
    font-size: 22px;
  }

  .container-3 {
    background-color: #462e7800;
  }

  .icon-3 {
    color: #fff;
  }

  .menu-button-2 {
    background-color: #c8c8c800;
  }

  .menu-button-2.w--open {
    background-color: #0000;
  }

  .navbar {
    background-color: #ddd0;
  }
}

#w-node-_3dc044a7-57a7-f688-1ac0-5a35a645fe55-a645fe51 {
  justify-self: start;
}

@media screen and (max-width: 767px) {
  #w-node-_3dc044a7-57a7-f688-1ac0-5a35a645fe63-a645fe51 {
    order: 9999;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_3dc044a7-57a7-f688-1ac0-5a35a645fe55-a645fe51 {
    justify-self: start;
  }

  #w-node-_3dc044a7-57a7-f688-1ac0-5a35a645fe63-a645fe51 {
    justify-self: end;
  }
}

/* Info Cards Styles */
.info-cards-wrapper {
  grid-column-gap: 2px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 70px;
  display: grid;
}

.info-card-blu {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-image: url("https://assets-global.website-files.com/65534881a0b3c4a494c42af2/65534881a0b3c4a494c42b4e_yellow%20frame.svg");
  background-position: 50%;
  background-size: cover;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.info-card-text-wrapper {
  color: #000;
  text-align: center;
  flex-direction: column;
  align-items: center;
  font-size: 35px;
  line-height: 100%;
  display: flex;
}

.info-card-image {
  max-width: 80px;
  height: auto;
}

/* Responsive styles */
@media screen and (max-width: 991px) {
  .info-cards-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .info-cards-wrapper {
    grid-template-columns: 1fr;
  }
  
  .info-card-blu {
    max-width: 150px;
    margin: 0 auto;
  }
  
  .info-card-text-wrapper {
    font-size: 24px;
  }
  
  .heading-6 {
    word-break: break-all;
    line-height: 1.2;
  }
  
  /* Specific line element after info cards - mobile only */
  [data-w-id="d59f59ee-fa1c-b154-86c5-52172e058705"] {
    height: 600px !important;
  }
}

/* Safari SVG fixes - try multiple detection methods */
@media not all and (min-resolution:.001dpcm) {
  @supports (-webkit-appearance:none) {
    .slice { filter: none !important; }
    .leader { filter: none !important; }
    .label { filter: none !important; }
    
    .slice path {
      stroke: #121212 !important;
      stroke-width: 2.5px !important;
      fill-opacity: 1 !important;
      stroke-opacity: 1 !important;
    }
    
    .leader {
      stroke: #121212 !important;
      stroke-width: 2.8px !important;
      stroke-opacity: 1 !important;
    }
    
    .label {
      fill: #0d0b12 !important;
      stroke: #fff !important;
      stroke-width: 5px !important;
      fill-opacity: 1 !important;
      stroke-opacity: 1 !important;
    }
  }
}

/* Alternative Safari fix - disable problematic filters universally for now */
.pixelated {
  filter: none !important;
}


