:root {
  --white: white;
  --navy: #253355;
  --green: #15ff7e;
  --black: black;
  --neon-blue: #00e0ff;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  background-color: rgba(255, 255, 255, 0);
  flex-flow: column;
  font-family: Roboto, sans-serif;
  font-size: .875rem;
  line-height: 20px;
  display: flex;
}

a {
  color: var(--white);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: inline-block;
}

.navbar-no-shadow {
  color: #fff;
  background-color: rgba(255, 248, 248, .05);
}

.navbar-no-shadow-container {
  z-index: 5;
  background-color: var(--white);
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 20px;
}

.container-regular {
  width: 100%;
  max-width: 1260px;
  min-height: 30px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-link {
  color: var(--navy);
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
}

.nav-link:hover {
  color: rgba(26, 27, 31, .75);
  font-style: normal;
  line-height: 20px;
  text-decoration: overline;
}

.nav-link:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-link.w--current:hover {
  pointer-events: auto;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: var(--navy);
  text-decoration: overline;
}

.nav-dropdown-toggle:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  color: var(--navy);
  -webkit-text-stroke-color: #fff;
  border: 0 solid rgba(255, 255, 255, 0);
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-list.shadow-three.mobile-shadow-hide.w--open {
  background-color: var(--navy);
  border-radius: 0;
  margin-top: 40px;
}

.nav-dropdown-link {
  color: var(--white);
  text-align: justify;
  text-transform: uppercase;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: .875rem;
  font-weight: 500;
}

.nav-dropdown-link:hover {
  color: var(--green);
}

.nav-dropdown-link:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-link.w--current {
  color: var(--white);
}

.nav-dropdown-link.w--current:hover {
  color: var(--green);
}

.nav-button-wrapper {
  margin-left: 120px;
}

.button-primary {
  background-color: var(--navy);
  color: var(--green);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 25px;
  font-size: 12px;
  font-weight: 900;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.hero-heading-left {
  color: #fff;
  text-align: left;
  background-color: rgba(245, 247, 250, 0);
  border: 1px #000;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 0 60px;
  display: flex;
  position: relative;
}

.container {
  width: 100%;
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  display: flex;
}

.hero-split {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.margin-bottom-24px {
  margin-bottom: 24px;
  font-weight: 400;
}

.button-primary-2 {
  background-color: var(--navy);
  color: var(--green);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 32px;
  padding: 12px 25px;
  font-size: 12px;
  font-weight: 900;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-2:hover {
  color: var(--navy);
  background-color: #fff;
}

.button-primary-2:active {
  background-color: #43464d;
}

.hero-image {
  color: var(--green);
}

.heading {
  font-size: 1rem;
}

.heading-2 {
  color: var(--green);
  margin-bottom: 0;
  font-size: 3rem;
  line-height: 0;
}

.body {
  background-image: url('../images/BG-Home-2.svg');
  background-position: 50% 0;
  background-size: 150% 250%;
  height: 100%;
}

.text-block {
  color: var(--navy);
  font-weight: 500;
}

.heading-3 {
  color: #fff;
  text-align: center;
  -webkit-text-stroke-color: #fff;
  font-size: 2rem;
  font-weight: 500;
}

.bold-text {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 55px;
}

.soln-card {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: rgba(255, 255, 255, .05);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 250px;
  padding: 15px;
  display: flex;
}

.div-block {
  height: 70%;
}

.div-block-2 {
  background-color: #fff;
  height: 30%;
}

.features-list {
  border-bottom: 1px solid #e4ebf3;
  padding: 10px 30px;
  position: relative;
}

.features-wrapper-two {
  text-align: left;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  margin-top: 93px;
  display: flex;
}

.features-left {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin-bottom: 0;
  display: flex;
}

.solns-paragraph {
  color: #fff;
  margin-bottom: 24px;
  font-weight: 400;
}

.text-link-arrow {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed {
  color: #fff;
  margin-left: 2px;
  display: flex;
}

.features-right {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  margin-bottom: -16px;
  display: flex;
}

.features-block-two {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.features-image {
  object-fit: cover;
  width: 80px;
  height: 80px;
  margin-right: 16px;
}

.heading-4 {
  color: var(--green);
  text-align: center;
  font-weight: 500;
}

.paragraph, .paragraph-2, .paragraph-3 {
  color: #fff;
}

.div-block-3 {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.image {
  width: 20%;
}

.paragraph-4 {
  color: #fff;
  width: 100%;
  margin-bottom: 0;
  padding-top: 0;
  line-height: 20px;
}

.soln-grid {
  grid-template-columns: .75fr .75fr;
  margin-top: 20px;
}

.div-block-4 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.heading-5 {
  color: var(--green);
  -webkit-text-stroke-color: #fff;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: 23px;
  font-size: 1.5rem;
  font-weight: 500;
}

.logos-title-small {
  border-bottom: 0 solid #e4ebf3;
  padding: 60px 30px;
  position: relative;
}

.container-2 {
  width: 100%;
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.clients-tag {
  border-top: 1px solid var(--green);
  color: var(--green);
  text-align: center;
  margin-bottom: 32px;
  padding-top: 32px;
  font-size: 1.5rem;
  line-height: 0;
}

.clients-wrapper-three {
  border-bottom: 1px solid var(--green);
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 20px;
  display: flex;
}

.clients-image-three {
  margin-bottom: 10px;
  margin-left: 15px;
  margin-right: 15px;
}

.footer-subscribe {
  background-color: rgba(255, 255, 255, .05);
  border-bottom: 0 solid rgba(228, 235, 243, 0);
  padding: 50px 30px 40px;
  position: relative;
}

.footer-form-two {
  background-color: rgba(245, 247, 250, 0);
  margin-bottom: 10px;
  padding: 24px 0;
}

.footer-form-container-two {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-form-title {
  color: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  font-size: 1.5rem;
  line-height: 32px;
}

.footer-form-block-two {
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.footer-form-input {
  border: 1px none var(--white);
  background-color: var(--navy);
  color: #fff;
  -webkit-text-fill-color: inherit;
  object-fit: fill;
  background-clip: border-box;
  width: 460px;
  height: 48px;
  margin-bottom: 0;
  padding: 12px 180px 12px 20px;
}

.footer-form-input::placeholder {
  color: rgba(26, 27, 31, .8);
}

.button-primary-3 {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-3:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary-3:active {
  background-color: #43464d;
}

.button-primary-3.footer-form-button {
  background-color: var(--white);
  color: var(--navy);
  padding: 8px 18px;
  font-weight: 900;
  position: absolute;
  right: 8px;
}

.footer-wrapper-three {
  color: #fff;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-block-three {
  color: var(--navy);
  justify-content: flex-start;
  align-items: center;
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
}

.footer-link-three {
  color: var(--navy);
  margin-left: 20px;
  margin-right: 20px;
  font-weight: 900;
  text-decoration: none;
}

.footer-link-three:hover {
  color: rgba(26, 27, 31, .75);
}

.footer-social-block-three {
  justify-content: flex-start;
  align-items: center;
  margin-left: -32px;
  display: flex;
}

.footer-social-link-three {
  margin-left: 32px;
}

.footer-divider-two {
  border: 1px solid var(--navy);
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer-bottom {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-copyright {
  color: var(--navy);
  font-weight: 900;
}

.footer-legal-block {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-legal-link {
  color: var(--navy);
  margin-left: 24px;
  font-weight: 900;
}

.footer-legal-link:hover {
  color: #3a4554;
}

.footer-subscribe-2 {
  background-color: var(--white);
  border-bottom: 1px solid #e4ebf3;
  max-width: 100%;
  margin-top: auto;
  padding: 31px 30px;
  position: relative;
}

.solns-container {
  width: 100%;
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.text-block-2, .image-2 {
  color: #fff;
}

.div-block-5 {
  align-items: center;
  width: 100%;
  display: flex;
}

.div-block-6 {
  justify-content: flex-start;
  align-self: flex-start;
  align-items: center;
  display: flex;
}

.div-block-7 {
  justify-content: flex-start;
  align-self: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
  display: flex;
}

.div-block-8 {
  align-items: center;
  display: flex;
}

.div-block-9 {
  align-items: center;
  width: 100%;
  display: flex;
}

.body-2 {
  background-image: url('../images/BG-Home-2.svg');
  background-position: 50%;
  background-size: 150% 300%;
  margin-bottom: 20px;
}

.body-3 {
  background-image: url('../images/BG-Home-2.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: 150% 300%;
}

.soln-box {
  border: 1px #000;
  margin-top: 40px;
  margin-bottom: 0;
}

.container-3 {
  border: 1px #000;
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  max-width: 75%;
  display: flex;
}

.headshot-daniel {
  text-align: center;
  flex-flow: row;
  justify-content: space-between;
  align-self: flex-start;
  align-items: center;
  margin-top: auto;
  display: flex;
}

.div-block-11 {
  background-color: rgba(255, 255, 255, 0);
  justify-content: flex-end;
  align-items: center;
  width: 40%;
  margin-bottom: 0;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.heading-6 {
  color: var(--green);
  text-align: left;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 10px;
  font-size: 1.9rem;
  font-weight: 400;
  display: flex;
}

.bold-text-2 {
  color: var(--green);
  font-size: 1.3rem;
  font-weight: 500;
}

.paragraph-5 {
  color: #fff;
  text-align: justify;
  overflow-wrap: normal;
  margin-bottom: 10px;
  font-size: 1rem;
}

.container-4 {
  width: 100%;
  max-width: 75%;
  margin-top: 10px;
  margin-bottom: 60px;
}

.heading-7 {
  color: #fff;
}

.bold-text-3 {
  color: var(--green);
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 500;
  text-decoration: none;
}

.list {
  color: #fff;
  white-space: normal;
  word-break: normal;
}

.team-member {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.mis-vis {
  background-color: rgba(255, 255, 255, .1);
  justify-content: space-between;
  margin-top: 20px;
  padding: 13px 13px 0;
  display: flex;
}

.paragraph-6 {
  margin-bottom: 0;
  font-size: .9rem;
}

.custom-bullet {
  font-size: 2rem;
}

.button-primary-4 {
  background-color: var(--green);
  color: var(--navy);
  text-align: center;
  -webkit-text-stroke-color: var(--green);
  text-transform: capitalize;
  border-radius: 3px;
  padding: 8px 5px;
  font-size: .8rem;
  font-weight: 900;
  line-height: 20px;
  transition: all .2s;
}

.button-primary-4:hover {
  color: #fff;
  background-color: #253355;
}

.button-primary-4:active {
  background-color: #43464d;
}

.solutions-button-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  margin-bottom: 18px;
}

.heading-8 {
  margin-top: 0;
  margin-bottom: 0;
}

.paragraph-7 {
  margin-bottom: 0;
}

.text-block-3 {
  color: var(--green);
  text-align: left;
  padding-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 900;
}

.link-block {
  text-decoration: underline;
}

.soln-card-mobile {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: rgba(255, 255, 255, .05);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 250px;
  padding: 15px;
  display: flex;
}

.text-block-4 {
  color: #fff;
  font-size: 1rem;
}

.text-block-5 {
  color: #fff;
  text-align: justify;
  font-size: 1rem;
}

.mission, .vision {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 45%;
  display: flex;
}

.heading-9, .heading-10 {
  color: var(--green);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.9rem;
}

.mission-p, .vision-p {
  color: var(--white);
  text-align: center;
  flex-flow: column;
  font-size: 1rem;
  display: flex;
}

.div-block-13 {
  margin-top: 20px;
}

.bold-text-4 {
  text-align: center;
}

.heading-11 {
  color: var(--green);
  text-align: left;
  margin-top: 0;
}

.text-block-6 {
  color: var(--white);
  text-align: justify;
  font-size: 1rem;
}

.text-span, .text-span-2, .text-span-3, .text-span-4 {
  color: var(--green);
}

.heading-12 {
  margin-top: 10px;
  margin-bottom: 0;
}

.paragraph-8, .paragraph-9 {
  margin-bottom: 0;
}

.bold-text-5 {
  text-align: center;
  margin-left: 10px;
}

.paragraph-10, .paragraph-11 {
  margin-bottom: 0;
}

.soln-grid-abt-us {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  margin-bottom: 18px;
}

.image-4 {
  border-radius: 0;
}

.text-block-7 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
}

.text-span-5 {
  color: var(--green);
  font-size: 1.3rem;
  font-style: italic;
}

.text-span-6 {
  font-weight: 500;
}

.border-up {
  border-top: 1px solid var(--green);
  margin-bottom: 10px;
}

.heading-13 {
  color: var(--white);
}

.spacer-div {
  height: 60px;
}

.div-block-14 {
  background-image: url('../images/Mutembesa-Daniel.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 200px;
  width: 200px;
  height: 200px;
}

.headshot-solomon {
  text-align: center;
  background-image: url('../images/Solomon-Nsumba.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 200px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 200px;
  height: 200px;
  display: flex;
}

.headshot {
  text-align: center;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.headshot-jonathan {
  text-align: center;
  background-image: url('../images/Jonathan-Mukiibi.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 200px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 200px;
  height: 200px;
  display: flex;
}

.div-block-15 {
  margin-top: 5%;
}

.contact-form {
  grid-column-gap: 45px;
  grid-row-gap: 16px;
  color: #fff;
  grid-template-rows: auto auto auto;
}

.success-message-3 {
  background-color: rgba(0, 104, 55, .65);
  border-radius: 4px;
  margin-top: -23px;
}

.formsubmit-btn {
  background-color: #f05a28;
  border-radius: 6px;
  display: block;
}

.formsubmit-btn.formbutton {
  background-color: var(--navy);
  color: var(--green);
  margin-bottom: 11px;
  margin-left: 243px;
  padding-bottom: 8px;
  padding-left: 15px;
  font-size: 1rem;
}

.formsubmit-btn.formbutton:hover {
  color: var(--navy);
  background-color: #fff;
  font-weight: 500;
}

.form-section {
  margin-top: 4%;
}

.form-3 {
  background-color: rgba(255, 255, 255, 0);
}

.text-block-14 {
  color: #fff;
  font-weight: 400;
}

.error-message-2 {
  color: #fff;
  text-align: center;
  background-color: rgba(0, 104, 55, .65);
  border-radius: 4px;
  font-weight: 500;
}

.text-area {
  color: var(--white);
  background-color: rgba(80, 155, 119, .42);
  border: 0 solid #000;
  border-radius: 6px;
  font-size: 1rem;
}

.pref-cont-method {
  background-color: var(--navy);
  color: var(--green);
  border: 0 solid #000;
  border-radius: 6px;
  font-size: 1rem;
}

.heading-14 {
  font-size: 2rem;
  font-weight: 400;
}

.bold-text-6 {
  color: var(--green);
  text-align: left;
  margin-top: 0;
  margin-left: 20px;
  margin-right: 0;
  padding-right: 0;
  font-size: 1.9rem;
  line-height: 37px;
}

.image-5 {
  margin-top: auto;
}

.modal {
  z-index: 9999;
  color: rgba(51, 51, 51, .8);
  border: 1px #000;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

.modal-content {
  background-color: #fff;
  border: 8px #000;
  border-radius: 5px;
  width: 80%;
  max-width: 800px;
  height: 80%;
  margin: auto;
  padding: 20px;
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  box-shadow: 0 0 15px 2px rgba(0, 0, 0, .3);
}

.x {
  background-color: var(--navy);
  text-align: center;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-top: 0;
  margin-bottom: auto;
  margin-left: auto;
  display: flex;
}

.div-block-18 {
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin-top: 10px;
}

.div-block-19 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.code-embed {
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.sector-header {
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.section-header {
  text-align: center;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  display: flex;
}

.div-block-20 {
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  width: 60%;
  height: 100%;
  display: flex;
}

.div-block-22 {
  align-self: center;
}

.heading-15 {
  margin-bottom: 0;
  text-decoration: none;
}

.div-block-23 {
  justify-content: center;
  align-self: center;
  align-items: center;
  display: flex;
}

.heading-16 {
  margin-bottom: 0;
}

.div-block-24 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-25 {
  margin-left: 10px;
}

.heading-17 {
  margin-bottom: 5px;
}

.italic-text {
  font-style: normal;
}

.div-block-26 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.italic-text-2 {
  font-style: normal;
}

.bold-text-8 {
  margin-left: 10px;
  line-height: 29px;
}

.italic-text-3 {
  font-style: normal;
}

.heading-18 {
  margin-bottom: 0;
}

.div-block-28 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-29 {
  justify-content: flex-start;
  align-self: auto;
  align-items: center;
  display: flex;
}

.italic-text-4 {
  font-style: normal;
}

.heading-19 {
  margin-bottom: 0;
}

.div-block-30 {
  align-self: center;
  display: flex;
}

.image-desktop {
  margin-left: auto;
}

.bold-text-9 {
  margin-left: 10px;
}

.image-8 {
  vertical-align: baseline;
}

.div-block-31 {
  margin-left: auto;
}

.div-block-32 {
  display: flex;
}

.sector-header-mq {
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  width: 100%;
  display: none;
}

@media screen and (max-width: 991px) {
  .nav-menu-wrapper {
    background-color: rgba(0, 0, 0, 0);
  }

  .nav-menu {
    background-color: #fff;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding-left: 0;
    display: flex;
  }

  .nav-link {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .nav-button-wrapper {
    width: 100%;
    margin-left: 0;
  }

  .menu-button {
    color: var(--navy);
    padding: 12px;
  }

  .menu-button.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }

  .hero-heading-left {
    padding-top: 35px;
    padding-bottom: 0;
  }

  .container {
    max-width: 728px;
  }

  .hero-wrapper {
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 0;
    margin-left: 35px;
    margin-right: 35px;
  }

  .hero-split {
    max-width: 100%;
    margin-bottom: 0;
  }

  .margin-bottom-24px {
    font-size: .8rem;
  }

  .button-primary-2 {
    margin-top: 0;
  }

  .heading {
    line-height: 21px;
  }

  .heading-2 {
    margin-bottom: 9px;
  }

  .body {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: auto 270%;
  }

  .bold-text {
    font-size: 1.1rem;
    line-height: 10px;
  }

  .soln-card {
    justify-content: space-between;
    align-items: flex-start;
  }

  .features-wrapper-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 15px;
  }

  .features-left {
    max-width: 100%;
    margin-bottom: 0;
  }

  .features-right {
    max-width: 100%;
  }

  .heading-4 {
    margin-bottom: 0;
    font-size: 1.2rem;
  }

  .paragraph-4 {
    font-size: .8rem;
  }

  .heading-5 {
    font-size: 1.2rem;
  }

  .logos-title-small {
    padding-top: 14px;
    padding-bottom: 15px;
  }

  .container-2 {
    max-width: 728px;
  }

  .clients-image-three {
    margin-bottom: 30px;
  }

  .footer-form-two {
    padding: 0 40px;
  }

  .footer-form-title {
    margin-right: 15px;
    font-size: 1.1rem;
  }

  .footer-form-input {
    width: 400px;
    padding-right: 180px;
  }

  .footer-wrapper-three {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-block-three {
    margin-left: 20px;
    margin-right: 20px;
  }

  .footer-social-block-three {
    justify-content: center;
    margin-top: 0;
    margin-left: 0;
    margin-right: 20px;
  }

  .footer-divider-two {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .footer-copyright {
    margin-left: 20px;
  }

  .footer-legal-block {
    margin-right: 20px;
  }

  .solns-container {
    max-width: 728px;
  }

  .body-3 {
    background-position: 50%;
    background-size: 250% 400%;
  }

  .div-block-11 {
    order: 0;
    justify-content: center;
    align-self: center;
    align-items: center;
    width: auto;
    padding-right: 0;
  }

  .heading-6 {
    justify-content: flex-start;
    align-items: center;
    margin-left: 0;
    font-size: 1.5rem;
    line-height: 32px;
  }

  .bold-text-2, .bold-text-3 {
    font-size: 1.1rem;
  }

  .soln-card-mobile {
    justify-content: space-between;
    align-items: flex-start;
  }

  .bold-text-5 {
    text-align: left;
  }

  .contact-form {
    grid-template-columns: 1fr;
    margin-left: 62px;
    margin-right: 62px;
  }

  .success-message-3 {
    margin-left: 83px;
    margin-right: 83px;
    padding-left: 44px;
    padding-right: 44px;
  }

  .formsubmit-btn.formbutton {
    margin-bottom: 9px;
    margin-left: 152px;
    padding: 10px 34px;
  }

  .form-3 {
    margin-bottom: 0;
  }

  .div-block-17 {
    display: none;
  }

  .error-message-2 {
    margin-left: 59px;
    margin-right: 59px;
  }

  .form-block {
    margin-top: -20px;
    margin-bottom: 0;
  }

  .bold-text-6 {
    margin-left: 0;
    font-size: 1.3rem;
    line-height: 24px;
  }

  .sector-header {
    display: none;
  }

  .bold-text-7 {
    font-size: 1.7rem;
  }

  .heading-18 {
    line-height: 20px;
  }

  .image-7 {
    font-size: 1.5rem;
  }

  .div-block-27 {
    width: 50%;
  }

  .sector-header-mq {
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu {
    flex-direction: column;
    padding-bottom: 30px;
    padding-left: 0;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px rgba(0, 0, 0, .05);
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .menu-button {
    color: var(--navy);
  }

  .hero-heading-left {
    padding: 25px 15px 0;
  }

  .heading-2 {
    font-size: 2.5rem;
  }

  .body {
    background-size: auto 320%;
  }

  .soln-card {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: flex-start;
    padding-top: 0;
    padding-bottom: 0;
  }

  .features-list {
    padding: 60px 15px;
  }

  .solns-paragraph {
    margin-bottom: 0;
    padding-left: 38px;
    padding-right: 38px;
  }

  .image {
    align-self: flex-start;
  }

  .paragraph-4 {
    margin-top: 10px;
  }

  .soln-grid {
    margin-left: 24px;
    margin-right: 24px;
  }

  .div-block-4 {
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .heading-5 {
    margin-top: 5px;
    margin-left: 13px;
    padding-top: 0;
    line-height: 20px;
    display: flex;
  }

  .logos-title-small {
    padding: 60px 15px;
  }

  .clients-wrapper-three {
    margin-bottom: -30px;
  }

  .clients-image-three {
    margin-bottom: 30px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .footer-subscribe {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-form-container-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-form-title {
    margin-right: 0;
  }

  .footer-form-block-two {
    width: 100%;
    margin-top: 20px;
  }

  .footer-form-input {
    width: 100%;
  }

  .footer-block-three {
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-link-three {
    margin-bottom: 10px;
  }

  .footer-social-block-three {
    margin-top: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-copyright {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-legal-block {
    margin-top: 15px;
    margin-left: -24px;
  }

  .footer-legal-link {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-subscribe-2 {
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    padding-left: 15px;
    padding-right: 15px;
  }

  .div-block-5 {
    padding-bottom: 0;
    display: flex;
  }

  .div-block-6, .div-block-7 {
    justify-content: flex-start;
    display: flex;
  }

  .div-block-8, .div-block-9 {
    display: flex;
  }

  .body-2 {
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: auto 200%;
  }

  .body-3 {
    background-position: 50% 0;
    background-size: 300%;
  }

  .heading-6 {
    align-self: auto;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.3rem;
    line-height: 20px;
  }

  .bold-text-2, .bold-text-3 {
    font-size: 1.1rem;
    line-height: 20px;
  }

  .button-primary-4 {
    font-size: .8rem;
  }

  .solutions-button-grid {
    grid-template-columns: 1fr;
  }

  .heading-8 {
    line-height: 20px;
  }

  .soln-card-mobile {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    justify-content: flex-start;
    padding-top: 0;
    padding-bottom: 0;
  }

  .heading-12 {
    line-height: 20px;
  }

  .bold-text-5 {
    text-align: left;
    font-size: 1.3rem;
    line-height: 20px;
  }

  .contact-form {
    grid-column-gap: 0px;
    grid-row-gap: 11px;
    grid-template-columns: 2.5fr;
    justify-content: stretch;
    align-self: center;
    align-items: stretch;
    margin-left: -130px;
    margin-right: -130px;
  }

  .success-message-3 {
    padding-left: 0;
    padding-right: 0;
  }

  .formsubmit-btn.formbutton {
    margin-left: 160px;
    margin-right: 22px;
  }

  .form-3 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .form-block {
    margin-top: -7px;
  }

  .bold-text-6 {
    justify-content: center;
    align-self: center;
    align-items: center;
    font-size: 1.1rem;
    line-height: 20px;
    display: flex;
  }

  .div-block-22 {
    justify-content: center;
    align-self: center;
    align-items: center;
    font-size: .8rem;
    display: flex;
  }

  .heading-15 {
    line-height: 20px;
  }

  .heading-16 {
    height: 100%;
    line-height: 20px;
  }

  .bold-text-7 {
    font-size: 1.3rem;
    line-height: 20px;
  }

  .heading-19 {
    line-height: 20px;
  }

  .sector-header-mq {
    justify-content: flex-start;
    align-items: center;
  }
}

@media screen and (max-width: 479px) {
  .nav-menu {
    flex-direction: column;
  }

  .nav-button-wrapper {
    width: auto;
  }

  .menu-button {
    color: #253355;
  }

  .container {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-split {
    display: block;
  }

  .hero-image {
    display: none;
  }

  .heading {
    margin-top: 0;
    padding-top: 10px;
    line-height: 17px;
  }

  .heading-2 {
    margin-bottom: 0;
    font-size: 1.2rem;
  }

  .bold-text {
    font-size: .8rem;
    line-height: 3px;
  }

  .features-right {
    margin-bottom: -30px;
  }

  .features-block-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .features-image {
    margin-bottom: 10px;
  }

  .paragraph-4 {
    display: none;
  }

  .soln-grid {
    grid-template-columns: 1.75fr;
  }

  .container-2 {
    max-width: none;
  }

  .clients-wrapper-three {
    grid-column-gap: 20px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
    margin-bottom: 0;
    display: grid;
  }

  .clients-image-three {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .footer-form-two {
    margin-bottom: 0;
    padding: 0 0 18px;
  }

  .footer-form-block-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-form-input {
    margin-bottom: 10px;
    padding-right: 20px;
  }

  .button-primary-3.footer-form-button {
    position: relative;
    right: 0;
  }

  .footer-block-three {
    flex-flow: row;
  }

  .footer-link-three {
    font-size: .9rem;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-copyright {
    text-align: center;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-legal-block {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-subscribe-2 {
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .solns-container {
    max-width: none;
  }

  .body-2 {
    background-size: auto 250%;
  }

  .body-3 {
    background-size: 400%;
  }

  .div-block-11 {
    justify-content: center;
    align-items: center;
    height: 50px;
    display: none;
  }

  .heading-6 {
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
  }

  .bold-text-2 {
    font-size: 1.1rem;
    line-height: 1px;
  }

  .paragraph-5 {
    text-align: left;
    padding-top: 5px;
  }

  .bold-text-3 {
    font-size: 1.1rem;
    font-style: normal;
    text-decoration: none;
  }

  .paragraph-6 {
    text-align: left;
  }

  .heading-8 {
    margin-bottom: 5px;
    line-height: 20px;
  }

  .soln-card-mobile {
    min-height: 60px;
  }

  .heading-12 {
    line-height: 20px;
  }

  .paragraph-8 {
    text-align: left;
  }

  .paragraph-9 {
    text-align: center;
  }

  .bold-text-5 {
    line-height: 20px;
  }

  .div-block-16 {
    justify-content: center;
    align-items: center;
    display: none;
  }

  .text-block-15 {
    font-weight: 500;
  }

  .contact-form {
    grid-row-gap: 11px;
    align-items: stretch;
    margin-left: 0;
    margin-right: 0;
  }

  .success-message-3 {
    margin-left: 35px;
    margin-right: 35px;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
  }

  .formsubmit-btn.formbutton {
    text-align: left;
    flex: 0 auto;
    align-self: center;
    margin-top: 1px;
    margin-left: 0;
    margin-right: 0;
    padding-left: 34px;
    font-size: 1rem;
  }

  .form-section {
    margin-top: 10px;
  }

  .form-3 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0;
  }

  .error-message-2 {
    color: #fff;
    text-align: center;
    background-color: #ec1d1d;
    border-radius: 12px;
    margin-top: 29px;
    margin-left: 18px;
    margin-right: 18px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .form-container {
    margin-top: -7px;
    margin-bottom: 20px;
    padding-top: 0;
  }

  .text-area {
    font-size: 1rem;
  }

  .form-block {
    margin-top: 20px;
  }

  .pref-cont-method {
    font-size: 1rem;
  }

  .bold-text-6 {
    text-align: center;
    align-self: center;
    width: 100%;
    font-size: 1.1rem;
  }

  .image-5 {
    display: inline-flex;
  }

  .sector-header, .section-header {
    background-color: var(--navy);
    padding: 5px;
  }

  .div-block-20 {
    background-color: var(--navy);
    flex-flow: column;
    width: 100%;
    padding-bottom: 5px;
  }

  .div-block-21 {
    justify-content: center;
    align-self: center;
    align-items: center;
    width: 100%;
    margin-left: auto;
    padding-top: 10px;
    display: flex;
  }

  .div-block-22 {
    width: 100%;
    margin-left: auto;
  }

  .image-6 {
    align-self: center;
  }

  .heading-15 {
    margin-bottom: 0;
    line-height: 20px;
    text-decoration: none;
  }

  .div-block-24 {
    flex-flow: column;
  }

  .heading-17 {
    line-height: 20px;
  }

  .bold-text-7 {
    text-align: center;
    padding-top: 10px;
  }

  .paragraph-12, .paragraph-13 {
    text-align: center;
  }

  .div-block-26 {
    flex-flow: row;
  }

  .div-block-28 {
    flex-flow: column;
  }

  .div-block-30 {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .bold-text-9 {
    text-align: center;
  }

  .sector-header-mq {
    background-color: var(--navy);
    flex-flow: column;
    padding: 5px;
  }

  .image-9, .image-10 {
    display: none;
  }
}

#w-node-d9682a44-af72-98a7-3edc-9b841002784f-9a1e3a05 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c4adefeb-20c3-a7ee-46ec-e4cad2b1bcc7-071347bb, #name.w-node-a13ac6df-8f6b-7bcb-854b-00b6324ba2c9-071347bb, #field-2.w-node-a13ac6df-8f6b-7bcb-854b-00b6324ba2cc-071347bb {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a13ac6df-8f6b-7bcb-854b-00b6324ba2cf-071347bb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #field-2.w-node-a13ac6df-8f6b-7bcb-854b-00b6324ba2cc-071347bb {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-a13ac6df-8f6b-7bcb-854b-00b6324ba2ce-071347bb {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
    justify-self: center;
  }

  #w-node-a13ac6df-8f6b-7bcb-854b-00b6324ba2cf-071347bb {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #field.w-node-a13ac6df-8f6b-7bcb-854b-00b6324ba2ca-071347bb, #email.w-node-a13ac6df-8f6b-7bcb-854b-00b6324ba2cb-071347bb, #Preferred-contact-method.w-node-a13ac6df-8f6b-7bcb-854b-00b6324ba2cd-071347bb {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-d9682a44-af72-98a7-3edc-9b841002784f-9a1e3a05 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #field.w-node-a13ac6df-8f6b-7bcb-854b-00b6324ba2ca-071347bb {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-a13ac6df-8f6b-7bcb-854b-00b6324ba2ce-071347bb {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
    justify-self: center;
  }

  #w-node-a13ac6df-8f6b-7bcb-854b-00b6324ba2d0-071347bb {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
    justify-self: center;
  }
}


