:root {
  --main: #1f395a;
  --secondary: #fff8f8;
  --transparent: rgba(255, 255, 255, 0);
  --white: white;
  --light-purple: #dbcffb;
  --light-blue: #cfdefb;
  --light-red: #fbcfcf;
  --black: black;
  --dark-purple: #5e3ac4;
  --navy-blue: #365e9b;
  --light-navy-blue: #b3ddea;
  --light-green: #b3eacf;
}

.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-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.navbar-no-shadow-container {
  z-index: 5;
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  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-wrapper {
  justify-content: center;
  align-items: center;
  width: 50%;
  display: block;
}

.nav-menu {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-between;
  align-items: center;
  width: auto;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-link {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

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

.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-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: rgba(26, 27, 31, .75);
}

.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 {
  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-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.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-button-wrapper {
  justify-content: flex-end;
  align-items: center;
  width: 25%;
  margin-left: 0;
  display: flex;
}

.button-primary {
  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:hover {
  color: #fff;
  background-color: #32343a;
}

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

.header-logo {
  width: 25%;
}

.container {
  justify-content: space-between;
  display: flex;
}

.brand {
  width: 8%;
}

.image {
  width: 100%;
}

.div-block {
  width: 25%;
}

.div-block-2 {
  justify-content: flex-end;
  align-items: center;
  width: 25%;
  display: flex;
}

.nav-menu-2 {
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

.button {
  background-color: var(--main);
  color: var(--secondary);
  border-style: none;
  border-color: #000;
  border-radius: 4px;
  font-family: Inter, sans-serif;
}

.button.page-header-button {
  background-color: var(--main);
  color: var(--secondary);
}

.header-links {
  color: var(--main);
  font-family: Inter, sans-serif;
  font-weight: 500;
}

.header-links.page-header-links, .header-links.page-header-links.w--current {
  color: var(--main);
}

.navbar {
  background-color: var(--transparent);
  justify-content: space-between;
  align-items: center;
  height: 15%;
  display: flex;
}

.navbar.page-header-navbar {
  background-color: var(--white);
}

.hero-content {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 85%;
  padding-top: 0;
  padding-bottom: 20px;
  display: flex;
}

.footer-subscribe {
  border-bottom: 1px solid #e4ebf3;
  padding: 50px 30px 40px;
  position: relative;
}

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

.footer-form-two {
  background-color: #f5f7fa;
  margin-bottom: 40px;
  padding: 64px;
}

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

.footer-form-title {
  font-size: 24px;
  line-height: 32px;
}

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

.footer-form-input {
  border: 1px #000;
  width: 460px;
  height: 48px;
  margin-bottom: 0;
  padding: 12px 180px 12px 20px;
}

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

.button-primary-2 {
  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-2:hover {
  color: #fff;
  background-color: #32343a;
}

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

.button-primary-2.footer-form-button {
  padding: 8px 18px;
  position: absolute;
  right: 8px;
}

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

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

.footer-link-three {
  color: #1a1b1f;
  margin-left: 20px;
  margin-right: 20px;
  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 {
  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: #3a4554;
}

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

.footer-legal-link {
  color: #3a4554;
  margin-left: 24px;
}

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

.input-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: row;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.text-field {
  border: 2px solid #000;
  border-radius: 5px;
  order: 0;
  margin-bottom: 0;
  padding: 22px 40px 22px 20px;
}

.heading {
  text-align: center;
  margin-top: 0;
  font-size: 55px;
  line-height: 65px;
}

.body {
  color: var(--main);
  font-family: Inter, sans-serif;
}

.submit-button {
  background-color: var(--main);
  color: var(--white);
  border-radius: 5px;
}

.image-2 {
  width: 40%;
}

.hero-wrapper {
  height: 75vh;
}

.paragraph {
  font-size: 18px;
}

.div-block-3 {
  background-color: var(--main);
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.client-logos {
  width: 13%;
}

.axium-sec {
  padding: 5%;
}

.axium-sec.why-us {
  padding-bottom: 0%;
}

.heading-2, .paragraph-2 {
  text-align: center;
}

.features-wrapper {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0 0;
  display: flex;
}

.feature {
  background-color: var(--light-purple);
  border-radius: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 33%;
  height: 280px;
  padding: 20px;
  display: flex;
}

.feature.feature-2 {
  background-color: var(--light-purple);
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 33%;
  height: 280px;
  padding: 20px;
  display: flex;
}

.feature.feature-1 {
  background-color: var(--light-blue);
}

.feature.feature-3 {
  background-color: var(--light-red);
}

.image-3 {
  background-color: var(--white);
  border-radius: 50px;
  width: 20%;
}

.heading-3 {
  font-weight: 600;
}

.heading-4 {
  font-size: 20px;
  font-weight: 600;
}

.services-grid {
  padding-top: 40px;
  padding-bottom: 40px;
}

.services {
  border: 2px solid var(--main);
  border-radius: 10px;
  flex-flow: row;
  padding: 30px 25px;
  display: flex;
}

.services.dark-service {
  background-color: var(--main);
  color: var(--white);
}

.heading-5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}

.image-4 {
  width: 40%;
}

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

.div-block-5, .div-block-6, .div-block-7 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.contact-us.axium-sec {
  padding-top: 0%;
  padding-bottom: 5%;
}

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

.div-block-9 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  width: 60%;
  display: flex;
}

.div-block-10 {
  background-color: var(--main);
  border-radius: 5px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 40%;
  padding: 30px;
  display: flex;
}

.div-block-11 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  margin-top: 10px;
  display: flex;
}

.contact-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--main);
  align-items: center;
  width: 50%;
  height: 100%;
  padding: 20px;
  display: flex;
}

.contact-block.email-block {
  border-radius: 5px;
  width: 40%;
  padding: 10px 20px;
}

.icon-wrapper {
  background-color: var(--transparent);
  width: 100%;
  height: auto;
  padding: 0;
  display: block;
}

.div-block-13 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: block;
}

.heading-6 {
  color: var(--white);
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}

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

.link.phone-number {
  color: var(--main);
  font-size: 13px;
}

.link.email-link {
  font-size: 13px;
}

.email-details {
  color: var(--main);
  justify-content: center;
  align-items: flex-start;
}

.div-block-14 {
  background-color: var(--white);
  border-radius: 50px;
  width: 18%;
  height: auto;
  padding: 10px;
}

.phone-block.contact-block {
  background-color: var(--transparent);
  border: 2px solid #000;
  border-radius: 5px;
  width: 40%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.block-15 {
  background-color: var(--black);
  width: 15%;
  height: auto;
}

.div-block-15 {
  background-color: var(--main);
  width: 15%;
}

.div-block-16 {
  background-color: var(--main);
  border-radius: 50px;
  width: 18%;
  height: auto;
  padding: 10px;
}

.heading-7 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
}

.heading-8 {
  width: 90%;
  font-size: 35px;
}

.paragraph-3 {
  margin-right: 50px;
  font-size: 14px;
}

.textarea {
  background-color: var(--transparent);
  border-radius: 5px;
}

.submit-button-2 {
  background-color: var(--secondary);
  color: var(--main);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
}

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

.field-label {
  color: var(--secondary);
  font-size: 14px;
  font-weight: 600;
}

.field-label-2, .field-label-3 {
  color: var(--secondary);
  font-weight: 600;
}

.text-field-2, .text-field-3 {
  background-color: var(--transparent);
  border-radius: 5px;
}

.footer-wrapper {
  background-color: var(--main);
  color: var(--secondary);
  padding: 5% 5% 8%;
  position: relative;
}

.footer-top {
  flex-flow: row;
  display: flex;
}

.footer-bottom {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.footer-logo-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 33%;
  display: flex;
}

.footer-navigation {
  flex-flow: column;
  width: 50%;
  display: flex;
}

.footer-contact {
  width: 50%;
}

.social-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border-radius: 3px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 65%;
  display: flex;
}

.social-icon-wrapper {
  background-color: var(--secondary);
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
}

.social-icon {
  width: 50%;
}

.image-5 {
  color: var(--main);
  width: 65%;
  height: auto;
}

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

.footer-heading {
  color: var(--secondary);
  font-size: 18px;
  font-weight: 600;
}

.footer-nav {
  color: var(--secondary);
  font-size: 16px;
  text-decoration: none;
}

.div-block-18 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  display: flex;
}

