* {
  box-sizing: border-box;
  --green: #004225;
  --green-dark: hsl(153.64deg 100% 8.94%);
  --light: #466C5A;
  --dark: #173033;
  --blue: #163D4F;
  --purple: #443F6D;
  --highlight: #D0FF71;
  --cream: #EFEDE4;
}
html,
body {
  min-height: 100%;
  margin: 0;
}
body {
  background: #fff;
  color: #111;
  color: var(--green);
  font: 16px/1.4 "Sofia Pro", sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}
body.mobile-menu-open {
  overflow: hidden;
}
@media (min-width: 681px) {
  body {
    min-width: 1140px;
  }
}
h1, h2, h3, h4 {
  line-height: 1.2;
  margin: 0;
}
h1 { font-size: 46px; letter-spacing: -0.01em; font-weight: 700; }
h2 { font-size: 36px; letter-spacing: -0.01em; font-weight: 700; }
h3 { font-size: 32px; letter-spacing: -0.01em; font-weight: 700; }
h4 { font-size: 22px; letter-spacing: -0.01em; font-weight: 400; }
@media (max-width: 680px) {
  h1 { font-size: 38px; }
  h2 { font-size: 28px; }
  h3 { font-size: 26px; }
  h4 { font-size: 20px; }
  h1, h2, h3, h4 {
    line-height: 1.1;
  }
}
a { color: currentColor; text-decoration: none; }
b { font-weight: 600; }
p { margin: 0; }
.color-green     { background-color: var(--green); }
.color-highlight { background-color: var(--highlight); }
.color-cream     { background-color: var(--cream); }
.highlight {
  color: var(--highlight);
}
.center {
  text-align: center;
}
.br::after {
  content: "\A";
  white-space: pre;
}
.button {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  background: var(--highlight);
  box-shadow: 0 1px 2px rgb(0 0 0 / 4%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 99px;
  color: var(--green);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  padding: 0 36px 2px;
  height: 60px;
}
.cta .button {
  transition: transform .1s;
}
@media (pointer: fine) {
  .cta .button:hover {
    transform: scale(1.1);
  }
}
@media (max-width: 680px) {
  .button {
    font-size: 18px;
    padding: 0 28px 2px;
    height: 56px;
  }
}
.small-button {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 99px;
  box-shadow: 0 1px 2px rgb(0 0 0 / 4%);
  background: var(--green);
  color: var(--highlight);
  font-size: 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  height: 48px;
  margin-top: 4px;
  padding: 0 22px;
  gap: 8px;
}
.small-button svg {
  position: relative;
  top: 1px;
}

.section {
  padding: 80px 0;
}
@media (max-width: 680px) {
  .section {
    padding: 40px 0;
  }
}
.section-header {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 60px;
  gap: 8px;
}
.section-header h3 {
  color: var(--green);
  font-size: 46px;
  font-weight: 700;
}
.section-header h4 {
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 680px) {
  .section-header {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .section-header h3 {
    font-size: 36px;
  }
  .section-header h3 + h4 {
    margin-top: 10px;
  }
}
.breadcrumbs {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #111;
  font-size: 14px;
  margin-bottom: 30px;
  gap: 12px;
}
.breadcrumbs .divider::before {
  content: "/";
  opacity: .6;
}
.breadcrumbs a {
  font-weight: 400;
  opacity: .6;
}
.breadcrumbs a:last-child {
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: normal;
  font-weight: 600;
  color: var(--green);
  opacity: 1;
}
@media (max-width: 680px) {
  .breadcrumbs a:last-child {
    max-width: 160px;
  }
}
/* Temp */
[animate] {
  animation: none !important;
  opacity: 1 !important;
}
[animate] { opacity: 0; }
[animate].visible { animation: animate-in .6s forwards; }
@keyframes animate-in {
    0% { opacity: 0; transform: translateY(10px) scale(1.05); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 680px) {
  [animate] {
    animation-delay: 0s !important; 
  }
}
#site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}
#site,
#site .page {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
#site .page {
  background: var(--cream);
}
#site .page > div {
  flex-grow: 1;
}
#header {
  background: var(--green);
}
#header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
}
@media (max-width: 680px) {
  #header .header-inner {
    padding-left: 20px;
  }
}
#header .logo {
  display: flex;
  font-size: 32px;
  font-weight: 600;
  max-height: 52px;
  position: relative;
}
#header .logo img {
  height: 52px;
  height: 62px;
  position: relative;
  top: -5px;
}
@media (max-width: 680px) {
  #header .logo {
    max-height: 42px;
  }
  #header .logo img {
    height: 36px;
    height: 46px;
    position: relative;
    top: -5px;
  }
}
#header .links {
  display: flex;
  gap: 8px;
}
#header .links .link {
  background: rgb(0 0 0 / 0%);
  border-radius: 99px;
  color: var(--highlight);
  line-height: 38px;
  font-size: 18px;
  font-weight: 600;
  transition: background-color .1s;
  padding: 0 16px;
}
#header .links .link:hover {
  background: rgb(0 0 0 / 20%);
}
#header .toggle {
  cursor: pointer;
  background: rgb(0 0 0 / 32%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 99px;
  width: 42px;
  height: 42px;
  user-select: none;
}
#mobile-menu {
  background: var(--dark);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 300;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 24px;
  padding-left: 20px;
}
body:not(.mobile-menu-open) #mobile-menu {
  display: none;
}
#mobile-menu .top {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
#mobile-menu .mobile-menu-header {
  display: flex;
  justify-content: space-between;
  max-height: 42px;
}
#mobile-menu .logo img {
  height: 36px;
  height: 46px;
  position: relative;
  top: -5px;
}
#mobile-menu .toggle {
  cursor: pointer;
  background: rgb(0 0 0 / 24%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 99px;
  width: 42px;
  height: 42px;
  user-select: none;
}
#mobile-menu .mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding-left: 6px;
  gap: 24px;
}
#mobile-menu .mobile-menu-links a {
  display: flex;
  justify-content: center;
  color: var(--highlight);
}
#mobile-menu .bottom {
  color: var(--highlight);
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  padding: 10px 0;
}
#mobile-menu .bottom b {
  font-weight: 600;
}
#start .intro {
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
  gap: 36px;
}
#start .intro h1 {
  font-weight: 900;
}
#start .intro h4 {
  font-family: "Sofia Sans", sans-serif;
  line-height: 1.4;
}
#start .cta {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 0;
}
#start .companies,
#companies .companies {
  padding: 40px 0;
}
#start .companies .row,
#companies .companies .row {
  margin: 0 -10px;
}
#start .companies [class^=col-],
#companies .companies [class^=col-] {
  padding: 0 10px;
}
#start .company,
#companies .company {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  position: relative;
  transition: transform .2s;
}
@media (pointer: fine) {
  #start .company:hover,
  #companies .company:hover {
    transform: translateY(-10px);
  }
}
#start .company-image img,
#companies .company-image img {
  display: block;
  border-top-left-radius: 48px;
  border-top-right-radius: 4px;
  object-fit: cover;
  width: 100%;
}
#start .company-logo,
#companies .company-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 30px 20px;
}
#start .company-logo img,
#companies .company-logo img {
  display: block;
  max-width: 100%;
}
#start .company-reswitch .company-logo,
#companies .company-reswitch .company-logo,
#start .company-reswitch .company-text,
#companies .company-reswitch .company-text {
  background: #004225;
}
#start .company-tillmobil .company-logo,
#companies .company-tillmobil .company-logo,
#start .company-tillmobil .company-text,
#companies .company-tillmobil .company-text {
  background: #443F6D;
}
#start .company-trecom .company-logo,
#companies .company-trecom .company-logo,
#start .company-trecom .company-text,
#companies .company-trecom .company-text {
  background: #163D4F;
}
#start .company-vobbiz .company-logo,
#companies .company-vobbiz .company-logo,
#start .company-vobbiz .company-text,
#companies .company-vobbiz .company-text {
  background: #466C5A;
}
#start .company-text,
#companies .company-text {
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  color: #fff;
  text-align: center;
  padding: 0 40px 30px;
}
#start .company-text .text,
#companies .company-text .text {
  font-family: "Sofia Sans", sans-serif;
  font-size: 16px;
  min-height: calc(3 * 1em * 1.5);
  line-height: 1.5;
}
#start .company-text b,
#companies .company-text b {
  display: block;
  color: var(--highlight);
  font-size: 18px;
  font-family: inherit;
  margin-top: 1em;
}
@media (max-width: 680px) {
  #start .companies,
  #companies .companies {
    padding: 20px 0 0;
    margin-bottom: -30px;
  }
  #start .company,
  #companies .company {
    margin-bottom: 20px;
  }
}
@media (max-width: 680px) {
  #start .company-logo img,
  #companies .company-logo img {
    display: block;
    max-width: 80%;
  }
  #start .company-text .text,
  #companies .company-text .text {
    min-height: 0;
  }
}
#start .section-quote {
  background-image: url(/images/quote-text-bg.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#start .quote {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 40px 0;
  gap: 36px;
}
#start .quote-rating {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#start .quote-rating svg {
  width: 40px;
  height: 40px;
}
#start .quote-rating .icons {
  display: flex;
  color: var(--highlight);
  gap: 4px;
}
#start .quote-rating .text {
  font-size: 16px;
}
#start .quote-title {
  font-size: 20px;
  font-weight: 300;
}
#start .quote-text {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
#start .quote-author {
  font-size: 28px;
}
@media (max-width: 680px) {
  #start .quote-text {
    font-size: 28px;
  }
  #start .quote-author {
    font-size: 24px;
  }
}
#start .section-customers {
  background: var(--cream);
  color: var(--green);
  position: relative;
  display: flex;
  overflow: hidden;
  padding: 40px 0 140px;
  position: relative;
}
#start .section-customers h3 {
  color: var(--green);
  font-size: 46px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
}
#start .section-customers .customers {
  display: flex;
  align-items: center;
  gap: 30px;
}
#start .section-customers .customers + .customers {
  margin-top: 30px;
}
#start .section-customers .customer-logo {
  background: rgb(255 255 255 / 50%);
  box-shadow: 0 0 0 1px rgb(0 0 0 / 4%);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 190px;
  padding: 40px;
  flex: 1;
}
#start .section-customers img {
  max-width: 100%;
  object-fit: contain;
}
#start .section-customers .customers-footer {
  text-align: center;
  font-size: 26px;
  margin-top: 60px;
}
@media (max-width: 680px) {
  #start .section-customers {
    padding: 40px 0 60px;
  }
  #start .section-customers h3 {
    font-size: 36px;
    margin-bottom: 40px;
  }
  #start .section-customers .customers {
    flex-direction: column;
    gap: 15px;
  }
  #start .section-customers .customer-logo {
    flex: none;
    height: 150px;
    padding: 50px;
  }
  #start .section-customers .customers-footer {
    margin-top: 40px;
  }
}
#start .info {
  color: var(--green);
  padding: 0 15px;
}
#start .section:has(.info) {
  padding: 100px 0;
}
@media (max-width: 680px) {
  #start .info {
    padding: 0;
  }
  #start .section:has(.info) {
    padding: 0;
  }
  #start .section:has(.info) img {
    border-radius: 0 !important
  }
  #start .section-customers .customers + .customers {
    margin-top: 15px;
  }
}
#start .info [class^=col-] {
  padding: 0;
}
#start .info img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#start .info-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding: 80px;
  gap: 20px;
}
#start .info p {
  line-height: 1.8;
}
@media (max-width: 680px) {
  #start .info .row {
    margin: 0 -20px;
  }
  #start .info-inner {
    padding: 40px;
  }
  #start .info:first-child .row {
    flex-direction: column-reverse;
  }
}
#about {
  padding: 40px 0 120px;
}
@media (max-width: 680px) {
  #about {
    padding: 20px 0 40px;
  }
}
#about p {
  font-family: "Sofia Sans", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}
