h1,
h2,
h3,
div,
h4,
h5,
h6,
p,
span,
a,
li {
  font-family: "Inter";
}

html {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

.container_custom {
  max-width: 90%;
  height: auto;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.navbar-active {
  position: fixed;
  z-index: 40;
  top: 0;
  transition: all 800ms ease-in-out;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.navbar-inactive {
  position: relative;
  z-index: 1;
  transition: all 800ms ease-in-out;
}

span {
  display: block;
}

.bg-config {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.blur-gradient {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.71) 50%, rgba(0, 0, 0, 0.5) 75%, rgba(0, 0, 0, 0.2) 90%);
  z-index: 8;
}

@media (min-width: 320px) {
  .blur-gradient {
    max-width: 100%;
    width: 100%;
    /* Make it full width on small screens */
  }
}
.request-btn {
  color: #fff;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500 !important;
  padding: 0.5rem 1.25rem;
  line-height: 150%;
  border-radius: 6.1875rem;
  background: linear-gradient(180deg, #3a7bc8 0%, #2463ae 100%);
  box-shadow: 0px 0px 0px 1px #2463ae, 0px 2px 0px 0px rgba(255, 255, 255, 0.24) inset;
  height: 2.5rem;
  width: 9.3rem;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.grid-cat-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.tabs {
  width: 100%;
  padding-top: 5rem;
}
.tabs .tab-header {
  display: flex;
  justify-content: start;
  align-items: center;
  position: relative;
  gap: 2rem;
  background: oklch(87.2% 0.01 258.338);
  height: 0.2rem;
  width: 100%;
  border-radius: 1rem;
}
.tabs .tab-link {
  padding: 0.8rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: oklch(87.2% 0.01 258.338);
  background: none;
  border: none;
  margin-bottom: 3.6rem;
  cursor: pointer;
  position: relative;
  transition: color 300ms ease-in-out;
}
.tabs .tab-link.active {
  color: #2463ae;
}
.tabs .tab-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  border-radius: 0.5rem 0.5rem 0rem 0rem;
  width: 100%;
  height: 4px;
  background-color: #2463ae;
}
.tabs .tab-pane {
  display: none;
  padding: 1rem 0;
}
.tabs .tab-pane.active {
  display: block;
}

.grid-cat-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.show {
  opacity: 1 !important;
}

.go-up-btn {
  height: 3rem;
  width: 3rem;
}/*# sourceMappingURL=style.css.map */