@charset "UTF-8";
body {
  margin: 0;
  box-sizing: border-box;
  font-size: 1.2em;
  line-height: 1.4em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1.5rem 0;
  color: #0093b5;
  line-height: 1.3em;
  font-weight: 700;
}

h1,
h2 {
  letter-spacing: 2px;
}

h3,
h4,
h5,
h6 {
  letter-spacing: 1px;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "lato", helvetica, sans-serif;
}

h1 {
  color: white;
  font-size: 4em;
  letter-spacing: 4px;
}

a {
  color: #0093b5;
  text-decoration: none;
}

button {
  background-color: white;
  border: 0;
}

.blue-h1 {
  color: #05556d;
  text-shadow: 0px 0px 1px #ccc;
}

.blue-background {
  background-color: #0093b5;
  color: white;
}
.blue-background a {
  color: white;
}

.white-background {
  background-color: white;
  color: #0093b5;
}

.centered {
  text-align: center;
}

.centered p {
  text-align: center;
}

p {
  text-align: justify;
}

.sponsor-tiers-container {
  display: grid;
  gap: 2rem;
  margin: 3rem 0;
  padding: 2rem;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .sponsor-tiers-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .sponsor-tiers-container {
    grid-template-columns: 1fr;
  }
}
.sponsor-tiers-container .sponsor-tier-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(5, 85, 109, 0.2);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.sponsor-tiers-container .sponsor-tier-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(5, 85, 109, 0.3);
}
.sponsor-tiers-container .sponsor-tier-card {
  padding: 2rem;
}
.sponsor-tiers-container .tier-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #05556d;
}
.sponsor-tiers-container .tier-description {
  color: #05556d;
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: center;
}
.sponsor-tiers-container .tier-features {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}
.sponsor-tiers-container .tier-features li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.4;
}
.sponsor-tiers-container .tier-features li::before {
  content: "✓";
  color: #0093b5;
  font-weight: bold;
  font-size: 1rem;
  min-width: 20px;
}
.sponsor-tiers-container .tier-features {
  padding-inline-start: 10px;
}
.sponsor-tiers-container .tier-features li {
  color: #000;
  font-weight: 200;
}
.sponsor-tiers-container .tier-features li .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.sponsor-tiers-container .tier-cta {
  text-align: center;
  margin-top: 2rem;
}

.programs-grid-container {
  padding: 2rem 1rem;
  width: 100%;
  box-sizing: border-box;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.program-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(5, 85, 109, 0.2);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(5, 85, 109, 0.3);
}
.program-card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}
.program-card__header {
  background-color: #0093b5;
  padding: 1.5rem;
  color: white;
  text-align: center;
}
.program-card__title {
  margin: 0;
  font-size: 1.5rem;
  color: white;
}
.program-card__title a {
  color: white;
  text-decoration: none;
}
.program-card__title a:hover {
  text-decoration: underline;
}
.program-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.program-card__content p {
  margin-top: 0;
  margin-bottom: 1rem;
  flex: 0;
}
.program-card__features {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}
.program-card__features li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.4;
}
.program-card__features li::before {
  content: "✓";
  color: #0093b5;
  font-weight: bold;
  font-size: 1rem;
  min-width: 20px;
}
.program-card__features {
  flex-grow: 1;
}
.program-card__button {
  margin-top: auto;
  background-color: #fc7625;
  color: white;
  text-align: center;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}
.program-card__button:hover {
  background-color: #16c1f3;
  color: white;
}

@media (max-width: 768px) {
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .programs-grid-container {
    padding: 1rem;
  }
}
.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 3rem 0;
  flex-wrap: wrap;
  align-items: center;
}

.row {
  -webkit-display: flex;
  -moz-display: flex;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  padding: 3rem 5rem;
}

.row__center {
  align-items: center;
}

.row_left {
  justify-content: flex-start;
}

.top-testimonials {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 2rem;
  box-sizing: border-box;
}

