.button {
  --_btn-color: var(--btn-color, #BF181B);
  --_btn-background-color: var(--btn-background-color, #FFFCF2);
  color: var(--_btn-color);
  background-color: var(--_btn-background-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 34px;
  border-radius: 200px;
  gap: 16px;
  outline: none;
  border: none;
  text-decoration: none;
  width: fit-content;
}
.button p {
  font: 800 0.9375rem/1 "roc-grotesk-wide";
  margin-top: 2px;
}
.button.uppercase {
  text-transform: uppercase;
}
.button.button-primary {
  --btn-background-color: #BF181B;
  --btn-color: #FFFCF2;
}
.button.button-outline {
  background: transparent;
  border: 2px solid var(--_btn-background-color);
  color: var(--_btn-background-color);
}

html, body {
  height: 100%;
  width: 100%;
  background: #FFFCF2;
}

header {
  width: 200px;
  padding-top: 40px;
  display: block;
  margin: auto;
}

main {
  height: 100%;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  padding: 10dvh 0;
}
@media screen and (max-width: 768px) {
  main {
    gap: 30px;
    padding: 50px 30px;
    flex-flow: column nowrap;
    height: max-content;
  }
}
main .site-logo {
  --aspect-ratio: 535/573;
  width: 29.2%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  main .site-logo {
    width: 100%;
    min-height: 30dvh;
    height: 30dvh;
    max-height: 30dvh;
    padding: 0;
    justify-content: center;
  }
}
main .site-logo .image {
  height: 100%;
}
main .site-logo .image img {
  object-fit: cover;
}
main h1, main h2 {
  text-transform: uppercase;
  width: 100%;
}
main h1 {
  margin-bottom: 10px;
  color: #BF181B;
}
main .maintenance__content {
  flex: 1;
  margin-right: 9.4dvw;
  display: flex;
  flex-flow: row wrap;
  gap: 31px;
}
@media screen and (max-width: 768px) {
  main .maintenance__content {
    text-align: center;
    margin-right: 0;
  }
}
main .maintenance__buttons {
  max-width: calc(50% - 15.5px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  main .maintenance__buttons {
    max-width: 100%;
  }
  main .maintenance__buttons .button {
    width: 100%;
  }
}
main .maintenance__text {
  margin-top: 20px;
  max-width: calc(50% - 15.5px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  main .maintenance__text {
    max-width: 100%;
  }
}
main .maintenance__text h2 {
  margin-bottom: 12px;
  color: #BF181B;
}
main .maintenance__text p, main .maintenance__text address {
  display: inline;
  color: #BF181B;
}
main .maintenance__text address {
  color: #BF181B;
}
main .maintenance__text.first p {
  display: block;
  max-width: 325px;
}
main .maintenance__text .p-content {
  max-width: 375px;
}
@media screen and (max-width: 768px) {
  main .maintenance__text .p-content {
    max-width: 100%;
  }
}