#about p + p {
  margin-top: 1.5em;
}
#about .about {
  padding: 40px 0;
}
@media (max-width: 680px) {
  #about .about {
    padding: 0;
  }
}
#about .about-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
  padding: 0 80px;
}
#about .about-header h4 {
  line-height: 1.4;
}
@media (max-width: 680px) {
  #about .about-header {
    padding: 0;
  }
}
#contact {
  padding: 40px 0 120px;
}
@media (max-width: 680px) {
  #contact {
    padding: 20px 0 40px;
  }
}
#contact h1 {
  margin-bottom: 48px;
  padding-top: 40px;
}
#contact .address {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  margin-top: 4px;
}
#contact .address h4 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
}
#contact .address-footer {
  margin-top: 1em;
}
#contact .contact {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
#contact .contact-content {
  display: flex;
  flex-direction: column;
  padding: 15px 30px 35px;
  gap: 20px;
}
#contact .email,
#contact .phone { 
  display: flex;
  justify-content: flex-start;
}
#contact .email a,
#contact .phone a {
  font-size: 18px;
  font-weight: 600;
}
#contact .image {
  position: relative;
  padding: 15px;
}
#contact .image-inner {
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-width: 100%;
}
#contact .image img {
  display: block;
  border-radius: 6px;
  object-fit: cover;
  object-position: bottom;
  aspect-ratio: 1 / 1;
  width: 100%;
}
@media (max-width: 680px) {
  #contact {
    padding-bottom: 0;
  }
  #contact h1 {
    padding-top: 0;
    margin-bottom: 32px;
  }
  #contact .row {
    gap: 40px;
  }
}
#companies {
  padding: 40px 0;
}
@media (max-width: 680px) {
  #companies {
    padding: 20px 0;
    padding: 20px 0 40px;
  }
  #companies .companies {
    padding: 0;
    margin-bottom: 0;
  }
}
#company {
  padding: 40px 0;
}
#company h3 {
  margin-bottom: .6em;
  font-size: 30px;
  font-weight: 600;
}
@media (max-width: 680px) {
  #company h3 {
    font-size: 36px;
  }
}
#company h3:not(:first-child) {
  margin-top: 1em;
}
#company p {
  font-family: "Sofia Sans", sans-serif;
  font-size: 18px;
  line-height: 1.6;
}
#company p + p {
  margin-top: 0.8em;
}
#company .company-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 100px 0 80px;
}
#company .company-header h1 {
  font-size: 96px;
}
@media (max-width: 680px) {
  #company .company-header {
    margin: 60px 0;
  }
  #company .company-header h1 {
    font-size: 64px;
  }
  #company .company-description {
    margin-top: 40px;
  }
}
#company .company-logo {
  display: flex;
}
#company .company-logo svg path {
  fill: currentColor;
}
#company .company-logo img {
  max-width: 240px;
}
#company .company-logo.reswitch { background: var(--green); }
#company .company-logo.tillmobil { background: var(--purple); }
#company .company-logo.trecom { background: var(--blue); }
#company .company-logo.vobbiz { background: var(--light); }
#company .company-link {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}
#company .company-link .link {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  border: 1px solid currentColor;
  color: currentColor;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 400;
  padding: 16px 0;
  width: 100%;
  gap: 12px;
}
#company .info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 5px;
}
#company .info h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 4px;
}
#company .info-row {}
#company .info-value {
  font-size: 18px;
}
#company .company-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 100px 0 80px;
}
@media (max-width: 680px) {
  #company {
    padding: 20px 0;
  }
  #company .company-footer {
    margin: 60px 0;
  }
}
#posts {
  padding: 40px 0 120px;
}
@media (max-width: 680px) {
  #posts {
    padding: 20px 0 40px;
  }
}
#posts .text-section {
  padding-bottom: 20px;
  padding-top: 40px;
}
#posts .posts-section {
  padding-top: 0;
}
#posts h1 {
  margin-bottom: 40px;
}
#posts .row {
  align-items: stretch;
  row-gap: 30px;
}
#posts .post-content {
  background-color: white;
  border-radius: 0 0 8px 8px;
  padding: 30px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