.testimonial-post {
  --size: clamp(260px, 37vw, 42.5%);
  flex: 0 0 var(--size);
  width: var(--size);
  aspect-ratio: 1/1;
  background: #0093b5;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  transition: transform 0.3s ease;
  min-width: 0;
  container-type: inline-size;
  container-name: testimonial;
}

.testimonial-post:hover {
  transform: translateY(-5px);
}

.testimonial-post .post-content {
  width: 80%;
  aspect-ratio: 1/1;
  background: white;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 2.5vmin, 16px);
  overflow: hidden;
  -webkit-overflow-scrolling: auto;
  min-width: 0;
  min-height: 0;
  text-align: left;
}

.testimonial-text {
  font-size: clamp(9px, 3.6cqw, 14px);
  line-height: 1.35;
  color: #333;
  margin: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.testimonial-row {
  padding: 0 !important;
}

.testimonial-text a {
  word-break: break-word;
}

@media (min-width: 800px) and (max-width: 1060px) {
  .testimonial-post .post-content {
    width: 86%;
    padding: clamp(6px, 1.6vmin, 12px);
  }
}
@media (max-width: 800px) {
  .top-testimonials {
    padding: 12px;
    gap: 12px;
  }
  .testimonial-post {
    --size: min(70vw, 92vw);
    flex-basis: var(--size);
    width: var(--size);
  }
  .testimonial-post .post-content {
    width: 86%;
  }
}
.staff-team {
  align-items: flex-start;
}

.row__baseline {
  align-items: baseline;
}

.column {
  -webkit-flex: 1;
  -moz-flex: 1;
  flex: 1;
  padding: 0 1rem;
}

.chart-container {
  -webkit-display: flex;
  -moz-display: flex;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  background-color: rgb(0, 147, 181);
  color: white;
  padding: 3rem;
}

.nav-bar {
  -webkit-display: inline-flex;
  -moz-display: inline-flex;
  display: inline-flex;
  flex-flow: row-reverse wrap;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  background-color: white;
  box-shadow: 0 0 8px 1px #ccc;
  z-index: 100;
}

.nav-bar-inner {
  -webkit-display: inline-flex;
  -moz-display: inline-flex;
  display: inline-flex;
  flex-flow: row-reverse wrap;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding: 5px 1rem 5px 0;
  background: white;
}

.nav-link {
  flex-grow: 1;
  padding: 1em 0;
  text-shadow: 0px 0px 1px #ccc;
}

.nav-link:hover {
  color: #16c1f3;
}

.dropdown-toggle::after {
  content: " ▾";
  padding-left: 10px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.dropdown-menu .dropdown-item {
  color: rgb(0, 147, 181);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-menu .dropdown-item:hover {
  background-color: #f1f1f1;
}
.dropdown-menu.show {
  display: block;
}

.img-link {
  -webkit-flex: 10;
  -moz-flex: 10;
  -o-flex: 10;
  flex: 10;
  display: inline-block;
  order: 1;
}

.logo {
  width: 170px;
  padding-left: 1.25rem;
}

.mc-closeModal {
  text-shadow:
    -1px -1px 0 #000,
    1px -1px 0 #000,
    -1px 1px 0 #000,
    1px 1px 0 #000;
}

.main-content {
  margin-top: 4rem;
}

.main-header {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
  height: 75vh;
  background: url(../img/three-participants-at-laptops-min.jpg) #0093b5
    no-repeat top right fixed;
  background-size: cover;
}

.main-header__text {
  max-width: 50%;
  padding: 0 1.5em;
  background-color: rgba(0, 147, 181, 0.8);
  border-top-left-radius: 25px;
  border-top: 5px solid rgba(0, 115, 149, 0.8);
}

#myChart {
  display: block;
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 2880px) {
  #myChart {
    width: 2880px;
    height: 1800px;
  }
}
.main-header__header {
  font-size: calc(28px + 24 * (100vw - 320px) / 960);
}
@media only screen and (min-width: 1200px) {
  .main-header__header {
    font-size: 3.5rem;
  }
}

.program-header {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: 100%;
  height: 100vh;
  background: url(../img/2024-H2-Launch-Celebration-min.png) #0093b5 no-repeat
    top fixed;
  background-size: cover;
}

.sponsor-header {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -webkit-display: flex;
  -moz-display: flex;
  -o-display: flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}

#sponsor-hero {
  width: 100%;
}

