:root {
  --neutral-800: #213650;
  --primary-600: #008186;
  --neutral-600: #425f80;
  --white: white;
  --primary-700: #006266;
  --primary-200: #dee9de;
  --primary-100: #f9faf9;
  --neutral-400: #b5c7d9;
  --secondary-800: #523c00;
  --secondary-500: #ffcd93;
  --secondary-300: #f1e9d5;
  --secondary-200: #f5efe0;
  --blue-300: #d5e7f1;
  --blue-200: #e0edf5;
  --purple-300: #ded5f1;
  --purple-200: #e7e0f5;
  --primary-500: #009da3;
}

body {
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: var(--neutral-800);
  margin-top: 0;
  margin-bottom: 0;
  font-family: IBM Plex Serif, sans-serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 100%;
}

h2 {
  color: var(--neutral-800);
  text-align: left;
  width: auto;
  margin-top: 0;
  margin-bottom: 0;
  font-family: IBM Plex Serif, sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 120%;
  display: block;
}

h3 {
  color: var(--neutral-800);
  margin-top: 0;
  margin-bottom: 0;
  font-family: IBM Plex Serif, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
}

h4 {
  color: var(--neutral-800);
  margin-top: 0;
  margin-bottom: 0;
  font-family: IBM Plex Serif, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 120%;
}

h5 {
  color: var(--neutral-800);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: IBM Plex Serif, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
}

h6 {
  color: var(--neutral-800);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: IBM Plex Serif, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
}

p {
  color: var(--neutral-800);
  margin-bottom: 0;
  font-family: IBM Plex Sans, sans-serif;
  font-size: 16px;
  line-height: 180%;
}

a {
  color: var(--primary-600);
  font-size: 16px;
  line-height: 150%;
  text-decoration: underline;
  transition: color .2s;
}

a:hover {
  color: #00b2ff;
}

ul {
  color: var(--neutral-800);
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 40px;
  font-family: IBM Plex Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 200%;
}

ol {
  color: var(--neutral-800);
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  font-family: IBM Plex Sans, sans-serif;
  font-size: 16px;
  line-height: 200%;
}

blockquote {
  color: var(--neutral-600);
  border-left: 0 solid #000;
  margin-bottom: 0;
  padding: 12px 24px;
  font-family: Caveat, sans-serif;
  font-size: 32px;
  line-height: 100%;
}

figure {
  border-radius: 8px;
  margin: 16px auto;
  overflow: hidden;
}

figcaption {
  color: var(--neutral-600);
  text-align: center;
  margin-top: 5px;
  font-family: IBM Plex Sans, sans-serif;
}

.mobile-menu {
  display: none;
}

.logo-placeholder {
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  max-width: 134px;
  max-height: 42px;
  display: flex;
}

.logo-placeholder.w--current {
  width: 300px;
  max-width: none;
  height: 100px;
  max-height: none;
  margin-top: 0;
}

