/* [project]/src/components/navbar/navbar.css [client] (css) */
.header {
  color: #fff;
  box-sizing: border-box;
  z-index: 10;
  background-color: #000410;
  padding: 1% 8%;
  position: absolute;
}

a {
  color: #fff;
  text-decoration: none;
}

.header-logo {
  white-space: nowrap;
  align-items: center;
  display: flex;
}

.header-logo img {
  width: 292px;
}

.pre-line {
  white-space: pre-line;
}

.nav {
  gap: 30px;
  transition: all .7s ease-in-out;
  display: flex;
}

.nav-tabs {
  flex-grow: 1;
  display: flex;
}

.flex-grow {
  flex-grow: 1;
}

.nav a {
  align-items: center;
  font-size: 20px;
  transition: color .2s;
  display: flex;
}

.nav a:hover {
  color: #ccc;
}

.get-started-btn {
  color: #000;
  background-color: #fff;
  border: none;
  border-radius: 8px;
  margin-left: 45px;
  padding: 11px 29px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease-out;
}

.get-started-btn:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.menu-toggle {
  cursor: pointer;
  font-size: 24px;
  display: none;
}

.footer {
  color: #e5e5e5;
  background-color: #111827;
  border-top: 1px solid #1c1c25;
  padding: 3rem 10%;
  font-family: Inter, sans-serif;
}

.footer-content {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  width: 90%;
  margin: auto 0;
  display: flex;
}

.white-spacenowrap {
  white-space: nowrap;
}

.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  align-items: center;
  gap: 10px;
  display: flex;
}

.footer-logo img {
  width: 80%;
  height: 100%;
  margin: 20px 0;
}

.footer-info {
  align-items: start;
}

.footer-info p {
  color: #fff;
  margin-top: 15px;
  font-size: 14px;
}

.footer-info strong {
  margin-top: 15px;
}

.footer-links {
  flex-wrap: wrap;
  flex: 3;
  justify-content: space-between;
  gap: 2rem;
  display: flex;
}

.footer-links div h4 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.footer-links a {
  white-space: nowrap;
  border-bottom: 1px dotted;
  width: fit-content;
  margin-top: 16px;
  margin-bottom: 0;
  padding-bottom: 2px;
  font-size: 14px;
  text-decoration: none;
  transition: all .1s ease-in-out;
  display: block;
}

.footer-links a:hover {
  color: #b1aeae;
  text-decoration: none;
}

.footer-bottom {
  border-top: 2px solid #ccc;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
  font-size: 14px;
  display: flex;
}

.footer-bottom p {
  font-size: 12px;
}

.footer-bottom-links {
  gap: 10px;
}

.footer-bottom-links a {
  border-bottom: 1px dotted #fff;
  margin-right: 20px;
  padding-bottom: 2px;
  font-size: 12px;
  text-decoration: none;
  transition: color .3s;
}

.footer-bottom-links a:hover {
  color: #b1aeae;
}

.footer-icons {
  gap: 20px;
  font-size: 20px;
  display: flex;
}

.footer-icons img {
  cursor: pointer;
  transition: all .2s ease-in-out;
}

.footer-icons img:hover {
  cursor: pointer;
  transform: scale(1.2);
}

@media (max-width: 1180px) {
  .header-logo img {
    width: 288px;
  }

  .nav {
    gap: 22px;
  }

  .nav a {
    font-size: 18px;
  }

  .header {
    padding: 1% 6%;
  }
}

@media (max-width: 1140px) {
  .nav {
    gap: 10px;
  }

  .header {
    padding: 2% 4%;
  }

  .nav a {
    font-size: 14px;
  }

  .header-logo img {
    width: 163px;
  }
}

