@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --clr-prin: #4403d3;
  --clr-sec: #3a148e;
  --clr-nav: #23085e;
  --clr-btn: #4403d3;
  --clr-btn-h: #6626f3;
  --clr-dark: #121212;
  --clr-fnt: #eaeaea;
  --clr-bright: #eaeaea;
  --clr-liner: #662299;
  --clr-tit: #7f65f6;
  --clr-tit-dark: #23085e;
  --clr-tit-grad: linear-gradient(to right, #8187fa, #a593ff);
  --clr-footer: #060208;
  --padx: 20%;
  --pady: 4rem;
  --pad-sec: 2rem 12%;
  --iso: 30px;
  --logo: 1.5rem;
  --ff-btn: "Poppins", sans-serif;
  --ff-title: "Poppins", serif;
  --ff-alttitle: "Poppins", serif;
  --ff-p: "Poppins", sans-serif;
  --fnt-h1: clamp(2.2rem, 3vw, 3.2rem);
  --fnt-h2: clamp(2.2rem, 3vw, 3.2rem);
  --fnt-h3: clamp(1.6rem, 2.5vw, 2.4rem);
  --fnt-h4: clamp(1.2rem, 2.3vw, 2.2rem);
  --fnt-h5: clamp(1rem, 2.1vw, 2rem);
  --fnt-p: clamp(1.0rem, 1.8vw, 1.4rem);
  --fnt-btn: clamp(1.1rem, 1.6vw, 1.6rem);
  --btn-pad: 1rem 1.5rem;
  --brad: 16px;
  --fz: 16px;
  --gap: 2rem;
  --minigap: 1rem;
}

::selection {
  background: var(--clr-btn-h);
}

@media (max-width: 1080px) {
  :root {
    --padx: 10%;
    /* --gap: 3rem; */
    --btn-pad: 1rem;
    --iso: 28px;
  }
}

@media (max-width: 768px) {
  :root {
    --padx: 8%;
    --fz: 12px;
    /* --gap: 4rem; */
    --iso: 22px;
  }
}

html, body {
  background: var(--clr-dark);
  color: var(--clr-fnt);
  font-size: var(--fz);
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}

*, ::before, ::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a, button {
  cursor: pointer;
}

ul, li, a {
  text-decoration: none;
  list-style-type: none;
  color: inherit;
}

h1 {
  font-size: var(--fnt-h1);
  font-weight: 700;
  font-family: var(--ff-title);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--fnt-h2);
  font-weight: 700 !important;
  margin-bottom: 1rem;
}

h3 {
  font-size: var(--fnt-h3);
  /* color: var(--clr-tit); */
  margin-bottom: 1rem;
}

h4 {
  font-size: var(--fnt-h4);
  /* margin-bottom: 1rem; */
}

h5 {
  font-size: var(--fnt-h5);
  /* margin-bottom: 1rem; */
}

p, li {
  font-size: var(--fnt-p);
}

h2, h3, h4, h5 {
  font-family: var(--ff-alttitle);
}

p, li, ul, a, div {
  font-family: var(--ff-p);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 1rem;
}

.txtc {
  text-align: center;
}

.fw600 {
  font-weight: 600;
}

.clr-tit {
  color: var(--clr-tit);
}

.clr-tit-grad {
  background: var(--clr-tit-grad);
  background-clip: text;
  /* text-fill-color: transparent; */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.clr-tit-dark {
  color: var(--clr-tit-dark);
}

.clr-fnt-dark {
  color: var(--clr-dark);
}

.bg-card-top {
  background: #3a138f;
  padding: 8px 0;
}

.resp {
  max-width: 100%;
  height: auto;
}

.resph {
  width: auto;
  max-height: 100%;
}

.flexo {
  display: flex;
}

.unouno > * {
  flex: 1;
}

.gap {
  gap: var(--gap);
}

.minigap {
  gap: var(--minigap);
}

.spacer {
  height: 2rem;
}

.minispacer {
  height: 1rem;
}

.jccenter {
  justify-content: center;
}

.jcstart {
  justify-content: flex-start;
}

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

.jcsb {
  justify-content: space-between;
}

.aicenter {
  align-items: center;
}

.aistart {
  align-items: flex-start;
}

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

.aisb {
  align-items: space-between;
}

.hide {
  display: none !important;
}

.liner {
  width: 100%;
  height: 2px;
  background-color: var(--clr-liner);
  margin: 1rem 0;
}

.underhover {
  position: relative;
  display: inline-block;
}

.underhover::after {
  content: '';
  /* position: absolute; */
  display: block;
  background: transparent;
  margin: auto;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  transform-origin: center;
  transition: width 150ms ease-out, background 150ms ease-in-out;
}

.underhover:hover::after {
  width: 100%;
  background: white;
}

.underline {
  position: relative;
  margin-bottom: 1rem;
}

.underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 5rem;
  height: 2px;
  background: var(--clr-bright);
}

