@font-face {
  font-family: "DIN-Alt";
  src: url("fonts/din-medium-alt.ttf") format("ttf"), url("fonts/din-medium-alt.woff2") format("woff2");
  font-display: auto;
  font-style: normal;
}
* {
  box-sizing: border-box;
}

a {
  border-radius: 0.25rem;
  color: var(--secondary-color);
  text-decoration: none;
}
a:hover {
  color: var(--primary-color);
  background-color: var(--secondary-color);
}
a:focus-visible {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

:root {
  --primary-color: #43006D;
  --secondary-color: #FAFF01;
  --base-font: "DIN-Alt", sans-serif;
  --body-font: Helvetica, Arial, sans-serif;
}

body, html {
  height: 100%;
}

body {
  margin: 0;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-family: var(--base-font);
  font-weight: 400;
  min-height: calc(100vh - 4rem);
  padding: 2rem;
}
body .btn {
  order: 1;
  margin-bottom: 2rem;
}
body .nav-services {
  order: 2;
}

.page {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  max-width: 128.25rem;
  margin: 0 auto;
  filter: drop-shadow(0 0 40px rgba(250, 255, 1, 0.4));
}

header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
header:is(.page-content) {
  margin-bottom: 1rem;
}

.btn {
  font-family: var(--base-font);
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--secondary-color);
  border-radius: 0.5rem;
  transition: 0.2s ease-in-out;
}
.btn:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.btn:focus-visible {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

.logo {
  display: block;
  align-items: center;
  width: 100%;
}
.logo img {
  display: block;
}
.logo a {
  overflow: visible;
  display: block;
  border-radius: 0.125rem;
}
.logo a:hover {
  background-color: transparent;
  outline: 2px solid var(--secondary-color);
  outline-offset: 4px;
}
.logo-header {
  max-width: 12rem;
}

.nav-services {
  display: flex;
  gap: 0.75rem;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

footer {
  display: flex;
  justify-content: space-between;
  font-family: var(--body-font);
  font-weight: 300;
  font-size: 0.875rem;
  align-items: center;
  padding-block: 1rem;
}
footer p {
  margin: 0;
  opacity: 0.75;
}
footer a {
  font-size: inherit;
  padding-inline: 0.25rem;
}

.hero {
  position: relative;
  width: 100%;
}
.hero:before {
  content: "";
  display: block;
  width: 100%;
  height: 0.125rem;
  background-color: var(--secondary-color);
  position: absolute;
  top: -1.5rem;
  left: 0;
  transform: translate(0, -50%);
}

.social-container {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  align-items: center;
  position: relative;
  justify-content: flex-end;
  margin-top: 1.5rem;
}
.social-container h2 {
  font-size: 0.85rem;
  margin: 0;
  font-weight: normal;
  text-transform: uppercase;
}
.social-container:before {
  content: "";
  display: block;
  width: calc(100% - 9rem);
  height: 0.125rem;
  background-color: var(--secondary-color);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

h1 {
  font-size: 1.5rem;
  margin: 0 0 1rem 0;
  max-width: 32rem;
  font-weight: normal;
  text-transform: uppercase;
}

p {
  font-family: Helvetica, Arial, sans-serif;
}

.display-1 {
  font-size: 3rem;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  min-width: 8rem;
}
.social-icons a {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  text-align: center;
  font-size: 1rem;
  justify-content: center;
  align-items: center;
  font-family: var(--base-font);
}

.badge {
  max-width: 4rem;
  width: 100%;
  min-width: 3.25rem;
  height: auto;
}

.list-horz li {
  float: left;
}

.no-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-dialog {
  position: fixed;
  display: flex;
  justify-content: left;
  align-items: center;
  z-index: 1000;
  border: none;
  width: calc(100% - 4rem);
  max-width: 40rem;
  border-radius: 0.5rem;
  padding: 0;
  margin: 2rem;
  overflow: hidden;
}
.contact-dialog a {
  color: var(--primary-color);
}
.contact-dialog:not([open]) {
  display: none;
}
.contact-dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0.75;
}

.modal-content {
  background: var(--secondary-color);
  color: #32006B;
  padding: 2rem;
  border-radius: 8px;
  width: 100%;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.modal-content h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.contact-options {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.contact-options a {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-options a:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}
.contact-options .fa, .contact-options .fa-brands {
  font-size: 2rem;
}
.contact-options .fa-phone, .contact-options .fa-brands-phone {
  font-size: 1.5rem;
}

.js-close-dialog {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1rem;
  color: #32006B;
  cursor: pointer;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4rem;
}
.js-close-dialog:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
.js-close-dialog:hover {
  color: var(--secondary-color);
  background-color: var(--primary-color);
}

table {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 2rem;
  border-radius: 0.5rem;
}
table td {
  padding-bottom: 0.5rem;
}
table td:first-child {
  width: 15rem;
  text-transform: uppercase;
}
table td:last-child {
  font-family: var(--body-font);
}
table td a {
  color: var(--primary-color);
  padding-inline: 0.25rem;
}
table td a:hover {
  background-color: var(--primary-color);
  text-decoration: none;
  color: var(--secondary-color);
}

.content {
  margin-bottom: 2rem;
}
.content a {
  text-decoration: underline;
  padding-inline: 0.25rem;
}
.content a:hover {
  text-decoration: none;
}
.content h2, .content h3, .content h4, .content h5, .content h6 {
  font-weight: 400;
  margin: 0;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}
.content p {
  margin-top: 0;
  margin-bottom: 2rem;
  line-height: 1.5;
}

@media screen and (min-width: 40rem) {
  body {
    padding: 3rem;
  }
  h1 {
    font-size: 2rem;
    margin: 0 0 2rem 0;
  }
  .btn {
    font-size: 1rem;
  }
  header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .hero {
    min-width: 40rem;
  }
}

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