.sponsor-logo {
  width: 20%;
  margin: 25px;
}

.sponsor-img {
  width: 10%;
  margin: 25px;
}

#consulting-hero {
  width: 100%;
  padding-top: 5%;
}

.full-width-img {
  width: 100%;
  max-width: 2440px;
  height: auto;
}
@media screen and (min-width: 2881px) {
  .full-width-img {
    width: 2880px !important;
    height: auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

.forty-percent-width {
  width: 40%;
}

.twenty-percent-width {
  width: 20%;
}

.fifteen-percent-width {
  width: 15%;
}

.ten-percent-width {
  width: 10%;
}

.min-width-250 {
  min-width: 250px;
}

.max-size-75px {
  max-height: 75px;
  max-width: 75px;
}

.max-width-100-percent {
  max-width: 100%;
}

.max-width-75-percent {
  max-width: 75%;
}

.resize-400px {
  max-height: 400px;
  max-width: 400px;
}

.resize-200px {
  /* Ensure each teams image is square */
  object-fit: cover;
  width: 200px;
  max-height: 200px;
  max-width: 200px;
}

.margin-25 {
  margin: 25px;
}

.margin-1-percent {
  margin: 1%;
}

.max-size-5-percent {
  max-height: 5%;
  max-width: 5%;
}

.max-size-15-percent {
  max-height: 15%;
  max-width: 15%;
}

.fixed-img {
  width: 30%;
  position: fixed;
  top: 150px;
}

.social-media,
.hiring {
  width: 3rem;
  height: 3rem;
  margin-bottom: 0.25rem;
}

.hiring {
  width: 4.5rem;
}

.icon-text {
  font-size: 0.7rem; /* Smaller text size */
  text-align: center;
  line-height: 1.2;
  margin-top: 0.25rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 60px;
}

.contact-us,
.donate,
.tier-button,
.orange-button {
  margin-bottom: 24px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  color: white;
  display: inline-block;
  background-color: #fc7625;
  text-align: center;
  padding-block: 24px;
  padding-inline: 16px;
}
.contact-us:hover,
.donate:hover,
.tier-button:hover,
.orange-button:hover {
  background-color: #16c1f3;
  color: white;
  transition: 0.3s;
}

.orange-button:hover .link-on-blue {
  color: #05556d;
}

.contact-us {
  margin: 0.5em 0;
  padding: 0.75em 1.5em;
}

#quotes {
  color: white;
  font-size: 2em;
  letter-spacing: 2px;
}

.white-text {
  color: white;
  padding: 1.5rem;
  margin: 0;
}

.large-white-text {
  color: white;
  font-size: 2em;
  letter-spacing: 2px;
  text-align: center;
}

a:hover {
  color: #16c1f3;
}

.sponsor-p {
  font-size: 20px;
  line-height: 35px;
  text-align: center;
}

.stars {
  height: 90px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.sponsorship-levels-img {
  width: 90%;
  height: 90%;
  padding: 5%;
}

.hidden-lg {
  display: none;
}

iframe#youtubeiframe {
  width: 560px;
  height: 315px;
  padding-inline-start: 15rem;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

table.mentor {
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
table.mentor td {
  border-bottom: 1px solid #000;
  padding: 1rem;
}
table.mentor td ul {
  margin: 0;
}
table.mentor td:first-of-type {
  border-right: 1px solid #000;
  vertical-align: top;
}

#chartcontainer {
  position: relative;
  min-height: auto;
  width: 100%;
  display: flex;
  flex-grow: 1;
}

.videowrapper {
  max-width: 560px; /* you have to have a size or this method doesn't work */
  max-height: 315px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 2rem;
}

@media only screen and (max-width: 1024px) {
  .row {
    padding: 2em;
  }
  h1 {
    font-size: 3.5em;
  }
  p {
    text-align: left;
  }
}
@media only screen and (max-width: 910px) {
  .row {
    padding: 1em;
    margin: 0 auto;
    overflow-x: hidden;
  }
  .column-med {
    -webkit-flex: 0 0 40%;
    -moz-flex: 0 0 40%;
    -o-flex: 0 0 40%;
    flex: 0 0 40%;
  }
  .hidden-med {
    display: none;
  }
  .column {
    -webkit-flex: 0 0 100%;
    -moz-flex: 0 0 100%;
    -o-flex: 0 0 100%;
    flex: 0 0 100%;
    box-sizing: border-box;
  }
  h1 {
    font-size: 2em;
    letter-spacing: 0.5px;
  }
  .donate {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
    color: #fc7625;
  }
  .donate:hover {
    background-color: #fc7625;
    color: white;
  }
  .nav-bar {
    justify-content: space-between;
  }
  .small-screen-nav {
    flex-flow: column-reverse nowrap;
    justify-content: flex-end;
  }
  .img-link {
    align-items: center;
    display: flex;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
  }
  .nav-link {
    display: none;
  }
  .nav-link.dropdown {
    position: relative;
    padding: 0;
  }
  .dropdown-menu {
    position: static;
    width: 100%;
    margin: 0 auto;
    text-align: left;
  }
  .dropdown-menu .dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    padding-left: 3.5rem;
  }
  .dropdown-toggle::after {
    content: " ▾";
    font-size: 2em;
    display: flex;
    width: 1rem;
  }
  .nav-link--mobile {
    display: block;
    width: 100%;
    text-align: left;
    padding: 1rem;
    padding-left: 3%;
  }
  .nav-link--mobile a {
    display: flex;
    justify-content: space-between;
    width: auto;
    padding-right: 4%;
  }
  .nav-bar-inner {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    display: flex;
    align-items: flex-start;
  }
  .nav-bar-inner > .nav-link--mobile {
    border-bottom: 1px solid #ccc;
  }
  .nav-link--mobile:last-child {
    border-bottom: none;
  }
  .main-header {
    display: block;
    position: relative;
    background: url(../img/three-participants-at-laptops-min.jpg) #0093b5
      no-repeat top center;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
  }
  .main-header__text {
    position: absolute;
    bottom: 0;
    max-width: 100%;
    width: auto;
    padding: 0 1em;
  }
  .main-content {
    margin-top: 5rem;
  }
  .hidden-sm {
    display: none;
  }
  .hidden-lg {
    display: inline-block;
  }
  .lines-button {
    position: absolute;
    right: 0;
    top: 0;
    margin: 0.5rem 0;
    padding: 1.5rem 1rem;
    transition: 0.3s;
    cursor: pointer;
    user-select: none;
    border-radius: 0.4285714286rem;
  }
  .lines-button:hover {
    opacity: 1;
  }
  .lines-button:active {
    transition: 0;
    background: rgba(0, 0, 0, 0.1);
  }
  .lines {
    display: inline-block;
    width: 3rem;
    height: 0.4285714286rem;
    background: #16c1f3;
    border-radius: 0.2142857143rem;
    transition: 0.3s;
    position: relative;
    /*create the upper and lower lines as pseudo-elements of the middle line*/
  }
  .lines:before,
  .lines:after {
    display: inline-block;
    width: 3rem;
    height: 0.4285714286rem;
    background: #16c1f3;
    border-radius: 0.2142857143rem;
    transition: 0.3s;
    position: absolute;
    left: 0;
    content: "";
    transform-origin: 0.2142857143rem center;
  }
  .lines:before {
    top: 0.75rem;
  }
  .lines:after {
    top: calc(-3rem / 4);
  }
  .lines-button:hover {
    opacity: 1;
  }
  .lines-button:hover .lines:before {
    top: 1rem;
  }
  .lines-button:hover .lines:after {
    top: calc(-3rem / 3);
  }
  .lines-button.x.close .lines {
    /*hide the middle line*/
    background: transparent;
    /*overlay the lines by setting both their top values to 0*/
  }
  .lines-button.x.close .lines:before,
  .lines-button.x.close .lines:after {
    transform-origin: 50% 50%;
    top: 0;
    width: 2.5em;
  }
  .lines-button.x.close .lines:before {
    transform: rotate3d(0, 0, 1, 45deg);
  }
  .lines-button.x.close .lines:after {
    transform: rotate3d(0, 0, 1, -45deg);
  }
  .contact-us {
    display: block;
  }
  .nav-bar-inner {
    padding: 0;
    margin-top: 5rem;
  }
  .social-link {
    width: 50px; /* Slightly smaller width for mobile */
  }
  .social-media,
  .hiring {
    width: 2.5rem;
    height: 2.5rem;
  }
  .hiring {
    width: 3.75rem;
  }
  .icon-text {
    font-size: 0.6rem; /* Even smaller text for mobile */
  }
}
@media (max-width: 560px) {
  .videowrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }
  .videowrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  table.mentor td {
    display: block;
    width: 100%;
    padding: 0.5rem;
    box-sizing: border-box;
  }
  table.mentor td:first-of-type {
    border-right: none;
    vertical-align: top;
  }
}
@media (max-width: 411px) {
  .large-white-text {
    font-size: 1.5em !important;
  }
}
/* iphone 4 and 4s media query */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-device-pixel-ratio: 2) and (device-aspect-ratio: 2/3) {
  .main-header__text {
    font-size: 1rem;
    height: 50vh;
  }
}
/* iphone 4 and 4s landscape media query */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
  .main-header {
    background-size: cover;
    font-size: 14px;
  }
  .main-content {
    font-size: 14px;
  }
}
/* Samsung Galaxy s5 portrait media query */
@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
  .main-header__text {
    font-size: 1rem;
  }
  .main-header_text p {
    margin-bottom: 20px;
  }
}
/* Samsung Galaxy s5 landscape media query */
@media screen and (device-width: 640px) and (device-height: 360px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape) {
  .main-header__text {
    font-size: 1rem;
    height: 50vh;
  }
  .main-header {
    height: 500px;
    background-size: cover;
  }
}
.progress-bg {
  margin: 0 auto;
  width: 65%;
  height: 78px;
  border-radius: 10px;
  text-align: center;
  -moz-box-shadow: inset 0 0 10px #ccc;
  -webkit-box-shadow: inset 0 0 10px black;
  box-shadow: inset 0 0 10px black;
  background-color: white;
}