@media (max-width: 1024px) {
  .footer-content, .footer-links {
    flex-direction: column;
  }

  .footer-bottom {
    text-align: center;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-info {
    align-items: center;
    width: fit-content;
    margin: auto;
  }

  .footer-links div {
    flex-direction: column;
    align-items: center;
    width: fit-content;
    margin: auto;
    display: flex;
  }

  .footer-logo img {
    margin: auto;
  }

  .footer-info p {
    text-align: center;
  }
}

@media (max-width: 940px) {
  .get-started-btn {
    margin-left: 12px;
    padding: 8px 10px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .nav {
    gap: 5px;
  }

  .header {
    padding: 2% 3%;
  }

  .nav a {
    font-size: 12px;
  }

  .header-logo img {
    height: 35px;
  }
}

@media (max-width: 650px) {
  .nav {
    text-align: center;
    background-color: #000410;
    flex-direction: column;
    gap: 15px;
    width: 40%;
    padding: 15px 0;
    display: none;
    position: absolute;
    top: 29px;
    right: 10px;
  }

  .nav.open {
    display: flex;
  }

  .nav.open a {
    align-items: center;
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .nav-tabs {
    justify-content: end !important;
  }

  .get-started-btn {
    margin-right: 20px;
  }
}

/* [project]/src/app/globals.css [client] (css) */
:root {
  --background: #fff;
  --foreground: #171717;
}

@theme inline {
  --color-background: var(--background) ; --color-foreground: var(--foreground) ; --font-sans: var(--font-geist-sans) ; --font-mono: var(--font-geist-mono) ;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
  }
}

body {
  background: var(--background);
  color: var(--foreground);
  box-sizing: border-box;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.app-layout {
  flex-direction: column;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
}

.content {
  flex: 1;
}

.nextjs-toast, [data-nextjs-toast], #__next-build-watcher, #__next-build-error {
  display: none !important;
}

.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}

.full-viewport-height {
  height: 100vh;
}

.flex {
  display: flex;
}

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

.flex-row {
  flex-direction: row;
}

.align-items-center {
  align-items: center;
}

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

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

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

.gap-10 {
  gap: 10px;
}

.border-radius-10 {
  border-radius: 10px;
}

.font-weight-700 {
  font-weight: 700;
}

.font-weight-400 {
  font-weight: 400;
}

.now-rap {
  white-space: nowrap;
}

.no-border {
  border: none;
}

.width-fit {
  width: fit-content;
}

.react-tel-input .country-list .country .dial-code {
  color: #000 !important;
}

.react-tel-input .country-list .country-name {
  color: #000;
}

.react-tel-input .country-list {
  scrollbar-width: none;
  border-radius: 5px !important;
}

.submit-spinner {
  border: 2px solid #fff;
  border-top-color: #0000;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: .8s linear infinite spin;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.input-wrapper .react-tel-input input {
  border: none;
  width: 85%;
  height: 100%;
  padding-left: 75px !important;
}

.react-tel-input .selected-flag .flag {
  display: none !important;
}

.react-tel-input .country-list .flag {
  display: inline-block !important;
}

.react-tel-input .flag-dropdown {
  background-color: #0000 !important;
  border: none !important;
  border-right: 1px solid #e5e7eb !important;
}

.react-tel-input .selected-flag {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  min-width: 70px;
  padding: 0 8px;
  display: flex;
  position: relative;
  background: none !important;
  border-top: none !important;
  padding-left: 0 !important;
}

.react-tel-input .selected-flag:before {
  content: attr(data-countrycode);
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

.react-tel-input .selected-flag:after {
  content: "›";
  color: #000;
  margin-left: 6px;
  font-size: 28px;
  display: inline-block;
  position: relative;
  transform: rotate(90deg);
}

.react-tel-input input::placeholder {
  color: #999;
  opacity: 1;
}

.react-tel-input input {
  font-size: 14px;
  padding-left: 80px !important;
}

.react-tel-input .form__input:focus {
  text-indent: -4.1ch;
}

/*# sourceMappingURL=src_3915c4ed._.css.map*/