.paragraph-4 {
  font-size: 16px;
  line-height: 35px;
}

.heading-9 {
  font-weight: 400;
}

.div-block-19 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  background-color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 30vh;
  display: flex;
}

.div-block-20 {
  height: auto;
}

.paragraph-5 {
  color: var(--main);
  text-align: center;
  width: 40%;
  font-weight: 300;
}

.heading-10 {
  color: var(--main);
  margin-top: 0;
}

.body-2 {
  font-family: Inter, sans-serif;
}

.div-block-21 {
  height: auto;
}

.div-block-22 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  color: var(--main);
  flex-flow: column;
  height: 0%;
  padding: 5%;
  display: flex;
}

.div-block-23 {
  grid-column-gap: 10%;
  grid-row-gap: 10%;
  display: flex;
}

.heading-11 {
  width: 65%;
  margin-top: 0;
  font-size: 32px;
}

.div-block-24 {
  padding: 0% 5% 5%;
}

.heading-12 {
  font-size: 30px;
}

.heading-13 {
  color: var(--main);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 35px;
}

.team-card, .team-card.team-card-1 {
  width: 30%;
}

.div-block-25 {
  grid-column-gap: 65px;
  grid-row-gap: 65px;
  display: flex;
  justify-content: center;
  align-items: start;
  width: 100%;
  padding-top: 5%;
}

