/* https://piny.io/assets/styles/piny.css */

:root {
  --color-red: rgb(237, 29, 36);
}

ul, ol {
  padding-left: 0;
  margin-left: 2em;
  margin-bottom: 1em;
}

ul li {
  list-style-type: disc;
}

ul.no-bullets,
ul.no-bullets li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

ul ul, ul ol, ol ul, ol ol {
  margin-left: 2em;
}

h3 {
  text-transform: none;
}

.underline-red {
  border-bottom: 1px solid var(--color-red);
}

.img-small-30-percent {
  width: 30%;
}

.img-medium-60-percent {
  width: 60%;
}

.text-center {
  text-align: center;
}

.img-center {
  display: block;
  margin-inline: auto;
}

/* Default: Desktop styles (≥1025px) */
#mobile-nav {
  display: none;
}

#header-wrapper {
  display: block;
}

/* Responsive: Mobile & Tablet styles (≤1024px) */
@media screen and (max-width: 1024px) {
  #mobile-nav {
    display: block;
    margin-top: 15px;
  }

  #header-wrapper {
    display: none;
  }
}