* {
  box-sizing: border-box;
}

nav {
  background: white;
  height: 90px;
  display: flex;
  padding: 10px 0 10px 10px;
  width: 100%;
  position: fixed;
  top: 0;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  font-family: "Titillium Web", Helvetica, sans-serif;
}
nav .logo {
  height: 100%;
  width: auto;
  /*width: 130px;*/
  /*margin-left: 40px;*/
}
nav a,
nav a:visited,
nav a:focus {
  display: inline-block;
  width: 100%;
  max-width: 200px;
  position: relative;
  cursor: pointer;
  color: black;
  text-decoration: none;
}
nav a .progress,
nav a:visited .progress,
nav a:focus .progress {
  height: 15px;
  width: 100%;
  margin-top: 6px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
nav a .progress .inactive,
nav a:visited .progress .inactive,
nav a:focus .progress .inactive {
  display: flex;
  width: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}
nav a .progress .inactive .line,
nav a:visited .progress .inactive .line,
nav a:focus .progress .inactive .line {
  z-index: 1;
  height: 2px;
  width: 100%;
  align-self: center;
  position: absolute;
  background: lightgrey;
}
nav a .progress .inactive .circle,
nav a:visited .progress .inactive .circle,
nav a:focus .progress .inactive .circle {
  z-index: 2;
  left: 0;
  top: 0;
  height: 10px;
  width: 10px;
  border-radius: 200%;
  background: white;
  border: 2px solid lightgrey;
  display: inline-block;
}
nav a .progress .active,
nav a:visited .progress .active,
nav a:focus .progress .active {
  display: flex;
  width: 100%;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
nav a .progress .active .line,
nav a:visited .progress .active .line,
nav a:focus .progress .active .line {
  z-index: 3;
  height: 2px;
  width: 100%;
  align-self: center;
  position: absolute;
  background: #13356b;
}
nav a .progress .active .circle,
nav a:visited .progress .active .circle,
nav a:focus .progress .active .circle {
  z-index: 4;
  left: 0;
  top: 0;
  height: 10px;
  width: 10px;
  border-radius: 200%;
  background: white;
  border: 2px solid #13356b;
  display: inline-block;
}

.mobile-nav {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: white;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
}
.mobile-nav a {
  flex: 1;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 22px;
}
.mobile-nav a,
.mobile-nav a:visited,
.mobile-nav a:focus {
  color: black;
  text-decoration: none;
}
.mobile-nav.closed {
  transform: translate3d(-100%, 0%, 0);
  -webkit-transform: translate3d(-100%, 0%, 0);
  -moz-transform: translate3d(-100%, 0%, 0);
  -ms-transform: translate3d(-100%, 0%, 0);
}

.mobile-menu-trigger {
  width: 25px;
  display: none;
  cursor: pointer;
  z-index: 4;
  position: relative;
}

@media screen and (max-width: 820px) {
  .mobile-menu-trigger {
    display: block;
    margin-right: 10px;
  }
  nav a {
    display: none !important;
  }
  nav a.logo-nav {
    display: block !important;
  }
  .progress, .progress .active, .progress .inactive {
    display: none !important;
  }
}
.close-mobile-nav {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  cursor: pointer;
}

.ie .progress {
  display: none !important;
  visibility: hidden !important;
}
.ie .progress .active, .ie .progress .inactive {
  display: none !important;
}

.modal {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10000000000;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

html,
body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-family: Helvetica, sans-serif;
  height: 100%;
  overflow: auto;
  overflow-x: hidden;
}

.max-width {
  width: 90%;
  margin: 0 auto;
}

h1 {
  font-size: 65px;
  line-height: 66px;
  font-family: "Titillium Web", Helvetica, sans-serif;
}

h2 {
  margin-top: 0;
  font-size: 50px;
  font-family: "Titillium Web", Helvetica, sans-serif;
}

p {
  font-size: 22px;
  line-height: 1.2;
}

section {
  min-height: 100%;
  padding: 20px;
  margin: 0;
  background-size: cover !important;
  background-position: center !important;
}
section.flex {
  display: flex;
}
section.section-center {
  text-align: center;
  align-items: center;
  justify-content: center;
}
section.section-one {
  color: white;
  background: url("../images/home-banner-dark-green-1920x1080.jpg");
}
section.section-one h1 {
  max-width: 900px;
  font-size: 65px;
}
section.section-one h2 {
  font-size: 25px;
  margin-top: 0px;
  padding: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  /* background-image: url("../images/blue-bar-bg.png"); */
}
section.section-two {
  color: white;
  background: url("../images/section-2-bg-1920x1080.jpg");
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}
section.section-two h1,
section.section-two p {
  max-width: 600px;
  margin-bottom: 0;
}

.section-two h2.company-name {
  font-size: 3rem;
  font-weight: 700;
  margin-block-end: 0.3rem;
}

.section-two h2.tag-line {
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
}

section.section-two p {
  font-size: 1.25rem;
}

section.section-two .circle {
  max-width: 400px;
  display: block;
  margin: 0 auto;
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translate3d(-50%, 25%, 0);
  -webkit-transform: translate3d(-50%, 25%, 0);
  -moz-transform: translate3d(-50%, 25%, 0);
  -ms-transform: translate3d(-50%, 25%, 0);
}
section.section-three {
  align-items: center;
  background: url("../images/section-3-bg-1920x1941.jpg");
  background-position: right !important;
}
section.section-three h2 {
  color: #8BBC3A;
  font-size: 50px;
}
section.section-three h3 {
  font-size: 45px;
  font-weight: 300;
}
section.section-three h3,
section.section-three p {
  color: #006BA7;
}
section.section-three p {
  font-weight: 100;
  font-size: 25px;
}
section.section-four {
  /*background: url("../images/section-5-bg.png");
  background-position: bottom right !important;*/
  /*background-color: #868586;*/
  background: radial-gradient(circle, #868586 0%, #868586 50%, transparent 200%);
  color: #ffffff;
  text-align: center;
  position: relative;
  flex-direction: column;
  padding-bottom: 50px;
}

section.section-four .flex {
  width: 100%;
  flex-direction: column;
  align-items: center;
}
section.section-four h1 {
  font-size: 50px;
}
section.section-four h2 {
  font-size: 34px;
}
section.section-four p {
  font-weight: 100;
  max-width: 600px;
  font-size: 25px;
}
section.section-four .bubble-wrapper {
  height: 700px;
  width: 100%;
  position: relative;
}
section.section-four .circle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  -webkit-transform: translate3d(-50%, -50%, 0);
  -moz-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
}
section.section-four .top {
  width: 350px;
  margin-top: -170px;
}
section.section-four .bottom {
  width: 325px;
  margin-top: 170px;
}
section.section-four .left {
  margin-left: -320px;
}
section.section-four .right {
  margin-left: 320px;
  margin-top: -25px;
}
section.section-four .left,
section.section-four .right {
  width: 300px;
}
section.section-four .bottom-row {
  display: flex;
  justify-content: center;
  margin-top: -20px;
}
section.section-four .bottom-row .left {
  width: 350px;
}
section.section-four .bottom-row .right {
  width: 300px;
}
section.section-four .bottom-row .left,
section.section-four .bottom-row .right {
  margin: 0;
  align-self: center;
}
section blockquote {
  max-width: 475px;
  text-align: center;
  margin: 50px auto 0 auto;
  color: white;
}
section.section-five {
  align-items: center;
  background: url("../images/section-5-bg-1920x1099.png");
  position: relative;
}
section.section-five .circle {
  position: absolute;
  right: -5rem;
  bottom: -5rem;
  width: 450px;
  transform: translate3d(0%, 50%, 0);
  -webkit-transform: translate3d(0%, 50%, 0);
  -moz-transform: translate3d(0%, 50%, 0);
  -ms-transform: translate3d(0%, 50%, 0);
}
section.section-five .flex-1:first-child {
  max-width: 400px !important;
}
section.section-five h2 {
  color: #8BBC3A;
  font-size: 50px;
}
section.section-five h3 {
  font-size: 40px;
}
section.section-five h3,
section.section-five p {
  font-weight: 300;
  color: #006BA7;
}
section.section-five p {
  font-size: 18px;
  line-height: 1.2;
}

.pillar b {
  font-weight: bold;
  font-size: 18px;
}

section.section-five .pillar {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
section.section-five .pillar img {
  align-self: center;
  width: 90px;
}
section.section-five .pillar p {
  font-size: 16px;
  line-height: 20px;
  padding: 20px;
  max-width: 300px;
}
section.section-five .pillar-1 {
  margin-top: 50px;
  left: -50px;
}
section.section-five .pillar-2 {
  left: -150px;
}
section.section-five .pillar-3 {
  left: -250px;
}

.section-six {
  background: radial-gradient(circle, #868586 0%, #868586 50%, transparent 200%);
}

.flex {
  display: flex;
  flex-wrap: wrap;
}
.flex .flex-1 {
  flex: 1;
}

.blue-btn {
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  margin: 40px auto;
  background: #006BA7;
  color: white;
  padding: 16px;
  width: 100%;
  max-width: 200px;
  border-radius: 20px;
}

.column-center {
  flex-direction: column;
}

.what-we-offer {
  color: #ffffff;
  font-size: 50px;
  margin-top: 110px;
}
.what-we-offer h2 {
  font-size: 50px;
}

.does-it-all-wrapper {
  min-width: 250px;
  max-width: 525px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.does-it-all {
  color: #ffffff;
  font-size: 50px;
  font-weight: 300;
  margin-bottom: 4px;
}

.does-it-all-eyebrow {
  color: #ffffff !important;
  font-size: 20px !important;
  font-weight: 300;
  margin-top: 2px;
  padding-bottom: 40px;
}

.who-we-serve {
  color: #8BBC3A;
  margin-top: 110px;
  width: 100%;
  text-align: left;
}

.who-we-serve-eyebrow {
  color: #006BA7;
  font-size: 20px;
  font-weight: 600;
  margin-top: 2px;
}

.service-card-row {
    display: flex;
    justify-content: center;
    gap: 100px;
    align-items: center;
    margin-bottom: 30px;
}
  
.circle-row-shift-left {
  display: flex;
  justify-content: center;
  margin-right: 75px;
  z-index: 1;
}

.circle-row-shift-right {
  display: flex;
  justify-content: center;
  margin-left: 75px;
  z-index: 1;
}

.what-we-offer-circles {
  width: 260px;
  height: 260px;
  margin: 20px;
}

.top-circle {
  position: relative;
  top: -44px;
}

.section-seven {
  align-content: center;
  flex-direction: column;
  /*background: url("../images/who-we-serve-bg.png");
  background-position: top right !important;*/
  padding-bottom: 50px;
}
.section-seven .outline-box {
  border: 1px solid white;
  border-radius: 12px;
  text-align: center;
  max-width: 600px;
  margin: 30px auto;
  width: 100%;
  padding: 10px;
}
.section-seven .outline-box p {
  max-width: 500px;
  margin: 4px auto;
}
.section-seven b {
  margin: 0 auto;
}
.section-seven .thirds {
  flex-wrap: wrap;
}
.section-seven .thirds .flex-1 {
  flex-basis: 30%;
}
.section-seven .thirds .flex-1 p {
  max-width: 250px;
  padding: 0 20px;
  margin: 10px auto 20px auto;
}
.section-seven p {
  font-weight: 300;
  font-size: 17px;
  line-height: 22px;
}
.section-seven .flex {
  margin-top: 50px;
}
.section-seven .flex .flex-1 {
  text-align: center;
  margin: auto;
}

.section-seven .flex img,svg {
  width: 225px;
}

.who-we-serve-eyebrow-wrapper {
  min-width: 250px;
  max-width: 575px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.how-we-do-left {
  max-width: 250px;
}

.how-we-do-right {
  max-width: 360px;
}

.semicircle-styles {
  width: 80px;
  margin: 0px auto;
}

@media screen and (max-width: 950px) {
  .section-four .circle,
  .section-four .bottom-row * {
    position: static !important;
    margin: 20px auto !important;
    transform: none !important;
    width: 300px !important;
  }
  .section-four .bubble-wrapper {
    height: auto !important;
  }
}
@media screen and (max-width: 723px) {
  .section-four .circle,
  .section-four .bottom-row * {
    display: block;
  }
  .section-four .bottom-row {
    flex-direction: column;
  }
}
@media screen and (max-width: 899px) {
  .contact {
    padding: 0;
  }
  .contact h2 {
    text-align: center;
  }
  .contact p {
    font-size: 22px !important;
    line-height: 28px !important;
    padding: 20px;
  }
  .contact form {
    width: 100% !important;
    margin-left: 0;
    margin-right: 0;
    max-width: 100% !important;
  }

  .service-card-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 0px;
    margin-right: 0px;
    gap: 0px;
    align-items: center;
  }

  .mobile-service-card {
    margin: 0;
    margin-top: 20px;
  }
  
  .circle-row-shift-right,
  .circle-row-shift-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 0px;
    margin-right: 0px;
    align-items: center;
  }
  .top-circle {
    position: relative;
    top: 0px;
  }
  .mobile-circle {
    margin: 0;
    margin-top: 20px;
  }
  section.section-three h3 {
    font-size: 24px;
  }
  section.section-one h1 {
    font-size: 50px;
  }
  section.section-three > div.flex-1 > h2,
  h2.what-we-offer,
  h2.who-we-serve {
    text-align: center;
  }
  .hide-on-small {
    display: none !important;
  }
  .padding-on-small {
    padding-bottom: 120px;
  }
  .flex-flip {
    display: flex;
    flex-direction: column;
  }
  section.section-five .pillar-2 {
    left: 0px !important;
  }
  section.section-five .pillar-3 {
    left: 0px !important;
  }
}
@media only screen and (min-width: 900px) {
  .flex-flipper {
    display: flex;
    flex-direction: row;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1400px) {
  section.section-five .pillar-2 {
    left: 0px !important;
  }
  section.section-five .pillar-3 {
    left: 0px !important;
  }
}
@media only screen and (max-width: 959px) {
  .flex-flip {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  form {
    width: auto !important;
  }
  form .flex {
    flex-direction: column;
  }
  .hide-mobile {
    display: none;
  }
  
  .section-six,
  .section-seven {
    text-align: center;
    flex-wrap: wrap;
  }
  .section-six .flex-1,
  .section-seven .flex-1 {
    margin: 0 auto;
    flex-basis: 50% !important;
  }
  section.section-five .pillar-1 {
    margin-top: inherit !important;
    left: 0px !important;
  }
  section.section-five .pillar-2 {
    left: 0px !important;
  }
  section.section-five .pillar-3 {
    left: 0px !important;
  }
}
@media only screen and (max-width: 844px) {
  section.section-three {
    background-position: unset !important;
    text-align: center;
  }
}
@media only screen and (max-width: 947px) {
  div.bottom-row > img.max947 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
}
footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
}
footer a {
  color: #868586;
}
footer canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#particles-js {
  width: 100%;
  z-index: 10;
}

.particles-js-canvas-el {
  z-index: 4;
}

#mission-particles,
#black-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact {
  color: white;
  position: relative;
  flex-direction: column;
}
.contact h2 {
  margin-top: 110px;
}
.contact p {
  text-align: center;
  font-size: 40px;
  font-weight: 100;
  line-height: 45px;
  max-width: 800px;
  margin: 0 auto;
}
.contact .bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 50%;
}
.contact form {
  padding: 30px;
  background: white;
  width: 80%;
  margin: 50px auto;
  color: #13356b;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}
.contact form textarea {
  display: block;
  width: 100%;
  max-width: 300px;
}
.contact form input,
.contact form textarea {
  border: 1px solid #002f6c;
}
.contact form input.round,
.contact form textarea.round {
  border-radius: 50px;
  display: block;
  padding: 10px;
  width: 100%;
  max-width: 300px;
  margin: 10px 0;
}

.contact form input.square,
.contact form textarea.square {
  display: block;
  padding: 10px;
  width: 100%;
  max-width: 300px;
  margin: 10px 0;
}

.contact form input.btn-primary {
  padding: 14px;
  border: 1px solid lightgrey;
  color: #8BBC3A;
  width: 100%;
  max-width: 300px;
  margin-top: 25px;
  cursor: pointer;
  background: none;
  font-weight: bold;
  font-size: 16px;
}

.contact form .flex {
  flex-wrap: wrap;
}
.contact form .flex label {
  flex-basis: 50%;
  margin-bottom: 8px;
}

.who-we-serve-landing {
  margin: 0px auto;
}

@media screen and (max-width: 850px) {
  .section-one h1 {
    font-size: 30px !important;
    line-height: 1.2 !important;
  }
  .section-one h2 {
    font-size: 20px !important;
  }
}

#what-we-offer .service-card {
  background: #006BA7;
  color: white;
  padding: 10px;
  text-align: center;
  width: 345px;
  height: 345px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); 
  border-radius: 5px;
}

#what-we-offer .service-card b {
  font-size: 20px;
  font-weight: 800;
}

#what-we-offer .circle {
  border-radius: 200%;
  background: #24518b;
  color: white;
  padding: 10px;
  text-align: center;
  width: 345px;
  height: 345px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 14px;
}
#what-we-offer .circle b {
  font-size: 20px;
  font-weight: 800;
}

.circle-wrapper {
  position: relative;
  z-index: 1;
}

.bold {
  font-weight: 700;
}

/* Move reCAPTCHA v3 badge to the left */
.grecaptcha-badge {
  width: 65px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  left: 1px !important;
}

.grecaptcha-badge:hover {
  width: 256px !important;
}


@media screen and (max-width: 480px) {
  /*.section-two h2.company-name {
    font-size: 1rem !important;
  }

  .section-two h2.tag-line {
    font-size: 2rem !important;
  }*/

  #what-we-do .flex {
    display: block !important;
  }

  #who-we-are,
  #what-we-do,
  #who-we-serve,
  #contact {
    scroll-margin-top: 90px;
  }  

  section.section-five .pillar p {
    max-width: 100% !important;
  }

  .section-seven .flex {
    margin-top: 0px;
  }
  
  .section-seven .flex .flex-1 {
    margin-top: 75px;  
  }
}

/*# sourceMappingURL=style.css.map */