#posts .post {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}
#posts .post > a {
  display: block;
  height: 220px;
  overflow: hidden;
}
#posts .post h3 {
  font-size: 24px;
  font-weight: 600;
}
#posts .post h3 a {
  overflow-wrap: anywhere;
  word-break: break-word;
}
#posts .post-summary {
  font-family: "Sofia Sans", sans-serif;
}
#posts .post > a img {
  border-radius: 8px 8px 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}
#posts .post img {
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}
#posts .post-meta time {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
}
#posts .post .read-more {
  margin-top: auto;
}
#posts .post-summary {
  flex-grow: 1;
  margin-bottom: 20px;
}
@media (max-width: 680px) {
  #posts .post > a {
    height: 180px; 
  }
  #posts .post-content { 
    padding: 20px; 
  }
  #posts .row { 
    gap: 40px; 
  }
  #posts .text-section {
    padding-bottom: 0;
  }
}
#post {
  padding: 40px 0;
}
#post p {
  font-family: "Sofia Sans", sans-serif;
  line-height: 1.6;
}
#post p + p {
  margin-top: .8em;
}
#post li + li {
  margin-top: 0.5em;
}
#post h1 {
  margin-bottom: 20px;
}
#post h3 {
  margin-top: 20px;
  margin-bottom: 20px;
}
#post .text-section {
  padding-bottom: 20px;
  padding-top: 40px;
}
#post .post-section {
  padding-top: 0;
}
#post .post-hero {
  margin: 0;
  padding: 30px 0;
}
#post img {
  max-width: 100%;
}
#post .post-content {
  max-width: 800px;
  margin: 20px auto;
  font-size: 18px;
}
#post .post-content img {
  margin: 20px 0;
}
#post blockquote {
  margin: 0;
}
#post .video-wrapper {
  margin-top: 30px;
}
#footer {
  background: var(--green);
  color: var(--highlight);
  padding: 100px 0;
}
@media (max-width: 680px) {
  #footer {
    padding: 60px 0 40px;
  }
}
#footer h4 {
  font-size: 18px;
  font-weight: 600;
}
#footer .company {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 6px;
}
#footer .company a {
  font-size: 16px;
  font-weight: 600;
}
#footer .company p {
  margin-top: 6px;
  line-height: 1.7;
  max-width: 420px;
}
@media (max-width: 680px) {
  #footer h4 {
    margin-top: 32px;
  }
  #footer .company {
    align-items: center;
    margin: 0 0 12px;
  }
}
#footer .logo img {
  height: 52px;
  height: 74px;
  position: relative;
  left: -8px;
}
#footer .links,
#footer .items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 0;
  gap: 12px;
}
#footer .links a {
  border-bottom: 1px solid transparent;
  color: var(--highlight);
  font-weight: 300;
  margin-bottom: -1px;
}
#footer .links a:hover {
  border-bottom: 1px solid var(--highlight);
}
#footer .items {
  gap: 20px;
}
#footer .email,
#footer .phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 400;
}
#footer .email a,
#footer .phone a {
  font-size: 24px;
  font-weight: 600;
}
#footer .contact-button .button {
  display: inline-flex;
  font-size: 16px;
  height: 50px;
  padding: 0 26px 2px;
  margin-top: 2px;
}
#footer .socials {
  color: var(--highlight);
  margin-top: 1em;
}
#footer .socials-title {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 12px;
}
#footer .socials-icons {
  display: flex;
  align-items: center;
  position: relative;
  left: -4px;
  gap: 8px;
}
#footer .socials a {
  transition: transform .1s;
}
#footer .socials a:hover {
  transform: rotate(-10deg) scale(1.2);
}
#footer .socials svg {
  width: 38px;
  height: 38px;
}
#footer .socials .instagram svg {
  width: 34px;
  height: 34px;
}
#copyright {
  background: var(--green);
  box-shadow: 0 -1px 0 rgb(255 255 255 / 6%);
  color: var(--highlight);
  padding: 24px 0;
  display: flex;
  justify-content: center;
  font-size: 16px;
  font-weight: 300;
}
@media (max-width: 680px) {
  #copyright {
    font-size: 14px;
  }
}
#error {
  background: var(--green);
  box-shadow: 0 1px 0 rgb(255 255 255 / 6%);
  color: var(--highlight);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  padding: 120px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
#error a {
  border-bottom: 1px solid currentColor;
  font-size: 18px;
}
