:root {
  --white: white;
  --primary: #0d355b;
  --secondary: #2a9ca9;
  --light: #f2f8fa;
  --black: black;
}

body {
  background-color: var(--white);
  color: var(--primary);
  font-family: Plus Jakarta Sans, sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

p {
  opacity: .8;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.logo {
  height: 6rem;
}

.top-nav {
  background-color: var(--primary);
  justify-content: center;
  align-items: center;
  height: 3.5rem;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.container {
  z-index: 2;
  width: 100%;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  position: relative;
}

.nav-link-w {
  color: #fff;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.125rem;
  line-height: 1.2;
  text-decoration: none;
  display: flex;
}

.nav-link-w:hover {
  color: var(--secondary);
}

.top-nav-w {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu {
  flex: auto;
  justify-content: flex-end;
  align-items: center;
  margin-left: 40px;
  display: flex;
}

.top-nav-w-l {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button {
  background-color: var(--secondary);
  color: #fff;
  text-transform: capitalize;
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  height: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  transition: all .35s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

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

.button.hover-w:hover {
  background-color: var(--white);
  color: var(--primary);
}

.button.is-dark {
  background-color: var(--primary);
}

.button.is-dark:hover {
  background-color: var(--secondary);
}

.nav-wrap {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.navbar {
  border-bottom: 1px solid var(--light);
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  height: 8rem;
  display: flex;
}

.nav-link {
  text-transform: capitalize;
  padding: 10px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.2;
  transition: all .25s cubic-bezier(.25, .46, .45, .94);
}

.nav-link:hover, .nav-link.w--current {
  color: var(--secondary);
}

.svg-icon {
  color: var(--secondary);
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 10px;
  display: flex;
}

.svg-icon.is-white {
  color: var(--white);
  margin-right: 0;
}

.nav-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  align-items: center;
  margin-right: 2rem;
  display: flex;
}

.brand {
  padding-left: 0;
}

.header {
  background-color: var(--white);
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
}

.header-row {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.header-info {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 40%;
  max-width: 35rem;
  display: flex;
  position: relative;
}

.header-info-texts {
  max-width: 25rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.hero-image {
  width: 50%;
  height: 40rem;
  position: relative;
  inset: 0% 0% 0% auto;
}

.img-fluid {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.img-fluid.radius {
  border-radius: 1rem;
}

.img-fluid.radius.top {
  z-index: 1;
  object-position: 50% 0%;
  position: relative;
}

.shape-c {
  opacity: .15;
  width: 10rem;
  position: absolute;
  inset: -2rem auto auto -5rem;
}

.shape-c2 {
  opacity: .1;
  width: 14rem;
  position: absolute;
  inset: auto auto -10rem -16rem;
}

.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}

.section.bg-light {
  background-color: var(--light);
  color: var(--primary);
}

.section.small {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section.bg-dark {
  background-color: var(--primary);
  color: var(--white);
}

.section-wrap {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.heading-row {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.heading-row.grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.heading-wr {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 55rem;
  display: flex;
}

.caption-w {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--secondary);
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
}

.line {
  background-color: var(--secondary);
  border-radius: 100px;
  width: 3rem;
  height: 3px;
}

.line.sm {
  background-color: var(--primary);
  width: 2rem;
}

.cards {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 4rem;
  display: flex;
}

.card {
  border: 1px solid #2a9ca91a;
  border-radius: 1rem;
  flex-flow: column;
  justify-content: space-between;
  padding: 6rem 2rem 2rem;
  display: flex;
  position: relative;
}

.card-info {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.text-md {
  opacity: .8;
  font-size: 1.125rem;
}

.card-wr {
  background-color: var(--light);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  margin-bottom: 2rem;
  display: flex;
  position: static;
  inset: -2rem auto auto 2rem;
}

.icon-s {
  width: 3rem;
}

.button-secondary {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  text-transform: capitalize;
  background-color: #2a9ca900;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  height: 3rem;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all .35s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.button-secondary:hover {
  background-color: var(--secondary);
  color: #fff;
}

.row {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.about-image {
  width: 45%;
  position: relative;
}

.about-info {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 38%;
  display: flex;
}

.about-info.md {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.about-info-heading {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  margin-bottom: 2rem;
  display: flex;
}

.shape-c3 {
  opacity: .1;
  width: 14rem;
  position: absolute;
  inset: auto -8rem -4rem auto;
}

.shape-c4 {
  opacity: .1;
  width: 7rem;
  position: absolute;
  inset: -4rem auto auto -3rem;
}

.left-arrow {
  color: var(--primary);
  display: none;
}

.left-arrow:hover {
  color: var(--secondary);
}

.right-arrow {
  color: var(--primary);
  display: none;
}

.right-arrow:hover {
  color: var(--secondary);
}

.slide-nav {
  height: auto;
  margin-top: 3rem;
  display: none;
  position: static;
}

.slide-wrap {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  background-color: var(--light);
  background-image: url('../images/Component-1-11.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 17rem;
  border-radius: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 54.375rem;
  margin-left: auto;
  margin-right: auto;
  padding: 4rem 4rem 8rem;
  display: flex;
}

.slider {
  background-color: #ddd0;
  width: 100%;
  height: auto;
  margin-top: 0;
  margin-bottom: 2rem;
}

.testimonial-text {
  color: var(--primary);
  margin-bottom: 2rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.4;
}

.avatar-wr {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
}

.span {
  color: var(--secondary);
  display: inline-block;
  position: relative;
  overflow: visible;
}

.contact-row {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.contact-heading {
  align-self: flex-start;
  margin-bottom: 2rem;
}

.links {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2rem;
  display: flex;
}

.co-link {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
}

.co-link:hover {
  opacity: .7;
}

.co-link-icon {
  background-color: var(--primary);
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  display: flex;
}

.contact-block {
  background-color: var(--white);
  border: 1px solid #0d355b1a;
  border-radius: 1rem;
  width: 55%;
  padding: 2rem;
}

.contact-block.bg-light {
  border: 1px solid var(--primary);
}

.form-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 2rem;
  display: flex;
}

.text-field {
  border: 1px solid #0d355b1a;
  border-radius: .5rem;
  height: 3.5rem;
  margin-bottom: 0;
}

.text-field:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 5px #0003;
}

.text-field::placeholder {
  color: #0d355bb3;
}

.textarea {
  border: 1px solid #0d355b1a;
  border-radius: .5rem;
  height: 3.5rem;
  min-height: 10rem;
  margin-bottom: 0;
}

.textarea:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 5px #0003;
}

.textarea::placeholder {
  color: #0d355bb3;
}

.form {
  flex-flow: column;
  display: flex;
}

.fo-title {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-f {
  height: 6rem;
}

.footer-wrap {
  width: 100%;
}

.fo-copy {
  text-align: center;
  font-size: 1rem;
}

.fo-links {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  margin-top: 1rem;
  display: flex;
}

.fo-link {
  font-size: 1.25rem;
  font-weight: 500;
}

.fo-link:hover {
  color: var(--secondary);
}

.link {
  font-size: 1.25rem;
}

.social-icon {
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  display: flex;
}

.footer-up {
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
  display: flex;
}

.fo-link-s {
  color: var(--white);
  justify-content: flex-start;
  align-items: center;
  font-size: 1.25rem;
  line-height: 1.2;
  text-decoration: none;
  display: flex;
}

.fo-link-s:hover {
  color: var(--secondary);
}

.bold-text {
  font-weight: 500;
}

.socials {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.social-link {
  border: 1px solid var(--white);
  color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  transition: all .25s cubic-bezier(.55, .085, .68, .53);
  display: flex;
}

.social-link:hover {
  background-color: var(--white);
  color: var(--primary);
}

.svg-icon-2 {
  color: var(--secondary);
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 10px;
  display: flex;
}

.footer {
  background-color: var(--primary);
  color: var(--white);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.footer-down {
  border-top: 1px solid #ffffff1a;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  display: flex;
}

.legal-pages {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  display: flex;
}

.stars {
  height: 1.5rem;
  margin-bottom: 1rem;
}

.success-message {
  background-color: var(--light);
  border-radius: .5rem;
}

.icon {
  color: var(--secondary);
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  display: flex;
}

.container-2 {
  z-index: 2;
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  position: relative;
}

.hero {
  background-color: var(--light);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.breadcrubm {
  justify-content: center;
  align-items: center;
  display: flex;
}

.divider {
  width: .5rem;
  margin-left: 1rem;
  margin-right: 1rem;
}

.bread-link {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 500;
  display: flex;
}

.text-span {
  background-image: url('../images/shape-1_1shape (1).avif');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline;
}

.heading-info {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 50rem;
  display: flex;
}

.text-block {
  font-size: 1.25rem;
}

.section-wrap-2 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.teams {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 4rem;
  display: grid;
}

.team-card-content {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  text-align: center;
  flex-flow: column;
  margin-top: 2rem;
  display: flex;
}

.team-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.values {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 4rem;
  display: grid;
}

.value-card {
  background-color: var(--light);
  color: var(--primary);
  border: 1px solid #2a9ca91a;
  border-radius: 1rem;
  padding: 2rem;
}

.icon-v {
  border: 1px solid var(--primary);
  border-radius: 1rem;
  width: 5rem;
}

.value-card-info {
  margin-top: 2rem;
}

.value-title {
  margin-bottom: .5rem;
  font-size: 2rem;
}

.op {
  opacity: .8;
}

.legal-heading {
  align-self: flex-start;
}

.legal-rt {
  margin-top: 4rem;
}

.legal-rt li {
  opacity: .8;
  font-size: 1.25rem;
  font-weight: 400;
}

.legal-rt p {
  font-weight: 400;
}

.legal-rt h3 {
  margin-bottom: 1rem;
}

.code-embed {
  width: 100%;
}

.about-r {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.about-r.md {
  width: 45%;
}

.faq-item-content {
  width: 100%;
  padding-top: 0;
  overflow: hidden;
}

.line-2 {
  background-color: var(--primary);
  height: 2px;
  position: absolute;
  inset: 0% 0% auto;
}

.faq-txt {
  font-size: 1.125rem;
}

.f-icon {
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
}

.faq-item-head {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.line-b {
  background-color: var(--primary);
  height: 2px;
  position: absolute;
  inset: auto 0% 0%;
}

.faqs {
  flex-flow: column;
  width: 100%;
  margin-top: 2rem;
  display: flex;
}

.faq-item {
  border-style: solid;
  border-width: 0 0 1px;
  border-color: var(--primary);
  cursor: pointer;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  display: flex;
  position: relative;
}

.card-texts {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  display: flex;
}

.card-texts.sm {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
}

.faq-item-content-w {
  padding-top: 1.5rem;
}

.faq-icon-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.faq-q {
  font-size: 1.5rem;
  font-weight: 700;
}

.services {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.service-card {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--light);
  border: 1px solid #0d355b40;
  border-radius: 1rem;
  flex-flow: column;
  padding: 2rem;
  display: flex;
}

.servica-name {
  font-size: 2rem;
}

.header-s {
  background-color: var(--primary);
  color: var(--white);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

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

.h1-heading.lg {
  font-size: 7rem;
}

.hero-info {
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.hero-info.center {
  text-align: center;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}

.header-text-wr {
  max-width: 35rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.header-text-wr.lg {
  max-width: none;
  margin-bottom: 0;
}

.text-color-white {
  opacity: 1;
}

.text-lg {
  opacity: .8;
  font-size: 1.5rem;
  font-weight: 400;
}

.service-card-s {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.card-title {
  font-size: 2rem;
}

.c-icon {
  width: 6rem;
  margin-bottom: 2rem;
}

.contact-right {
  width: 40%;
}

.f-line, .f-iline-copy {
  background-color: var(--primary);
  width: 20px;
  height: 2px;
}

.f-line2 {
  background-color: var(--primary);
  width: 2px;
  height: 20px;
  position: absolute;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 3.6rem;
  }

  h3 {
    font-size: 2.4rem;
  }

  p {
    font-size: 1.8rem;
  }

  .logo {
    height: 7rem;
  }

  .top-nav {
    height: 4.8rem;
  }

  .container {
    max-width: 90rem;
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .nav-link-w {
    font-size: 1.4rem;
  }

  .menu-button {
    flex-flow: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
  }

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

  .nav-menu {
    background-color: #fff;
    margin-left: 0;
    padding: 40px;
  }

  .button {
    height: 4.8rem;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
    font-size: 1.6rem;
  }

  .m-line {
    background-color: #1a1a1a;
    width: 25px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
    display: block;
  }

  .m-line3 {
    background-color: #1a1a1a;
    width: 25px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .m-line2 {
    background-color: #1a1a1a;
    width: 25px;
    height: 2px;
    margin-top: 5px;
    margin-bottom: 5px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar {
    height: 8rem;
  }

  .nav-link {
    border-bottom: 1px solid var(--light);
    text-align: left;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    font-size: 1.6rem;
  }

  .svg-icon {
    width: 2.4rem;
    height: 2.4rem;
  }

  .nav-list {
    flex-flow: column;
    margin-bottom: 24px;
  }

  .header-info {
    width: 45%;
    max-width: none;
  }

  .header-info-texts {
    max-width: none;
    margin-top: 1.6rem;
    margin-bottom: 2.4rem;
  }

  .caption-w {
    font-size: 1.4rem;
  }

  .cards {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .text-md {
    font-size: 1.6rem;
  }

  .card-wr {
    width: 6.4rem;
    height: 6.4rem;
    top: -3rem;
  }

  .icon-s {
    width: 4rem;
  }

  .button-secondary {
    height: 4.8rem;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
    font-size: 1.6rem;
  }

  .about-info {
    width: 45%;
  }

  .left-arrow, .right-arrow {
    display: none;
  }

  .slide-nav {
    margin-top: 4rem;
  }

  .slide-wrap {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    border-radius: 1rem;
    max-width: none;
  }

  .slider {
    margin-top: 4rem;
  }

  .testimonial-text {
    margin-top: 1rem;
    margin-bottom: 2.4rem;
    font-size: 2rem;
  }

  .avatar-wr {
    font-size: 1.6rem;
  }

  .co-link {
    font-size: 1.4rem;
  }

  .co-link-icon {
    width: 4rem;
    min-width: 4rem;
    height: 4rem;
  }

  .form-grid {
    flex-flow: column;
    display: flex;
  }

  .text-field {
    height: 4.8rem;
  }

  .textarea {
    min-height: 16rem;
  }

  .fo-title {
    font-size: 1.8rem;
  }

  .logo-f {
    height: 8rem;
  }

  .fo-copy {
    font-size: 1.4rem;
  }

  .fo-links, .fo-link {
    font-size: 1.6rem;
  }

  .fo-item {
    flex-flow: column;
    width: 100%;
    display: flex;
  }

  .fo-item.socials {
    width: auto;
    position: absolute;
    inset: 0% 0% auto auto;
  }

  .link {
    font-size: 1.6rem;
  }

  .social-icon {
    width: 2.4rem;
  }

  .footer-up {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
  }

  .fo-link-s {
    font-size: 1.6rem;
  }

  .social-link {
    width: 4rem;
    height: 4rem;
  }

  .svg-icon-2 {
    width: 2.4rem;
    height: 2.4rem;
  }

  .legal-link {
    font-size: 1.4rem;
  }

  .stars {
    height: 2rem;
    margin-bottom: 0;
  }

  .field-label {
    font-size: 1.4rem;
  }

  .divider {
    justify-content: center;
    align-items: flex-start;
    width: 1rem;
    display: flex;
  }

  .bread-link {
    font-size: 1.6rem;
  }

  .heading-info {
    max-width: 60rem;
  }

  .text-block {
    font-size: 1.6rem;
  }

  .team-name {
    font-size: 1.8rem;
  }

  .pos-text {
    font-size: 1.4rem;
  }

  .legal-rt li {
    font-size: 1.8rem;
  }

  .about-r {
    width: 45%;
  }

  .faq-txt {
    font-size: 1.6rem;
  }

  .f-icon {
    width: 3.2rem;
    min-width: 3.2rem;
    height: 3.2rem;
  }

  .faq-item-head {
    justify-content: space-between;
    align-items: flex-start;
  }

  .faq-q {
    font-size: 1.8rem;
  }

  .h1-heading.lg {
    font-size: 6rem;
  }

  .header-text-wr {
    max-width: 50rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .text-lg {
    font-size: 2rem;
  }

  .c-icon {
    width: 8rem;
  }
}

@media screen and (max-width: 767px) {
  .top-nav {
    display: none;
  }

  .header {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .header-row {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .header-info {
    width: 100%;
    max-width: 518svh;
    margin-top: 2.4rem;
  }

  .hero-image {
    order: -1;
    width: 100%;
    height: 50rem;
  }

  .shape-c2 {
    left: -4rem;
  }

  .section.small {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .caption-w {
    margin-bottom: .5rem;
  }

  .cards {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
    flex-flow: column;
    display: flex;
  }

  .row {
    flex-flow: column;
  }

  .about-image {
    order: -1;
    width: 100%;
  }

  .about-info {
    width: 100%;
    margin-top: 2.4rem;
  }

  .about-info.md {
    width: 100%;
  }

  .contact-row {
    flex-flow: column;
  }

  .contact-heading {
    width: 100%;
    margin-bottom: 3.2rem;
  }

  .contact-block {
    width: 100%;
  }

  .footer-down {
    text-align: center;
    flex-flow: column;
  }

  .legal-pages {
    order: -1;
    margin-top: 0;
    margin-bottom: 1rem;
  }

  .teams {
    grid-template-columns: 1fr 1fr;
  }

  .values {
    flex-flow: column;
    display: flex;
  }

  .icon-v {
    width: 6.4rem;
  }

  .value-card-info {
    margin-top: 2.4rem;
  }

  .about-r {
    width: 100%;
    margin-top: 2.4rem;
  }

  .about-r.md {
    width: 100%;
  }

  .services {
    flex-flow: column;
    display: flex;
  }

  .service-card-s {
    max-width: 35rem;
    margin-left: auto;
    margin-right: auto;
  }

  .card-title {
    font-size: 2.4rem;
  }

  .contact-right {
    order: -1;
    width: 100%;
    margin-top: 0;
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  h3 {
    font-size: 2rem;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .svg-icon {
    min-width: 24px;
  }

  .hero-image {
    height: 40rem;
  }

  .slide-wrap {
    padding: 2rem;
  }

  .testimonial-text {
    font-size: 1.8rem;
  }

  .contact-block {
    padding: 2rem;
  }

  .footer-up {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .svg-icon-2 {
    min-width: 24px;
  }

  .container-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-wrap-2 {
    align-items: stretch;
  }

  .teams {
    grid-template-columns: 1fr;
  }

  .f-icon {
    width: 2.8rem;
    min-width: 2.8rem;
    height: 2.8rem;
    margin-left: 1rem;
  }

  .faq-q {
    line-height: 1.2;
  }

  .h1-heading, .h1-heading.lg {
    font-size: 4.2rem;
  }

  .text-lg {
    font-size: 1.8rem;
  }
}

#w-node-b99ec089-701c-f1f6-2c9a-33d3233c9ff5-233c9fde, #w-node-b99ec089-701c-f1f6-2c9a-33d3233c9ffa-233c9fde, #w-node-_572b9232-84a6-9cce-c4f2-d6f7a79f3ad9-5dae841f, #w-node-_572b9232-84a6-9cce-c4f2-d6f7a79f3ade-5dae841f {
  grid-area: span 1 / span 2 / span 1 / span 2;
}