.div-block-25.co-team {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  align-items: center;
}

.div-block-26, .div-block-27 {
  width: 100%;
}

.image-6 {
  border-radius: 10px;
  width: 100%;
}

.div-block-28 {
  padding-top: 10px;
  display: flex;
}

.heading-14 {
  font-weight: 600;
}

.heading-15 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 25px;
}

.heading-16 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
}

.image-7 {
  width: 100%;
}

.div-block-29 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 75%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.div-block-30 {
  justify-content: flex-end;
  align-items: center;
  width: 25%;
  display: flex;
}

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

.div-block-31 {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  padding-bottom: 5%;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.heading-17 {
  color: var(--main);
  text-align: center;
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 35px;
}

.div-block-32 {
  justify-content: space-between;
  display: flex;
}

.section {
  grid-column-gap: 75px;
  grid-row-gap: 75px;
  flex-flow: column;
  padding: 5%;
  display: flex;
}

.service-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  display: flex;
}

.service-heading {
  grid-column-gap: 13%;
  grid-row-gap: 13%;
  color: var(--main);
  display: flex;
}

.service-heading.service-2 {
  color: var(--dark-purple);
}

.service-heading.service-3 {
  color: var(--navy-blue);
}

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

.div-block-34 {
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 50%;
  display: flex;
}

.heading-18 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}

.paragraph-7 {
  text-transform: none;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 25px;
}

.heading-19 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  line-height: 40px;
}

.services-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: row;
  display: flex;
}

.services-wrapper.service-3 {
  justify-content: center;
}

.image-8 {
  aspect-ratio: auto;
  text-align: left;
  object-fit: contain;
  width: 50px;
  height: 50px;
  display: block;
}

.service-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: var(--light-blue);
  color: var(--main);
  border-radius: 10px;
  flex-flow: column;
  width: 25%;
  padding: 30px 15px;
  display: flex;
}

.service-block.service-1 {
  width: 100%;
}

.service-block.service-2 {
  background-color: var(--light-purple);
  color: var(--dark-purple);
  width: 100%;
}

.service-block.service-3 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: var(--light-navy-blue);
  color: var(--navy-blue);
  width: 25%;
  height: 300px;
}

.heading-20 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  line-height: 25px;
}

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

.div-block-37 {
  width: 100%;
  height: 20%;
}

.div-block-38 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: auto;
  display: flex;
}

.div-block-39 {
  height: auto;
}

.div-block-39.service-icon-wrapper {
  height: 50px;
}

.div-block-40 {
  height: auto;
}

.blocks-wrapper {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: row;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.heading-21 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 35px;
}

.paragraph-9 {
  text-align: center;
  width: 55%;
  margin-bottom: 50px;
  font-size: 16px;
  line-height: 22px;
  display: block;
}

