.navbar {
  background: #0033cc;
}

.nav-link {
  color: #fff;
}

.navbar-cta a.me-2 {
  color: #fff;
}

.btn-outline-primary {
  border: 2px solid #fff;
}

.navbar-cta a.btn-primary {
  background: #fff;
  color: #0033cc;
}

.empower-video {
  height: 40vh;
}

.build-future h2 {
  font-weight: 700;
  font-size: 50px;
}

.build-future p {
  font-size: 20px;
  font-weight: 400;
}

.about-section {
    background: rgba(242, 245, 246, 1);
    text-align: left;
}

.about-section .col-md-4 {
    text-align: left;
}

.about-section .about-col{
    background: rgba(255, 255, 255, 1);

}

.benefits-section .benefits-header h2 {
    font-size: 60px;
    font-weight: 700;
  }

.benefits-section .benefits {
    position: relative;
    padding-left: 40px; /* Space for the icon */
}
.benefits-section .benefits:before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    font-size: 22px;
    left: 2px;
    top: 0px;
    color: #28a745;
}
  
.benefits-section .benefits:not(:last-child):after {
    content: "";
    position: absolute;
    left: 11px;
    top: 30px;
    bottom: -30px;
    width: 2px;
    background-image: linear-gradient(to bottom, #28a745 50%, transparent 0%);
    background-size: 2px 10px;
    background-repeat: repeat-y;
}
  
  /* For the last benefit, add the line but remove the icon */
  .benefits-section .benefits:last-child:after {
    content: "";
    position: absolute;
    left: 11px;
    top: 30px;
    bottom: 0; /* Ends at the end of the benefit */
    width: 2px;
    background-image: linear-gradient(to bottom, #28a745 50%, transparent 0%);
    background-size: 2px 10px;
    background-repeat: repeat-y;
  }

  .job-openings {
    padding: 60px 0;
  }

  .job-openings .job-form .form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .job-openings .job-form .form-header h3 {
    font-size: 24px;
    font-weight: 700;
  }

  .job-openings .job-form .form-header p {
    font-size: 18px;
    font-weight: 400;
    color: rgba(64, 64, 64, 1);

  }