.progress-bar {
  height: 78px;
  border-radius: 10px;
  float: left;
  width: 50%;
  background-color: #fc7625;
}

.progress-bg h3.goal,
.progress-bg h3.raised {
  line-height: 78px;
  margin: 0;
  padding: 0;
  text-align: center;
  display: inline;
}

.progress-bg h3.goal {
  color: #fff;
}

.progress-bg h3.goal {
  color: #fc7625;
  text-align: center;
}

.progress-bg h3.goal {
  float: right;
  display: inline;
  padding: 0 25px 0 0;
  text-align: center;
}

/* Events Stuff */
.event-item {
  max-width: 30%;
  flex-basis: 25%;
  padding: 1rem 2rem;
}

.event-item__address {
  font-size: 1rem;
}

.blue-background h3 {
  color: white;
}

.collapsible {
  color: #0093b5;
  cursor: pointer;
  margin: 25px;
  text-align: left;
  outline: none;
  font-size: 1.2em;
}
.collapsible:hover {
  color: #05556d;
}
.collapsible::before {
  content: "+ ";
  text-decoration: none;
}

.collapsible-active {
  color: #05556d;
}
.collapsible-active::before {
  content: "- ";
}

.collapsible-content {
  padding: 25px;
  display: none;
}

ul.hidden-bullets {
  list-style-type: none;
  padding-inline-start: 0;
}

