

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header-wrapper {
  background-color: #000000; /* Sets the background color for the entire width */
  width: 100%;
}

.header-container {
  width: 70%; /* Sets the width to 70% of the available space */
  margin: 0 auto; /* Centers the container */
  font-family: "PT Sans", sans-serif;
}

.header {
  width: 100%;
  display: flex;
  justify-content: space-between; /* Aligns left, center, and right sections */
  align-items: center;
  background-color: #000000;
  padding: 0px 0px;
}

.header-left {
  flex: 1; /* Keeps the logo on the left */
}

.header-center {
  flex: 1; /* Centers the links */
  align-items: center;
  display: flex;
  justify-content: center; /* Centers the links horizontally */
  gap: 20px; /* Adds space between the links */
  white-space: nowrap;
}

.header-right {
  flex: 1; /* Keeps the right section aligned to the right */
  display: flex;
  justify-content: flex-end; /* Aligns content to the right */
  white-space: nowrap;
}

.header a {
  color: white;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
  padding-left: 4px;
}

.header a.logo {
  font-size: 25px;
  font-weight: bold;
}

.logo img {
  min-width: 50px;
  max-width: 150px;
  width: 100%;
}

.header a:hover {
  color: red;
  text-decoration: none;
}

.header a.active {
  background-color: dodgerblue;
  color: white;
}

.body-container {
  width: 70%; /* Sets the width to 70% of the available space */
  margin: 0 auto; /* Centers the container */
  font-family: "PT Sans", sans-serif;
}

.table-container {
  width: 100%;
  margin: 0 auto;
}

.column {
  padding: 20px;
  box-sizing: border-box;
}

.column:nth-child(1) {
  flex: 0 0 50%;
  justify-content: center;
  align-items: center;
}

.column:nth-child(2) {
  flex: 0 0 25%;
  justify-content: center;
  align-items: center;
}

.column:nth-child(3) {
  flex: 0 0 25%;
  justify-content: center;
  align-items: center;
}

.column img {
  max-width: 100%;
  height: auto;
}

.img {
  max-width: 100%;
  height: auto;
  margin: auto;
}

h1 {
  font-size: 80px;
  line-height: 1.2;
  text-align: center;
  justify-content: center;
}

h2 {
  font-size: 36px;
  line-height: 1.2;
  text-align: left;
  font-weight: bold;
}

h3 {
  font-size: 28px;
  line-height: 1.2;
  text-align: left;
  font-weight: bold;
}

h4 {
  font-size: 24px;
  line-height: 1.2;
  text-align: left;
  font-weight: bold;
}

p {
  font-size: 20px;
  text-align: left;
  font-weight: normal;
}

table {
  width: 100%; /* Ensures the table uses all available space */
  border-collapse: collapse; /* Ensures borders are collapsed */
  text-align: center; /* Centers text in the table */
}

th, td {
  padding: 10px; /* Adds padding to table cells */
  vertical-align: middle; /* Centers content vertically */
  text-align: center; /* Centers content horizontally */
}

.col-10 {
  width: 10%;
}

.col-15 {
  width: 15%;
}

.col-20 {
  width: 20%;
}

.col-25 {
  width: 25%;
}

.col-30 {
  width: 30%;
}

.col-35 {
  width: 35%;
}
.col-40 {
  width: 40%;
}

.col-50 {
  width: 50%;
}

.col-60 {
  width: 60%;
}

.col-65 {
  width: 65%;
}

.col-70 {
  width: 70%;
}

.initCol-2.5 {
  width: 2.5%;
}

.initCol-5 {
  width: 5%;
}

.initCol-10 {
  width: 10%;
}

.initCol-20 {
  width: 20%;
}

.initCol-30 {
  width: 30%;
}

.initCol-29 {
  width: 29%;
}

.initCol-40 {
  width: 40%;
}

.initCol-50 {
  width: 50%;
}

.initCol-100 {
  width: 100%;
}

.hidden {
  display: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

.pt-sans-regular {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.pt-sans-bold {
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.pt-sans-regular-italic {
  font-family: "PT Sans", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.pt-sans-bold-italic {
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
}
.footer-wrapper {
  background-color: #000000; /* Sets the background color for the entire width */
  width: 100%;
}

.footer-container {
  width: 70%; /* Sets the width to 70% of the available space */
  margin: 0 auto; /* Centers the container */
  font-family: "PT Sans", sans-serif;
}

.footer {
  width: 100%;
  color: white;
  display: flex;
  flex-direction: column; /* Aligns items vertically */
  align-items: center;
  background-color: #000000;
  padding: 0px 0px;
}

.footer-center {
  width: 100%;
  text-align: center;
}

.footer-table {
  width: 100%;
}

.footer a {
  color: white;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  line-height: 25px;
  border-radius: 4px;
  padding-left: 4px;
}

.footer a:hover {
  color: red;
  text-decoration: none;
}

.footer a.active {
  background-color: dodgerblue;
  color: white;
}


