@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.6;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  color: #0A1A2F;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

img,
picture,
svg {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

legend {
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  border: none;
  border-top: 1px solid rgba(167, 176, 183, 0.3);
  margin: 2rem 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #0A1A2F;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

code,
pre {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.9em;
}

pre {
  overflow-x: auto;
  padding: 1rem;
  background-color: rgba(167, 176, 183, 0.1);
  border-radius: 4px;
}

blockquote {
  padding-left: 1.5rem;
  border-left: 2px solid #2F80ED;
  font-style: italic;
  color: #A7B0B7;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(167, 176, 183, 0.3);
  z-index: 200;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header--hidden {
  transform: translateY(-100%);
}

.nav {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .nav {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.nav__logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0A1A2F;
  letter-spacing: -0.02em;
}
.nav__logo-accent {
  color: #2F80ED;
}
.nav__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
}
@media (min-width: 768px) {
  .nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}
.nav__link {
  font-size: 1rem;
  font-weight: 500;
  color: #0A1A2F;
  transition-property: color;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2F80ED;
  transition-property: width;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__link:hover, .nav__link--active {
  color: #2F80ED;
}
.nav__link:hover::after, .nav__link--active::after {
  width: 100%;
}
.nav__link:focus-visible {
  outline: 2px solid #2F80ED;
  outline-offset: 2px;
}
.nav__toggle {
  display: block;
  width: 28px;
  height: 24px;
  position: relative;
  cursor: pointer;
}
@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }
}
.nav__toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #0A1A2F;
  border-radius: 9999px;
  opacity: 1;
  left: 0;
  transition-property: transform, opacity;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__toggle span:nth-child(1) {
  top: 0;
}
.nav__toggle span:nth-child(2) {
  top: 10px;
}
.nav__toggle span:nth-child(3) {
  top: 20px;
}
.nav__toggle--active span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}
.nav__toggle--active span:nth-child(2) {
  opacity: 0;
}
.nav__toggle--active span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}
.nav__mobile {
  display: none;
  position: fixed;
  top: 73px;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  border-bottom: 1px solid rgba(167, 176, 183, 0.3);
  padding: 1.5rem 1rem;
  box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.12);
}
.nav__mobile--active {
  display: block;
}
@media (min-width: 768px) {
  .nav__mobile--active {
    display: none;
  }
}
.nav__mobile .nav__menu {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.nav__mobile .nav__link::after {
  display: none;
}

.main {
  margin-top: 73px;
}

.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  .section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
@media (min-width: 992px) {
  .section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
.section--hero {
  min-height: calc(100vh - 73px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: linear-gradient(135deg, rgba(10, 26, 47, 0.02) 0%, rgba(47, 128, 237, 0.05) 100%);
}
.section--dark {
  background-color: #0A1A2F;
  color: #FFFFFF;
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4, .section--dark h5, .section--dark h6 {
  color: #FFFFFF;
}
.section--light {
  background-color: rgba(167, 176, 183, 0.05);
}
.section__header {
  text-align: center;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .section__header {
    margin-bottom: 6rem;
  }
}
.section__title {
  font-weight: 700;
  line-height: 1.2;
  color: #0A1A2F;
  margin-bottom: 1rem;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .section__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  .section__title {
    font-size: 3rem;
  }
}
.section__title {
  margin-bottom: 1rem;
}
.section__subtitle {
  font-size: 1.125rem;
  color: #A7B0B7;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.container--narrow {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .container--narrow {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.container--narrow {
  max-width: 800px;
}
.container--wide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .container--wide {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.container--wide {
  max-width: 1400px;
}

.grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .grid {
    gap: 1.5rem;
  }
}
.grid--2-col {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid--2-col {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid--3-col {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid--3-col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .grid--3-col {
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid--4-col {
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .grid--4-col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .grid--4-col {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer {
  background-color: #0A1A2F;
  color: #FFFFFF;
  padding: 4rem 1rem;
}
@media (min-width: 768px) {
  .footer {
    padding: 6rem 1.5rem;
  }
}
.footer__container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .footer__container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.footer__content {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer__content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
  }
}
.footer__brand h3 {
  color: #FFFFFF;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.footer__brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
.footer__links h4 {
  color: #FFFFFF;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__links ul li {
  margin-bottom: 0.5rem;
}
.footer__links ul a {
  color: rgba(255, 255, 255, 0.8);
  transition-property: color;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__links ul a:hover {
  color: #FFFFFF;
}
.footer__bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition-property: background-color, color, border-color, transform;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:focus {
  outline: 2px solid #2F80ED;
  outline-offset: 2px;
}
.btn:active {
  transform: translateY(1px);
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn--primary {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition-property: background-color, color, border-color, transform;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.btn--primary:focus {
  outline: 2px solid #2F80ED;
  outline-offset: 2px;
}
.btn--primary:active {
  transform: translateY(1px);
}
.btn--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn--primary {
  background-color: #2F80ED;
  color: #FFFFFF;
  border-color: #2F80ED;
}
.btn--primary:hover:not(:disabled) {
  background-color: rgb(93.9380530973, 156.6592920354, 241.0619469027);
  border-color: rgb(93.9380530973, 156.6592920354, 241.0619469027);
}
.btn--secondary {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition-property: background-color, color, border-color, transform;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.btn--secondary:focus {
  outline: 2px solid #2F80ED;
  outline-offset: 2px;
}
.btn--secondary:active {
  transform: translateY(1px);
}
.btn--secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn--secondary {
  background-color: transparent;
  color: #0A1A2F;
  border-color: #0A1A2F;
}
.btn--secondary:hover:not(:disabled) {
  background-color: #0A1A2F;
  color: #FFFFFF;
}
.btn--large {
  padding: 1.5rem 3rem;
  font-size: 1.125rem;
}
.btn--small {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}
.btn--block {
  display: block;
  width: 100%;
}

.hero__content {
  max-width: 900px;
}
.hero__headline {
  font-size: 2.5rem;
}
@media (min-width: 768px) {
  .hero__headline {
    font-size: 3.5rem;
  }
}
@media (min-width: 992px) {
  .hero__headline {
    font-size: 4.5rem;
  }
}
.hero__headline {
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero__subheadline {
  font-size: 1.125rem;
  color: #A7B0B7;
  margin-bottom: 3rem;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .hero__subheadline {
    font-size: 1.25rem;
  }
}
.hero__cta {
  margin-top: 2rem;
}

.service-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(167, 176, 183, 0.3);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition-property: box-shadow, transform;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.service-card {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: #2F80ED;
}
.service-card__icon svg {
  width: 100%;
  height: 100%;
}
.service-card__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #0A1A2F;
}
.service-card__description {
  color: #A7B0B7;
  line-height: 1.6;
  flex-grow: 1;
}

.case-study {
  background-color: #FFFFFF;
  border: 1px solid rgba(167, 176, 183, 0.3);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition-property: box-shadow, transform;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.case-study:hover {
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.case-study {
  text-align: left;
}
.case-study__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2F80ED;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.case-study__problem, .case-study__solution, .case-study__outcome {
  margin-bottom: 1.5rem;
}
.case-study__problem:last-child, .case-study__solution:last-child, .case-study__outcome:last-child {
  margin-bottom: 0;
}
.case-study__problem strong, .case-study__solution strong, .case-study__outcome strong {
  display: block;
  font-weight: 600;
  color: #0A1A2F;
  margin-bottom: 0.25rem;
}
.case-study__problem p, .case-study__solution p, .case-study__outcome p {
  color: #A7B0B7;
  margin-bottom: 0;
}

.feature-highlight {
  background-color: #FFFFFF;
  border: 1px solid rgba(167, 176, 183, 0.3);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition-property: box-shadow, transform;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-highlight:hover {
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.feature-highlight {
  background: linear-gradient(135deg, #0A1A2F 0%, rgb(5.5263157895, 14.3684210526, 25.9736842105) 100%);
  color: #FFFFFF;
  padding: 4rem;
  text-align: center;
}
.feature-highlight__title {
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .feature-highlight__title {
    font-size: 3.5rem;
  }
}
.feature-highlight__description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.feature-highlight__cta .btn {
  background-color: #FFFFFF;
  color: #0A1A2F;
  border-color: #FFFFFF;
}
.feature-highlight__cta .btn:hover {
  background-color: #2F80ED;
  color: #FFFFFF;
  border-color: #2F80ED;
}

.value-props {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .value-props {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.value-props__item {
  text-align: center;
  padding: 1.5rem;
  border-left: 2px solid #2F80ED;
  background-color: rgba(47, 128, 237, 0.02);
  border-radius: 4px;
}
.value-props__item p {
  font-size: 1.125rem;
  font-weight: 500;
  color: #0A1A2F;
  margin-bottom: 0;
}

.form {
  max-width: 600px;
  margin: 0 auto;
}
.form__group {
  margin-bottom: 1.5rem;
}
.form__label {
  display: block;
  font-weight: 600;
  color: #0A1A2F;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.form__input, .form__textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(167, 176, 183, 0.3);
  border-radius: 8px;
  font-size: 1rem;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #0A1A2F;
  background-color: #FFFFFF;
  transition-property: border-color, box-shadow;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.form__input:focus, .form__textarea:focus {
  outline: none;
  border-color: #2F80ED;
  box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.1);
}
.form__input::placeholder, .form__textarea::placeholder {
  color: #A7B0B7;
}
.form__input--error, .form__textarea--error {
  border-color: #EB5757;
}
.form__input--error:focus, .form__textarea--error:focus {
  box-shadow: 0 0 0 3px rgba(235, 87, 87, 0.1);
}
.form__textarea {
  min-height: 150px;
  resize: vertical;
}
.form__error {
  display: block;
  color: #EB5757;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.form__success {
  padding: 1.5rem;
  background-color: rgba(39, 174, 96, 0.1);
  border: 1px solid #27AE60;
  border-radius: 8px;
  color: rgb(20.323943662, 90.676056338, 50.0281690141);
  text-align: center;
  margin-bottom: 1.5rem;
}
.form__submit {
  width: 100%;
  margin-top: 1.5rem;
}

.about__intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #0A1A2F;
  text-align: center;
}
.about__values {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .about__values {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about__value-item {
  padding: 2rem;
  background-color: #FFFFFF;
  border-left: 2px solid #2F80ED;
  border-radius: 4px;
}
.about__value-item h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.about__value-item p {
  color: #A7B0B7;
  margin-bottom: 0;
}
.about__philosophy {
  max-width: 700px;
  margin: 6rem auto 0;
  text-align: center;
  padding: 3rem;
  background: linear-gradient(135deg, rgba(47, 128, 237, 0.05) 0%, rgba(10, 26, 47, 0.05) 100%);
  border-radius: 12px;
}
.about__philosophy blockquote {
  border: none;
  padding: 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: #0A1A2F;
  font-style: italic;
}
@media (min-width: 768px) {
  .about__philosophy blockquote {
    font-size: 2rem;
  }
}

.service-detail {
  background-color: #FFFFFF;
  border: 1px solid rgba(167, 176, 183, 0.3);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition-property: box-shadow, transform;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.service-detail:hover {
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.service-detail {
  margin-bottom: 2rem;
}
.service-detail h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #0A1A2F;
}
.service-detail p {
  font-size: 1.125rem;
  color: #A7B0B7;
  line-height: 1.6;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-xl {
  margin-top: 2rem;
}

.mb-xl {
  margin-bottom: 2rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition-property: opacity, transform;
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

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

html {
  scroll-padding-top: 90px;
}

::selection {
  background-color: rgba(47, 128, 237, 0.2);
  color: #0A1A2F;
}

:focus-visible {
  outline: 2px solid #2F80ED;
  outline-offset: 2px;
}

/*# sourceMappingURL=main.css.map */
