/* I use the same breakpoints as Bootstrap v5.0
 * https://getbootstrap.com/docs/5.0/layout/breakpoints/
 */
/* I use the same breakpoints as Bootstrap v5.0
 * https://getbootstrap.com/docs/5.0/layout/breakpoints/
 */
footer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
  min-height: 10rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1); }
  @media (min-width: 768px) {
    footer {
      flex-direction: row;
      justify-content: flex-begin;
      gap: 3rem; } }
  footer a {
    position: relative;
    font-weight: 600; }
  footer h3, footer h4 {
    text-align: center; }
  footer h3 {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    padding-left: 0.2em;
    padding-right: 0.2em;
    padding-bottom: 0.15em;
    border-bottom: 2px solid var(--color-primary); }
  footer .header-section-content {
    display: flex;
    flex-direction: row;
    margin-top: 0.5rem; }
    @media (min-width: 768px) {
      footer .header-section-content {
        flex-direction: column; } }
footer a::after {
  content: "";
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  z-index: -1;
  background-color: var(--color-secondary); }

#sitemap-list {
  margin-top: 0.5rem;
  justify-content: space-evenly;
  gap: 0.75em; }
  #sitemap-list li {
    list-style-type: none; }

#footer-addresses {
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 0.75rem; }
  #footer-addresses h4 {
    font-style: normal; }
    #footer-addresses h4 i[class^="fa-"] {
      margin-right: 0.25em; }
  #footer-addresses > div {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start; }

:root {
  --color-alert: #ff5050; }

.alert {
  position: fixed;
  bottom: 1rem;
  left: 50vw;
  transform: translateX(-50%);
  z-index: 9;
  display: inline-block;
  padding: 0.5em;
  border-radius: 5px;
  background-color: var(--color-alert);
  box-shadow: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.2); }
  .alert > p {
    font-family: var(--style-font);
    font-weight: bold;
    color: white; }
  .alert:hover {
    cursor: pointer; }

.trigger-element {
  border: 1px solid var(--color-alert); }

:root {
  --color-values-primary: 118, 2, 156;
  --color-primary: rgba(var(--color-values-primary), 255);
  --color-values-secondary: 255, 88, 27;
  --color-secondary: rgba(var(--color-values-secondary), 255);
  --color-values-background-light: 255, 250, 242;
  --color-background-light: rgba(var(--color-values-background-light), 255);
  --color-values-primary-light: 200, 200, 255;
  --color-primary-light: rgba(var(--color-values-primary-light), 255);
  --color-values-text-dark: 48, 48, 48;
  --color-text-dark: rgba(var(--color-values-text-dark), 255);
  --header-height: 4rem;
  --style-font: Urbanist; }

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  font-family: var(--style-font);
  background-color: white;
  box-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.25);
  transition: background-color 0.25s; }

header.transparent {
  background-color: transparent;
  box-shadow: none;
  pointer-events: none; }
  header.transparent .button {
    pointer-events: auto; }
  @media (min-width: 768px) {
    header.transparent .button.wireframe {
      color: white;
      border-color: white; } }
  header.transparent #header-logo {
    opacity: 0; }

#header-placeholder {
  height: var(--header-height);
  background-color: var(--color-background-light); }
  header.transparent ~ #header-placeholder {
    display: none; }

#header-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--header-height);
  width: var(--header-height); }

#header-logo {
  height: calc(var(--header-height * (2/3)));
  width: calc(var(--header-height) * (2/3));
  opacity: 1;
  transition: opacity 0.25s; }

#header-phone-link {
  margin-right: 0.5rem;
  display: inline; }

.button, .alert {
  text-align: center;
  border-radius: 5px;
  font-family: var(--style-font);
  letter-spacing: 0.033rem;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem; }

.button {
  display: block;
  color: white;
  background-color: var(--color-primary);
  box-shadow: 0rem 0.2rem 0.2rem rgba(var(--color-values-primary), 0.1);
  padding: 0.5rem 1rem;
  border-width: 0;
  cursor: pointer; }
  @media (min-width: 768px) {
    .button {
      display: inline-block; } }
  .button.secondary {
    background-color: var(--color-secondary);
    box-shadow: 0rem 0.2rem 0.2rem rgba(var(--color-values-secondary), 0.1); }

.button.dark {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15)), linear-gradient(to left, var(--color-primary)); }

.button.wireframe {
  color: var(--color-primary);
  background-color: transparent;
  border: 2px solid var(--color-primary); }
  .button.wireframe.secondary {
    color: var(--color-secondary);
    border-color: var(--color-secondary); }

.button > i[class^="fa-"] {
  margin-right: 0.66em; }

p, a, strong, label, input, textarea, select, li, h1, h2, h3, h4, h5, h6 {
  color: var(--color-text-dark);
  font-family: var(--style-font);
  letter-spacing: 0.02rem; }

label {
  font-weight: 600; }

p, a, li {
  font-family: Inter;
  font-weight: 400; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: 0.04em; }

main {
  min-height: 100vh;
  padding-bottom: 2rem; }