p.press-release-summary {
  font-style: italic;
}

p.press-release-bold {
  font-style: bold;
}

/* Square Payment Styling */
.payment-form {
  padding: 50px 0px 50px 0px;
  width: 100%;
  max-width: 1000px;
  margin: 40px auto;
  display: flex;
  justify-content: center;
  border-radius: 20px;
}

.payment-form {
  align-items: center;
}

#apple-pay-button {
  height: 48px;
  width: 100%;
  display: inline-block;
  appearance: none;
  -webkit-appearance: -apple-pay-button;
  -moz-appearance: none;
  -apple-pay-button-type: plain;
  -apple-pay-button-style: black;
}

/* Fix for contact link visibility on job form page */
#payment-page p a {
  color: #ffffff !important;
  text-decoration: underline;
  font-weight: bold;
}

#payment-page p a:hover {
  color: #16c1f3 !important;
  text-decoration: underline;
}

#fast-checkout {
  background: #fafafa;
  color: black;
}

#fast-checkout h3 {
  color: #0093b5;
}

#fast-checkout input {
  border-radius: 6px;
  position: relative;
}

#fast-checkout .wrapper {
  position: relative;
}

#fast-checkout button {
  width: 100%;
}

#fast-checkout button {
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  color: white;
  display: inline-block;
  background-color: #fc7625;
  text-align: center;
  font-size: 1.5em;
}
#fast-checkout button:hover {
  background-color: #16c1f3;
  color: white;
  transition: 0.3s;
}