.underline.unctr::after {
  max-width: 24vw;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.underh1 {
  position: relative;
}

.pady {
  padding-top: var(--pady);
  padding-bottom: var(--pady);
}

.padx {
  padding-left: var(--padx);
  padding-right: var(--padx);
}

.pad-1 {
  padding: 1rem;
}

.pad-2 {
  padding: 2rem;
}

.fade-in {
  transition: opacity ease-in .6s, transform ease-out .6s, filter ease-out .6s;
}

.fopa {
  opacity: 0;
}

.fadeUp {
  transform: translate(0, 80px);
}

.left {
  transform: translate(80px, 0);
}

.right {
  transform: translate(-80px, 0);
}

.fblur {
  filter: blur(18px);
}

.inView {
  opacity: 1;
  transform: translate(0, 0);
  filter: blur(0px);
}

.fade-in1b {
  animation: fadeInB 1200ms;
}

.delay1 {
  animation: delay 1s;
}

.delay2 {
  animation: delay 2s;
}

.delay3 {
  animation: delay 3s;
}

.delay4 {
  animation: delay 4s;
}

.boxhover:hover, .boxhover:focus {
  box-shadow: 0 0 24px var(--clr-sec);
  transition: box-shadow 350ms ease-out;
}

@keyframes fadeInB {
  0% { opacity: 0; transform: translate(0, 150px); }
  /* 36% { opacity: 0; transform: translate(0, 150px); } */
  100% { opacity: 1; transform: translate(0, 0); }
}

@keyframes delay {
  0% { opacity: 0; }
  66% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeInBg {
  0% { opacity: 0; }
  100% { opacity: .8; }
}

.mow {
  height: 1.2rem;
  transition: opacity 150ms;
}
.mow:hover {
  opacity: .8;
}

.column {
  flex-direction: column;
}

.button {
  font-family: var(--ff-btn);
  font-size: var(--fnt-btn);
  color: var(--clr-bright);
  font-weight: 600;
  border-radius: 8px;
  padding: var(--btn-pad);
  background: var(--clr-btn);
  transition: background ease-out 150ms, box-shadow 150ms ease-out;
  letter-spacing: 1.2px;
  border: none;
  text-align: center;
  cursor: pointer;
}

.button:hover,
.button:focus {
  box-shadow: 0 0 24px var(--clr-btn-h);
}

.button.alt {
  background: #121212aa;
  color: var(--clr-btn);
  outline: solid 2px var(--clr-btn);
  outline-offset: -2px;
  transition: outline ease-out 150ms, background ease-out 150ms;
}

.button:hover, .button:focus {
  background: var(--clr-btn-h);
}

.button.alt:hover, .button.alt:focus {
  background: #020202;
  outline: solid 2px var(--clr-btn-h);
  color: var(--clr-btn-h);
}

.brad {
  border-radius: var(--brad);
  overflow: hidden;
}

.hf {
  height: 100%;
}

.opacity-hover {
  transition: opacity 100ms ease-out;
}

.opacity-hover:hover {
  opacity: .7;
}

.outline {
  outline: solid 2px var(--clr-btn);
  outline-offset: -2px;
}

.outline-glow {
  box-shadow: 0 0 18px var(--clr-btn-h);
}

.hover-glow {
  transition: box-shadow 100ms;
}

.hover-glow:hover {
  box-shadow: 0 0 18px var(--clr-btn);
}

.pointer {
  cursor: pointer;
}

.bgcard {
  background: linear-gradient(to right, #151024, #1f114c);
  padding: 2rem;
  box-shadow: 0 0 18px var(--clr-btn);
}

.label {
  font-family: var(--ff-p);
  font-weight: 600;
}

.field {
  background: var(--clr-dark);
  outline: solid 2px var(--clr-btn);
  outline-offset: -2px;
  border: 0;
  padding: 1rem;
  color: var(--clr-fnt);
  border-radius: 8px;
  width: 100%;
  margin-top: .5rem;
}

@media (max-width: 480px) {
  .to-column-480 {
    flex-direction: column;
  }
  .to-column-reverse-480 {
    flex-direction: column-reverse;
  }
}