.partnership-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: var(--main);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  font-family: Inter, sans-serif;
  display: flex;
}

.partnership-wrapper.partnership-2 {
  color: var(--dark-purple);
}

.partnership-wrapper.partnership-3 {
  color: var(--navy-blue);
}

.heading-22 {
  width: 85%;
  font-size: 21px;
  font-weight: 600;
  line-height: 30px;
}

.spec-block {
  border: 2px solid var(--main);
  border-radius: 5px;
  flex-flow: column;
  justify-content: center;
  width: 33%;
  padding: 80px 20px;
  display: flex;
}

.spec-block.partnership-1 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  width: 30%;
}

.spec-block.partnership-2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-color: var(--dark-purple);
  width: 30%;
}

.spec-block.partnership-3 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-color: var(--navy-blue);
  justify-content: flex-start;
  width: 30%;
}

.spec-icon {
  width: 25%;
}

.heading-23 {
  text-align: center;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 25px;
  line-height: 100%;
}

.div-block-41 {
  border: 2px solid var(--main);
  border-radius: 50px;
  width: 20%;
  padding: 10px;
}

.pricing-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-43 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--light-blue);
  border-radius: 5px;
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  padding: 20px 15px;
  font-family: Inter, sans-serif;
  display: flex;
}

.heading-24 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 600;
}

.heading-25 {
  margin-top: 0;
  margin-bottom: 10px;
  padding-bottom: 0;
  font-size: 25px;
  font-weight: 700;
}

.text-span {
  font-size: 16px;
  font-weight: 400;
}

.button-2 {
  background-color: var(--main);
  text-align: center;
  border-radius: 3px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
}

.paragraph-10 {
  font-size: 16px;
}

.paragraph-11 {
  margin-top: -20px;
  font-size: 16px;
  line-height: 25px;
}

.paragraph-12 {
  font-size: 16px;
}

.div-block-44 {
  background-color: var(--main);
  color: var(--secondary);
  border-radius: 5px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px 30px;
  font-family: Inter, sans-serif;
  display: flex;
}

.list-item {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 40%;
  display: flex;
}

.image-9 {
  width: 5%;
}

.heading-26 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 25px;
}

.heading-27 {
  margin-bottom: 25px;
  font-size: 25px;
  font-weight: 600;
}

.list {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.div-block-45 {
  justify-content: space-around;
  width: 60%;
  display: flex;
}

.service-icon-wrapper {
  height: 20%;
}

.link-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  display: flex;
}

.link-block-2 {
  width: 50%;
}

.div-block-46 {
  grid-column-gap: 65px;
  grid-row-gap: 65px;
  justify-content: center;
  display: flex;
}

.link-block-3, .logo-link-wrapper {
  width: 65%;
}

@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 {
    padding: 12px;
  }

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

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

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

  .footer-form-title {
    margin-right: 15px;
  }

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

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

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