#fast-checkout .border {
  color: rgba(0, 0, 0, 0.55);
  background: rgba(0, 0, 0, 0.1);
  height: 1px;
  width: 100%;
  margin: 30px 0;
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
  position: relative;
}

#fast-checkout .border span {
  position: absolute;
  top: -10px;
  background: #fafafa;
  padding: 0 10px;
  left: calc(50% - 1em - 5px);
}

#ach-wrapper {
  display: none;
}

#ach-wrapper input:first-of-type {
  margin-bottom: 10px;
}

#ach-message {
  width: 100%;
  margin-top: 11px;
  margin-bottom: 11px;
  font-size: 14px;
  display: inline-block;
  color: #bf0020;
}

#ach-message:empty:before,
#message:empty:before {
  content: "​";
}

#payment-flow-message {
  width: 100%;
  margin-top: 11px;
  margin-bottom: 11px;
  height: 100px;
  display: block;
}

#payment-flow-message.error {
  color: #bf0020;
  font-weight: bold;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.4;
}

#payment-flow-message.success {
  color: #28a745;
  font-weight: bold;
  margin-top: 10px;
}

.wrapper {
  max-width: 50%;
  justify-content: center;
}

#card-container {
  max-width: 387px;
  margin: auto;
}

#info-wrapper {
  margin-bottom: 2em;
}

#info-wrapper > fieldset {
  box-sizing: border-box;
  margin: 1em;
  padding: 1em;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

legend {
  color: rgba(0, 115, 149, 0.8);
}

#info-wrapper > fieldset > label {
  margin-top: 1em;
  margin-bottom: 0.5em;
  color: rgba(0, 115, 149, 0.8);
}

#info-wrapper > fieldset > input[type="text"],
#info-wrapper > fieldset > input[type="email"],
#info-wrapper > fieldset > textarea {
  min-width: 90%;
  margin: auto auto 1em auto;
  padding: 0.25em;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

#info-wrapper > fieldset > textarea {
  min-height: 6em;
}

input[type="radio"] {
  width: 50px;
}

#radio-wrapper {
  width: 100%;
  margin-bottom: 1em;
  color: rgba(0, 115, 149, 0.8);
}

