html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  background: #f7f8fb;
}

.bg-custom-red {
  background-color: rgba(181, 31, 43, 0.9);
  color: #fff;
}

.bg-gradient-secondary {
    background-image: linear-gradient(310deg, #71717a, #e3e3e7);
}

.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(70% 70% at 20% 0%, rgba(181, 31, 43, .15), transparent 60%), radial-gradient(60% 60% at 100% 0%, rgba(154, 160, 166, .18), transparent 60%), linear-gradient(180deg, #ffffff, #fafafa);
}

.section {
    padding: 72px 0;
}

.company-row {
    border-bottom: 1px dashed #e5e7eb;
    padding: 14px 0;
}

.panel {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
}

.company-row:last-child {
    border-bottom: none;
}