@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;
  }

  .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;
  }
}

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

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

  .image {
    width: 100%;
  }

  .nav-menu-2 {
    background-color: var(--main);
    width: 100%;
  }

  .button {
    display: none;
  }

  .header-links, .header-links:visited {
    color: var(--secondary);
  }

  .hero-content {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding-bottom: 0;
    padding-left: 5%;
    padding-right: 5%;
  }

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

  .footer-form-two {
    padding: 20px;
  }

  .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-2.footer-form-button {
    position: relative;
    right: 0;
  }

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

  .text-field {
    padding: 10px 15px;
  }

  .heading {
    margin-bottom: 0;
    font-size: 30px;
    line-height: 35px;
  }

  .submit-button {
    width: 42.4262%;
    padding-right: 10px;
  }

  .image-2 {
    width: 100%;
  }

  .paragraph {
    text-align: center;
    font-size: 16px;
  }

  .client-logos {
    width: 18%;
  }

  .heading-2 {
    font-size: 35px;
    line-height: 40px;
  }

  .features-wrapper {
    flex-flow: column;
  }

  .feature.feature-2, .feature.feature-1, .feature.feature-3 {
    width: 100%;
  }

  .services-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

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

  .div-block-9, .div-block-10 {
    width: 100%;
  }

  .div-block-11 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    margin-bottom: 20px;
  }

  .contact-block.email-block {
    border: 2px solid var(--main);
    width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .icon-wrapper {
    width: 100%;
    max-width: none;
    font-size: 100%;
    line-height: 20;
  }

  .heading-6 {
    font-size: 15px;
  }

  .link.phone-number {
    font-size: 10px;
  }

  .link.email-link {
    font-size: 12px;
  }

  .div-block-14 {
    width: 35px;
    padding: 10px;
    font-size: 14px;
  }

  .phone-block.contact-block {
    width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-16 {
    width: 35px;
    padding: 10px;
  }

  .heading-8 {
    width: 100%;
    font-size: 30px;
    line-height: 40px;
  }

  .footer-wrapper {
    flex-flow: column;
    padding-bottom: 15%;
    display: flex;
  }

  .footer-top {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .footer-bottom {
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
  }

  .footer-logo-block {
    justify-content: center;
    align-items: center;
  }

  .footer-navigation {
    width: 50%;
  }

  .footer-contact {
    flex-flow: column;
    justify-content: center;
    align-items: flex-end;
    width: 50%;
    display: flex;
  }

  .social-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    width: 100%;
  }

  .image-5 {
    width: 100%;
  }

  .div-block-17 {
    height: auto;
  }

  .paragraph-4 {
    text-align: right;
  }

  .paragraph-5 {
    width: 75%;
  }

  .heading-10 {
    font-size: 35px;
  }

  .heading-11 {
    width: 100%;
    font-size: 30px;
    line-height: 40px;
  }

  .heading-13 {
    font-size: 28px;
  }

  .team-card {
    width: 60%;
  }

  .div-block-25 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .div-block-25.co-team {
    flex-flow: column;
    padding-top: 10%;
  }

  .heading-15 {
    font-size: 22px;
    line-height: 22px;
  }

  .image-7, .div-block-29 {
    width: 70%;
  }

  .div-block-30 {
    width: 30%;
  }

  .heading-17 {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 35px;
  }

  .div-block-32 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    justify-content: center;
  }

  .section {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .service-heading.service-2 {
    flex-flow: column;
  }

  .service-heading.service-1 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
  }

  .service-heading.service-3 {
    flex-flow: column;
  }

  .div-block-33, .div-block-34 {
    width: 100%;
  }

  .heading-18 {
    margin-bottom: 0;
    font-size: 14px;
  }

  .paragraph-7 {
    margin-top: 7px;
    font-size: 16px;
    line-height: 22px;
  }

  .heading-19 {
    font-size: 25px;
    line-height: 35px;
  }

  .services-wrapper.service-1, .services-wrapper.service-2, .services-wrapper.service-3 {
    flex-flow: column;
  }

  .partnerships.section {
    padding-top: 10%;
    padding-bottom: 10%;
  }

  .blocks-wrapper.partnership-2, .blocks-wrapper.partnership-1, .blocks-wrapper.partnership-3, .blocks-wrapper.pricing-2, .blocks-wrapper.pricing-1 {
    flex-flow: column;
  }

  .heading-21 {
    font-size: 28px;
    line-height: 38px;
  }

  .paragraph-9 {
    width: 85%;
    font-size: 14px;
  }

  .spec-block.partnership-1, .spec-block.partnership-2, .spec-block.partnership-3 {
    width: 100%;
  }

  .heading-23 {
    font-size: 20px;
  }

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

  .list-item {
    width: 100%;
  }

  .heading-27 {
    text-align: center;
  }

  .list {
    margin-bottom: 20px;
  }

  .icon {
    width: auto;
    height: auto;
    font-size: 30px;
  }

  .div-block-45 {
    width: 100%;
    display: flex;
  }

  .image-10 {
    width: 15%;
  }

  .icon-2, .icon-3, .icon-4, .icon-5 {
    color: var(--secondary);
    font-size: 30px;
  }

  .menu-button-2 {
    background-color: var(--white);
  }

  .menu-button-2.w--open {
    background-color: var(--main);
  }

  #w-node-_6bd15588-066f-85b6-2772-dd1fed2f298d-5bdfba41 {
    order: -9999;
  }
}