#payment-page {
  padding: 1.5em;
  background-color: #0093b5;
}

#payment-page > h1,
#payment-page > p {
  max-width: 65%;
  margin: auto;
  text-align: center;
  margin-bottom: 2rem;
}

#consulting-list {
  list-style-position: inside;
  border-style: solid;
  border-color: #05556d;
  border-width: thick;
  padding: 3% 5% 3% 5%;
}

#consulting-bullet-items {
  border-style: solid;
  border-color: #05556d;
  border-radius: 5px;
  padding: 1%;
  margin: 1%;
  list-style-type: none;
}

.checkbox-container {
  margin: 25px;
  padding-bottom: 30px;
  display: flex;
}

input#code-of-conduct-checkbox {
  margin-right: 15px;
}

label[for="code-of-conduct-checkbox"] ~ a {
  color: rgba(0, 115, 149, 0.8);
  text-decoration: none;
}

@media (max-width: 900px) {
  .wrapper {
    max-width: 75%;
  }
  #info-wrapper {
    max-width: 100%;
    min-width: none;
  }
}
@media (max-width: 600px) {
  .chart-container {
    padding: 2rem 0;
  }
  #myChart {
    padding: 0;
  }
  .payment-form {
    margin: 0px;
    padding: 30px;
    box-sizing: border-box;
  }
  .wrapper {
    max-width: 100%;
  }
  #info-wrapper {
    max-width: 100%;
    min-width: none;
  }
  #info-wrapper > fieldset {
    margin: 0px;
    width: 100%;
  }
  .sponsor-logo {
    width: 38%;
    margin: 15px;
  }
  .sponsor-img {
    width: 33%;
    margin: 20px;
  }
}
/* Invalid radio wrapper styling */
#radio-wrapper.invalid {
  padding: 10px;
  background-color: rgba(255, 200, 200, 0.1);
  border-radius: 4px;
  border: 2px solid #bf0020;
}

/* Invalid checkbox container styling */
.checkbox-container.invalid {
  padding: 10px;
  background-color: rgba(255, 200, 200, 0.1);
  border-radius: 4px;
  border: 2px solid #bf0020;
}

/* Disabled button styling */
button:disabled,
button.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Success page styling */
.success-container {
  text-align: center;
  padding: 40px 20px;
  background-color: #fafafa;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #28a745;
  color: white;
  font-size: 40px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.success-container h2 {
  color: #28a745;
  margin-bottom: 20px;
}

.success-container p {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.5;
  color: #333;
  text-align: center;
}

.success-container a {
  color: #0093b5;
  text-decoration: underline;
}

.success-container button {
  margin-top: 30px;
}

/* Existing styles for invalid fields, etc. */
input.invalid,
textarea.invalid {
  border: 2px solid #bf0020 !important;
  background-color: rgba(255, 200, 200, 0.1);
}

/* Processing state styling */
.processing {
  position: relative;
  pointer-events: none;
}

.processing::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

/* Spinner animation for processing state */
@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0, 147, 181, 0.3);
  border-radius: 50%;
  border-top-color: #0093b5;
  animation: spinner 0.8s linear infinite;
  margin-right: 10px;
  vertical-align: middle;
}

/* News Page Styling */
#news-title {
  padding: 0;
}

/* Sponsor Page Styling */
.sponsor-benefit-table {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

.sponsor-benefit-table,
.sponsor-benefit-table td {
  border: 1px solid #0093b5;
  border-collapse: collapse;
}

.sponsor-benefit-table th {
  padding: 5px;
  column-width: 100px;
}

.sponsor-table-cell {
  text-align: center;
}

.sponsor-table-prompt {
  padding-left: 5px;
}

@media only screen and (min-width: 320px) and (max-width: 699px) {
  .sponsor-benefit-table {
    max-width: 100%;
    table-layout: inherit;
    font-size: 13px;
  }
}

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