
@import url('variables.css');
@import url('layout.css');
@import url('components.css');
@import url('home.css');
@import url('faq.css');
@import url('carousel.css');
@import url('auth.css');
@import url('utilities.css');
@import url('revealCard.css');

/* === Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration:none;
  line-height: 1.25;
}

/* === HTML & Body Defaults === */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  color: var(--neutral-900, #191B1A);
  background-color: var(--neutral-50, #F7F9F8);
  line-height: 1.25;
  min-height: 100vh;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--primary-400);
  border-radius: 8px;
  background: transparent;
  color: var(--white) !important;
  font-size: var(--fs-16);
<<<<<<< HEAD
  filter: none !important;
  mix-blend-mode: normal !important;
=======
>>>>>>> b8093155a92fb0ff41a9602471d53845248e085d
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--primary-400);
  border-radius: 8px;
  background: transparent;
  color: var(--white) !important;
  font-size: var(--fs-16);
<<<<<<< HEAD
  filter: none !important;
  mix-blend-mode: normal !important;
}

img,
button img {
  filter: none !important;
  mix-blend-mode: normal !important;
}


=======
}

>>>>>>> b8093155a92fb0ff41a9602471d53845248e085d
body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.container{
  max-width:1280px;
}

.popup-hidden{
  display:none;
}