.navbar {
  z-index: 9998;
  border-style: solid;
  border-width: 0 0 2px;
  border-color: var(--white) var(--white) rgba(255, 255, 255, .15) rgba(255, 255, 255, .15);
  background-color: #eee6d1;
  flex-direction: row;
  justify-content: space-between;
  width: auto;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  position: relative;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.mobile-nav-menu {
  grid-column-gap: 20px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: auto;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.mobile-close-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.icon-embed-xxsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.mobile-button {
  display: none;
}

.nav-actions {
  grid-column-gap: 24px;
  grid-row-gap: 0px;
  justify-content: flex-end;
  width: auto;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.nav-link {
  color: var(--neutral-800);
  justify-content: center;
  align-items: center;
  height: 80px;
  padding: 8px 16px;
  font-family: IBM Plex Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.nav-link:hover {
  color: #7dbb4b;
}

.nav-link.w--current {
  color: var(--primary-700);
  border-bottom: 4px solid #00a347;
  justify-content: center;
  align-items: center;
  height: 80px;
  font-weight: 600;
  display: flex;
}

.nav-container {
  flex-direction: row;
  flex: 0 auto;
  justify-content: space-between;
  align-self: center;
  align-items: center;
  width: 100%;
  min-width: 0;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: static;
}

.nav-menu {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: 80px;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.nav-menu.template {
  display: none;
}

.page-header {
  background-color: var(--primary-200);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 416px;
  padding-top: 112px;
  padding-bottom: 48px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.text-large {
  color: var(--neutral-800);
  text-align: left;
  background-color: rgba(0, 0, 0, 0);
  margin-bottom: 0;
  font-family: IBM Plex Sans, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
}

.text-large.maxw512 {
  max-width: 512px;
}

.page-header-image {
  position: absolute;
  top: -35%;
  bottom: auto;
  left: 74%;
  right: 0%;
  overflow: visible;
}

.colors {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.typography-list {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.paragraph-style {
  grid-row-gap: 24px;
  flex-direction: column;
  flex: 0 auto;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.color-grid-item {
  grid-row-gap: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  height: auto;
  display: flex;
}

.link-style {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.style-guide-navigation {
  z-index: 9997;
  border: 1px solid var(--primary-200);
  border-radius: 8px;
  flex-direction: column;
  width: 100%;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 48px;
}

.style-guide-content {
  grid-row-gap: 48px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.typography {
  grid-row-gap: 24px;
  flex-direction: column;
  flex: 0 auto;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.webflow-label-value {
  color: var(--primary-100);
  text-align: center;
  object-fit: fill;
  flex: 0 auto;
  align-self: auto;
  align-items: center;
  width: auto;
  font-family: IBM Plex Sans, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 150%;
  display: flex;
}

.buttons {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.style-guide-sidebar {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  width: 320px;
  min-width: 320px;
  height: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 24px;
}

.style-guide-container {
  grid-column-gap: 48px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  height: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  position: relative;
}

.licenses-divider {
  border: 1px solid var(--neutral-400);
  flex-direction: row;
  align-self: center;
  align-items: stretch;
  width: 0;
  height: 208px;
  min-height: 100%;
  display: flex;
}

.palette {
  background-color: var(--primary-700);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  width: 128px;
  height: 112px;
}

.palette.primary-100 {
  background-color: var(--primary-100);
}

.palette.primary-200 {
  background-color: var(--primary-200);
}

.palette.primary-500, .palette.primary-600 {
  background-color: var(--primary-600);
}

.palette.secondary-800 {
  background-color: var(--secondary-800);
}

.palette.secondary-500 {
  background-color: var(--secondary-500);
}

.palette.secondary-300 {
  background-color: var(--secondary-300);
}

.palette.secondary-200 {
  background-color: var(--secondary-200);
}

.palette.neutral-800 {
  background-color: var(--neutral-800);
}

.palette.neutral-600 {
  background-color: var(--neutral-600);
}

.palette.neutral-400 {
  background-color: var(--neutral-400);
}

.palette.white {
  background-color: var(--white);
  border: 1px solid #000;
}

.palette.blue-300 {
  background-color: var(--blue-300);
}

.palette.blue-200 {
  background-color: var(--blue-200);
}

.palette.purple-300 {
  background-color: var(--purple-300);
}

.palette.purple-200 {
  background-color: var(--purple-200);
}

.style-guide-link {
  color: var(--neutral-800);
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  min-width: auto;
  font-family: IBM Plex Sans, sans-serif;
  font-size: 16px;
  line-height: 180%;
  display: flex;
}

.webflow-label {
  grid-row-gap: 10px;
  background-color: #be4aa5;
  border-radius: 2px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: auto;
  padding: 2px 8px;
  font-size: 1px;
  display: flex;
}

.webflow-label.is-custom {
  background-color: #0073e6;
}

.heading-style {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.style-guide-section {
  grid-column-gap: 48px;
  object-fit: fill;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 48px 0;
  display: flex;
}

.main-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
}

.text-small {
  color: var(--neutral-800);
  text-align: center;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 150%;
}

.text-small.text-dark-secondary {
  color: var(--secondary-800);
  width: 100%;
  height: auto;
}

.text-small.text-center {
  position: relative;
}

.colors-grid {
  grid-column-gap: 0px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

.button-group {
  grid-column-gap: 24px;
  grid-row-gap: 0px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
  display: flex;
}

.list-style {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: auto;
  display: flex;
}

.button-item {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  height: auto;
  display: flex;
}

.buttons-list {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  height: auto;
  display: flex;
}

.footer {
  border-top: 1px solid #000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding-bottom: 0;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.footer-container {
  justify-content: space-around;
  align-self: center;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
}

.social-list {
  grid-column-gap: 24px;
  grid-row-gap: 0px;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
  display: flex;
}

.social-channel {
  cursor: pointer;
  background-color: #00a347;
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition-property: background-color;
  display: flex;
}

.social-channel:hover {
  color: #acd042;
  background-color: #acd042;
}

.instagram-logo, .twitter-logo, .linkedin-logo, .figma-logo {
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.primary-colors {
  grid-row-gap: 24px;
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
}

.heading {
  width: 100%;
  height: 100%;
}

.secondary-colors-list {
  grid-column-gap: 24px;
  flex-flow: wrap;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.text-block {
  color: var(--neutral-800);
  align-self: flex-end;
  width: auto;
  margin-top: 0;
  padding-top: 20px;
  font-family: IBM Plex Sans, sans-serif;
  font-size: 16px;
  line-height: 180%;
}

.text-block.text-light {
  color: var(--neutral-600);
}

.button {
  color: var(--primary-100);
  cursor: pointer;
  background-color: #00a347;
  border: 2px solid #00a347;
  border-radius: 6px;
  justify-content: center;
  align-items: flex-start;
  width: auto;
  height: 56px;
  padding: 16px 24px;
  font-family: IBM Plex Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  transition: transform .2s, box-shadow .2s, background-color .1s cubic-bezier(.165, .84, .44, 1);
  display: flex;
}

.button:hover {
  color: #fff;
  background-color: #acd042;
  border-color: #00a347;
  box-shadow: 0 4px 13px -8px rgba(0, 98, 102, .5);
}

.button.is-button-small {
  background-color: #00a347;
  border-width: 2px;
  border-radius: 4px;
  height: 40px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  transition: border-color .3s, transform .2s, box-shadow .2s, background-color .3s cubic-bezier(.165, .84, .44, 1);
}

.button.is-button-small:hover {
  background-color: #acd042;
}

.button.is-button-small.button-secondary {
  text-align: center;
  border-width: 2px;
  font-weight: 500;
  display: none;
}

.button.is-button-small.button-secondary:hover {
  border-color: var(--primary-700);
  color: var(--primary-600);
}

.button.button-secondary {
  color: #00a347;
  background-color: rgba(0, 0, 0, 0);
  border-width: 2px;
  border-color: #00a347;
}

.button.button-secondary:hover {
  color: var(--primary-100);
  background-color: #acd042;
  border-color: #00a347;
}

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

.button.cards.modal-button {
  background-color: var(--primary-500);
  color: var(--primary-500);
  width: 100%;
  height: 56px;
  padding-bottom: 16px;
}

.webflow-label-group {
  grid-column-gap: 12px;
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.section {
  grid-row-gap: 48px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.section.gradient-brackground {
  background-image: linear-gradient(#fff 36%, #dee9de 36%);
  position: relative;
  overflow: hidden;
}

.section.gradient-brackground.for-navigation {
  padding-top: 112px;
}

.tag {
  grid-column-gap: 16px;
  background-color: #e9dfca;
  border-radius: 99px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: auto;
  height: 24px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.container {
  grid-row-gap: 48px;
  flex-direction: column;
  flex: 0 auto;
  order: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: flex-end;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  position: relative;
}

.container.horizontal {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.container.left-align {
  align-items: flex-start;
  width: 100%;
}

.changelog-content {
  grid-row-gap: 4px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.changelog-timeline {
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.changelog-history-item {
  grid-column-gap: 48px;
  flex-direction: row;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.licenses-content {
  grid-column-gap: 0px;
  grid-row-gap: 48px;
  background-color: var(--primary-100);
  border-radius: 24px;
  flex-direction: column;
  flex: 0 auto;
  justify-content: space-between;
  width: 100%;
  height: auto;
  padding: 48px;
  display: flex;
}

.licenses-item {
  grid-column-gap: 48px;
  flex-direction: row;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.licenses-headline {
  flex-direction: row;
  flex: 1;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  min-width: 336px;
  display: flex;
}

.licenses-details {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding-bottom: 0;
  display: flex;
}

.divider {
  background-color: var(--neutral-400);
  width: 100%;
  height: 1px;
}

.text-light {
  color: var(--neutral-600);
}

.heading-6, .heading-8, .heading-9, .heading-10 {
  margin-top: 0;
  margin-bottom: 0;
}

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

.secondary-colors {
  grid-row-gap: 24px;
  flex-direction: column;
  width: 100%;
  height: 100%;
  display: flex;
}

.neutral-colors {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.other-colors {
  grid-row-gap: 24px;
  flex-direction: column;
  display: flex;
}

.hero-section {
  grid-row-gap: 48px;
  background-image: linear-gradient(267deg, #f1e9d5, #e2d6c0);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 580px;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-section.for-navbar {
  background-color: #eee6d1;
  background-image: none;
  height: 525px;
  padding-top: 10px;
  padding-bottom: 20px;
}

.hero-content {
  grid-row-gap: 24px;
  object-fit: fill;
  flex-direction: column;
  align-items: flex-start;
  width: 58%;
  height: auto;
  padding-right: 40px;
  display: flex;
  position: relative;
}

.action-group {
  grid-column-gap: 12px;
  grid-row-gap: 0px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  height: auto;
  display: flex;
}

.hero-avatar-image {
  object-fit: contain;
  width: auto;
  height: auto;
  position: absolute;
  top: 0%;
  left: 110%;
}

.services-section {
  grid-column-gap: 48px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
}

.services-content {
  grid-column-gap: 48px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
}

.services-card-list {
  grid-row-gap: 0px;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  align-items: center;
  width: auto;
  height: auto;
  display: flex;
  overflow: visible;
}

.services-details {
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: flex-start;
  width: 65%;
  padding-left: 0;
  display: flex;
}

.services-type {
  grid-column-gap: 50px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin-bottom: 60px;
  padding-top: 20px;
  display: grid;
}

.services-card {
  grid-row-gap: 20px;
  background-color: #3893e3;
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px;
  display: flex;
}

.services-card.card-shadow {
  border: 1px solid var(--primary-200);
  background-color: var(--white);
  width: 100%;
  padding-bottom: 80px;
  box-shadow: 6px 6px rgba(227, 232, 227, .67);
}

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

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

.html-embed {
  background-color: rgba(0, 0, 0, 0);
}

.section-slider {
  grid-column-gap: 48px;
  background-color: #eee6d1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  padding-top: 56px;
  padding-bottom: 66px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.specialities-images {
  grid-column-gap: 24px;
  align-items: flex-start;
  width: auto;
  display: flex;
}

.specialities-content {
  grid-row-gap: 48px;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 24px;
  padding-bottom: 96px;
  display: flex;
  position: relative;
}

.specialties-slider {
  grid-row-gap: 48px;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  height: 288px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.specialities-cards {
  background-color: var(--white);
  text-align: center;
  object-fit: fill;
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 200px;
  padding: 28px 20px;
  display: flex;
  position: relative;
}

.specialities-cards:hover {
  box-shadow: 1px 2px 7px 11px rgba(80, 78, 78, .2);
}

.specialties-slider-nav {
  display: none;
}

.specialities-avatars {
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: space-around;
  width: 96px;
  height: 454px;
  min-height: 0;
  display: flex;
}

.small-avatar-item {
  width: auto;
  height: auto;
}

.specialities-main-avatar {
  border-radius: 24px;
}

.about-section {
  grid-row-gap: 48px;
  background-color: var(--primary-100);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  padding-top: 64px;
  padding-bottom: 48px;
  display: flex;
  position: relative;
}

.about-headline {
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 480px;
  display: flex;
}

.about-content {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  height: auto;
  display: flex;
}

.about-content-resume {
  grid-row-gap: 8px;
  flex-direction: column;
  margin-top: -10px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.about-card-image {
  filter: grayscale(35%);
  -webkit-text-fill-color: inherit;
  object-fit: cover;
  background-clip: border-box;
  border-radius: 24px;
  position: static;
}

.block-quote {
  color: var(--neutral-600);
  text-align: center;
  letter-spacing: -.4px;
  border-left-width: 0;
  margin: 0 auto;
  padding: 0;
  font-family: Caveat, sans-serif;
  font-size: 36px;
  line-height: 44px;
}

.about-card {
  grid-row-gap: 24px;
  background-color: var(--primary-100);
  border: 2px solid #000;
  border-radius: 24px;
  flex-flow: column;
  width: 344px;
  padding: 28px;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 40%;
  left: 0%;
  right: auto;
}

.cta-content {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 75%;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.services-slider {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  display: flex;
}

.services-slider-mask {
  background-color: rgba(0, 0, 0, 0);
  width: 464px;
  height: auto;
  padding: 12px 24px;
}

.services-slider-item {
  cursor: grab;
  background-color: rgba(0, 0, 0, 0);
  width: auto;
  padding-left: 36px;
  padding-right: 36px;
}

.services-slider-nav {
  grid-column-gap: 4px;
  object-fit: fill;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 20px;
  margin-left: auto;
  margin-right: auto;
  transition: opacity .2s;
  display: flex;
  position: static;
}

.about-section-image {
  z-index: 0;
  opacity: .18;
  filter: saturate(20%);
  mix-blend-mode: normal;
  position: absolute;
  bottom: 14%;
  left: 6%;
  right: 5%;
  transform: scale(.9);
}

.about-header-section {
  grid-row-gap: 48px;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(to bottom, var(--primary-200), var(--primary-200) 50%, var(--primary-100) 50.01%, white);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 112px;
  padding-bottom: 24px;
  display: flex;
}

.notification {
  grid-column-gap: 16px;
  background-color: var(--purple-300);
  cursor: default;
  border-radius: 8px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 24px;
  transition: transform .3s;
  display: flex;
  box-shadow: 0 16px 24px -24px rgba(86, 83, 94, .24);
}

.notification:hover {
  transform: scale(1.01);
}

.notification-content {
  grid-column-gap: 24px;
  grid-row-gap: 0px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.notification-close-button {
  cursor: pointer;
  width: 24px;
  height: 24px;
}

.about-header-content {
  grid-row-gap: 48px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.hero-about-image {
  border-radius: 24px;
  width: 928px;
  height: 384px;
}

.image-3 {
  object-fit: cover;
  border-radius: 24px;
  width: 100%;
  height: 384px;
}

.hero-about-headline {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 576px;
  display: flex;
}

.about-container {
  grid-column-gap: 48px;
  grid-row-gap: 0px;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding: 0 24px;
  display: flex;
}

.about-sidebar {
  grid-row-gap: 24px;
  border: 1px solid var(--primary-200);
  object-fit: fill;
  border-radius: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  min-width: 352px;
  padding: 48px;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  box-shadow: 6px 6px rgba(227, 232, 227, .67);
}

.about-sidebar-item {
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.about-content-item {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.services-intro-header {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 48px;
  padding-bottom: 0;
  display: flex;
}

.services-main-list {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 0;
  display: flex;
}

.services-specialities-headline {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.services-specialities-headline.maxw512 {
  width: 512px;
  min-width: 512px;
}

.services-specialities-list {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.services-specialities-column {
  grid-column-gap: 30px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  width: 100%;
  display: grid;
  position: relative;
}

.content {
  grid-row-gap: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 0;
  display: flex;
}

.about-page-section {
  grid-row-gap: 48px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
  position: relative;
}

.phosphor-icon {
  color: var(--neutral-800);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  display: flex;
}

.phosphor-icon.icon24px {
  color: var(--neutral-800);
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  transition: transform .375s;
}

.phosphor-icon.icon24px:hover {
  color: var(--neutral-800);
  transform: rotate(90deg);
}

.phosphor-icon.icon24px.icon-close-modal {
  cursor: pointer;
  position: absolute;
  top: 24px;
  bottom: auto;
  left: auto;
  right: 24px;
}

.phosphor-icon.icon-is-green {
  color: var(--primary-600);
}

.phosphor-icon.icon32px-absolute {
  color: var(--primary-600);
  cursor: pointer;
  position: absolute;
}

.phosphor-icon.icon32px-absolute:hover {
  color: var(--primary-700);
}

.phosphor-icon.icon32px-relative {
  color: #00a347;
  width: 64px;
  height: 64px;
  margin: 5px auto 10px;
  position: relative;
}

.phosphor-icon.icon12px {
  width: 12px;
  min-width: 12px;
  height: 12px;
  min-height: 12px;
  display: flex;
}

.services-card-illustration {
  min-height: 120px;
}

.contact-header-section {
  grid-row-gap: 48px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  padding-top: 112px;
  padding-bottom: 48px;
  display: flex;
}

.contact-header-content {
  grid-column-gap: 48px;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.contact-header-headline {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 448px;
  min-width: 448px;
  display: flex;
}

.contact-header-text {
  grid-row-gap: 24px;
  background-color: var(--primary-100);
  border-radius: 24px;
  flex-direction: column;
  padding: 48px;
  display: flex;
}

.contact-header-image {
  object-fit: cover;
  border-radius: 24px;
  width: 845px;
  height: auto;
  overflow: hidden;
}

.contact-details-section {
  grid-row-gap: 48px;
  background-image: linear-gradient(to bottom, var(--white), var(--white) 14%, #eff4ef 14.01%, var(--primary-200));
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
}

.contact-details-options {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.contact-item {
  grid-row-gap: 12px;
  border: 1px solid var(--primary-200);
  background-color: var(--white);
  border-radius: 24px;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px 24px;
  display: flex;
  box-shadow: 6px 6px rgba(227, 232, 227, .67);
}

.contact-form-wrapper {
  grid-row-gap: 48px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
}

.contact-form-header {
  grid-row-gap: 12px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.contact-form-header.maxw512 {
  width: 512px;
}

.contact-form-block {
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: flex-end;
  min-width: 512px;
  display: flex;
}

.contact-form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: flex-end;
  width: 512px;
  display: flex;
}

.contact-form-column {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.contact-form-inputs {
  grid-column-gap: 16px;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.form-input {
  border-style: none none solid;
  border-width: 1px 1px 2px;
  border-color: black black var(--primary-600);
  color: var(--neutral-800);
  cursor: auto;
  background-color: #c8dacd;
  border-radius: 4px 4px 0 0;
  width: 100%;
  height: auto;
  min-height: 0;
  margin-bottom: 0;
  padding: 16px;
  display: flex;
}

.form-input:focus {
  border-color: var(--primary-600) var(--primary-600) var(--primary-500);
  background-color: var(--primary-200);
  border-top-width: 0;
  border-left-width: 0;
  border-right-width: 0;
}

.form-input::placeholder {
  color: var(--neutral-800);
}

.form-input.text-area {
  min-height: 138px;
}

.form-input.white {
  border-bottom-color: var(--primary-200);
  background-color: var(--primary-100);
}

.form-input.white:focus {
  border-bottom-color: var(--primary-500);
}

.specialties-slider-mask {
  cursor: grab;
  width: 256px;
  height: auto;
  overflow: visible;
}

.specialties-right-arrow {
  color: var(--primary-700);
  cursor: pointer;
  width: 32px;
  height: 32px;
  margin-top: 260px;
  top: auto;
  bottom: 0%;
  left: 80px;
  right: auto;
}

.specialties-left-arrow {
  color: var(--primary-700);
  width: 32px;
  height: 32px;
  margin-top: 260px;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.specialties-slider-item {
  flex-direction: column;
  align-items: center;
  width: auto;
  height: auto;
  padding-left: 0;
  padding-right: 24px;
}

.specialties-slider-wrapper {
  width: 1200px;
  height: auto;
  position: absolute;
  top: 73%;
  overflow: hidden;
}

.specialities-container {
  grid-row-gap: 48px;
  flex-direction: column;
  flex: 0 auto;
  order: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: flex-end;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  width: 1152px;
  height: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.specialities-container.horizontal {
  grid-column-gap: 48px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  position: relative;
}

.modal-wrapper {
  background-color: var(--white);
  border-radius: 24px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 1152px;
  height: auto;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  display: flex;
}

.modal-form-column {
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: auto;
  padding: 0 48px;
  display: flex;
}

.modal-content-column {
  grid-row-gap: 48px;
  background-color: var(--primary-200);
  border-radius: 0 24px 24px 0;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 96px 48px 48px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.paragraph-12 {
  color: var(--white);
  display: flex;
}

.modal-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 48px 24px;
  display: flex;
}

.steps {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.step-item {
  grid-column-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.step-number {
  border: 1px solid var(--primary-600);
  border-radius: 9007200000000000px;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 50px;
  padding: 8px 16px 12px;
  line-height: 80%;
  display: flex;
}

.modal {
  z-index: 9999999;
  background-color: rgba(33, 54, 80, .5);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: auto;
  overflow: visible;
}

.step-number-text {
  color: var(--primary-600);
  font-family: IBM Plex Serif, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 80%;
}

.bg-modal {
  transform-style: preserve-3d;
  position: absolute;
  top: 83%;
  bottom: 83%;
  left: 0%;
  right: 25%;
  transform: rotateX(180deg)rotateY(0)rotateZ(0);
}

.bg-section-slider {
  z-index: 0;
  mix-blend-mode: color-burn;
  position: absolute;
  top: -5%;
  bottom: auto;
  left: 75%;
  right: 0%;
  transform: scale(.9);
}

.maxw482 {
  width: 582px;
}

.services-item {
  grid-row-gap: 4px;
  border: 2px solid #000;
  border-radius: 11px;
  flex-direction: column;
  padding: 10px 20px 20px;
  display: flex;
}

.services-item:hover {
  box-shadow: inset 1px 1px 7px 5px rgba(100, 94, 94, .2);
}

.about-section-container {
  grid-row-gap: 48px;
  flex-direction: column;
  flex: 0 auto;
  order: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: flex-end;
  justify-content: flex-start;
  align-self: center;
  align-items: flex-end;
  width: 992px;
  height: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  position: relative;
}

.hero-bg-image {
  opacity: .52;
  mix-blend-mode: luminosity;
  order: -1;
  align-self: center;
  width: 100%;
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 85%;
  right: 0;
  overflow: hidden;
  transform: scale(.8);
}

.body {
  overflow: auto;
}

.services-bg-image {
  position: absolute;
  top: 91%;
  bottom: 0%;
  left: 28%;
  right: auto;
  transform: scale(1.2);
}

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

.logo {
  width: 350px;
  max-width: none;
  height: 175px;
  margin-bottom: -25px;
}

.page-header-content {
  grid-row-gap: 16px;
  flex-direction: column;
  display: flex;
}

.style-guide-item {
  cursor: pointer;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  transition: background-color .125s linear;
  display: flex;
}

.style-guide-item:hover {
  background-color: var(--primary-200);
}

.color-grid-item-title {
  color: var(--neutral-800);
  font-family: IBM Plex Serif, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
}

.text-block-style {
  grid-row-gap: 24px;
  flex-direction: row;
  justify-content: space-between;
  display: flex;
}

.small-link {
  font-size: 14px;
  line-height: 150%;
}

.rich-text-style {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.text-style-item {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.rich-text p, .rich-text h2 {
  padding-top: 8px;
  padding-bottom: 16px;
}

.rich-text h4 {
  padding-top: 8px;
  padding-bottom: 4px;
}

.rich-text h3 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.rich-text blockquote {
  padding-bottom: 24px;
}

.rich-text h5 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.rich-text h6 {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 8px;
  padding-bottom: 8px;
}

.success-message {
  background-color: var(--primary-100);
  color: var(--primary-700);
  border-radius: 8px;
  width: 512px;
  padding: 24px;
  font-family: Droid Sans, sans-serif;
  font-size: 16px;
  line-height: 150%;
}

.error-message {
  border-radius: 0;
  width: 512px;
  padding: 24px;
  font-family: IBM Plex Sans, sans-serif;
}

.modal-form-block {
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: flex-end;
  min-width: 100%;
  display: flex;
}

.list-3 {
  font-size: 16px;
  line-height: 200%;
}

.block-quote-style {
  grid-row-gap: 24px;
  flex-direction: row;
  justify-content: space-between;
  display: flex;
}

.figures-tag-style {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.image-4 {
  border: 3px solid #000;
  border-radius: 90px 80px 90px 90px;
  margin-top: 20px;
}

.changelog-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  width: 100%;
  height: 50vh;
  display: flex;
}

.nav-column-copy {
  grid-column-gap: 0px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.nav-menu-copy {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: 80px;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.nav-menu-copy.template {
  display: none;
}

.image-5 {
  width: 100%;
  max-width: none;
}

.div-block {
  width: 250px;
  padding: 0;
}

.text-block-2 {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 18px;
}

.heading-13 {
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

.paragraph-13 {
  font-weight: 500;
}

.paragraph-14 {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
}

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

.div-block-3 {
  margin-top: 28px;
}

.list-item {
  margin-bottom: 10px;
  line-height: 150%;
}

.list-item-2 {
  line-height: 150%;
}

.bold-text, .bold-text-2 {
  font-size: 20px;
}

.heading-14 {
  font-size: 50px;
  font-weight: 400;
  line-height: 100%;
}

.link, .link-2, .link-3, .link-4, .link-5 {
  text-decoration: none;
}

.link-6 {
  color: #00a347;
  text-decoration: none;
}

.link-6:hover {
  color: #acd042;
}

.link-6-copy {
  color: #00a347;
  text-decoration: underline;
}

.link-6-copy:hover {
  color: #acd042;
}

@media screen and (min-width: 1280px) {
  .navbar {
    width: 100svw;
  }

  .mobile-button {
    display: none;
  }

  .nav-actions, .nav-menu {
    display: flex;
  }

  .text-large {
    padding-top: 5px;
    padding-bottom: 15px;
  }

  .style-guide-container, .container, .container.horizontal, .container.left-align {
    width: 1152px;
  }

  .hero-section.for-navbar {
    height: 550px;
  }

  .about-container, .specialities-container.horizontal {
    width: 1152px;
  }

  .hero-bg-image {
    left: 90%;
  }

  .nav-column, .nav-column-copy, .nav-menu-copy {
    display: flex;
  }

  .paragraph-13 {
    font-size: 17px;
  }
}

@media screen and (min-width: 1440px) {
  h1 {
    font-size: 3.375rem;
  }

  h2 {
    text-align: left;
    width: 100%;
  }

  .navbar {
    width: 100svw;
  }

  .nav-container {
    width: 1378px;
  }

  .page-header-image {
    left: 77%;
  }

  .style-guide-section {
    width: 1440px;
  }

  .text-small.text-center {
    width: 100%;
  }

  .footer-container {
    width: 1378px;
    margin-left: auto;
    margin-right: auto;
  }

  .container.left-align {
    position: relative;
  }

  .hero-section.for-navbar {
    background-color: #f2ebda;
    background-image: none;
    width: 100svw;
  }

  .hero-avatar-image {
    top: -31%;
    left: 100%;
    right: auto;
    transform: scale(1.5);
  }

  .services-content {
    width: 100%;
  }

  .about-section-image {
    top: 25%;
    left: 12%;
    transform: scale(.9);
  }

  .contact-header-section {
    position: relative;
  }

  .contact-header-image {
    z-index: 0;
  }

  .modal-content-column {
    grid-row-gap: 48px;
    padding: 96px 48px 48px;
  }

  .steps {
    grid-row-gap: 24px;
    flex-direction: column;
    width: 100%;
    display: flex;
  }

  .step-item {
    grid-column-gap: 16px;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .step-number {
    border-color: var(--primary-600);
    border-radius: 9999px;
  }

  .hero-bg-image {
    opacity: .36;
    mix-blend-mode: luminosity;
    left: 95%;
    right: 0%;
  }

  .paragraph-13 {
    font-size: 18px;
  }
}

@media screen and (max-width: 991px) {
  .mobile-menu {
    z-index: 9999;
    grid-row-gap: 88px;
    background-color: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100vw;
    height: 100vh;
    display: none;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .mobile-close-container {
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: auto;
    padding: 24px;
    display: flex;
  }

  .navbar {
    width: 100%;
  }

  .mobile-nav-menu {
    flex-direction: column;
    width: 100%;
    margin-top: 0;
    padding: 24px 0;
    display: flex;
  }

  .mobile-close-icon {
    width: 2rem;
    height: 2rem;
  }

  .mobile-nav-link {
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 24px;
    display: flex;
  }

  .mobile-close-button {
    display: block;
    position: static;
    top: 24px;
    bottom: auto;
    left: auto;
    right: 24px;
  }

  .mobile-button {
    display: block;
  }

  .nav-actions, .nav-menu {
    display: none;
  }

  .page-header {
    padding-bottom: 24px;
  }

  .text-large {
    font-size: 23px;
  }

  .page-header-image {
    top: -41%;
    overflow: hidden;
  }

  .style-guide-navigation {
    display: flex;
  }

  .style-guide-sidebar {
    display: none;
    overflow: visible;
  }

  .style-guide-container {
    grid-column-gap: 48px;
  }

  .licenses-divider {
    width: 100%;
    height: 1px;
  }

  .colors-grid {
    flex-wrap: wrap;
    align-content: space-around;
  }

  .footer {
    height: auto;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .footer-container {
    grid-row-gap: 24px;
    flex-direction: column;
  }

  .social-list {
    margin-bottom: 20px;
  }

  .section.gradient-brackground {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .container {
    width: 100%;
  }

  .container.horizontal {
    flex-direction: column;
  }

  .container.left-align {
    width: 100%;
    padding-left: 14px;
  }

  .licenses-content {
    flex-direction: column;
  }

  .licenses-item {
    grid-row-gap: 24px;
    flex-direction: column;
  }

  .licenses-headline {
    min-width: 100%;
  }

  .hero-section.for-navbar {
    height: 500px;
  }

  .hero-content {
    padding-right: 0;
  }

  .hero-avatar-image {
    object-fit: contain;
    width: 100%;
    height: 480px;
    left: 75%;
  }

  .section-slider {
    height: 475px;
  }

  .specialities-images {
    display: none;
  }

  .specialties-slider {
    height: 240px;
  }

  .specialities-cards {
    align-items: center;
    width: 100%;
    height: auto;
    padding: 24px 28px;
  }

  .about-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .about-headline {
    min-width: 100%;
    padding-top: 24px;
  }

  .about-card-image {
    object-position: 50% 25%;
    border-radius: 4px 110px;
    height: 375px;
    position: relative;
  }

  .about-card {
    width: 100%;
    margin-top: 0;
    padding: 16px;
    position: relative;
  }

  .cta-content {
    width: 512px;
  }

  .about-header-section {
    padding-bottom: 24px;
  }

  .notification-content {
    align-items: flex-start;
  }

  .hero-about-image {
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  .image-3 {
    height: auto;
  }

  .hero-about-headline {
    width: 100%;
  }

  .about-container {
    grid-row-gap: 48px;
    flex-direction: column;
    width: 100%;
  }

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

  .services-main-list {
    flex-direction: column;
  }

  .services-specialities-headline.maxw512 {
    width: 100%;
    min-width: 100%;
  }

  .services-specialities-column {
    grid-row-gap: 24px;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .content {
    align-items: flex-start;
  }

  .about-page-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .phosphor-icon.icon24px.icon-close-modal {
    position: fixed;
  }

  .contact-details-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .contact-form-header.maxw512 {
    width: 100%;
  }

  .contact-form-block {
    width: 100%;
    min-width: 100%;
  }

  .contact-form {
    width: 100%;
  }

  .specialties-left-arrow {
    padding-left: 0;
    padding-right: 0;
  }

  .specialties-slider-item {
    align-items: center;
    width: 100%;
    height: auto;
    padding: 0 8px;
  }

  .specialities-container {
    width: 100%;
  }

  .specialities-container.horizontal {
    flex-direction: row;
  }

  .modal-wrapper {
    border-radius: 0;
    flex-direction: column;
    width: 100%;
    margin-top: 0;
  }

  .maxw482 {
    width: 100%;
  }

  .about-section-container {
    grid-row-gap: 24px;
    width: 100%;
    padding-bottom: 24px;
  }

  .hero-bg-image {
    left: 90%;
  }

  .services-bg-image {
    top: 26%;
    left: 73%;
  }

  .modal-form-block {
    width: 100%;
    min-width: 100%;
  }

  .nav-menu-copy {
    display: none;
  }

  .heading-13 {
    text-align: left;
    width: 100%;
    margin-bottom: 0;
    font-size: 35px;
  }

  .paragraph-14 {
    text-align: left;
    padding-left: 20px;
  }

  .div-block-3 {
    width: 31%;
  }

  .heading-14 {
    font-size: 40px;
  }

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

@media screen and (max-width: 767px) {
  .text-large {
    position: relative;
  }

  .page-header-image {
    top: -46%;
    left: 71%;
  }

  .text-block.text-light.text-small {
    min-width: 128px;
  }

  .button {
    flex: auto;
  }

  .button.button-secondary {
    width: auto;
  }

  .container.horizontal {
    padding-bottom: 40px;
  }

  .container.left-align {
    grid-row-gap: 48px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-section {
    justify-content: flex-start;
    height: 800px;
  }

  .hero-section.for-navbar {
    height: 950px;
    padding-top: 0;
  }

  .hero-content {
    width: 100%;
    padding-right: 0;
  }

  .action-group {
    flex: auto;
    width: 100%;
    position: relative;
  }

  .hero-avatar-image {
    order: 1;
    height: auto;
    position: absolute;
    top: 106%;
    left: -40px;
    transform: scale(1.25);
  }

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

  .services-details {
    order: 1;
    width: 100%;
  }

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

  .section-slider {
    height: auto;
  }

  .specialties-slider {
    height: 280px;
  }

  .specialities-cards {
    padding: 48px 28px;
  }

  .about-card-image {
    height: 304px;
  }

  .cta-content {
    width: 100%;
  }

  .services-slider-mask {
    width: 464px;
  }

  .services-slider-item {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-about-image, .image-3 {
    height: 224px;
  }

  .about-container {
    grid-row-gap: 0px;
  }

  .services-specialities-column {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .phosphor-icon {
    width: 32px;
  }

  .contact-header-content {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    flex-direction: column;
    align-items: center;
  }

  .contact-header-headline {
    align-items: flex-start;
    width: 100%;
    min-width: 100%;
  }

  .contact-header-image {
    object-fit: contain;
    order: -1;
    width: 100%;
    height: 224px;
  }

  .contact-details-options {
    flex-direction: column;
  }

  .contact-item {
    width: 100%;
  }

  .modal-form-column {
    padding-left: 0;
    padding-right: 0;
  }

  .maxw482 {
    width: 100%;
  }

  .hero-bg-image {
    object-fit: cover;
    object-position: 50% 40%;
    order: -1;
    align-self: center;
    width: 100svw;
    max-width: none;
    height: 500px;
    margin-top: -10px;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .services-bg-image {
    top: 36%;
  }

  .image-4 {
    display: block;
  }

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

  .heading-14 {
    margin-top: -40px;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-family: IBM Plex Sans, sans-serif;
  }

  .mobile-menu {
    flex-direction: row;
    height: 70vh;
    display: none;
  }

  .logo-placeholder.w--current {
    width: 200px;
  }

  .mobile-close-icon {
    display: flex;
  }

  .page-header {
    padding-bottom: 16px;
  }

  .text-large {
    text-align: center;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 18px;
    line-height: 125%;
  }

  .text-large.text-center {
    font-size: 20px;
  }

  .page-header-image {
    top: -7%;
    left: 76%;
    right: 0;
  }

  .footer {
    flex-flow: column;
  }

  .social-list {
    text-align: left;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }

  .text-block {
    text-align: left;
  }

  .text-block.text-light {
    object-fit: fill;
    width: 128px;
    margin-bottom: 0;
    font-size: 14px;
  }

  .section {
    grid-column-gap: 32px;
    padding-top: 16px;
    padding-bottom: 16px;
    position: relative;
  }

  .section.gradient-brackground {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .container {
    grid-row-gap: 32px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .changelog-history-item {
    grid-column-gap: 12px;
  }

  .licenses-content {
    padding: 24px;
  }

  .hero-section {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    height: 800px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .hero-section.for-navbar {
    height: 700px;
  }

  .hero-content {
    grid-row-gap: 16px;
    padding-top: 16px;
    padding-right: 0;
  }

  .action-group {
    grid-column-gap: 0px;
    grid-row-gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-avatar-image {
    left: -23px;
  }

  .services-section {
    grid-column-gap: 32px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .services-details {
    width: 100%;
    padding-top: 20px;
  }

  .services-type {
    grid-column-gap: 50px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .text-center {
    font-size: 35px;
    font-weight: 500;
  }

  .section-slider {
    grid-column-gap: 32px;
    height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
    position: relative;
  }

  .specialities-content {
    padding-top: 0;
  }

  .specialties-slider {
    height: 256px;
  }

  .specialities-cards {
    padding-left: 24px;
    padding-right: 24px;
  }

  .specialities-main-avatar {
    height: 338px;
  }

  .about-section {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .about-headline {
    padding-top: 24px;
  }

  .about-content {
    align-items: stretch;
  }

  .about-card-image {
    object-position: 100% 50%;
    height: 256px;
  }

  .services-slider-mask {
    width: 336px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .services-slider-item {
    padding-left: 8px;
    padding-right: 8px;
  }

  .about-header-section {
    grid-row-gap: 32px;
    padding-bottom: 16px;
  }

  .hero-about-image {
    object-fit: cover;
    height: 160px;
    overflow: hidden;
  }

  .image-3 {
    height: 160px;
    overflow: hidden;
  }

  .about-container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-sidebar {
    grid-row-gap: 16px;
    min-width: 100%;
    padding: 36px;
  }

  .services-specialities-column {
    height: auto;
    display: flex;
  }

  .about-page-section {
    grid-row-gap: 32px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .contact-header-section {
    grid-column-gap: 32px;
    padding-bottom: 16px;
  }

  .contact-header-content {
    grid-row-gap: 48px;
    flex-direction: column;
  }

  .contact-header-headline {
    align-items: center;
  }

  .contact-header-image {
    height: 160px;
  }

  .contact-details-section {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .contact-form-inputs {
    grid-row-gap: 16px;
    flex-direction: column;
  }

  .form-input {
    border-bottom-width: 2px;
    border-bottom-color: var(--primary-600);
    border-radius: 0;
  }

  .specialties-slider-item {
    padding-left: 0;
    padding-right: 12px;
  }

  .specialities-container {
    grid-row-gap: 32px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .heading-12 {
    width: auto;
  }

  .bg-section-slider {
    top: 3%;
    left: 71%;
    transform: scale(1.4);
  }

  .maxw482 {
    padding-top: 24px;
  }

  .about-section-container {
    grid-row-gap: 32px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-bg-image {
    object-fit: cover;
    order: -1;
    align-self: center;
    width: 90svw;
    height: 300px;
    position: relative;
    top: 0%;
    transform: none;
  }

  .services-bg-image {
    top: 56%;
    left: 123%;
    transform: scale(2);
  }

  .logo {
    width: 325px;
    height: 150px;
    margin-bottom: -30px;
    margin-left: -50px;
  }

  .image-4 {
    width: 150px;
    height: 150px;
  }

  .nav-column-copy {
    justify-content: center;
    align-items: center;
  }

  .div-block {
    width: 200px;
  }

  .heading-13 {
    text-align: center;
    font-size: 30px;
  }

  .paragraph-13 {
    text-align: center;
    width: 100%;
  }

  .div-block-2 {
    text-align: center;
  }

  .div-block-3 {
    text-align: center;
    width: 50%;
  }

  .heading-14 {
    text-align: center;
    margin-top: 0;
    font-size: 30px;
  }

  .heading-15 {
    margin-left: auto;
    margin-right: auto;
  }
}


