body {
  margin: 0;
  font-family: "Public Sans",Arial,sans-serif;
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.375;
  color: #191919;
  text-align: left;
  background-color: #FFF;
}

a {
  color: #f1b300;
  text-decoration: none;
}

.Header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 25px 0;
  z-index: 100;
  background-color: white;
  border-bottom: 1px #191919  solid;
}

.HeaderGroup {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, auto);
  align-items: center;
  justify-items: center;
}

.Header a {
  color: #191919;
  font-weight: 700;
  font-size: 24px;
}

.Header button {
  padding: 8px 20px;
  font-size: 20px;
  outline: none;
  cursor: pointer;
}


.obj-hero {
  padding-top: 120px;
  position: relative;
  background: #191919;
  color: white;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: .35em;
  font-weight: 900;
  line-height: 1;
  position: relative;
}

h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
  text-transform: uppercase;
  letter-spacing: -.02em;
}

@media (min-width: 576px) {
  h1, .h1 {
      font-size: 3.249rem;
  }
}

@media (min-width: 768px) {
  h1, .h1 {
      font-size: 4.332rem;
  }
}

h1 {
  margin-bottom: .55em;
}

@media (min-width: 768px) {
  [class*="container-"] {
      padding: 5rem 0;
  }
}

@media (min-width: 576px) {
  [class*="container-"] {
      padding-top: 6%;
      padding-bottom: 6%;
  }
}

[class*="container-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify; 
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg {
      max-width: 960px;
  }
}

.container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl, .container-xxxl {
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  [class*="container-"] {
      padding: 5rem 0;
  }
}

[class*="container-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 576px) {
  p, .p {
      font-size: 1.30625rem;
      line-height: 1.45;
  }
}

h1::after, h2::after {
  content: "";
  position: absolute;
  width: 30%;
  width: 33vw;
  max-width: 13rem;
  height: 0.1em;
  background: #f1b300;
  bottom: -0.27em;
  left: 0;
}

@media (min-width: 768px) {
  h1::after, h2::after {
      width: 11vw;
  }
}

.btn-primary {
  color: #191919;
  border: 0.1em solid #f1b300;
  background: #f1b300;
  padding: .5em 1em .5em;
  font-size: 1rem;
  line-height: 1;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  vertical-align: top;
  border-radius: 0px;
}

.btn-primary:hover {
  background: white;
}

.btn-small {
  color: #191919;
  border: 0.1em solid #191919;
  background-color: rgb(208, 208, 208);
  padding: .5em 1em .5em;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  vertical-align: top;
  border-radius: 0px;
}

.btn-small:hover {
  background: black;
  color: white;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
  box-sizing: border-box;
}


.dark-section {
  background-color: #191919;
  color: white;
}

.no-underline::after {
  content: "";
  position: absolute;
  width: 30%;
  width: 33vw;
  max-width: 13rem;
  height: 0.1em;
  background: transparent;
  bottom: -0.27em;
  left: 0;
}

.secondary-text {
  color: #ffffffa9;
  font-weight: 400;
}

.controls {
  display: flex;
  align-items: center; /* Align items vertically in the center */
  flex-wrap: wrap; 
    gap: 20px;
  justify-content: space-between; /* Spread out the inputs and buttons */
  gap: 20px; /* Add space between inputs and buttons */
  margin-top: 10px;
}

.inputs {
  display: flex;
  align-items: center;
  gap: 10px; /* Add space between each label and input */
}

.buttons {
  display: flex;
  align-items: center;
  gap: 10px; /* Add space between the buttons */
}

.centered-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* Horizontal centering */
  justify-content: center; /* Vertical centering */
  text-align: center; /* Ensures text is centered */
  gap: 20px; /* Adds spacing between elements */
}

tr {
  /*striped */
  background-color: #ffffff17;

}

tr:nth-child(odd) {
    background-color: transparent;
}

.content-divider {
  border: 0;
  height: 1px;
  background: rgba(25, 25, 25, 0.15);
  margin: 20px 0;
}
