/* [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;
  -webkit-text-decoration: none;
  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;
  -webkit-text-decoration: none;
  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 {
  margin: auto opx;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  width: 90%;
  display: flex;
}

.white-space-nowrap {
  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-evenly;
  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;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: all .1s ease-in-out;
  display: block;
}

.footer-links a:hover {
  color: #b1aeae;
  -webkit-text-decoration: none;
  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;
  -webkit-text-decoration: none;
  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);
}

.header-wrapper-main {
  width: 100%;
  position: relative;
}

.nav-links {
  gap: 40px;
  list-style: none;
  display: flex;
}

.nav-links li {
  cursor: pointer;
  color: #000;
  padding: 20px 0;
  font-size: 16px;
}

.header-wrapper-main {
  z-index: 1000;
  width: 100%;
  position: relative;
}

.header {
  z-index: 1001;
  position: relative;
}

.mega-panel {
  opacity: 0;
  pointer-events: none;
  width: 80%;
  height: 39rem;
  transition: height .25s, opacity .3s;
  display: flex;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%);
}

.mega-panel.show {
  opacity: 1;
  pointer-events: auto;
}

.mega-container {
  box-sizing: border-box;
  background: #fff;
  width: 100%;
  margin: 0 auto;
  display: flex;
}

.left-column {
  flex-direction: column;
  width: 240px;
  display: flex;
}

.menu-heading {
  color: #111827;
  cursor: pointer;
  background: #dbeafe;
  flex: 1;
  align-items: center;
  padding-left: 2.6rem;
  font-weight: 400;
  list-style: none;
  transition: background .3s, font-weight .4s ease-in-out;
  display: flex;
  position: relative;
}

.menu-heading.active, .menu-heading:hover {
  background: #eff6ff;
  font-weight: 600;
}

.menu-heading:before {
  content: "";
  background: none;
  width: 4px;
  height: 100%;
  transition: background .3s;
  position: absolute;
  top: 0;
  left: 0;
}

.menu-heading.active:before {
  background: #60a5fa;
}

.mega-right-wrapper {
  opacity: 0;
  flex: 1;
  justify-content: space-between;
  min-height: 240px;
  transition: opacity .3s ease-out, transform .3s ease-out;
  display: flex;
  position: relative;
  transform: translateY(10px);
}

.mega-right-wrapper.show-right-content {
  opacity: 1;
  transform: translateY(0);
}

.service-items {
  flex-wrap: wrap;
  width: 75%;
  height: fit-content;
  padding: 10px 0;
  list-style: none;
  display: flex;
}

.services-div {
  flex: 1;
}

.item-row {
  text-overflow: ellipsis;
  color: #0f054c;
  box-sizing: border-box;
  flex: 0 0 50%;
  align-items: center;
  width: fit-content;
  height: fit-content;
  padding: 2.5rem;
  font-size: 1.8rem;
  transition: all .3s ease-in-out;
  display: flex;
}

.item-row:hover {
  color: #3636f7;
  cursor: pointer;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.solutions-grid {
  grid-gap: 10px 20px;
  opacity: 0;
  opacity: 1;
  flex: 1;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  width: 80%;
  margin: auto;
  list-style: none;
  transition: opacity .3s ease-out, transform .3s ease-out;
  display: grid;
  transform: translateY(0);
}

.solutions-slider {
  flex: .5;
  position: relative;
  overflow: hidden;
}

.slide {
  opacity: 0;
  background-color: #f3f4f6;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 2.4rem 3.2rem;
  transition: opacity .7s ease-in-out;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.slide.show {
  opacity: 1;
}

.slide-img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 140px;
}

.slide-title {
  color: #000;
  margin: 6px 0;
  font-size: 18px;
  font-weight: 600;
}

.slide-text {
  color: #111827;
  margin-top: .8rem;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2rem;
}

.slide-btn {
  color: #0f054c;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.6rem;
}

.arrow-up-down {
  width: 1.2rem;
  height: .6rem;
}

@media (max-width: 768px) {
  .item-row {
    padding: 1rem;
  }

  .left-column {
    border-right: none;
    flex: 1;
    padding-right: 0;
  }

  .mega-right-wrapper {
    flex-direction: column;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .solutions-slider {
    height: auto;
  }
}

@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 {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    margin-top: 20px;
  }

  .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) {
  .mega-panel {
    opacity: 0;
    width: 70%;
    max-height: 0;
    transform: none;
    transform: initial;
    transition: max-height .3s, opacity .3s;
    top: 0;
    left: 0;
    overflow: hidden;
  }

  .mega-panel.show {
    opacity: 1;
    max-height: 1000px;
  }

  .services-div {
    justify-content: start !important;
  }

  .item-row {
    white-space: nowrap;
  }

  .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;
  }

  .mega-panel {
    z-index: 1002;
  }

  .nav.open {
    z-index: 1001;
    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: #fff;
  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-600 {
  font-weight: 600;
}

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

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

.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;
}

.Toastify {
  padding: 0 !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;
}

/* [project]/src/app/main.css [client] (css) */
:root {
  --font-zalando: "Zalando Sans SemiExpanded", sans-serif;
  --background: #0a0a0a;
  --foreground: #ededed;
}

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

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

@media screen and (max-width: 90.625em) {
  html {
    font-size: 55%;
  }
}

@media (max-width: 75em) {
  html {
    font-size: 50%;
  }
}

@media (max-width: 48em) {
  html {
    font-size: 45%;
  }
}

@media (max-width: 30em) {
  html {
    font-size: 40%;
  }
}

body {
  background: #0a0a0a;
  background: var(--background);
  color: var(--foreground);
  font-family: Zalando Sans SemiExpanded, sans-serif;
  font-family: var(--font-zalando);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 192rem;
  margin: 0 auto;
  padding: 0 26rem;
}

@media screen and (max-width: 90.625em) {
  .container {
    padding: 0 15rem;
  }
}

@media (max-width: 75em) {
  .container {
    padding: 0 15rem;
  }
}

@media (max-width: 62em) {
  .container {
    padding: 0 5rem;
  }
}

@media (max-width: 30em) {
  .container {
    padding: 0 3rem;
  }
}

.full-container {
  width: 100%;
  max-width: 192rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 75em) {
  .full-container {
    padding: 0 5rem;
  }
}

@media (max-width: 62em) {
  .full-container {
    padding: 0 3rem;
  }
}

@media (max-width: 30em) {
  .full-container {
    padding: 0 2rem;
  }
}

.section-gap {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.section-gap-top {
  margin-top: 4rem;
  margin-bottom: 0;
}

.primary-heading {
  text-transform: capitalize;
  font-size: 9.6rem;
  font-weight: 600;
}

.secondary-heading {
  text-transform: capitalize;
  font-size: 2.4rem;
  font-weight: 600;
}

.banner-heading {
  text-transform: capitalize;
  font-size: 9.6rem;
  font-weight: 600;
}

.banner-info {
  text-transform: capitalize;
  font-size: 6.4rem;
  font-weight: 600;
  line-height: 8.8rem;
}

.sub-heading {
  text-transform: capitalize;
  font-size: 4rem;
  font-weight: 600;
}

.content-gap {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.content-gap-top {
  padding-top: 4rem;
}

.description {
  font-size: 2rem;
  font-weight: 400;
  line-height: 3rem;
}

.description.bold {
  font-weight: bold;
}

.description.black {
  color: #000;
}

.img-res {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

@media (max-width: 48em) {
  .banner-heading, .banner-info {
    text-align: center;
  }
}

.bg-white {
  background-color: #fff;
}

.prev, .next {
  cursor: pointer;
}

.prev {
  transform: rotate(180deg);
}

.d-hide {
  display: none !important;
}

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

.black {
  color: #000;
}

.b-600 {
  font-weight: 600 !important;
}

.d-b {
  display: block;
}

.d-i-b {
  display: inline-block;
}

.padding {
  padding-top: 96px;
}

@media (max-width: 480px) {
  .padding {
    padding-top: 0;
  }
}

.lh-56 {
  line-height: 5.6rem;
}

.lh-40 {
  line-height: 4rem;
}

.lh-32 {
  line-height: 3.2rem;
}

.text-natural-black {
  color: #111827;
}

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